SYMBOL INDEX (71465 symbols across 476 files) FILE: cmd/root.go function Execute (line 18) | func Execute() { function init (line 25) | func init() { FILE: example/testapp/cmd/http.go function RunHTTP (line 8) | func RunHTTP() *cobra.Command { FILE: example/testapp/internal/adapter/httprepo/ordersrepo/get_by_id.go method GetByID (line 7) | func (r *Repository) GetByID(ctx context.Context) { FILE: example/testapp/internal/adapter/httprepo/ordersrepo/repository.go type Repository (line 11) | type Repository struct function NewRepository (line 15) | func NewRepository(client *http.Client) *Repository { FILE: example/testapp/internal/adapter/mysqlrepo/myrepo/get_all.go method GetAll (line 7) | func (r *Repository) GetAll(ctx context.Context) { FILE: example/testapp/internal/adapter/mysqlrepo/myrepo/get_one.go method GetOne (line 7) | func (r *Repository) GetOne(ctx context.Context) { FILE: example/testapp/internal/adapter/mysqlrepo/myrepo/repository.go type Repository (line 13) | type Repository struct function NewRepository (line 17) | func NewRepository(conn *sql.DB) *Repository { FILE: example/testapp/internal/adapter/mysqlrepo/myrepo/save.go method Save (line 7) | func (r *Repository) Save(ctx context.Context) { FILE: example/testapp/internal/adapter/mysqlrepo/transactor.go type contextKey (line 11) | type contextKey constant txKey (line 13) | txKey contextKey = "sql_tx" constant txIDKey (line 14) | txIDKey contextKey = "tx_id" type Transactor (line 16) | type Transactor struct method NewTxContext (line 28) | func (t *Transactor) NewTxContext(ctx context.Context) context.Context { method hasTxID (line 32) | func (t *Transactor) hasTxID(ctx context.Context) bool { method InTransaction (line 37) | func (t *Transactor) InTransaction(ctx context.Context, txFunc func(ct... method GetConn (line 51) | func (t *Transactor) GetConn(ctx context.Context) *sql.DB { method RunTransaction (line 60) | func (t *Transactor) RunTransaction(ctx context.Context) error { method reset (line 87) | func (t *Transactor) reset(ctx context.Context) { function NewTransactor (line 21) | func NewTransactor(c *sql.DB) Transactor { FILE: example/testapp/internal/adapter/mysqlxrepo/clientrepo/get_by_id.go method GetByID (line 7) | func (r *Repository) GetByID(ctx context.Context) { FILE: example/testapp/internal/adapter/mysqlxrepo/clientrepo/git_by_date.go method GitByDate (line 7) | func (r *Repository) GitByDate(ctx context.Context) { FILE: example/testapp/internal/adapter/mysqlxrepo/clientrepo/repository.go type Repository (line 13) | type Repository struct function NewRepository (line 17) | func NewRepository(conn *sqlx.DB) *Repository { FILE: example/testapp/internal/adapter/mysqlxrepo/transactor.go type contextKey (line 11) | type contextKey constant txKey (line 13) | txKey contextKey = "sql_tx" constant txIDKey (line 14) | txIDKey contextKey = "tx_id" type Transactor (line 16) | type Transactor struct method NewTxContext (line 28) | func (t *Transactor) NewTxContext(ctx context.Context) context.Context { method hasTxID (line 32) | func (t *Transactor) hasTxID(ctx context.Context) bool { method InTransaction (line 37) | func (t *Transactor) InTransaction(ctx context.Context, txFunc func(ct... method GetConn (line 51) | func (t *Transactor) GetConn(ctx context.Context) *sqlx.DB { method RunTransaction (line 60) | func (t *Transactor) RunTransaction(ctx context.Context) error { method reset (line 87) | func (t *Transactor) reset(ctx context.Context) { function NewTransactor (line 21) | func NewTransactor(c *sqlx.DB) Transactor { FILE: example/testapp/internal/adapter/pgsqlxrepo/transactor.go type contextKey (line 11) | type contextKey constant txKey (line 13) | txKey contextKey = "sql_tx" constant txIDKey (line 14) | txIDKey contextKey = "tx_id" type Transactor (line 16) | type Transactor struct method NewTxContext (line 28) | func (t *Transactor) NewTxContext(ctx context.Context) context.Context { method hasTxID (line 32) | func (t *Transactor) hasTxID(ctx context.Context) bool { method InTransaction (line 37) | func (t *Transactor) InTransaction(ctx context.Context, txFunc func(ct... method GetConn (line 51) | func (t *Transactor) GetConn(ctx context.Context) *sqlx.DB { method RunTransaction (line 60) | func (t *Transactor) RunTransaction(ctx context.Context) error { method reset (line 87) | func (t *Transactor) reset(ctx context.Context) { function NewTransactor (line 21) | func NewTransactor(c *sqlx.DB) Transactor { FILE: example/testapp/internal/adapter/pgsqlxrepo/userrepo/get_by_id.go method GetByID (line 7) | func (r *Repository) GetByID(ctx context.Context) { FILE: example/testapp/internal/adapter/pgsqlxrepo/userrepo/repository.go type Repository (line 13) | type Repository struct function NewRepository (line 17) | func NewRepository(conn *sqlx.DB) *Repository { FILE: example/testapp/internal/app/app.go type Logger (line 19) | type Logger interface type App (line 26) | type App struct function NewApp (line 45) | func NewApp(configPath string) (*App, error) { function SetGlobalApp (line 88) | func SetGlobalApp(app *App) { function GetGlobalApp (line 92) | func GetGlobalApp() (*App, error) { FILE: example/testapp/internal/app/container.go type Container (line 25) | type Container struct method GetUseCase (line 46) | func (c *Container) GetUseCase() *usecase.UseCase { method getMysql (line 51) | func (c *Container) getMysql() *sql.DB { method getMysqlx (line 55) | func (c *Container) getMysqlx() *sqlx.DB { method getPgsqlx (line 59) | func (c *Container) getPgsqlx() *sqlx.DB { method getHttp (line 63) | func (c *Container) getHttp() *http.Client { method getMyService (line 67) | func (c *Container) getMyService() *myservice.Service { method getPingPong (line 72) | func (c *Container) getPingPong() *pingpong.Service { method getOrderService (line 77) | func (c *Container) getOrderService() *orderservice.Service { method getMyRepo (line 82) | func (c *Container) getMyRepo() *myrepo.Repository { method getClientRepo (line 87) | func (c *Container) getClientRepo() *clientrepo.Repository { method getUserRepo (line 92) | func (c *Container) getUserRepo() *userrepo.Repository { method getOrdersRepo (line 97) | func (c *Container) getOrdersRepo() *ordersrepo.Repository { function NewContainer (line 34) | func NewContainer(mysqlConnect *sql.DB, mysqlxConn *sqlx.DB, pgSqlxConn ... FILE: example/testapp/internal/app/database.go method newMySQLConnect (line 20) | func (a *App) newMySQLConnect(cfg config.SQLConfig) (*sql.DB, error) { method newMySQLxConnect (line 67) | func (a *App) newMySQLxConnect(cfg config.SQLConfig) (*sqlx.DB, error) { method newPgSqlxConnect (line 114) | func (a *App) newPgSqlxConnect(cfg config.SQLConfig) (*sqlx.DB, error) { FILE: example/testapp/internal/app/http.go method StartHTTPServer (line 17) | func (a *App) StartHTTPServer() error { method startHTTPServer (line 31) | func (a *App) startHTTPServer() { method newHttpClient (line 56) | func (a *App) newHttpClient() *client.Client { FILE: example/testapp/internal/app/logger.go method initLogger (line 13) | func (a *App) initLogger() { FILE: example/testapp/internal/config/config.go type AppConfig (line 8) | type AppConfig struct type HTTPConfig (line 14) | type HTTPConfig struct type ThirdPartyService (line 21) | type ThirdPartyService struct type SQLConfig (line 25) | type SQLConfig struct type Config (line 44) | type Config struct function NewConfig (line 55) | func NewConfig(filePath string) (Config, error) { FILE: example/testapp/internal/handler/http/api/v1/handler.go type UseCase (line 8) | type UseCase interface type Handler (line 15) | type Handler struct function NewHandler (line 20) | func NewHandler(uc UseCase, logs logger.Logger) *Handler { FILE: example/testapp/internal/handler/http/api/v1/pong.go method Ping (line 9) | func (h Handler) Ping(w http.ResponseWriter, r *http.Request) { FILE: example/testapp/internal/handler/http/api/v1/router.go method GetVersion (line 8) | func (h *Handler) GetVersion() string { method GetContentType (line 12) | func (h *Handler) GetContentType() string { method AddRoutes (line 16) | func (h *Handler) AddRoutes(r *mux.Router) { FILE: example/testapp/internal/handler/http/http.go type Server (line 10) | type Server struct method RegisterRoutes (line 26) | func (s *Server) RegisterRoutes(r *Router) { method Start (line 30) | func (s *Server) Start() error { method Stop (line 42) | func (s *Server) Stop() error { function NewServer (line 14) | func NewServer(cfg config.HTTPConfig) *Server { FILE: example/testapp/internal/handler/http/router.go type HandlerRouter (line 11) | type HandlerRouter interface type Router (line 17) | type Router struct method WithMetrics (line 25) | func (r *Router) WithMetrics() *Router { method WithSwagger (line 32) | func (r *Router) WithSwagger() *Router { method WithHandler (line 39) | func (r *Router) WithHandler(h HandlerRouter, logger logger.Logger) *R... method WithProfiler (line 55) | func (r *Router) WithProfiler() *Router { function NewRouter (line 21) | func NewRouter() *Router { FILE: example/testapp/internal/service/myservice/get_by_filter.go method GetByFilter (line 7) | func (s *Service) GetByFilter(ctx context.Context) { FILE: example/testapp/internal/service/myservice/get_list.go method GetList (line 7) | func (s *Service) GetList(ctx context.Context) { FILE: example/testapp/internal/service/myservice/service.go type myRepo (line 11) | type myRepo interface type Service (line 16) | type Service struct function NewService (line 20) | func NewService(myRepo myRepo) *Service { FILE: example/testapp/internal/service/orderservice/get_by_id.go method GetByID (line 7) | func (s *Service) GetByID(ctx context.Context) { FILE: example/testapp/internal/service/orderservice/service.go type ordersRepo (line 7) | type ordersRepo interface type Service (line 11) | type Service struct function NewService (line 15) | func NewService(ordersRepo ordersRepo) *Service { FILE: example/testapp/internal/service/pingpong/pong.go method Pong (line 7) | func (s *Service) Pong(ctx context.Context) { FILE: example/testapp/internal/service/pingpong/service.go type myRepo (line 11) | type myRepo interface type Service (line 16) | type Service struct function NewService (line 20) | func NewService(myRepo myRepo) *Service { FILE: example/testapp/internal/service/transactor.go type Transactor (line 7) | type Transactor interface FILE: example/testapp/internal/usecase/get_clients.go method GetClients (line 7) | func (u *UseCase) GetClients(ctx context.Context) (interface{}, error) { FILE: example/testapp/internal/usecase/pong.go method Pong (line 7) | func (u *UseCase) Pong(ctx context.Context) (interface{}, error) { FILE: example/testapp/internal/usecase/sign_in.go method SignIn (line 7) | func (u *UseCase) SignIn(ctx context.Context) (interface{}, error) { FILE: example/testapp/internal/usecase/sign_up.go method SignUp (line 7) | func (u *UseCase) SignUp(ctx context.Context) (interface{}, error) { FILE: example/testapp/internal/usecase/usecase.go type myService (line 7) | type myService interface type pingPong (line 11) | type pingPong interface type UseCase (line 15) | type UseCase struct function NewUseCase (line 20) | func NewUseCase(myService myService, pingPong pingPong) *UseCase { FILE: example/testapp/main.go function initApp (line 21) | func initApp() { function main (line 30) | func main() { FILE: example/testapp/pkg/logger/logger.go type Logger (line 8) | type Logger interface function NewLogger (line 15) | func NewLogger() (*zap.Logger, error) { FILE: example/testapp/pkg/middleware/acces_log_test.go type panicHandler (line 15) | type panicHandler struct method ServeHTTP (line 17) | func (t panicHandler) ServeHTTP(_ http.ResponseWriter, _ *http.Request) { type badRequestHandler (line 21) | type badRequestHandler struct method ServeHTTP (line 23) | func (t badRequestHandler) ServeHTTP(w http.ResponseWriter, _ *http.Re... function TestAccessLogMiddleware_BadRequest (line 28) | func TestAccessLogMiddleware_BadRequest(t *testing.T) { function TestAccessLogMiddleware_PanicRecovery (line 57) | func TestAccessLogMiddleware_PanicRecovery(t *testing.T) { function tNewLogger (line 87) | func tNewLogger(t *testing.T, sinkName string, sink zap.Sink) zlog.Logger { type MemorySink (line 100) | type MemorySink struct method Close (line 106) | func (s *MemorySink) Close() error { return nil } method Sync (line 107) | func (s *MemorySink) Sync() error { return nil } FILE: example/testapp/pkg/middleware/access_log.go function AccessLogMiddleware (line 12) | func AccessLogMiddleware(log logger.Logger) func(next http.Handler) http... FILE: example/testapp/pkg/middleware/authorization.go function AuthorizationMiddleware (line 11) | func AuthorizationMiddleware() func(next http.Handler) http.Handler { FILE: example/testapp/pkg/middleware/context.go function AddContextMiddleware (line 9) | func AddContextMiddleware(log logger.Logger) func(next http.Handler) htt... FILE: example/testapp/pkg/middleware/context_test.go function TestContextMiddleware_RequestIDHeaderNotFound (line 12) | func TestContextMiddleware_RequestIDHeaderNotFound(t *testing.T) { FILE: example/testapp/pkg/middleware/response_writer_wrapper.go type responseWriterWrapper (line 11) | type responseWriterWrapper struct method WriteHeader (line 26) | func (rw *responseWriterWrapper) WriteHeader(code int) { method Write (line 32) | func (rw *responseWriterWrapper) Write(body []byte) (int, error) { method Hijack (line 39) | func (rw *responseWriterWrapper) Hijack() (net.Conn, *bufio.ReadWriter... method StatusCode (line 48) | func (rw *responseWriterWrapper) StatusCode() int { method Body (line 53) | func (rw *responseWriterWrapper) Body() []byte { function newResponseWriterWrapper (line 18) | func newResponseWriterWrapper(w http.ResponseWriter) *responseWriterWrap... FILE: internal/commands/init_app.go function InitApp (line 10) | func InitApp(configPath string) { FILE: internal/commands/update_app.go function UpdateApp (line 10) | func UpdateApp(configPath string) { FILE: internal/config/adapter.go type Adapter (line 7) | type Adapter struct method GetPkgName (line 16) | func (a Adapter) GetPkgName() string { method GetConstructorName (line 20) | func (a Adapter) GetConstructorName() string { method IsTransactional (line 24) | func (a Adapter) IsTransactional() bool { type Adapters (line 14) | type Adapters method GetMap (line 28) | func (a Adapters) GetMap() map[string]struct{} { method GetTransactionalMap (line 37) | func (a Adapters) GetTransactionalMap() map[string]bool { FILE: internal/config/data.go type DependencyName (line 13) | type DependencyName type Config (line 15) | type Config struct method AskAndSetName (line 84) | func (c *Config) AskAndSetName() error { method askName (line 98) | func (c *Config) askName() (string, error) { method AskAndSetWorkDir (line 110) | func (c *Config) AskAndSetWorkDir() error { method askWorkDir (line 130) | func (c *Config) askWorkDir() (string, error) { method GetChunksByScope (line 137) | func (c *Config) GetChunksByScope(scope string) []Chunk { method GetChunksByScopeAndInitHasErr (line 148) | func (c *Config) GetChunksByScopeAndInitHasErr(scope string) []Chunk { method GetChunksByScopeAndInitHasNotErr (line 159) | func (c *Config) GetChunksByScopeAndInitHasNotErr(scope string) []Chunk { type Chunk (line 24) | type Chunk struct type App (line 38) | type App struct type Dependency (line 44) | type Dependency struct method GetPackageName (line 52) | func (d Dependency) GetPackageName() string { function NewConfig (line 61) | func NewConfig(pathToFile string) (Config, error) { function LoadDataFromYaml (line 69) | func LoadDataFromYaml(pathToFile string) (Config, error) { FILE: internal/config/service.go type Service (line 7) | type Service struct method GetConstructorName (line 16) | func (s Service) GetConstructorName() string { method GetPkgName (line 20) | func (s Service) GetPkgName() string { method CheckTransactionalDeps (line 24) | func (s Service) CheckTransactionalDeps(txAdapterMap map[string]bool) ... method GetTransactionalDeps (line 35) | func (s Service) GetTransactionalDeps(txAdapterMap map[string]bool) []... method GetNonTransactionalDeps (line 47) | func (s Service) GetNonTransactionalDeps(txAdapterMap map[string]bool)... type Services (line 14) | type Services method GetMap (line 59) | func (s Services) GetMap() map[string]struct{} { FILE: internal/config/storage.go type Storage (line 31) | type Storage method String (line 43) | func (s Storage) String() string { method GetFolderName (line 47) | func (s Storage) GetFolderName() string { method GetConnImportName (line 51) | func (s Storage) GetConnImportName() string { method GetConnectionType (line 55) | func (s Storage) GetConnectionType() string { method GetConnectionName (line 59) | func (s Storage) GetConnectionName() string { type Storages (line 32) | type Storages method GetMap (line 34) | func (s Storages) GetMap() map[Storage]struct{} { FILE: internal/config/usecase.go type UseCase (line 3) | type UseCase struct method GetConstructorName (line 8) | func (u UseCase) GetConstructorName() string { FILE: internal/config/validate.go method Validate (line 10) | func (c *Config) Validate() error { FILE: internal/generator/chains/fit_file_extention.go type fitFileExtensionChain (line 10) | type fitFileExtensionChain struct method Apply (line 16) | func (f *fitFileExtensionChain) Apply(fs *afero.Afero, data entity.Con... method Name (line 42) | func (f *fitFileExtensionChain) Name() string { method Rollback (line 46) | func (f *fitFileExtensionChain) Rollback() error { function NewFitFileExtensionChain (line 12) | func NewFitFileExtensionChain() *fitFileExtensionChain { FILE: internal/generator/chains/fit_file_name.go type fitFileNameChain (line 11) | type fitFileNameChain struct method Apply (line 17) | func (f *fitFileNameChain) Apply(fs *afero.Afero, data entity.Config) ... method Name (line 49) | func (f *fitFileNameChain) Name() string { method Rollback (line 53) | func (f *fitFileNameChain) Rollback() error { function NewFitFileNameChain (line 13) | func NewFitFileNameChain() *fitFileNameChain { FILE: internal/generator/chains/generate_adapters.go type generateAdapterChain (line 14) | type generateAdapterChain struct method Apply (line 20) | func (g *generateAdapterChain) Apply(fs *afero.Afero, data entity.Conf... method Name (line 121) | func (g *generateAdapterChain) Name() string { method Rollback (line 125) | func (g *generateAdapterChain) Rollback() error { function NewGenerateAdapterChain (line 16) | func NewGenerateAdapterChain() *generateAdapterChain { FILE: internal/generator/chains/generate_code.go type generateCodeChain (line 16) | type generateCodeChain struct method Apply (line 37) | func (g *generateCodeChain) Apply(fs *afero.Afero, data entity.Config)... method Name (line 78) | func (g *generateCodeChain) Name() string { method Rollback (line 82) | func (g *generateCodeChain) Rollback() error { function NewGenerateCodeChain (line 18) | func NewGenerateCodeChain() *generateCodeChain { function generate (line 22) | func generate(path string, content []byte, data interface{}) ([]byte, er... FILE: internal/generator/chains/generate_services.go type generateServicesChain (line 12) | type generateServicesChain struct method Apply (line 18) | func (g *generateServicesChain) Apply(fs *afero.Afero, data entity.Con... method Name (line 101) | func (g *generateServicesChain) Name() string { method Rollback (line 105) | func (g *generateServicesChain) Rollback() error { function NewGenerateServicesChain (line 14) | func NewGenerateServicesChain() *generateServicesChain { FILE: internal/generator/chains/generate_usecase.go type generateUseCaseChain (line 9) | type generateUseCaseChain struct method Apply (line 15) | func (g *generateUseCaseChain) Apply(fs *afero.Afero, data entity.Conf... method Name (line 65) | func (g *generateUseCaseChain) Name() string { method Rollback (line 69) | func (g *generateUseCaseChain) Rollback() error { function NewGenerateUseCaseChain (line 11) | func NewGenerateUseCaseChain() *generateUseCaseChain { FILE: internal/generator/chains/mod_init.go type modInitChain (line 10) | type modInitChain struct method Apply (line 16) | func (m *modInitChain) Apply(fs *afero.Afero, data entity.Config) (*af... method Name (line 30) | func (m *modInitChain) Name() string { method Rollback (line 34) | func (m *modInitChain) Rollback() error { function NewModInitChain (line 12) | func NewModInitChain() *modInitChain { FILE: internal/generator/chains/mod_tidy.go type modTidyChain (line 10) | type modTidyChain struct method Apply (line 16) | func (m *modTidyChain) Apply(fs *afero.Afero, data entity.Config) (*af... method Name (line 29) | func (m *modTidyChain) Name() string { method Rollback (line 33) | func (m *modTidyChain) Rollback() error { function NewModTidyChain (line 12) | func NewModTidyChain() *modTidyChain { FILE: internal/generator/chains/save_files.go type saveFilesChain (line 10) | type saveFilesChain struct method Apply (line 18) | func (g *saveFilesChain) Apply(fs *afero.Afero, data entity.Config) (*... method Name (line 48) | func (g *saveFilesChain) Name() string { method Rollback (line 52) | func (g *saveFilesChain) Rollback() error { function NewSaveFilesChain (line 14) | func NewSaveFilesChain() *saveFilesChain { FILE: internal/generator/chains/sync_adapters.go type syncAdaptersChain (line 11) | type syncAdaptersChain struct method Apply (line 19) | func (g *syncAdaptersChain) Apply(fs *afero.Afero, data entity.Config)... method Name (line 54) | func (g *syncAdaptersChain) Name() string { method Rollback (line 58) | func (g *syncAdaptersChain) Rollback() error { function NewSyncAdaptersChain (line 15) | func NewSyncAdaptersChain() *syncAdaptersChain { FILE: internal/generator/chains/sync_services.go type syncServicesChain (line 11) | type syncServicesChain struct method Apply (line 29) | func (g *syncServicesChain) Apply(fs *afero.Afero, data entity.Config)... method Name (line 53) | func (g *syncServicesChain) Name() string { method Rollback (line 57) | func (g *syncServicesChain) Rollback() error { function NewSyncServicesChain (line 15) | func NewSyncServicesChain() *syncServicesChain { function contains (line 19) | func contains(s []string, str string) bool { FILE: internal/generator/chains/sync_usecases.go type syncUseCaseChain (line 12) | type syncUseCaseChain struct method Apply (line 20) | func (g *syncUseCaseChain) Apply(fs *afero.Afero, data entity.Config) ... method Name (line 42) | func (g *syncUseCaseChain) Name() string { method Rollback (line 46) | func (g *syncUseCaseChain) Rollback() error { function NewSyncUseCaseChain (line 16) | func NewSyncUseCaseChain() *syncUseCaseChain { FILE: internal/generator/chains/update_files.go type updateFilesChain (line 11) | type updateFilesChain struct method Apply (line 23) | func (g *updateFilesChain) Apply(fs *afero.Afero, data entity.Config) ... method Name (line 63) | func (g *updateFilesChain) Name() string { method Rollback (line 67) | func (g *updateFilesChain) Rollback() error { function NewUpdateFilesChain (line 15) | func NewUpdateFilesChain() *updateFilesChain { function isRegenerated (line 19) | func isRegenerated(name string) bool { FILE: internal/generator/chunks/httpchunk/chunk.go constant name (line 12) | name = "http" constant initName (line 13) | initName = "httpClient" function NewHttpChunk (line 15) | func NewHttpChunk() config.Chunk { FILE: internal/generator/chunks/mysqlchunk/chunk.go constant name (line 12) | name = "mysql" constant initName (line 13) | initName = "mysqlConn" constant initType (line 14) | initType = "*sql.DB" constant initHasErr (line 15) | initHasErr = true function NewMySQLChunk (line 17) | func NewMySQLChunk() config.Chunk { FILE: internal/generator/chunks/mysqlxchunk/chunk.go constant name (line 12) | name = "mysqlx" constant initName (line 13) | initName = "mysqlxConn" function NewMySQLxChunk (line 15) | func NewMySQLxChunk() config.Chunk { FILE: internal/generator/chunks/pgsqlxchunk/chunk.go constant name (line 12) | name = "pgsqlx" constant initName (line 13) | initName = "pgSqlxConn" function NewPostgresChunk (line 15) | func NewPostgresChunk() config.Chunk { FILE: internal/generator/generator.go type Chain (line 12) | type Chain interface type Generator (line 18) | type Generator struct method AddChain (line 33) | func (g *Generator) AddChain(ch Chain) { method getTemplateFS (line 40) | func (g *Generator) getTemplateFS() (*afero.Afero, error) { method loadChunks (line 76) | func (g *Generator) loadChunks() error { method Generate (line 89) | func (g *Generator) Generate() error { function NewGenerator (line 25) | func NewGenerator(config entity.Config) *Generator { FILE: internal/generator/option.go type Option (line 3) | type Option FILE: internal/generator/renderer.go function RenderImports (line 27) | func RenderImports(scope, stage string, cfg entity.Config) string { function RenderDefinitions (line 44) | func RenderDefinitions(scope string, cfg entity.Config) string { function RenderInitializationsWithError (line 54) | func RenderInitializationsWithError(scope, prefix string, cfg entity.Con... function RenderInitializationsWithoutError (line 66) | func RenderInitializationsWithoutError(scope, prefix string, cfg entity.... function RenderDependency (line 77) | func RenderDependency(scope, prefix string, cfg entity.Config) string { function RenderBuild (line 81) | func RenderBuild(scope string, cfg entity.Config) string { function RenderArgs (line 91) | func RenderArgs(scope string, cfg entity.Config) string { function RenderStructPopulation (line 101) | func RenderStructPopulation(scope string, cfg entity.Config) string { function ToPrivateName (line 111) | func ToPrivateName(name string) string { function ToPublicName (line 115) | func ToPublicName(name string) string { FILE: internal/generator/skeleton.go type skeleton (line 17) | type skeleton struct FILE: internal/pkg/log/log.go function Success (line 11) | func Success(message ...string) { function Warn (line 16) | func Warn(message ...string) { function Error (line 21) | func Error(message error) { function Fatal (line 26) | func Fatal(message error) { FILE: internal/prompt/prompt.go function AskAppName (line 8) | func AskAppName() (string, error) { FILE: main.go function main (line 9) | func main() { FILE: pkg/afero/afero.go type Afero (line 32) | type Afero struct type File (line 37) | type File interface type Fs (line 57) | type Fs interface FILE: pkg/afero/basepath.go type BasePathFs (line 21) | type BasePathFs struct method RealPath (line 42) | func (b *BasePathFs) RealPath(name string) (path string, err error) { method Chtimes (line 72) | func (b *BasePathFs) Chtimes(name string, atime, mtime time.Time) (err... method Chmod (line 79) | func (b *BasePathFs) Chmod(name string, mode os.FileMode) (err error) { method Chown (line 86) | func (b *BasePathFs) Chown(name string, uid, gid int) (err error) { method Name (line 93) | func (b *BasePathFs) Name() string { method Stat (line 97) | func (b *BasePathFs) Stat(name string) (fi os.FileInfo, err error) { method Rename (line 104) | func (b *BasePathFs) Rename(oldname, newname string) (err error) { method RemoveAll (line 114) | func (b *BasePathFs) RemoveAll(name string) (err error) { method Remove (line 121) | func (b *BasePathFs) Remove(name string) (err error) { method OpenFile (line 128) | func (b *BasePathFs) OpenFile(name string, flag int, mode os.FileMode)... method Open (line 139) | func (b *BasePathFs) Open(name string) (f File, err error) { method Mkdir (line 150) | func (b *BasePathFs) Mkdir(name string, mode os.FileMode) (err error) { method MkdirAll (line 157) | func (b *BasePathFs) MkdirAll(name string, mode os.FileMode) (err erro... method Create (line 164) | func (b *BasePathFs) Create(name string) (f File, err error) { method LstatIfPossible (line 175) | func (b *BasePathFs) LstatIfPossible(name string) (os.FileInfo, bool, ... method SymlinkIfPossible (line 187) | func (b *BasePathFs) SymlinkIfPossible(oldname, newname string) error { method ReadlinkIfPossible (line 202) | func (b *BasePathFs) ReadlinkIfPossible(name string) (string, error) { type BasePathFile (line 26) | type BasePathFile struct method Name (line 31) | func (f *BasePathFile) Name() string { function NewBasePathFs (line 36) | func NewBasePathFs(source Fs, path string) Fs { function validateBasePathName (line 56) | func validateBasePathName(name string) error { FILE: pkg/afero/cacheOnReadFs.go type CacheOnReadFs (line 22) | type CacheOnReadFs struct method cacheStatus (line 48) | func (u *CacheOnReadFs) cacheStatus(name string) (state cacheState, fi... method copyToLayer (line 74) | func (u *CacheOnReadFs) copyToLayer(name string) error { method copyFileToLayer (line 78) | func (u *CacheOnReadFs) copyFileToLayer(name string, flag int, perm os... method Chtimes (line 82) | func (u *CacheOnReadFs) Chtimes(name string, atime, mtime time.Time) e... method Chmod (line 103) | func (u *CacheOnReadFs) Chmod(name string, mode os.FileMode) error { method Chown (line 124) | func (u *CacheOnReadFs) Chown(name string, uid, gid int) error { method Stat (line 145) | func (u *CacheOnReadFs) Stat(name string) (os.FileInfo, error) { method Rename (line 158) | func (u *CacheOnReadFs) Rename(oldname, newname string) error { method Remove (line 179) | func (u *CacheOnReadFs) Remove(name string) error { method RemoveAll (line 195) | func (u *CacheOnReadFs) RemoveAll(name string) error { method OpenFile (line 211) | func (u *CacheOnReadFs) OpenFile(name string, flag int, perm os.FileMo... method Open (line 238) | func (u *CacheOnReadFs) Open(name string) (File, error) { method Mkdir (line 282) | func (u *CacheOnReadFs) Mkdir(name string, perm os.FileMode) error { method Name (line 290) | func (u *CacheOnReadFs) Name() string { method MkdirAll (line 294) | func (u *CacheOnReadFs) MkdirAll(name string, perm os.FileMode) error { method Create (line 302) | func (u *CacheOnReadFs) Create(name string) (File, error) { function NewCacheOnReadFs (line 28) | func NewCacheOnReadFs(base Fs, layer Fs, cacheTime time.Duration) Fs { type cacheState (line 32) | type cacheState constant cacheMiss (line 36) | cacheMiss cacheState = iota constant cacheStale (line 38) | cacheStale constant cacheHit (line 42) | cacheHit constant cacheLocal (line 45) | cacheLocal FILE: pkg/afero/const_bsds.go constant BADFD (line 22) | BADFD = syscall.EBADF FILE: pkg/afero/const_win_unix.go constant BADFD (line 26) | BADFD = syscall.EBADFD FILE: pkg/afero/copyOnWriteFs.go type CopyOnWriteFs (line 20) | type CopyOnWriteFs struct method isBaseFile (line 30) | func (u *CopyOnWriteFs) isBaseFile(name string) (bool, error) { method copyToLayer (line 48) | func (u *CopyOnWriteFs) copyToLayer(name string) error { method Chtimes (line 52) | func (u *CopyOnWriteFs) Chtimes(name string, atime, mtime time.Time) e... method Chmod (line 65) | func (u *CopyOnWriteFs) Chmod(name string, mode os.FileMode) error { method Chown (line 78) | func (u *CopyOnWriteFs) Chown(name string, uid, gid int) error { method Stat (line 91) | func (u *CopyOnWriteFs) Stat(name string) (os.FileInfo, error) { method LstatIfPossible (line 103) | func (u *CopyOnWriteFs) LstatIfPossible(name string) (os.FileInfo, boo... method SymlinkIfPossible (line 133) | func (u *CopyOnWriteFs) SymlinkIfPossible(oldname, newname string) err... method ReadlinkIfPossible (line 141) | func (u *CopyOnWriteFs) ReadlinkIfPossible(name string) (string, error) { method isNotExist (line 153) | func (u *CopyOnWriteFs) isNotExist(err error) bool { method Rename (line 164) | func (u *CopyOnWriteFs) Rename(oldname, newname string) error { method Remove (line 178) | func (u *CopyOnWriteFs) Remove(name string) error { method RemoveAll (line 192) | func (u *CopyOnWriteFs) RemoveAll(name string) error { method OpenFile (line 206) | func (u *CopyOnWriteFs) OpenFile(name string, flag int, perm os.FileMo... method Open (line 252) | func (u *CopyOnWriteFs) Open(name string) (File, error) { method Mkdir (line 297) | func (u *CopyOnWriteFs) Mkdir(name string, perm os.FileMode) error { method Name (line 308) | func (u *CopyOnWriteFs) Name() string { method MkdirAll (line 312) | func (u *CopyOnWriteFs) MkdirAll(name string, perm os.FileMode) error { method Create (line 324) | func (u *CopyOnWriteFs) Create(name string) (File, error) { function NewCopyOnWriteFs (line 25) | func NewCopyOnWriteFs(base Fs, layer Fs) Fs { FILE: pkg/afero/httpFs.go type httpDir (line 26) | type httpDir struct method Open (line 31) | func (d httpDir) Open(name string) (http.File, error) { type HttpFs (line 48) | type HttpFs struct method Dir (line 56) | func (h HttpFs) Dir(s string) *httpDir { method Name (line 60) | func (h HttpFs) Name() string { return "h HttpFs" } method Create (line 62) | func (h HttpFs) Create(name string) (File, error) { method Chmod (line 66) | func (h HttpFs) Chmod(name string, mode os.FileMode) error { method Chown (line 70) | func (h HttpFs) Chown(name string, uid, gid int) error { method Chtimes (line 74) | func (h HttpFs) Chtimes(name string, atime time.Time, mtime time.Time)... method Mkdir (line 78) | func (h HttpFs) Mkdir(name string, perm os.FileMode) error { method MkdirAll (line 82) | func (h HttpFs) MkdirAll(path string, perm os.FileMode) error { method Open (line 86) | func (h HttpFs) Open(name string) (http.File, error) { method OpenFile (line 96) | func (h HttpFs) OpenFile(name string, flag int, perm os.FileMode) (Fil... method Remove (line 100) | func (h HttpFs) Remove(name string) error { method RemoveAll (line 104) | func (h HttpFs) RemoveAll(path string) error { method Rename (line 108) | func (h HttpFs) Rename(oldname, newname string) error { method Stat (line 112) | func (h HttpFs) Stat(name string) (os.FileInfo, error) { function NewHttpFs (line 52) | func NewHttpFs(source Fs) *HttpFs { FILE: pkg/afero/iofs.go type IOFS (line 14) | type IOFS struct method Open (line 31) | func (iofs IOFS) Open(name string) (fs.File, error) { method Glob (line 52) | func (iofs IOFS) Glob(pattern string) ([]string, error) { method ReadDir (line 68) | func (iofs IOFS) ReadDir(name string) ([]fs.DirEntry, error) { method ReadFile (line 82) | func (iofs IOFS) ReadFile(name string) ([]byte, error) { method Sub (line 97) | func (iofs IOFS) Sub(dir string) (fs.FS, error) { return IOFS{NewBaseP... method wrapError (line 99) | func (IOFS) wrapError(op, path string, err error) error { function NewIOFS (line 18) | func NewIOFS(fs Fs) IOFS { type dirEntry (line 112) | type dirEntry struct method Type (line 118) | func (d dirEntry) Type() fs.FileMode { return d.FileInfo.Mode().Type() } method Info (line 120) | func (d dirEntry) Info() (fs.FileInfo, error) { return d.FileInfo, nil } type readDirFile (line 123) | type readDirFile struct method ReadDir (line 129) | func (r readDirFile) ReadDir(n int) ([]fs.DirEntry, error) { type FromIOFS (line 146) | type FromIOFS struct method Create (line 152) | func (f FromIOFS) Create(name string) (File, error) { return nil, notI... method Mkdir (line 154) | func (f FromIOFS) Mkdir(name string, perm os.FileMode) error { return ... method MkdirAll (line 156) | func (f FromIOFS) MkdirAll(path string, perm os.FileMode) error { method Open (line 160) | func (f FromIOFS) Open(name string) (File, error) { method OpenFile (line 169) | func (f FromIOFS) OpenFile(name string, flag int, perm os.FileMode) (F... method Remove (line 173) | func (f FromIOFS) Remove(name string) error { method RemoveAll (line 177) | func (f FromIOFS) RemoveAll(path string) error { method Rename (line 181) | func (f FromIOFS) Rename(oldname, newname string) error { method Stat (line 185) | func (f FromIOFS) Stat(name string) (os.FileInfo, error) { return fs.S... method Name (line 187) | func (f FromIOFS) Name() string { return "fromiofs" } method Chmod (line 189) | func (f FromIOFS) Chmod(name string, mode os.FileMode) error { method Chown (line 193) | func (f FromIOFS) Chown(name string, uid, gid int) error { method Chtimes (line 197) | func (f FromIOFS) Chtimes(name string, atime time.Time, mtime time.Tim... type fromIOFSFile (line 201) | type fromIOFSFile struct method ReadAt (line 206) | func (f fromIOFSFile) ReadAt(p []byte, off int64) (n int, err error) { method Seek (line 215) | func (f fromIOFSFile) Seek(offset int64, whence int) (int64, error) { method Write (line 224) | func (f fromIOFSFile) Write(p []byte) (n int, err error) { method WriteAt (line 228) | func (f fromIOFSFile) WriteAt(p []byte, off int64) (n int, err error) { method Name (line 232) | func (f fromIOFSFile) Name() string { return f.name } method Readdir (line 234) | func (f fromIOFSFile) Readdir(count int) ([]os.FileInfo, error) { method Readdirnames (line 257) | func (f fromIOFSFile) Readdirnames(n int) ([]string, error) { method Sync (line 276) | func (f fromIOFSFile) Sync() error { return nil } method Truncate (line 278) | func (f fromIOFSFile) Truncate(size int64) error { method WriteString (line 282) | func (f fromIOFSFile) WriteString(s string) (ret int, err error) { function notImplemented (line 286) | func notImplemented(op, path string) error { FILE: pkg/afero/ioutil.go type byName (line 31) | type byName method Len (line 33) | func (f byName) Len() int { return len(f) } method Less (line 34) | func (f byName) Less(i, j int) bool { return f[i].Name() < f[j].Name() } method Swap (line 35) | func (f byName) Swap(i, j int) { f[i], f[j] = f[j], f[i] } method ReadDir (line 39) | func (a Afero) ReadDir(dirname string) ([]os.FileInfo, error) { function ReadDir (line 43) | func ReadDir(fs Fs, dirname string) ([]os.FileInfo, error) { method ReadFile (line 61) | func (a Afero) ReadFile(filename string) ([]byte, error) { function ReadFile (line 65) | func ReadFile(fs Fs, filename string) ([]byte, error) { function readAll (line 91) | func readAll(r io.Reader, capacity int64) (b []byte, err error) { function ReadAll (line 114) | func ReadAll(r io.Reader) ([]byte, error) { method WriteFile (line 121) | func (a Afero) WriteFile(filename string, data []byte, perm os.FileMode)... function WriteFile (line 125) | func WriteFile(fs Fs, filename string, data []byte, perm os.FileMode) er... function reseed (line 147) | func reseed() uint32 { function nextRandom (line 151) | func nextRandom() string { method TempFile (line 174) | func (a Afero) TempFile(dir, pattern string) (f File, err error) { function TempFile (line 178) | func TempFile(fs Fs, dir, pattern string) (f File, err error) { method TempDir (line 214) | func (a Afero) TempDir(dir, prefix string) (name string, err error) { function TempDir (line 217) | func TempDir(fs Fs, dir, prefix string) (name string, err error) { FILE: pkg/afero/lstater.go type Lstater (line 25) | type Lstater interface FILE: pkg/afero/match.go function Glob (line 34) | func Glob(fs Fs, pattern string) (matches []string, err error) { function glob (line 75) | func glob(fs Fs, dir, pattern string, matches []string) (m []string, e e... function hasMeta (line 107) | func hasMeta(path string) bool { FILE: pkg/afero/mem/dir.go type Dir (line 16) | type Dir interface function RemoveFromMemDir (line 24) | func RemoveFromMemDir(dir *FileData, f *FileData) { function AddToMemDir (line 28) | func AddToMemDir(dir *FileData, f *FileData) { function InitializeDir (line 32) | func InitializeDir(d *FileData) { FILE: pkg/afero/mem/dirmap.go type DirMap (line 18) | type DirMap method Len (line 20) | func (m DirMap) Len() int { return len(m) } method Add (line 21) | func (m DirMap) Add(f *FileData) { m[f.name] = f } method Remove (line 22) | func (m DirMap) Remove(f *FileData) { delete(m, f.name) } method Files (line 23) | func (m DirMap) Files() (files []*FileData) { method Names (line 38) | func (m DirMap) Names() (names []string) { type filesSorter (line 32) | type filesSorter method Len (line 34) | func (s filesSorter) Len() int { return len(s) } method Swap (line 35) | func (s filesSorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 36) | func (s filesSorter) Less(i, j int) bool { return s[i].name < s[j].name } FILE: pkg/afero/mem/file.go constant FilePathSeparator (line 28) | FilePathSeparator = string(filepath.Separator) type File (line 30) | type File struct method Data (line 47) | func (f File) Data() *FileData { method Open (line 115) | func (f *File) Open() error { method Close (line 124) | func (f *File) Close() error { method Name (line 134) | func (f *File) Name() string { method Stat (line 138) | func (f *File) Stat() (os.FileInfo, error) { method Sync (line 142) | func (f *File) Sync() error { method Readdir (line 146) | func (f *File) Readdir(count int) (res []os.FileInfo, err error) { method Readdirnames (line 177) | func (f *File) Readdirnames(n int) (names []string, err error) { method Read (line 186) | func (f *File) Read(b []byte) (n int, err error) { method ReadAt (line 208) | func (f *File) ReadAt(b []byte, off int64) (n int, err error) { method Truncate (line 216) | func (f *File) Truncate(size int64) error { method Seek (line 238) | func (f *File) Seek(offset int64, whence int) (int64, error) { method Write (line 253) | func (f *File) Write(b []byte) (n int, err error) { method WriteAt (line 282) | func (f *File) WriteAt(b []byte, off int64) (n int, err error) { method WriteString (line 287) | func (f *File) WriteString(s string) (ret int, err error) { method Info (line 291) | func (f *File) Info() *FileInfo { function NewFileHandle (line 39) | func NewFileHandle(data *FileData) *File { function NewReadOnlyFileHandle (line 43) | func NewReadOnlyFileHandle(data *FileData) *File { type FileData (line 51) | type FileData struct method Name (line 63) | func (d *FileData) Name() string { function CreateFile (line 69) | func CreateFile(name string) *FileData { function CreateDir (line 73) | func CreateDir(name string) *FileData { function ChangeFileName (line 77) | func ChangeFileName(f *FileData, newname string) { function SetMode (line 83) | func SetMode(f *FileData, mode os.FileMode) { function SetModTime (line 89) | func SetModTime(f *FileData, mtime time.Time) { function setModTime (line 95) | func setModTime(f *FileData, mtime time.Time) { function SetUID (line 99) | func SetUID(f *FileData, uid int) { function SetGID (line 105) | func SetGID(f *FileData, gid int) { function GetFileInfo (line 111) | func GetFileInfo(f *FileData) *FileInfo { type FileInfo (line 295) | type FileInfo struct method Name (line 300) | func (s *FileInfo) Name() string { method Mode (line 306) | func (s *FileInfo) Mode() os.FileMode { method ModTime (line 311) | func (s *FileInfo) ModTime() time.Time { method IsDir (line 316) | func (s *FileInfo) IsDir() bool { method Sys (line 321) | func (s *FileInfo) Sys() interface{} { return nil } method Size (line 322) | func (s *FileInfo) Size() int64 { FILE: pkg/afero/memmap.go constant chmodBits (line 28) | chmodBits = os.ModePerm | os.ModeSetuid | os.ModeSetgid | os.ModeSticky type MemMapFs (line 30) | type MemMapFs struct method getData (line 40) | func (m *MemMapFs) getData() map[string]*mem.FileData { method Name (line 52) | func (*MemMapFs) Name() string { return "MemMapFS" } method Create (line 54) | func (m *MemMapFs) Create(name string) (File, error) { method unRegisterWithParent (line 64) | func (m *MemMapFs) unRegisterWithParent(fileName string) error { method findParent (line 80) | func (m *MemMapFs) findParent(f *mem.FileData) *mem.FileData { method findDescendants (line 90) | func (m *MemMapFs) findDescendants(name string) []*mem.FileData { method registerWithParent (line 108) | func (m *MemMapFs) registerWithParent(f *mem.FileData, perm os.FileMod... method lockfreeMkdir (line 133) | func (m *MemMapFs) lockfreeMkdir(name string, perm os.FileMode) error { method Mkdir (line 151) | func (m *MemMapFs) Mkdir(name string, perm os.FileMode) error { method MkdirAll (line 172) | func (m *MemMapFs) MkdirAll(path string, perm os.FileMode) error { method Open (line 197) | func (m *MemMapFs) Open(name string) (File, error) { method openWrite (line 205) | func (m *MemMapFs) openWrite(name string) (File, error) { method open (line 213) | func (m *MemMapFs) open(name string) (*mem.FileData, error) { method lockfreeOpen (line 225) | func (m *MemMapFs) lockfreeOpen(name string) (*mem.FileData, error) { method OpenFile (line 235) | func (m *MemMapFs) OpenFile(name string, flag int, perm os.FileMode) (... method Remove (line 272) | func (m *MemMapFs) Remove(name string) error { method RemoveAll (line 290) | func (m *MemMapFs) RemoveAll(path string) error { method Rename (line 311) | func (m *MemMapFs) Rename(oldName, newName string) error { method renameDescendants (line 349) | func (m *MemMapFs) renameDescendants(oldName, newName string) error { method LstatIfPossible (line 372) | func (m *MemMapFs) LstatIfPossible(name string) (os.FileInfo, bool, er... method Stat (line 377) | func (m *MemMapFs) Stat(name string) (os.FileInfo, error) { method Chmod (line 386) | func (m *MemMapFs) Chmod(name string, mode os.FileMode) error { method setFileMode (line 401) | func (m *MemMapFs) setFileMode(name string, mode os.FileMode) error { method Chown (line 418) | func (m *MemMapFs) Chown(name string, uid, gid int) error { method Chtimes (line 434) | func (m *MemMapFs) Chtimes(name string, atime time.Time, mtime time.Ti... method List (line 451) | func (m *MemMapFs) List() { function NewMemMapFs (line 36) | func NewMemMapFs() Fs { function normalizePath (line 184) | func normalizePath(path string) string { FILE: pkg/afero/os.go type OsFs (line 28) | type OsFs struct method Name (line 34) | func (OsFs) Name() string { return "OsFs" } method Create (line 36) | func (OsFs) Create(name string) (File, error) { method Mkdir (line 46) | func (OsFs) Mkdir(name string, perm os.FileMode) error { method MkdirAll (line 50) | func (OsFs) MkdirAll(path string, perm os.FileMode) error { method Open (line 54) | func (OsFs) Open(name string) (File, error) { method OpenFile (line 64) | func (OsFs) OpenFile(name string, flag int, perm os.FileMode) (File, e... method Remove (line 74) | func (OsFs) Remove(name string) error { method RemoveAll (line 78) | func (OsFs) RemoveAll(path string) error { method Rename (line 82) | func (OsFs) Rename(oldname, newname string) error { method Stat (line 86) | func (OsFs) Stat(name string) (os.FileInfo, error) { method Chmod (line 90) | func (OsFs) Chmod(name string, mode os.FileMode) error { method Chown (line 94) | func (OsFs) Chown(name string, uid, gid int) error { method Chtimes (line 98) | func (OsFs) Chtimes(name string, atime time.Time, mtime time.Time) err... method LstatIfPossible (line 102) | func (OsFs) LstatIfPossible(name string) (os.FileInfo, bool, error) { method SymlinkIfPossible (line 107) | func (OsFs) SymlinkIfPossible(oldname, newname string) error { method ReadlinkIfPossible (line 111) | func (OsFs) ReadlinkIfPossible(name string) (string, error) { function NewOsFs (line 30) | func NewOsFs() Fs { FILE: pkg/afero/path.go function readDirNames (line 27) | func readDirNames(fs Fs, dirname string) ([]string, error) { function walk (line 43) | func walk(fs Fs, path string, info os.FileInfo, walkFn filepath.WalkFunc... function lstatIfPossible (line 81) | func lstatIfPossible(fs Fs, path string) (os.FileInfo, error) { method Walk (line 96) | func (a Afero) Walk(root string, walkFn filepath.WalkFunc) error { function Walk (line 100) | func Walk(fs Fs, root string, walkFn filepath.WalkFunc) error { FILE: pkg/afero/readonlyfs.go type ReadOnlyFs (line 11) | type ReadOnlyFs struct method ReadDir (line 19) | func (r *ReadOnlyFs) ReadDir(name string) ([]os.FileInfo, error) { method Chtimes (line 23) | func (r *ReadOnlyFs) Chtimes(n string, a, m time.Time) error { method Chmod (line 27) | func (r *ReadOnlyFs) Chmod(n string, m os.FileMode) error { method Chown (line 31) | func (r *ReadOnlyFs) Chown(n string, uid, gid int) error { method Name (line 35) | func (r *ReadOnlyFs) Name() string { method Stat (line 39) | func (r *ReadOnlyFs) Stat(name string) (os.FileInfo, error) { method LstatIfPossible (line 43) | func (r *ReadOnlyFs) LstatIfPossible(name string) (os.FileInfo, bool, ... method SymlinkIfPossible (line 51) | func (r *ReadOnlyFs) SymlinkIfPossible(oldname, newname string) error { method ReadlinkIfPossible (line 55) | func (r *ReadOnlyFs) ReadlinkIfPossible(name string) (string, error) { method Rename (line 63) | func (r *ReadOnlyFs) Rename(o, n string) error { method RemoveAll (line 67) | func (r *ReadOnlyFs) RemoveAll(p string) error { method Remove (line 71) | func (r *ReadOnlyFs) Remove(n string) error { method OpenFile (line 75) | func (r *ReadOnlyFs) OpenFile(name string, flag int, perm os.FileMode)... method Open (line 82) | func (r *ReadOnlyFs) Open(n string) (File, error) { method Mkdir (line 86) | func (r *ReadOnlyFs) Mkdir(n string, p os.FileMode) error { method MkdirAll (line 90) | func (r *ReadOnlyFs) MkdirAll(n string, p os.FileMode) error { method Create (line 94) | func (r *ReadOnlyFs) Create(n string) (File, error) { function NewReadOnlyFs (line 15) | func NewReadOnlyFs(source Fs) Fs { FILE: pkg/afero/regexpfs.go type RegexpFs (line 14) | type RegexpFs struct method matchesName (line 28) | func (r *RegexpFs) matchesName(name string) error { method dirOrMatches (line 38) | func (r *RegexpFs) dirOrMatches(name string) error { method Chtimes (line 49) | func (r *RegexpFs) Chtimes(name string, a, m time.Time) error { method Chmod (line 56) | func (r *RegexpFs) Chmod(name string, mode os.FileMode) error { method Chown (line 63) | func (r *RegexpFs) Chown(name string, uid, gid int) error { method Name (line 70) | func (r *RegexpFs) Name() string { method Stat (line 74) | func (r *RegexpFs) Stat(name string) (os.FileInfo, error) { method Rename (line 81) | func (r *RegexpFs) Rename(oldname, newname string) error { method RemoveAll (line 98) | func (r *RegexpFs) RemoveAll(p string) error { method Remove (line 111) | func (r *RegexpFs) Remove(name string) error { method OpenFile (line 118) | func (r *RegexpFs) OpenFile(name string, flag int, perm os.FileMode) (... method Open (line 125) | func (r *RegexpFs) Open(name string) (File, error) { method Mkdir (line 142) | func (r *RegexpFs) Mkdir(n string, p os.FileMode) error { method MkdirAll (line 146) | func (r *RegexpFs) MkdirAll(n string, p os.FileMode) error { method Create (line 150) | func (r *RegexpFs) Create(name string) (File, error) { function NewRegexpFs (line 19) | func NewRegexpFs(source Fs, re *regexp.Regexp) Fs { type RegexpFile (line 23) | type RegexpFile struct method Close (line 157) | func (f *RegexpFile) Close() error { method Read (line 161) | func (f *RegexpFile) Read(s []byte) (int, error) { method ReadAt (line 165) | func (f *RegexpFile) ReadAt(s []byte, o int64) (int, error) { method Seek (line 169) | func (f *RegexpFile) Seek(o int64, w int) (int64, error) { method Write (line 173) | func (f *RegexpFile) Write(s []byte) (int, error) { method WriteAt (line 177) | func (f *RegexpFile) WriteAt(s []byte, o int64) (int, error) { method Name (line 181) | func (f *RegexpFile) Name() string { method Readdir (line 185) | func (f *RegexpFile) Readdir(c int) (fi []os.FileInfo, err error) { method Readdirnames (line 199) | func (f *RegexpFile) Readdirnames(c int) (n []string, err error) { method Stat (line 210) | func (f *RegexpFile) Stat() (os.FileInfo, error) { method Sync (line 214) | func (f *RegexpFile) Sync() error { method Truncate (line 218) | func (f *RegexpFile) Truncate(s int64) error { method WriteString (line 222) | func (f *RegexpFile) WriteString(s string) (int, error) { FILE: pkg/afero/symlink.go type Symlinker (line 27) | type Symlinker interface type Linker (line 37) | type Linker interface type LinkReader (line 48) | type LinkReader interface FILE: pkg/afero/unionFile.go type UnionFile (line 23) | type UnionFile struct method Close (line 31) | func (f *UnionFile) Close() error { method Read (line 44) | func (f *UnionFile) Read(s []byte) (int, error) { method ReadAt (line 64) | func (f *UnionFile) ReadAt(s []byte, o int64) (int, error) { method Seek (line 78) | func (f *UnionFile) Seek(o int64, w int) (pos int64, err error) { method Write (line 92) | func (f *UnionFile) Write(s []byte) (n int, err error) { method WriteAt (line 106) | func (f *UnionFile) WriteAt(s []byte, o int64) (n int, err error) { method Name (line 120) | func (f *UnionFile) Name() string { method Readdir (line 160) | func (f *UnionFile) Readdir(c int) (ofi []os.FileInfo, err error) { method Readdirnames (line 207) | func (f *UnionFile) Readdirnames(c int) ([]string, error) { method Stat (line 219) | func (f *UnionFile) Stat() (os.FileInfo, error) { method Sync (line 229) | func (f *UnionFile) Sync() (err error) { method Truncate (line 243) | func (f *UnionFile) Truncate(s int64) (err error) { method WriteString (line 257) | func (f *UnionFile) WriteString(s string) (n int, err error) { type DirsMerger (line 130) | type DirsMerger function copyFile (line 271) | func copyFile(base Fs, layer Fs, name string, bfh File) error { function copyToLayer (line 313) | func copyToLayer(base Fs, layer Fs, name string) error { function copyFileToLayer (line 323) | func copyFileToLayer(base Fs, layer Fs, name string, flag int, perm os.F... FILE: pkg/afero/util.go constant FilePathSeparator (line 33) | FilePathSeparator = string(filepath.Separator) method WriteReader (line 36) | func (a Afero) WriteReader(path string, r io.Reader) (err error) { function WriteReader (line 40) | func WriteReader(fs Fs, path string, r io.Reader) (err error) { method SafeWriteReader (line 64) | func (a Afero) SafeWriteReader(path string, r io.Reader) (err error) { function SafeWriteReader (line 68) | func SafeWriteReader(fs Fs, path string, r io.Reader) (err error) { method GetTempDir (line 97) | func (a Afero) GetTempDir(subPath string) string { function GetTempDir (line 103) | func GetTempDir(fs Fs, subPath string) string { function UnicodeSanitize (line 136) | func UnicodeSanitize(s string) string { function NeuterAccents (line 160) | func NeuterAccents(s string) string { function isMn (line 167) | func isMn(r rune) bool { method FileContainsBytes (line 171) | func (a Afero) FileContainsBytes(filename string, subslice []byte) (bool... function FileContainsBytes (line 176) | func FileContainsBytes(fs Fs, filename string, subslice []byte) (bool, e... method FileContainsAnyBytes (line 186) | func (a Afero) FileContainsAnyBytes(filename string, subslices [][]byte)... function FileContainsAnyBytes (line 191) | func FileContainsAnyBytes(fs Fs, filename string, subslices [][]byte) (b... function readerContainsAny (line 202) | func readerContainsAny(r io.Reader, subslices ...[]byte) bool { method DirExists (line 253) | func (a Afero) DirExists(path string) (bool, error) { function DirExists (line 258) | func DirExists(fs Fs, path string) (bool, error) { method IsDir (line 269) | func (a Afero) IsDir(path string) (bool, error) { function IsDir (line 274) | func IsDir(fs Fs, path string) (bool, error) { method IsEmpty (line 282) | func (a Afero) IsEmpty(path string) (bool, error) { function IsEmpty (line 287) | func IsEmpty(fs Fs, path string) (bool, error) { method Exists (line 307) | func (a Afero) Exists(path string) (bool, error) { function Exists (line 312) | func Exists(fs Fs, path string) (bool, error) { function FullBaseFsPath (line 323) | func FullBaseFsPath(basePathFs *BasePathFs, relativePath string) string { FILE: vendor/github.com/chzyer/readline/ansi_windows.go constant _ (line 16) | _ = uint16(0) constant COLOR_FBLUE (line 17) | COLOR_FBLUE = 0x0001 constant COLOR_FGREEN (line 18) | COLOR_FGREEN = 0x0002 constant COLOR_FRED (line 19) | COLOR_FRED = 0x0004 constant COLOR_FINTENSITY (line 20) | COLOR_FINTENSITY = 0x0008 constant COLOR_BBLUE (line 22) | COLOR_BBLUE = 0x0010 constant COLOR_BGREEN (line 23) | COLOR_BGREEN = 0x0020 constant COLOR_BRED (line 24) | COLOR_BRED = 0x0040 constant COLOR_BINTENSITY (line 25) | COLOR_BINTENSITY = 0x0080 constant COMMON_LVB_UNDERSCORE (line 27) | COMMON_LVB_UNDERSCORE = 0x8000 constant COMMON_LVB_BOLD (line 28) | COMMON_LVB_BOLD = 0x0007 type ANSIWriter (line 53) | type ANSIWriter struct method Close (line 68) | func (a *ANSIWriter) Close() error { method Write (line 196) | func (a *ANSIWriter) Write(b []byte) (int, error) { function NewANSIWriter (line 60) | func NewANSIWriter(w io.Writer) *ANSIWriter { type ANSIWriterCtx (line 73) | type ANSIWriterCtx struct method Flush (line 87) | func (a *ANSIWriterCtx) Flush() { method process (line 91) | func (a *ANSIWriterCtx) process(r rune) bool { method ioloopEscSeq (line 121) | func (a *ANSIWriterCtx) ioloopEscSeq(w *bufio.Writer, r rune, argptr *... function NewANSIWriterCtx (line 81) | func NewANSIWriterCtx(target io.Writer) *ANSIWriterCtx { function killLines (line 213) | func killLines() error { function eraseLine (line 235) | func eraseLine() error { FILE: vendor/github.com/chzyer/readline/complete.go type AutoCompleter (line 10) | type AutoCompleter interface type TabCompleter (line 21) | type TabCompleter struct method Do (line 23) | func (t *TabCompleter) Do([]rune, int) ([][]rune, int) { type opCompleter (line 27) | type opCompleter struct method doSelect (line 49) | func (o *opCompleter) doSelect() { method nextCandidate (line 59) | func (o *opCompleter) nextCandidate(i int) { method OnComplete (line 67) | func (o *opCompleter) OnComplete() bool { method IsInCompleteSelectMode (line 113) | func (o *opCompleter) IsInCompleteSelectMode() bool { method IsInCompleteMode (line 117) | func (o *opCompleter) IsInCompleteMode() bool { method HandleCompleteSelect (line 121) | func (o *opCompleter) HandleCompleteSelect(r rune) bool { method getMatrixSize (line 176) | func (o *opCompleter) getMatrixSize() int { method OnWidthChange (line 184) | func (o *opCompleter) OnWidthChange(newWidth int) { method CompleteRefresh (line 188) | func (o *opCompleter) CompleteRefresh() { method aggCandidate (line 244) | func (o *opCompleter) aggCandidate(candidate [][]rune) int { method EnterCompleteSelectMode (line 261) | func (o *opCompleter) EnterCompleteSelectMode() { method EnterCompleteMode (line 267) | func (o *opCompleter) EnterCompleteMode(offset int, candidate [][]rune) { method ExitCompleteSelectMode (line 274) | func (o *opCompleter) ExitCompleteSelectMode() { method ExitCompleteMode (line 282) | func (o *opCompleter) ExitCompleteMode(revent bool) { function newOpCompleter (line 41) | func newOpCompleter(w io.Writer, op *Operation, width int) *opCompleter { FILE: vendor/github.com/chzyer/readline/complete_helper.go type DynamicCompleteFunc (line 9) | type DynamicCompleteFunc type PrefixCompleterInterface (line 11) | type PrefixCompleterInterface interface type DynamicPrefixCompleterInterface (line 19) | type DynamicPrefixCompleterInterface interface type PrefixCompleter (line 25) | type PrefixCompleter struct method Tree (line 32) | func (p *PrefixCompleter) Tree(prefix string) string { method Print (line 54) | func (p *PrefixCompleter) Print(prefix string, level int, buf *bytes.B... method IsDynamic (line 58) | func (p *PrefixCompleter) IsDynamic() bool { method GetName (line 62) | func (p *PrefixCompleter) GetName() []rune { method GetDynamicNames (line 66) | func (p *PrefixCompleter) GetDynamicNames(line []rune) [][]rune { method GetChildren (line 74) | func (p *PrefixCompleter) GetChildren() []PrefixCompleterInterface { method SetChildren (line 78) | func (p *PrefixCompleter) SetChildren(children []PrefixCompleterInterf... method Do (line 103) | func (p *PrefixCompleter) Do(line []rune, pos int) (newLine [][]rune, ... function Print (line 38) | func Print(p PrefixCompleterInterface, prefix string, level int, buf *by... function NewPrefixCompleter (line 82) | func NewPrefixCompleter(pc ...PrefixCompleterInterface) *PrefixCompleter { function PcItem (line 86) | func PcItem(name string, pc ...PrefixCompleterInterface) *PrefixCompleter { function PcItemDynamic (line 95) | func PcItemDynamic(callback DynamicCompleteFunc, pc ...PrefixCompleterIn... function Do (line 107) | func Do(p PrefixCompleterInterface, line []rune, pos int) (newLine [][]r... function doInternal (line 111) | func doInternal(p PrefixCompleterInterface, line []rune, pos int, origLi... FILE: vendor/github.com/chzyer/readline/complete_segment.go type SegmentCompleter (line 3) | type SegmentCompleter interface type dumpSegmentCompleter (line 20) | type dumpSegmentCompleter struct method DoSegment (line 24) | func (d *dumpSegmentCompleter) DoSegment(segment [][]rune, n int) [][]... function SegmentFunc (line 28) | func SegmentFunc(f func([][]rune, int) [][]rune) AutoCompleter { function SegmentAutoComplete (line 32) | func SegmentAutoComplete(completer SegmentCompleter) *SegmentComplete { type SegmentComplete (line 38) | type SegmentComplete struct method Do (line 72) | func (c *SegmentComplete) Do(line []rune, pos int) (newLine [][]rune, ... function RetSegment (line 42) | func RetSegment(segments [][]rune, cands [][]rune, idx int) ([][]rune, i... function SplitSegment (line 54) | func SplitSegment(line []rune, pos int) ([][]rune, int) { FILE: vendor/github.com/chzyer/readline/history.go type hisItem (line 12) | type hisItem struct method Clean (line 18) | func (h *hisItem) Clean() { type opHistory (line 23) | type opHistory struct method Reset (line 42) | func (o *opHistory) Reset() { method IsHistoryClosed (line 47) | func (o *opHistory) IsHistoryClosed() bool { method Init (line 53) | func (o *opHistory) Init() { method initHistory (line 59) | func (o *opHistory) initHistory() { method historyUpdatePath (line 66) | func (o *opHistory) historyUpdatePath(path string) { method Compact (line 97) | func (o *opHistory) Compact() { method Rewrite (line 103) | func (o *opHistory) Rewrite() { method rewriteLocked (line 109) | func (o *opHistory) rewriteLocked() { method Close (line 139) | func (o *opHistory) Close() { method FindBck (line 147) | func (o *opHistory) FindBck(isNewSearch bool, rs []rune, start int) (i... method FindFwd (line 167) | func (o *opHistory) FindFwd(isNewSearch bool, rs []rune, start int) (i... method showItem (line 195) | func (o *opHistory) showItem(obj interface{}) []rune { method Prev (line 203) | func (o *opHistory) Prev() []rune { method Next (line 215) | func (o *opHistory) Next() ([]rune, bool) { method Disable (line 229) | func (o *opHistory) Disable() { method Enable (line 234) | func (o *opHistory) Enable() { method debug (line 238) | func (o *opHistory) debug() { method New (line 246) | func (o *opHistory) New(current []rune) (err error) { method Revert (line 296) | func (o *opHistory) Revert() { method Update (line 301) | func (o *opHistory) Update(s []rune, commit bool) (err error) { method Push (line 326) | func (o *opHistory) Push(s []rune) { function newOpHistory (line 33) | func newOpHistory(cfg *Config) (o *opHistory) { FILE: vendor/github.com/chzyer/readline/operation.go type InterruptError (line 13) | type InterruptError struct method Error (line 17) | func (*InterruptError) Error() string { type Operation (line 21) | type Operation struct method SetBuffer (line 37) | func (o *Operation) SetBuffer(what string) { method SetPrompt (line 92) | func (o *Operation) SetPrompt(s string) { method SetMaskRune (line 96) | func (o *Operation) SetMaskRune(r rune) { method GetConfig (line 100) | func (o *Operation) GetConfig() *Config { method ioloop (line 107) | func (o *Operation) ioloop() { method Stderr (line 366) | func (o *Operation) Stderr() io.Writer { method Stdout (line 370) | func (o *Operation) Stdout() io.Writer { method String (line 374) | func (o *Operation) String() (string, error) { method Runes (line 379) | func (o *Operation) Runes() ([]rune, error) { method PasswordEx (line 401) | func (o *Operation) PasswordEx(prompt string, l Listener) ([]byte, err... method GenPasswordConfig (line 408) | func (o *Operation) GenPasswordConfig() *Config { method PasswordWithConfig (line 412) | func (o *Operation) PasswordWithConfig(cfg *Config) ([]byte, error) { method Password (line 420) | func (o *Operation) Password(prompt string) ([]byte, error) { method SetTitle (line 424) | func (o *Operation) SetTitle(t string) { method Slice (line 428) | func (o *Operation) Slice() ([]byte, error) { method Close (line 436) | func (o *Operation) Close() { method SetHistoryPath (line 440) | func (o *Operation) SetHistoryPath(path string) { method IsNormalMode (line 448) | func (o *Operation) IsNormalMode() bool { method SetConfig (line 452) | func (op *Operation) SetConfig(cfg *Config) (*Config, error) { method ResetHistory (line 487) | func (o *Operation) ResetHistory() { method SaveHistory (line 493) | func (o *Operation) SaveHistory(content string) error { method Refresh (line 497) | func (o *Operation) Refresh() { method Clean (line 503) | func (o *Operation) Clean() { type wrapWriter (line 41) | type wrapWriter struct method Write (line 47) | func (w *wrapWriter) Write(b []byte) (int, error) { function NewOperation (line 69) | func NewOperation(t *Terminal, cfg *Config) *Operation { function FuncListener (line 507) | func FuncListener(f func(line []rune, pos int, key rune) (newLine []rune... type DumpListener (line 511) | type DumpListener struct method OnChange (line 515) | func (d *DumpListener) OnChange(line []rune, pos int, key rune) (newLi... type Listener (line 519) | type Listener interface type Painter (line 523) | type Painter interface type defaultPainter (line 527) | type defaultPainter struct method Paint (line 529) | func (p *defaultPainter) Paint(line []rune, _ int) []rune { FILE: vendor/github.com/chzyer/readline/password.go type opPassword (line 3) | type opPassword struct method ExitPasswordMode (line 12) | func (o *opPassword) ExitPasswordMode() { method EnterPasswordMode (line 17) | func (o *opPassword) EnterPasswordMode(cfg *Config) (err error) { method PasswordConfig (line 22) | func (o *opPassword) PasswordConfig() *Config { function newOpPassword (line 8) | func newOpPassword(o *Operation) *opPassword { FILE: vendor/github.com/chzyer/readline/rawreader_windows.go constant VK_CANCEL (line 8) | VK_CANCEL = 0x03 constant VK_BACK (line 9) | VK_BACK = 0x08 constant VK_TAB (line 10) | VK_TAB = 0x09 constant VK_RETURN (line 11) | VK_RETURN = 0x0D constant VK_SHIFT (line 12) | VK_SHIFT = 0x10 constant VK_CONTROL (line 13) | VK_CONTROL = 0x11 constant VK_MENU (line 14) | VK_MENU = 0x12 constant VK_ESCAPE (line 15) | VK_ESCAPE = 0x1B constant VK_LEFT (line 16) | VK_LEFT = 0x25 constant VK_UP (line 17) | VK_UP = 0x26 constant VK_RIGHT (line 18) | VK_RIGHT = 0x27 constant VK_DOWN (line 19) | VK_DOWN = 0x28 constant VK_DELETE (line 20) | VK_DELETE = 0x2E constant VK_LSHIFT (line 21) | VK_LSHIFT = 0xA0 constant VK_RSHIFT (line 22) | VK_RSHIFT = 0xA1 constant VK_LCONTROL (line 23) | VK_LCONTROL = 0xA2 constant VK_RCONTROL (line 24) | VK_RCONTROL = 0xA3 type RawReader (line 29) | type RawReader struct method Read (line 40) | func (r *RawReader) Read(buf []byte) (int, error) { method writeEsc (line 112) | func (r *RawReader) writeEsc(b []byte, char rune) (int, error) { method write (line 118) | func (r *RawReader) write(b []byte, char rune) (int, error) { method Close (line 123) | func (r *RawReader) Close() error { function NewRawReader (line 34) | func NewRawReader() *RawReader { FILE: vendor/github.com/chzyer/readline/readline.go type Instance (line 22) | type Instance struct method ResetHistory (line 182) | func (i *Instance) ResetHistory() { method SetPrompt (line 186) | func (i *Instance) SetPrompt(s string) { method SetMaskRune (line 190) | func (i *Instance) SetMaskRune(r rune) { method SetHistoryPath (line 195) | func (i *Instance) SetHistoryPath(p string) { method Stdout (line 200) | func (i *Instance) Stdout() io.Writer { method Stderr (line 205) | func (i *Instance) Stderr() io.Writer { method SetVimMode (line 210) | func (i *Instance) SetVimMode(on bool) { method IsVimMode (line 214) | func (i *Instance) IsVimMode() bool { method GenPasswordConfig (line 218) | func (i *Instance) GenPasswordConfig() *Config { method ReadPasswordWithConfig (line 223) | func (i *Instance) ReadPasswordWithConfig(cfg *Config) ([]byte, error) { method ReadPasswordEx (line 227) | func (i *Instance) ReadPasswordEx(prompt string, l Listener) ([]byte, ... method ReadPassword (line 231) | func (i *Instance) ReadPassword(prompt string) ([]byte, error) { method Line (line 248) | func (i *Instance) Line() *Result { method Readline (line 254) | func (i *Instance) Readline() (string, error) { method ReadlineWithDefault (line 258) | func (i *Instance) ReadlineWithDefault(what string) (string, error) { method SaveHistory (line 263) | func (i *Instance) SaveHistory(content string) error { method ReadSlice (line 268) | func (i *Instance) ReadSlice() ([]byte, error) { method Close (line 273) | func (i *Instance) Close() error { method Clean (line 281) | func (i *Instance) Clean() { method Write (line 285) | func (i *Instance) Write(b []byte) (int, error) { method WriteStdin (line 299) | func (i *Instance) WriteStdin(val []byte) (int, error) { method SetConfig (line 303) | func (i *Instance) SetConfig(cfg *Config) *Config { method Refresh (line 314) | func (i *Instance) Refresh() { method HistoryDisable (line 319) | func (i *Instance) HistoryDisable() { method HistoryEnable (line 324) | func (i *Instance) HistoryEnable() { type Config (line 28) | type Config struct method useInteractive (line 86) | func (c *Config) useInteractive() bool { method Init (line 93) | func (c *Config) Init() error { method Clone (line 148) | func (c Config) Clone() *Config { method SetListener (line 154) | func (c *Config) SetListener(f func(line []rune, pos int, key rune) (n... method SetPainter (line 158) | func (c *Config) SetPainter(p Painter) { function NewEx (line 162) | func NewEx(cfg *Config) (*Instance, error) { function New (line 178) | func New(prompt string) (*Instance, error) { type Result (line 235) | type Result struct method CanContinue (line 240) | func (l *Result) CanContinue() bool { method CanBreak (line 244) | func (l *Result) CanBreak() bool { FILE: vendor/github.com/chzyer/readline/remote.go type MsgType (line 15) | type MsgType constant T_DATA (line 18) | T_DATA = MsgType(iota) constant T_WIDTH (line 19) | T_WIDTH constant T_WIDTH_REPORT (line 20) | T_WIDTH_REPORT constant T_ISTTY_REPORT (line 21) | T_ISTTY_REPORT constant T_RAW (line 22) | T_RAW constant T_ERAW (line 23) | T_ERAW constant T_EOF (line 24) | T_EOF type RemoteSvr (line 27) | type RemoteSvr struct method init (line 78) | func (r *RemoteSvr) init(buf *bufio.Reader) error { method HandleConfig (line 102) | func (r *RemoteSvr) HandleConfig(cfg *Config) { method IsTerminal (line 116) | func (r *RemoteSvr) IsTerminal() bool { method checkEOF (line 120) | func (r *RemoteSvr) checkEOF() error { method Read (line 127) | func (r *RemoteSvr) Read(b []byte) (int, error) { method writeMsg (line 152) | func (r *RemoteSvr) writeMsg(m *Message) error { method Write (line 159) | func (r *RemoteSvr) Write(b []byte) (int, error) { method EnterRawMode (line 166) | func (r *RemoteSvr) EnterRawMode() error { method ExitRawMode (line 170) | func (r *RemoteSvr) ExitRawMode() error { method writeLoop (line 174) | func (r *RemoteSvr) writeLoop() { method Close (line 192) | func (r *RemoteSvr) Close() error { method readLoop (line 200) | func (r *RemoteSvr) readLoop(buf *bufio.Reader) { method GotIsTerminal (line 230) | func (r *RemoteSvr) GotIsTerminal(data []byte) { method GotReportWidth (line 238) | func (r *RemoteSvr) GotReportWidth(data []byte) { method GetWidth (line 245) | func (r *RemoteSvr) GetWidth() int { type writeReply (line 42) | type writeReply struct type writeCtx (line 47) | type writeCtx struct function newWriteCtx (line 52) | func newWriteCtx(msg *Message) *writeCtx { function NewRemoteSvr (line 59) | func NewRemoteSvr(conn net.Conn) (*RemoteSvr, error) { type Message (line 251) | type Message struct method WriteTo (line 276) | func (m *Message) WriteTo(w io.Writer) (int, error) { function ReadMessage (line 256) | func ReadMessage(r io.Reader) (*Message, error) { function NewMessage (line 272) | func NewMessage(t MsgType, data []byte) *Message { type RemoteCli (line 287) | type RemoteCli struct method MarkIsTerminal (line 306) | func (r *RemoteCli) MarkIsTerminal(is bool) { method init (line 310) | func (r *RemoteCli) init() error { method writeMsg (line 330) | func (r *RemoteCli) writeMsg(m *Message) error { method Write (line 337) | func (r *RemoteCli) Write(b []byte) (int, error) { method reportWidth (line 345) | func (r *RemoteCli) reportWidth() error { method reportIsTerminal (line 357) | func (r *RemoteCli) reportIsTerminal() error { method readLoop (line 377) | func (r *RemoteCli) readLoop() { method ServeBy (line 395) | func (r *RemoteCli) ServeBy(source io.Reader) error { method Close (line 414) | func (r *RemoteCli) Close() { method Serve (line 418) | func (r *RemoteCli) Serve() error { function NewRemoteCli (line 298) | func NewRemoteCli(conn net.Conn) (*RemoteCli, error) { function ListenRemote (line 422) | func ListenRemote(n, addr string, cfg *Config, h func(*Instance), onList... function HandleConn (line 449) | func HandleConn(cfg Config, conn net.Conn) (*Instance, error) { function DialRemote (line 463) | func DialRemote(n, addr string) error { FILE: vendor/github.com/chzyer/readline/runebuf.go type runeBufferBck (line 12) | type runeBufferBck struct type RuneBuffer (line 17) | type RuneBuffer struct method pushKill (line 38) | func (r* RuneBuffer) pushKill(text []rune) { method OnWidthChange (line 42) | func (r *RuneBuffer) OnWidthChange(newWidth int) { method Backup (line 48) | func (r *RuneBuffer) Backup() { method Restore (line 54) | func (r *RuneBuffer) Restore() { method SetConfig (line 75) | func (r *RuneBuffer) SetConfig(cfg *Config) { method SetMask (line 82) | func (r *RuneBuffer) SetMask(m rune) { method CurrentWidth (line 88) | func (r *RuneBuffer) CurrentWidth(x int) int { method PromptLen (line 94) | func (r *RuneBuffer) PromptLen() int { method promptLen (line 101) | func (r *RuneBuffer) promptLen() int { method RuneSlice (line 105) | func (r *RuneBuffer) RuneSlice(i int) []rune { method Runes (line 119) | func (r *RuneBuffer) Runes() []rune { method Pos (line 127) | func (r *RuneBuffer) Pos() int { method Len (line 133) | func (r *RuneBuffer) Len() int { method MoveToLineStart (line 139) | func (r *RuneBuffer) MoveToLineStart() { method MoveBackward (line 148) | func (r *RuneBuffer) MoveBackward() { method WriteString (line 157) | func (r *RuneBuffer) WriteString(s string) { method WriteRune (line 161) | func (r *RuneBuffer) WriteRune(s rune) { method WriteRunes (line 165) | func (r *RuneBuffer) WriteRunes(s []rune) { method MoveForward (line 173) | func (r *RuneBuffer) MoveForward() { method IsCursorInEnd (line 182) | func (r *RuneBuffer) IsCursorInEnd() bool { method Replace (line 188) | func (r *RuneBuffer) Replace(ch rune) { method Erase (line 194) | func (r *RuneBuffer) Erase() { method Delete (line 202) | func (r *RuneBuffer) Delete() (success bool) { method DeleteWord (line 214) | func (r *RuneBuffer) DeleteWord() { method MoveToPrevWord (line 234) | func (r *RuneBuffer) MoveToPrevWord() (success bool) { method KillFront (line 253) | func (r *RuneBuffer) KillFront() { method Kill (line 267) | func (r *RuneBuffer) Kill() { method Transpose (line 274) | func (r *RuneBuffer) Transpose() { method MoveToNextWord (line 294) | func (r *RuneBuffer) MoveToNextWord() { method MoveToEndWord (line 307) | func (r *RuneBuffer) MoveToEndWord() { method BackEscapeWord (line 329) | func (r *RuneBuffer) BackEscapeWord() { method Yank (line 348) | func (r *RuneBuffer) Yank() { method Backspace (line 362) | func (r *RuneBuffer) Backspace() { method MoveToLineEnd (line 373) | func (r *RuneBuffer) MoveToLineEnd() { method LineCount (line 383) | func (r *RuneBuffer) LineCount(width int) int { method MoveTo (line 391) | func (r *RuneBuffer) MoveTo(ch rune, prevChar, reverse bool) (success ... method isInLineEdge (line 420) | func (r *RuneBuffer) isInLineEdge() bool { method getSplitByLine (line 428) | func (r *RuneBuffer) getSplitByLine(rs []rune) []string { method IdxLine (line 432) | func (r *RuneBuffer) IdxLine(width int) int { method idxLine (line 438) | func (r *RuneBuffer) idxLine(width int) int { method CursorLineCount (line 446) | func (r *RuneBuffer) CursorLineCount() int { method Refresh (line 450) | func (r *RuneBuffer) Refresh(f func()) { method SetOffset (line 468) | func (r *RuneBuffer) SetOffset(offset string) { method print (line 474) | func (r *RuneBuffer) print() { method output (line 479) | func (r *RuneBuffer) output() []byte { method getBackspaceSequence (line 512) | func (r *RuneBuffer) getBackspaceSequence() []byte { method Reset (line 542) | func (r *RuneBuffer) Reset() []rune { method calWidth (line 549) | func (r *RuneBuffer) calWidth(m int) int { method SetStyle (line 556) | func (r *RuneBuffer) SetStyle(start, end int, style string) { method SetWithIdx (line 574) | func (r *RuneBuffer) SetWithIdx(idx int, buf []rune) { method Set (line 581) | func (r *RuneBuffer) Set(buf []rune) { method SetPrompt (line 585) | func (r *RuneBuffer) SetPrompt(prompt string) { method cleanOutput (line 591) | func (r *RuneBuffer) cleanOutput(w io.Writer, idxLine int) { method Clean (line 613) | func (r *RuneBuffer) Clean() { method clean (line 619) | func (r *RuneBuffer) clean() { method cleanWithIdxLine (line 623) | func (r *RuneBuffer) cleanWithIdxLine(idxLine int) { function NewRuneBuffer (line 64) | func NewRuneBuffer(w io.Writer, prompt string, cfg *Config, width int) *... FILE: vendor/github.com/chzyer/readline/runes.go type Runes (line 12) | type Runes struct method EqualRune (line 14) | func (Runes) EqualRune(a, b rune, fold bool) bool { method EqualRuneFold (line 32) | func (r Runes) EqualRuneFold(a, b rune) bool { method EqualFold (line 36) | func (r Runes) EqualFold(a, b []rune) bool { method Equal (line 50) | func (Runes) Equal(a, b []rune) bool { method IndexAllBckEx (line 62) | func (rs Runes) IndexAllBckEx(r, sub []rune, fold bool) int { method IndexAllBck (line 79) | func (rs Runes) IndexAllBck(r, sub []rune) int { method IndexAll (line 84) | func (rs Runes) IndexAll(r, sub []rune) int { method IndexAllEx (line 88) | func (rs Runes) IndexAllEx(r, sub []rune, fold bool) int { method Index (line 107) | func (Runes) Index(r rune, rs []rune) int { method ColorFilter (line 116) | func (Runes) ColorFilter(r []rune) []rune { method Width (line 146) | func (Runes) Width(r rune) int { method WidthAll (line 159) | func (Runes) WidthAll(r []rune) (length int) { method Backspace (line 166) | func (Runes) Backspace(r []rune) []byte { method Copy (line 170) | func (Runes) Copy(r []rune) []rune { method HasPrefixFold (line 176) | func (Runes) HasPrefixFold(r, prefix []rune) bool { method HasPrefix (line 183) | func (Runes) HasPrefix(r, prefix []rune) bool { method Aggregate (line 190) | func (Runes) Aggregate(candicate [][]rune) (same []rune, size int) { method TrimSpaceLeft (line 214) | func (Runes) TrimSpaceLeft(in []rune) []rune { FILE: vendor/github.com/chzyer/readline/search.go constant S_STATE_FOUND (line 11) | S_STATE_FOUND = iota constant S_STATE_FAILING (line 12) | S_STATE_FAILING constant S_DIR_BCK (line 16) | S_DIR_BCK = iota constant S_DIR_FWD (line 17) | S_DIR_FWD type opSearch (line 20) | type opSearch struct method OnWidthChange (line 45) | func (o *opSearch) OnWidthChange(newWidth int) { method IsSearchMode (line 49) | func (o *opSearch) IsSearchMode() bool { method SearchBackspace (line 53) | func (o *opSearch) SearchBackspace() { method findHistoryBy (line 60) | func (o *opSearch) findHistoryBy(isNewSearch bool) (int, *list.Element) { method search (line 67) | func (o *opSearch) search(isChange bool) bool { method SearchChar (line 94) | func (o *opSearch) SearchChar(r rune) { method SearchMode (line 99) | func (o *opSearch) SearchMode(dir int) bool { method ExitSearchMode (line 115) | func (o *opSearch) ExitSearchMode(revert bool) { method SearchRefresh (line 127) | func (o *opSearch) SearchRefresh(x int) { function newOpSearch (line 35) | func newOpSearch(w io.Writer, buf *RuneBuffer, history *opHistory, cfg *... FILE: vendor/github.com/chzyer/readline/std.go function getInstance (line 22) | func getInstance() *Instance { function SetHistoryPath (line 35) | func SetHistoryPath(fp string) { function SetAutoComplete (line 43) | func SetAutoComplete(completer AutoCompleter) { function AddHistory (line 52) | func AddHistory(content string) error { function Password (line 57) | func Password(prompt string) ([]byte, error) { function Line (line 63) | func Line(prompt string) (string, error) { type CancelableStdin (line 69) | type CancelableStdin struct method ioloop (line 90) | func (c *CancelableStdin) ioloop() { method Read (line 107) | func (c *CancelableStdin) Read(b []byte) (n int, err error) { method Close (line 128) | func (c *CancelableStdin) Close() error { function NewCancelableStdin (line 80) | func NewCancelableStdin(r io.Reader) *CancelableStdin { type FillableStdin (line 137) | type FillableStdin struct method ioloop (line 156) | func (s *FillableStdin) ioloop() { method Read (line 175) | func (s *FillableStdin) Read(p []byte) (n int, err error) { method Close (line 194) | func (s *FillableStdin) Close() error { function NewFillableStdin (line 146) | func NewFillableStdin(stdin io.Reader) (io.ReadCloser, io.Writer) { FILE: vendor/github.com/chzyer/readline/std_windows.go function init (line 5) | func init() { FILE: vendor/github.com/chzyer/readline/term.go type State (line 25) | type State struct function IsTerminal (line 30) | func IsTerminal(fd int) bool { function MakeRaw (line 38) | func MakeRaw(fd int) (*State, error) { function GetState (line 64) | func GetState(fd int) (*State, error) { function restoreTerm (line 75) | func restoreTerm(fd int, state *State) error { function ReadPassword (line 82) | func ReadPassword(fd int) ([]byte, error) { FILE: vendor/github.com/chzyer/readline/term_bsd.go function getTermios (line 14) | func getTermios(fd int) (*Termios, error) { function setTermios (line 23) | func setTermios(fd int, termios *Termios) error { FILE: vendor/github.com/chzyer/readline/term_linux.go constant ioctlReadTermios (line 15) | ioctlReadTermios = 0x5401 constant ioctlWriteTermios (line 16) | ioctlWriteTermios = 0x5402 function getTermios (line 18) | func getTermios(fd int) (*Termios, error) { function setTermios (line 27) | func setTermios(fd int, termios *Termios) error { FILE: vendor/github.com/chzyer/readline/term_solaris.go function GetSize (line 12) | func GetSize(fd int) (int, int, error) { type Termios (line 20) | type Termios function getTermios (line 22) | func getTermios(fd int) (*Termios, error) { function setTermios (line 30) | func setTermios(fd int, termios *Termios) error { FILE: vendor/github.com/chzyer/readline/term_unix.go type Termios (line 14) | type Termios function GetSize (line 17) | func GetSize(fd int) (int, int, error) { FILE: vendor/github.com/chzyer/readline/term_windows.go constant enableLineInput (line 26) | enableLineInput = 2 constant enableEchoInput (line 27) | enableEchoInput = 4 constant enableProcessedInput (line 28) | enableProcessedInput = 1 constant enableWindowInput (line 29) | enableWindowInput = 8 constant enableMouseInput (line 30) | enableMouseInput = 16 constant enableInsertMode (line 31) | enableInsertMode = 32 constant enableQuickEditMode (line 32) | enableQuickEditMode = 64 constant enableExtendedFlags (line 33) | enableExtendedFlags = 128 constant enableAutoPosition (line 34) | enableAutoPosition = 256 constant enableProcessedOutput (line 35) | enableProcessedOutput = 1 constant enableWrapAtEolOutput (line 36) | enableWrapAtEolOutput = 2 type coord (line 48) | type coord struct type smallRect (line 52) | type smallRect struct type consoleScreenBufferInfo (line 58) | type consoleScreenBufferInfo struct type State (line 67) | type State struct function IsTerminal (line 72) | func IsTerminal(fd int) bool { function MakeRaw (line 81) | func MakeRaw(fd int) (*State, error) { function GetState (line 97) | func GetState(fd int) (*State, error) { function restoreTerm (line 108) | func restoreTerm(fd int, state *State) error { function GetSize (line 114) | func GetSize(fd int) (width, height int, err error) { function ReadPassword (line 126) | func ReadPassword(fd int) ([]byte, error) { FILE: vendor/github.com/chzyer/readline/terminal.go type Terminal (line 12) | type Terminal struct method SleepToResume (line 43) | func (t *Terminal) SleepToResume() { method EnterRawMode (line 56) | func (t *Terminal) EnterRawMode() (err error) { method ExitRawMode (line 60) | func (t *Terminal) ExitRawMode() (err error) { method Write (line 64) | func (t *Terminal) Write(b []byte) (int, error) { method WriteStdin (line 70) | func (t *Terminal) WriteStdin(b []byte) (int, error) { method GetOffset (line 79) | func (t *Terminal) GetOffset(f func(offset string)) { method Print (line 86) | func (t *Terminal) Print(s string) { method PrintRune (line 90) | func (t *Terminal) PrintRune(r rune) { method Readline (line 94) | func (t *Terminal) Readline() *Operation { method ReadRune (line 99) | func (t *Terminal) ReadRune() rune { method IsReading (line 107) | func (t *Terminal) IsReading() bool { method KickRead (line 111) | func (t *Terminal) KickRead() { method ioloop (line 118) | func (t *Terminal) ioloop() { method Bell (line 200) | func (t *Terminal) Bell() { method Close (line 204) | func (t *Terminal) Close() error { method GetConfig (line 216) | func (t *Terminal) GetConfig() *Config { method getStdin (line 223) | func (t *Terminal) getStdin() io.Reader { method SetConfig (line 230) | func (t *Terminal) SetConfig(c *Config) error { function NewTerminal (line 26) | func NewTerminal(cfg *Config) (*Terminal, error) { type termSize (line 74) | type termSize struct FILE: vendor/github.com/chzyer/readline/utils.go constant CharLineStart (line 21) | CharLineStart = 1 constant CharBackward (line 22) | CharBackward = 2 constant CharInterrupt (line 23) | CharInterrupt = 3 constant CharDelete (line 24) | CharDelete = 4 constant CharLineEnd (line 25) | CharLineEnd = 5 constant CharForward (line 26) | CharForward = 6 constant CharBell (line 27) | CharBell = 7 constant CharCtrlH (line 28) | CharCtrlH = 8 constant CharTab (line 29) | CharTab = 9 constant CharCtrlJ (line 30) | CharCtrlJ = 10 constant CharKill (line 31) | CharKill = 11 constant CharCtrlL (line 32) | CharCtrlL = 12 constant CharEnter (line 33) | CharEnter = 13 constant CharNext (line 34) | CharNext = 14 constant CharPrev (line 35) | CharPrev = 16 constant CharBckSearch (line 36) | CharBckSearch = 18 constant CharFwdSearch (line 37) | CharFwdSearch = 19 constant CharTranspose (line 38) | CharTranspose = 20 constant CharCtrlU (line 39) | CharCtrlU = 21 constant CharCtrlW (line 40) | CharCtrlW = 23 constant CharCtrlY (line 41) | CharCtrlY = 25 constant CharCtrlZ (line 42) | CharCtrlZ = 26 constant CharEsc (line 43) | CharEsc = 27 constant CharEscapeEx (line 44) | CharEscapeEx = 91 constant CharBackspace (line 45) | CharBackspace = 127 constant MetaBackward (line 49) | MetaBackward rune = -iota - 1 constant MetaForward (line 50) | MetaForward constant MetaDelete (line 51) | MetaDelete constant MetaBackspace (line 52) | MetaBackspace constant MetaTranspose (line 53) | MetaTranspose function WaitForResume (line 59) | func WaitForResume() chan struct{} { function Restore (line 81) | func Restore(fd int, state *State) error { function IsPrintable (line 94) | func IsPrintable(key rune) bool { function escapeExKey (line 100) | func escapeExKey(key *escapeKeyPair) rune { type escapeKeyPair (line 124) | type escapeKeyPair struct method Get2 (line 129) | func (e *escapeKeyPair) Get2() (int, int, bool) { function readEscKey (line 145) | func readEscKey(r rune, reader *bufio.Reader) *escapeKeyPair { function escapeKey (line 163) | func escapeKey(r rune, reader *bufio.Reader) rune { function SplitByLine (line 191) | func SplitByLine(start, screenWidth int, rs []rune) []string { function LineCount (line 210) | func LineCount(screenWidth, w int) int { function IsWordBreak (line 218) | func IsWordBreak(i rune) bool { function GetInt (line 229) | func GetInt(s []string, def int) int { type RawMode (line 240) | type RawMode struct method Enter (line 244) | func (r *RawMode) Enter() (err error) { method Exit (line 249) | func (r *RawMode) Exit() error { function sleep (line 258) | func sleep(n int) { function debugList (line 264) | func debugList(l *list.List) { function Debug (line 273) | func Debug(o ...interface{}) { FILE: vendor/github.com/chzyer/readline/utils_unix.go type winsize (line 13) | type winsize struct function SuspendMe (line 23) | func SuspendMe() { function getWidth (line 31) | func getWidth(stdoutFd int) int { function GetScreenWidth (line 39) | func GetScreenWidth() int { function ClearScreen (line 48) | func ClearScreen(w io.Writer) (int, error) { function DefaultIsTerminal (line 52) | func DefaultIsTerminal() bool { function GetStdin (line 56) | func GetStdin() int { function DefaultOnWidthChanged (line 67) | func DefaultOnWidthChanged(f func()) { FILE: vendor/github.com/chzyer/readline/utils_windows.go function SuspendMe (line 10) | func SuspendMe() { function GetStdin (line 13) | func GetStdin() int { function init (line 17) | func init() { function GetScreenWidth (line 22) | func GetScreenWidth() int { function ClearScreen (line 31) | func ClearScreen(_ io.Writer) error { function DefaultIsTerminal (line 35) | func DefaultIsTerminal() bool { function DefaultOnWidthChanged (line 39) | func DefaultOnWidthChanged(func()) { FILE: vendor/github.com/chzyer/readline/vim.go constant VIM_NORMAL (line 4) | VIM_NORMAL = iota constant VIM_INSERT (line 5) | VIM_INSERT constant VIM_VISUAL (line 6) | VIM_VISUAL type opVim (line 9) | type opVim struct method SetVimMode (line 24) | func (o *opVim) SetVimMode(on bool) { method ExitVimMode (line 32) | func (o *opVim) ExitVimMode() { method IsEnableVimMode (line 36) | func (o *opVim) IsEnableVimMode() bool { method handleVimNormalMovement (line 40) | func (o *opVim) handleVimNormalMovement(r rune, readNext func() rune) ... method handleVimNormalEnterInsert (line 98) | func (o *opVim) handleVimNormalEnterInsert(r rune, readNext func() run... method HandleVimNormal (line 133) | func (o *opVim) HandleVimNormal(r rune, readNext func() rune) (t rune) { method EnterVimInsertMode (line 153) | func (o *opVim) EnterVimInsertMode() { method ExitVimInsertMode (line 157) | func (o *opVim) ExitVimInsertMode() { method HandleVim (line 161) | func (o *opVim) HandleVim(r rune, readNext func() rune) rune { function newVimMode (line 15) | func newVimMode(op *Operation) *opVim { FILE: vendor/github.com/chzyer/readline/windows_api.go type Kernel (line 17) | type Kernel struct method Wrap (line 105) | func (k *Kernel) Wrap(p *syscall.LazyProc) CallFunc { type short (line 28) | type short type word (line 29) | type word type dword (line 30) | type dword type wchar (line 31) | type wchar type _COORD (line 33) | type _COORD struct method ptr (line 38) | func (c *_COORD) ptr() uintptr { constant EVENT_KEY (line 43) | EVENT_KEY = 0x0001 constant EVENT_MOUSE (line 44) | EVENT_MOUSE = 0x0002 constant EVENT_WINDOW_BUFFER_SIZE (line 45) | EVENT_WINDOW_BUFFER_SIZE = 0x0004 constant EVENT_MENU (line 46) | EVENT_MENU = 0x0008 constant EVENT_FOCUS (line 47) | EVENT_FOCUS = 0x0010 type _KEY_EVENT_RECORD (line 50) | type _KEY_EVENT_RECORD struct type _INPUT_RECORD (line 64) | type _INPUT_RECORD struct type _CONSOLE_SCREEN_BUFFER_INFO (line 70) | type _CONSOLE_SCREEN_BUFFER_INFO struct type _SMALL_RECT (line 78) | type _SMALL_RECT struct type _CONSOLE_CURSOR_INFO (line 85) | type _CONSOLE_CURSOR_INFO struct type CallFunc (line 90) | type CallFunc function NewKernel (line 92) | func NewKernel() *Kernel { function GetConsoleScreenBufferInfo (line 135) | func GetConsoleScreenBufferInfo() (*_CONSOLE_SCREEN_BUFFER_INFO, error) { function GetConsoleCursorInfo (line 144) | func GetConsoleCursorInfo() (*_CONSOLE_CURSOR_INFO, error) { function SetConsoleCursorPosition (line 150) | func SetConsoleCursorPosition(c *_COORD) error { FILE: vendor/github.com/fatih/color/color.go function noColorExists (line 39) | func noColorExists() bool { type Color (line 45) | type Color struct method Set (line 150) | func (c *Color) Set() *Color { method unset (line 159) | func (c *Color) unset() { method setWriter (line 167) | func (c *Color) setWriter(w io.Writer) *Color { method unsetWriter (line 176) | func (c *Color) unsetWriter(w io.Writer) { method Add (line 190) | func (c *Color) Add(value ...Attribute) *Color { method prepend (line 195) | func (c *Color) prepend(value Attribute) { method Fprint (line 206) | func (c *Color) Fprint(w io.Writer, a ...interface{}) (n int, err erro... method Print (line 218) | func (c *Color) Print(a ...interface{}) (n int, err error) { method Fprintf (line 229) | func (c *Color) Fprintf(w io.Writer, format string, a ...interface{}) ... method Printf (line 239) | func (c *Color) Printf(format string, a ...interface{}) (n int, err er... method Fprintln (line 250) | func (c *Color) Fprintln(w io.Writer, a ...interface{}) (n int, err er... method Println (line 262) | func (c *Color) Println(a ...interface{}) (n int, err error) { method Sprint (line 270) | func (c *Color) Sprint(a ...interface{}) string { method Sprintln (line 275) | func (c *Color) Sprintln(a ...interface{}) string { method Sprintf (line 280) | func (c *Color) Sprintf(format string, a ...interface{}) string { method FprintFunc (line 286) | func (c *Color) FprintFunc() func(w io.Writer, a ...interface{}) { method PrintFunc (line 294) | func (c *Color) PrintFunc() func(a ...interface{}) { method FprintfFunc (line 302) | func (c *Color) FprintfFunc() func(w io.Writer, format string, a ...in... method PrintfFunc (line 310) | func (c *Color) PrintfFunc() func(format string, a ...interface{}) { method FprintlnFunc (line 318) | func (c *Color) FprintlnFunc() func(w io.Writer, a ...interface{}) { method PrintlnFunc (line 326) | func (c *Color) PrintlnFunc() func(a ...interface{}) { method SprintFunc (line 338) | func (c *Color) SprintFunc() func(a ...interface{}) string { method SprintfFunc (line 347) | func (c *Color) SprintfFunc() func(format string, a ...interface{}) st... method SprintlnFunc (line 356) | func (c *Color) SprintlnFunc() func(a ...interface{}) string { method sequence (line 364) | func (c *Color) sequence() string { method wrap (line 375) | func (c *Color) wrap(s string) string { method format (line 383) | func (c *Color) format() string { method unformat (line 387) | func (c *Color) unformat() string { method DisableColor (line 394) | func (c *Color) DisableColor() { method EnableColor (line 400) | func (c *Color) EnableColor() { method isNoColorSet (line 404) | func (c *Color) isNoColorSet() bool { method Equals (line 415) | func (c *Color) Equals(c2 *Color) bool { method attrExists (line 429) | func (c *Color) attrExists(a Attribute) bool { type Attribute (line 51) | type Attribute constant escape (line 53) | escape = "\x1b" constant Reset (line 57) | Reset Attribute = iota constant Bold (line 58) | Bold constant Faint (line 59) | Faint constant Italic (line 60) | Italic constant Underline (line 61) | Underline constant BlinkSlow (line 62) | BlinkSlow constant BlinkRapid (line 63) | BlinkRapid constant ReverseVideo (line 64) | ReverseVideo constant Concealed (line 65) | Concealed constant CrossedOut (line 66) | CrossedOut constant FgBlack (line 71) | FgBlack Attribute = iota + 30 constant FgRed (line 72) | FgRed constant FgGreen (line 73) | FgGreen constant FgYellow (line 74) | FgYellow constant FgBlue (line 75) | FgBlue constant FgMagenta (line 76) | FgMagenta constant FgCyan (line 77) | FgCyan constant FgWhite (line 78) | FgWhite constant FgHiBlack (line 83) | FgHiBlack Attribute = iota + 90 constant FgHiRed (line 84) | FgHiRed constant FgHiGreen (line 85) | FgHiGreen constant FgHiYellow (line 86) | FgHiYellow constant FgHiBlue (line 87) | FgHiBlue constant FgHiMagenta (line 88) | FgHiMagenta constant FgHiCyan (line 89) | FgHiCyan constant FgHiWhite (line 90) | FgHiWhite constant BgBlack (line 95) | BgBlack Attribute = iota + 40 constant BgRed (line 96) | BgRed constant BgGreen (line 97) | BgGreen constant BgYellow (line 98) | BgYellow constant BgBlue (line 99) | BgBlue constant BgMagenta (line 100) | BgMagenta constant BgCyan (line 101) | BgCyan constant BgWhite (line 102) | BgWhite constant BgHiBlack (line 107) | BgHiBlack Attribute = iota + 100 constant BgHiRed (line 108) | BgHiRed constant BgHiGreen (line 109) | BgHiGreen constant BgHiYellow (line 110) | BgHiYellow constant BgHiBlue (line 111) | BgHiBlue constant BgHiMagenta (line 112) | BgHiMagenta constant BgHiCyan (line 113) | BgHiCyan constant BgHiWhite (line 114) | BgHiWhite function New (line 118) | func New(value ...Attribute) *Color { function Set (line 133) | func Set(p ...Attribute) *Color { function Unset (line 141) | func Unset() { function boolPtr (line 439) | func boolPtr(v bool) *bool { function getCachedColor (line 443) | func getCachedColor(p Attribute) *Color { function colorPrint (line 456) | func colorPrint(format string, p Attribute, a ...interface{}) { function colorString (line 470) | func colorString(format string, p Attribute, a ...interface{}) string { function Black (line 482) | func Black(format string, a ...interface{}) { colorPrint(format, FgBlack... function Red (line 486) | func Red(format string, a ...interface{}) { colorPrint(format, FgRed, a.... function Green (line 490) | func Green(format string, a ...interface{}) { colorPrint(format, FgGreen... function Yellow (line 494) | func Yellow(format string, a ...interface{}) { colorPrint(format, FgYell... function Blue (line 498) | func Blue(format string, a ...interface{}) { colorPrint(format, FgBlue, ... function Magenta (line 502) | func Magenta(format string, a ...interface{}) { colorPrint(format, FgMag... function Cyan (line 506) | func Cyan(format string, a ...interface{}) { colorPrint(format, FgCyan, ... function White (line 510) | func White(format string, a ...interface{}) { colorPrint(format, FgWhite... function BlackString (line 514) | func BlackString(format string, a ...interface{}) string { return colorS... function RedString (line 518) | func RedString(format string, a ...interface{}) string { return colorStr... function GreenString (line 522) | func GreenString(format string, a ...interface{}) string { return colorS... function YellowString (line 526) | func YellowString(format string, a ...interface{}) string { return color... function BlueString (line 530) | func BlueString(format string, a ...interface{}) string { return colorSt... function MagentaString (line 534) | func MagentaString(format string, a ...interface{}) string { function CyanString (line 540) | func CyanString(format string, a ...interface{}) string { return colorSt... function WhiteString (line 544) | func WhiteString(format string, a ...interface{}) string { return colorS... function HiBlack (line 548) | func HiBlack(format string, a ...interface{}) { colorPrint(format, FgHiB... function HiRed (line 552) | func HiRed(format string, a ...interface{}) { colorPrint(format, FgHiRed... function HiGreen (line 556) | func HiGreen(format string, a ...interface{}) { colorPrint(format, FgHiG... function HiYellow (line 560) | func HiYellow(format string, a ...interface{}) { colorPrint(format, FgHi... function HiBlue (line 564) | func HiBlue(format string, a ...interface{}) { colorPrint(format, FgHiBl... function HiMagenta (line 568) | func HiMagenta(format string, a ...interface{}) { colorPrint(format, FgH... function HiCyan (line 572) | func HiCyan(format string, a ...interface{}) { colorPrint(format, FgHiCy... function HiWhite (line 576) | func HiWhite(format string, a ...interface{}) { colorPrint(format, FgHiW... function HiBlackString (line 580) | func HiBlackString(format string, a ...interface{}) string { function HiRedString (line 586) | func HiRedString(format string, a ...interface{}) string { return colorS... function HiGreenString (line 590) | func HiGreenString(format string, a ...interface{}) string { function HiYellowString (line 596) | func HiYellowString(format string, a ...interface{}) string { function HiBlueString (line 602) | func HiBlueString(format string, a ...interface{}) string { return color... function HiMagentaString (line 606) | func HiMagentaString(format string, a ...interface{}) string { function HiCyanString (line 612) | func HiCyanString(format string, a ...interface{}) string { return color... function HiWhiteString (line 616) | func HiWhiteString(format string, a ...interface{}) string { FILE: vendor/github.com/iancoleman/strcase/acronyms.go function ConfigureAcronym (line 8) | func ConfigureAcronym(key, val string) { FILE: vendor/github.com/iancoleman/strcase/camel.go function toCamelInitCase (line 33) | func toCamelInitCase(s string, initCase bool) string { function ToCamel (line 73) | func ToCamel(s string) string { function ToLowerCamel (line 78) | func ToLowerCamel(s string) string { FILE: vendor/github.com/iancoleman/strcase/snake.go function ToSnake (line 33) | func ToSnake(s string) string { function ToSnakeWithIgnore (line 37) | func ToSnakeWithIgnore(s string, ignore string) string { function ToScreamingSnake (line 42) | func ToScreamingSnake(s string) string { function ToKebab (line 47) | func ToKebab(s string) string { function ToScreamingKebab (line 52) | func ToScreamingKebab(s string) string { function ToDelimited (line 58) | func ToDelimited(s string, delimiter uint8) string { function ToScreamingDelimited (line 66) | func ToScreamingDelimited(s string, delimiter uint8, ignore string, scre... FILE: vendor/github.com/inconshreveable/mousetrap/trap_others.go function StartedByExplorer (line 13) | func StartedByExplorer() bool { FILE: vendor/github.com/inconshreveable/mousetrap/trap_windows.go constant th32cs_snapprocess (line 15) | th32cs_snapprocess uintptr = 0x2 type processEntry32 (line 26) | type processEntry32 struct function getProcessEntry (line 39) | func getProcessEntry(pid int) (pe *processEntry32, err error) { function getppid (line 69) | func getppid() (pid int, err error) { function StartedByExplorer (line 85) | func StartedByExplorer() bool { FILE: vendor/github.com/inconshreveable/mousetrap/trap_windows_1.4.go function getProcessEntry (line 12) | func getProcessEntry(pid int) (*syscall.ProcessEntry32, error) { function StartedByExplorer (line 40) | func StartedByExplorer() bool { FILE: vendor/github.com/mattn/go-colorable/colorable_appengine.go function NewColorable (line 13) | func NewColorable(file *os.File) io.Writer { function NewColorableStdout (line 22) | func NewColorableStdout() io.Writer { function NewColorableStderr (line 27) | func NewColorableStderr() io.Writer { function EnableColorsStdout (line 32) | func EnableColorsStdout(enabled *bool) func() { FILE: vendor/github.com/mattn/go-colorable/colorable_others.go function NewColorable (line 14) | func NewColorable(file *os.File) io.Writer { function NewColorableStdout (line 23) | func NewColorableStdout() io.Writer { function NewColorableStderr (line 28) | func NewColorableStderr() io.Writer { function EnableColorsStdout (line 33) | func EnableColorsStdout(enabled *bool) func() { FILE: vendor/github.com/mattn/go-colorable/colorable_windows.go constant foregroundBlue (line 21) | foregroundBlue = 0x1 constant foregroundGreen (line 22) | foregroundGreen = 0x2 constant foregroundRed (line 23) | foregroundRed = 0x4 constant foregroundIntensity (line 24) | foregroundIntensity = 0x8 constant foregroundMask (line 25) | foregroundMask = (foregroundRed | foregroundBlue | foregroundGreen ... constant backgroundBlue (line 26) | backgroundBlue = 0x10 constant backgroundGreen (line 27) | backgroundGreen = 0x20 constant backgroundRed (line 28) | backgroundRed = 0x40 constant backgroundIntensity (line 29) | backgroundIntensity = 0x80 constant backgroundMask (line 30) | backgroundMask = (backgroundRed | backgroundBlue | backgroundGreen ... constant commonLvbUnderscore (line 31) | commonLvbUnderscore = 0x8000 constant cENABLE_VIRTUAL_TERMINAL_PROCESSING (line 33) | cENABLE_VIRTUAL_TERMINAL_PROCESSING = 0x4 constant genericRead (line 37) | genericRead = 0x80000000 constant genericWrite (line 38) | genericWrite = 0x40000000 constant consoleTextmodeBuffer (line 42) | consoleTextmodeBuffer = 0x1 type wchar (line 45) | type wchar type short (line 46) | type short type dword (line 47) | type dword type word (line 48) | type word type coord (line 50) | type coord struct type smallRect (line 55) | type smallRect struct type consoleScreenBufferInfo (line 62) | type consoleScreenBufferInfo struct type consoleCursorInfo (line 70) | type consoleCursorInfo struct type Writer (line 91) | type Writer struct method Write (line 437) | func (w *Writer) Write(data []byte) (n int, err error) { function NewColorable (line 102) | func NewColorable(file *os.File) io.Writer { function NewColorableStdout (line 121) | func NewColorableStdout() io.Writer { function NewColorableStderr (line 126) | func NewColorableStderr() io.Writer { function doTitleSequence (line 390) | func doTitleSequence(er *bytes.Reader) error { function atoiWithDefault (line 429) | func atoiWithDefault(s string, def int) (int, error) { type consoleColor (line 865) | type consoleColor struct method foregroundAttr (line 873) | func (c consoleColor) foregroundAttr() (attr word) { method backgroundAttr (line 889) | func (c consoleColor) backgroundAttr() (attr word) { type hsv (line 924) | type hsv struct method dist (line 928) | func (a hsv) dist(b hsv) float32 { function toHSV (line 941) | func toHSV(rgb int) hsv { type hsvTable (line 968) | type hsvTable method find (line 978) | func (t hsvTable) find(rgb int) consoleColor { function toHSVTable (line 970) | func toHSVTable(rgbTable []consoleColor) hsvTable { function minmax3f (line 991) | func minmax3f(a, b, c float32) (min, max float32) { function n256setup (line 1014) | func n256setup() { function EnableColorsStdout (line 1026) | func EnableColorsStdout(enabled *bool) func() { FILE: vendor/github.com/mattn/go-colorable/noncolorable.go type NonColorable (line 9) | type NonColorable struct method Write (line 19) | func (w *NonColorable) Write(data []byte) (n int, err error) { function NewNonColorable (line 14) | func NewNonColorable(w io.Writer) io.Writer { FILE: vendor/github.com/mattn/go-isatty/isatty_bsd.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_others.go function IsTerminal (line 8) | func IsTerminal(fd uintptr) bool { function IsCygwinTerminal (line 14) | func IsCygwinTerminal(fd uintptr) bool { FILE: vendor/github.com/mattn/go-isatty/isatty_plan9.go function IsTerminal (line 11) | func IsTerminal(fd uintptr) bool { function IsCygwinTerminal (line 21) | 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 19) | 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 objectNameInfo (line 15) | objectNameInfo uintptr = 1 constant fileNameInfo (line 16) | fileNameInfo = 2 constant fileTypePipe (line 17) | fileTypePipe = 3 function init (line 29) | func init() { function IsTerminal (line 37) | func IsTerminal(fd uintptr) bool { function isCygwinPipeName (line 46) | func isCygwinPipeName(name string) bool { function getFileNameByHandle (line 83) | func getFileNameByHandle(fd uintptr) (string, error) { function IsCygwinTerminal (line 100) | func IsCygwinTerminal(fd uintptr) bool { FILE: vendor/github.com/spf13/cobra/args.go type PositionalArgs (line 8) | type PositionalArgs function legacyArgs (line 14) | func legacyArgs(cmd *Command, args []string) error { function NoArgs (line 28) | func NoArgs(cmd *Command, args []string) error { function OnlyValidArgs (line 36) | func OnlyValidArgs(cmd *Command, args []string) error { function ArbitraryArgs (line 55) | func ArbitraryArgs(cmd *Command, args []string) error { function MinimumNArgs (line 60) | func MinimumNArgs(n int) PositionalArgs { function MaximumNArgs (line 70) | func MaximumNArgs(n int) PositionalArgs { function ExactArgs (line 80) | func ExactArgs(n int) PositionalArgs { function ExactValidArgs (line 92) | func ExactValidArgs(n int) PositionalArgs { function RangeArgs (line 102) | func RangeArgs(min int, max int) PositionalArgs { function MatchAll (line 112) | func MatchAll(pargs ...PositionalArgs) PositionalArgs { FILE: vendor/github.com/spf13/cobra/bash_completions.go constant BashCompFilenameExt (line 16) | BashCompFilenameExt = "cobra_annotation_bash_completion_filename_ext... constant BashCompCustom (line 17) | BashCompCustom = "cobra_annotation_bash_completion_custom" constant BashCompOneRequiredFlag (line 18) | BashCompOneRequiredFlag = "cobra_annotation_bash_completion_one_required... constant BashCompSubdirsInDir (line 19) | BashCompSubdirsInDir = "cobra_annotation_bash_completion_subdirs_in_dir" function writePreamble (line 22) | func writePreamble(buf io.StringWriter, name string) { function writePostscript (line 389) | func writePostscript(buf io.StringWriter, name string) { function writeCommands (line 432) | func writeCommands(buf io.StringWriter, cmd *Command) { function writeFlagHandler (line 444) | func writeFlagHandler(buf io.StringWriter, name string, annotations map[... constant cbn (line 480) | cbn = "\")\n" function writeShortFlag (line 482) | func writeShortFlag(buf io.StringWriter, flag *pflag.Flag, cmd *Command) { function writeFlag (line 493) | func writeFlag(buf io.StringWriter, flag *pflag.Flag, cmd *Command) { function writeLocalNonPersistentFlag (line 508) | func writeLocalNonPersistentFlag(buf io.StringWriter, flag *pflag.Flag) { function prepareCustomAnnotationsForFlags (line 521) | func prepareCustomAnnotationsForFlags(cmd *Command) { function writeFlags (line 536) | func writeFlags(buf io.StringWriter, cmd *Command) { function writeRequiredFlag (line 578) | func writeRequiredFlag(buf io.StringWriter, cmd *Command) { function writeRequiredNouns (line 603) | func writeRequiredNouns(buf io.StringWriter, cmd *Command) { function writeCmdAliases (line 617) | func writeCmdAliases(buf io.StringWriter, cmd *Command) { function writeArgAliases (line 632) | func writeArgAliases(buf io.StringWriter, cmd *Command) { function gen (line 640) | func gen(buf io.StringWriter, cmd *Command) { method GenBashCompletion (line 671) | func (c *Command) GenBashCompletion(w io.Writer) error { function nonCompletableFlag (line 684) | func nonCompletableFlag(flag *pflag.Flag) bool { method GenBashCompletionFile (line 689) | func (c *Command) GenBashCompletionFile(filename string) error { FILE: vendor/github.com/spf13/cobra/bash_completionsV2.go method genBashCompletion (line 10) | func (c *Command) genBashCompletion(w io.Writer, includeDesc bool) error { function genBashComp (line 17) | func genBashComp(buf io.StringWriter, name string, includeDesc bool) { method GenBashCompletionFileV2 (line 317) | func (c *Command) GenBashCompletionFileV2(filename string, includeDesc b... method GenBashCompletionV2 (line 329) | func (c *Command) GenBashCompletionV2(w io.Writer, includeDesc bool) err... FILE: vendor/github.com/spf13/cobra/cobra.go function AddTemplateFunc (line 69) | func AddTemplateFunc(name string, tmplFunc interface{}) { function AddTemplateFuncs (line 75) | func AddTemplateFuncs(tmplFuncs template.FuncMap) { function OnInitialize (line 83) | func OnInitialize(y ...func()) { function Gt (line 92) | func Gt(a interface{}, b interface{}) bool { function Eq (line 122) | func Eq(a interface{}, b interface{}) bool { function trimRightSpace (line 137) | func trimRightSpace(s string) string { function appendIfNotPresent (line 144) | func appendIfNotPresent(s, stringToAppend string) string { function rpad (line 152) | func rpad(s string, padding int) string { function tmpl (line 158) | func tmpl(w io.Writer, text string, data interface{}) error { function ld (line 166) | func ld(s, t string, ignoreCase bool) int { function stringInSlice (line 201) | func stringInSlice(a string, list []string) bool { function CheckErr (line 211) | func CheckErr(msg interface{}) { function WriteStringAndCheck (line 219) | func WriteStringAndCheck(b io.StringWriter, s string) { FILE: vendor/github.com/spf13/cobra/command.go type FParseErrWhitelist (line 32) | type FParseErrWhitelist type Command (line 38) | type Command struct method Context (line 229) | func (c *Command) Context() context.Context { method SetArgs (line 235) | func (c *Command) SetArgs(a []string) { method SetOutput (line 242) | func (c *Command) SetOutput(output io.Writer) { method SetOut (line 249) | func (c *Command) SetOut(newOut io.Writer) { method SetErr (line 255) | func (c *Command) SetErr(newErr io.Writer) { method SetIn (line 261) | func (c *Command) SetIn(newIn io.Reader) { method SetUsageFunc (line 266) | func (c *Command) SetUsageFunc(f func(*Command) error) { method SetUsageTemplate (line 271) | func (c *Command) SetUsageTemplate(s string) { method SetFlagErrorFunc (line 277) | func (c *Command) SetFlagErrorFunc(f func(*Command, error) error) { method SetHelpFunc (line 282) | func (c *Command) SetHelpFunc(f func(*Command, []string)) { method SetHelpCommand (line 287) | func (c *Command) SetHelpCommand(cmd *Command) { method SetHelpTemplate (line 292) | func (c *Command) SetHelpTemplate(s string) { method SetVersionTemplate (line 297) | func (c *Command) SetVersionTemplate(s string) { method SetGlobalNormalizationFunc (line 303) | func (c *Command) SetGlobalNormalizationFunc(n func(f *flag.FlagSet, n... method OutOrStdout (line 314) | func (c *Command) OutOrStdout() io.Writer { method OutOrStderr (line 319) | func (c *Command) OutOrStderr() io.Writer { method ErrOrStderr (line 324) | func (c *Command) ErrOrStderr() io.Writer { method InOrStdin (line 329) | func (c *Command) InOrStdin() io.Reader { method getOut (line 333) | func (c *Command) getOut(def io.Writer) io.Writer { method getErr (line 343) | func (c *Command) getErr(def io.Writer) io.Writer { method getIn (line 353) | func (c *Command) getIn(def io.Reader) io.Reader { method UsageFunc (line 365) | func (c *Command) UsageFunc() (f func(*Command) error) { method Usage (line 385) | func (c *Command) Usage() error { method HelpFunc (line 391) | func (c *Command) HelpFunc() func(*Command, []string) { method Help (line 412) | func (c *Command) Help() error { method UsageString (line 418) | func (c *Command) UsageString() string { method FlagErrorFunc (line 439) | func (c *Command) FlagErrorFunc() (f func(*Command, error) error) { method UsagePadding (line 455) | func (c *Command) UsagePadding() int { method CommandPathPadding (line 465) | func (c *Command) CommandPathPadding() int { method NamePadding (line 475) | func (c *Command) NamePadding() int { method UsageTemplate (line 483) | func (c *Command) UsageTemplate() string { method HelpTemplate (line 518) | func (c *Command) HelpTemplate() string { method VersionTemplate (line 532) | func (c *Command) VersionTemplate() string { method Find (line 623) | func (c *Command) Find(args []string) (*Command, []string, error) { method findSuggestions (line 647) | func (c *Command) findSuggestions(arg string) string { method findNext (line 664) | func (c *Command) findNext(next string) *Command { method Traverse (line 685) | func (c *Command) Traverse(args []string) (*Command, []string, error) { method SuggestionsFor (line 727) | func (c *Command) SuggestionsFor(typedName string) []string { method VisitParents (line 748) | func (c *Command) VisitParents(fn func(*Command)) { method Root (line 756) | func (c *Command) Root() *Command { method ArgsLenAtDash (line 765) | func (c *Command) ArgsLenAtDash() int { method execute (line 769) | func (c *Command) execute(a []string) (err error) { method preRun (line 884) | func (c *Command) preRun() { method ExecuteContext (line 893) | func (c *Command) ExecuteContext(ctx context.Context) error { method Execute (line 901) | func (c *Command) Execute() error { method ExecuteContextC (line 909) | func (c *Command) ExecuteContextC(ctx context.Context) (*Command, erro... method ExecuteC (line 915) | func (c *Command) ExecuteC() (cmd *Command, err error) { method ValidateArgs (line 998) | func (c *Command) ValidateArgs(args []string) error { method validateRequiredFlags (line 1005) | func (c *Command) validateRequiredFlags() error { method InitDefaultHelpFlag (line 1031) | func (c *Command) InitDefaultHelpFlag() { method InitDefaultVersionFlag (line 1048) | func (c *Command) InitDefaultVersionFlag() { method InitDefaultHelpCmd (line 1072) | func (c *Command) InitDefaultHelpCmd() { method ResetCommands (line 1119) | func (c *Command) ResetCommands() { method Commands (line 1134) | func (c *Command) Commands() []*Command { method AddCommand (line 1144) | func (c *Command) AddCommand(cmds ...*Command) { method RemoveCommand (line 1173) | func (c *Command) RemoveCommand(cmds ...*Command) { method Print (line 1207) | func (c *Command) Print(i ...interface{}) { method Println (line 1212) | func (c *Command) Println(i ...interface{}) { method Printf (line 1217) | func (c *Command) Printf(format string, i ...interface{}) { method PrintErr (line 1222) | func (c *Command) PrintErr(i ...interface{}) { method PrintErrln (line 1227) | func (c *Command) PrintErrln(i ...interface{}) { method PrintErrf (line 1232) | func (c *Command) PrintErrf(format string, i ...interface{}) { method CommandPath (line 1237) | func (c *Command) CommandPath() string { method UseLine (line 1245) | func (c *Command) UseLine() string { method DebugFlags (line 1263) | func (c *Command) DebugFlags() { method Name (line 1303) | func (c *Command) Name() string { method HasAlias (line 1313) | func (c *Command) HasAlias(s string) bool { method CalledAs (line 1324) | func (c *Command) CalledAs() string { method hasNameOrAliasPrefix (line 1333) | func (c *Command) hasNameOrAliasPrefix(prefix string) bool { method NameAndAliases (line 1348) | func (c *Command) NameAndAliases() string { method HasExample (line 1353) | func (c *Command) HasExample() bool { method Runnable (line 1358) | func (c *Command) Runnable() bool { method HasSubCommands (line 1363) | func (c *Command) HasSubCommands() bool { method IsAvailableCommand (line 1369) | func (c *Command) IsAvailableCommand() bool { method IsAdditionalHelpTopicCommand (line 1390) | func (c *Command) IsAdditionalHelpTopicCommand() bool { method HasHelpSubCommands (line 1410) | func (c *Command) HasHelpSubCommands() bool { method HasAvailableSubCommands (line 1424) | func (c *Command) HasAvailableSubCommands() bool { method HasParent (line 1439) | func (c *Command) HasParent() bool { method GlobalNormalizationFunc (line 1444) | func (c *Command) GlobalNormalizationFunc() func(f *flag.FlagSet, name... method Flags (line 1450) | func (c *Command) Flags() *flag.FlagSet { method LocalNonPersistentFlags (line 1463) | func (c *Command) LocalNonPersistentFlags() *flag.FlagSet { method LocalFlags (line 1476) | func (c *Command) LocalFlags() *flag.FlagSet { method InheritedFlags (line 1502) | func (c *Command) InheritedFlags() *flag.FlagSet { method NonInheritedFlags (line 1527) | func (c *Command) NonInheritedFlags() *flag.FlagSet { method PersistentFlags (line 1532) | func (c *Command) PersistentFlags() *flag.FlagSet { method ResetFlags (line 1544) | func (c *Command) ResetFlags() { method HasFlags (line 1558) | func (c *Command) HasFlags() bool { method HasPersistentFlags (line 1563) | func (c *Command) HasPersistentFlags() bool { method HasLocalFlags (line 1568) | func (c *Command) HasLocalFlags() bool { method HasInheritedFlags (line 1573) | func (c *Command) HasInheritedFlags() bool { method HasAvailableFlags (line 1579) | func (c *Command) HasAvailableFlags() bool { method HasAvailablePersistentFlags (line 1584) | func (c *Command) HasAvailablePersistentFlags() bool { method HasAvailableLocalFlags (line 1590) | func (c *Command) HasAvailableLocalFlags() bool { method HasAvailableInheritedFlags (line 1596) | func (c *Command) HasAvailableInheritedFlags() bool { method Flag (line 1601) | func (c *Command) Flag(name string) (flag *flag.Flag) { method persistentFlag (line 1612) | func (c *Command) persistentFlag(name string) (flag *flag.Flag) { method ParseFlags (line 1625) | func (c *Command) ParseFlags(args []string) error { method Parent (line 1649) | func (c *Command) Parent() *Command { method mergePersistentFlags (line 1655) | func (c *Command) mergePersistentFlags() { method updateParentsPflags (line 1664) | func (c *Command) updateParentsPflags() { function hasNoOptDefVal (line 544) | func hasNoOptDefVal(name string, fs *flag.FlagSet) bool { function shortHasNoOptDefVal (line 552) | func shortHasNoOptDefVal(name string, fs *flag.FlagSet) bool { function stripFlags (line 564) | func stripFlags(args []string, c *Command) []string { function argsMinusFirstX (line 604) | func argsMinusFirstX(args []string, x string) []string { function isFlagArg (line 616) | func isFlagArg(arg string) bool { type commandSorterByName (line 1127) | type commandSorterByName method Len (line 1129) | func (c commandSorterByName) Len() int { return len(c) } method Swap (line 1130) | func (c commandSorterByName) Swap(i, j int) { c[i], c[j] = c[j], ... method Less (line 1131) | func (c commandSorterByName) Less(i, j int) bool { return c[i].Name() ... FILE: vendor/github.com/spf13/cobra/command_win.go function preExecHook (line 16) | func preExecHook(c *Command) { FILE: vendor/github.com/spf13/cobra/completions.go constant ShellCompRequestCmd (line 15) | ShellCompRequestCmd = "__complete" constant ShellCompNoDescRequestCmd (line 18) | ShellCompNoDescRequestCmd = "__completeNoDesc" type ShellCompDirective (line 29) | type ShellCompDirective method string (line 123) | func (d ShellCompDirective) string() string { type flagCompError (line 31) | type flagCompError struct method Error (line 36) | func (e *flagCompError) Error() string { constant ShellCompDirectiveError (line 42) | ShellCompDirectiveError ShellCompDirective = 1 << iota constant ShellCompDirectiveNoSpace (line 46) | ShellCompDirectiveNoSpace constant ShellCompDirectiveNoFileComp (line 50) | ShellCompDirectiveNoFileComp constant ShellCompDirectiveFilterFileExt (line 57) | ShellCompDirectiveFilterFileExt constant ShellCompDirectiveFilterDirs (line 64) | ShellCompDirectiveFilterDirs constant shellCompDirectiveMaxValue (line 70) | shellCompDirectiveMaxValue constant ShellCompDirectiveDefault (line 75) | ShellCompDirectiveDefault ShellCompDirective = 0 constant compCmdName (line 80) | compCmdName = "completion" constant compCmdNoDescFlagName (line 81) | compCmdNoDescFlagName = "no-descriptions" constant compCmdNoDescFlagDesc (line 82) | compCmdNoDescFlagDesc = "disable completion descriptions" constant compCmdNoDescFlagDefault (line 83) | compCmdNoDescFlagDefault = false type CompletionOptions (line 87) | type CompletionOptions struct function NoFileCompletions (line 102) | func NoFileCompletions(cmd *Command, args []string, toComplete string) (... method RegisterFlagCompletionFunc (line 107) | func (c *Command) RegisterFlagCompletionFunc(flagName string, f func(cmd... method initCompleteCmd (line 151) | func (c *Command) initCompleteCmd(args []string) { method getCompletions (line 217) | func (c *Command) getCompletions(args []string) (*Command, []string, She... function getFlagNameCompletions (line 449) | func getFlagNameCompletions(flag *pflag.Flag, toComplete string) []string { function completeRequireFlags (line 482) | func completeRequireFlags(finalCmd *Command, toComplete string) []string { function checkIfFlagCompletion (line 507) | func checkIfFlagCompletion(finalCmd *Command, args []string, lastArg str... method initDefaultCompletionCmd (line 598) | func (c *Command) initDefaultCompletionCmd() { function findFlag (line 751) | func findFlag(cmd *Command, name string) *pflag.Flag { function CompDebug (line 774) | func CompDebug(msg string, printToStdErr bool) { function CompDebugln (line 798) | func CompDebugln(msg string, printToStdErr bool) { function CompError (line 803) | func CompError(msg string) { function CompErrorln (line 809) | func CompErrorln(msg string) { FILE: vendor/github.com/spf13/cobra/fish_completions.go function genFishComp (line 11) | func genFishComp(buf io.StringWriter, name string, includeDesc bool) { method GenFishCompletion (line 203) | func (c *Command) GenFishCompletion(w io.Writer, includeDesc bool) error { method GenFishCompletionFile (line 211) | func (c *Command) GenFishCompletionFile(filename string, includeDesc boo... FILE: vendor/github.com/spf13/cobra/powershell_completions.go function genPowerShellComp (line 13) | func genPowerShellComp(buf io.StringWriter, name string, includeDesc boo... method genPowerShellCompletion (line 248) | func (c *Command) genPowerShellCompletion(w io.Writer, includeDesc bool)... method genPowerShellCompletionFile (line 255) | func (c *Command) genPowerShellCompletionFile(filename string, includeDe... method GenPowerShellCompletionFile (line 266) | func (c *Command) GenPowerShellCompletionFile(filename string) error { method GenPowerShellCompletion (line 272) | func (c *Command) GenPowerShellCompletion(w io.Writer) error { method GenPowerShellCompletionFileWithDesc (line 277) | func (c *Command) GenPowerShellCompletionFileWithDesc(filename string) e... method GenPowerShellCompletionWithDesc (line 283) | func (c *Command) GenPowerShellCompletionWithDesc(w io.Writer) error { FILE: vendor/github.com/spf13/cobra/shell_completions.go method MarkFlagRequired (line 10) | func (c *Command) MarkFlagRequired(name string) error { method MarkPersistentFlagRequired (line 17) | func (c *Command) MarkPersistentFlagRequired(name string) error { function MarkFlagRequired (line 24) | func MarkFlagRequired(flags *pflag.FlagSet, name string) error { method MarkFlagFilename (line 30) | func (c *Command) MarkFlagFilename(name string, extensions ...string) er... method MarkFlagCustom (line 40) | func (c *Command) MarkFlagCustom(name string, f string) error { method MarkPersistentFlagFilename (line 47) | func (c *Command) MarkPersistentFlagFilename(name string, extensions ...... function MarkFlagFilename (line 53) | func MarkFlagFilename(flags *pflag.FlagSet, name string, extensions ...s... function MarkFlagCustom (line 63) | func MarkFlagCustom(flags *pflag.FlagSet, name string, f string) error { method MarkFlagDirname (line 69) | func (c *Command) MarkFlagDirname(name string) error { method MarkPersistentFlagDirname (line 76) | func (c *Command) MarkPersistentFlagDirname(name string) error { function MarkFlagDirname (line 82) | func MarkFlagDirname(flags *pflag.FlagSet, name string) error { FILE: vendor/github.com/spf13/cobra/zsh_completions.go method GenZshCompletionFile (line 11) | func (c *Command) GenZshCompletionFile(filename string) error { method GenZshCompletion (line 17) | func (c *Command) GenZshCompletion(w io.Writer) error { method GenZshCompletionFileNoDesc (line 22) | func (c *Command) GenZshCompletionFileNoDesc(filename string) error { method GenZshCompletionNoDesc (line 28) | func (c *Command) GenZshCompletionNoDesc(w io.Writer) error { method MarkZshCompPositionalArgumentFile (line 41) | func (c *Command) MarkZshCompPositionalArgumentFile(argPosition int, pat... method MarkZshCompPositionalArgumentWords (line 52) | func (c *Command) MarkZshCompPositionalArgumentWords(argPosition int, wo... method genZshCompletionFile (line 56) | func (c *Command) genZshCompletionFile(filename string, includeDesc bool... method genZshCompletion (line 66) | func (c *Command) genZshCompletion(w io.Writer, includeDesc bool) error { function genZshComp (line 73) | func genZshComp(buf io.StringWriter, name string, includeDesc bool) { FILE: vendor/github.com/spf13/pflag/bool.go type boolFlag (line 7) | type boolFlag interface type boolValue (line 13) | type boolValue method Set (line 20) | func (b *boolValue) Set(s string) error { method Type (line 26) | func (b *boolValue) Type() string { method String (line 30) | func (b *boolValue) String() string { return strconv.FormatBool(bool(*... method IsBoolFlag (line 32) | func (b *boolValue) IsBoolFlag() bool { return true } function newBoolValue (line 15) | func newBoolValue(val bool, p *bool) *boolValue { function boolConv (line 34) | func boolConv(sval string) (interface{}, error) { method GetBool (line 39) | func (f *FlagSet) GetBool(name string) (bool, error) { method BoolVar (line 49) | func (f *FlagSet) BoolVar(p *bool, name string, value bool, usage string) { method BoolVarP (line 54) | func (f *FlagSet) BoolVarP(p *bool, name, shorthand string, value bool, ... function BoolVar (line 61) | func BoolVar(p *bool, name string, value bool, usage string) { function BoolVarP (line 66) | func BoolVarP(p *bool, name, shorthand string, value bool, usage string) { method Bool (line 73) | func (f *FlagSet) Bool(name string, value bool, usage string) *bool { method BoolP (line 78) | func (f *FlagSet) BoolP(name, shorthand string, value bool, usage string... function Bool (line 86) | func Bool(name string, value bool, usage string) *bool { function BoolP (line 91) | func BoolP(name, shorthand string, value bool, usage string) *bool { FILE: vendor/github.com/spf13/pflag/bool_slice.go type boolSliceValue (line 10) | type boolSliceValue struct method Set (line 24) | func (s *boolSliceValue) Set(val string) error { method Type (line 57) | func (s *boolSliceValue) Type() string { method String (line 62) | func (s *boolSliceValue) String() string { method fromString (line 74) | func (s *boolSliceValue) fromString(val string) (bool, error) { method toString (line 78) | func (s *boolSliceValue) toString(val bool) string { method Append (line 82) | func (s *boolSliceValue) Append(val string) error { method Replace (line 91) | func (s *boolSliceValue) Replace(val []string) error { method GetSlice (line 104) | func (s *boolSliceValue) GetSlice() []string { function newBoolSliceValue (line 15) | func newBoolSliceValue(val []bool, p *[]bool) *boolSliceValue { function boolSliceConv (line 112) | func boolSliceConv(val string) (interface{}, error) { method GetBoolSlice (line 131) | func (f *FlagSet) GetBoolSlice(name string) ([]bool, error) { method BoolSliceVar (line 141) | func (f *FlagSet) BoolSliceVar(p *[]bool, name string, value []bool, usa... method BoolSliceVarP (line 146) | func (f *FlagSet) BoolSliceVarP(p *[]bool, name, shorthand string, value... function BoolSliceVar (line 152) | func BoolSliceVar(p *[]bool, name string, value []bool, usage string) { function BoolSliceVarP (line 157) | func BoolSliceVarP(p *[]bool, name, shorthand string, value []bool, usag... method BoolSlice (line 163) | func (f *FlagSet) BoolSlice(name string, value []bool, usage string) *[]... method BoolSliceP (line 170) | func (f *FlagSet) BoolSliceP(name, shorthand string, value []bool, usage... function BoolSlice (line 178) | func BoolSlice(name string, value []bool, usage string) *[]bool { function BoolSliceP (line 183) | func BoolSliceP(name, shorthand string, value []bool, usage string) *[]b... FILE: vendor/github.com/spf13/pflag/bytes.go type bytesHexValue (line 11) | type bytesHexValue method String (line 14) | func (bytesHex bytesHexValue) String() string { method Set (line 19) | func (bytesHex *bytesHexValue) Set(value string) error { method Type (line 32) | func (*bytesHexValue) Type() string { function newBytesHexValue (line 36) | func newBytesHexValue(val []byte, p *[]byte) *bytesHexValue { function bytesHexConv (line 41) | func bytesHexConv(sval string) (interface{}, error) { method GetBytesHex (line 53) | func (f *FlagSet) GetBytesHex(name string) ([]byte, error) { method BytesHexVar (line 65) | func (f *FlagSet) BytesHexVar(p *[]byte, name string, value []byte, usag... method BytesHexVarP (line 70) | func (f *FlagSet) BytesHexVarP(p *[]byte, name, shorthand string, value ... function BytesHexVar (line 76) | func BytesHexVar(p *[]byte, name string, value []byte, usage string) { function BytesHexVarP (line 81) | func BytesHexVarP(p *[]byte, name, shorthand string, value []byte, usage... method BytesHex (line 87) | func (f *FlagSet) BytesHex(name string, value []byte, usage string) *[]b... method BytesHexP (line 94) | func (f *FlagSet) BytesHexP(name, shorthand string, value []byte, usage ... function BytesHex (line 102) | func BytesHex(name string, value []byte, usage string) *[]byte { function BytesHexP (line 107) | func BytesHexP(name, shorthand string, value []byte, usage string) *[]by... type bytesBase64Value (line 112) | type bytesBase64Value method String (line 115) | func (bytesBase64 bytesBase64Value) String() string { method Set (line 120) | func (bytesBase64 *bytesBase64Value) Set(value string) error { method Type (line 133) | func (*bytesBase64Value) Type() string { function newBytesBase64Value (line 137) | func newBytesBase64Value(val []byte, p *[]byte) *bytesBase64Value { function bytesBase64ValueConv (line 142) | func bytesBase64ValueConv(sval string) (interface{}, error) { method GetBytesBase64 (line 153) | func (f *FlagSet) GetBytesBase64(name string) ([]byte, error) { method BytesBase64Var (line 165) | func (f *FlagSet) BytesBase64Var(p *[]byte, name string, value []byte, u... method BytesBase64VarP (line 170) | func (f *FlagSet) BytesBase64VarP(p *[]byte, name, shorthand string, val... function BytesBase64Var (line 176) | func BytesBase64Var(p *[]byte, name string, value []byte, usage string) { function BytesBase64VarP (line 181) | func BytesBase64VarP(p *[]byte, name, shorthand string, value []byte, us... method BytesBase64 (line 187) | func (f *FlagSet) BytesBase64(name string, value []byte, usage string) *... method BytesBase64P (line 194) | func (f *FlagSet) BytesBase64P(name, shorthand string, value []byte, usa... function BytesBase64 (line 202) | func BytesBase64(name string, value []byte, usage string) *[]byte { function BytesBase64P (line 207) | func BytesBase64P(name, shorthand string, value []byte, usage string) *[... FILE: vendor/github.com/spf13/pflag/count.go type countValue (line 6) | type countValue method Set (line 13) | func (i *countValue) Set(s string) error { method Type (line 24) | func (i *countValue) Type() string { method String (line 28) | func (i *countValue) String() string { return strconv.Itoa(int(*i)) } function newCountValue (line 8) | func newCountValue(val int, p *int) *countValue { function countConv (line 30) | func countConv(sval string) (interface{}, error) { method GetCount (line 39) | func (f *FlagSet) GetCount(name string) (int, error) { method CountVar (line 50) | func (f *FlagSet) CountVar(p *int, name string, usage string) { method CountVarP (line 55) | func (f *FlagSet) CountVarP(p *int, name, shorthand string, usage string) { function CountVar (line 61) | func CountVar(p *int, name string, usage string) { function CountVarP (line 66) | func CountVarP(p *int, name, shorthand string, usage string) { method Count (line 73) | func (f *FlagSet) Count(name string, usage string) *int { method CountP (line 80) | func (f *FlagSet) CountP(name, shorthand string, usage string) *int { function Count (line 89) | func Count(name string, usage string) *int { function CountP (line 94) | func CountP(name, shorthand string, usage string) *int { FILE: vendor/github.com/spf13/pflag/duration.go type durationValue (line 8) | type durationValue method Set (line 15) | func (d *durationValue) Set(s string) error { method Type (line 21) | func (d *durationValue) Type() string { method String (line 25) | func (d *durationValue) String() string { return (*time.Duration)(d).S... function newDurationValue (line 10) | func newDurationValue(val time.Duration, p *time.Duration) *durationValue { function durationConv (line 27) | func durationConv(sval string) (interface{}, error) { method GetDuration (line 32) | func (f *FlagSet) GetDuration(name string) (time.Duration, error) { method DurationVar (line 42) | func (f *FlagSet) DurationVar(p *time.Duration, name string, value time.... method DurationVarP (line 47) | func (f *FlagSet) DurationVarP(p *time.Duration, name, shorthand string,... function DurationVar (line 53) | func DurationVar(p *time.Duration, name string, value time.Duration, usa... function DurationVarP (line 58) | func DurationVarP(p *time.Duration, name, shorthand string, value time.D... method Duration (line 64) | func (f *FlagSet) Duration(name string, value time.Duration, usage strin... method DurationP (line 71) | func (f *FlagSet) DurationP(name, shorthand string, value time.Duration,... function Duration (line 79) | func Duration(name string, value time.Duration, usage string) *time.Dura... function DurationP (line 84) | func DurationP(name, shorthand string, value time.Duration, usage string... FILE: vendor/github.com/spf13/pflag/duration_slice.go type durationSliceValue (line 10) | type durationSliceValue struct method Set (line 22) | func (s *durationSliceValue) Set(val string) error { method Type (line 42) | func (s *durationSliceValue) Type() string { method String (line 46) | func (s *durationSliceValue) String() string { method fromString (line 54) | func (s *durationSliceValue) fromString(val string) (time.Duration, er... method toString (line 58) | func (s *durationSliceValue) toString(val time.Duration) string { method Append (line 62) | func (s *durationSliceValue) Append(val string) error { method Replace (line 71) | func (s *durationSliceValue) Replace(val []string) error { method GetSlice (line 84) | func (s *durationSliceValue) GetSlice() []string { function newDurationSliceValue (line 15) | func newDurationSliceValue(val []time.Duration, p *[]time.Duration) *dur... function durationSliceConv (line 92) | func durationSliceConv(val string) (interface{}, error) { method GetDurationSlice (line 112) | func (f *FlagSet) GetDurationSlice(name string) ([]time.Duration, error) { method DurationSliceVar (line 122) | func (f *FlagSet) DurationSliceVar(p *[]time.Duration, name string, valu... method DurationSliceVarP (line 127) | func (f *FlagSet) DurationSliceVarP(p *[]time.Duration, name, shorthand ... function DurationSliceVar (line 133) | func DurationSliceVar(p *[]time.Duration, name string, value []time.Dura... function DurationSliceVarP (line 138) | func DurationSliceVarP(p *[]time.Duration, name, shorthand string, value... method DurationSlice (line 144) | func (f *FlagSet) DurationSlice(name string, value []time.Duration, usag... method DurationSliceP (line 151) | func (f *FlagSet) DurationSliceP(name, shorthand string, value []time.Du... function DurationSlice (line 159) | func DurationSlice(name string, value []time.Duration, usage string) *[]... function DurationSliceP (line 164) | func DurationSliceP(name, shorthand string, value []time.Duration, usage... FILE: vendor/github.com/spf13/pflag/flag.go type ErrorHandling (line 116) | type ErrorHandling constant ContinueOnError (line 120) | ContinueOnError ErrorHandling = iota constant ExitOnError (line 122) | ExitOnError constant PanicOnError (line 124) | PanicOnError type ParseErrorsWhitelist (line 128) | type ParseErrorsWhitelist struct type NormalizedName (line 135) | type NormalizedName type FlagSet (line 138) | type FlagSet struct method SetNormalizeFunc (line 226) | func (f *FlagSet) SetNormalizeFunc(n func(f *FlagSet, name string) Nor... method GetNormalizeFunc (line 246) | func (f *FlagSet) GetNormalizeFunc() func(f *FlagSet, name string) Nor... method normalizeFlagName (line 253) | func (f *FlagSet) normalizeFlagName(name string) NormalizedName { method out (line 258) | func (f *FlagSet) out() io.Writer { method SetOutput (line 267) | func (f *FlagSet) SetOutput(output io.Writer) { method VisitAll (line 274) | func (f *FlagSet) VisitAll(fn func(*Flag)) { method HasFlags (line 295) | func (f *FlagSet) HasFlags() bool { method HasAvailableFlags (line 301) | func (f *FlagSet) HasAvailableFlags() bool { method Visit (line 320) | func (f *FlagSet) Visit(fn func(*Flag)) { method Lookup (line 348) | func (f *FlagSet) Lookup(name string) *Flag { method ShorthandLookup (line 355) | func (f *FlagSet) ShorthandLookup(name string) *Flag { method lookup (line 369) | func (f *FlagSet) lookup(name NormalizedName) *Flag { method getFlagType (line 374) | func (f *FlagSet) getFlagType(name string, ftype string, convFunc func... method ArgsLenAtDash (line 397) | func (f *FlagSet) ArgsLenAtDash() int { method MarkDeprecated (line 404) | func (f *FlagSet) MarkDeprecated(name string, usageMessage string) err... method MarkShorthandDeprecated (line 420) | func (f *FlagSet) MarkShorthandDeprecated(name string, usageMessage st... method MarkHidden (line 434) | func (f *FlagSet) MarkHidden(name string) error { method Set (line 456) | func (f *FlagSet) Set(name, value string) error { method SetAnnotation (line 493) | func (f *FlagSet) SetAnnotation(name, key string, values []string) err... method Changed (line 508) | func (f *FlagSet) Changed(name string) bool { method PrintDefaults (line 524) | func (f *FlagSet) PrintDefaults() { method FlagUsagesWrapped (line 677) | func (f *FlagSet) FlagUsagesWrapped(cols int) string { method FlagUsages (line 750) | func (f *FlagSet) FlagUsages() string { method NFlag (line 779) | func (f *FlagSet) NFlag() int { return len(f.actual) } method Arg (line 786) | func (f *FlagSet) Arg(i int) string { method NArg (line 800) | func (f *FlagSet) NArg() int { return len(f.args) } method Args (line 806) | func (f *FlagSet) Args() []string { return f.args } method Var (line 817) | func (f *FlagSet) Var(value Value, name string, usage string) { method VarPF (line 822) | func (f *FlagSet) VarPF(value Value, name, shorthand, usage string) *F... method VarP (line 836) | func (f *FlagSet) VarP(value Value, name, shorthand, usage string) { method AddFlag (line 841) | func (f *FlagSet) AddFlag(flag *Flag) { method AddFlagSet (line 881) | func (f *FlagSet) AddFlagSet(newSet *FlagSet) { method failf (line 909) | func (f *FlagSet) failf(format string, a ...interface{}) error { method usage (line 920) | func (f *FlagSet) usage() { method parseLongArg (line 952) | func (f *FlagSet) parseLongArg(s string, args []string, fn parseFunc) ... method parseSingleShortArg (line 1007) | func (f *FlagSet) parseSingleShortArg(shorthands string, args []string... method parseShortArg (line 1073) | func (f *FlagSet) parseShortArg(s string, args []string, fn parseFunc)... method parseArgs (line 1088) | func (f *FlagSet) parseArgs(args []string, fn parseFunc) (err error) { method Parse (line 1123) | func (f *FlagSet) Parse(arguments []string) error { method ParseAll (line 1163) | func (f *FlagSet) ParseAll(arguments []string, fn func(flag *Flag, val... method Parsed (line 1182) | func (f *FlagSet) Parsed() bool { method SetInterspersed (line 1228) | func (f *FlagSet) SetInterspersed(interspersed bool) { method Init (line 1235) | func (f *FlagSet) Init(name string, errorHandling ErrorHandling) { type Flag (line 171) | type Flag struct method defaultIsZeroValue (line 531) | func (f *Flag) defaultIsZeroValue() bool { type Value (line 187) | type Value interface type SliceValue (line 196) | type SliceValue interface function sortFlags (line 206) | func sortFlags(flags map[NormalizedName]*Flag) []*Flag { function VisitAll (line 313) | func VisitAll(fn func(*Flag)) { function Visit (line 343) | func Visit(fn func(*Flag)) { function Lookup (line 445) | func Lookup(name string) *Flag { function ShorthandLookup (line 451) | func ShorthandLookup(name string) *Flag { function Set (line 518) | func Set(name, value string) error { function UnquoteUsage (line 566) | func UnquoteUsage(flag *Flag) (name string, usage string) { function wrapN (line 609) | func wrapN(i, slop int, s string) (string, string) { function wrap (line 628) | func wrap(i, w int, s string) string { function PrintDefaults (line 755) | func PrintDefaults() { function defaultUsage (line 760) | func defaultUsage(f *FlagSet) { function NFlag (line 782) | func NFlag() int { return len(CommandLine.actual) } function Arg (line 795) | func Arg(i int) string { function NArg (line 803) | func NArg() int { return len(CommandLine.args) } function Args (line 809) | func Args() []string { return CommandLine.args } function Var (line 898) | func Var(value Value, name string, usage string) { function VarP (line 903) | func VarP(value Value, name, shorthand, usage string) { function stripUnknownFlagValue (line 933) | func stripUnknownFlagValue(args []string) []string { type parseFunc (line 1156) | type parseFunc function Parse (line 1188) | func Parse() { function ParseAll (line 1196) | func ParseAll(fn func(flag *Flag, value string) error) { function SetInterspersed (line 1202) | func SetInterspersed(interspersed bool) { function Parsed (line 1207) | func Parsed() bool { function NewFlagSet (line 1216) | func NewFlagSet(name string, errorHandling ErrorHandling) *FlagSet { FILE: vendor/github.com/spf13/pflag/float32.go type float32Value (line 6) | type float32Value method Set (line 13) | func (f *float32Value) Set(s string) error { method Type (line 19) | func (f *float32Value) Type() string { method String (line 23) | func (f *float32Value) String() string { return strconv.FormatFloat(fl... function newFloat32Value (line 8) | func newFloat32Value(val float32, p *float32) *float32Value { function float32Conv (line 25) | func float32Conv(sval string) (interface{}, error) { method GetFloat32 (line 34) | func (f *FlagSet) GetFloat32(name string) (float32, error) { method Float32Var (line 44) | func (f *FlagSet) Float32Var(p *float32, name string, value float32, usa... method Float32VarP (line 49) | func (f *FlagSet) Float32VarP(p *float32, name, shorthand string, value ... function Float32Var (line 55) | func Float32Var(p *float32, name string, value float32, usage string) { function Float32VarP (line 60) | func Float32VarP(p *float32, name, shorthand string, value float32, usag... method Float32 (line 66) | func (f *FlagSet) Float32(name string, value float32, usage string) *flo... method Float32P (line 73) | func (f *FlagSet) Float32P(name, shorthand string, value float32, usage ... function Float32 (line 81) | func Float32(name string, value float32, usage string) *float32 { function Float32P (line 86) | func Float32P(name, shorthand string, value float32, usage string) *floa... FILE: vendor/github.com/spf13/pflag/float32_slice.go type float32SliceValue (line 10) | type float32SliceValue struct method Set (line 22) | func (s *float32SliceValue) Set(val string) error { method Type (line 44) | func (s *float32SliceValue) Type() string { method String (line 48) | func (s *float32SliceValue) String() string { method fromString (line 56) | func (s *float32SliceValue) fromString(val string) (float32, error) { method toString (line 64) | func (s *float32SliceValue) toString(val float32) string { method Append (line 68) | func (s *float32SliceValue) Append(val string) error { method Replace (line 77) | func (s *float32SliceValue) Replace(val []string) error { method GetSlice (line 90) | func (s *float32SliceValue) GetSlice() []string { function newFloat32SliceValue (line 15) | func newFloat32SliceValue(val []float32, p *[]float32) *float32SliceValue { function float32SliceConv (line 98) | func float32SliceConv(val string) (interface{}, error) { method GetFloat32Slice (line 120) | func (f *FlagSet) GetFloat32Slice(name string) ([]float32, error) { method Float32SliceVar (line 130) | func (f *FlagSet) Float32SliceVar(p *[]float32, name string, value []flo... method Float32SliceVarP (line 135) | func (f *FlagSet) Float32SliceVarP(p *[]float32, name, shorthand string,... function Float32SliceVar (line 141) | func Float32SliceVar(p *[]float32, name string, value []float32, usage s... function Float32SliceVarP (line 146) | func Float32SliceVarP(p *[]float32, name, shorthand string, value []floa... method Float32Slice (line 152) | func (f *FlagSet) Float32Slice(name string, value []float32, usage strin... method Float32SliceP (line 159) | func (f *FlagSet) Float32SliceP(name, shorthand string, value []float32,... function Float32Slice (line 167) | func Float32Slice(name string, value []float32, usage string) *[]float32 { function Float32SliceP (line 172) | func Float32SliceP(name, shorthand string, value []float32, usage string... FILE: vendor/github.com/spf13/pflag/float64.go type float64Value (line 6) | type float64Value method Set (line 13) | func (f *float64Value) Set(s string) error { method Type (line 19) | func (f *float64Value) Type() string { method String (line 23) | func (f *float64Value) String() string { return strconv.FormatFloat(fl... function newFloat64Value (line 8) | func newFloat64Value(val float64, p *float64) *float64Value { function float64Conv (line 25) | func float64Conv(sval string) (interface{}, error) { method GetFloat64 (line 30) | func (f *FlagSet) GetFloat64(name string) (float64, error) { method Float64Var (line 40) | func (f *FlagSet) Float64Var(p *float64, name string, value float64, usa... method Float64VarP (line 45) | func (f *FlagSet) Float64VarP(p *float64, name, shorthand string, value ... function Float64Var (line 51) | func Float64Var(p *float64, name string, value float64, usage string) { function Float64VarP (line 56) | func Float64VarP(p *float64, name, shorthand string, value float64, usag... method Float64 (line 62) | func (f *FlagSet) Float64(name string, value float64, usage string) *flo... method Float64P (line 69) | func (f *FlagSet) Float64P(name, shorthand string, value float64, usage ... function Float64 (line 77) | func Float64(name string, value float64, usage string) *float64 { function Float64P (line 82) | func Float64P(name, shorthand string, value float64, usage string) *floa... FILE: vendor/github.com/spf13/pflag/float64_slice.go type float64SliceValue (line 10) | type float64SliceValue struct method Set (line 22) | func (s *float64SliceValue) Set(val string) error { method Type (line 42) | func (s *float64SliceValue) Type() string { method String (line 46) | func (s *float64SliceValue) String() string { method fromString (line 54) | func (s *float64SliceValue) fromString(val string) (float64, error) { method toString (line 58) | func (s *float64SliceValue) toString(val float64) string { method Append (line 62) | func (s *float64SliceValue) Append(val string) error { method Replace (line 71) | func (s *float64SliceValue) Replace(val []string) error { method GetSlice (line 84) | func (s *float64SliceValue) GetSlice() []string { function newFloat64SliceValue (line 15) | func newFloat64SliceValue(val []float64, p *[]float64) *float64SliceValue { function float64SliceConv (line 92) | func float64SliceConv(val string) (interface{}, error) { method GetFloat64Slice (line 112) | func (f *FlagSet) GetFloat64Slice(name string) ([]float64, error) { method Float64SliceVar (line 122) | func (f *FlagSet) Float64SliceVar(p *[]float64, name string, value []flo... method Float64SliceVarP (line 127) | func (f *FlagSet) Float64SliceVarP(p *[]float64, name, shorthand string,... function Float64SliceVar (line 133) | func Float64SliceVar(p *[]float64, name string, value []float64, usage s... function Float64SliceVarP (line 138) | func Float64SliceVarP(p *[]float64, name, shorthand string, value []floa... method Float64Slice (line 144) | func (f *FlagSet) Float64Slice(name string, value []float64, usage strin... method Float64SliceP (line 151) | func (f *FlagSet) Float64SliceP(name, shorthand string, value []float64,... function Float64Slice (line 159) | func Float64Slice(name string, value []float64, usage string) *[]float64 { function Float64SliceP (line 164) | func Float64SliceP(name, shorthand string, value []float64, usage string... FILE: vendor/github.com/spf13/pflag/golangflag.go type flagValueWrapper (line 17) | type flagValueWrapper struct method String (line 48) | func (v *flagValueWrapper) String() string { method Set (line 52) | func (v *flagValueWrapper) Set(s string) error { method Type (line 56) | func (v *flagValueWrapper) Type() string { type goBoolFlag (line 24) | type goBoolFlag interface function wrapFlagValue (line 29) | func wrapFlagValue(v goflag.Value) Value { function PFlagFromGoFlag (line 64) | func PFlagFromGoFlag(goflag *goflag.Flag) *Flag { method AddGoFlag (line 85) | func (f *FlagSet) AddGoFlag(goflag *goflag.Flag) { method AddGoFlagSet (line 94) | func (f *FlagSet) AddGoFlagSet(newSet *goflag.FlagSet) { FILE: vendor/github.com/spf13/pflag/int.go type intValue (line 6) | type intValue method Set (line 13) | func (i *intValue) Set(s string) error { method Type (line 19) | func (i *intValue) Type() string { method String (line 23) | func (i *intValue) String() string { return strconv.Itoa(int(*i)) } function newIntValue (line 8) | func newIntValue(val int, p *int) *intValue { function intConv (line 25) | func intConv(sval string) (interface{}, error) { method GetInt (line 30) | func (f *FlagSet) GetInt(name string) (int, error) { method IntVar (line 40) | func (f *FlagSet) IntVar(p *int, name string, value int, usage string) { method IntVarP (line 45) | func (f *FlagSet) IntVarP(p *int, name, shorthand string, value int, usa... function IntVar (line 51) | func IntVar(p *int, name string, value int, usage string) { function IntVarP (line 56) | func IntVarP(p *int, name, shorthand string, value int, usage string) { method Int (line 62) | func (f *FlagSet) Int(name string, value int, usage string) *int { method IntP (line 69) | func (f *FlagSet) IntP(name, shorthand string, value int, usage string) ... function Int (line 77) | func Int(name string, value int, usage string) *int { function IntP (line 82) | func IntP(name, shorthand string, value int, usage string) *int { FILE: vendor/github.com/spf13/pflag/int16.go type int16Value (line 6) | type int16Value method Set (line 13) | func (i *int16Value) Set(s string) error { method Type (line 19) | func (i *int16Value) Type() string { method String (line 23) | func (i *int16Value) String() string { return strconv.FormatInt(int64(... function newInt16Value (line 8) | func newInt16Value(val int16, p *int16) *int16Value { function int16Conv (line 25) | func int16Conv(sval string) (interface{}, error) { method GetInt16 (line 34) | func (f *FlagSet) GetInt16(name string) (int16, error) { method Int16Var (line 44) | func (f *FlagSet) Int16Var(p *int16, name string, value int16, usage str... method Int16VarP (line 49) | func (f *FlagSet) Int16VarP(p *int16, name, shorthand string, value int1... function Int16Var (line 55) | func Int16Var(p *int16, name string, value int16, usage string) { function Int16VarP (line 60) | func Int16VarP(p *int16, name, shorthand string, value int16, usage stri... method Int16 (line 66) | func (f *FlagSet) Int16(name string, value int16, usage string) *int16 { method Int16P (line 73) | func (f *FlagSet) Int16P(name, shorthand string, value int16, usage stri... function Int16 (line 81) | func Int16(name string, value int16, usage string) *int16 { function Int16P (line 86) | func Int16P(name, shorthand string, value int16, usage string) *int16 { FILE: vendor/github.com/spf13/pflag/int32.go type int32Value (line 6) | type int32Value method Set (line 13) | func (i *int32Value) Set(s string) error { method Type (line 19) | func (i *int32Value) Type() string { method String (line 23) | func (i *int32Value) String() string { return strconv.FormatInt(int64(... function newInt32Value (line 8) | func newInt32Value(val int32, p *int32) *int32Value { function int32Conv (line 25) | func int32Conv(sval string) (interface{}, error) { method GetInt32 (line 34) | func (f *FlagSet) GetInt32(name string) (int32, error) { method Int32Var (line 44) | func (f *FlagSet) Int32Var(p *int32, name string, value int32, usage str... method Int32VarP (line 49) | func (f *FlagSet) Int32VarP(p *int32, name, shorthand string, value int3... function Int32Var (line 55) | func Int32Var(p *int32, name string, value int32, usage string) { function Int32VarP (line 60) | func Int32VarP(p *int32, name, shorthand string, value int32, usage stri... method Int32 (line 66) | func (f *FlagSet) Int32(name string, value int32, usage string) *int32 { method Int32P (line 73) | func (f *FlagSet) Int32P(name, shorthand string, value int32, usage stri... function Int32 (line 81) | func Int32(name string, value int32, usage string) *int32 { function Int32P (line 86) | func Int32P(name, shorthand string, value int32, usage string) *int32 { FILE: vendor/github.com/spf13/pflag/int32_slice.go type int32SliceValue (line 10) | type int32SliceValue struct method Set (line 22) | func (s *int32SliceValue) Set(val string) error { method Type (line 44) | func (s *int32SliceValue) Type() string { method String (line 48) | func (s *int32SliceValue) String() string { method fromString (line 56) | func (s *int32SliceValue) fromString(val string) (int32, error) { method toString (line 64) | func (s *int32SliceValue) toString(val int32) string { method Append (line 68) | func (s *int32SliceValue) Append(val string) error { method Replace (line 77) | func (s *int32SliceValue) Replace(val []string) error { method GetSlice (line 90) | func (s *int32SliceValue) GetSlice() []string { function newInt32SliceValue (line 15) | func newInt32SliceValue(val []int32, p *[]int32) *int32SliceValue { function int32SliceConv (line 98) | func int32SliceConv(val string) (interface{}, error) { method GetInt32Slice (line 120) | func (f *FlagSet) GetInt32Slice(name string) ([]int32, error) { method Int32SliceVar (line 130) | func (f *FlagSet) Int32SliceVar(p *[]int32, name string, value []int32, ... method Int32SliceVarP (line 135) | func (f *FlagSet) Int32SliceVarP(p *[]int32, name, shorthand string, val... function Int32SliceVar (line 141) | func Int32SliceVar(p *[]int32, name string, value []int32, usage string) { function Int32SliceVarP (line 146) | func Int32SliceVarP(p *[]int32, name, shorthand string, value []int32, u... method Int32Slice (line 152) | func (f *FlagSet) Int32Slice(name string, value []int32, usage string) *... method Int32SliceP (line 159) | func (f *FlagSet) Int32SliceP(name, shorthand string, value []int32, usa... function Int32Slice (line 167) | func Int32Slice(name string, value []int32, usage string) *[]int32 { function Int32SliceP (line 172) | func Int32SliceP(name, shorthand string, value []int32, usage string) *[... FILE: vendor/github.com/spf13/pflag/int64.go type int64Value (line 6) | type int64Value method Set (line 13) | func (i *int64Value) Set(s string) error { method Type (line 19) | func (i *int64Value) Type() string { method String (line 23) | func (i *int64Value) String() string { return strconv.FormatInt(int64(... function newInt64Value (line 8) | func newInt64Value(val int64, p *int64) *int64Value { function int64Conv (line 25) | func int64Conv(sval string) (interface{}, error) { method GetInt64 (line 30) | func (f *FlagSet) GetInt64(name string) (int64, error) { method Int64Var (line 40) | func (f *FlagSet) Int64Var(p *int64, name string, value int64, usage str... method Int64VarP (line 45) | func (f *FlagSet) Int64VarP(p *int64, name, shorthand string, value int6... function Int64Var (line 51) | func Int64Var(p *int64, name string, value int64, usage string) { function Int64VarP (line 56) | func Int64VarP(p *int64, name, shorthand string, value int64, usage stri... method Int64 (line 62) | func (f *FlagSet) Int64(name string, value int64, usage string) *int64 { method Int64P (line 69) | func (f *FlagSet) Int64P(name, shorthand string, value int64, usage stri... function Int64 (line 77) | func Int64(name string, value int64, usage string) *int64 { function Int64P (line 82) | func Int64P(name, shorthand string, value int64, usage string) *int64 { FILE: vendor/github.com/spf13/pflag/int64_slice.go type int64SliceValue (line 10) | type int64SliceValue struct method Set (line 22) | func (s *int64SliceValue) Set(val string) error { method Type (line 42) | func (s *int64SliceValue) Type() string { method String (line 46) | func (s *int64SliceValue) String() string { method fromString (line 54) | func (s *int64SliceValue) fromString(val string) (int64, error) { method toString (line 58) | func (s *int64SliceValue) toString(val int64) string { method Append (line 62) | func (s *int64SliceValue) Append(val string) error { method Replace (line 71) | func (s *int64SliceValue) Replace(val []string) error { method GetSlice (line 84) | func (s *int64SliceValue) GetSlice() []string { function newInt64SliceValue (line 15) | func newInt64SliceValue(val []int64, p *[]int64) *int64SliceValue { function int64SliceConv (line 92) | func int64SliceConv(val string) (interface{}, error) { method GetInt64Slice (line 112) | func (f *FlagSet) GetInt64Slice(name string) ([]int64, error) { method Int64SliceVar (line 122) | func (f *FlagSet) Int64SliceVar(p *[]int64, name string, value []int64, ... method Int64SliceVarP (line 127) | func (f *FlagSet) Int64SliceVarP(p *[]int64, name, shorthand string, val... function Int64SliceVar (line 133) | func Int64SliceVar(p *[]int64, name string, value []int64, usage string) { function Int64SliceVarP (line 138) | func Int64SliceVarP(p *[]int64, name, shorthand string, value []int64, u... method Int64Slice (line 144) | func (f *FlagSet) Int64Slice(name string, value []int64, usage string) *... method Int64SliceP (line 151) | func (f *FlagSet) Int64SliceP(name, shorthand string, value []int64, usa... function Int64Slice (line 159) | func Int64Slice(name string, value []int64, usage string) *[]int64 { function Int64SliceP (line 164) | func Int64SliceP(name, shorthand string, value []int64, usage string) *[... FILE: vendor/github.com/spf13/pflag/int8.go type int8Value (line 6) | type int8Value method Set (line 13) | func (i *int8Value) Set(s string) error { method Type (line 19) | func (i *int8Value) Type() string { method String (line 23) | func (i *int8Value) String() string { return strconv.FormatInt(int64(*... function newInt8Value (line 8) | func newInt8Value(val int8, p *int8) *int8Value { function int8Conv (line 25) | func int8Conv(sval string) (interface{}, error) { method GetInt8 (line 34) | func (f *FlagSet) GetInt8(name string) (int8, error) { method Int8Var (line 44) | func (f *FlagSet) Int8Var(p *int8, name string, value int8, usage string) { method Int8VarP (line 49) | func (f *FlagSet) Int8VarP(p *int8, name, shorthand string, value int8, ... function Int8Var (line 55) | func Int8Var(p *int8, name string, value int8, usage string) { function Int8VarP (line 60) | func Int8VarP(p *int8, name, shorthand string, value int8, usage string) { method Int8 (line 66) | func (f *FlagSet) Int8(name string, value int8, usage string) *int8 { method Int8P (line 73) | func (f *FlagSet) Int8P(name, shorthand string, value int8, usage string... function Int8 (line 81) | func Int8(name string, value int8, usage string) *int8 { function Int8P (line 86) | func Int8P(name, shorthand string, value int8, usage string) *int8 { FILE: vendor/github.com/spf13/pflag/int_slice.go type intSliceValue (line 10) | type intSliceValue struct method Set (line 22) | func (s *intSliceValue) Set(val string) error { method Type (line 42) | func (s *intSliceValue) Type() string { method String (line 46) | func (s *intSliceValue) String() string { method Append (line 54) | func (s *intSliceValue) Append(val string) error { method Replace (line 63) | func (s *intSliceValue) Replace(val []string) error { method GetSlice (line 76) | func (s *intSliceValue) GetSlice() []string { function newIntSliceValue (line 15) | func newIntSliceValue(val []int, p *[]int) *intSliceValue { function intSliceConv (line 84) | func intSliceConv(val string) (interface{}, error) { method GetIntSlice (line 104) | func (f *FlagSet) GetIntSlice(name string) ([]int, error) { method IntSliceVar (line 114) | func (f *FlagSet) IntSliceVar(p *[]int, name string, value []int, usage ... method IntSliceVarP (line 119) | func (f *FlagSet) IntSliceVarP(p *[]int, name, shorthand string, value [... function IntSliceVar (line 125) | func IntSliceVar(p *[]int, name string, value []int, usage string) { function IntSliceVarP (line 130) | func IntSliceVarP(p *[]int, name, shorthand string, value []int, usage s... method IntSlice (line 136) | func (f *FlagSet) IntSlice(name string, value []int, usage string) *[]int { method IntSliceP (line 143) | func (f *FlagSet) IntSliceP(name, shorthand string, value []int, usage s... function IntSlice (line 151) | func IntSlice(name string, value []int, usage string) *[]int { function IntSliceP (line 156) | func IntSliceP(name, shorthand string, value []int, usage string) *[]int { FILE: vendor/github.com/spf13/pflag/ip.go type ipValue (line 10) | type ipValue method String (line 17) | func (i *ipValue) String() string { return net.IP(*i).String() } method Set (line 18) | func (i *ipValue) Set(s string) error { method Type (line 27) | func (i *ipValue) Type() string { function newIPValue (line 12) | func newIPValue(val net.IP, p *net.IP) *ipValue { function ipConv (line 31) | func ipConv(sval string) (interface{}, error) { method GetIP (line 40) | func (f *FlagSet) GetIP(name string) (net.IP, error) { method IPVar (line 50) | func (f *FlagSet) IPVar(p *net.IP, name string, value net.IP, usage stri... method IPVarP (line 55) | func (f *FlagSet) IPVarP(p *net.IP, name, shorthand string, value net.IP... function IPVar (line 61) | func IPVar(p *net.IP, name string, value net.IP, usage string) { function IPVarP (line 66) | func IPVarP(p *net.IP, name, shorthand string, value net.IP, usage strin... method IP (line 72) | func (f *FlagSet) IP(name string, value net.IP, usage string) *net.IP { method IPP (line 79) | func (f *FlagSet) IPP(name, shorthand string, value net.IP, usage string... function IP (line 87) | func IP(name string, value net.IP, usage string) *net.IP { function IPP (line 92) | func IPP(name, shorthand string, value net.IP, usage string) *net.IP { FILE: vendor/github.com/spf13/pflag/ip_slice.go type ipSliceValue (line 11) | type ipSliceValue struct method Set (line 25) | func (s *ipSliceValue) Set(val string) error { method Type (line 58) | func (s *ipSliceValue) Type() string { method String (line 63) | func (s *ipSliceValue) String() string { method fromString (line 75) | func (s *ipSliceValue) fromString(val string) (net.IP, error) { method toString (line 79) | func (s *ipSliceValue) toString(val net.IP) string { method Append (line 83) | func (s *ipSliceValue) Append(val string) error { method Replace (line 92) | func (s *ipSliceValue) Replace(val []string) error { method GetSlice (line 105) | func (s *ipSliceValue) GetSlice() []string { function newIPSliceValue (line 16) | func newIPSliceValue(val []net.IP, p *[]net.IP) *ipSliceValue { function ipSliceConv (line 113) | func ipSliceConv(val string) (interface{}, error) { method GetIPSlice (line 132) | func (f *FlagSet) GetIPSlice(name string) ([]net.IP, error) { method IPSliceVar (line 142) | func (f *FlagSet) IPSliceVar(p *[]net.IP, name string, value []net.IP, u... method IPSliceVarP (line 147) | func (f *FlagSet) IPSliceVarP(p *[]net.IP, name, shorthand string, value... function IPSliceVar (line 153) | func IPSliceVar(p *[]net.IP, name string, value []net.IP, usage string) { function IPSliceVarP (line 158) | func IPSliceVarP(p *[]net.IP, name, shorthand string, value []net.IP, us... method IPSlice (line 164) | func (f *FlagSet) IPSlice(name string, value []net.IP, usage string) *[]... method IPSliceP (line 171) | func (f *FlagSet) IPSliceP(name, shorthand string, value []net.IP, usage... function IPSlice (line 179) | func IPSlice(name string, value []net.IP, usage string) *[]net.IP { function IPSliceP (line 184) | func IPSliceP(name, shorthand string, value []net.IP, usage string) *[]n... FILE: vendor/github.com/spf13/pflag/ipmask.go type ipMaskValue (line 10) | type ipMaskValue method String (line 17) | func (i *ipMaskValue) String() string { return net.IPMask(*i).String() } method Set (line 18) | func (i *ipMaskValue) Set(s string) error { method Type (line 27) | func (i *ipMaskValue) Type() string { function newIPMaskValue (line 12) | func newIPMaskValue(val net.IPMask, p *net.IPMask) *ipMaskValue { function ParseIPv4Mask (line 33) | func ParseIPv4Mask(s string) net.IPMask { function parseIPv4Mask (line 59) | func parseIPv4Mask(sval string) (interface{}, error) { method GetIPv4Mask (line 68) | func (f *FlagSet) GetIPv4Mask(name string) (net.IPMask, error) { method IPMaskVar (line 78) | func (f *FlagSet) IPMaskVar(p *net.IPMask, name string, value net.IPMask... method IPMaskVarP (line 83) | func (f *FlagSet) IPMaskVarP(p *net.IPMask, name, shorthand string, valu... function IPMaskVar (line 89) | func IPMaskVar(p *net.IPMask, name string, value net.IPMask, usage strin... function IPMaskVarP (line 94) | func IPMaskVarP(p *net.IPMask, name, shorthand string, value net.IPMask,... method IPMask (line 100) | func (f *FlagSet) IPMask(name string, value net.IPMask, usage string) *n... method IPMaskP (line 107) | func (f *FlagSet) IPMaskP(name, shorthand string, value net.IPMask, usag... function IPMask (line 115) | func IPMask(name string, value net.IPMask, usage string) *net.IPMask { function IPMaskP (line 120) | func IPMaskP(name, shorthand string, value net.IPMask, usage string) *ne... FILE: vendor/github.com/spf13/pflag/ipnet.go type ipNetValue (line 10) | type ipNetValue method String (line 12) | func (ipnet ipNetValue) String() string { method Set (line 17) | func (ipnet *ipNetValue) Set(value string) error { method Type (line 26) | func (*ipNetValue) Type() string { function newIPNetValue (line 30) | func newIPNetValue(val net.IPNet, p *net.IPNet) *ipNetValue { function ipNetConv (line 35) | func ipNetConv(sval string) (interface{}, error) { method GetIPNet (line 44) | func (f *FlagSet) GetIPNet(name string) (net.IPNet, error) { method IPNetVar (line 54) | func (f *FlagSet) IPNetVar(p *net.IPNet, name string, value net.IPNet, u... method IPNetVarP (line 59) | func (f *FlagSet) IPNetVarP(p *net.IPNet, name, shorthand string, value ... function IPNetVar (line 65) | func IPNetVar(p *net.IPNet, name string, value net.IPNet, usage string) { function IPNetVarP (line 70) | func IPNetVarP(p *net.IPNet, name, shorthand string, value net.IPNet, us... method IPNet (line 76) | func (f *FlagSet) IPNet(name string, value net.IPNet, usage string) *net... method IPNetP (line 83) | func (f *FlagSet) IPNetP(name, shorthand string, value net.IPNet, usage ... function IPNet (line 91) | func IPNet(name string, value net.IPNet, usage string) *net.IPNet { function IPNetP (line 96) | func IPNetP(name, shorthand string, value net.IPNet, usage string) *net.... FILE: vendor/github.com/spf13/pflag/string.go type stringValue (line 4) | type stringValue method Set (line 11) | func (s *stringValue) Set(val string) error { method Type (line 15) | func (s *stringValue) Type() string { method String (line 19) | func (s *stringValue) String() string { return string(*s) } function newStringValue (line 6) | func newStringValue(val string, p *string) *stringValue { function stringConv (line 21) | func stringConv(sval string) (interface{}, error) { method GetString (line 26) | func (f *FlagSet) GetString(name string) (string, error) { method StringVar (line 36) | func (f *FlagSet) StringVar(p *string, name string, value string, usage ... method StringVarP (line 41) | func (f *FlagSet) StringVarP(p *string, name, shorthand string, value st... function StringVar (line 47) | func StringVar(p *string, name string, value string, usage string) { function StringVarP (line 52) | func StringVarP(p *string, name, shorthand string, value string, usage s... method String (line 58) | func (f *FlagSet) String(name string, value string, usage string) *string { method StringP (line 65) | func (f *FlagSet) StringP(name, shorthand string, value string, usage st... function String (line 73) | func String(name string, value string, usage string) *string { function StringP (line 78) | func StringP(name, shorthand string, value string, usage string) *string { FILE: vendor/github.com/spf13/pflag/string_array.go type stringArrayValue (line 4) | type stringArrayValue struct method Set (line 16) | func (s *stringArrayValue) Set(val string) error { method Append (line 26) | func (s *stringArrayValue) Append(val string) error { method Replace (line 31) | func (s *stringArrayValue) Replace(val []string) error { method GetSlice (line 44) | func (s *stringArrayValue) GetSlice() []string { method Type (line 52) | func (s *stringArrayValue) Type() string { method String (line 56) | func (s *stringArrayValue) String() string { function newStringArrayValue (line 9) | func newStringArrayValue(val []string, p *[]string) *stringArrayValue { function stringArrayConv (line 61) | func stringArrayConv(sval string) (interface{}, error) { method GetStringArray (line 71) | func (f *FlagSet) GetStringArray(name string) ([]string, error) { method StringArrayVar (line 82) | func (f *FlagSet) StringArrayVar(p *[]string, name string, value []strin... method StringArrayVarP (line 87) | func (f *FlagSet) StringArrayVarP(p *[]string, name, shorthand string, v... function StringArrayVar (line 94) | func StringArrayVar(p *[]string, name string, value []string, usage stri... function StringArrayVarP (line 99) | func StringArrayVarP(p *[]string, name, shorthand string, value []string... method StringArray (line 106) | func (f *FlagSet) StringArray(name string, value []string, usage string)... method StringArrayP (line 113) | func (f *FlagSet) StringArrayP(name, shorthand string, value []string, u... function StringArray (line 122) | func StringArray(name string, value []string, usage string) *[]string { function StringArrayP (line 127) | func StringArrayP(name, shorthand string, value []string, usage string) ... FILE: vendor/github.com/spf13/pflag/string_slice.go type stringSliceValue (line 10) | type stringSliceValue struct method Set (line 42) | func (s *stringSliceValue) Set(val string) error { method Type (line 56) | func (s *stringSliceValue) Type() string { method String (line 60) | func (s *stringSliceValue) String() string { method Append (line 65) | func (s *stringSliceValue) Append(val string) error { method Replace (line 70) | func (s *stringSliceValue) Replace(val []string) error { method GetSlice (line 75) | func (s *stringSliceValue) GetSlice() []string { function newStringSliceValue (line 15) | func newStringSliceValue(val []string, p *[]string) *stringSliceValue { function readAsCSV (line 22) | func readAsCSV(val string) ([]string, error) { function writeAsCSV (line 31) | func writeAsCSV(vals []string) (string, error) { function stringSliceConv (line 79) | func stringSliceConv(sval string) (interface{}, error) { method GetStringSlice (line 89) | func (f *FlagSet) GetStringSlice(name string) ([]string, error) { method StringSliceVar (line 104) | func (f *FlagSet) StringSliceVar(p *[]string, name string, value []strin... method StringSliceVarP (line 109) | func (f *FlagSet) StringSliceVarP(p *[]string, name, shorthand string, v... function StringSliceVar (line 120) | func StringSliceVar(p *[]string, name string, value []string, usage stri... function StringSliceVarP (line 125) | func StringSliceVarP(p *[]string, name, shorthand string, value []string... method StringSlice (line 136) | func (f *FlagSet) StringSlice(name string, value []string, usage string)... method StringSliceP (line 143) | func (f *FlagSet) StringSliceP(name, shorthand string, value []string, u... function StringSlice (line 156) | func StringSlice(name string, value []string, usage string) *[]string { function StringSliceP (line 161) | func StringSliceP(name, shorthand string, value []string, usage string) ... FILE: vendor/github.com/spf13/pflag/string_to_int.go type stringToIntValue (line 11) | type stringToIntValue struct method Set (line 24) | func (s *stringToIntValue) Set(val string) error { method Type (line 49) | func (s *stringToIntValue) Type() string { method String (line 53) | func (s *stringToIntValue) String() string { function newStringToIntValue (line 16) | func newStringToIntValue(val map[string]int, p *map[string]int) *stringT... function stringToIntConv (line 68) | func stringToIntConv(val string) (interface{}, error) { method GetStringToInt (line 91) | func (f *FlagSet) GetStringToInt(name string) (map[string]int, error) { method StringToIntVar (line 102) | func (f *FlagSet) StringToIntVar(p *map[string]int, name string, value m... method StringToIntVarP (line 107) | func (f *FlagSet) StringToIntVarP(p *map[string]int, name, shorthand str... function StringToIntVar (line 114) | func StringToIntVar(p *map[string]int, name string, value map[string]int... function StringToIntVarP (line 119) | func StringToIntVarP(p *map[string]int, name, shorthand string, value ma... method StringToInt (line 126) | func (f *FlagSet) StringToInt(name string, value map[string]int, usage s... method StringToIntP (line 133) | func (f *FlagSet) StringToIntP(name, shorthand string, value map[string]... function StringToInt (line 142) | func StringToInt(name string, value map[string]int, usage string) *map[s... function StringToIntP (line 147) | func StringToIntP(name, shorthand string, value map[string]int, usage st... FILE: vendor/github.com/spf13/pflag/string_to_int64.go type stringToInt64Value (line 11) | type stringToInt64Value struct method Set (line 24) | func (s *stringToInt64Value) Set(val string) error { method Type (line 49) | func (s *stringToInt64Value) Type() string { method String (line 53) | func (s *stringToInt64Value) String() string { function newStringToInt64Value (line 16) | func newStringToInt64Value(val map[string]int64, p *map[string]int64) *s... function stringToInt64Conv (line 68) | func stringToInt64Conv(val string) (interface{}, error) { method GetStringToInt64 (line 91) | func (f *FlagSet) GetStringToInt64(name string) (map[string]int64, error) { method StringToInt64Var (line 102) | func (f *FlagSet) StringToInt64Var(p *map[string]int64, name string, val... method StringToInt64VarP (line 107) | func (f *FlagSet) StringToInt64VarP(p *map[string]int64, name, shorthand... function StringToInt64Var (line 114) | func StringToInt64Var(p *map[string]int64, name string, value map[string... function StringToInt64VarP (line 119) | func StringToInt64VarP(p *map[string]int64, name, shorthand string, valu... method StringToInt64 (line 126) | func (f *FlagSet) StringToInt64(name string, value map[string]int64, usa... method StringToInt64P (line 133) | func (f *FlagSet) StringToInt64P(name, shorthand string, value map[strin... function StringToInt64 (line 142) | func StringToInt64(name string, value map[string]int64, usage string) *m... function StringToInt64P (line 147) | func StringToInt64P(name, shorthand string, value map[string]int64, usag... FILE: vendor/github.com/spf13/pflag/string_to_string.go type stringToStringValue (line 11) | type stringToStringValue struct method Set (line 24) | func (s *stringToStringValue) Set(val string) error { method Type (line 60) | func (s *stringToStringValue) Type() string { method String (line 64) | func (s *stringToStringValue) String() string { function newStringToStringValue (line 16) | func newStringToStringValue(val map[string]string, p *map[string]string)... function stringToStringConv (line 79) | func stringToStringConv(val string) (interface{}, error) { method GetStringToString (line 102) | func (f *FlagSet) GetStringToString(name string) (map[string]string, err... method StringToStringVar (line 113) | func (f *FlagSet) StringToStringVar(p *map[string]string, name string, v... method StringToStringVarP (line 118) | func (f *FlagSet) StringToStringVarP(p *map[string]string, name, shortha... function StringToStringVar (line 125) | func StringToStringVar(p *map[string]string, name string, value map[stri... function StringToStringVarP (line 130) | func StringToStringVarP(p *map[string]string, name, shorthand string, va... method StringToString (line 137) | func (f *FlagSet) StringToString(name string, value map[string]string, u... method StringToStringP (line 144) | func (f *FlagSet) StringToStringP(name, shorthand string, value map[stri... function StringToString (line 153) | func StringToString(name string, value map[string]string, usage string) ... function StringToStringP (line 158) | func StringToStringP(name, shorthand string, value map[string]string, us... FILE: vendor/github.com/spf13/pflag/uint.go type uintValue (line 6) | type uintValue method Set (line 13) | func (i *uintValue) Set(s string) error { method Type (line 19) | func (i *uintValue) Type() string { method String (line 23) | func (i *uintValue) String() string { return strconv.FormatUint(uint64... function newUintValue (line 8) | func newUintValue(val uint, p *uint) *uintValue { function uintConv (line 25) | func uintConv(sval string) (interface{}, error) { method GetUint (line 34) | func (f *FlagSet) GetUint(name string) (uint, error) { method UintVar (line 44) | func (f *FlagSet) UintVar(p *uint, name string, value uint, usage string) { method UintVarP (line 49) | func (f *FlagSet) UintVarP(p *uint, name, shorthand string, value uint, ... function UintVar (line 55) | func UintVar(p *uint, name string, value uint, usage string) { function UintVarP (line 60) | func UintVarP(p *uint, name, shorthand string, value uint, usage string) { method Uint (line 66) | func (f *FlagSet) Uint(name string, value uint, usage string) *uint { method UintP (line 73) | func (f *FlagSet) UintP(name, shorthand string, value uint, usage string... function Uint (line 81) | func Uint(name string, value uint, usage string) *uint { function UintP (line 86) | func UintP(name, shorthand string, value uint, usage string) *uint { FILE: vendor/github.com/spf13/pflag/uint16.go type uint16Value (line 6) | type uint16Value method Set (line 13) | func (i *uint16Value) Set(s string) error { method Type (line 19) | func (i *uint16Value) Type() string { method String (line 23) | func (i *uint16Value) String() string { return strconv.FormatUint(uint... function newUint16Value (line 8) | func newUint16Value(val uint16, p *uint16) *uint16Value { function uint16Conv (line 25) | func uint16Conv(sval string) (interface{}, error) { method GetUint16 (line 34) | func (f *FlagSet) GetUint16(name string) (uint16, error) { method Uint16Var (line 44) | func (f *FlagSet) Uint16Var(p *uint16, name string, value uint16, usage ... method Uint16VarP (line 49) | func (f *FlagSet) Uint16VarP(p *uint16, name, shorthand string, value ui... function Uint16Var (line 55) | func Uint16Var(p *uint16, name string, value uint16, usage string) { function Uint16VarP (line 60) | func Uint16VarP(p *uint16, name, shorthand string, value uint16, usage s... method Uint16 (line 66) | func (f *FlagSet) Uint16(name string, value uint16, usage string) *uint16 { method Uint16P (line 73) | func (f *FlagSet) Uint16P(name, shorthand string, value uint16, usage st... function Uint16 (line 81) | func Uint16(name string, value uint16, usage string) *uint16 { function Uint16P (line 86) | func Uint16P(name, shorthand string, value uint16, usage string) *uint16 { FILE: vendor/github.com/spf13/pflag/uint32.go type uint32Value (line 6) | type uint32Value method Set (line 13) | func (i *uint32Value) Set(s string) error { method Type (line 19) | func (i *uint32Value) Type() string { method String (line 23) | func (i *uint32Value) String() string { return strconv.FormatUint(uint... function newUint32Value (line 8) | func newUint32Value(val uint32, p *uint32) *uint32Value { function uint32Conv (line 25) | func uint32Conv(sval string) (interface{}, error) { method GetUint32 (line 34) | func (f *FlagSet) GetUint32(name string) (uint32, error) { method Uint32Var (line 44) | func (f *FlagSet) Uint32Var(p *uint32, name string, value uint32, usage ... method Uint32VarP (line 49) | func (f *FlagSet) Uint32VarP(p *uint32, name, shorthand string, value ui... function Uint32Var (line 55) | func Uint32Var(p *uint32, name string, value uint32, usage string) { function Uint32VarP (line 60) | func Uint32VarP(p *uint32, name, shorthand string, value uint32, usage s... method Uint32 (line 66) | func (f *FlagSet) Uint32(name string, value uint32, usage string) *uint32 { method Uint32P (line 73) | func (f *FlagSet) Uint32P(name, shorthand string, value uint32, usage st... function Uint32 (line 81) | func Uint32(name string, value uint32, usage string) *uint32 { function Uint32P (line 86) | func Uint32P(name, shorthand string, value uint32, usage string) *uint32 { FILE: vendor/github.com/spf13/pflag/uint64.go type uint64Value (line 6) | type uint64Value method Set (line 13) | func (i *uint64Value) Set(s string) error { method Type (line 19) | func (i *uint64Value) Type() string { method String (line 23) | func (i *uint64Value) String() string { return strconv.FormatUint(uint... function newUint64Value (line 8) | func newUint64Value(val uint64, p *uint64) *uint64Value { function uint64Conv (line 25) | func uint64Conv(sval string) (interface{}, error) { method GetUint64 (line 34) | func (f *FlagSet) GetUint64(name string) (uint64, error) { method Uint64Var (line 44) | func (f *FlagSet) Uint64Var(p *uint64, name string, value uint64, usage ... method Uint64VarP (line 49) | func (f *FlagSet) Uint64VarP(p *uint64, name, shorthand string, value ui... function Uint64Var (line 55) | func Uint64Var(p *uint64, name string, value uint64, usage string) { function Uint64VarP (line 60) | func Uint64VarP(p *uint64, name, shorthand string, value uint64, usage s... method Uint64 (line 66) | func (f *FlagSet) Uint64(name string, value uint64, usage string) *uint64 { method Uint64P (line 73) | func (f *FlagSet) Uint64P(name, shorthand string, value uint64, usage st... function Uint64 (line 81) | func Uint64(name string, value uint64, usage string) *uint64 { function Uint64P (line 86) | func Uint64P(name, shorthand string, value uint64, usage string) *uint64 { FILE: vendor/github.com/spf13/pflag/uint8.go type uint8Value (line 6) | type uint8Value method Set (line 13) | func (i *uint8Value) Set(s string) error { method Type (line 19) | func (i *uint8Value) Type() string { method String (line 23) | func (i *uint8Value) String() string { return strconv.FormatUint(uint6... function newUint8Value (line 8) | func newUint8Value(val uint8, p *uint8) *uint8Value { function uint8Conv (line 25) | func uint8Conv(sval string) (interface{}, error) { method GetUint8 (line 34) | func (f *FlagSet) GetUint8(name string) (uint8, error) { method Uint8Var (line 44) | func (f *FlagSet) Uint8Var(p *uint8, name string, value uint8, usage str... method Uint8VarP (line 49) | func (f *FlagSet) Uint8VarP(p *uint8, name, shorthand string, value uint... function Uint8Var (line 55) | func Uint8Var(p *uint8, name string, value uint8, usage string) { function Uint8VarP (line 60) | func Uint8VarP(p *uint8, name, shorthand string, value uint8, usage stri... method Uint8 (line 66) | func (f *FlagSet) Uint8(name string, value uint8, usage string) *uint8 { method Uint8P (line 73) | func (f *FlagSet) Uint8P(name, shorthand string, value uint8, usage stri... function Uint8 (line 81) | func Uint8(name string, value uint8, usage string) *uint8 { function Uint8P (line 86) | func Uint8P(name, shorthand string, value uint8, usage string) *uint8 { FILE: vendor/github.com/spf13/pflag/uint_slice.go type uintSliceValue (line 10) | type uintSliceValue struct method Set (line 22) | func (s *uintSliceValue) Set(val string) error { method Type (line 41) | func (s *uintSliceValue) Type() string { method String (line 45) | func (s *uintSliceValue) String() string { method fromString (line 53) | func (s *uintSliceValue) fromString(val string) (uint, error) { method toString (line 61) | func (s *uintSliceValue) toString(val uint) string { method Append (line 65) | func (s *uintSliceValue) Append(val string) error { method Replace (line 74) | func (s *uintSliceValue) Replace(val []string) error { method GetSlice (line 87) | func (s *uintSliceValue) GetSlice() []string { function newUintSliceValue (line 15) | func newUintSliceValue(val []uint, p *[]uint) *uintSliceValue { function uintSliceConv (line 95) | func uintSliceConv(val string) (interface{}, error) { method GetUintSlice (line 114) | func (f *FlagSet) GetUintSlice(name string) ([]uint, error) { method UintSliceVar (line 124) | func (f *FlagSet) UintSliceVar(p *[]uint, name string, value []uint, usa... method UintSliceVarP (line 129) | func (f *FlagSet) UintSliceVarP(p *[]uint, name, shorthand string, value... function UintSliceVar (line 135) | func UintSliceVar(p *[]uint, name string, value []uint, usage string) { function UintSliceVarP (line 140) | func UintSliceVarP(p *[]uint, name, shorthand string, value []uint, usag... method UintSlice (line 146) | func (f *FlagSet) UintSlice(name string, value []uint, usage string) *[]... method UintSliceP (line 153) | func (f *FlagSet) UintSliceP(name, shorthand string, value []uint, usage... function UintSlice (line 161) | func UintSlice(name string, value []uint, usage string) *[]uint { function UintSliceP (line 166) | func UintSliceP(name, shorthand string, value []uint, usage string) *[]u... FILE: vendor/golang.org/x/sys/internal/unsafeheader/unsafeheader.go type Slice (line 19) | type Slice struct type String (line 27) | type String struct 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 HCI_CHANNEL_LOGGING (line 26) | HCI_CHANNEL_LOGGING = 4 constant SOL_BLUETOOTH (line 31) | SOL_BLUETOOTH = 0x112 constant SOL_HCI (line 32) | SOL_HCI = 0x0 constant SOL_L2CAP (line 33) | SOL_L2CAP = 0x6 constant SOL_RFCOMM (line 34) | SOL_RFCOMM = 0x12 constant SOL_SCO (line 35) | SOL_SCO = 0x11 FILE: vendor/golang.org/x/sys/unix/cap_freebsd.go constant capRightsGoVersion (line 19) | capRightsGoVersion = CAP_RIGHTS_VERSION_00 constant capArSizeMin (line 20) | capArSizeMin = CAP_RIGHTS_VERSION_00 + 2 constant capArSizeMax (line 21) | capArSizeMax = capRightsGoVersion + 2 function capidxbit (line 31) | func capidxbit(right uint64) int { function rightToIndex (line 35) | func rightToIndex(right uint64) (int, error) { function caprver (line 43) | func caprver(right uint64) int { function capver (line 47) | func capver(rights *CapRights) int { function caparsize (line 51) | func caparsize(rights *CapRights) int { function CapRightsSet (line 56) | func CapRightsSet(rights *CapRights, setrights []uint64) error { function CapRightsClear (line 91) | func CapRightsClear(rights *CapRights, clearrights []uint64) error { function CapRightsIsSet (line 126) | func CapRightsIsSet(rights *CapRights, setrights []uint64) (bool, error) { function capright (line 159) | func capright(idx uint64, bit uint64) uint64 { function CapRightsInit (line 165) | func CapRightsInit(rights []uint64) (*CapRights, error) { function CapRightsLimit (line 180) | func CapRightsLimit(fd uintptr, rights *CapRights) error { function CapRightsGet (line 186) | func CapRightsGet(fd uintptr) (*CapRights, error) { FILE: vendor/golang.org/x/sys/unix/constants.go constant R_OK (line 11) | R_OK = 0x4 constant W_OK (line 12) | W_OK = 0x2 constant X_OK (line 13) | 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/dev_zos.go function Major (line 16) | func Major(dev uint64) uint32 { function Minor (line 21) | func Minor(dev uint64) uint32 { function Mkdev (line 27) | func Mkdev(major, minor uint32) uint64 { FILE: vendor/golang.org/x/sys/unix/dirent.go function readInt (line 13) | func readInt(b []byte, off, size uintptr) (u uint64, ok bool) { function readIntBE (line 23) | func readIntBE(b []byte, size uintptr) uint64 { function readIntLE (line 42) | func readIntLE(b []byte, size uintptr) uint64 { function ParseDirent (line 65) | func ParseDirent(buf []byte, max int, names []string) (consumed int, cou... FILE: vendor/golang.org/x/sys/unix/endian_big.go constant isBigEndian (line 10) | isBigEndian = true FILE: vendor/golang.org/x/sys/unix/endian_little.go constant isBigEndian (line 10) | isBigEndian = false FILE: vendor/golang.org/x/sys/unix/env_unix.go function Getenv (line 14) | func Getenv(key string) (value string, found bool) { function Setenv (line 18) | func Setenv(key, value string) error { function Clearenv (line 22) | func Clearenv() { function Environ (line 26) | func Environ() []string { function Unsetenv (line 30) | func Unsetenv(key string) error { FILE: vendor/golang.org/x/sys/unix/epoll_zos.go type EpollEvent (line 18) | type EpollEvent struct constant EPOLLERR (line 25) | EPOLLERR = 0x8 constant EPOLLHUP (line 26) | EPOLLHUP = 0x10 constant EPOLLIN (line 27) | EPOLLIN = 0x1 constant EPOLLMSG (line 28) | EPOLLMSG = 0x400 constant EPOLLOUT (line 29) | EPOLLOUT = 0x4 constant EPOLLPRI (line 30) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 31) | EPOLLRDBAND = 0x80 constant EPOLLRDNORM (line 32) | EPOLLRDNORM = 0x40 constant EPOLLWRBAND (line 33) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 34) | EPOLLWRNORM = 0x100 constant EPOLL_CTL_ADD (line 35) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 36) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 37) | EPOLL_CTL_MOD = 0x3 function epToPollEvt (line 53) | func epToPollEvt(events uint32) int16 { function pToEpollEvt (line 73) | func pToEpollEvt(revents int16) uint32 { type epollImpl (line 93) | type epollImpl struct method epollcreate (line 112) | func (e *epollImpl) epollcreate(size int) (epfd int, err error) { method epollcreate1 (line 124) | func (e *epollImpl) epollcreate1(flag int) (fd int, err error) { method epollctl (line 128) | func (e *epollImpl) epollctl(epfd int, op int, fd int, event *EpollEve... method epollwait (line 170) | func (e *epollImpl) epollwait(epfd int, events []EpollEvent, msec int)... type eventPoll (line 101) | type eventPoll struct method getFds (line 162) | func (ep *eventPoll) getFds() []int { function EpollCreate (line 205) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 209) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 213) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function EpollWait (line 219) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... FILE: vendor/golang.org/x/sys/unix/errors_freebsd_386.go constant DLT_HHDLC (line 11) | DLT_HHDLC = 0x79 constant IFF_SMART (line 12) | IFF_SMART = 0x20 constant IFT_1822 (line 13) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 14) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 15) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 16) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 17) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 18) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 19) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 20) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 21) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 22) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 23) | IFT_ASYNC = 0x54 constant IFT_ATM (line 24) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 25) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 26) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 27) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 28) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 29) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 30) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 31) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 32) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 33) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BSC (line 34) | IFT_BSC = 0x53 constant IFT_CCTEMUL (line 35) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 36) | IFT_CEPT = 0x13 constant IFT_CES (line 37) | IFT_CES = 0x85 constant IFT_CHANNEL (line 38) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 39) | IFT_CNR = 0x55 constant IFT_COFFEE (line 40) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 41) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 42) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 43) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 44) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 45) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 46) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 47) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 48) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 49) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 50) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 51) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 52) | IFT_DS3 = 0x1e constant IFT_DTM (line 53) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 54) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 55) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 56) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 57) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 58) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 59) | IFT_ENC = 0xf4 constant IFT_EON (line 60) | IFT_EON = 0x19 constant IFT_EPLRS (line 61) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 62) | IFT_ESCON = 0x49 constant IFT_ETHER (line 63) | IFT_ETHER = 0x6 constant IFT_FAITH (line 64) | IFT_FAITH = 0xf2 constant IFT_FAST (line 65) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 66) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 67) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 68) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 69) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 70) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 71) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 72) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 73) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 74) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 75) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 76) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 77) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 78) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 79) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 80) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 81) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 82) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 83) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 84) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 85) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 86) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 87) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 88) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 89) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 90) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 91) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 92) | IFT_HSSI = 0x2e constant IFT_HY (line 93) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 94) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 95) | IFT_IDSL = 0x9a constant IFT_IEEE80211 (line 96) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 97) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 98) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 99) | IFT_IFGSN = 0x91 constant IFT_IMT (line 100) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 101) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 102) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 103) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 104) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 105) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 106) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 107) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 108) | IFT_IPXIP = 0xf9 constant IFT_ISDN (line 109) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 110) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 111) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 112) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 113) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 114) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 115) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 116) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 117) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 118) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 119) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 120) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 121) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 122) | IFT_ISUP = 0xb3 constant IFT_L3IPXVLAN (line 123) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 124) | IFT_LAPB = 0x10 constant IFT_LAPD (line 125) | IFT_LAPD = 0x4d constant IFT_LAPF (line 126) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 127) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 128) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 129) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 130) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 131) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 132) | IFT_MODEM = 0x30 constant IFT_MPC (line 133) | IFT_MPC = 0x71 constant IFT_MPLS (line 134) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 135) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 136) | IFT_MSDSL = 0x8f constant IFT_MVL (line 137) | IFT_MVL = 0xbf constant IFT_MYRINET (line 138) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 139) | IFT_NFAS = 0xaf constant IFT_NSIP (line 140) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 141) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 142) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 143) | IFT_OTHER = 0x1 constant IFT_P10 (line 144) | IFT_P10 = 0xc constant IFT_P80 (line 145) | IFT_P80 = 0xd constant IFT_PARA (line 146) | IFT_PARA = 0x22 constant IFT_PFLOG (line 147) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 148) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 149) | IFT_PLC = 0xae constant IFT_POS (line 150) | IFT_POS = 0xab constant IFT_PPPMULTILINKBUNDLE (line 151) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 152) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 153) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 154) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 155) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 156) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 157) | IFT_PROPMUX = 0x36 constant IFT_PROPWIRELESSP2P (line 158) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 159) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 160) | IFT_PVC = 0xf1 constant IFT_QLLC (line 161) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 162) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 163) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 164) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 165) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 166) | IFT_RS232 = 0x21 constant IFT_RSRB (line 167) | IFT_RSRB = 0x4f constant IFT_SDLC (line 168) | IFT_SDLC = 0x11 constant IFT_SDSL (line 169) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 170) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 171) | IFT_SIP = 0x1f constant IFT_SLIP (line 172) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 173) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 174) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 175) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 176) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 177) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 178) | IFT_SONETVT = 0x33 constant IFT_SRP (line 179) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 180) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 181) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 182) | IFT_STARLAN = 0xb constant IFT_STF (line 183) | IFT_STF = 0xd7 constant IFT_T1 (line 184) | IFT_T1 = 0x12 constant IFT_TDLC (line 185) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 186) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 187) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 188) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 189) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 190) | IFT_ULTRA = 0x1d constant IFT_USB (line 191) | IFT_USB = 0xa0 constant IFT_V11 (line 192) | IFT_V11 = 0x40 constant IFT_V35 (line 193) | IFT_V35 = 0x2d constant IFT_V36 (line 194) | IFT_V36 = 0x41 constant IFT_V37 (line 195) | IFT_V37 = 0x78 constant IFT_VDSL (line 196) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 197) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 198) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 199) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 200) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 201) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 202) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 203) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 204) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 205) | IFT_X213 = 0x5d constant IFT_X25 (line 206) | IFT_X25 = 0x5 constant IFT_X25DDN (line 207) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 208) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 209) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 210) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 211) | IFT_XETHER = 0x1a constant IPPROTO_MAXID (line 212) | IPPROTO_MAXID = 0x34 constant IPV6_FAITH (line 213) | IPV6_FAITH = 0x1d constant IPV6_MIN_MEMBERSHIPS (line 214) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IP_FAITH (line 215) | IP_FAITH = 0x16 constant IP_MAX_SOURCE_FILTER (line 216) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MIN_MEMBERSHIPS (line 217) | IP_MIN_MEMBERSHIPS = 0x1f constant MAP_NORESERVE (line 218) | MAP_NORESERVE = 0x40 constant MAP_RENAME (line 219) | MAP_RENAME = 0x20 constant NET_RT_MAXID (line 220) | NET_RT_MAXID = 0x6 constant RTF_PRCLONING (line 221) | RTF_PRCLONING = 0x10000 constant RTM_OLDADD (line 222) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 223) | RTM_OLDDEL = 0xa constant RT_CACHING_CONTEXT (line 224) | RT_CACHING_CONTEXT = 0x1 constant RT_NORTREF (line 225) | RT_NORTREF = 0x2 constant SIOCADDRT (line 226) | SIOCADDRT = 0x8030720a constant SIOCALIFADDR (line 227) | SIOCALIFADDR = 0x8118691b constant SIOCDELRT (line 228) | SIOCDELRT = 0x8030720b constant SIOCDLIFADDR (line 229) | SIOCDLIFADDR = 0x8118691d constant SIOCGLIFADDR (line 230) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 231) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCSLIFPHYADDR (line 232) | SIOCSLIFPHYADDR = 0x8118694a FILE: vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go constant DLT_HHDLC (line 11) | DLT_HHDLC = 0x79 constant IFF_SMART (line 12) | IFF_SMART = 0x20 constant IFT_1822 (line 13) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 14) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 15) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 16) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 17) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 18) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 19) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 20) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 21) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 22) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 23) | IFT_ASYNC = 0x54 constant IFT_ATM (line 24) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 25) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 26) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 27) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 28) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 29) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 30) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 31) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 32) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 33) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BSC (line 34) | IFT_BSC = 0x53 constant IFT_CCTEMUL (line 35) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 36) | IFT_CEPT = 0x13 constant IFT_CES (line 37) | IFT_CES = 0x85 constant IFT_CHANNEL (line 38) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 39) | IFT_CNR = 0x55 constant IFT_COFFEE (line 40) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 41) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 42) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 43) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 44) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 45) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 46) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 47) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 48) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 49) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 50) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 51) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 52) | IFT_DS3 = 0x1e constant IFT_DTM (line 53) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 54) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 55) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 56) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 57) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 58) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 59) | IFT_ENC = 0xf4 constant IFT_EON (line 60) | IFT_EON = 0x19 constant IFT_EPLRS (line 61) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 62) | IFT_ESCON = 0x49 constant IFT_ETHER (line 63) | IFT_ETHER = 0x6 constant IFT_FAITH (line 64) | IFT_FAITH = 0xf2 constant IFT_FAST (line 65) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 66) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 67) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 68) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 69) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 70) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 71) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 72) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 73) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 74) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 75) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 76) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 77) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 78) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 79) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 80) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 81) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 82) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 83) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 84) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 85) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 86) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 87) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 88) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 89) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 90) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 91) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 92) | IFT_HSSI = 0x2e constant IFT_HY (line 93) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 94) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 95) | IFT_IDSL = 0x9a constant IFT_IEEE80211 (line 96) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 97) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 98) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 99) | IFT_IFGSN = 0x91 constant IFT_IMT (line 100) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 101) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 102) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 103) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 104) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 105) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 106) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 107) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 108) | IFT_IPXIP = 0xf9 constant IFT_ISDN (line 109) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 110) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 111) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 112) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 113) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 114) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 115) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 116) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 117) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 118) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 119) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 120) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 121) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 122) | IFT_ISUP = 0xb3 constant IFT_L3IPXVLAN (line 123) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 124) | IFT_LAPB = 0x10 constant IFT_LAPD (line 125) | IFT_LAPD = 0x4d constant IFT_LAPF (line 126) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 127) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 128) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 129) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 130) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 131) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 132) | IFT_MODEM = 0x30 constant IFT_MPC (line 133) | IFT_MPC = 0x71 constant IFT_MPLS (line 134) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 135) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 136) | IFT_MSDSL = 0x8f constant IFT_MVL (line 137) | IFT_MVL = 0xbf constant IFT_MYRINET (line 138) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 139) | IFT_NFAS = 0xaf constant IFT_NSIP (line 140) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 141) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 142) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 143) | IFT_OTHER = 0x1 constant IFT_P10 (line 144) | IFT_P10 = 0xc constant IFT_P80 (line 145) | IFT_P80 = 0xd constant IFT_PARA (line 146) | IFT_PARA = 0x22 constant IFT_PFLOG (line 147) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 148) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 149) | IFT_PLC = 0xae constant IFT_POS (line 150) | IFT_POS = 0xab constant IFT_PPPMULTILINKBUNDLE (line 151) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 152) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 153) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 154) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 155) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 156) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 157) | IFT_PROPMUX = 0x36 constant IFT_PROPWIRELESSP2P (line 158) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 159) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 160) | IFT_PVC = 0xf1 constant IFT_QLLC (line 161) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 162) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 163) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 164) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 165) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 166) | IFT_RS232 = 0x21 constant IFT_RSRB (line 167) | IFT_RSRB = 0x4f constant IFT_SDLC (line 168) | IFT_SDLC = 0x11 constant IFT_SDSL (line 169) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 170) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 171) | IFT_SIP = 0x1f constant IFT_SLIP (line 172) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 173) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 174) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 175) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 176) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 177) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 178) | IFT_SONETVT = 0x33 constant IFT_SRP (line 179) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 180) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 181) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 182) | IFT_STARLAN = 0xb constant IFT_STF (line 183) | IFT_STF = 0xd7 constant IFT_T1 (line 184) | IFT_T1 = 0x12 constant IFT_TDLC (line 185) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 186) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 187) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 188) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 189) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 190) | IFT_ULTRA = 0x1d constant IFT_USB (line 191) | IFT_USB = 0xa0 constant IFT_V11 (line 192) | IFT_V11 = 0x40 constant IFT_V35 (line 193) | IFT_V35 = 0x2d constant IFT_V36 (line 194) | IFT_V36 = 0x41 constant IFT_V37 (line 195) | IFT_V37 = 0x78 constant IFT_VDSL (line 196) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 197) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 198) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 199) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 200) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 201) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 202) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 203) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 204) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 205) | IFT_X213 = 0x5d constant IFT_X25 (line 206) | IFT_X25 = 0x5 constant IFT_X25DDN (line 207) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 208) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 209) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 210) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 211) | IFT_XETHER = 0x1a constant IPPROTO_MAXID (line 212) | IPPROTO_MAXID = 0x34 constant IPV6_FAITH (line 213) | IPV6_FAITH = 0x1d constant IPV6_MIN_MEMBERSHIPS (line 214) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IP_FAITH (line 215) | IP_FAITH = 0x16 constant IP_MAX_SOURCE_FILTER (line 216) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MIN_MEMBERSHIPS (line 217) | IP_MIN_MEMBERSHIPS = 0x1f constant MAP_NORESERVE (line 218) | MAP_NORESERVE = 0x40 constant MAP_RENAME (line 219) | MAP_RENAME = 0x20 constant NET_RT_MAXID (line 220) | NET_RT_MAXID = 0x6 constant RTF_PRCLONING (line 221) | RTF_PRCLONING = 0x10000 constant RTM_OLDADD (line 222) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 223) | RTM_OLDDEL = 0xa constant RT_CACHING_CONTEXT (line 224) | RT_CACHING_CONTEXT = 0x1 constant RT_NORTREF (line 225) | RT_NORTREF = 0x2 constant SIOCADDRT (line 226) | SIOCADDRT = 0x8040720a constant SIOCALIFADDR (line 227) | SIOCALIFADDR = 0x8118691b constant SIOCDELRT (line 228) | SIOCDELRT = 0x8040720b constant SIOCDLIFADDR (line 229) | SIOCDLIFADDR = 0x8118691d constant SIOCGLIFADDR (line 230) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 231) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCSLIFPHYADDR (line 232) | 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/errors_freebsd_arm64.go constant DLT_HHDLC (line 11) | DLT_HHDLC = 0x79 constant IPV6_MIN_MEMBERSHIPS (line 12) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IP_MAX_SOURCE_FILTER (line 13) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MIN_MEMBERSHIPS (line 14) | IP_MIN_MEMBERSHIPS = 0x1f constant RT_CACHING_CONTEXT (line 15) | RT_CACHING_CONTEXT = 0x1 constant RT_NORTREF (line 16) | RT_NORTREF = 0x2 FILE: vendor/golang.org/x/sys/unix/fcntl.go function fcntl (line 16) | func fcntl(fd int, cmd, arg int) (int, error) { function FcntlInt (line 26) | func FcntlInt(fd uintptr, cmd, arg int) (int, error) { function FcntlFlock (line 31) | 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 { function FcntlFstore (line 21) | func FcntlFstore(fd uintptr, cmd int, fstore *Fstore_t) error { FILE: vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go function init (line 10) | func init() { FILE: vendor/golang.org/x/sys/unix/fdset.go method Set (line 11) | func (fds *FdSet) Set(fd int) { method Clear (line 16) | func (fds *FdSet) Clear(fd int) { method IsSet (line 21) | func (fds *FdSet) IsSet(fd int) bool { method Zero (line 26) | func (fds *FdSet) Zero() { FILE: vendor/golang.org/x/sys/unix/fstatfs_zos.go function Fstatfs (line 16) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function tryGetmntent64 (line 61) | func tryGetmntent64(stat *Statfs_t) (err error) { function tryGetmntent128 (line 82) | func tryGetmntent128(stat *Statfs_t) (err error) { function tryGetmntent256 (line 103) | func tryGetmntent256(stat *Statfs_t) (err error) { function tryGetmntent512 (line 124) | func tryGetmntent512(stat *Statfs_t) (err error) { function tryGetmntent1024 (line 145) | func tryGetmntent1024(stat *Statfs_t) (err error) { FILE: vendor/golang.org/x/sys/unix/gccgo.go function realSyscallNoError (line 15) | func realSyscallNoError(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr... function realSyscall (line 17) | func realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, e... function SyscallNoError (line 19) | func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) { function Syscall (line 26) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errn... function Syscall6 (line 33) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function Syscall9 (line 40) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function RawSyscallNoError (line 47) | func RawSyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) { function RawSyscall (line 52) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 57) | 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 { type ret (line 24) | struct ret function gccgoRealSyscall (line 27) | struct ret function gccgoRealSyscallNoError (line 41) | uintptr_t FILE: vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go function realGettimeofday (line 13) | func realGettimeofday(*Timeval, *byte) int32 function gettimeofday (line 15) | func gettimeofday(tv *Timeval) (err syscall.Errno) { FILE: vendor/golang.org/x/sys/unix/ioctl.go function IoctlSetInt (line 20) | func IoctlSetInt(fd int, req uint, value int) error { function IoctlSetPointerInt (line 28) | func IoctlSetPointerInt(fd int, req uint, value int) error { function IoctlSetWinsize (line 36) | func IoctlSetWinsize(fd int, req uint, value *Winsize) error { function IoctlSetTermios (line 47) | func IoctlSetTermios(fd int, req uint, value *Termios) error { function IoctlGetInt (line 59) | func IoctlGetInt(fd int, req uint) (int, error) { function IoctlGetWinsize (line 65) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { function IoctlGetTermios (line 71) | func IoctlGetTermios(fd int, req uint) (*Termios, error) { FILE: vendor/golang.org/x/sys/unix/ioctl_linux.go function IoctlRetInt (line 15) | func IoctlRetInt(fd int, req uint) (int, error) { function IoctlGetUint32 (line 23) | func IoctlGetUint32(fd int, req uint) (uint32, error) { function IoctlGetRTCTime (line 29) | func IoctlGetRTCTime(fd int) (*RTCTime, error) { function IoctlSetRTCTime (line 35) | func IoctlSetRTCTime(fd int, value *RTCTime) error { function IoctlGetRTCWkAlrm (line 41) | func IoctlGetRTCWkAlrm(fd int) (*RTCWkAlrm, error) { function IoctlSetRTCWkAlrm (line 47) | func IoctlSetRTCWkAlrm(fd int, value *RTCWkAlrm) error { type ifreqEthtool (line 53) | type ifreqEthtool struct function IoctlGetEthtoolDrvinfo (line 60) | func IoctlGetEthtoolDrvinfo(fd int, ifname string) (*EthtoolDrvinfo, err... function IoctlGetWatchdogInfo (line 81) | func IoctlGetWatchdogInfo(fd int) (*WatchdogInfo, error) { function IoctlWatchdogKeepalive (line 90) | func IoctlWatchdogKeepalive(fd int) error { function IoctlFileCloneRange (line 97) | func IoctlFileCloneRange(destFd int, value *FileCloneRange) error { function IoctlFileClone (line 106) | func IoctlFileClone(destFd, srcFd int) error { type FileDedupeRange (line 110) | type FileDedupeRange struct type FileDedupeRangeInfo (line 118) | type FileDedupeRangeInfo struct function IoctlFileDedupeRange (line 130) | func IoctlFileDedupeRange(srcFd int, value *FileDedupeRange) error { function IoctlHIDGetDesc (line 168) | func IoctlHIDGetDesc(fd int, value *HIDRawReportDescriptor) error { function IoctlHIDGetRawInfo (line 174) | func IoctlHIDGetRawInfo(fd int) (*HIDRawDevInfo, error) { function IoctlHIDGetRawName (line 180) | func IoctlHIDGetRawName(fd int) (string, error) { function IoctlHIDGetRawPhys (line 186) | func IoctlHIDGetRawPhys(fd int) (string, error) { function IoctlHIDGetRawUniq (line 192) | func IoctlHIDGetRawUniq(fd int) (string, error) { FILE: vendor/golang.org/x/sys/unix/ioctl_zos.go function IoctlSetInt (line 20) | func IoctlSetInt(fd int, req uint, value int) error { function IoctlSetWinsize (line 27) | func IoctlSetWinsize(fd int, req uint, value *Winsize) error { function IoctlSetTermios (line 38) | func IoctlSetTermios(fd int, req uint, value *Termios) error { function IoctlGetInt (line 52) | func IoctlGetInt(fd int, req uint) (int, error) { function IoctlGetWinsize (line 58) | func IoctlGetWinsize(fd int, req uint) (*Winsize, error) { function IoctlGetTermios (line 67) | func IoctlGetTermios(fd int, req uint) (*Termios, error) { FILE: vendor/golang.org/x/sys/unix/pagesize_unix.go function Getpagesize (line 14) | 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/ptrace_darwin.go function ptrace (line 10) | func ptrace(request int, pid int, addr uintptr, data uintptr) error { FILE: vendor/golang.org/x/sys/unix/ptrace_ios.go function ptrace (line 10) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { FILE: vendor/golang.org/x/sys/unix/race.go constant raceenabled (line 15) | raceenabled = true function raceAcquire (line 17) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 21) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 25) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 29) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/unix/race0.go constant raceenabled (line 14) | raceenabled = false function raceAcquire (line 16) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 19) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 22) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 25) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/unix/readdirent_getdents.go function ReadDirent (line 11) | func ReadDirent(fd int, buf []byte) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/readdirent_getdirentries.go function ReadDirent (line 13) | func ReadDirent(fd int, buf []byte) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go function cmsgAlignOf (line 8) | func cmsgAlignOf(salen int) int { FILE: vendor/golang.org/x/sys/unix/sockcmsg_linux.go function UnixCredentials (line 14) | func UnixCredentials(ucred *Ucred) []byte { function ParseUnixCredentials (line 27) | func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_unix.go function CmsgLen (line 18) | func CmsgLen(datalen int) int { function CmsgSpace (line 24) | func CmsgSpace(datalen int) int { method data (line 28) | func (h *Cmsghdr) data(offset uintptr) unsafe.Pointer { type SocketControlMessage (line 33) | type SocketControlMessage struct function ParseSocketControlMessage (line 40) | func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) { function socketControlMessageHeaderAndData (line 55) | func socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, erro... function UnixRights (line 65) | func UnixRights(fds ...int) []byte { function ParseUnixRights (line 80) | func ParseUnixRights(m *SocketControlMessage) ([]int, error) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go function cmsgAlignOf (line 15) | func cmsgAlignOf(salen int) int { FILE: vendor/golang.org/x/sys/unix/str.go function itoa (line 10) | func itoa(val int) string { // do it here rather than with fmt to avoid ... function uitoa (line 17) | func uitoa(val uint) string { FILE: vendor/golang.org/x/sys/unix/syscall.go function ByteSliceFromString (line 39) | func ByteSliceFromString(s string) ([]byte, error) { function BytePtrFromString (line 51) | func BytePtrFromString(s string) (*byte, error) { function ByteSliceToString (line 61) | func ByteSliceToString(s []byte) string { function BytePtrToString (line 71) | func BytePtrToString(p *byte) string { FILE: vendor/golang.org/x/sys/unix/syscall_aix.go function Access (line 23) | func Access(path string, mode uint32) (err error) { function Chmod (line 27) | func Chmod(path string, mode uint32) (err error) { function Chown (line 31) | func Chown(path string, uid int, gid int) (err error) { function Creat (line 35) | func Creat(path string, mode uint32) (fd int, err error) { function Utimes (line 40) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 48) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 55) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { method sockaddr (line 65) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 79) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 94) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { function Getsockname (line 121) | func Getsockname(fd int) (sa Sockaddr, err error) { constant ImplementsGetwd (line 132) | ImplementsGetwd = true function Getwd (line 134) | func Getwd() (ret string, err error) { function Getcwd (line 151) | func Getcwd(buf []byte) (n int, err error) { function Getgroups (line 163) | func Getgroups() (gids []int, err error) { function Setgroups (line 189) | func Setgroups(gids []int) (err error) { function Accept (line 207) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Recvmsg (line 222) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 228) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 233) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function anyToSockaddr (line 238) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function Gettimeofday (line 283) | func Gettimeofday(tv *Timeval) (err error) { function Sendfile (line 288) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function sendfile (line 296) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function direntIno (line 300) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 304) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 308) | func direntNamlen(buf []byte) (uint64, bool) { function Getdents (line 317) | func Getdents(fd int, buf []byte) (n int, err error) { function Wait4 (line 322) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... type WaitStatus (line 342) | type WaitStatus method Stopped (line 344) | func (w WaitStatus) Stopped() bool { return w&0x40 != 0 } method StopSignal (line 345) | func (w WaitStatus) StopSignal() Signal { method Exited (line 352) | func (w WaitStatus) Exited() bool { return w&0xFF == 0 } method ExitStatus (line 353) | func (w WaitStatus) ExitStatus() int { method Signaled (line 360) | func (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 } method Signal (line 361) | func (w WaitStatus) Signal() Signal { method Continued (line 368) | func (w WaitStatus) Continued() bool { return w&0x01000000 != 0 } method CoreDump (line 370) | func (w WaitStatus) CoreDump() bool { return w&0x80 == 0x80 } method TrapCause (line 372) | func (w WaitStatus) TrapCause() int { return -1 } function Mmap (line 502) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 506) | func Munmap(b []byte) (err error) { function Pipe (line 520) | func Pipe(p []int) (err error) { function Poll (line 533) | func Poll(fds []PollFd, timeout int) (n int, err error) { function Unmount (line 547) | 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 constant ImplementsGetwd (line 22) | ImplementsGetwd = true function Getwd (line 24) | func Getwd() (string, error) { function Getgroups (line 44) | func Getgroups() (gids []int, err error) { function Setgroups (line 70) | func Setgroups(gids []int) (err error) { type WaitStatus (line 88) | type WaitStatus method Exited (line 100) | func (w WaitStatus) Exited() bool { return w&mask == exited } method ExitStatus (line 102) | func (w WaitStatus) ExitStatus() int { method Signaled (line 109) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Signal (line 111) | func (w WaitStatus) Signal() syscall.Signal { method CoreDump (line 119) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method Stopped (line 121) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca... method Killed (line 123) | func (w WaitStatus) Killed() bool { return w&mask == killed && syscall... method Continued (line 125) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys... method StopSignal (line 127) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 134) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 91) | mask = 0x7F constant core (line 92) | core = 0x80 constant shift (line 93) | shift = 8 constant exited (line 95) | exited = 0 constant killed (line 96) | killed = 9 constant stopped (line 97) | stopped = 0x7F function Wait4 (line 138) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... method sockaddr (line 157) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 172) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 188) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 202) | func (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddr (line 219) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 284) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Getsockname (line 307) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptString (line 326) | func GetsockoptString(fd, level, opt int) (string, error) { function Recvmsg (line 340) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 376) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 381) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Kevent (line 421) | func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n in... function sysctlmib (line 433) | func sysctlmib(name string, args ...int) ([]_C_int, error) { function Sysctl (line 447) | func Sysctl(name string) (string, error) { function SysctlArgs (line 451) | func SysctlArgs(name string, args ...int) (string, error) { function SysctlUint32 (line 465) | func SysctlUint32(name string) (uint32, error) { function SysctlUint32Args (line 469) | func SysctlUint32Args(name string, args ...int) (uint32, error) { function SysctlUint64 (line 486) | func SysctlUint64(name string, args ...int) (uint64, error) { function SysctlRaw (line 503) | func SysctlRaw(name string, args ...int) ([]byte, error) { function SysctlClockinfo (line 529) | func SysctlClockinfo(name string) (*Clockinfo, error) { function SysctlTimeval (line 546) | func SysctlTimeval(name string) (*Timeval, error) { function Utimes (line 565) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 575) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 604) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function Futimes (line 620) | func Futimes(fd int, tv []Timeval) error { function Poll (line 632) | func Poll(fds []PollFd, timeout int) (n int, err error) { function Mmap (line 650) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 654) | func Munmap(b []byte) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go constant _SYS_GETDIRENTRIES64 (line 14) | _SYS_GETDIRENTRIES64 = 344 function Getdirentries (line 16) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go function fdopendir (line 19) | func fdopendir(fd int) (dir uintptr, err error) { function Getdirentries (line 32) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin.go type SockaddrDatalink (line 23) | type SockaddrDatalink struct type SockaddrCtl (line 36) | type SockaddrCtl struct method sockaddr (line 42) | func (sa *SockaddrCtl) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddrGOOS (line 51) | func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { constant SYS___SYSCTL (line 68) | SYS___SYSCTL = SYS_SYSCTL function nametomib (line 71) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 98) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 102) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 106) | func direntNamlen(buf []byte) (uint64, bool) { function PtraceAttach (line 110) | func PtraceAttach(pid int) (err error) { return ptrace(PT_ATTACH, pid, 0... function PtraceDetach (line 111) | func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0... type attrList (line 113) | type attrList struct function Pipe (line 125) | func Pipe(p []int) (err error) { function Getfsstat (line 136) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function xattrPointer (line 146) | func xattrPointer(dest []byte) *byte { function Getxattr (line 161) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function Lgetxattr (line 165) | func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) { function Fgetxattr (line 171) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) { function Setxattr (line 177) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Lsetxattr (line 207) | func Lsetxattr(link string, attr string, data []byte, flags int) (err er... function Fsetxattr (line 213) | func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) { function Removexattr (line 219) | func Removexattr(path string, attr string) (err error) { function Lremovexattr (line 226) | func Lremovexattr(link string, attr string) (err error) { function Fremovexattr (line 232) | func Fremovexattr(fd int, attr string) (err error) { function Listxattr (line 238) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 242) | func Llistxattr(link string, dest []byte) (sz int, err error) { function Flistxattr (line 248) | func Flistxattr(fd int, dest []byte) (sz int, err error) { function setattrlistTimes (line 252) | func setattrlistTimes(path string, times []Timespec, flags int) error { function utimensat (line 278) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) er... function Kill (line 291) | func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid,... function IoctlCtlInfo (line 295) | func IoctlCtlInfo(fd int, ctlInfo *CtlInfo) error { type IfreqMTU (line 302) | type IfreqMTU struct function IoctlGetIfreqMTU (line 309) | func IoctlGetIfreqMTU(fd int, ifname string) (*IfreqMTU, error) { function IoctlSetIfreqMTU (line 318) | func IoctlSetIfreqMTU(fd int, ifreq *IfreqMTU) error { function Uname (line 326) | func Uname(uname *Utsname) error { function Sendfile (line 372) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function GetsockoptIPMreqn (line 382) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function SetsockoptIPMreqn (line 389) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function GetsockoptXucred (line 395) | func GetsockoptXucred(fd, level, opt int) (*Xucred, error) { function SysctlKinfoProcSlice (line 402) | func SysctlKinfoProcSlice(name string) ([]KinfoProc, error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go function setTimespec (line 12) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 16) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 20) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 26) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 30) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 34) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 38) | func (cmsg *Cmsghdr) SetLen(length int) { function Syscall9 (line 42) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go function setTimespec (line 12) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 16) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 20) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 26) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 30) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 34) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 38) | func (cmsg *Cmsghdr) SetLen(length int) { function Syscall9 (line 42) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go function syscall_syscall (line 13) | func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) function syscall_syscall6 (line 14) | func syscall_syscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintpt... function syscall_syscall6X (line 15) | func syscall_syscall6X(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintp... function syscall_syscall9 (line 16) | func syscall_syscall9(fn, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r... function syscall_rawSyscall (line 17) | func syscall_rawSyscall(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) function syscall_rawSyscall6 (line 18) | func syscall_rawSyscall6(fn, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uin... function syscall_syscallPtr (line 19) | func syscall_syscallPtr(fn, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly.go constant _dragonflyABIChangeVersion (line 28) | _dragonflyABIChangeVersion = 500705 function supportsABI (line 30) | func supportsABI(ver uint32) bool { type SockaddrDatalink (line 36) | type SockaddrDatalink struct function anyToSockaddrGOOS (line 50) | func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function nametomib (line 55) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 82) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 86) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 94) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 100) | func Pipe(p []int) (err error) { function Pipe2 (line 110) | func Pipe2(p []int, flags int) (err error) { function Pread (line 122) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 127) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Accept4 (line 131) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) { function Getfsstat (line 151) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function setattrlistTimes (line 166) | func setattrlistTimes(path string, times []Timespec, flags int) error { function sysctlUname (line 175) | func sysctlUname(mib []_C_int, old *byte, oldlen *uintptr) error { function Uname (line 188) | func Uname(uname *Utsname) error { function Sendfile (line 238) | 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 15) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 19) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 23) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 29) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 33) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 37) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 41) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 45) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 57) | 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 39) | func supportsABI(ver uint32) bool { type SockaddrDatalink (line 45) | type SockaddrDatalink struct function anyToSockaddrGOOS (line 57) | func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function nametomib (line 62) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 89) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 93) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 97) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 101) | func Pipe(p []int) (err error) { function Pipe2 (line 107) | func Pipe2(p []int, flags int) error { function GetsockoptIPMreqn (line 118) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function SetsockoptIPMreqn (line 125) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function GetsockoptXucred (line 131) | func GetsockoptXucred(fd, level, opt int) (*Xucred, error) { function Accept4 (line 138) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) { function Getfsstat (line 158) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function setattrlistTimes (line 195) | func setattrlistTimes(path string, times []Timespec, flags int) error { function Uname (line 204) | func Uname(uname *Utsname) error { function Stat (line 250) | func Stat(path string, st *Stat_t) (err error) { function Lstat (line 264) | func Lstat(path string, st *Stat_t) (err error) { function Fstat (line 278) | func Fstat(fd int, st *Stat_t) (err error) { function Fstatat (line 292) | func Fstatat(fd int, path string, st *Stat_t, flags int) (err error) { function Statfs (line 306) | func Statfs(path string, st *Statfs_t) (err error) { function Fstatfs (line 320) | func Fstatfs(fd int, st *Statfs_t) (err error) { function Getdents (line 334) | func Getdents(fd int, buf []byte) (n int, err error) { function Getdirentries (line 338) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Mknod (line 368) | func Mknod(path string, mode uint32, dev uint64) (err error) { function Mknodat (line 377) | func Mknodat(fd int, path string, mode uint32, dev uint64) (err error) { function roundup (line 390) | func roundup(x, y int) int { method convertFrom (line 394) | func (s *Stat_t) convertFrom(old *stat_freebsd11_t) { method convertFrom (line 415) | func (s *Statfs_t) convertFrom(old *statfs_freebsd11_t) { function convertFromDirents11 (line 454) | func convertFromDirents11(buf []byte, old []byte) int { function Sendfile (line 497) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function PtraceAttach (line 506) | func PtraceAttach(pid int) (err error) { function PtraceCont (line 510) | func PtraceCont(pid int, signal int) (err error) { function PtraceDetach (line 514) | func PtraceDetach(pid int) (err error) { function PtraceGetFpRegs (line 518) | func PtraceGetFpRegs(pid int, fpregsout *FpReg) (err error) { function PtraceGetRegs (line 522) | func PtraceGetRegs(pid int, regsout *Reg) (err error) { function PtraceLwpEvents (line 526) | func PtraceLwpEvents(pid int, enable int) (err error) { function PtraceLwpInfo (line 530) | func PtraceLwpInfo(pid int, info uintptr) (err error) { function PtracePeekData (line 534) | func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekText (line 538) | func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err e... function PtracePokeData (line 542) | func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err ... function PtracePokeText (line 546) | func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err ... function PtraceSetRegs (line 550) | func PtraceSetRegs(pid int, regs *Reg) (err error) { function PtraceSingleStep (line 554) | func PtraceSingleStep(pid int) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go function setTimespec (line 15) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 19) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 23) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 29) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 33) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 37) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 41) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 45) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 57) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... function PtraceGetFsBase (line 59) | func PtraceGetFsBase(pid int, fsbase *int64) (err error) { function PtraceIO (line 63) | func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go function setTimespec (line 15) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 19) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 23) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 29) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 33) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 37) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 41) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 45) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 57) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... function PtraceGetFsBase (line 59) | func PtraceGetFsBase(pid int, fsbase *int64) (err error) { function PtraceIO (line 63) | func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go function setTimespec (line 15) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 19) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 23) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 29) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 33) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 37) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 41) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 45) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 57) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... function PtraceIO (line 59) | func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go function setTimespec (line 15) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 19) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 23) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 29) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 33) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 37) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 41) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 45) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 57) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... function PtraceIO (line 59) | func PtraceIO(req int, pid int, addr uintptr, out []byte, countin int) (... FILE: vendor/golang.org/x/sys/unix/syscall_illumos.go function bytes2iovec (line 18) | func bytes2iovec(bs [][]byte) []Iovec { function Readv (line 34) | func Readv(fd int, iovs [][]byte) (n int, err error) { function Preadv (line 42) | func Preadv(fd int, iovs [][]byte, off int64) (n int, err error) { function Writev (line 50) | func Writev(fd int, iovs [][]byte) (n int, err error) { function Pwritev (line 58) | func Pwritev(fd int, iovs [][]byte, off int64) (n int, err error) { function Accept4 (line 66) | func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) { function Putmsg (line 86) | func Putmsg(fd int, cl []byte, data []byte, flags int) (err error) { function Getmsg (line 105) | func Getmsg(fd int, cl []byte, data []byte) (retCl []byte, retData []byt... function IoctlSetIntRetInt (line 133) | func IoctlSetIntRetInt(fd int, req uint, arg int) (int, error) { function IoctlSetString (line 137) | func IoctlSetString(fd int, req uint, val string) error { method SetName (line 147) | func (l *Lifreq) SetName(name string) error { method SetLifruInt (line 157) | func (l *Lifreq) SetLifruInt(d int) { method GetLifruInt (line 161) | func (l *Lifreq) GetLifruInt() int { function IoctlLifreq (line 165) | func IoctlLifreq(fd int, req uint, l *Lifreq) error { method SetInt (line 171) | func (s *Strioctl) SetInt(i int) { function IoctlSetStrioctlRetInt (line 176) | func IoctlSetStrioctlRetInt(fd int, req uint, s *Strioctl) (int, error) { 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 Link (line 77) | func Link(oldpath string, newpath string) (err error) { function Mkdir (line 81) | func Mkdir(path string, mode uint32) (err error) { function Mknod (line 85) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 89) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 95) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function Openat2 (line 101) | func Openat2(dirfd int, path string, how *OpenHow) (fd int, err error) { function Ppoll (line 107) | func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, e... function Readlink (line 116) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 120) | func Rename(oldpath string, newpath string) (err error) { function Rmdir (line 124) | func Rmdir(path string) error { function Symlink (line 130) | func Symlink(oldpath string, newpath string) (err error) { function Unlink (line 134) | func Unlink(path string) error { function Utimes (line 140) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 163) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 187) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function Futimesat (line 197) | func Futimesat(dirfd int, path string, tv []Timeval) error { function Futimes (line 207) | func Futimes(fd int, tv []Timeval) (err error) { constant ImplementsGetwd (line 213) | ImplementsGetwd = true function Getwd (line 217) | func Getwd() (wd string, err error) { function Getgroups (line 230) | func Getgroups() (gids []int, err error) { function Setgroups (line 256) | func Setgroups(gids []int) (err error) { type WaitStatus (line 268) | type WaitStatus method Exited (line 287) | func (w WaitStatus) Exited() bool { return w&mask == exited } method Signaled (line 289) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Stopped (line 291) | func (w WaitStatus) Stopped() bool { return w&0xFF == stopped } method Continued (line 293) | func (w WaitStatus) Continued() bool { return w == 0xFFFF } method CoreDump (line 295) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method ExitStatus (line 297) | func (w WaitStatus) ExitStatus() int { method Signal (line 304) | func (w WaitStatus) Signal() syscall.Signal { method StopSignal (line 311) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 318) | func (w WaitStatus) TrapCause() int { constant mask (line 280) | mask = 0x7F constant core (line 281) | core = 0x80 constant exited (line 282) | exited = 0x00 constant stopped (line 283) | stopped = 0x7F constant shift (line 284) | shift = 8 function Wait4 (line 327) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... function Mkfifo (line 336) | func Mkfifo(path string, mode uint32) error { function Mkfifoat (line 340) | func Mkfifoat(dirfd int, path string, mode uint32) error { method sockaddr (line 344) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 358) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 373) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrLinklayer (line 398) | type SockaddrLinklayer struct method sockaddr (line 408) | func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, err... type SockaddrNetlink (line 425) | type SockaddrNetlink struct method sockaddr (line 433) | func (sa *SockaddrNetlink) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrHCI (line 443) | type SockaddrHCI struct method sockaddr (line 449) | func (sa *SockaddrHCI) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrL2 (line 458) | type SockaddrL2 struct method sockaddr (line 466) | func (sa *SockaddrL2) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrRFCOMM (line 504) | type SockaddrRFCOMM struct method sockaddr (line 515) | func (sa *SockaddrRFCOMM) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrCAN (line 539) | type SockaddrCAN struct method sockaddr (line 546) | func (sa *SockaddrCAN) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrCANJ1939 (line 567) | type SockaddrCANJ1939 struct method sockaddr (line 575) | func (sa *SockaddrCANJ1939) sockaddr() (unsafe.Pointer, _Socklen, erro... type SockaddrALG (line 656) | type SockaddrALG struct method sockaddr (line 664) | func (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrVM (line 696) | type SockaddrVM struct method sockaddr (line 708) | func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrXDP (line 717) | type SockaddrXDP struct method sockaddr (line 725) | func (sa *SockaddrXDP) sockaddr() (unsafe.Pointer, _Socklen, error) { constant px_proto_oe (line 742) | px_proto_oe = 0 type SockaddrPPPoE (line 744) | type SockaddrPPPoE struct method sockaddr (line 751) | func (sa *SockaddrPPPoE) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrTIPC (line 782) | type SockaddrTIPC struct method sockaddr (line 831) | func (sa *SockaddrTIPC) sockaddr() (unsafe.Pointer, _Socklen, error) { type TIPCAddr (line 802) | type TIPCAddr interface method tipcAddr (line 807) | func (sa *TIPCSocketAddr) tipcAddr() [12]byte { method tipcAddrtype (line 813) | func (sa *TIPCSocketAddr) tipcAddrtype() uint8 { return TIPC_SOCKET_ADDR } method tipcAddr (line 815) | func (sa *TIPCServiceRange) tipcAddr() [12]byte { method tipcAddrtype (line 821) | func (sa *TIPCServiceRange) tipcAddrtype() uint8 { return TIPC_SERVICE_R... method tipcAddr (line 823) | func (sa *TIPCServiceName) tipcAddr() [12]byte { method tipcAddrtype (line 829) | func (sa *TIPCServiceName) tipcAddrtype() uint8 { return TIPC_SERVICE_AD... type SockaddrL2TPIP (line 845) | type SockaddrL2TPIP struct method sockaddr (line 851) | func (sa *SockaddrL2TPIP) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrL2TPIP6 (line 861) | type SockaddrL2TPIP6 struct method sockaddr (line 868) | func (sa *SockaddrL2TPIP6) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrIUCV (line 879) | type SockaddrIUCV struct method sockaddr (line 885) | func (sa *SockaddrIUCV) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrNFC (line 907) | type SockaddrNFC struct method sockaddr (line 914) | func (sa *SockaddrNFC) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrNFCLLCP (line 922) | type SockaddrNFCLLCP struct method sockaddr (line 932) | func (sa *SockaddrNFCLLCP) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddr (line 951) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 1222) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Accept4 (line 1241) | func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) { function Getsockname (line 1259) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptIPMreqn (line 1268) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function GetsockoptUcred (line 1275) | func GetsockoptUcred(fd, level, opt int) (*Ucred, error) { function GetsockoptTCPInfo (line 1282) | func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) { function GetsockoptString (line 1291) | func GetsockoptString(fd, level, opt int) (string, error) { function GetsockoptTpacketStats (line 1307) | func GetsockoptTpacketStats(fd, level, opt int) (*TpacketStats, error) { function GetsockoptTpacketStatsV3 (line 1314) | func GetsockoptTpacketStatsV3(fd, level, opt int) (*TpacketStatsV3, erro... function SetsockoptIPMreqn (line 1321) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function SetsockoptPacketMreq (line 1325) | func SetsockoptPacketMreq(fd, level, opt int, mreq *PacketMreq) error { function SetsockoptSockFprog (line 1331) | func SetsockoptSockFprog(fd, level, opt int, fprog *SockFprog) error { function SetsockoptCanRawFilter (line 1335) | func SetsockoptCanRawFilter(fd, level, opt int, filter []CanFilter) error { function SetsockoptTpacketReq (line 1343) | func SetsockoptTpacketReq(fd, level, opt int, tp *TpacketReq) error { function SetsockoptTpacketReq3 (line 1347) | func SetsockoptTpacketReq3(fd, level, opt int, tp *TpacketReq3) error { function KeyctlString (line 1367) | func KeyctlString(cmd int, id int) (string, error) { function KeyctlGetKeyringID (line 1396) | func KeyctlGetKeyringID(id int, create bool) (ringid int, err error) { function KeyctlSetperm (line 1409) | func KeyctlSetperm(id int, perm uint32) error { function KeyctlJoinSessionKeyring (line 1419) | func KeyctlJoinSessionKeyring(name string) (ringid int, err error) { function KeyctlSearch (line 1428) | func KeyctlSearch(ringid int, keyType, description string, destRingid in... function KeyctlInstantiateIOV (line 1439) | func KeyctlInstantiateIOV(id int, payload []Iovec, ringid int) error { function KeyctlDHCompute (line 1454) | func KeyctlDHCompute(params *KeyctlDHParams, buffer []byte) (size int, e... function KeyctlRestrictKeyring (line 1476) | func KeyctlRestrictKeyring(ringid int, keyType string, restriction strin... function Recvmsg (line 1486) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 1527) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 1532) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function BindToDevice (line 1579) | func BindToDevice(fd int, device string) (err error) { function ptracePeek (line 1585) | func ptracePeek(req int, pid int, addr uintptr, out []byte) (count int, ... function PtracePeekText (line 1625) | func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekData (line 1629) | func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekUser (line 1633) | func PtracePeekUser(pid int, addr uintptr, out []byte) (count int, err e... function ptracePoke (line 1637) | func ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []... function PtracePokeText (line 1688) | func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err ... function PtracePokeData (line 1692) | func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err ... function PtracePokeUser (line 1696) | func PtracePokeUser(pid int, addr uintptr, data []byte) (count int, err ... function PtraceGetRegs (line 1700) | func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) { function PtraceSetRegs (line 1704) | func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) { function PtraceSetOptions (line 1708) | func PtraceSetOptions(pid int, options int) (err error) { function PtraceGetEventMsg (line 1712) | func PtraceGetEventMsg(pid int) (msg uint, err error) { function PtraceCont (line 1719) | func PtraceCont(pid int, signal int) (err error) { function PtraceSyscall (line 1723) | func PtraceSyscall(pid int, signal int) (err error) { function PtraceSingleStep (line 1727) | func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLE... function PtraceInterrupt (line 1729) | func PtraceInterrupt(pid int) (err error) { return ptrace(PTRACE_INTERRU... function PtraceAttach (line 1731) | func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pi... function PtraceSeize (line 1733) | func PtraceSeize(pid int) (err error) { return ptrace(PTRACE_SEIZE, pid,... function PtraceDetach (line 1735) | func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pi... function Reboot (line 1739) | func Reboot(cmd int) (err error) { function direntIno (line 1743) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 1747) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 1751) | func direntNamlen(buf []byte) (uint64, bool) { function Mount (line 1761) | func Mount(source string, target string, fstype string, flags uintptr, d... function Sendfile (line 1774) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function Dup2 (line 1804) | func Dup2(oldfd, newfd int) error { function Getpgrp (line 1832) | func Getpgrp() (pid int) { function PrctlRetInt (line 1879) | func PrctlRetInt(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, a... function Setuid (line 1892) | func Setuid(uid int) (err error) { function Setgid (line 1896) | func Setgid(uid int) (err error) { function SetfsgidRetGid (line 1903) | func SetfsgidRetGid(gid int) (int, error) { function SetfsuidRetUid (line 1910) | func SetfsuidRetUid(uid int) (int, error) { function Setfsgid (line 1914) | func Setfsgid(gid int) error { function Setfsuid (line 1919) | func Setfsuid(uid int) error { function Signalfd (line 1924) | func Signalfd(fd int, sigmask *Sigset_t, flags int) (newfd int, err erro... function bytes2iovec (line 1956) | func bytes2iovec(bs [][]byte) []Iovec { function offs2lohi (line 1973) | func offs2lohi(offs int64) (lo, hi uintptr) { function Readv (line 1977) | func Readv(fd int, iovs [][]byte) (n int, err error) { function Preadv (line 1984) | func Preadv(fd int, iovs [][]byte, offset int64) (n int, err error) { function Preadv2 (line 1992) | func Preadv2(fd int, iovs [][]byte, offset int64, flags int) (n int, err... function readvRacedetect (line 2000) | func readvRacedetect(iovecs []Iovec, n int, err error) { function Writev (line 2019) | func Writev(fd int, iovs [][]byte) (n int, err error) { function Pwritev (line 2029) | func Pwritev(fd int, iovs [][]byte, offset int64) (n int, err error) { function Pwritev2 (line 2040) | func Pwritev2(fd int, iovs [][]byte, offset int64, flags int) (n int, er... function writevRacedetect (line 2051) | func writevRacedetect(iovecs []Iovec, n int) { function Mmap (line 2076) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 2080) | func Munmap(b []byte) (err error) { function Vmsplice (line 2094) | func Vmsplice(fd int, iovs []Iovec, flags int) (int, error) { function isGroupMember (line 2108) | func isGroupMember(gid int) bool { function Faccessat (line 2125) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... type fileHandle (line 2206) | type fileHandle struct type FileHandle (line 2214) | type FileHandle struct method Size (line 2229) | func (fh *FileHandle) Size() int { return int(fh.fileHandle.Bytes) } method Type (line 2230) | func (fh *FileHandle) Type() int32 { return fh.fileHandle.Type } method Bytes (line 2231) | func (fh *FileHandle) Bytes() []byte { function NewFileHandle (line 2219) | func NewFileHandle(handleType int32, handle []byte) FileHandle { function NameToHandleAt (line 2241) | func NameToHandleAt(dirfd int, path string, flags int) (handle FileHandl... function OpenByHandleAt (line 2270) | func OpenByHandleAt(mountFD int, handle FileHandle, flags int) (fd int, ... function Klogset (line 2276) | func Klogset(typ int, arg int) (err error) { type RemoteIovec (line 2289) | type RemoteIovec struct FILE: vendor/golang.org/x/sys/unix/syscall_linux_386.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 37) | func Pipe2(p []int, flags int) (err error) { function mmap (line 89) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... type rlimit32 (line 97) | type rlimit32 struct constant rlimInf32 (line 104) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 105) | rlimInf64 = ^uint64(0) function Getrlimit (line 107) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 135) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Seek (line 160) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { constant _SOCKET (line 183) | _SOCKET = 1 constant _BIND (line 184) | _BIND = 2 constant _CONNECT (line 185) | _CONNECT = 3 constant _LISTEN (line 186) | _LISTEN = 4 constant _ACCEPT (line 187) | _ACCEPT = 5 constant _GETSOCKNAME (line 188) | _GETSOCKNAME = 6 constant _GETPEERNAME (line 189) | _GETPEERNAME = 7 constant _SOCKETPAIR (line 190) | _SOCKETPAIR = 8 constant _SEND (line 191) | _SEND = 9 constant _RECV (line 192) | _RECV = 10 constant _SENDTO (line 193) | _SENDTO = 11 constant _RECVFROM (line 194) | _RECVFROM = 12 constant _SHUTDOWN (line 195) | _SHUTDOWN = 13 constant _SETSOCKOPT (line 196) | _SETSOCKOPT = 14 constant _GETSOCKOPT (line 197) | _GETSOCKOPT = 15 constant _SENDMSG (line 198) | _SENDMSG = 16 constant _RECVMSG (line 199) | _RECVMSG = 17 constant _ACCEPT4 (line 200) | _ACCEPT4 = 18 constant _RECVMMSG (line 201) | _RECVMMSG = 19 constant _SENDMMSG (line 202) | _SENDMMSG = 20 function accept (line 205) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 213) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function getsockname (line 221) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err... function getpeername (line 229) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err... function socketpair (line 237) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { function bind (line 245) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 253) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 261) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 269) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 277) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 285) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ... function sendto (line 297) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock... function recvmsg (line 309) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 317) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function Listen (line 325) | func Listen(s int, n int) (err error) { function Shutdown (line 333) | func Shutdown(s, how int) (err error) { function Fstatfs (line 341) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 349) | func Statfs(path string, buf *Statfs_t) (err error) { method PC (line 361) | func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) } method SetPC (line 363) | func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) } method SetLen (line 365) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 369) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 373) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 377) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 381) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function Poll (line 387) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go function InotifyInit (line 26) | func InotifyInit() (fd int, err error) { function Lstat (line 40) | func Lstat(path string, stat *Stat_t) (err error) { function Select (line 50) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Stat (line 69) | func Stat(path string, stat *Stat_t) (err error) { function Gettimeofday (line 98) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 106) | func Time(t *Time_t) (tt Time_t, err error) { function setTimespec (line 121) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 125) | func setTimeval(sec, usec int64) Timeval { function Pipe (line 131) | func Pipe(p []int) (err error) { function Pipe2 (line 144) | func Pipe2(p []int, flags int) (err error) { method PC (line 155) | func (r *PtraceRegs) PC() uint64 { return r.Rip } method SetPC (line 157) | func (r *PtraceRegs) SetPC(pc uint64) { r.Rip = pc } method SetLen (line 159) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 163) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 167) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 171) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 175) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function Poll (line 181) | func Poll(fds []PollFd, timeout int) (n int, err error) { function KexecFileLoad (line 190) | 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 52) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Time (line 111) | func Time(t *Time_t) (Time_t, error) { function Utime (line 123) | func Utime(path string, buf *Utimbuf) error { function Fadvise (line 138) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fstatfs (line 148) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 156) | func Statfs(path string, buf *Statfs_t) (err error) { function mmap (line 168) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... type rlimit32 (line 176) | type rlimit32 struct constant rlimInf32 (line 183) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 184) | rlimInf64 = ^uint64(0) function Getrlimit (line 186) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 214) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 239) | func (r *PtraceRegs) PC() uint64 { return uint64(r.Uregs[15]) } method SetPC (line 241) | func (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) } method SetLen (line 243) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 247) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 251) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 255) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 259) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(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 12) | func EpollCreate(size int) (fd int, err error) { function Select (line 37) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Stat (line 56) | func Stat(path string, stat *Stat_t) (err error) { function Lchown (line 60) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 64) | func Lstat(path string, stat *Stat_t) (err error) { function Ustat (line 72) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function setTimespec (line 96) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 100) | func setTimeval(sec, usec int64) Timeval { function futimesat (line 104) | func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) { function Time (line 116) | func Time(t *Time_t) (Time_t, error) { function Utime (line 128) | func Utime(path string, buf *Utimbuf) error { function utimes (line 136) | func utimes(path string, tv *[2]Timeval) (err error) { function Pipe (line 148) | func Pipe(p []int) (err error) { function Pipe2 (line 161) | func Pipe2(p []int, flags int) (err error) { function Getrlimit (line 173) | func Getrlimit(resource int, rlim *Rlimit) error { function Setrlimit (line 182) | func Setrlimit(resource int, rlim *Rlimit) error { method PC (line 190) | func (r *PtraceRegs) PC() uint64 { return r.Pc } method SetPC (line 192) | func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc } method SetLen (line 194) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 198) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 202) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 206) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 210) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function InotifyInit (line 214) | func InotifyInit() (fd int, err error) { function dup2 (line 220) | func dup2(oldfd int, newfd int) error function Pause (line 222) | func Pause() error { function Poll (line 227) | func Poll(fds []PollFd, timeout int) (n int, err error) { function KexecFileLoad (line 241) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int... FILE: vendor/golang.org/x/sys/unix/syscall_linux_gc.go function SyscallNoError (line 11) | func SyscallNoError(trap, a1, a2, a3 uintptr) (r1, r2 uintptr) function RawSyscallNoError (line 15) | 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 14) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal... function socketcall (line 16) | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err sy... function rawsocketcall (line 17) | func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err... FILE: vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go function seek (line 14) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal... FILE: vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go function seek (line 15) | func seek(fd int, offset int64, whence int) (int64, syscall.Errno) { function socketcall (line 23) | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (int, syscall.... function rawsocketcall (line 28) | 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 15) | 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 31) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Time (line 74) | func Time(t *Time_t) (tt Time_t, err error) { function setTimespec (line 89) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 93) | func setTimeval(sec, usec int64) Timeval { function Pipe (line 97) | func Pipe(p []int) (err error) { function Pipe2 (line 110) | func Pipe2(p []int, flags int) (err error) { function Ioperm (line 121) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 125) | func Iopl(level int) (err error) { type stat_t (line 129) | type stat_t struct function Fstat (line 156) | func Fstat(fd int, s *Stat_t) (err error) { function Fstatat (line 163) | func Fstatat(dirfd int, path string, s *Stat_t, flags int) (err error) { function Lstat (line 170) | func Lstat(path string, s *Stat_t) (err error) { function Stat (line 177) | func Stat(path string, s *Stat_t) (err error) { function fillStat_t (line 184) | func fillStat_t(s *Stat_t, st *stat_t) { method PC (line 200) | func (r *PtraceRegs) PC() uint64 { return r.Epc } method SetPC (line 202) | func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc } method SetLen (line 204) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 208) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 212) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 216) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 220) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function InotifyInit (line 224) | func InotifyInit() (fd int, err error) { function Poll (line 230) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go function Syscall9 (line 16) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function Fstatfs (line 80) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 88) | func Statfs(path string, buf *Statfs_t) (err error) { function Seek (line 100) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function setTimespec (line 108) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 112) | func setTimeval(sec, usec int64) Timeval { function Pipe2 (line 118) | func Pipe2(p []int, flags int) (err error) { function Pipe (line 131) | func Pipe(p []int) (err error) { function mmap (line 141) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... constant rlimInf32 (line 149) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 150) | rlimInf64 = ^uint64(0) type rlimit32 (line 152) | type rlimit32 struct function Getrlimit (line 159) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 187) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 212) | func (r *PtraceRegs) PC() uint64 { return r.Epc } method SetPC (line 214) | func (r *PtraceRegs) SetPC(pc uint64) { r.Epc = pc } method SetLen (line 216) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 220) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 224) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 228) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 232) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function Poll (line 238) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_ppc.go function Fadvise (line 73) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function seek (line 81) | func seek(fd int, offset int64, whence int) (int64, syscall.Errno) { function Seek (line 89) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Fstatfs (line 97) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 105) | func Statfs(path string, buf *Statfs_t) (err error) { function mmap (line 119) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function setTimespec (line 127) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 131) | func setTimeval(sec, usec int64) Timeval { type rlimit32 (line 135) | type rlimit32 struct constant rlimInf32 (line 142) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 143) | rlimInf64 = ^uint64(0) function Getrlimit (line 145) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 173) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 198) | func (r *PtraceRegs) PC() uint32 { return r.Nip } method SetPC (line 200) | func (r *PtraceRegs) SetPC(pc uint32) { r.Nip = pc } method SetLen (line 202) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 206) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 210) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 214) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 218) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function Pipe (line 224) | func Pipe(p []int) (err error) { function Pipe2 (line 237) | func Pipe2(p []int, flags int) (err error) { function Poll (line 250) | func Poll(fds []PollFd, timeout int) (n int, err error) { function SyncFileRange (line 259) | func SyncFileRange(fd int, off int64, n int64, flags int) error { function KexecFileLoad (line 267) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int... FILE: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go function setTimespec (line 75) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 79) | func setTimeval(sec, usec int64) Timeval { method PC (line 83) | func (r *PtraceRegs) PC() uint64 { return r.Nip } method SetPC (line 85) | func (r *PtraceRegs) SetPC(pc uint64) { r.Nip = pc } method SetLen (line 87) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 91) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 95) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 99) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 103) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function Pipe (line 109) | func Pipe(p []int) (err error) { function Pipe2 (line 122) | func Pipe2(p []int, flags int) (err error) { function Poll (line 135) | func Poll(fds []PollFd, timeout int) (n int, err error) { function SyncFileRange (line 144) | func SyncFileRange(fd int, off int64, n int64, flags int) error { function KexecFileLoad (line 152) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int... FILE: vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go function EpollCreate (line 12) | 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) { method SetServiceNameLen (line 191) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function InotifyInit (line 195) | func InotifyInit() (fd 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 Renameat (line 216) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function KexecFileLoad (line 222) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int... function dup2 (line 235) | func dup2(oldfd int, newfd int) error FILE: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go function Time (line 57) | func Time(t *Time_t) (tt Time_t, err error) { function setTimespec (line 72) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 76) | func setTimeval(sec, usec int64) Timeval { function Pipe (line 82) | func Pipe(p []int) (err error) { function Pipe2 (line 93) | func Pipe2(p []int, flags int) (err error) { function Ioperm (line 104) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 108) | func Iopl(level int) (err error) { method PC (line 112) | func (r *PtraceRegs) PC() uint64 { return r.Psw.Addr } method SetPC (line 114) | func (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc } method SetLen (line 116) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 120) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 124) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 128) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 132) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function mmap (line 138) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... constant netSocket (line 153) | netSocket = 1 constant netBind (line 154) | netBind = 2 constant netConnect (line 155) | netConnect = 3 constant netListen (line 156) | netListen = 4 constant netAccept (line 157) | netAccept = 5 constant netGetSockName (line 158) | netGetSockName = 6 constant netGetPeerName (line 159) | netGetPeerName = 7 constant netSocketPair (line 160) | netSocketPair = 8 constant netSend (line 161) | netSend = 9 constant netRecv (line 162) | netRecv = 10 constant netSendTo (line 163) | netSendTo = 11 constant netRecvFrom (line 164) | netRecvFrom = 12 constant netShutdown (line 165) | netShutdown = 13 constant netSetSockOpt (line 166) | netSetSockOpt = 14 constant netGetSockOpt (line 167) | netGetSockOpt = 15 constant netSendMsg (line 168) | netSendMsg = 16 constant netRecvMsg (line 169) | netRecvMsg = 17 constant netAccept4 (line 170) | netAccept4 = 18 constant netRecvMMsg (line 171) | netRecvMMsg = 19 constant netSendMMsg (line 172) | netSendMMsg = 20 function accept (line 175) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (int, error) { function accept4 (line 184) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function getsockname (line 193) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error { function getpeername (line 202) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error { function socketpair (line 211) | func socketpair(domain int, typ int, flags int, fd *[2]int32) error { function bind (line 220) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) error { function connect (line 229) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) error { function socket (line 238) | func socket(domain int, typ int, proto int) (int, error) { function getsockopt (line 247) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 256) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 265) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ... function sendto (line 278) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock... function recvmsg (line 291) | func recvmsg(s int, msg *Msghdr, flags int) (int, error) { function sendmsg (line 300) | func sendmsg(s int, msg *Msghdr, flags int) (int, error) { function Listen (line 309) | func Listen(s int, n int) error { function Shutdown (line 318) | func Shutdown(s, how int) error { function Poll (line 329) | func Poll(fds []PollFd, timeout int) (n int, err error) { function KexecFileLoad (line 338) | func KexecFileLoad(kernelFd int, initrdFd int, cmdline string, flags int... FILE: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go function Ioperm (line 65) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 69) | func Iopl(level int) (err error) { function Time (line 76) | func Time(t *Time_t) (tt Time_t, err error) { function setTimespec (line 91) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 95) | func setTimeval(sec, usec int64) Timeval { method PC (line 99) | func (r *PtraceRegs) PC() uint64 { return r.Tpc } method SetPC (line 101) | func (r *PtraceRegs) SetPC(pc uint64) { r.Tpc = pc } method SetLen (line 103) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 107) | func (msghdr *Msghdr) SetControllen(length int) { method SetIovlen (line 111) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 115) | func (cmsg *Cmsghdr) SetLen(length int) { method SetServiceNameLen (line 119) | func (rsa *RawSockaddrNFCLLCP) SetServiceNameLen(length int) { function Pipe (line 125) | func Pipe(p []int) (err error) { function Pipe2 (line 138) | func Pipe2(p []int, flags int) (err error) { function Poll (line 151) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd.go type SockaddrDatalink (line 22) | type SockaddrDatalink struct function anyToSockaddrGOOS (line 34) | func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function Syscall9 (line 38) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function sysctlNodes (line 40) | func sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) { function nametomib (line 63) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 101) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 105) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 109) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 115) | func Pipe(p []int) (err error) { function Pipe2 (line 125) | func Pipe2(p []int, flags int) error { function Getdirentries (line 138) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function sendfile (line 166) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setattrlistTimes (line 170) | func setattrlistTimes(path string, times []Timespec, flags int) error { function IoctlGetPtmget (line 179) | func IoctlGetPtmget(fd int, req uint) (*Ptmget, error) { function Uname (line 186) | func Uname(uname *Utsname) error { function Sendfile (line 232) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function Fstatvfs (line 239) | func Fstatvfs(fd int, buf *Statvfs_t) (err error) { function Statvfs (line 243) | func Statvfs(path string, buf *Statvfs_t) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd.go type SockaddrDatalink (line 22) | type SockaddrDatalink struct function anyToSockaddrGOOS (line 34) | func anyToSockaddrGOOS(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function Syscall9 (line 38) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function nametomib (line 40) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 50) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 54) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 58) | func direntNamlen(buf []byte) (uint64, bool) { function SysctlUvmexp (line 62) | func SysctlUvmexp(name string) (*Uvmexp, error) { function Pipe (line 79) | func Pipe(p []int) (err error) { function Pipe2 (line 84) | func Pipe2(p []int, flags int) error { function Getdirentries (line 96) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Sendfile (line 123) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function sendfile (line 131) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Getfsstat (line 135) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function setattrlistTimes (line 150) | func setattrlistTimes(path string, times []Timespec, flags int) error { function Ppoll (line 161) | func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, e... function Uname (line 168) | func Uname(uname *Utsname) error { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { constant SYS___SYSCTL (line 42) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { constant SYS___SYSCTL (line 42) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { constant SYS___SYSCTL (line 42) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 18) | func SetKevent(k *Kevent_t, fd, mode, flags int) { 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) { constant SYS___SYSCTL (line 42) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go function setTimespec (line 7) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 11) | func setTimeval(sec, usec int64) Timeval { function SetKevent (line 15) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 21) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 25) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 29) | func (cmsg *Cmsghdr) SetLen(length int) { constant SYS___SYSCTL (line 35) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_solaris.go type syscallFunc (line 22) | type syscallFunc function rawSysvicall6 (line 24) | func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 ... function sysvicall6 (line 25) | func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uin... type SockaddrDatalink (line 28) | type SockaddrDatalink struct function direntIno (line 39) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 43) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 47) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 57) | func Pipe(p []int) (err error) { function Pipe2 (line 73) | func Pipe2(p []int, flags int) error { method sockaddr (line 84) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 98) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 113) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { function Getsockname (line 139) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptString (line 150) | func GetsockoptString(fd, level, opt int) (string, error) { constant ImplementsGetwd (line 160) | ImplementsGetwd = true function Getwd (line 164) | func Getwd() (wd string, err error) { function Getgroups (line 185) | func Getgroups() (gids []int, err error) { function Setgroups (line 210) | func Setgroups(gids []int) (err error) { function ReadDirent (line 223) | func ReadDirent(fd int, buf []byte) (n int, err error) { type WaitStatus (line 235) | type WaitStatus method Exited (line 246) | func (w WaitStatus) Exited() bool { return w&mask == exited } method ExitStatus (line 248) | func (w WaitStatus) ExitStatus() int { method Signaled (line 255) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Signal (line 257) | func (w WaitStatus) Signal() syscall.Signal { method CoreDump (line 265) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method Stopped (line 267) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca... method Continued (line 269) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys... method StopSignal (line 271) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 278) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 238) | mask = 0x7F constant core (line 239) | core = 0x80 constant shift (line 240) | shift = 8 constant exited (line 242) | exited = 0 constant stopped (line 243) | stopped = 0x7F function Wait4 (line 282) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (i... function Gethostname (line 297) | func Gethostname() (name string, err error) { function Utimes (line 312) | func Utimes(path string, tv []Timeval) (err error) { function UtimesNano (line 324) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 334) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function FcntlInt (line 347) | func FcntlInt(fd uintptr, cmd, arg int) (int, error) { function FcntlFlock (line 357) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error { function Futimesat (line 367) | func Futimesat(dirfd int, path string, tv []Timeval) error { function Futimes (line 384) | func Futimes(fd int, tv []Timeval) error { function anyToSockaddr (line 394) | func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 438) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Recvmsg (line 455) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 487) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 494) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Acct (line 533) | func Acct(path string) (err error) { function Mkdev (line 548) | func Mkdev(major, minor uint32) uint64 { function Major (line 554) | func Major(dev uint64) uint32 { function Minor (line 560) | func Minor(dev uint64) uint32 { function ioctl (line 570) | func ioctl(fd int, req uint, arg uintptr) (err error) { function IoctlSetTermio (line 575) | func IoctlSetTermio(fd int, req uint, value *Termio) error { function IoctlGetTermio (line 581) | func IoctlGetTermio(fd int, req uint) (*Termio, error) { function Poll (line 589) | func Poll(fds []PollFd, timeout int) (n int, err error) { function Sendfile (line 596) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function readlen (line 716) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 725) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function Mmap (line 740) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 744) | func Munmap(b []byte) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go function setTimespec (line 10) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 14) | func setTimeval(sec, usec int64) Timeval { method SetLen (line 18) | func (iov *Iovec) SetLen(length int) { method SetIovlen (line 22) | func (msghdr *Msghdr) SetIovlen(length int) { method SetLen (line 26) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_unix.go function errnoErr (line 41) | func errnoErr(e syscall.Errno) error { function ErrnoName (line 56) | func ErrnoName(e syscall.Errno) string { function SignalName (line 67) | func SignalName(s syscall.Signal) string { function SignalNum (line 80) | func SignalNum(s string) syscall.Signal { function clen (line 91) | func clen(n []byte) int { type mmapper (line 101) | type mmapper struct method Mmap (line 108) | 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 15) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) function Syscall6 (line 16) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function RawSyscall (line 17) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 18) | 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 14) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errn... function Syscall6 (line 17) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function RawSyscall (line 20) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 23) | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, ... FILE: vendor/golang.org/x/sys/unix/syscall_zos_s390x.go constant O_CLOEXEC (line 20) | O_CLOEXEC = 0 constant AF_LOCAL (line 21) | AF_LOCAL = AF_UNIX function syscall_syscall (line 24) | func syscall_syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno) function syscall_rawsyscall (line 25) | func syscall_rawsyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err E... function syscall_syscall6 (line 26) | func syscall_syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uint... function syscall_rawsyscall6 (line 27) | func syscall_rawsyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 u... function syscall_syscall9 (line 28) | func syscall_syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) ... function syscall_rawsyscall9 (line 29) | func syscall_rawsyscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintpt... function copyStat (line 31) | func copyStat(stat *Stat_t, statLE *Stat_LE_t) { function svcCall (line 50) | func svcCall(fnptr unsafe.Pointer, argv *unsafe.Pointer, dsa *uint64) function svcLoad (line 51) | func svcLoad(name *byte) unsafe.Pointer function svcUnload (line 52) | func svcUnload(name *byte, fnptr unsafe.Pointer) int64 method NameString (line 54) | func (d *Dirent) NameString() string { function anyToSockaddr (line 106) | func anyToSockaddr(_ int, rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 166) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { method SetLen (line 182) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 186) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 190) | func (cmsg *Cmsghdr) SetLen(length int) { function Fstat (line 234) | func Fstat(fd int, stat *Stat_t) (err error) { function Ptsname (line 258) | func Ptsname(fd int) (name string, err error) { function u2s (line 267) | func u2s(cstr unsafe.Pointer) string { function Close (line 276) | func Close(fd int) (err error) { function Madvise (line 295) | func Madvise(b []byte, advice int) (err error) { function Mmap (line 299) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 303) | func Munmap(b []byte) (err error) { function Getpgrp (line 314) | func Getpgrp() (pid int) { function Getrusage (line 325) | func Getrusage(who int, rusage *Rusage) (err error) { function Lstat (line 344) | func Lstat(path string, stat *Stat_t) (err error) { function Stat (line 371) | func Stat(path string, sta *Stat_t) (err error) { function Open (line 389) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Mkfifoat (line 393) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Remove (line 409) | func Remove(path string) error { constant ImplementsGetwd (line 413) | ImplementsGetwd = true function Getcwd (line 415) | func Getcwd(buf []byte) (n int, err error) { function Getwd (line 430) | func Getwd() (wd string, err error) { function Getgroups (line 443) | func Getgroups() (gids []int, err error) { function Setgroups (line 469) | func Setgroups(gids []int) (err error) { function gettid (line 481) | func gettid() uint64 function Gettid (line 483) | func Gettid() (tid int) { type WaitStatus (line 487) | type WaitStatus method Exited (line 506) | func (w WaitStatus) Exited() bool { return w&mask == exited } method Signaled (line 508) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Stopped (line 510) | func (w WaitStatus) Stopped() bool { return w&0xFF == stopped } method Continued (line 512) | func (w WaitStatus) Continued() bool { return w == 0xFFFF } method CoreDump (line 514) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method ExitStatus (line 516) | func (w WaitStatus) ExitStatus() int { method Signal (line 523) | func (w WaitStatus) Signal() Signal { method StopSignal (line 530) | func (w WaitStatus) StopSignal() Signal { method TrapCause (line 537) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 499) | mask = 0x7F constant core (line 500) | core = 0x80 constant exited (line 501) | exited = 0x00 constant stopped (line 502) | stopped = 0x7F constant shift (line 503) | shift = 8 function Wait4 (line 541) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... function Gettimeofday (line 554) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 562) | func Time(t *Time_t) (tt Time_t, err error) { function setTimespec (line 574) | func setTimespec(sec, nsec int64) Timespec { function setTimeval (line 578) | func setTimeval(sec, usec int64) Timeval { //fix function Pipe (line 584) | func Pipe(p []int) (err error) { function Utimes (line 597) | func Utimes(path string, tv []Timeval) (err error) { function UtimesNano (line 604) | func UtimesNano(path string, ts []Timespec) error { function Getsockname (line 617) | func Getsockname(fd int) (sa Sockaddr, err error) { constant nwmHeaderIdentifier (line 629) | nwmHeaderIdentifier = 0xd5e6d4c8 constant nwmFilterIdentifier (line 630) | nwmFilterIdentifier = 0xd5e6d4c6 constant nwmTCPConnIdentifier (line 631) | nwmTCPConnIdentifier = 0xd5e6d4c3 constant nwmRecHeaderIdentifier (line 632) | nwmRecHeaderIdentifier = 0xd5e6d4d9 constant nwmIPStatsIdentifier (line 633) | nwmIPStatsIdentifier = 0xd5e6d4c9d7e2e340 constant nwmIPGStatsIdentifier (line 634) | nwmIPGStatsIdentifier = 0xd5e6d4c9d7c7e2e3 constant nwmTCPStatsIdentifier (line 635) | nwmTCPStatsIdentifier = 0xd5e6d4e3c3d7e2e3 constant nwmUDPStatsIdentifier (line 636) | nwmUDPStatsIdentifier = 0xd5e6d4e4c4d7e2e3 constant nwmICMPGStatsEntry (line 637) | nwmICMPGStatsEntry = 0xd5e6d4c9c3d4d7c7 constant nwmICMPTStatsEntry (line 638) | nwmICMPTStatsEntry = 0xd5e6d4c9c3d4d7e3 constant nwmVersion1 (line 641) | nwmVersion1 = 1 constant nwmVersion2 (line 642) | nwmVersion2 = 2 constant nwmCurrentVer (line 643) | nwmCurrentVer = 2 constant nwmTCPConnType (line 645) | nwmTCPConnType = 1 constant nwmGlobalStatsType (line 646) | nwmGlobalStatsType = 14 constant nwmFilterLclAddrMask (line 649) | nwmFilterLclAddrMask = 0x20000000 constant nwmFilterSrcAddrMask (line 650) | nwmFilterSrcAddrMask = 0x20000000 constant nwmFilterLclPortMask (line 651) | nwmFilterLclPortMask = 0x10000000 constant nwmFilterSrcPortMask (line 652) | nwmFilterSrcPortMask = 0x10000000 constant nwmTCPStateClosed (line 655) | nwmTCPStateClosed = 1 constant nwmTCPStateListen (line 656) | nwmTCPStateListen = 2 constant nwmTCPStateSynSent (line 657) | nwmTCPStateSynSent = 3 constant nwmTCPStateSynRcvd (line 658) | nwmTCPStateSynRcvd = 4 constant nwmTCPStateEstab (line 659) | nwmTCPStateEstab = 5 constant nwmTCPStateFinWait1 (line 660) | nwmTCPStateFinWait1 = 6 constant nwmTCPStateFinWait2 (line 661) | nwmTCPStateFinWait2 = 7 constant nwmTCPStateClosWait (line 662) | nwmTCPStateClosWait = 8 constant nwmTCPStateLastAck (line 663) | nwmTCPStateLastAck = 9 constant nwmTCPStateClosing (line 664) | nwmTCPStateClosing = 10 constant nwmTCPStateTimeWait (line 665) | nwmTCPStateTimeWait = 11 constant nwmTCPStateDeletTCB (line 666) | nwmTCPStateDeletTCB = 12 constant BPF_TCP_CLOSE (line 669) | BPF_TCP_CLOSE = 1 constant BPF_TCP_LISTEN (line 670) | BPF_TCP_LISTEN = 2 constant BPF_TCP_SYN_SENT (line 671) | BPF_TCP_SYN_SENT = 3 constant BPF_TCP_SYN_RECV (line 672) | BPF_TCP_SYN_RECV = 4 constant BPF_TCP_ESTABLISHED (line 673) | BPF_TCP_ESTABLISHED = 5 constant BPF_TCP_FIN_WAIT1 (line 674) | BPF_TCP_FIN_WAIT1 = 6 constant BPF_TCP_FIN_WAIT2 (line 675) | BPF_TCP_FIN_WAIT2 = 7 constant BPF_TCP_CLOSE_WAIT (line 676) | BPF_TCP_CLOSE_WAIT = 8 constant BPF_TCP_LAST_ACK (line 677) | BPF_TCP_LAST_ACK = 9 constant BPF_TCP_CLOSING (line 678) | BPF_TCP_CLOSING = 10 constant BPF_TCP_TIME_WAIT (line 679) | BPF_TCP_TIME_WAIT = 11 constant BPF_TCP_NEW_SYN_RECV (line 680) | BPF_TCP_NEW_SYN_RECV = -1 constant BPF_TCP_MAX_STATES (line 681) | BPF_TCP_MAX_STATES = -2 type nwmTriplet (line 684) | type nwmTriplet struct type nwmQuadruplet (line 690) | type nwmQuadruplet struct type nwmHeader (line 697) | type nwmHeader struct type nwmFilter (line 709) | type nwmFilter struct type nwmRecHeader (line 742) | type nwmRecHeader struct type nwmTCPStatsEntry (line 749) | type nwmTCPStatsEntry struct type nwmConnEntry (line 827) | type nwmConnEntry struct constant svc_EZBNMIF4 (line 909) | svc_EZBNMIF4 = 0 function GetsockoptTCPInfo (line 912) | func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) { function GetsockoptString (line 1113) | func GetsockoptString(fd, level, opt int) (string, error) { function Recvmsg (line 1124) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 1159) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 1164) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Opendir (line 1203) | func Opendir(name string) (uintptr, error) { function clearErrno (line 1217) | func clearErrno() function Readdir (line 1219) | func Readdir(dir uintptr) (*Dirent, error) { function Closedir (line 1239) | func Closedir(dir uintptr) error { function Seekdir (line 1247) | func Seekdir(dir uintptr, pos int) { function Telldir (line 1251) | func Telldir(dir uintptr) (int, error) { function FcntlFlock (line 1261) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error { function Flock (line 1282) | func Flock(fd int, how int) error { function Mlock (line 1315) | func Mlock(b []byte) (err error) { function Mlock2 (line 1323) | func Mlock2(b []byte, flags int) (err error) { function Mlockall (line 1331) | func Mlockall(flags int) (err error) { function Munlock (line 1339) | func Munlock(b []byte) (err error) { function Munlockall (line 1347) | func Munlockall() (err error) { function ClockGettime (line 1355) | func ClockGettime(clockid int32, ts *Timespec) error { function Statfs (line 1381) | func Statfs(path string, stat *Statfs_t) (err error) { function errnoErr (line 1411) | func errnoErr(e Errno) error { function ErrnoName (line 1426) | func ErrnoName(e Errno) string { function SignalName (line 1437) | func SignalName(s syscall.Signal) string { function SignalNum (line 1450) | func SignalNum(s string) syscall.Signal { function clen (line 1461) | func clen(n []byte) int { type mmapper (line 1471) | type mmapper struct method Mmap (line 1478) | func (m *mmapper) Mmap(fd int, offset int64, length int, prot int, fla... method Munmap (line 1507) | func (m *mmapper) Munmap(data []byte) (err error) { function Read (line 1529) | func Read(fd int, p []byte) (n int, err error) { function Write (line 1542) | func Write(fd int, p []byte) (n int, err error) { type Sockaddr (line 1558) | type Sockaddr interface type SockaddrInet4 (line 1563) | type SockaddrInet4 struct method sockaddr (line 61) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrInet6 (line 1570) | type SockaddrInet6 struct method sockaddr (line 76) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrUnix (line 1578) | type SockaddrUnix struct method sockaddr (line 92) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { function Bind (line 1583) | func Bind(fd int, sa Sockaddr) (err error) { function Connect (line 1591) | func Connect(fd int, sa Sockaddr) (err error) { function Getpeername (line 1599) | func Getpeername(fd int) (sa Sockaddr, err error) { function GetsockoptByte (line 1608) | func GetsockoptByte(fd, level, opt int) (value byte, err error) { function GetsockoptInt (line 1615) | func GetsockoptInt(fd, level, opt int) (value int, err error) { function GetsockoptInet4Addr (line 1622) | func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) { function GetsockoptIPMreq (line 1628) | func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) { function GetsockoptIPv6Mreq (line 1635) | func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) { function GetsockoptIPv6MTUInfo (line 1642) | func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) { function GetsockoptICMPv6Filter (line 1649) | func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) { function GetsockoptLinger (line 1656) | func GetsockoptLinger(fd, level, opt int) (*Linger, error) { function GetsockoptTimeval (line 1663) | func GetsockoptTimeval(fd, level, opt int) (*Timeval, error) { function GetsockoptUint64 (line 1670) | func GetsockoptUint64(fd, level, opt int) (value uint64, err error) { function Recvfrom (line 1677) | func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err er... function Sendto (line 1689) | func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error) { function SetsockoptByte (line 1697) | func SetsockoptByte(fd, level, opt int, value byte) (err error) { function SetsockoptInt (line 1701) | func SetsockoptInt(fd, level, opt int, value int) (err error) { function SetsockoptInet4Addr (line 1706) | func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error) { function SetsockoptIPMreq (line 1710) | func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error) { function SetsockoptIPv6Mreq (line 1714) | func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error) { function SetsockoptICMPv6Filter (line 1718) | func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) er... function SetsockoptLinger (line 1722) | func SetsockoptLinger(fd, level, opt int, l *Linger) (err error) { function SetsockoptString (line 1726) | func SetsockoptString(fd, level, opt int, s string) (err error) { function SetsockoptTimeval (line 1734) | func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) { function SetsockoptUint64 (line 1738) | func SetsockoptUint64(fd, level, opt int, value uint64) (err error) { function Socket (line 1742) | func Socket(domain, typ, proto int) (fd int, err error) { function Socketpair (line 1750) | func Socketpair(domain, typ, proto int) (fd [2]int, err error) { function CloseOnExec (line 1762) | func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) } function SetNonblock (line 1764) | func SetNonblock(fd int, nonblocking bool) (err error) { function Exec (line 1783) | func Exec(argv0 string, argv []string, envv []string) error { function Mount (line 1787) | func Mount(source string, target string, fstype string, flags uintptr, d... function Unmount (line 1796) | func Unmount(name string, mtm int) (err error) { FILE: vendor/golang.org/x/sys/unix/timestruct.go function TimespecToNsec (line 13) | func TimespecToNsec(ts Timespec) int64 { return ts.Nano() } function NsecToTimespec (line 16) | func NsecToTimespec(nsec int64) Timespec { function TimeToTimespec (line 30) | func TimeToTimespec(t time.Time) (Timespec, error) { function TimevalToNsec (line 45) | func TimevalToNsec(tv Timeval) int64 { return tv.Nano() } function NsecToTimeval (line 48) | func NsecToTimeval(nsec int64) Timeval { method Unix (line 60) | func (ts *Timespec) Unix() (sec int64, nsec int64) { method Unix (line 65) | func (tv *Timeval) Unix() (sec int64, nsec int64) { method Nano (line 70) | func (ts *Timespec) Nano() int64 { method Nano (line 75) | 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 17) | func xattrnamespace(fullattr string) (ns int, attr string, err error) { function initxattrdest (line 36) | func initxattrdest(dest []byte, idx int) (d unsafe.Pointer) { function Getxattr (line 46) | func Getxattr(file string, attr string, dest []byte) (sz int, err error) { function Fgetxattr (line 58) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) { function Lgetxattr (line 70) | func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) { function Fsetxattr (line 84) | func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) { function Setxattr (line 100) | func Setxattr(file string, attr string, data []byte, flags int) (err err... function Lsetxattr (line 116) | func Lsetxattr(link string, attr string, data []byte, flags int) (err er... function Removexattr (line 132) | func Removexattr(file string, attr string) (err error) { function Fremovexattr (line 142) | func Fremovexattr(fd int, attr string) (err error) { function Lremovexattr (line 152) | func Lremovexattr(link string, attr string) (err error) { function Listxattr (line 162) | func Listxattr(file string, dest []byte) (sz int, err error) { function Flistxattr (line 195) | func Flistxattr(fd int, dest []byte) (sz int, err error) { function Llistxattr (line 219) | 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 15) | AF_APPLETALK = 0x10 constant AF_BYPASS (line 16) | AF_BYPASS = 0x19 constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 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_ECMA (line 22) | AF_ECMA = 0x8 constant AF_HYLINK (line 23) | AF_HYLINK = 0xf constant AF_IMPLINK (line 24) | AF_IMPLINK = 0x3 constant AF_INET (line 25) | AF_INET = 0x2 constant AF_INET6 (line 26) | AF_INET6 = 0x18 constant AF_INTF (line 27) | AF_INTF = 0x14 constant AF_ISO (line 28) | AF_ISO = 0x7 constant AF_LAT (line 29) | AF_LAT = 0xe constant AF_LINK (line 30) | AF_LINK = 0x12 constant AF_LOCAL (line 31) | AF_LOCAL = 0x1 constant AF_MAX (line 32) | AF_MAX = 0x1e constant AF_NDD (line 33) | AF_NDD = 0x17 constant AF_NETWARE (line 34) | AF_NETWARE = 0x16 constant AF_NS (line 35) | AF_NS = 0x6 constant AF_OSI (line 36) | AF_OSI = 0x7 constant AF_PUP (line 37) | AF_PUP = 0x4 constant AF_RIF (line 38) | AF_RIF = 0x15 constant AF_ROUTE (line 39) | AF_ROUTE = 0x11 constant AF_SNA (line 40) | AF_SNA = 0xb constant AF_UNIX (line 41) | AF_UNIX = 0x1 constant AF_UNSPEC (line 42) | AF_UNSPEC = 0x0 constant ALTWERASE (line 43) | ALTWERASE = 0x400000 constant ARPHRD_802_3 (line 44) | ARPHRD_802_3 = 0x6 constant ARPHRD_802_5 (line 45) | ARPHRD_802_5 = 0x6 constant ARPHRD_ETHER (line 46) | ARPHRD_ETHER = 0x1 constant ARPHRD_FDDI (line 47) | ARPHRD_FDDI = 0x1 constant B0 (line 48) | B0 = 0x0 constant B110 (line 49) | B110 = 0x3 constant B1200 (line 50) | B1200 = 0x9 constant B134 (line 51) | B134 = 0x4 constant B150 (line 52) | B150 = 0x5 constant B1800 (line 53) | B1800 = 0xa constant B19200 (line 54) | B19200 = 0xe constant B200 (line 55) | B200 = 0x6 constant B2400 (line 56) | B2400 = 0xb constant B300 (line 57) | B300 = 0x7 constant B38400 (line 58) | B38400 = 0xf constant B4800 (line 59) | B4800 = 0xc constant B50 (line 60) | B50 = 0x1 constant B600 (line 61) | B600 = 0x8 constant B75 (line 62) | B75 = 0x2 constant B9600 (line 63) | B9600 = 0xd constant BRKINT (line 64) | BRKINT = 0x2 constant BS0 (line 65) | BS0 = 0x0 constant BS1 (line 66) | BS1 = 0x1000 constant BSDLY (line 67) | BSDLY = 0x1000 constant CAP_AACCT (line 68) | CAP_AACCT = 0x6 constant CAP_ARM_APPLICATION (line 69) | CAP_ARM_APPLICATION = 0x5 constant CAP_BYPASS_RAC_VMM (line 70) | CAP_BYPASS_RAC_VMM = 0x3 constant CAP_CLEAR (line 71) | CAP_CLEAR = 0x0 constant CAP_CREDENTIALS (line 72) | CAP_CREDENTIALS = 0x7 constant CAP_EFFECTIVE (line 73) | CAP_EFFECTIVE = 0x1 constant CAP_EWLM_AGENT (line 74) | CAP_EWLM_AGENT = 0x4 constant CAP_INHERITABLE (line 75) | CAP_INHERITABLE = 0x2 constant CAP_MAXIMUM (line 76) | CAP_MAXIMUM = 0x7 constant CAP_NUMA_ATTACH (line 77) | CAP_NUMA_ATTACH = 0x2 constant CAP_PERMITTED (line 78) | CAP_PERMITTED = 0x3 constant CAP_PROPAGATE (line 79) | CAP_PROPAGATE = 0x1 constant CAP_PROPOGATE (line 80) | CAP_PROPOGATE = 0x1 constant CAP_SET (line 81) | CAP_SET = 0x1 constant CBAUD (line 82) | CBAUD = 0xf constant CFLUSH (line 83) | CFLUSH = 0xf constant CIBAUD (line 84) | CIBAUD = 0xf0000 constant CLOCAL (line 85) | CLOCAL = 0x800 constant CLOCK_MONOTONIC (line 86) | CLOCK_MONOTONIC = 0xa constant CLOCK_PROCESS_CPUTIME_ID (line 87) | CLOCK_PROCESS_CPUTIME_ID = 0xb constant CLOCK_REALTIME (line 88) | CLOCK_REALTIME = 0x9 constant CLOCK_THREAD_CPUTIME_ID (line 89) | CLOCK_THREAD_CPUTIME_ID = 0xc constant CR0 (line 90) | CR0 = 0x0 constant CR1 (line 91) | CR1 = 0x100 constant CR2 (line 92) | CR2 = 0x200 constant CR3 (line 93) | CR3 = 0x300 constant CRDLY (line 94) | CRDLY = 0x300 constant CREAD (line 95) | CREAD = 0x80 constant CS5 (line 96) | CS5 = 0x0 constant CS6 (line 97) | CS6 = 0x10 constant CS7 (line 98) | CS7 = 0x20 constant CS8 (line 99) | CS8 = 0x30 constant CSIOCGIFCONF (line 100) | CSIOCGIFCONF = -0x3ff796dc constant CSIZE (line 101) | CSIZE = 0x30 constant CSMAP_DIR (line 102) | CSMAP_DIR = "/usr/lib/nls/csmap/" constant CSTART (line 103) | CSTART = '\021' constant CSTOP (line 104) | CSTOP = '\023' constant CSTOPB (line 105) | CSTOPB = 0x40 constant CSUSP (line 106) | CSUSP = 0x1a constant ECHO (line 107) | ECHO = 0x8 constant ECHOCTL (line 108) | ECHOCTL = 0x20000 constant ECHOE (line 109) | ECHOE = 0x10 constant ECHOK (line 110) | ECHOK = 0x20 constant ECHOKE (line 111) | ECHOKE = 0x80000 constant ECHONL (line 112) | ECHONL = 0x40 constant ECHOPRT (line 113) | ECHOPRT = 0x40000 constant ECH_ICMPID (line 114) | ECH_ICMPID = 0x2 constant ETHERNET_CSMACD (line 115) | ETHERNET_CSMACD = 0x6 constant EVENP (line 116) | EVENP = 0x80 constant EXCONTINUE (line 117) | EXCONTINUE = 0x0 constant EXDLOK (line 118) | EXDLOK = 0x3 constant EXIO (line 119) | EXIO = 0x2 constant EXPGIO (line 120) | EXPGIO = 0x0 constant EXRESUME (line 121) | EXRESUME = 0x2 constant EXRETURN (line 122) | EXRETURN = 0x1 constant EXSIG (line 123) | EXSIG = 0x4 constant EXTA (line 124) | EXTA = 0xe constant EXTB (line 125) | EXTB = 0xf constant EXTRAP (line 126) | EXTRAP = 0x1 constant EYEC_RTENTRYA (line 127) | EYEC_RTENTRYA = 0x257274656e747241 constant EYEC_RTENTRYF (line 128) | EYEC_RTENTRYF = 0x257274656e747246 constant E_ACC (line 129) | E_ACC = 0x0 constant FD_CLOEXEC (line 130) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 131) | FD_SETSIZE = 0xfffe constant FF0 (line 132) | FF0 = 0x0 constant FF1 (line 133) | FF1 = 0x2000 constant FFDLY (line 134) | FFDLY = 0x2000 constant FLUSHBAND (line 135) | FLUSHBAND = 0x40 constant FLUSHLOW (line 136) | FLUSHLOW = 0x8 constant FLUSHO (line 137) | FLUSHO = 0x100000 constant FLUSHR (line 138) | FLUSHR = 0x1 constant FLUSHRW (line 139) | FLUSHRW = 0x3 constant FLUSHW (line 140) | FLUSHW = 0x2 constant F_CLOSEM (line 141) | F_CLOSEM = 0xa constant F_DUP2FD (line 142) | F_DUP2FD = 0xe constant F_DUPFD (line 143) | F_DUPFD = 0x0 constant F_GETFD (line 144) | F_GETFD = 0x1 constant F_GETFL (line 145) | F_GETFL = 0x3 constant F_GETLK (line 146) | F_GETLK = 0x5 constant F_GETLK64 (line 147) | F_GETLK64 = 0xb constant F_GETOWN (line 148) | F_GETOWN = 0x8 constant F_LOCK (line 149) | F_LOCK = 0x1 constant F_OK (line 150) | F_OK = 0x0 constant F_RDLCK (line 151) | F_RDLCK = 0x1 constant F_SETFD (line 152) | F_SETFD = 0x2 constant F_SETFL (line 153) | F_SETFL = 0x4 constant F_SETLK (line 154) | F_SETLK = 0x6 constant F_SETLK64 (line 155) | F_SETLK64 = 0xc constant F_SETLKW (line 156) | F_SETLKW = 0x7 constant F_SETLKW64 (line 157) | F_SETLKW64 = 0xd constant F_SETOWN (line 158) | F_SETOWN = 0x9 constant F_TEST (line 159) | F_TEST = 0x3 constant F_TLOCK (line 160) | F_TLOCK = 0x2 constant F_TSTLK (line 161) | F_TSTLK = 0xf constant F_ULOCK (line 162) | F_ULOCK = 0x0 constant F_UNLCK (line 163) | F_UNLCK = 0x3 constant F_WRLCK (line 164) | F_WRLCK = 0x2 constant HUPCL (line 165) | HUPCL = 0x400 constant IBSHIFT (line 166) | IBSHIFT = 0x10 constant ICANON (line 167) | ICANON = 0x2 constant ICMP6_FILTER (line 168) | ICMP6_FILTER = 0x26 constant ICMP6_SEC_SEND_DEL (line 169) | ICMP6_SEC_SEND_DEL = 0x46 constant ICMP6_SEC_SEND_GET (line 170) | ICMP6_SEC_SEND_GET = 0x47 constant ICMP6_SEC_SEND_SET (line 171) | ICMP6_SEC_SEND_SET = 0x44 constant ICMP6_SEC_SEND_SET_CGA_ADDR (line 172) | ICMP6_SEC_SEND_SET_CGA_ADDR = 0x45 constant ICRNL (line 173) | ICRNL = 0x100 constant IEXTEN (line 174) | IEXTEN = 0x200000 constant IFA_FIRSTALIAS (line 175) | IFA_FIRSTALIAS = 0x2000 constant IFA_ROUTE (line 176) | IFA_ROUTE = 0x1 constant IFF_64BIT (line 177) | IFF_64BIT = 0x4000000 constant IFF_ALLCAST (line 178) | IFF_ALLCAST = 0x20000 constant IFF_ALLMULTI (line 179) | IFF_ALLMULTI = 0x200 constant IFF_BPF (line 180) | IFF_BPF = 0x8000000 constant IFF_BRIDGE (line 181) | IFF_BRIDGE = 0x40000 constant IFF_BROADCAST (line 182) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 183) | IFF_CANTCHANGE = 0x80c52 constant IFF_CHECKSUM_OFFLOAD (line 184) | IFF_CHECKSUM_OFFLOAD = 0x10000000 constant IFF_D1 (line 185) | IFF_D1 = 0x8000 constant IFF_D2 (line 186) | IFF_D2 = 0x4000 constant IFF_D3 (line 187) | IFF_D3 = 0x2000 constant IFF_D4 (line 188) | IFF_D4 = 0x1000 constant IFF_DEBUG (line 189) | IFF_DEBUG = 0x4 constant IFF_DEVHEALTH (line 190) | IFF_DEVHEALTH = 0x4000 constant IFF_DO_HW_LOOPBACK (line 191) | IFF_DO_HW_LOOPBACK = 0x10000 constant IFF_GROUP_ROUTING (line 192) | IFF_GROUP_ROUTING = 0x2000000 constant IFF_IFBUFMGT (line 193) | IFF_IFBUFMGT = 0x800000 constant IFF_LINK0 (line 194) | IFF_LINK0 = 0x100000 constant IFF_LINK1 (line 195) | IFF_LINK1 = 0x200000 constant IFF_LINK2 (line 196) | IFF_LINK2 = 0x400000 constant IFF_LOOPBACK (line 197) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 198) | IFF_MULTICAST = 0x80000 constant IFF_NOARP (line 199) | IFF_NOARP = 0x80 constant IFF_NOECHO (line 200) | IFF_NOECHO = 0x800 constant IFF_NOTRAILERS (line 201) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 202) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 203) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 204) | IFF_PROMISC = 0x100 constant IFF_PSEG (line 205) | IFF_PSEG = 0x40000000 constant IFF_RUNNING (line 206) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 207) | IFF_SIMPLEX = 0x800 constant IFF_SNAP (line 208) | IFF_SNAP = 0x8000 constant IFF_TCP_DISABLE_CKSUM (line 209) | IFF_TCP_DISABLE_CKSUM = 0x20000000 constant IFF_TCP_NOCKSUM (line 210) | IFF_TCP_NOCKSUM = 0x1000000 constant IFF_UP (line 211) | IFF_UP = 0x1 constant IFF_VIPA (line 212) | IFF_VIPA = 0x80000000 constant IFNAMSIZ (line 213) | IFNAMSIZ = 0x10 constant IFO_FLUSH (line 214) | IFO_FLUSH = 0x1 constant IFT_1822 (line 215) | IFT_1822 = 0x2 constant IFT_AAL5 (line 216) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 217) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 218) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 219) | IFT_ATM = 0x25 constant IFT_CEPT (line 220) | IFT_CEPT = 0x13 constant IFT_CLUSTER (line 221) | IFT_CLUSTER = 0x3e constant IFT_DS3 (line 222) | IFT_DS3 = 0x1e constant IFT_EON (line 223) | IFT_EON = 0x19 constant IFT_ETHER (line 224) | IFT_ETHER = 0x6 constant IFT_FCS (line 225) | IFT_FCS = 0x3a constant IFT_FDDI (line 226) | IFT_FDDI = 0xf constant IFT_FRELAY (line 227) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 228) | IFT_FRELAYDCE = 0x2c constant IFT_GIFTUNNEL (line 229) | IFT_GIFTUNNEL = 0x3c constant IFT_HDH1822 (line 230) | IFT_HDH1822 = 0x3 constant IFT_HF (line 231) | IFT_HF = 0x3d constant IFT_HIPPI (line 232) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 233) | IFT_HSSI = 0x2e constant IFT_HY (line 234) | IFT_HY = 0xe constant IFT_IB (line 235) | IFT_IB = 0xc7 constant IFT_ISDNBASIC (line 236) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 237) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 238) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 239) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 240) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 241) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 242) | IFT_ISO88026 = 0xa constant IFT_LAPB (line 243) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 244) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 245) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 246) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 247) | IFT_MODEM = 0x30 constant IFT_NSIP (line 248) | IFT_NSIP = 0x1b constant IFT_OTHER (line 249) | IFT_OTHER = 0x1 constant IFT_P10 (line 250) | IFT_P10 = 0xc constant IFT_P80 (line 251) | IFT_P80 = 0xd constant IFT_PARA (line 252) | IFT_PARA = 0x22 constant IFT_PPP (line 253) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 254) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 255) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 256) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 257) | IFT_RS232 = 0x21 constant IFT_SDLC (line 258) | IFT_SDLC = 0x11 constant IFT_SIP (line 259) | IFT_SIP = 0x1f constant IFT_SLIP (line 260) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 261) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 262) | IFT_SMDSICIP = 0x34 constant IFT_SN (line 263) | IFT_SN = 0x38 constant IFT_SONET (line 264) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 265) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 266) | IFT_SONETVT = 0x33 constant IFT_SP (line 267) | IFT_SP = 0x39 constant IFT_STARLAN (line 268) | IFT_STARLAN = 0xb constant IFT_T1 (line 269) | IFT_T1 = 0x12 constant IFT_TUNNEL (line 270) | IFT_TUNNEL = 0x3b constant IFT_ULTRA (line 271) | IFT_ULTRA = 0x1d constant IFT_V35 (line 272) | IFT_V35 = 0x2d constant IFT_VIPA (line 273) | IFT_VIPA = 0x37 constant IFT_X25 (line 274) | IFT_X25 = 0x5 constant IFT_X25DDN (line 275) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 276) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 277) | IFT_XETHER = 0x1a constant IGNBRK (line 278) | IGNBRK = 0x1 constant IGNCR (line 279) | IGNCR = 0x80 constant IGNPAR (line 280) | IGNPAR = 0x4 constant IMAXBEL (line 281) | IMAXBEL = 0x10000 constant INLCR (line 282) | INLCR = 0x40 constant INPCK (line 283) | INPCK = 0x10 constant IN_CLASSA_HOST (line 284) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 285) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 286) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 287) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 288) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 289) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 290) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 291) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 292) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 293) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 294) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 295) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 296) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 297) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 298) | IN_LOOPBACKNET = 0x7f constant IN_USE (line 299) | IN_USE = 0x1 constant IPPROTO_AH (line 300) | IPPROTO_AH = 0x33 constant IPPROTO_BIP (line 301) | IPPROTO_BIP = 0x53 constant IPPROTO_DSTOPTS (line 302) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 303) | IPPROTO_EGP = 0x8 constant IPPROTO_EON (line 304) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 305) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 306) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 307) | IPPROTO_GGP = 0x3 constant IPPROTO_GIF (line 308) | IPPROTO_GIF = 0x8c constant IPPROTO_GRE (line 309) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 310) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 311) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 312) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 313) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 314) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 315) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 316) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 317) | IPPROTO_IPV6 = 0x29 constant IPPROTO_LOCAL (line 318) | IPPROTO_LOCAL = 0x3f constant IPPROTO_MAX (line 319) | IPPROTO_MAX = 0x100 constant IPPROTO_MH (line 320) | IPPROTO_MH = 0x87 constant IPPROTO_NONE (line 321) | IPPROTO_NONE = 0x3b constant IPPROTO_PUP (line 322) | IPPROTO_PUP = 0xc constant IPPROTO_QOS (line 323) | IPPROTO_QOS = 0x2d constant IPPROTO_RAW (line 324) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 325) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 326) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 327) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 328) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 329) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 330) | IPPROTO_UDP = 0x11 constant IPV6_ADDRFORM (line 331) | IPV6_ADDRFORM = 0x16 constant IPV6_ADDR_PREFERENCES (line 332) | IPV6_ADDR_PREFERENCES = 0x4a constant IPV6_ADD_MEMBERSHIP (line 333) | IPV6_ADD_MEMBERSHIP = 0xc constant IPV6_AIXRAWSOCKET (line 334) | IPV6_AIXRAWSOCKET = 0x39 constant IPV6_CHECKSUM (line 335) | IPV6_CHECKSUM = 0x27 constant IPV6_DONTFRAG (line 336) | IPV6_DONTFRAG = 0x2d constant IPV6_DROP_MEMBERSHIP (line 337) | IPV6_DROP_MEMBERSHIP = 0xd constant IPV6_DSTOPTS (line 338) | IPV6_DSTOPTS = 0x36 constant IPV6_FLOWINFO_FLOWLABEL (line 339) | IPV6_FLOWINFO_FLOWLABEL = 0xffffff constant IPV6_FLOWINFO_PRIFLOW (line 340) | IPV6_FLOWINFO_PRIFLOW = 0xfffffff constant IPV6_FLOWINFO_PRIORITY (line 341) | IPV6_FLOWINFO_PRIORITY = 0xf000000 constant IPV6_FLOWINFO_SRFLAG (line 342) | IPV6_FLOWINFO_SRFLAG = 0x10000000 constant IPV6_FLOWINFO_VERSION (line 343) | IPV6_FLOWINFO_VERSION = 0xf0000000 constant IPV6_HOPLIMIT (line 344) | IPV6_HOPLIMIT = 0x28 constant IPV6_HOPOPTS (line 345) | IPV6_HOPOPTS = 0x34 constant IPV6_JOIN_GROUP (line 346) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 347) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MIPDSTOPTS (line 348) | IPV6_MIPDSTOPTS = 0x36 constant IPV6_MULTICAST_HOPS (line 349) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 350) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 351) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 352) | IPV6_NEXTHOP = 0x30 constant IPV6_NOPROBE (line 353) | IPV6_NOPROBE = 0x1c constant IPV6_PATHMTU (line 354) | IPV6_PATHMTU = 0x2e constant IPV6_PKTINFO (line 355) | IPV6_PKTINFO = 0x21 constant IPV6_PKTOPTIONS (line 356) | IPV6_PKTOPTIONS = 0x24 constant IPV6_PRIORITY_10 (line 357) | IPV6_PRIORITY_10 = 0xa000000 constant IPV6_PRIORITY_11 (line 358) | IPV6_PRIORITY_11 = 0xb000000 constant IPV6_PRIORITY_12 (line 359) | IPV6_PRIORITY_12 = 0xc000000 constant IPV6_PRIORITY_13 (line 360) | IPV6_PRIORITY_13 = 0xd000000 constant IPV6_PRIORITY_14 (line 361) | IPV6_PRIORITY_14 = 0xe000000 constant IPV6_PRIORITY_15 (line 362) | IPV6_PRIORITY_15 = 0xf000000 constant IPV6_PRIORITY_8 (line 363) | IPV6_PRIORITY_8 = 0x8000000 constant IPV6_PRIORITY_9 (line 364) | IPV6_PRIORITY_9 = 0x9000000 constant IPV6_PRIORITY_BULK (line 365) | IPV6_PRIORITY_BULK = 0x4000000 constant IPV6_PRIORITY_CONTROL (line 366) | IPV6_PRIORITY_CONTROL = 0x7000000 constant IPV6_PRIORITY_FILLER (line 367) | IPV6_PRIORITY_FILLER = 0x1000000 constant IPV6_PRIORITY_INTERACTIVE (line 368) | IPV6_PRIORITY_INTERACTIVE = 0x6000000 constant IPV6_PRIORITY_RESERVED1 (line 369) | IPV6_PRIORITY_RESERVED1 = 0x3000000 constant IPV6_PRIORITY_RESERVED2 (line 370) | IPV6_PRIORITY_RESERVED2 = 0x5000000 constant IPV6_PRIORITY_UNATTENDED (line 371) | IPV6_PRIORITY_UNATTENDED = 0x2000000 constant IPV6_PRIORITY_UNCHARACTERIZED (line 372) | IPV6_PRIORITY_UNCHARACTERIZED = 0x0 constant IPV6_RECVDSTOPTS (line 373) | IPV6_RECVDSTOPTS = 0x38 constant IPV6_RECVHOPLIMIT (line 374) | IPV6_RECVHOPLIMIT = 0x29 constant IPV6_RECVHOPOPTS (line 375) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVHOPS (line 376) | IPV6_RECVHOPS = 0x22 constant IPV6_RECVIF (line 377) | IPV6_RECVIF = 0x1e constant IPV6_RECVPATHMTU (line 378) | IPV6_RECVPATHMTU = 0x2f constant IPV6_RECVPKTINFO (line 379) | IPV6_RECVPKTINFO = 0x23 constant IPV6_RECVRTHDR (line 380) | IPV6_RECVRTHDR = 0x33 constant IPV6_RECVSRCRT (line 381) | IPV6_RECVSRCRT = 0x1d constant IPV6_RECVTCLASS (line 382) | IPV6_RECVTCLASS = 0x2a constant IPV6_RTHDR (line 383) | IPV6_RTHDR = 0x32 constant IPV6_RTHDRDSTOPTS (line 384) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_TYPE_0 (line 385) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RTHDR_TYPE_2 (line 386) | IPV6_RTHDR_TYPE_2 = 0x2 constant IPV6_SENDIF (line 387) | IPV6_SENDIF = 0x1f constant IPV6_SRFLAG_LOOSE (line 388) | IPV6_SRFLAG_LOOSE = 0x0 constant IPV6_SRFLAG_STRICT (line 389) | IPV6_SRFLAG_STRICT = 0x10000000 constant IPV6_TCLASS (line 390) | IPV6_TCLASS = 0x2b constant IPV6_TOKEN_LENGTH (line 391) | IPV6_TOKEN_LENGTH = 0x40 constant IPV6_UNICAST_HOPS (line 392) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 393) | IPV6_USE_MIN_MTU = 0x2c constant IPV6_V6ONLY (line 394) | IPV6_V6ONLY = 0x25 constant IPV6_VERSION (line 395) | IPV6_VERSION = 0x60000000 constant IP_ADDRFORM (line 396) | IP_ADDRFORM = 0x16 constant IP_ADD_MEMBERSHIP (line 397) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 398) | IP_ADD_SOURCE_MEMBERSHIP = 0x3c constant IP_BLOCK_SOURCE (line 399) | IP_BLOCK_SOURCE = 0x3a constant IP_BROADCAST_IF (line 400) | IP_BROADCAST_IF = 0x10 constant IP_CACHE_LINE_SIZE (line 401) | IP_CACHE_LINE_SIZE = 0x80 constant IP_DEFAULT_MULTICAST_LOOP (line 402) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 403) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 404) | IP_DF = 0x4000 constant IP_DHCPMODE (line 405) | IP_DHCPMODE = 0x11 constant IP_DONTFRAG (line 406) | IP_DONTFRAG = 0x19 constant IP_DROP_MEMBERSHIP (line 407) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 408) | IP_DROP_SOURCE_MEMBERSHIP = 0x3d constant IP_FINDPMTU (line 409) | IP_FINDPMTU = 0x1a constant IP_HDRINCL (line 410) | IP_HDRINCL = 0x2 constant IP_INC_MEMBERSHIPS (line 411) | IP_INC_MEMBERSHIPS = 0x14 constant IP_INIT_MEMBERSHIP (line 412) | IP_INIT_MEMBERSHIP = 0x14 constant IP_MAXPACKET (line 413) | IP_MAXPACKET = 0xffff constant IP_MF (line 414) | IP_MF = 0x2000 constant IP_MSS (line 415) | IP_MSS = 0x240 constant IP_MULTICAST_HOPS (line 416) | IP_MULTICAST_HOPS = 0xa constant IP_MULTICAST_IF (line 417) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 418) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 419) | IP_MULTICAST_TTL = 0xa constant IP_OPT (line 420) | IP_OPT = 0x1b constant IP_OPTIONS (line 421) | IP_OPTIONS = 0x1 constant IP_PMTUAGE (line 422) | IP_PMTUAGE = 0x1b constant IP_RECVDSTADDR (line 423) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 424) | IP_RECVIF = 0x14 constant IP_RECVIFINFO (line 425) | IP_RECVIFINFO = 0xf constant IP_RECVINTERFACE (line 426) | IP_RECVINTERFACE = 0x20 constant IP_RECVMACHDR (line 427) | IP_RECVMACHDR = 0xe constant IP_RECVOPTS (line 428) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 429) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 430) | IP_RECVTTL = 0x22 constant IP_RETOPTS (line 431) | IP_RETOPTS = 0x8 constant IP_SOURCE_FILTER (line 432) | IP_SOURCE_FILTER = 0x48 constant IP_TOS (line 433) | IP_TOS = 0x3 constant IP_TTL (line 434) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 435) | IP_UNBLOCK_SOURCE = 0x3b constant IP_UNICAST_HOPS (line 436) | IP_UNICAST_HOPS = 0x4 constant ISIG (line 437) | ISIG = 0x1 constant ISTRIP (line 438) | ISTRIP = 0x20 constant IUCLC (line 439) | IUCLC = 0x800 constant IXANY (line 440) | IXANY = 0x1000 constant IXOFF (line 441) | IXOFF = 0x400 constant IXON (line 442) | IXON = 0x200 constant I_FLUSH (line 443) | I_FLUSH = 0x20005305 constant LNOFLSH (line 444) | LNOFLSH = 0x8000 constant LOCK_EX (line 445) | LOCK_EX = 0x2 constant LOCK_NB (line 446) | LOCK_NB = 0x4 constant LOCK_SH (line 447) | LOCK_SH = 0x1 constant LOCK_UN (line 448) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 449) | MADV_DONTNEED = 0x4 constant MADV_NORMAL (line 450) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 451) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 452) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 453) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 454) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 455) | MAP_ANON = 0x10 constant MAP_ANONYMOUS (line 456) | MAP_ANONYMOUS = 0x10 constant MAP_FILE (line 457) | MAP_FILE = 0x0 constant MAP_FIXED (line 458) | MAP_FIXED = 0x100 constant MAP_PRIVATE (line 459) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 460) | MAP_SHARED = 0x1 constant MAP_TYPE (line 461) | MAP_TYPE = 0xf0 constant MAP_VARIABLE (line 462) | MAP_VARIABLE = 0x0 constant MCAST_BLOCK_SOURCE (line 463) | MCAST_BLOCK_SOURCE = 0x40 constant MCAST_EXCLUDE (line 464) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 465) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 466) | MCAST_JOIN_GROUP = 0x3e constant MCAST_JOIN_SOURCE_GROUP (line 467) | MCAST_JOIN_SOURCE_GROUP = 0x42 constant MCAST_LEAVE_GROUP (line 468) | MCAST_LEAVE_GROUP = 0x3f constant MCAST_LEAVE_SOURCE_GROUP (line 469) | MCAST_LEAVE_SOURCE_GROUP = 0x43 constant MCAST_SOURCE_FILTER (line 470) | MCAST_SOURCE_FILTER = 0x49 constant MCAST_UNBLOCK_SOURCE (line 471) | MCAST_UNBLOCK_SOURCE = 0x41 constant MCL_CURRENT (line 472) | MCL_CURRENT = 0x100 constant MCL_FUTURE (line 473) | MCL_FUTURE = 0x200 constant MSG_ANY (line 474) | MSG_ANY = 0x4 constant MSG_ARGEXT (line 475) | MSG_ARGEXT = 0x400 constant MSG_BAND (line 476) | MSG_BAND = 0x2 constant MSG_COMPAT (line 477) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 478) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 479) | MSG_DONTROUTE = 0x4 constant MSG_EOR (line 480) | MSG_EOR = 0x8 constant MSG_HIPRI (line 481) | MSG_HIPRI = 0x1 constant MSG_MAXIOVLEN (line 482) | MSG_MAXIOVLEN = 0x10 constant MSG_MPEG2 (line 483) | MSG_MPEG2 = 0x80 constant MSG_NONBLOCK (line 484) | MSG_NONBLOCK = 0x4000 constant MSG_NOSIGNAL (line 485) | MSG_NOSIGNAL = 0x100 constant MSG_OOB (line 486) | MSG_OOB = 0x1 constant MSG_PEEK (line 487) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 488) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 489) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 490) | MSG_WAITFORONE = 0x200 constant MS_ASYNC (line 491) | MS_ASYNC = 0x10 constant MS_EINTR (line 492) | MS_EINTR = 0x80 constant MS_INVALIDATE (line 493) | MS_INVALIDATE = 0x40 constant MS_PER_SEC (line 494) | MS_PER_SEC = 0x3e8 constant MS_SYNC (line 495) | MS_SYNC = 0x20 constant NFDBITS (line 496) | NFDBITS = 0x20 constant NL0 (line 497) | NL0 = 0x0 constant NL1 (line 498) | NL1 = 0x4000 constant NL2 (line 499) | NL2 = 0x8000 constant NL3 (line 500) | NL3 = 0xc000 constant NLDLY (line 501) | NLDLY = 0x4000 constant NOFLSH (line 502) | NOFLSH = 0x80 constant NOFLUSH (line 503) | NOFLUSH = 0x80000000 constant OCRNL (line 504) | OCRNL = 0x8 constant OFDEL (line 505) | OFDEL = 0x80 constant OFILL (line 506) | OFILL = 0x40 constant OLCUC (line 507) | OLCUC = 0x2 constant ONLCR (line 508) | ONLCR = 0x4 constant ONLRET (line 509) | ONLRET = 0x20 constant ONOCR (line 510) | ONOCR = 0x10 constant ONOEOT (line 511) | ONOEOT = 0x80000 constant OPOST (line 512) | OPOST = 0x1 constant OXTABS (line 513) | OXTABS = 0x40000 constant O_ACCMODE (line 514) | O_ACCMODE = 0x23 constant O_APPEND (line 515) | O_APPEND = 0x8 constant O_CIO (line 516) | O_CIO = 0x80 constant O_CIOR (line 517) | O_CIOR = 0x800000000 constant O_CLOEXEC (line 518) | O_CLOEXEC = 0x800000 constant O_CREAT (line 519) | O_CREAT = 0x100 constant O_DEFER (line 520) | O_DEFER = 0x2000 constant O_DELAY (line 521) | O_DELAY = 0x4000 constant O_DIRECT (line 522) | O_DIRECT = 0x8000000 constant O_DIRECTORY (line 523) | O_DIRECTORY = 0x80000 constant O_DSYNC (line 524) | O_DSYNC = 0x400000 constant O_EFSOFF (line 525) | O_EFSOFF = 0x400000000 constant O_EFSON (line 526) | O_EFSON = 0x200000000 constant O_EXCL (line 527) | O_EXCL = 0x400 constant O_EXEC (line 528) | O_EXEC = 0x20 constant O_LARGEFILE (line 529) | O_LARGEFILE = 0x4000000 constant O_NDELAY (line 530) | O_NDELAY = 0x8000 constant O_NOCACHE (line 531) | O_NOCACHE = 0x100000 constant O_NOCTTY (line 532) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 533) | O_NOFOLLOW = 0x1000000 constant O_NONBLOCK (line 534) | O_NONBLOCK = 0x4 constant O_NONE (line 535) | O_NONE = 0x3 constant O_NSHARE (line 536) | O_NSHARE = 0x10000 constant O_RAW (line 537) | O_RAW = 0x100000000 constant O_RDONLY (line 538) | O_RDONLY = 0x0 constant O_RDWR (line 539) | O_RDWR = 0x2 constant O_RSHARE (line 540) | O_RSHARE = 0x1000 constant O_RSYNC (line 541) | O_RSYNC = 0x200000 constant O_SEARCH (line 542) | O_SEARCH = 0x20 constant O_SNAPSHOT (line 543) | O_SNAPSHOT = 0x40 constant O_SYNC (line 544) | O_SYNC = 0x10 constant O_TRUNC (line 545) | O_TRUNC = 0x200 constant O_TTY_INIT (line 546) | O_TTY_INIT = 0x0 constant O_WRONLY (line 547) | O_WRONLY = 0x1 constant PARENB (line 548) | PARENB = 0x100 constant PAREXT (line 549) | PAREXT = 0x100000 constant PARMRK (line 550) | PARMRK = 0x8 constant PARODD (line 551) | PARODD = 0x200 constant PENDIN (line 552) | PENDIN = 0x20000000 constant PRIO_PGRP (line 553) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 554) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 555) | PRIO_USER = 0x2 constant PROT_EXEC (line 556) | PROT_EXEC = 0x4 constant PROT_NONE (line 557) | PROT_NONE = 0x0 constant PROT_READ (line 558) | PROT_READ = 0x1 constant PROT_WRITE (line 559) | PROT_WRITE = 0x2 constant PR_64BIT (line 560) | PR_64BIT = 0x20 constant PR_ADDR (line 561) | PR_ADDR = 0x2 constant PR_ARGEXT (line 562) | PR_ARGEXT = 0x400 constant PR_ATOMIC (line 563) | PR_ATOMIC = 0x1 constant PR_CONNREQUIRED (line 564) | PR_CONNREQUIRED = 0x4 constant PR_FASTHZ (line 565) | PR_FASTHZ = 0x5 constant PR_INP (line 566) | PR_INP = 0x40 constant PR_INTRLEVEL (line 567) | PR_INTRLEVEL = 0x8000 constant PR_MLS (line 568) | PR_MLS = 0x100 constant PR_MLS_1_LABEL (line 569) | PR_MLS_1_LABEL = 0x200 constant PR_NOEOR (line 570) | PR_NOEOR = 0x4000 constant PR_RIGHTS (line 571) | PR_RIGHTS = 0x10 constant PR_SLOWHZ (line 572) | PR_SLOWHZ = 0x2 constant PR_WANTRCVD (line 573) | PR_WANTRCVD = 0x8 constant RLIMIT_AS (line 574) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 575) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 576) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 577) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 578) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 579) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 580) | RLIMIT_NPROC = 0x9 constant RLIMIT_RSS (line 581) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 582) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 583) | RLIM_INFINITY = 0x7fffffff constant RTAX_AUTHOR (line 584) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 585) | RTAX_BRD = 0x7 constant RTAX_DST (line 586) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 587) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 588) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 589) | RTAX_IFA = 0x5 constant RTAX_IFP (line 590) | RTAX_IFP = 0x4 constant RTAX_MAX (line 591) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 592) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 593) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 594) | RTA_BRD = 0x80 constant RTA_DOWNSTREAM (line 595) | RTA_DOWNSTREAM = 0x100 constant RTA_DST (line 596) | RTA_DST = 0x1 constant RTA_GATEWAY (line 597) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 598) | RTA_GENMASK = 0x8 constant RTA_IFA (line 599) | RTA_IFA = 0x20 constant RTA_IFP (line 600) | RTA_IFP = 0x10 constant RTA_NETMASK (line 601) | RTA_NETMASK = 0x4 constant RTC_IA64 (line 602) | RTC_IA64 = 0x3 constant RTC_POWER (line 603) | RTC_POWER = 0x1 constant RTC_POWER_PC (line 604) | RTC_POWER_PC = 0x2 constant RTF_ACTIVE_DGD (line 605) | RTF_ACTIVE_DGD = 0x1000000 constant RTF_BCE (line 606) | RTF_BCE = 0x80000 constant RTF_BLACKHOLE (line 607) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 608) | RTF_BROADCAST = 0x400000 constant RTF_BUL (line 609) | RTF_BUL = 0x2000 constant RTF_CLONE (line 610) | RTF_CLONE = 0x10000 constant RTF_CLONED (line 611) | RTF_CLONED = 0x20000 constant RTF_CLONING (line 612) | RTF_CLONING = 0x100 constant RTF_DONE (line 613) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 614) | RTF_DYNAMIC = 0x10 constant RTF_FREE_IN_PROG (line 615) | RTF_FREE_IN_PROG = 0x4000000 constant RTF_GATEWAY (line 616) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 617) | RTF_HOST = 0x4 constant RTF_LLINFO (line 618) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 619) | RTF_LOCAL = 0x200000 constant RTF_MASK (line 620) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 621) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 622) | RTF_MULTICAST = 0x800000 constant RTF_PERMANENT6 (line 623) | RTF_PERMANENT6 = 0x8000000 constant RTF_PINNED (line 624) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 625) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 626) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 627) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 628) | RTF_REJECT = 0x8 constant RTF_SMALLMTU (line 629) | RTF_SMALLMTU = 0x40000 constant RTF_STATIC (line 630) | RTF_STATIC = 0x800 constant RTF_STOPSRCH (line 631) | RTF_STOPSRCH = 0x2000000 constant RTF_UNREACHABLE (line 632) | RTF_UNREACHABLE = 0x10000000 constant RTF_UP (line 633) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 634) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 635) | RTM_ADD = 0x1 constant RTM_CHANGE (line 636) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 637) | RTM_DELADDR = 0xd constant RTM_DELETE (line 638) | RTM_DELETE = 0x2 constant RTM_EXPIRE (line 639) | RTM_EXPIRE = 0xf constant RTM_GET (line 640) | RTM_GET = 0x4 constant RTM_GETNEXT (line 641) | RTM_GETNEXT = 0x11 constant RTM_IFINFO (line 642) | RTM_IFINFO = 0xe constant RTM_LOCK (line 643) | RTM_LOCK = 0x8 constant RTM_LOSING (line 644) | RTM_LOSING = 0x5 constant RTM_MISS (line 645) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 646) | RTM_NEWADDR = 0xc constant RTM_OLDADD (line 647) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 648) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 649) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 650) | RTM_RESOLVE = 0xb constant RTM_RTLOST (line 651) | RTM_RTLOST = 0x10 constant RTM_RTTUNIT (line 652) | RTM_RTTUNIT = 0xf4240 constant RTM_SAMEADDR (line 653) | RTM_SAMEADDR = 0x12 constant RTM_SET (line 654) | RTM_SET = 0x13 constant RTM_VERSION (line 655) | RTM_VERSION = 0x2 constant RTM_VERSION_GR (line 656) | RTM_VERSION_GR = 0x4 constant RTM_VERSION_GR_COMPAT (line 657) | RTM_VERSION_GR_COMPAT = 0x3 constant RTM_VERSION_POLICY (line 658) | RTM_VERSION_POLICY = 0x5 constant RTM_VERSION_POLICY_EXT (line 659) | RTM_VERSION_POLICY_EXT = 0x6 constant RTM_VERSION_POLICY_PRFN (line 660) | RTM_VERSION_POLICY_PRFN = 0x7 constant RTV_EXPIRE (line 661) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 662) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 663) | RTV_MTU = 0x1 constant RTV_RPIPE (line 664) | RTV_RPIPE = 0x8 constant RTV_RTT (line 665) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 666) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 667) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 668) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 669) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 670) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 671) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 672) | SCM_RIGHTS = 0x1 constant SHUT_RD (line 673) | SHUT_RD = 0x0 constant SHUT_RDWR (line 674) | SHUT_RDWR = 0x2 constant SHUT_WR (line 675) | SHUT_WR = 0x1 constant SIGMAX64 (line 676) | SIGMAX64 = 0xff constant SIGQUEUE_MAX (line 677) | SIGQUEUE_MAX = 0x20 constant SIOCADDIFVIPA (line 678) | SIOCADDIFVIPA = 0x20006942 constant SIOCADDMTU (line 679) | SIOCADDMTU = -0x7ffb9690 constant SIOCADDMULTI (line 680) | SIOCADDMULTI = -0x7fdf96cf constant SIOCADDNETID (line 681) | SIOCADDNETID = -0x7fd796a9 constant SIOCADDRT (line 682) | SIOCADDRT = -0x7fcf8df6 constant SIOCAIFADDR (line 683) | SIOCAIFADDR = -0x7fbf96e6 constant SIOCATMARK (line 684) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 685) | SIOCDARP = -0x7fb396e0 constant SIOCDELIFVIPA (line 686) | SIOCDELIFVIPA = 0x20006943 constant SIOCDELMTU (line 687) | SIOCDELMTU = -0x7ffb968f constant SIOCDELMULTI (line 688) | SIOCDELMULTI = -0x7fdf96ce constant SIOCDELPMTU (line 689) | SIOCDELPMTU = -0x7fd78ff6 constant SIOCDELRT (line 690) | SIOCDELRT = -0x7fcf8df5 constant SIOCDIFADDR (line 691) | SIOCDIFADDR = -0x7fd796e7 constant SIOCDNETOPT (line 692) | SIOCDNETOPT = -0x3ffe9680 constant SIOCDX25XLATE (line 693) | SIOCDX25XLATE = -0x7fd7969b constant SIOCFIFADDR (line 694) | SIOCFIFADDR = -0x7fdf966d constant SIOCGARP (line 695) | SIOCGARP = -0x3fb396da constant SIOCGETMTUS (line 696) | SIOCGETMTUS = 0x2000696f constant SIOCGETSGCNT (line 697) | SIOCGETSGCNT = -0x3feb8acc constant SIOCGETVIFCNT (line 698) | SIOCGETVIFCNT = -0x3feb8acd constant SIOCGHIWAT (line 699) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 700) | SIOCGIFADDR = -0x3fd796df constant SIOCGIFADDRS (line 701) | SIOCGIFADDRS = 0x2000698c constant SIOCGIFBAUDRATE (line 702) | SIOCGIFBAUDRATE = -0x3fdf9669 constant SIOCGIFBRDADDR (line 703) | SIOCGIFBRDADDR = -0x3fd796dd constant SIOCGIFCONF (line 704) | SIOCGIFCONF = -0x3ff796bb constant SIOCGIFCONFGLOB (line 705) | SIOCGIFCONFGLOB = -0x3ff79670 constant SIOCGIFDSTADDR (line 706) | SIOCGIFDSTADDR = -0x3fd796de constant SIOCGIFFLAGS (line 707) | SIOCGIFFLAGS = -0x3fd796ef constant SIOCGIFGIDLIST (line 708) | SIOCGIFGIDLIST = 0x20006968 constant SIOCGIFHWADDR (line 709) | SIOCGIFHWADDR = -0x3fab966b constant SIOCGIFMETRIC (line 710) | SIOCGIFMETRIC = -0x3fd796e9 constant SIOCGIFMTU (line 711) | SIOCGIFMTU = -0x3fd796aa constant SIOCGIFNETMASK (line 712) | SIOCGIFNETMASK = -0x3fd796db constant SIOCGIFOPTIONS (line 713) | SIOCGIFOPTIONS = -0x3fd796d6 constant SIOCGISNO (line 714) | SIOCGISNO = -0x3fd79695 constant SIOCGLOADF (line 715) | SIOCGLOADF = -0x3ffb967e constant SIOCGLOWAT (line 716) | SIOCGLOWAT = 0x40047303 constant SIOCGNETOPT (line 717) | SIOCGNETOPT = -0x3ffe96a5 constant SIOCGNETOPT1 (line 718) | SIOCGNETOPT1 = -0x3fdf967f constant SIOCGNMTUS (line 719) | SIOCGNMTUS = 0x2000696e constant SIOCGPGRP (line 720) | SIOCGPGRP = 0x40047309 constant SIOCGSIZIFCONF (line 721) | SIOCGSIZIFCONF = 0x4004696a constant SIOCGSRCFILTER (line 722) | SIOCGSRCFILTER = -0x3fe796cb constant SIOCGTUNEPHASE (line 723) | SIOCGTUNEPHASE = -0x3ffb9676 constant SIOCGX25XLATE (line 724) | SIOCGX25XLATE = -0x3fd7969c constant SIOCIFATTACH (line 725) | SIOCIFATTACH = -0x7fdf9699 constant SIOCIFDETACH (line 726) | SIOCIFDETACH = -0x7fdf969a constant SIOCIFGETPKEY (line 727) | SIOCIFGETPKEY = -0x7fdf969b constant SIOCIF_ATM_DARP (line 728) | SIOCIF_ATM_DARP = -0x7fdf9683 constant SIOCIF_ATM_DUMPARP (line 729) | SIOCIF_ATM_DUMPARP = -0x7fdf9685 constant SIOCIF_ATM_GARP (line 730) | SIOCIF_ATM_GARP = -0x7fdf9682 constant SIOCIF_ATM_IDLE (line 731) | SIOCIF_ATM_IDLE = -0x7fdf9686 constant SIOCIF_ATM_SARP (line 732) | SIOCIF_ATM_SARP = -0x7fdf9681 constant SIOCIF_ATM_SNMPARP (line 733) | SIOCIF_ATM_SNMPARP = -0x7fdf9687 constant SIOCIF_ATM_SVC (line 734) | SIOCIF_ATM_SVC = -0x7fdf9684 constant SIOCIF_ATM_UBR (line 735) | SIOCIF_ATM_UBR = -0x7fdf9688 constant SIOCIF_DEVHEALTH (line 736) | SIOCIF_DEVHEALTH = -0x7ffb966c constant SIOCIF_IB_ARP_INCOMP (line 737) | SIOCIF_IB_ARP_INCOMP = -0x7fdf9677 constant SIOCIF_IB_ARP_TIMER (line 738) | SIOCIF_IB_ARP_TIMER = -0x7fdf9678 constant SIOCIF_IB_CLEAR_PINFO (line 739) | SIOCIF_IB_CLEAR_PINFO = -0x3fdf966f constant SIOCIF_IB_DEL_ARP (line 740) | SIOCIF_IB_DEL_ARP = -0x7fdf967f constant SIOCIF_IB_DEL_PINFO (line 741) | SIOCIF_IB_DEL_PINFO = -0x3fdf9670 constant SIOCIF_IB_DUMP_ARP (line 742) | SIOCIF_IB_DUMP_ARP = -0x7fdf9680 constant SIOCIF_IB_GET_ARP (line 743) | SIOCIF_IB_GET_ARP = -0x7fdf967e constant SIOCIF_IB_GET_INFO (line 744) | SIOCIF_IB_GET_INFO = -0x3f879675 constant SIOCIF_IB_GET_STATS (line 745) | SIOCIF_IB_GET_STATS = -0x3f879672 constant SIOCIF_IB_NOTIFY_ADDR_REM (line 746) | SIOCIF_IB_NOTIFY_ADDR_REM = -0x3f87966a constant SIOCIF_IB_RESET_STATS (line 747) | SIOCIF_IB_RESET_STATS = -0x3f879671 constant SIOCIF_IB_RESIZE_CQ (line 748) | SIOCIF_IB_RESIZE_CQ = -0x7fdf9679 constant SIOCIF_IB_SET_ARP (line 749) | SIOCIF_IB_SET_ARP = -0x7fdf967d constant SIOCIF_IB_SET_PKEY (line 750) | SIOCIF_IB_SET_PKEY = -0x7fdf967c constant SIOCIF_IB_SET_PORT (line 751) | SIOCIF_IB_SET_PORT = -0x7fdf967b constant SIOCIF_IB_SET_QKEY (line 752) | SIOCIF_IB_SET_QKEY = -0x7fdf9676 constant SIOCIF_IB_SET_QSIZE (line 753) | SIOCIF_IB_SET_QSIZE = -0x7fdf967a constant SIOCLISTIFVIPA (line 754) | SIOCLISTIFVIPA = 0x20006944 constant SIOCSARP (line 755) | SIOCSARP = -0x7fb396e2 constant SIOCSHIWAT (line 756) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 757) | SIOCSIFADDR = -0x7fd796f4 constant SIOCSIFADDRORI (line 758) | SIOCSIFADDRORI = -0x7fdb9673 constant SIOCSIFBRDADDR (line 759) | SIOCSIFBRDADDR = -0x7fd796ed constant SIOCSIFDSTADDR (line 760) | SIOCSIFDSTADDR = -0x7fd796f2 constant SIOCSIFFLAGS (line 761) | SIOCSIFFLAGS = -0x7fd796f0 constant SIOCSIFGIDLIST (line 762) | SIOCSIFGIDLIST = 0x20006969 constant SIOCSIFMETRIC (line 763) | SIOCSIFMETRIC = -0x7fd796e8 constant SIOCSIFMTU (line 764) | SIOCSIFMTU = -0x7fd796a8 constant SIOCSIFNETDUMP (line 765) | SIOCSIFNETDUMP = -0x7fd796e4 constant SIOCSIFNETMASK (line 766) | SIOCSIFNETMASK = -0x7fd796ea constant SIOCSIFOPTIONS (line 767) | SIOCSIFOPTIONS = -0x7fd796d7 constant SIOCSIFSUBCHAN (line 768) | SIOCSIFSUBCHAN = -0x7fd796e5 constant SIOCSISNO (line 769) | SIOCSISNO = -0x7fd79694 constant SIOCSLOADF (line 770) | SIOCSLOADF = -0x3ffb967d constant SIOCSLOWAT (line 771) | SIOCSLOWAT = 0x80047302 constant SIOCSNETOPT (line 772) | SIOCSNETOPT = -0x7ffe96a6 constant SIOCSPGRP (line 773) | SIOCSPGRP = 0x80047308 constant SIOCSX25XLATE (line 774) | SIOCSX25XLATE = -0x7fd7969d constant SOCK_CONN_DGRAM (line 775) | SOCK_CONN_DGRAM = 0x6 constant SOCK_DGRAM (line 776) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 777) | SOCK_RAW = 0x3 constant SOCK_RDM (line 778) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 779) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 780) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 781) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 782) | SOMAXCONN = 0x400 constant SO_ACCEPTCONN (line 783) | SO_ACCEPTCONN = 0x2 constant SO_AUDIT (line 784) | SO_AUDIT = 0x8000 constant SO_BROADCAST (line 785) | SO_BROADCAST = 0x20 constant SO_CKSUMRECV (line 786) | SO_CKSUMRECV = 0x800 constant SO_DEBUG (line 787) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 788) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 789) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 790) | SO_KEEPALIVE = 0x8 constant SO_KERNACCEPT (line 791) | SO_KERNACCEPT = 0x2000 constant SO_LINGER (line 792) | SO_LINGER = 0x80 constant SO_NOMULTIPATH (line 793) | SO_NOMULTIPATH = 0x4000 constant SO_NOREUSEADDR (line 794) | SO_NOREUSEADDR = 0x1000 constant SO_OOBINLINE (line 795) | SO_OOBINLINE = 0x100 constant SO_PEERID (line 796) | SO_PEERID = 0x1009 constant SO_RCVBUF (line 797) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 798) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 799) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 800) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 801) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 802) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 803) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 804) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMPNS (line 805) | SO_TIMESTAMPNS = 0x100a constant SO_TYPE (line 806) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 807) | SO_USELOOPBACK = 0x40 constant SO_USE_IFBUFS (line 808) | SO_USE_IFBUFS = 0x400 constant S_BANDURG (line 809) | S_BANDURG = 0x400 constant S_EMODFMT (line 810) | S_EMODFMT = 0x3c000000 constant S_ENFMT (line 811) | S_ENFMT = 0x400 constant S_ERROR (line 812) | S_ERROR = 0x100 constant S_HANGUP (line 813) | S_HANGUP = 0x200 constant S_HIPRI (line 814) | S_HIPRI = 0x2 constant S_ICRYPTO (line 815) | S_ICRYPTO = 0x80000 constant S_IEXEC (line 816) | S_IEXEC = 0x40 constant S_IFBLK (line 817) | S_IFBLK = 0x6000 constant S_IFCHR (line 818) | S_IFCHR = 0x2000 constant S_IFDIR (line 819) | S_IFDIR = 0x4000 constant S_IFIFO (line 820) | S_IFIFO = 0x1000 constant S_IFJOURNAL (line 821) | S_IFJOURNAL = 0x10000 constant S_IFLNK (line 822) | S_IFLNK = 0xa000 constant S_IFMPX (line 823) | S_IFMPX = 0x2200 constant S_IFMT (line 824) | S_IFMT = 0xf000 constant S_IFPDIR (line 825) | S_IFPDIR = 0x4000000 constant S_IFPSDIR (line 826) | S_IFPSDIR = 0x8000000 constant S_IFPSSDIR (line 827) | S_IFPSSDIR = 0xc000000 constant S_IFREG (line 828) | S_IFREG = 0x8000 constant S_IFSOCK (line 829) | S_IFSOCK = 0xc000 constant S_IFSYSEA (line 830) | S_IFSYSEA = 0x30000000 constant S_INPUT (line 831) | S_INPUT = 0x1 constant S_IREAD (line 832) | S_IREAD = 0x100 constant S_IRGRP (line 833) | S_IRGRP = 0x20 constant S_IROTH (line 834) | S_IROTH = 0x4 constant S_IRUSR (line 835) | S_IRUSR = 0x100 constant S_IRWXG (line 836) | S_IRWXG = 0x38 constant S_IRWXO (line 837) | S_IRWXO = 0x7 constant S_IRWXU (line 838) | S_IRWXU = 0x1c0 constant S_ISGID (line 839) | S_ISGID = 0x400 constant S_ISUID (line 840) | S_ISUID = 0x800 constant S_ISVTX (line 841) | S_ISVTX = 0x200 constant S_ITCB (line 842) | S_ITCB = 0x1000000 constant S_ITP (line 843) | S_ITP = 0x800000 constant S_IWGRP (line 844) | S_IWGRP = 0x10 constant S_IWOTH (line 845) | S_IWOTH = 0x2 constant S_IWRITE (line 846) | S_IWRITE = 0x80 constant S_IWUSR (line 847) | S_IWUSR = 0x80 constant S_IXACL (line 848) | S_IXACL = 0x2000000 constant S_IXATTR (line 849) | S_IXATTR = 0x40000 constant S_IXGRP (line 850) | S_IXGRP = 0x8 constant S_IXINTERFACE (line 851) | S_IXINTERFACE = 0x100000 constant S_IXMOD (line 852) | S_IXMOD = 0x40000000 constant S_IXOTH (line 853) | S_IXOTH = 0x1 constant S_IXUSR (line 854) | S_IXUSR = 0x40 constant S_MSG (line 855) | S_MSG = 0x8 constant S_OUTPUT (line 856) | S_OUTPUT = 0x4 constant S_RDBAND (line 857) | S_RDBAND = 0x20 constant S_RDNORM (line 858) | S_RDNORM = 0x10 constant S_RESERVED1 (line 859) | S_RESERVED1 = 0x20000 constant S_RESERVED2 (line 860) | S_RESERVED2 = 0x200000 constant S_RESERVED3 (line 861) | S_RESERVED3 = 0x400000 constant S_RESERVED4 (line 862) | S_RESERVED4 = 0x80000000 constant S_RESFMT1 (line 863) | S_RESFMT1 = 0x10000000 constant S_RESFMT10 (line 864) | S_RESFMT10 = 0x34000000 constant S_RESFMT11 (line 865) | S_RESFMT11 = 0x38000000 constant S_RESFMT12 (line 866) | S_RESFMT12 = 0x3c000000 constant S_RESFMT2 (line 867) | S_RESFMT2 = 0x14000000 constant S_RESFMT3 (line 868) | S_RESFMT3 = 0x18000000 constant S_RESFMT4 (line 869) | S_RESFMT4 = 0x1c000000 constant S_RESFMT5 (line 870) | S_RESFMT5 = 0x20000000 constant S_RESFMT6 (line 871) | S_RESFMT6 = 0x24000000 constant S_RESFMT7 (line 872) | S_RESFMT7 = 0x28000000 constant S_RESFMT8 (line 873) | S_RESFMT8 = 0x2c000000 constant S_WRBAND (line 874) | S_WRBAND = 0x80 constant S_WRNORM (line 875) | S_WRNORM = 0x40 constant TAB0 (line 876) | TAB0 = 0x0 constant TAB1 (line 877) | TAB1 = 0x400 constant TAB2 (line 878) | TAB2 = 0x800 constant TAB3 (line 879) | TAB3 = 0xc00 constant TABDLY (line 880) | TABDLY = 0xc00 constant TCFLSH (line 881) | TCFLSH = 0x540c constant TCGETA (line 882) | TCGETA = 0x5405 constant TCGETS (line 883) | TCGETS = 0x5401 constant TCIFLUSH (line 884) | TCIFLUSH = 0x0 constant TCIOFF (line 885) | TCIOFF = 0x2 constant TCIOFLUSH (line 886) | TCIOFLUSH = 0x2 constant TCION (line 887) | TCION = 0x3 constant TCOFLUSH (line 888) | TCOFLUSH = 0x1 constant TCOOFF (line 889) | TCOOFF = 0x0 constant TCOON (line 890) | TCOON = 0x1 constant TCP_24DAYS_WORTH_OF_SLOWTICKS (line 891) | TCP_24DAYS_WORTH_OF_SLOWTICKS = 0x3f4800 constant TCP_ACLADD (line 892) | TCP_ACLADD = 0x23 constant TCP_ACLBIND (line 893) | TCP_ACLBIND = 0x26 constant TCP_ACLCLEAR (line 894) | TCP_ACLCLEAR = 0x22 constant TCP_ACLDEL (line 895) | TCP_ACLDEL = 0x24 constant TCP_ACLDENY (line 896) | TCP_ACLDENY = 0x8 constant TCP_ACLFLUSH (line 897) | TCP_ACLFLUSH = 0x21 constant TCP_ACLGID (line 898) | TCP_ACLGID = 0x1 constant TCP_ACLLS (line 899) | TCP_ACLLS = 0x25 constant TCP_ACLSUBNET (line 900) | TCP_ACLSUBNET = 0x4 constant TCP_ACLUID (line 901) | TCP_ACLUID = 0x2 constant TCP_CWND_DF (line 902) | TCP_CWND_DF = 0x16 constant TCP_CWND_IF (line 903) | TCP_CWND_IF = 0x15 constant TCP_DELAY_ACK_FIN (line 904) | TCP_DELAY_ACK_FIN = 0x2 constant TCP_DELAY_ACK_SYN (line 905) | TCP_DELAY_ACK_SYN = 0x1 constant TCP_FASTNAME (line 906) | TCP_FASTNAME = 0x101080a constant TCP_KEEPCNT (line 907) | TCP_KEEPCNT = 0x13 constant TCP_KEEPIDLE (line 908) | TCP_KEEPIDLE = 0x11 constant TCP_KEEPINTVL (line 909) | TCP_KEEPINTVL = 0x12 constant TCP_LSPRIV (line 910) | TCP_LSPRIV = 0x29 constant TCP_LUID (line 911) | TCP_LUID = 0x20 constant TCP_MAXBURST (line 912) | TCP_MAXBURST = 0x8 constant TCP_MAXDF (line 913) | TCP_MAXDF = 0x64 constant TCP_MAXIF (line 914) | TCP_MAXIF = 0x64 constant TCP_MAXSEG (line 915) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 916) | TCP_MAXWIN = 0xffff constant TCP_MAXWINDOWSCALE (line 917) | TCP_MAXWINDOWSCALE = 0xe constant TCP_MAX_SACK (line 918) | TCP_MAX_SACK = 0x4 constant TCP_MSS (line 919) | TCP_MSS = 0x5b4 constant TCP_NODELAY (line 920) | TCP_NODELAY = 0x1 constant TCP_NODELAYACK (line 921) | TCP_NODELAYACK = 0x14 constant TCP_NOREDUCE_CWND_EXIT_FRXMT (line 922) | TCP_NOREDUCE_CWND_EXIT_FRXMT = 0x19 constant TCP_NOREDUCE_CWND_IN_FRXMT (line 923) | TCP_NOREDUCE_CWND_IN_FRXMT = 0x18 constant TCP_NOTENTER_SSTART (line 924) | TCP_NOTENTER_SSTART = 0x17 constant TCP_OPT (line 925) | TCP_OPT = 0x19 constant TCP_RFC1323 (line 926) | TCP_RFC1323 = 0x4 constant TCP_SETPRIV (line 927) | TCP_SETPRIV = 0x27 constant TCP_STDURG (line 928) | TCP_STDURG = 0x10 constant TCP_TIMESTAMP_OPTLEN (line 929) | TCP_TIMESTAMP_OPTLEN = 0xc constant TCP_UNSETPRIV (line 930) | TCP_UNSETPRIV = 0x28 constant TCSAFLUSH (line 931) | TCSAFLUSH = 0x2 constant TCSBRK (line 932) | TCSBRK = 0x5409 constant TCSETA (line 933) | TCSETA = 0x5406 constant TCSETAF (line 934) | TCSETAF = 0x5408 constant TCSETAW (line 935) | TCSETAW = 0x5407 constant TCSETS (line 936) | TCSETS = 0x5402 constant TCSETSF (line 937) | TCSETSF = 0x5404 constant TCSETSW (line 938) | TCSETSW = 0x5403 constant TCXONC (line 939) | TCXONC = 0x540b constant TIMER_ABSTIME (line 940) | TIMER_ABSTIME = 0x3e7 constant TIMER_MAX (line 941) | TIMER_MAX = 0x20 constant TIOC (line 942) | TIOC = 0x5400 constant TIOCCBRK (line 943) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 944) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 945) | TIOCCONS = 0x80047462 constant TIOCEXCL (line 946) | TIOCEXCL = 0x2000740d constant TIOCFLUSH (line 947) | TIOCFLUSH = 0x80047410 constant TIOCGETC (line 948) | TIOCGETC = 0x40067412 constant TIOCGETD (line 949) | TIOCGETD = 0x40047400 constant TIOCGETP (line 950) | TIOCGETP = 0x40067408 constant TIOCGLTC (line 951) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 952) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 953) | TIOCGSID = 0x40047448 constant TIOCGSIZE (line 954) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 955) | TIOCGWINSZ = 0x40087468 constant TIOCHPCL (line 956) | TIOCHPCL = 0x20007402 constant TIOCLBIC (line 957) | TIOCLBIC = 0x8004747e constant TIOCLBIS (line 958) | TIOCLBIS = 0x8004747f constant TIOCLGET (line 959) | TIOCLGET = 0x4004747c constant TIOCLSET (line 960) | TIOCLSET = 0x8004747d constant TIOCMBIC (line 961) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 962) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 963) | TIOCMGET = 0x4004746a constant TIOCMIWAIT (line 964) | TIOCMIWAIT = 0x80047464 constant TIOCMODG (line 965) | TIOCMODG = 0x40047403 constant TIOCMODS (line 966) | TIOCMODS = 0x80047404 constant TIOCMSET (line 967) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 968) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 969) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 970) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 971) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 972) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 973) | TIOCM_LE = 0x1 constant TIOCM_RI (line 974) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 975) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 976) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 977) | TIOCM_SR = 0x10 constant TIOCM_ST (line 978) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 979) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 980) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 981) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 982) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 983) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 984) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 985) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 986) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_NOSTOP (line 987) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 988) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 989) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 990) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 991) | TIOCSBRK = 0x2000747b constant TIOCSDTR (line 992) | TIOCSDTR = 0x20007479 constant TIOCSETC (line 993) | TIOCSETC = 0x80067411 constant TIOCSETD (line 994) | TIOCSETD = 0x80047401 constant TIOCSETN (line 995) | TIOCSETN = 0x8006740a constant TIOCSETP (line 996) | TIOCSETP = 0x80067409 constant TIOCSLTC (line 997) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 998) | TIOCSPGRP = 0x80047476 constant TIOCSSIZE (line 999) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1000) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1001) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1002) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1003) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1004) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1005) | TOSTOP = 0x10000 constant UTIME_NOW (line 1006) | UTIME_NOW = -0x2 constant UTIME_OMIT (line 1007) | UTIME_OMIT = -0x3 constant VDISCRD (line 1008) | VDISCRD = 0xc constant VDSUSP (line 1009) | VDSUSP = 0xa constant VEOF (line 1010) | VEOF = 0x4 constant VEOL (line 1011) | VEOL = 0x5 constant VEOL2 (line 1012) | VEOL2 = 0x6 constant VERASE (line 1013) | VERASE = 0x2 constant VINTR (line 1014) | VINTR = 0x0 constant VKILL (line 1015) | VKILL = 0x3 constant VLNEXT (line 1016) | VLNEXT = 0xe constant VMIN (line 1017) | VMIN = 0x4 constant VQUIT (line 1018) | VQUIT = 0x1 constant VREPRINT (line 1019) | VREPRINT = 0xb constant VSTART (line 1020) | VSTART = 0x7 constant VSTOP (line 1021) | VSTOP = 0x8 constant VSTRT (line 1022) | VSTRT = 0x7 constant VSUSP (line 1023) | VSUSP = 0x9 constant VT0 (line 1024) | VT0 = 0x0 constant VT1 (line 1025) | VT1 = 0x8000 constant VTDELAY (line 1026) | VTDELAY = 0x2000 constant VTDLY (line 1027) | VTDLY = 0x8000 constant VTIME (line 1028) | VTIME = 0x5 constant VWERSE (line 1029) | VWERSE = 0xd constant WPARSTART (line 1030) | WPARSTART = 0x1 constant WPARSTOP (line 1031) | WPARSTOP = 0x2 constant WPARTTYNAME (line 1032) | WPARTTYNAME = "Global" constant XCASE (line 1033) | XCASE = 0x4 constant XTABS (line 1034) | XTABS = 0xc00 constant _FDATAFLUSH (line 1035) | _FDATAFLUSH = 0x2000000000 constant E2BIG (line 1040) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1041) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1042) | EADDRINUSE = syscall.Errno(0x43) constant EADDRNOTAVAIL (line 1043) | EADDRNOTAVAIL = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1044) | EAFNOSUPPORT = syscall.Errno(0x42) constant EAGAIN (line 1045) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1046) | EALREADY = syscall.Errno(0x38) constant EBADF (line 1047) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1048) | EBADMSG = syscall.Errno(0x78) constant EBUSY (line 1049) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1050) | ECANCELED = syscall.Errno(0x75) constant ECHILD (line 1051) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1052) | ECHRNG = syscall.Errno(0x25) constant ECLONEME (line 1053) | ECLONEME = syscall.Errno(0x52) constant ECONNABORTED (line 1054) | ECONNABORTED = syscall.Errno(0x48) constant ECONNREFUSED (line 1055) | ECONNREFUSED = syscall.Errno(0x4f) constant ECONNRESET (line 1056) | ECONNRESET = syscall.Errno(0x49) constant ECORRUPT (line 1057) | ECORRUPT = syscall.Errno(0x59) constant EDEADLK (line 1058) | EDEADLK = syscall.Errno(0x2d) constant EDESTADDREQ (line 1059) | EDESTADDREQ = syscall.Errno(0x3a) constant EDESTADDRREQ (line 1060) | EDESTADDRREQ = syscall.Errno(0x3a) constant EDIST (line 1061) | EDIST = syscall.Errno(0x35) constant EDOM (line 1062) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1063) | EDQUOT = syscall.Errno(0x58) constant EEXIST (line 1064) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1065) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1066) | EFBIG = syscall.Errno(0x1b) constant EFORMAT (line 1067) | EFORMAT = syscall.Errno(0x30) constant EHOSTDOWN (line 1068) | EHOSTDOWN = syscall.Errno(0x50) constant EHOSTUNREACH (line 1069) | EHOSTUNREACH = syscall.Errno(0x51) constant EIDRM (line 1070) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1071) | EILSEQ = syscall.Errno(0x74) constant EINPROGRESS (line 1072) | EINPROGRESS = syscall.Errno(0x37) constant EINTR (line 1073) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1074) | EINVAL = syscall.Errno(0x16) constant EIO (line 1075) | EIO = syscall.Errno(0x5) constant EISCONN (line 1076) | EISCONN = syscall.Errno(0x4b) constant EISDIR (line 1077) | EISDIR = syscall.Errno(0x15) constant EL2HLT (line 1078) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1079) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1080) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1081) | EL3RST = syscall.Errno(0x28) constant ELNRNG (line 1082) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1083) | ELOOP = syscall.Errno(0x55) constant EMEDIA (line 1084) | EMEDIA = syscall.Errno(0x6e) constant EMFILE (line 1085) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1086) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1087) | EMSGSIZE = syscall.Errno(0x3b) constant EMULTIHOP (line 1088) | EMULTIHOP = syscall.Errno(0x7d) constant ENAMETOOLONG (line 1089) | ENAMETOOLONG = syscall.Errno(0x56) constant ENETDOWN (line 1090) | ENETDOWN = syscall.Errno(0x45) constant ENETRESET (line 1091) | ENETRESET = syscall.Errno(0x47) constant ENETUNREACH (line 1092) | ENETUNREACH = syscall.Errno(0x46) constant ENFILE (line 1093) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1094) | ENOATTR = syscall.Errno(0x70) constant ENOBUFS (line 1095) | ENOBUFS = syscall.Errno(0x4a) constant ENOCONNECT (line 1096) | ENOCONNECT = syscall.Errno(0x32) constant ENOCSI (line 1097) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1098) | ENODATA = syscall.Errno(0x7a) constant ENODEV (line 1099) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1100) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1101) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1102) | ENOLCK = syscall.Errno(0x31) constant ENOLINK (line 1103) | ENOLINK = syscall.Errno(0x7e) constant ENOMEM (line 1104) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1105) | ENOMSG = syscall.Errno(0x23) constant ENOPROTOOPT (line 1106) | ENOPROTOOPT = syscall.Errno(0x3d) constant ENOSPC (line 1107) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1108) | ENOSR = syscall.Errno(0x76) constant ENOSTR (line 1109) | ENOSTR = syscall.Errno(0x7b) constant ENOSYS (line 1110) | ENOSYS = syscall.Errno(0x6d) constant ENOTBLK (line 1111) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1112) | ENOTCONN = syscall.Errno(0x4c) constant ENOTDIR (line 1113) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1114) | ENOTEMPTY = syscall.Errno(0x11) constant ENOTREADY (line 1115) | ENOTREADY = syscall.Errno(0x2e) constant ENOTRECOVERABLE (line 1116) | ENOTRECOVERABLE = syscall.Errno(0x5e) constant ENOTRUST (line 1117) | ENOTRUST = syscall.Errno(0x72) constant ENOTSOCK (line 1118) | ENOTSOCK = syscall.Errno(0x39) constant ENOTSUP (line 1119) | ENOTSUP = syscall.Errno(0x7c) constant ENOTTY (line 1120) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1121) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1122) | EOPNOTSUPP = syscall.Errno(0x40) constant EOVERFLOW (line 1123) | EOVERFLOW = syscall.Errno(0x7f) constant EOWNERDEAD (line 1124) | EOWNERDEAD = syscall.Errno(0x5f) constant EPERM (line 1125) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1126) | EPFNOSUPPORT = syscall.Errno(0x41) constant EPIPE (line 1127) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1128) | EPROCLIM = syscall.Errno(0x53) constant EPROTO (line 1129) | EPROTO = syscall.Errno(0x79) constant EPROTONOSUPPORT (line 1130) | EPROTONOSUPPORT = syscall.Errno(0x3e) constant EPROTOTYPE (line 1131) | EPROTOTYPE = syscall.Errno(0x3c) constant ERANGE (line 1132) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1133) | EREMOTE = syscall.Errno(0x5d) constant ERESTART (line 1134) | ERESTART = syscall.Errno(0x52) constant EROFS (line 1135) | EROFS = syscall.Errno(0x1e) constant ESAD (line 1136) | ESAD = syscall.Errno(0x71) constant ESHUTDOWN (line 1137) | ESHUTDOWN = syscall.Errno(0x4d) constant ESOCKTNOSUPPORT (line 1138) | ESOCKTNOSUPPORT = syscall.Errno(0x3f) constant ESOFT (line 1139) | ESOFT = syscall.Errno(0x6f) constant ESPIPE (line 1140) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1141) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1142) | ESTALE = syscall.Errno(0x34) constant ESYSERROR (line 1143) | ESYSERROR = syscall.Errno(0x5a) constant ETIME (line 1144) | ETIME = syscall.Errno(0x77) constant ETIMEDOUT (line 1145) | ETIMEDOUT = syscall.Errno(0x4e) constant ETOOMANYREFS (line 1146) | ETOOMANYREFS = syscall.Errno(0x73) constant ETXTBSY (line 1147) | ETXTBSY = syscall.Errno(0x1a) constant EUNATCH (line 1148) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1149) | EUSERS = syscall.Errno(0x54) constant EWOULDBLOCK (line 1150) | EWOULDBLOCK = syscall.Errno(0xb) constant EWRPROTECT (line 1151) | EWRPROTECT = syscall.Errno(0x2f) constant EXDEV (line 1152) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1157) | SIGABRT = syscall.Signal(0x6) constant SIGAIO (line 1158) | SIGAIO = syscall.Signal(0x17) constant SIGALRM (line 1159) | SIGALRM = syscall.Signal(0xe) constant SIGALRM1 (line 1160) | SIGALRM1 = syscall.Signal(0x26) constant SIGBUS (line 1161) | SIGBUS = syscall.Signal(0xa) constant SIGCAPI (line 1162) | SIGCAPI = syscall.Signal(0x31) constant SIGCHLD (line 1163) | SIGCHLD = syscall.Signal(0x14) constant SIGCLD (line 1164) | SIGCLD = syscall.Signal(0x14) constant SIGCONT (line 1165) | SIGCONT = syscall.Signal(0x13) constant SIGCPUFAIL (line 1166) | SIGCPUFAIL = syscall.Signal(0x3b) constant SIGDANGER (line 1167) | SIGDANGER = syscall.Signal(0x21) constant SIGEMT (line 1168) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1169) | SIGFPE = syscall.Signal(0x8) constant SIGGRANT (line 1170) | SIGGRANT = syscall.Signal(0x3c) constant SIGHUP (line 1171) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1172) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1173) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1174) | SIGIO = syscall.Signal(0x17) constant SIGIOINT (line 1175) | SIGIOINT = syscall.Signal(0x10) constant SIGIOT (line 1176) | SIGIOT = syscall.Signal(0x6) constant SIGKAP (line 1177) | SIGKAP = syscall.Signal(0x3c) constant SIGKILL (line 1178) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1179) | SIGLOST = syscall.Signal(0x6) constant SIGMAX (line 1180) | SIGMAX = syscall.Signal(0x3f) constant SIGMAX32 (line 1181) | SIGMAX32 = syscall.Signal(0x3f) constant SIGMIGRATE (line 1182) | SIGMIGRATE = syscall.Signal(0x23) constant SIGMSG (line 1183) | SIGMSG = syscall.Signal(0x1b) constant SIGPIPE (line 1184) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1185) | SIGPOLL = syscall.Signal(0x17) constant SIGPRE (line 1186) | SIGPRE = syscall.Signal(0x24) constant SIGPROF (line 1187) | SIGPROF = syscall.Signal(0x20) constant SIGPTY (line 1188) | SIGPTY = syscall.Signal(0x17) constant SIGPWR (line 1189) | SIGPWR = syscall.Signal(0x1d) constant SIGQUIT (line 1190) | SIGQUIT = syscall.Signal(0x3) constant SIGRECONFIG (line 1191) | SIGRECONFIG = syscall.Signal(0x3a) constant SIGRETRACT (line 1192) | SIGRETRACT = syscall.Signal(0x3d) constant SIGSAK (line 1193) | SIGSAK = syscall.Signal(0x3f) constant SIGSEGV (line 1194) | SIGSEGV = syscall.Signal(0xb) constant SIGSOUND (line 1195) | SIGSOUND = syscall.Signal(0x3e) constant SIGSTOP (line 1196) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1197) | SIGSYS = syscall.Signal(0xc) constant SIGSYSERROR (line 1198) | SIGSYSERROR = syscall.Signal(0x30) constant SIGTALRM (line 1199) | SIGTALRM = syscall.Signal(0x26) constant SIGTERM (line 1200) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1201) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1202) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1203) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1204) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1205) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1206) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1207) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVIRT (line 1208) | SIGVIRT = syscall.Signal(0x25) constant SIGVTALRM (line 1209) | SIGVTALRM = syscall.Signal(0x22) constant SIGWAITING (line 1210) | SIGWAITING = syscall.Signal(0x27) constant SIGWINCH (line 1211) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1212) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1213) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_BYPASS (line 16) | AF_BYPASS = 0x19 constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 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_ECMA (line 22) | AF_ECMA = 0x8 constant AF_HYLINK (line 23) | AF_HYLINK = 0xf constant AF_IMPLINK (line 24) | AF_IMPLINK = 0x3 constant AF_INET (line 25) | AF_INET = 0x2 constant AF_INET6 (line 26) | AF_INET6 = 0x18 constant AF_INTF (line 27) | AF_INTF = 0x14 constant AF_ISO (line 28) | AF_ISO = 0x7 constant AF_LAT (line 29) | AF_LAT = 0xe constant AF_LINK (line 30) | AF_LINK = 0x12 constant AF_LOCAL (line 31) | AF_LOCAL = 0x1 constant AF_MAX (line 32) | AF_MAX = 0x1e constant AF_NDD (line 33) | AF_NDD = 0x17 constant AF_NETWARE (line 34) | AF_NETWARE = 0x16 constant AF_NS (line 35) | AF_NS = 0x6 constant AF_OSI (line 36) | AF_OSI = 0x7 constant AF_PUP (line 37) | AF_PUP = 0x4 constant AF_RIF (line 38) | AF_RIF = 0x15 constant AF_ROUTE (line 39) | AF_ROUTE = 0x11 constant AF_SNA (line 40) | AF_SNA = 0xb constant AF_UNIX (line 41) | AF_UNIX = 0x1 constant AF_UNSPEC (line 42) | AF_UNSPEC = 0x0 constant ALTWERASE (line 43) | ALTWERASE = 0x400000 constant ARPHRD_802_3 (line 44) | ARPHRD_802_3 = 0x6 constant ARPHRD_802_5 (line 45) | ARPHRD_802_5 = 0x6 constant ARPHRD_ETHER (line 46) | ARPHRD_ETHER = 0x1 constant ARPHRD_FDDI (line 47) | ARPHRD_FDDI = 0x1 constant B0 (line 48) | B0 = 0x0 constant B110 (line 49) | B110 = 0x3 constant B1200 (line 50) | B1200 = 0x9 constant B134 (line 51) | B134 = 0x4 constant B150 (line 52) | B150 = 0x5 constant B1800 (line 53) | B1800 = 0xa constant B19200 (line 54) | B19200 = 0xe constant B200 (line 55) | B200 = 0x6 constant B2400 (line 56) | B2400 = 0xb constant B300 (line 57) | B300 = 0x7 constant B38400 (line 58) | B38400 = 0xf constant B4800 (line 59) | B4800 = 0xc constant B50 (line 60) | B50 = 0x1 constant B600 (line 61) | B600 = 0x8 constant B75 (line 62) | B75 = 0x2 constant B9600 (line 63) | B9600 = 0xd constant BRKINT (line 64) | BRKINT = 0x2 constant BS0 (line 65) | BS0 = 0x0 constant BS1 (line 66) | BS1 = 0x1000 constant BSDLY (line 67) | BSDLY = 0x1000 constant CAP_AACCT (line 68) | CAP_AACCT = 0x6 constant CAP_ARM_APPLICATION (line 69) | CAP_ARM_APPLICATION = 0x5 constant CAP_BYPASS_RAC_VMM (line 70) | CAP_BYPASS_RAC_VMM = 0x3 constant CAP_CLEAR (line 71) | CAP_CLEAR = 0x0 constant CAP_CREDENTIALS (line 72) | CAP_CREDENTIALS = 0x7 constant CAP_EFFECTIVE (line 73) | CAP_EFFECTIVE = 0x1 constant CAP_EWLM_AGENT (line 74) | CAP_EWLM_AGENT = 0x4 constant CAP_INHERITABLE (line 75) | CAP_INHERITABLE = 0x2 constant CAP_MAXIMUM (line 76) | CAP_MAXIMUM = 0x7 constant CAP_NUMA_ATTACH (line 77) | CAP_NUMA_ATTACH = 0x2 constant CAP_PERMITTED (line 78) | CAP_PERMITTED = 0x3 constant CAP_PROPAGATE (line 79) | CAP_PROPAGATE = 0x1 constant CAP_PROPOGATE (line 80) | CAP_PROPOGATE = 0x1 constant CAP_SET (line 81) | CAP_SET = 0x1 constant CBAUD (line 82) | CBAUD = 0xf constant CFLUSH (line 83) | CFLUSH = 0xf constant CIBAUD (line 84) | CIBAUD = 0xf0000 constant CLOCAL (line 85) | CLOCAL = 0x800 constant CLOCK_MONOTONIC (line 86) | CLOCK_MONOTONIC = 0xa constant CLOCK_PROCESS_CPUTIME_ID (line 87) | CLOCK_PROCESS_CPUTIME_ID = 0xb constant CLOCK_REALTIME (line 88) | CLOCK_REALTIME = 0x9 constant CLOCK_THREAD_CPUTIME_ID (line 89) | CLOCK_THREAD_CPUTIME_ID = 0xc constant CR0 (line 90) | CR0 = 0x0 constant CR1 (line 91) | CR1 = 0x100 constant CR2 (line 92) | CR2 = 0x200 constant CR3 (line 93) | CR3 = 0x300 constant CRDLY (line 94) | CRDLY = 0x300 constant CREAD (line 95) | CREAD = 0x80 constant CS5 (line 96) | CS5 = 0x0 constant CS6 (line 97) | CS6 = 0x10 constant CS7 (line 98) | CS7 = 0x20 constant CS8 (line 99) | CS8 = 0x30 constant CSIOCGIFCONF (line 100) | CSIOCGIFCONF = -0x3fef96dc constant CSIZE (line 101) | CSIZE = 0x30 constant CSMAP_DIR (line 102) | CSMAP_DIR = "/usr/lib/nls/csmap/" constant CSTART (line 103) | CSTART = '\021' constant CSTOP (line 104) | CSTOP = '\023' constant CSTOPB (line 105) | CSTOPB = 0x40 constant CSUSP (line 106) | CSUSP = 0x1a constant ECHO (line 107) | ECHO = 0x8 constant ECHOCTL (line 108) | ECHOCTL = 0x20000 constant ECHOE (line 109) | ECHOE = 0x10 constant ECHOK (line 110) | ECHOK = 0x20 constant ECHOKE (line 111) | ECHOKE = 0x80000 constant ECHONL (line 112) | ECHONL = 0x40 constant ECHOPRT (line 113) | ECHOPRT = 0x40000 constant ECH_ICMPID (line 114) | ECH_ICMPID = 0x2 constant ETHERNET_CSMACD (line 115) | ETHERNET_CSMACD = 0x6 constant EVENP (line 116) | EVENP = 0x80 constant EXCONTINUE (line 117) | EXCONTINUE = 0x0 constant EXDLOK (line 118) | EXDLOK = 0x3 constant EXIO (line 119) | EXIO = 0x2 constant EXPGIO (line 120) | EXPGIO = 0x0 constant EXRESUME (line 121) | EXRESUME = 0x2 constant EXRETURN (line 122) | EXRETURN = 0x1 constant EXSIG (line 123) | EXSIG = 0x4 constant EXTA (line 124) | EXTA = 0xe constant EXTB (line 125) | EXTB = 0xf constant EXTRAP (line 126) | EXTRAP = 0x1 constant EYEC_RTENTRYA (line 127) | EYEC_RTENTRYA = 0x257274656e747241 constant EYEC_RTENTRYF (line 128) | EYEC_RTENTRYF = 0x257274656e747246 constant E_ACC (line 129) | E_ACC = 0x0 constant FD_CLOEXEC (line 130) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 131) | FD_SETSIZE = 0xfffe constant FF0 (line 132) | FF0 = 0x0 constant FF1 (line 133) | FF1 = 0x2000 constant FFDLY (line 134) | FFDLY = 0x2000 constant FLUSHBAND (line 135) | FLUSHBAND = 0x40 constant FLUSHLOW (line 136) | FLUSHLOW = 0x8 constant FLUSHO (line 137) | FLUSHO = 0x100000 constant FLUSHR (line 138) | FLUSHR = 0x1 constant FLUSHRW (line 139) | FLUSHRW = 0x3 constant FLUSHW (line 140) | FLUSHW = 0x2 constant F_CLOSEM (line 141) | F_CLOSEM = 0xa constant F_DUP2FD (line 142) | F_DUP2FD = 0xe constant F_DUPFD (line 143) | F_DUPFD = 0x0 constant F_GETFD (line 144) | F_GETFD = 0x1 constant F_GETFL (line 145) | F_GETFL = 0x3 constant F_GETLK (line 146) | F_GETLK = 0xb constant F_GETLK64 (line 147) | F_GETLK64 = 0xb constant F_GETOWN (line 148) | F_GETOWN = 0x8 constant F_LOCK (line 149) | F_LOCK = 0x1 constant F_OK (line 150) | F_OK = 0x0 constant F_RDLCK (line 151) | F_RDLCK = 0x1 constant F_SETFD (line 152) | F_SETFD = 0x2 constant F_SETFL (line 153) | F_SETFL = 0x4 constant F_SETLK (line 154) | F_SETLK = 0xc constant F_SETLK64 (line 155) | F_SETLK64 = 0xc constant F_SETLKW (line 156) | F_SETLKW = 0xd constant F_SETLKW64 (line 157) | F_SETLKW64 = 0xd constant F_SETOWN (line 158) | F_SETOWN = 0x9 constant F_TEST (line 159) | F_TEST = 0x3 constant F_TLOCK (line 160) | F_TLOCK = 0x2 constant F_TSTLK (line 161) | F_TSTLK = 0xf constant F_ULOCK (line 162) | F_ULOCK = 0x0 constant F_UNLCK (line 163) | F_UNLCK = 0x3 constant F_WRLCK (line 164) | F_WRLCK = 0x2 constant HUPCL (line 165) | HUPCL = 0x400 constant IBSHIFT (line 166) | IBSHIFT = 0x10 constant ICANON (line 167) | ICANON = 0x2 constant ICMP6_FILTER (line 168) | ICMP6_FILTER = 0x26 constant ICMP6_SEC_SEND_DEL (line 169) | ICMP6_SEC_SEND_DEL = 0x46 constant ICMP6_SEC_SEND_GET (line 170) | ICMP6_SEC_SEND_GET = 0x47 constant ICMP6_SEC_SEND_SET (line 171) | ICMP6_SEC_SEND_SET = 0x44 constant ICMP6_SEC_SEND_SET_CGA_ADDR (line 172) | ICMP6_SEC_SEND_SET_CGA_ADDR = 0x45 constant ICRNL (line 173) | ICRNL = 0x100 constant IEXTEN (line 174) | IEXTEN = 0x200000 constant IFA_FIRSTALIAS (line 175) | IFA_FIRSTALIAS = 0x2000 constant IFA_ROUTE (line 176) | IFA_ROUTE = 0x1 constant IFF_64BIT (line 177) | IFF_64BIT = 0x4000000 constant IFF_ALLCAST (line 178) | IFF_ALLCAST = 0x20000 constant IFF_ALLMULTI (line 179) | IFF_ALLMULTI = 0x200 constant IFF_BPF (line 180) | IFF_BPF = 0x8000000 constant IFF_BRIDGE (line 181) | IFF_BRIDGE = 0x40000 constant IFF_BROADCAST (line 182) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 183) | IFF_CANTCHANGE = 0x80c52 constant IFF_CHECKSUM_OFFLOAD (line 184) | IFF_CHECKSUM_OFFLOAD = 0x10000000 constant IFF_D1 (line 185) | IFF_D1 = 0x8000 constant IFF_D2 (line 186) | IFF_D2 = 0x4000 constant IFF_D3 (line 187) | IFF_D3 = 0x2000 constant IFF_D4 (line 188) | IFF_D4 = 0x1000 constant IFF_DEBUG (line 189) | IFF_DEBUG = 0x4 constant IFF_DEVHEALTH (line 190) | IFF_DEVHEALTH = 0x4000 constant IFF_DO_HW_LOOPBACK (line 191) | IFF_DO_HW_LOOPBACK = 0x10000 constant IFF_GROUP_ROUTING (line 192) | IFF_GROUP_ROUTING = 0x2000000 constant IFF_IFBUFMGT (line 193) | IFF_IFBUFMGT = 0x800000 constant IFF_LINK0 (line 194) | IFF_LINK0 = 0x100000 constant IFF_LINK1 (line 195) | IFF_LINK1 = 0x200000 constant IFF_LINK2 (line 196) | IFF_LINK2 = 0x400000 constant IFF_LOOPBACK (line 197) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 198) | IFF_MULTICAST = 0x80000 constant IFF_NOARP (line 199) | IFF_NOARP = 0x80 constant IFF_NOECHO (line 200) | IFF_NOECHO = 0x800 constant IFF_NOTRAILERS (line 201) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 202) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 203) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 204) | IFF_PROMISC = 0x100 constant IFF_PSEG (line 205) | IFF_PSEG = 0x40000000 constant IFF_RUNNING (line 206) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 207) | IFF_SIMPLEX = 0x800 constant IFF_SNAP (line 208) | IFF_SNAP = 0x8000 constant IFF_TCP_DISABLE_CKSUM (line 209) | IFF_TCP_DISABLE_CKSUM = 0x20000000 constant IFF_TCP_NOCKSUM (line 210) | IFF_TCP_NOCKSUM = 0x1000000 constant IFF_UP (line 211) | IFF_UP = 0x1 constant IFF_VIPA (line 212) | IFF_VIPA = 0x80000000 constant IFNAMSIZ (line 213) | IFNAMSIZ = 0x10 constant IFO_FLUSH (line 214) | IFO_FLUSH = 0x1 constant IFT_1822 (line 215) | IFT_1822 = 0x2 constant IFT_AAL5 (line 216) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 217) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 218) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 219) | IFT_ATM = 0x25 constant IFT_CEPT (line 220) | IFT_CEPT = 0x13 constant IFT_CLUSTER (line 221) | IFT_CLUSTER = 0x3e constant IFT_DS3 (line 222) | IFT_DS3 = 0x1e constant IFT_EON (line 223) | IFT_EON = 0x19 constant IFT_ETHER (line 224) | IFT_ETHER = 0x6 constant IFT_FCS (line 225) | IFT_FCS = 0x3a constant IFT_FDDI (line 226) | IFT_FDDI = 0xf constant IFT_FRELAY (line 227) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 228) | IFT_FRELAYDCE = 0x2c constant IFT_GIFTUNNEL (line 229) | IFT_GIFTUNNEL = 0x3c constant IFT_HDH1822 (line 230) | IFT_HDH1822 = 0x3 constant IFT_HF (line 231) | IFT_HF = 0x3d constant IFT_HIPPI (line 232) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 233) | IFT_HSSI = 0x2e constant IFT_HY (line 234) | IFT_HY = 0xe constant IFT_IB (line 235) | IFT_IB = 0xc7 constant IFT_ISDNBASIC (line 236) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 237) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 238) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 239) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 240) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 241) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 242) | IFT_ISO88026 = 0xa constant IFT_LAPB (line 243) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 244) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 245) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 246) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 247) | IFT_MODEM = 0x30 constant IFT_NSIP (line 248) | IFT_NSIP = 0x1b constant IFT_OTHER (line 249) | IFT_OTHER = 0x1 constant IFT_P10 (line 250) | IFT_P10 = 0xc constant IFT_P80 (line 251) | IFT_P80 = 0xd constant IFT_PARA (line 252) | IFT_PARA = 0x22 constant IFT_PPP (line 253) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 254) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 255) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 256) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 257) | IFT_RS232 = 0x21 constant IFT_SDLC (line 258) | IFT_SDLC = 0x11 constant IFT_SIP (line 259) | IFT_SIP = 0x1f constant IFT_SLIP (line 260) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 261) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 262) | IFT_SMDSICIP = 0x34 constant IFT_SN (line 263) | IFT_SN = 0x38 constant IFT_SONET (line 264) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 265) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 266) | IFT_SONETVT = 0x33 constant IFT_SP (line 267) | IFT_SP = 0x39 constant IFT_STARLAN (line 268) | IFT_STARLAN = 0xb constant IFT_T1 (line 269) | IFT_T1 = 0x12 constant IFT_TUNNEL (line 270) | IFT_TUNNEL = 0x3b constant IFT_ULTRA (line 271) | IFT_ULTRA = 0x1d constant IFT_V35 (line 272) | IFT_V35 = 0x2d constant IFT_VIPA (line 273) | IFT_VIPA = 0x37 constant IFT_X25 (line 274) | IFT_X25 = 0x5 constant IFT_X25DDN (line 275) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 276) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 277) | IFT_XETHER = 0x1a constant IGNBRK (line 278) | IGNBRK = 0x1 constant IGNCR (line 279) | IGNCR = 0x80 constant IGNPAR (line 280) | IGNPAR = 0x4 constant IMAXBEL (line 281) | IMAXBEL = 0x10000 constant INLCR (line 282) | INLCR = 0x40 constant INPCK (line 283) | INPCK = 0x10 constant IN_CLASSA_HOST (line 284) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 285) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 286) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 287) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 288) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 289) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 290) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 291) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 292) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 293) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 294) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 295) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 296) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 297) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 298) | IN_LOOPBACKNET = 0x7f constant IN_USE (line 299) | IN_USE = 0x1 constant IPPROTO_AH (line 300) | IPPROTO_AH = 0x33 constant IPPROTO_BIP (line 301) | IPPROTO_BIP = 0x53 constant IPPROTO_DSTOPTS (line 302) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 303) | IPPROTO_EGP = 0x8 constant IPPROTO_EON (line 304) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 305) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 306) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 307) | IPPROTO_GGP = 0x3 constant IPPROTO_GIF (line 308) | IPPROTO_GIF = 0x8c constant IPPROTO_GRE (line 309) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 310) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 311) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 312) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 313) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 314) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 315) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 316) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 317) | IPPROTO_IPV6 = 0x29 constant IPPROTO_LOCAL (line 318) | IPPROTO_LOCAL = 0x3f constant IPPROTO_MAX (line 319) | IPPROTO_MAX = 0x100 constant IPPROTO_MH (line 320) | IPPROTO_MH = 0x87 constant IPPROTO_NONE (line 321) | IPPROTO_NONE = 0x3b constant IPPROTO_PUP (line 322) | IPPROTO_PUP = 0xc constant IPPROTO_QOS (line 323) | IPPROTO_QOS = 0x2d constant IPPROTO_RAW (line 324) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 325) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 326) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 327) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 328) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 329) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 330) | IPPROTO_UDP = 0x11 constant IPV6_ADDRFORM (line 331) | IPV6_ADDRFORM = 0x16 constant IPV6_ADDR_PREFERENCES (line 332) | IPV6_ADDR_PREFERENCES = 0x4a constant IPV6_ADD_MEMBERSHIP (line 333) | IPV6_ADD_MEMBERSHIP = 0xc constant IPV6_AIXRAWSOCKET (line 334) | IPV6_AIXRAWSOCKET = 0x39 constant IPV6_CHECKSUM (line 335) | IPV6_CHECKSUM = 0x27 constant IPV6_DONTFRAG (line 336) | IPV6_DONTFRAG = 0x2d constant IPV6_DROP_MEMBERSHIP (line 337) | IPV6_DROP_MEMBERSHIP = 0xd constant IPV6_DSTOPTS (line 338) | IPV6_DSTOPTS = 0x36 constant IPV6_FLOWINFO_FLOWLABEL (line 339) | IPV6_FLOWINFO_FLOWLABEL = 0xffffff constant IPV6_FLOWINFO_PRIFLOW (line 340) | IPV6_FLOWINFO_PRIFLOW = 0xfffffff constant IPV6_FLOWINFO_PRIORITY (line 341) | IPV6_FLOWINFO_PRIORITY = 0xf000000 constant IPV6_FLOWINFO_SRFLAG (line 342) | IPV6_FLOWINFO_SRFLAG = 0x10000000 constant IPV6_FLOWINFO_VERSION (line 343) | IPV6_FLOWINFO_VERSION = 0xf0000000 constant IPV6_HOPLIMIT (line 344) | IPV6_HOPLIMIT = 0x28 constant IPV6_HOPOPTS (line 345) | IPV6_HOPOPTS = 0x34 constant IPV6_JOIN_GROUP (line 346) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 347) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MIPDSTOPTS (line 348) | IPV6_MIPDSTOPTS = 0x36 constant IPV6_MULTICAST_HOPS (line 349) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 350) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 351) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 352) | IPV6_NEXTHOP = 0x30 constant IPV6_NOPROBE (line 353) | IPV6_NOPROBE = 0x1c constant IPV6_PATHMTU (line 354) | IPV6_PATHMTU = 0x2e constant IPV6_PKTINFO (line 355) | IPV6_PKTINFO = 0x21 constant IPV6_PKTOPTIONS (line 356) | IPV6_PKTOPTIONS = 0x24 constant IPV6_PRIORITY_10 (line 357) | IPV6_PRIORITY_10 = 0xa000000 constant IPV6_PRIORITY_11 (line 358) | IPV6_PRIORITY_11 = 0xb000000 constant IPV6_PRIORITY_12 (line 359) | IPV6_PRIORITY_12 = 0xc000000 constant IPV6_PRIORITY_13 (line 360) | IPV6_PRIORITY_13 = 0xd000000 constant IPV6_PRIORITY_14 (line 361) | IPV6_PRIORITY_14 = 0xe000000 constant IPV6_PRIORITY_15 (line 362) | IPV6_PRIORITY_15 = 0xf000000 constant IPV6_PRIORITY_8 (line 363) | IPV6_PRIORITY_8 = 0x8000000 constant IPV6_PRIORITY_9 (line 364) | IPV6_PRIORITY_9 = 0x9000000 constant IPV6_PRIORITY_BULK (line 365) | IPV6_PRIORITY_BULK = 0x4000000 constant IPV6_PRIORITY_CONTROL (line 366) | IPV6_PRIORITY_CONTROL = 0x7000000 constant IPV6_PRIORITY_FILLER (line 367) | IPV6_PRIORITY_FILLER = 0x1000000 constant IPV6_PRIORITY_INTERACTIVE (line 368) | IPV6_PRIORITY_INTERACTIVE = 0x6000000 constant IPV6_PRIORITY_RESERVED1 (line 369) | IPV6_PRIORITY_RESERVED1 = 0x3000000 constant IPV6_PRIORITY_RESERVED2 (line 370) | IPV6_PRIORITY_RESERVED2 = 0x5000000 constant IPV6_PRIORITY_UNATTENDED (line 371) | IPV6_PRIORITY_UNATTENDED = 0x2000000 constant IPV6_PRIORITY_UNCHARACTERIZED (line 372) | IPV6_PRIORITY_UNCHARACTERIZED = 0x0 constant IPV6_RECVDSTOPTS (line 373) | IPV6_RECVDSTOPTS = 0x38 constant IPV6_RECVHOPLIMIT (line 374) | IPV6_RECVHOPLIMIT = 0x29 constant IPV6_RECVHOPOPTS (line 375) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVHOPS (line 376) | IPV6_RECVHOPS = 0x22 constant IPV6_RECVIF (line 377) | IPV6_RECVIF = 0x1e constant IPV6_RECVPATHMTU (line 378) | IPV6_RECVPATHMTU = 0x2f constant IPV6_RECVPKTINFO (line 379) | IPV6_RECVPKTINFO = 0x23 constant IPV6_RECVRTHDR (line 380) | IPV6_RECVRTHDR = 0x33 constant IPV6_RECVSRCRT (line 381) | IPV6_RECVSRCRT = 0x1d constant IPV6_RECVTCLASS (line 382) | IPV6_RECVTCLASS = 0x2a constant IPV6_RTHDR (line 383) | IPV6_RTHDR = 0x32 constant IPV6_RTHDRDSTOPTS (line 384) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_TYPE_0 (line 385) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RTHDR_TYPE_2 (line 386) | IPV6_RTHDR_TYPE_2 = 0x2 constant IPV6_SENDIF (line 387) | IPV6_SENDIF = 0x1f constant IPV6_SRFLAG_LOOSE (line 388) | IPV6_SRFLAG_LOOSE = 0x0 constant IPV6_SRFLAG_STRICT (line 389) | IPV6_SRFLAG_STRICT = 0x10000000 constant IPV6_TCLASS (line 390) | IPV6_TCLASS = 0x2b constant IPV6_TOKEN_LENGTH (line 391) | IPV6_TOKEN_LENGTH = 0x40 constant IPV6_UNICAST_HOPS (line 392) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 393) | IPV6_USE_MIN_MTU = 0x2c constant IPV6_V6ONLY (line 394) | IPV6_V6ONLY = 0x25 constant IPV6_VERSION (line 395) | IPV6_VERSION = 0x60000000 constant IP_ADDRFORM (line 396) | IP_ADDRFORM = 0x16 constant IP_ADD_MEMBERSHIP (line 397) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 398) | IP_ADD_SOURCE_MEMBERSHIP = 0x3c constant IP_BLOCK_SOURCE (line 399) | IP_BLOCK_SOURCE = 0x3a constant IP_BROADCAST_IF (line 400) | IP_BROADCAST_IF = 0x10 constant IP_CACHE_LINE_SIZE (line 401) | IP_CACHE_LINE_SIZE = 0x80 constant IP_DEFAULT_MULTICAST_LOOP (line 402) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 403) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 404) | IP_DF = 0x4000 constant IP_DHCPMODE (line 405) | IP_DHCPMODE = 0x11 constant IP_DONTFRAG (line 406) | IP_DONTFRAG = 0x19 constant IP_DROP_MEMBERSHIP (line 407) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 408) | IP_DROP_SOURCE_MEMBERSHIP = 0x3d constant IP_FINDPMTU (line 409) | IP_FINDPMTU = 0x1a constant IP_HDRINCL (line 410) | IP_HDRINCL = 0x2 constant IP_INC_MEMBERSHIPS (line 411) | IP_INC_MEMBERSHIPS = 0x14 constant IP_INIT_MEMBERSHIP (line 412) | IP_INIT_MEMBERSHIP = 0x14 constant IP_MAXPACKET (line 413) | IP_MAXPACKET = 0xffff constant IP_MF (line 414) | IP_MF = 0x2000 constant IP_MSS (line 415) | IP_MSS = 0x240 constant IP_MULTICAST_HOPS (line 416) | IP_MULTICAST_HOPS = 0xa constant IP_MULTICAST_IF (line 417) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 418) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 419) | IP_MULTICAST_TTL = 0xa constant IP_OPT (line 420) | IP_OPT = 0x1b constant IP_OPTIONS (line 421) | IP_OPTIONS = 0x1 constant IP_PMTUAGE (line 422) | IP_PMTUAGE = 0x1b constant IP_RECVDSTADDR (line 423) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 424) | IP_RECVIF = 0x14 constant IP_RECVIFINFO (line 425) | IP_RECVIFINFO = 0xf constant IP_RECVINTERFACE (line 426) | IP_RECVINTERFACE = 0x20 constant IP_RECVMACHDR (line 427) | IP_RECVMACHDR = 0xe constant IP_RECVOPTS (line 428) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 429) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 430) | IP_RECVTTL = 0x22 constant IP_RETOPTS (line 431) | IP_RETOPTS = 0x8 constant IP_SOURCE_FILTER (line 432) | IP_SOURCE_FILTER = 0x48 constant IP_TOS (line 433) | IP_TOS = 0x3 constant IP_TTL (line 434) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 435) | IP_UNBLOCK_SOURCE = 0x3b constant IP_UNICAST_HOPS (line 436) | IP_UNICAST_HOPS = 0x4 constant ISIG (line 437) | ISIG = 0x1 constant ISTRIP (line 438) | ISTRIP = 0x20 constant IUCLC (line 439) | IUCLC = 0x800 constant IXANY (line 440) | IXANY = 0x1000 constant IXOFF (line 441) | IXOFF = 0x400 constant IXON (line 442) | IXON = 0x200 constant I_FLUSH (line 443) | I_FLUSH = 0x20005305 constant LNOFLSH (line 444) | LNOFLSH = 0x8000 constant LOCK_EX (line 445) | LOCK_EX = 0x2 constant LOCK_NB (line 446) | LOCK_NB = 0x4 constant LOCK_SH (line 447) | LOCK_SH = 0x1 constant LOCK_UN (line 448) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 449) | MADV_DONTNEED = 0x4 constant MADV_NORMAL (line 450) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 451) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 452) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 453) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 454) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 455) | MAP_ANON = 0x10 constant MAP_ANONYMOUS (line 456) | MAP_ANONYMOUS = 0x10 constant MAP_FILE (line 457) | MAP_FILE = 0x0 constant MAP_FIXED (line 458) | MAP_FIXED = 0x100 constant MAP_PRIVATE (line 459) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 460) | MAP_SHARED = 0x1 constant MAP_TYPE (line 461) | MAP_TYPE = 0xf0 constant MAP_VARIABLE (line 462) | MAP_VARIABLE = 0x0 constant MCAST_BLOCK_SOURCE (line 463) | MCAST_BLOCK_SOURCE = 0x40 constant MCAST_EXCLUDE (line 464) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 465) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 466) | MCAST_JOIN_GROUP = 0x3e constant MCAST_JOIN_SOURCE_GROUP (line 467) | MCAST_JOIN_SOURCE_GROUP = 0x42 constant MCAST_LEAVE_GROUP (line 468) | MCAST_LEAVE_GROUP = 0x3f constant MCAST_LEAVE_SOURCE_GROUP (line 469) | MCAST_LEAVE_SOURCE_GROUP = 0x43 constant MCAST_SOURCE_FILTER (line 470) | MCAST_SOURCE_FILTER = 0x49 constant MCAST_UNBLOCK_SOURCE (line 471) | MCAST_UNBLOCK_SOURCE = 0x41 constant MCL_CURRENT (line 472) | MCL_CURRENT = 0x100 constant MCL_FUTURE (line 473) | MCL_FUTURE = 0x200 constant MSG_ANY (line 474) | MSG_ANY = 0x4 constant MSG_ARGEXT (line 475) | MSG_ARGEXT = 0x400 constant MSG_BAND (line 476) | MSG_BAND = 0x2 constant MSG_COMPAT (line 477) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 478) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 479) | MSG_DONTROUTE = 0x4 constant MSG_EOR (line 480) | MSG_EOR = 0x8 constant MSG_HIPRI (line 481) | MSG_HIPRI = 0x1 constant MSG_MAXIOVLEN (line 482) | MSG_MAXIOVLEN = 0x10 constant MSG_MPEG2 (line 483) | MSG_MPEG2 = 0x80 constant MSG_NONBLOCK (line 484) | MSG_NONBLOCK = 0x4000 constant MSG_NOSIGNAL (line 485) | MSG_NOSIGNAL = 0x100 constant MSG_OOB (line 486) | MSG_OOB = 0x1 constant MSG_PEEK (line 487) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 488) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 489) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 490) | MSG_WAITFORONE = 0x200 constant MS_ASYNC (line 491) | MS_ASYNC = 0x10 constant MS_EINTR (line 492) | MS_EINTR = 0x80 constant MS_INVALIDATE (line 493) | MS_INVALIDATE = 0x40 constant MS_PER_SEC (line 494) | MS_PER_SEC = 0x3e8 constant MS_SYNC (line 495) | MS_SYNC = 0x20 constant NFDBITS (line 496) | NFDBITS = 0x40 constant NL0 (line 497) | NL0 = 0x0 constant NL1 (line 498) | NL1 = 0x4000 constant NL2 (line 499) | NL2 = 0x8000 constant NL3 (line 500) | NL3 = 0xc000 constant NLDLY (line 501) | NLDLY = 0x4000 constant NOFLSH (line 502) | NOFLSH = 0x80 constant NOFLUSH (line 503) | NOFLUSH = 0x80000000 constant OCRNL (line 504) | OCRNL = 0x8 constant OFDEL (line 505) | OFDEL = 0x80 constant OFILL (line 506) | OFILL = 0x40 constant OLCUC (line 507) | OLCUC = 0x2 constant ONLCR (line 508) | ONLCR = 0x4 constant ONLRET (line 509) | ONLRET = 0x20 constant ONOCR (line 510) | ONOCR = 0x10 constant ONOEOT (line 511) | ONOEOT = 0x80000 constant OPOST (line 512) | OPOST = 0x1 constant OXTABS (line 513) | OXTABS = 0x40000 constant O_ACCMODE (line 514) | O_ACCMODE = 0x23 constant O_APPEND (line 515) | O_APPEND = 0x8 constant O_CIO (line 516) | O_CIO = 0x80 constant O_CIOR (line 517) | O_CIOR = 0x800000000 constant O_CLOEXEC (line 518) | O_CLOEXEC = 0x800000 constant O_CREAT (line 519) | O_CREAT = 0x100 constant O_DEFER (line 520) | O_DEFER = 0x2000 constant O_DELAY (line 521) | O_DELAY = 0x4000 constant O_DIRECT (line 522) | O_DIRECT = 0x8000000 constant O_DIRECTORY (line 523) | O_DIRECTORY = 0x80000 constant O_DSYNC (line 524) | O_DSYNC = 0x400000 constant O_EFSOFF (line 525) | O_EFSOFF = 0x400000000 constant O_EFSON (line 526) | O_EFSON = 0x200000000 constant O_EXCL (line 527) | O_EXCL = 0x400 constant O_EXEC (line 528) | O_EXEC = 0x20 constant O_LARGEFILE (line 529) | O_LARGEFILE = 0x4000000 constant O_NDELAY (line 530) | O_NDELAY = 0x8000 constant O_NOCACHE (line 531) | O_NOCACHE = 0x100000 constant O_NOCTTY (line 532) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 533) | O_NOFOLLOW = 0x1000000 constant O_NONBLOCK (line 534) | O_NONBLOCK = 0x4 constant O_NONE (line 535) | O_NONE = 0x3 constant O_NSHARE (line 536) | O_NSHARE = 0x10000 constant O_RAW (line 537) | O_RAW = 0x100000000 constant O_RDONLY (line 538) | O_RDONLY = 0x0 constant O_RDWR (line 539) | O_RDWR = 0x2 constant O_RSHARE (line 540) | O_RSHARE = 0x1000 constant O_RSYNC (line 541) | O_RSYNC = 0x200000 constant O_SEARCH (line 542) | O_SEARCH = 0x20 constant O_SNAPSHOT (line 543) | O_SNAPSHOT = 0x40 constant O_SYNC (line 544) | O_SYNC = 0x10 constant O_TRUNC (line 545) | O_TRUNC = 0x200 constant O_TTY_INIT (line 546) | O_TTY_INIT = 0x0 constant O_WRONLY (line 547) | O_WRONLY = 0x1 constant PARENB (line 548) | PARENB = 0x100 constant PAREXT (line 549) | PAREXT = 0x100000 constant PARMRK (line 550) | PARMRK = 0x8 constant PARODD (line 551) | PARODD = 0x200 constant PENDIN (line 552) | PENDIN = 0x20000000 constant PRIO_PGRP (line 553) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 554) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 555) | PRIO_USER = 0x2 constant PROT_EXEC (line 556) | PROT_EXEC = 0x4 constant PROT_NONE (line 557) | PROT_NONE = 0x0 constant PROT_READ (line 558) | PROT_READ = 0x1 constant PROT_WRITE (line 559) | PROT_WRITE = 0x2 constant PR_64BIT (line 560) | PR_64BIT = 0x20 constant PR_ADDR (line 561) | PR_ADDR = 0x2 constant PR_ARGEXT (line 562) | PR_ARGEXT = 0x400 constant PR_ATOMIC (line 563) | PR_ATOMIC = 0x1 constant PR_CONNREQUIRED (line 564) | PR_CONNREQUIRED = 0x4 constant PR_FASTHZ (line 565) | PR_FASTHZ = 0x5 constant PR_INP (line 566) | PR_INP = 0x40 constant PR_INTRLEVEL (line 567) | PR_INTRLEVEL = 0x8000 constant PR_MLS (line 568) | PR_MLS = 0x100 constant PR_MLS_1_LABEL (line 569) | PR_MLS_1_LABEL = 0x200 constant PR_NOEOR (line 570) | PR_NOEOR = 0x4000 constant PR_RIGHTS (line 571) | PR_RIGHTS = 0x10 constant PR_SLOWHZ (line 572) | PR_SLOWHZ = 0x2 constant PR_WANTRCVD (line 573) | PR_WANTRCVD = 0x8 constant RLIMIT_AS (line 574) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 575) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 576) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 577) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 578) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 579) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 580) | RLIMIT_NPROC = 0x9 constant RLIMIT_RSS (line 581) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 582) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 583) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 584) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 585) | RTAX_BRD = 0x7 constant RTAX_DST (line 586) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 587) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 588) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 589) | RTAX_IFA = 0x5 constant RTAX_IFP (line 590) | RTAX_IFP = 0x4 constant RTAX_MAX (line 591) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 592) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 593) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 594) | RTA_BRD = 0x80 constant RTA_DOWNSTREAM (line 595) | RTA_DOWNSTREAM = 0x100 constant RTA_DST (line 596) | RTA_DST = 0x1 constant RTA_GATEWAY (line 597) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 598) | RTA_GENMASK = 0x8 constant RTA_IFA (line 599) | RTA_IFA = 0x20 constant RTA_IFP (line 600) | RTA_IFP = 0x10 constant RTA_NETMASK (line 601) | RTA_NETMASK = 0x4 constant RTC_IA64 (line 602) | RTC_IA64 = 0x3 constant RTC_POWER (line 603) | RTC_POWER = 0x1 constant RTC_POWER_PC (line 604) | RTC_POWER_PC = 0x2 constant RTF_ACTIVE_DGD (line 605) | RTF_ACTIVE_DGD = 0x1000000 constant RTF_BCE (line 606) | RTF_BCE = 0x80000 constant RTF_BLACKHOLE (line 607) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 608) | RTF_BROADCAST = 0x400000 constant RTF_BUL (line 609) | RTF_BUL = 0x2000 constant RTF_CLONE (line 610) | RTF_CLONE = 0x10000 constant RTF_CLONED (line 611) | RTF_CLONED = 0x20000 constant RTF_CLONING (line 612) | RTF_CLONING = 0x100 constant RTF_DONE (line 613) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 614) | RTF_DYNAMIC = 0x10 constant RTF_FREE_IN_PROG (line 615) | RTF_FREE_IN_PROG = 0x4000000 constant RTF_GATEWAY (line 616) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 617) | RTF_HOST = 0x4 constant RTF_LLINFO (line 618) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 619) | RTF_LOCAL = 0x200000 constant RTF_MASK (line 620) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 621) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 622) | RTF_MULTICAST = 0x800000 constant RTF_PERMANENT6 (line 623) | RTF_PERMANENT6 = 0x8000000 constant RTF_PINNED (line 624) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 625) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 626) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 627) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 628) | RTF_REJECT = 0x8 constant RTF_SMALLMTU (line 629) | RTF_SMALLMTU = 0x40000 constant RTF_STATIC (line 630) | RTF_STATIC = 0x800 constant RTF_STOPSRCH (line 631) | RTF_STOPSRCH = 0x2000000 constant RTF_UNREACHABLE (line 632) | RTF_UNREACHABLE = 0x10000000 constant RTF_UP (line 633) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 634) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 635) | RTM_ADD = 0x1 constant RTM_CHANGE (line 636) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 637) | RTM_DELADDR = 0xd constant RTM_DELETE (line 638) | RTM_DELETE = 0x2 constant RTM_EXPIRE (line 639) | RTM_EXPIRE = 0xf constant RTM_GET (line 640) | RTM_GET = 0x4 constant RTM_GETNEXT (line 641) | RTM_GETNEXT = 0x11 constant RTM_IFINFO (line 642) | RTM_IFINFO = 0xe constant RTM_LOCK (line 643) | RTM_LOCK = 0x8 constant RTM_LOSING (line 644) | RTM_LOSING = 0x5 constant RTM_MISS (line 645) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 646) | RTM_NEWADDR = 0xc constant RTM_OLDADD (line 647) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 648) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 649) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 650) | RTM_RESOLVE = 0xb constant RTM_RTLOST (line 651) | RTM_RTLOST = 0x10 constant RTM_RTTUNIT (line 652) | RTM_RTTUNIT = 0xf4240 constant RTM_SAMEADDR (line 653) | RTM_SAMEADDR = 0x12 constant RTM_SET (line 654) | RTM_SET = 0x13 constant RTM_VERSION (line 655) | RTM_VERSION = 0x2 constant RTM_VERSION_GR (line 656) | RTM_VERSION_GR = 0x4 constant RTM_VERSION_GR_COMPAT (line 657) | RTM_VERSION_GR_COMPAT = 0x3 constant RTM_VERSION_POLICY (line 658) | RTM_VERSION_POLICY = 0x5 constant RTM_VERSION_POLICY_EXT (line 659) | RTM_VERSION_POLICY_EXT = 0x6 constant RTM_VERSION_POLICY_PRFN (line 660) | RTM_VERSION_POLICY_PRFN = 0x7 constant RTV_EXPIRE (line 661) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 662) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 663) | RTV_MTU = 0x1 constant RTV_RPIPE (line 664) | RTV_RPIPE = 0x8 constant RTV_RTT (line 665) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 666) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 667) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 668) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 669) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 670) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 671) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 672) | SCM_RIGHTS = 0x1 constant SHUT_RD (line 673) | SHUT_RD = 0x0 constant SHUT_RDWR (line 674) | SHUT_RDWR = 0x2 constant SHUT_WR (line 675) | SHUT_WR = 0x1 constant SIGMAX64 (line 676) | SIGMAX64 = 0xff constant SIGQUEUE_MAX (line 677) | SIGQUEUE_MAX = 0x20 constant SIOCADDIFVIPA (line 678) | SIOCADDIFVIPA = 0x20006942 constant SIOCADDMTU (line 679) | SIOCADDMTU = -0x7ffb9690 constant SIOCADDMULTI (line 680) | SIOCADDMULTI = -0x7fdf96cf constant SIOCADDNETID (line 681) | SIOCADDNETID = -0x7fd796a9 constant SIOCADDRT (line 682) | SIOCADDRT = -0x7fc78df6 constant SIOCAIFADDR (line 683) | SIOCAIFADDR = -0x7fbf96e6 constant SIOCATMARK (line 684) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 685) | SIOCDARP = -0x7fb396e0 constant SIOCDELIFVIPA (line 686) | SIOCDELIFVIPA = 0x20006943 constant SIOCDELMTU (line 687) | SIOCDELMTU = -0x7ffb968f constant SIOCDELMULTI (line 688) | SIOCDELMULTI = -0x7fdf96ce constant SIOCDELPMTU (line 689) | SIOCDELPMTU = -0x7fd78ff6 constant SIOCDELRT (line 690) | SIOCDELRT = -0x7fc78df5 constant SIOCDIFADDR (line 691) | SIOCDIFADDR = -0x7fd796e7 constant SIOCDNETOPT (line 692) | SIOCDNETOPT = -0x3ffe9680 constant SIOCDX25XLATE (line 693) | SIOCDX25XLATE = -0x7fd7969b constant SIOCFIFADDR (line 694) | SIOCFIFADDR = -0x7fdf966d constant SIOCGARP (line 695) | SIOCGARP = -0x3fb396da constant SIOCGETMTUS (line 696) | SIOCGETMTUS = 0x2000696f constant SIOCGETSGCNT (line 697) | SIOCGETSGCNT = -0x3feb8acc constant SIOCGETVIFCNT (line 698) | SIOCGETVIFCNT = -0x3feb8acd constant SIOCGHIWAT (line 699) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 700) | SIOCGIFADDR = -0x3fd796df constant SIOCGIFADDRS (line 701) | SIOCGIFADDRS = 0x2000698c constant SIOCGIFBAUDRATE (line 702) | SIOCGIFBAUDRATE = -0x3fdf9669 constant SIOCGIFBRDADDR (line 703) | SIOCGIFBRDADDR = -0x3fd796dd constant SIOCGIFCONF (line 704) | SIOCGIFCONF = -0x3fef96bb constant SIOCGIFCONFGLOB (line 705) | SIOCGIFCONFGLOB = -0x3fef9670 constant SIOCGIFDSTADDR (line 706) | SIOCGIFDSTADDR = -0x3fd796de constant SIOCGIFFLAGS (line 707) | SIOCGIFFLAGS = -0x3fd796ef constant SIOCGIFGIDLIST (line 708) | SIOCGIFGIDLIST = 0x20006968 constant SIOCGIFHWADDR (line 709) | SIOCGIFHWADDR = -0x3fab966b constant SIOCGIFMETRIC (line 710) | SIOCGIFMETRIC = -0x3fd796e9 constant SIOCGIFMTU (line 711) | SIOCGIFMTU = -0x3fd796aa constant SIOCGIFNETMASK (line 712) | SIOCGIFNETMASK = -0x3fd796db constant SIOCGIFOPTIONS (line 713) | SIOCGIFOPTIONS = -0x3fd796d6 constant SIOCGISNO (line 714) | SIOCGISNO = -0x3fd79695 constant SIOCGLOADF (line 715) | SIOCGLOADF = -0x3ffb967e constant SIOCGLOWAT (line 716) | SIOCGLOWAT = 0x40047303 constant SIOCGNETOPT (line 717) | SIOCGNETOPT = -0x3ffe96a5 constant SIOCGNETOPT1 (line 718) | SIOCGNETOPT1 = -0x3fdf967f constant SIOCGNMTUS (line 719) | SIOCGNMTUS = 0x2000696e constant SIOCGPGRP (line 720) | SIOCGPGRP = 0x40047309 constant SIOCGSIZIFCONF (line 721) | SIOCGSIZIFCONF = 0x4004696a constant SIOCGSRCFILTER (line 722) | SIOCGSRCFILTER = -0x3fe796cb constant SIOCGTUNEPHASE (line 723) | SIOCGTUNEPHASE = -0x3ffb9676 constant SIOCGX25XLATE (line 724) | SIOCGX25XLATE = -0x3fd7969c constant SIOCIFATTACH (line 725) | SIOCIFATTACH = -0x7fdf9699 constant SIOCIFDETACH (line 726) | SIOCIFDETACH = -0x7fdf969a constant SIOCIFGETPKEY (line 727) | SIOCIFGETPKEY = -0x7fdf969b constant SIOCIF_ATM_DARP (line 728) | SIOCIF_ATM_DARP = -0x7fdf9683 constant SIOCIF_ATM_DUMPARP (line 729) | SIOCIF_ATM_DUMPARP = -0x7fdf9685 constant SIOCIF_ATM_GARP (line 730) | SIOCIF_ATM_GARP = -0x7fdf9682 constant SIOCIF_ATM_IDLE (line 731) | SIOCIF_ATM_IDLE = -0x7fdf9686 constant SIOCIF_ATM_SARP (line 732) | SIOCIF_ATM_SARP = -0x7fdf9681 constant SIOCIF_ATM_SNMPARP (line 733) | SIOCIF_ATM_SNMPARP = -0x7fdf9687 constant SIOCIF_ATM_SVC (line 734) | SIOCIF_ATM_SVC = -0x7fdf9684 constant SIOCIF_ATM_UBR (line 735) | SIOCIF_ATM_UBR = -0x7fdf9688 constant SIOCIF_DEVHEALTH (line 736) | SIOCIF_DEVHEALTH = -0x7ffb966c constant SIOCIF_IB_ARP_INCOMP (line 737) | SIOCIF_IB_ARP_INCOMP = -0x7fdf9677 constant SIOCIF_IB_ARP_TIMER (line 738) | SIOCIF_IB_ARP_TIMER = -0x7fdf9678 constant SIOCIF_IB_CLEAR_PINFO (line 739) | SIOCIF_IB_CLEAR_PINFO = -0x3fdf966f constant SIOCIF_IB_DEL_ARP (line 740) | SIOCIF_IB_DEL_ARP = -0x7fdf967f constant SIOCIF_IB_DEL_PINFO (line 741) | SIOCIF_IB_DEL_PINFO = -0x3fdf9670 constant SIOCIF_IB_DUMP_ARP (line 742) | SIOCIF_IB_DUMP_ARP = -0x7fdf9680 constant SIOCIF_IB_GET_ARP (line 743) | SIOCIF_IB_GET_ARP = -0x7fdf967e constant SIOCIF_IB_GET_INFO (line 744) | SIOCIF_IB_GET_INFO = -0x3f879675 constant SIOCIF_IB_GET_STATS (line 745) | SIOCIF_IB_GET_STATS = -0x3f879672 constant SIOCIF_IB_NOTIFY_ADDR_REM (line 746) | SIOCIF_IB_NOTIFY_ADDR_REM = -0x3f87966a constant SIOCIF_IB_RESET_STATS (line 747) | SIOCIF_IB_RESET_STATS = -0x3f879671 constant SIOCIF_IB_RESIZE_CQ (line 748) | SIOCIF_IB_RESIZE_CQ = -0x7fdf9679 constant SIOCIF_IB_SET_ARP (line 749) | SIOCIF_IB_SET_ARP = -0x7fdf967d constant SIOCIF_IB_SET_PKEY (line 750) | SIOCIF_IB_SET_PKEY = -0x7fdf967c constant SIOCIF_IB_SET_PORT (line 751) | SIOCIF_IB_SET_PORT = -0x7fdf967b constant SIOCIF_IB_SET_QKEY (line 752) | SIOCIF_IB_SET_QKEY = -0x7fdf9676 constant SIOCIF_IB_SET_QSIZE (line 753) | SIOCIF_IB_SET_QSIZE = -0x7fdf967a constant SIOCLISTIFVIPA (line 754) | SIOCLISTIFVIPA = 0x20006944 constant SIOCSARP (line 755) | SIOCSARP = -0x7fb396e2 constant SIOCSHIWAT (line 756) | SIOCSHIWAT = 0xffffffff80047300 constant SIOCSIFADDR (line 757) | SIOCSIFADDR = -0x7fd796f4 constant SIOCSIFADDRORI (line 758) | SIOCSIFADDRORI = -0x7fdb9673 constant SIOCSIFBRDADDR (line 759) | SIOCSIFBRDADDR = -0x7fd796ed constant SIOCSIFDSTADDR (line 760) | SIOCSIFDSTADDR = -0x7fd796f2 constant SIOCSIFFLAGS (line 761) | SIOCSIFFLAGS = -0x7fd796f0 constant SIOCSIFGIDLIST (line 762) | SIOCSIFGIDLIST = 0x20006969 constant SIOCSIFMETRIC (line 763) | SIOCSIFMETRIC = -0x7fd796e8 constant SIOCSIFMTU (line 764) | SIOCSIFMTU = -0x7fd796a8 constant SIOCSIFNETDUMP (line 765) | SIOCSIFNETDUMP = -0x7fd796e4 constant SIOCSIFNETMASK (line 766) | SIOCSIFNETMASK = -0x7fd796ea constant SIOCSIFOPTIONS (line 767) | SIOCSIFOPTIONS = -0x7fd796d7 constant SIOCSIFSUBCHAN (line 768) | SIOCSIFSUBCHAN = -0x7fd796e5 constant SIOCSISNO (line 769) | SIOCSISNO = -0x7fd79694 constant SIOCSLOADF (line 770) | SIOCSLOADF = -0x3ffb967d constant SIOCSLOWAT (line 771) | SIOCSLOWAT = 0xffffffff80047302 constant SIOCSNETOPT (line 772) | SIOCSNETOPT = -0x7ffe96a6 constant SIOCSPGRP (line 773) | SIOCSPGRP = 0xffffffff80047308 constant SIOCSX25XLATE (line 774) | SIOCSX25XLATE = -0x7fd7969d constant SOCK_CONN_DGRAM (line 775) | SOCK_CONN_DGRAM = 0x6 constant SOCK_DGRAM (line 776) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 777) | SOCK_RAW = 0x3 constant SOCK_RDM (line 778) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 779) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 780) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 781) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 782) | SOMAXCONN = 0x400 constant SO_ACCEPTCONN (line 783) | SO_ACCEPTCONN = 0x2 constant SO_AUDIT (line 784) | SO_AUDIT = 0x8000 constant SO_BROADCAST (line 785) | SO_BROADCAST = 0x20 constant SO_CKSUMRECV (line 786) | SO_CKSUMRECV = 0x800 constant SO_DEBUG (line 787) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 788) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 789) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 790) | SO_KEEPALIVE = 0x8 constant SO_KERNACCEPT (line 791) | SO_KERNACCEPT = 0x2000 constant SO_LINGER (line 792) | SO_LINGER = 0x80 constant SO_NOMULTIPATH (line 793) | SO_NOMULTIPATH = 0x4000 constant SO_NOREUSEADDR (line 794) | SO_NOREUSEADDR = 0x1000 constant SO_OOBINLINE (line 795) | SO_OOBINLINE = 0x100 constant SO_PEERID (line 796) | SO_PEERID = 0x1009 constant SO_RCVBUF (line 797) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 798) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 799) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 800) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 801) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 802) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 803) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 804) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMPNS (line 805) | SO_TIMESTAMPNS = 0x100a constant SO_TYPE (line 806) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 807) | SO_USELOOPBACK = 0x40 constant SO_USE_IFBUFS (line 808) | SO_USE_IFBUFS = 0x400 constant S_BANDURG (line 809) | S_BANDURG = 0x400 constant S_EMODFMT (line 810) | S_EMODFMT = 0x3c000000 constant S_ENFMT (line 811) | S_ENFMT = 0x400 constant S_ERROR (line 812) | S_ERROR = 0x100 constant S_HANGUP (line 813) | S_HANGUP = 0x200 constant S_HIPRI (line 814) | S_HIPRI = 0x2 constant S_ICRYPTO (line 815) | S_ICRYPTO = 0x80000 constant S_IEXEC (line 816) | S_IEXEC = 0x40 constant S_IFBLK (line 817) | S_IFBLK = 0x6000 constant S_IFCHR (line 818) | S_IFCHR = 0x2000 constant S_IFDIR (line 819) | S_IFDIR = 0x4000 constant S_IFIFO (line 820) | S_IFIFO = 0x1000 constant S_IFJOURNAL (line 821) | S_IFJOURNAL = 0x10000 constant S_IFLNK (line 822) | S_IFLNK = 0xa000 constant S_IFMPX (line 823) | S_IFMPX = 0x2200 constant S_IFMT (line 824) | S_IFMT = 0xf000 constant S_IFPDIR (line 825) | S_IFPDIR = 0x4000000 constant S_IFPSDIR (line 826) | S_IFPSDIR = 0x8000000 constant S_IFPSSDIR (line 827) | S_IFPSSDIR = 0xc000000 constant S_IFREG (line 828) | S_IFREG = 0x8000 constant S_IFSOCK (line 829) | S_IFSOCK = 0xc000 constant S_IFSYSEA (line 830) | S_IFSYSEA = 0x30000000 constant S_INPUT (line 831) | S_INPUT = 0x1 constant S_IREAD (line 832) | S_IREAD = 0x100 constant S_IRGRP (line 833) | S_IRGRP = 0x20 constant S_IROTH (line 834) | S_IROTH = 0x4 constant S_IRUSR (line 835) | S_IRUSR = 0x100 constant S_IRWXG (line 836) | S_IRWXG = 0x38 constant S_IRWXO (line 837) | S_IRWXO = 0x7 constant S_IRWXU (line 838) | S_IRWXU = 0x1c0 constant S_ISGID (line 839) | S_ISGID = 0x400 constant S_ISUID (line 840) | S_ISUID = 0x800 constant S_ISVTX (line 841) | S_ISVTX = 0x200 constant S_ITCB (line 842) | S_ITCB = 0x1000000 constant S_ITP (line 843) | S_ITP = 0x800000 constant S_IWGRP (line 844) | S_IWGRP = 0x10 constant S_IWOTH (line 845) | S_IWOTH = 0x2 constant S_IWRITE (line 846) | S_IWRITE = 0x80 constant S_IWUSR (line 847) | S_IWUSR = 0x80 constant S_IXACL (line 848) | S_IXACL = 0x2000000 constant S_IXATTR (line 849) | S_IXATTR = 0x40000 constant S_IXGRP (line 850) | S_IXGRP = 0x8 constant S_IXINTERFACE (line 851) | S_IXINTERFACE = 0x100000 constant S_IXMOD (line 852) | S_IXMOD = 0x40000000 constant S_IXOTH (line 853) | S_IXOTH = 0x1 constant S_IXUSR (line 854) | S_IXUSR = 0x40 constant S_MSG (line 855) | S_MSG = 0x8 constant S_OUTPUT (line 856) | S_OUTPUT = 0x4 constant S_RDBAND (line 857) | S_RDBAND = 0x20 constant S_RDNORM (line 858) | S_RDNORM = 0x10 constant S_RESERVED1 (line 859) | S_RESERVED1 = 0x20000 constant S_RESERVED2 (line 860) | S_RESERVED2 = 0x200000 constant S_RESERVED3 (line 861) | S_RESERVED3 = 0x400000 constant S_RESERVED4 (line 862) | S_RESERVED4 = 0x80000000 constant S_RESFMT1 (line 863) | S_RESFMT1 = 0x10000000 constant S_RESFMT10 (line 864) | S_RESFMT10 = 0x34000000 constant S_RESFMT11 (line 865) | S_RESFMT11 = 0x38000000 constant S_RESFMT12 (line 866) | S_RESFMT12 = 0x3c000000 constant S_RESFMT2 (line 867) | S_RESFMT2 = 0x14000000 constant S_RESFMT3 (line 868) | S_RESFMT3 = 0x18000000 constant S_RESFMT4 (line 869) | S_RESFMT4 = 0x1c000000 constant S_RESFMT5 (line 870) | S_RESFMT5 = 0x20000000 constant S_RESFMT6 (line 871) | S_RESFMT6 = 0x24000000 constant S_RESFMT7 (line 872) | S_RESFMT7 = 0x28000000 constant S_RESFMT8 (line 873) | S_RESFMT8 = 0x2c000000 constant S_WRBAND (line 874) | S_WRBAND = 0x80 constant S_WRNORM (line 875) | S_WRNORM = 0x40 constant TAB0 (line 876) | TAB0 = 0x0 constant TAB1 (line 877) | TAB1 = 0x400 constant TAB2 (line 878) | TAB2 = 0x800 constant TAB3 (line 879) | TAB3 = 0xc00 constant TABDLY (line 880) | TABDLY = 0xc00 constant TCFLSH (line 881) | TCFLSH = 0x540c constant TCGETA (line 882) | TCGETA = 0x5405 constant TCGETS (line 883) | TCGETS = 0x5401 constant TCIFLUSH (line 884) | TCIFLUSH = 0x0 constant TCIOFF (line 885) | TCIOFF = 0x2 constant TCIOFLUSH (line 886) | TCIOFLUSH = 0x2 constant TCION (line 887) | TCION = 0x3 constant TCOFLUSH (line 888) | TCOFLUSH = 0x1 constant TCOOFF (line 889) | TCOOFF = 0x0 constant TCOON (line 890) | TCOON = 0x1 constant TCP_24DAYS_WORTH_OF_SLOWTICKS (line 891) | TCP_24DAYS_WORTH_OF_SLOWTICKS = 0x3f4800 constant TCP_ACLADD (line 892) | TCP_ACLADD = 0x23 constant TCP_ACLBIND (line 893) | TCP_ACLBIND = 0x26 constant TCP_ACLCLEAR (line 894) | TCP_ACLCLEAR = 0x22 constant TCP_ACLDEL (line 895) | TCP_ACLDEL = 0x24 constant TCP_ACLDENY (line 896) | TCP_ACLDENY = 0x8 constant TCP_ACLFLUSH (line 897) | TCP_ACLFLUSH = 0x21 constant TCP_ACLGID (line 898) | TCP_ACLGID = 0x1 constant TCP_ACLLS (line 899) | TCP_ACLLS = 0x25 constant TCP_ACLSUBNET (line 900) | TCP_ACLSUBNET = 0x4 constant TCP_ACLUID (line 901) | TCP_ACLUID = 0x2 constant TCP_CWND_DF (line 902) | TCP_CWND_DF = 0x16 constant TCP_CWND_IF (line 903) | TCP_CWND_IF = 0x15 constant TCP_DELAY_ACK_FIN (line 904) | TCP_DELAY_ACK_FIN = 0x2 constant TCP_DELAY_ACK_SYN (line 905) | TCP_DELAY_ACK_SYN = 0x1 constant TCP_FASTNAME (line 906) | TCP_FASTNAME = 0x101080a constant TCP_KEEPCNT (line 907) | TCP_KEEPCNT = 0x13 constant TCP_KEEPIDLE (line 908) | TCP_KEEPIDLE = 0x11 constant TCP_KEEPINTVL (line 909) | TCP_KEEPINTVL = 0x12 constant TCP_LSPRIV (line 910) | TCP_LSPRIV = 0x29 constant TCP_LUID (line 911) | TCP_LUID = 0x20 constant TCP_MAXBURST (line 912) | TCP_MAXBURST = 0x8 constant TCP_MAXDF (line 913) | TCP_MAXDF = 0x64 constant TCP_MAXIF (line 914) | TCP_MAXIF = 0x64 constant TCP_MAXSEG (line 915) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 916) | TCP_MAXWIN = 0xffff constant TCP_MAXWINDOWSCALE (line 917) | TCP_MAXWINDOWSCALE = 0xe constant TCP_MAX_SACK (line 918) | TCP_MAX_SACK = 0x4 constant TCP_MSS (line 919) | TCP_MSS = 0x5b4 constant TCP_NODELAY (line 920) | TCP_NODELAY = 0x1 constant TCP_NODELAYACK (line 921) | TCP_NODELAYACK = 0x14 constant TCP_NOREDUCE_CWND_EXIT_FRXMT (line 922) | TCP_NOREDUCE_CWND_EXIT_FRXMT = 0x19 constant TCP_NOREDUCE_CWND_IN_FRXMT (line 923) | TCP_NOREDUCE_CWND_IN_FRXMT = 0x18 constant TCP_NOTENTER_SSTART (line 924) | TCP_NOTENTER_SSTART = 0x17 constant TCP_OPT (line 925) | TCP_OPT = 0x19 constant TCP_RFC1323 (line 926) | TCP_RFC1323 = 0x4 constant TCP_SETPRIV (line 927) | TCP_SETPRIV = 0x27 constant TCP_STDURG (line 928) | TCP_STDURG = 0x10 constant TCP_TIMESTAMP_OPTLEN (line 929) | TCP_TIMESTAMP_OPTLEN = 0xc constant TCP_UNSETPRIV (line 930) | TCP_UNSETPRIV = 0x28 constant TCSAFLUSH (line 931) | TCSAFLUSH = 0x2 constant TCSBRK (line 932) | TCSBRK = 0x5409 constant TCSETA (line 933) | TCSETA = 0x5406 constant TCSETAF (line 934) | TCSETAF = 0x5408 constant TCSETAW (line 935) | TCSETAW = 0x5407 constant TCSETS (line 936) | TCSETS = 0x5402 constant TCSETSF (line 937) | TCSETSF = 0x5404 constant TCSETSW (line 938) | TCSETSW = 0x5403 constant TCXONC (line 939) | TCXONC = 0x540b constant TIMER_ABSTIME (line 940) | TIMER_ABSTIME = 0x3e7 constant TIMER_MAX (line 941) | TIMER_MAX = 0x20 constant TIOC (line 942) | TIOC = 0x5400 constant TIOCCBRK (line 943) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 944) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 945) | TIOCCONS = 0xffffffff80047462 constant TIOCEXCL (line 946) | TIOCEXCL = 0x2000740d constant TIOCFLUSH (line 947) | TIOCFLUSH = 0xffffffff80047410 constant TIOCGETC (line 948) | TIOCGETC = 0x40067412 constant TIOCGETD (line 949) | TIOCGETD = 0x40047400 constant TIOCGETP (line 950) | TIOCGETP = 0x40067408 constant TIOCGLTC (line 951) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 952) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 953) | TIOCGSID = 0x40047448 constant TIOCGSIZE (line 954) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 955) | TIOCGWINSZ = 0x40087468 constant TIOCHPCL (line 956) | TIOCHPCL = 0x20007402 constant TIOCLBIC (line 957) | TIOCLBIC = 0xffffffff8004747e constant TIOCLBIS (line 958) | TIOCLBIS = 0xffffffff8004747f constant TIOCLGET (line 959) | TIOCLGET = 0x4004747c constant TIOCLSET (line 960) | TIOCLSET = 0xffffffff8004747d constant TIOCMBIC (line 961) | TIOCMBIC = 0xffffffff8004746b constant TIOCMBIS (line 962) | TIOCMBIS = 0xffffffff8004746c constant TIOCMGET (line 963) | TIOCMGET = 0x4004746a constant TIOCMIWAIT (line 964) | TIOCMIWAIT = 0xffffffff80047464 constant TIOCMODG (line 965) | TIOCMODG = 0x40047403 constant TIOCMODS (line 966) | TIOCMODS = 0xffffffff80047404 constant TIOCMSET (line 967) | TIOCMSET = 0xffffffff8004746d constant TIOCM_CAR (line 968) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 969) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 970) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 971) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 972) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 973) | TIOCM_LE = 0x1 constant TIOCM_RI (line 974) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 975) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 976) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 977) | TIOCM_SR = 0x10 constant TIOCM_ST (line 978) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 979) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 980) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 981) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 982) | TIOCPKT = 0xffffffff80047470 constant TIOCPKT_DATA (line 983) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 984) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 985) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 986) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_NOSTOP (line 987) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 988) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 989) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 990) | TIOCREMOTE = 0xffffffff80047469 constant TIOCSBRK (line 991) | TIOCSBRK = 0x2000747b constant TIOCSDTR (line 992) | TIOCSDTR = 0x20007479 constant TIOCSETC (line 993) | TIOCSETC = 0xffffffff80067411 constant TIOCSETD (line 994) | TIOCSETD = 0xffffffff80047401 constant TIOCSETN (line 995) | TIOCSETN = 0xffffffff8006740a constant TIOCSETP (line 996) | TIOCSETP = 0xffffffff80067409 constant TIOCSLTC (line 997) | TIOCSLTC = 0xffffffff80067475 constant TIOCSPGRP (line 998) | TIOCSPGRP = 0xffffffff80047476 constant TIOCSSIZE (line 999) | TIOCSSIZE = 0xffffffff80087467 constant TIOCSTART (line 1000) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1001) | TIOCSTI = 0xffffffff80017472 constant TIOCSTOP (line 1002) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1003) | TIOCSWINSZ = 0xffffffff80087467 constant TIOCUCNTL (line 1004) | TIOCUCNTL = 0xffffffff80047466 constant TOSTOP (line 1005) | TOSTOP = 0x10000 constant UTIME_NOW (line 1006) | UTIME_NOW = -0x2 constant UTIME_OMIT (line 1007) | UTIME_OMIT = -0x3 constant VDISCRD (line 1008) | VDISCRD = 0xc constant VDSUSP (line 1009) | VDSUSP = 0xa constant VEOF (line 1010) | VEOF = 0x4 constant VEOL (line 1011) | VEOL = 0x5 constant VEOL2 (line 1012) | VEOL2 = 0x6 constant VERASE (line 1013) | VERASE = 0x2 constant VINTR (line 1014) | VINTR = 0x0 constant VKILL (line 1015) | VKILL = 0x3 constant VLNEXT (line 1016) | VLNEXT = 0xe constant VMIN (line 1017) | VMIN = 0x4 constant VQUIT (line 1018) | VQUIT = 0x1 constant VREPRINT (line 1019) | VREPRINT = 0xb constant VSTART (line 1020) | VSTART = 0x7 constant VSTOP (line 1021) | VSTOP = 0x8 constant VSTRT (line 1022) | VSTRT = 0x7 constant VSUSP (line 1023) | VSUSP = 0x9 constant VT0 (line 1024) | VT0 = 0x0 constant VT1 (line 1025) | VT1 = 0x8000 constant VTDELAY (line 1026) | VTDELAY = 0x2000 constant VTDLY (line 1027) | VTDLY = 0x8000 constant VTIME (line 1028) | VTIME = 0x5 constant VWERSE (line 1029) | VWERSE = 0xd constant WPARSTART (line 1030) | WPARSTART = 0x1 constant WPARSTOP (line 1031) | WPARSTOP = 0x2 constant WPARTTYNAME (line 1032) | WPARTTYNAME = "Global" constant XCASE (line 1033) | XCASE = 0x4 constant XTABS (line 1034) | XTABS = 0xc00 constant _FDATAFLUSH (line 1035) | _FDATAFLUSH = 0x2000000000 constant E2BIG (line 1040) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1041) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1042) | EADDRINUSE = syscall.Errno(0x43) constant EADDRNOTAVAIL (line 1043) | EADDRNOTAVAIL = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1044) | EAFNOSUPPORT = syscall.Errno(0x42) constant EAGAIN (line 1045) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1046) | EALREADY = syscall.Errno(0x38) constant EBADF (line 1047) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1048) | EBADMSG = syscall.Errno(0x78) constant EBUSY (line 1049) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1050) | ECANCELED = syscall.Errno(0x75) constant ECHILD (line 1051) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1052) | ECHRNG = syscall.Errno(0x25) constant ECLONEME (line 1053) | ECLONEME = syscall.Errno(0x52) constant ECONNABORTED (line 1054) | ECONNABORTED = syscall.Errno(0x48) constant ECONNREFUSED (line 1055) | ECONNREFUSED = syscall.Errno(0x4f) constant ECONNRESET (line 1056) | ECONNRESET = syscall.Errno(0x49) constant ECORRUPT (line 1057) | ECORRUPT = syscall.Errno(0x59) constant EDEADLK (line 1058) | EDEADLK = syscall.Errno(0x2d) constant EDESTADDREQ (line 1059) | EDESTADDREQ = syscall.Errno(0x3a) constant EDESTADDRREQ (line 1060) | EDESTADDRREQ = syscall.Errno(0x3a) constant EDIST (line 1061) | EDIST = syscall.Errno(0x35) constant EDOM (line 1062) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1063) | EDQUOT = syscall.Errno(0x58) constant EEXIST (line 1064) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1065) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1066) | EFBIG = syscall.Errno(0x1b) constant EFORMAT (line 1067) | EFORMAT = syscall.Errno(0x30) constant EHOSTDOWN (line 1068) | EHOSTDOWN = syscall.Errno(0x50) constant EHOSTUNREACH (line 1069) | EHOSTUNREACH = syscall.Errno(0x51) constant EIDRM (line 1070) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1071) | EILSEQ = syscall.Errno(0x74) constant EINPROGRESS (line 1072) | EINPROGRESS = syscall.Errno(0x37) constant EINTR (line 1073) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1074) | EINVAL = syscall.Errno(0x16) constant EIO (line 1075) | EIO = syscall.Errno(0x5) constant EISCONN (line 1076) | EISCONN = syscall.Errno(0x4b) constant EISDIR (line 1077) | EISDIR = syscall.Errno(0x15) constant EL2HLT (line 1078) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1079) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1080) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1081) | EL3RST = syscall.Errno(0x28) constant ELNRNG (line 1082) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1083) | ELOOP = syscall.Errno(0x55) constant EMEDIA (line 1084) | EMEDIA = syscall.Errno(0x6e) constant EMFILE (line 1085) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1086) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1087) | EMSGSIZE = syscall.Errno(0x3b) constant EMULTIHOP (line 1088) | EMULTIHOP = syscall.Errno(0x7d) constant ENAMETOOLONG (line 1089) | ENAMETOOLONG = syscall.Errno(0x56) constant ENETDOWN (line 1090) | ENETDOWN = syscall.Errno(0x45) constant ENETRESET (line 1091) | ENETRESET = syscall.Errno(0x47) constant ENETUNREACH (line 1092) | ENETUNREACH = syscall.Errno(0x46) constant ENFILE (line 1093) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1094) | ENOATTR = syscall.Errno(0x70) constant ENOBUFS (line 1095) | ENOBUFS = syscall.Errno(0x4a) constant ENOCONNECT (line 1096) | ENOCONNECT = syscall.Errno(0x32) constant ENOCSI (line 1097) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1098) | ENODATA = syscall.Errno(0x7a) constant ENODEV (line 1099) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1100) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1101) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1102) | ENOLCK = syscall.Errno(0x31) constant ENOLINK (line 1103) | ENOLINK = syscall.Errno(0x7e) constant ENOMEM (line 1104) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1105) | ENOMSG = syscall.Errno(0x23) constant ENOPROTOOPT (line 1106) | ENOPROTOOPT = syscall.Errno(0x3d) constant ENOSPC (line 1107) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1108) | ENOSR = syscall.Errno(0x76) constant ENOSTR (line 1109) | ENOSTR = syscall.Errno(0x7b) constant ENOSYS (line 1110) | ENOSYS = syscall.Errno(0x6d) constant ENOTBLK (line 1111) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1112) | ENOTCONN = syscall.Errno(0x4c) constant ENOTDIR (line 1113) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1114) | ENOTEMPTY = syscall.Errno(0x11) constant ENOTREADY (line 1115) | ENOTREADY = syscall.Errno(0x2e) constant ENOTRECOVERABLE (line 1116) | ENOTRECOVERABLE = syscall.Errno(0x5e) constant ENOTRUST (line 1117) | ENOTRUST = syscall.Errno(0x72) constant ENOTSOCK (line 1118) | ENOTSOCK = syscall.Errno(0x39) constant ENOTSUP (line 1119) | ENOTSUP = syscall.Errno(0x7c) constant ENOTTY (line 1120) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1121) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1122) | EOPNOTSUPP = syscall.Errno(0x40) constant EOVERFLOW (line 1123) | EOVERFLOW = syscall.Errno(0x7f) constant EOWNERDEAD (line 1124) | EOWNERDEAD = syscall.Errno(0x5f) constant EPERM (line 1125) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1126) | EPFNOSUPPORT = syscall.Errno(0x41) constant EPIPE (line 1127) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1128) | EPROCLIM = syscall.Errno(0x53) constant EPROTO (line 1129) | EPROTO = syscall.Errno(0x79) constant EPROTONOSUPPORT (line 1130) | EPROTONOSUPPORT = syscall.Errno(0x3e) constant EPROTOTYPE (line 1131) | EPROTOTYPE = syscall.Errno(0x3c) constant ERANGE (line 1132) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1133) | EREMOTE = syscall.Errno(0x5d) constant ERESTART (line 1134) | ERESTART = syscall.Errno(0x52) constant EROFS (line 1135) | EROFS = syscall.Errno(0x1e) constant ESAD (line 1136) | ESAD = syscall.Errno(0x71) constant ESHUTDOWN (line 1137) | ESHUTDOWN = syscall.Errno(0x4d) constant ESOCKTNOSUPPORT (line 1138) | ESOCKTNOSUPPORT = syscall.Errno(0x3f) constant ESOFT (line 1139) | ESOFT = syscall.Errno(0x6f) constant ESPIPE (line 1140) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1141) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1142) | ESTALE = syscall.Errno(0x34) constant ESYSERROR (line 1143) | ESYSERROR = syscall.Errno(0x5a) constant ETIME (line 1144) | ETIME = syscall.Errno(0x77) constant ETIMEDOUT (line 1145) | ETIMEDOUT = syscall.Errno(0x4e) constant ETOOMANYREFS (line 1146) | ETOOMANYREFS = syscall.Errno(0x73) constant ETXTBSY (line 1147) | ETXTBSY = syscall.Errno(0x1a) constant EUNATCH (line 1148) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1149) | EUSERS = syscall.Errno(0x54) constant EWOULDBLOCK (line 1150) | EWOULDBLOCK = syscall.Errno(0xb) constant EWRPROTECT (line 1151) | EWRPROTECT = syscall.Errno(0x2f) constant EXDEV (line 1152) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1157) | SIGABRT = syscall.Signal(0x6) constant SIGAIO (line 1158) | SIGAIO = syscall.Signal(0x17) constant SIGALRM (line 1159) | SIGALRM = syscall.Signal(0xe) constant SIGALRM1 (line 1160) | SIGALRM1 = syscall.Signal(0x26) constant SIGBUS (line 1161) | SIGBUS = syscall.Signal(0xa) constant SIGCAPI (line 1162) | SIGCAPI = syscall.Signal(0x31) constant SIGCHLD (line 1163) | SIGCHLD = syscall.Signal(0x14) constant SIGCLD (line 1164) | SIGCLD = syscall.Signal(0x14) constant SIGCONT (line 1165) | SIGCONT = syscall.Signal(0x13) constant SIGCPUFAIL (line 1166) | SIGCPUFAIL = syscall.Signal(0x3b) constant SIGDANGER (line 1167) | SIGDANGER = syscall.Signal(0x21) constant SIGEMT (line 1168) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1169) | SIGFPE = syscall.Signal(0x8) constant SIGGRANT (line 1170) | SIGGRANT = syscall.Signal(0x3c) constant SIGHUP (line 1171) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1172) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1173) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1174) | SIGIO = syscall.Signal(0x17) constant SIGIOINT (line 1175) | SIGIOINT = syscall.Signal(0x10) constant SIGIOT (line 1176) | SIGIOT = syscall.Signal(0x6) constant SIGKAP (line 1177) | SIGKAP = syscall.Signal(0x3c) constant SIGKILL (line 1178) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1179) | SIGLOST = syscall.Signal(0x6) constant SIGMAX (line 1180) | SIGMAX = syscall.Signal(0xff) constant SIGMAX32 (line 1181) | SIGMAX32 = syscall.Signal(0x3f) constant SIGMIGRATE (line 1182) | SIGMIGRATE = syscall.Signal(0x23) constant SIGMSG (line 1183) | SIGMSG = syscall.Signal(0x1b) constant SIGPIPE (line 1184) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1185) | SIGPOLL = syscall.Signal(0x17) constant SIGPRE (line 1186) | SIGPRE = syscall.Signal(0x24) constant SIGPROF (line 1187) | SIGPROF = syscall.Signal(0x20) constant SIGPTY (line 1188) | SIGPTY = syscall.Signal(0x17) constant SIGPWR (line 1189) | SIGPWR = syscall.Signal(0x1d) constant SIGQUIT (line 1190) | SIGQUIT = syscall.Signal(0x3) constant SIGRECONFIG (line 1191) | SIGRECONFIG = syscall.Signal(0x3a) constant SIGRETRACT (line 1192) | SIGRETRACT = syscall.Signal(0x3d) constant SIGSAK (line 1193) | SIGSAK = syscall.Signal(0x3f) constant SIGSEGV (line 1194) | SIGSEGV = syscall.Signal(0xb) constant SIGSOUND (line 1195) | SIGSOUND = syscall.Signal(0x3e) constant SIGSTOP (line 1196) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1197) | SIGSYS = syscall.Signal(0xc) constant SIGSYSERROR (line 1198) | SIGSYSERROR = syscall.Signal(0x30) constant SIGTALRM (line 1199) | SIGTALRM = syscall.Signal(0x26) constant SIGTERM (line 1200) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1201) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1202) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1203) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1204) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1205) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1206) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1207) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVIRT (line 1208) | SIGVIRT = syscall.Signal(0x25) constant SIGVTALRM (line 1209) | SIGVTALRM = syscall.Signal(0x22) constant SIGWAITING (line 1210) | SIGWAITING = syscall.Signal(0x27) constant SIGWINCH (line 1211) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1212) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1213) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go 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_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 = 0x1c constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_HYLINK (line 25) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 26) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x1e constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1c constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_LAT (line 33) | AF_LAT = 0xe constant AF_LINK (line 34) | AF_LINK = 0x12 constant AF_LOCAL (line 35) | AF_LOCAL = 0x1 constant AF_MAX (line 36) | AF_MAX = 0x29 constant AF_NATM (line 37) | AF_NATM = 0x1f constant AF_NDRV (line 38) | AF_NDRV = 0x1b constant AF_NETBIOS (line 39) | AF_NETBIOS = 0x21 constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PPP (line 42) | AF_PPP = 0x22 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 44) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 45) | AF_ROUTE = 0x11 constant AF_SIP (line 46) | AF_SIP = 0x18 constant AF_SNA (line 47) | AF_SNA = 0xb constant AF_SYSTEM (line 48) | AF_SYSTEM = 0x20 constant AF_SYS_CONTROL (line 49) | AF_SYS_CONTROL = 0x2 constant AF_UNIX (line 50) | AF_UNIX = 0x1 constant AF_UNSPEC (line 51) | AF_UNSPEC = 0x0 constant AF_UTUN (line 52) | AF_UTUN = 0x26 constant AF_VSOCK (line 53) | AF_VSOCK = 0x28 constant ALTWERASE (line 54) | ALTWERASE = 0x200 constant ATTR_BIT_MAP_COUNT (line 55) | ATTR_BIT_MAP_COUNT = 0x5 constant ATTR_CMN_ACCESSMASK (line 56) | ATTR_CMN_ACCESSMASK = 0x20000 constant ATTR_CMN_ACCTIME (line 57) | ATTR_CMN_ACCTIME = 0x1000 constant ATTR_CMN_ADDEDTIME (line 58) | ATTR_CMN_ADDEDTIME = 0x10000000 constant ATTR_CMN_BKUPTIME (line 59) | ATTR_CMN_BKUPTIME = 0x2000 constant ATTR_CMN_CHGTIME (line 60) | ATTR_CMN_CHGTIME = 0x800 constant ATTR_CMN_CRTIME (line 61) | ATTR_CMN_CRTIME = 0x200 constant ATTR_CMN_DATA_PROTECT_FLAGS (line 62) | ATTR_CMN_DATA_PROTECT_FLAGS = 0x40000000 constant ATTR_CMN_DEVID (line 63) | ATTR_CMN_DEVID = 0x2 constant ATTR_CMN_DOCUMENT_ID (line 64) | ATTR_CMN_DOCUMENT_ID = 0x100000 constant ATTR_CMN_ERROR (line 65) | ATTR_CMN_ERROR = 0x20000000 constant ATTR_CMN_EXTENDED_SECURITY (line 66) | ATTR_CMN_EXTENDED_SECURITY = 0x400000 constant ATTR_CMN_FILEID (line 67) | ATTR_CMN_FILEID = 0x2000000 constant ATTR_CMN_FLAGS (line 68) | ATTR_CMN_FLAGS = 0x40000 constant ATTR_CMN_FNDRINFO (line 69) | ATTR_CMN_FNDRINFO = 0x4000 constant ATTR_CMN_FSID (line 70) | ATTR_CMN_FSID = 0x4 constant ATTR_CMN_FULLPATH (line 71) | ATTR_CMN_FULLPATH = 0x8000000 constant ATTR_CMN_GEN_COUNT (line 72) | ATTR_CMN_GEN_COUNT = 0x80000 constant ATTR_CMN_GRPID (line 73) | ATTR_CMN_GRPID = 0x10000 constant ATTR_CMN_GRPUUID (line 74) | ATTR_CMN_GRPUUID = 0x1000000 constant ATTR_CMN_MODTIME (line 75) | ATTR_CMN_MODTIME = 0x400 constant ATTR_CMN_NAME (line 76) | ATTR_CMN_NAME = 0x1 constant ATTR_CMN_NAMEDATTRCOUNT (line 77) | ATTR_CMN_NAMEDATTRCOUNT = 0x80000 constant ATTR_CMN_NAMEDATTRLIST (line 78) | ATTR_CMN_NAMEDATTRLIST = 0x100000 constant ATTR_CMN_OBJID (line 79) | ATTR_CMN_OBJID = 0x20 constant ATTR_CMN_OBJPERMANENTID (line 80) | ATTR_CMN_OBJPERMANENTID = 0x40 constant ATTR_CMN_OBJTAG (line 81) | ATTR_CMN_OBJTAG = 0x10 constant ATTR_CMN_OBJTYPE (line 82) | ATTR_CMN_OBJTYPE = 0x8 constant ATTR_CMN_OWNERID (line 83) | ATTR_CMN_OWNERID = 0x8000 constant ATTR_CMN_PARENTID (line 84) | ATTR_CMN_PARENTID = 0x4000000 constant ATTR_CMN_PAROBJID (line 85) | ATTR_CMN_PAROBJID = 0x80 constant ATTR_CMN_RETURNED_ATTRS (line 86) | ATTR_CMN_RETURNED_ATTRS = 0x80000000 constant ATTR_CMN_SCRIPT (line 87) | ATTR_CMN_SCRIPT = 0x100 constant ATTR_CMN_SETMASK (line 88) | ATTR_CMN_SETMASK = 0x51c7ff00 constant ATTR_CMN_USERACCESS (line 89) | ATTR_CMN_USERACCESS = 0x200000 constant ATTR_CMN_UUID (line 90) | ATTR_CMN_UUID = 0x800000 constant ATTR_CMN_VALIDMASK (line 91) | ATTR_CMN_VALIDMASK = 0xffffffff constant ATTR_CMN_VOLSETMASK (line 92) | ATTR_CMN_VOLSETMASK = 0x6700 constant ATTR_FILE_ALLOCSIZE (line 93) | ATTR_FILE_ALLOCSIZE = 0x4 constant ATTR_FILE_CLUMPSIZE (line 94) | ATTR_FILE_CLUMPSIZE = 0x10 constant ATTR_FILE_DATAALLOCSIZE (line 95) | ATTR_FILE_DATAALLOCSIZE = 0x400 constant ATTR_FILE_DATAEXTENTS (line 96) | ATTR_FILE_DATAEXTENTS = 0x800 constant ATTR_FILE_DATALENGTH (line 97) | ATTR_FILE_DATALENGTH = 0x200 constant ATTR_FILE_DEVTYPE (line 98) | ATTR_FILE_DEVTYPE = 0x20 constant ATTR_FILE_FILETYPE (line 99) | ATTR_FILE_FILETYPE = 0x40 constant ATTR_FILE_FORKCOUNT (line 100) | ATTR_FILE_FORKCOUNT = 0x80 constant ATTR_FILE_FORKLIST (line 101) | ATTR_FILE_FORKLIST = 0x100 constant ATTR_FILE_IOBLOCKSIZE (line 102) | ATTR_FILE_IOBLOCKSIZE = 0x8 constant ATTR_FILE_LINKCOUNT (line 103) | ATTR_FILE_LINKCOUNT = 0x1 constant ATTR_FILE_RSRCALLOCSIZE (line 104) | ATTR_FILE_RSRCALLOCSIZE = 0x2000 constant ATTR_FILE_RSRCEXTENTS (line 105) | ATTR_FILE_RSRCEXTENTS = 0x4000 constant ATTR_FILE_RSRCLENGTH (line 106) | ATTR_FILE_RSRCLENGTH = 0x1000 constant ATTR_FILE_SETMASK (line 107) | ATTR_FILE_SETMASK = 0x20 constant ATTR_FILE_TOTALSIZE (line 108) | ATTR_FILE_TOTALSIZE = 0x2 constant ATTR_FILE_VALIDMASK (line 109) | ATTR_FILE_VALIDMASK = 0x37ff constant ATTR_VOL_ALLOCATIONCLUMP (line 110) | ATTR_VOL_ALLOCATIONCLUMP = 0x40 constant ATTR_VOL_ATTRIBUTES (line 111) | ATTR_VOL_ATTRIBUTES = 0x40000000 constant ATTR_VOL_CAPABILITIES (line 112) | ATTR_VOL_CAPABILITIES = 0x20000 constant ATTR_VOL_DIRCOUNT (line 113) | ATTR_VOL_DIRCOUNT = 0x400 constant ATTR_VOL_ENCODINGSUSED (line 114) | ATTR_VOL_ENCODINGSUSED = 0x10000 constant ATTR_VOL_FILECOUNT (line 115) | ATTR_VOL_FILECOUNT = 0x200 constant ATTR_VOL_FSTYPE (line 116) | ATTR_VOL_FSTYPE = 0x1 constant ATTR_VOL_INFO (line 117) | ATTR_VOL_INFO = 0x80000000 constant ATTR_VOL_IOBLOCKSIZE (line 118) | ATTR_VOL_IOBLOCKSIZE = 0x80 constant ATTR_VOL_MAXOBJCOUNT (line 119) | ATTR_VOL_MAXOBJCOUNT = 0x800 constant ATTR_VOL_MINALLOCATION (line 120) | ATTR_VOL_MINALLOCATION = 0x20 constant ATTR_VOL_MOUNTEDDEVICE (line 121) | ATTR_VOL_MOUNTEDDEVICE = 0x8000 constant ATTR_VOL_MOUNTFLAGS (line 122) | ATTR_VOL_MOUNTFLAGS = 0x4000 constant ATTR_VOL_MOUNTPOINT (line 123) | ATTR_VOL_MOUNTPOINT = 0x1000 constant ATTR_VOL_NAME (line 124) | ATTR_VOL_NAME = 0x2000 constant ATTR_VOL_OBJCOUNT (line 125) | ATTR_VOL_OBJCOUNT = 0x100 constant ATTR_VOL_QUOTA_SIZE (line 126) | ATTR_VOL_QUOTA_SIZE = 0x10000000 constant ATTR_VOL_RESERVED_SIZE (line 127) | ATTR_VOL_RESERVED_SIZE = 0x20000000 constant ATTR_VOL_SETMASK (line 128) | ATTR_VOL_SETMASK = 0x80002000 constant ATTR_VOL_SIGNATURE (line 129) | ATTR_VOL_SIGNATURE = 0x2 constant ATTR_VOL_SIZE (line 130) | ATTR_VOL_SIZE = 0x4 constant ATTR_VOL_SPACEAVAIL (line 131) | ATTR_VOL_SPACEAVAIL = 0x10 constant ATTR_VOL_SPACEFREE (line 132) | ATTR_VOL_SPACEFREE = 0x8 constant ATTR_VOL_UUID (line 133) | ATTR_VOL_UUID = 0x40000 constant ATTR_VOL_VALIDMASK (line 134) | ATTR_VOL_VALIDMASK = 0xf007ffff constant B0 (line 135) | B0 = 0x0 constant B110 (line 136) | B110 = 0x6e constant B115200 (line 137) | B115200 = 0x1c200 constant B1200 (line 138) | B1200 = 0x4b0 constant B134 (line 139) | B134 = 0x86 constant B14400 (line 140) | B14400 = 0x3840 constant B150 (line 141) | B150 = 0x96 constant B1800 (line 142) | B1800 = 0x708 constant B19200 (line 143) | B19200 = 0x4b00 constant B200 (line 144) | B200 = 0xc8 constant B230400 (line 145) | B230400 = 0x38400 constant B2400 (line 146) | B2400 = 0x960 constant B28800 (line 147) | B28800 = 0x7080 constant B300 (line 148) | B300 = 0x12c constant B38400 (line 149) | B38400 = 0x9600 constant B4800 (line 150) | B4800 = 0x12c0 constant B50 (line 151) | B50 = 0x32 constant B57600 (line 152) | B57600 = 0xe100 constant B600 (line 153) | B600 = 0x258 constant B7200 (line 154) | B7200 = 0x1c20 constant B75 (line 155) | B75 = 0x4b constant B76800 (line 156) | B76800 = 0x12c00 constant B9600 (line 157) | B9600 = 0x2580 constant BIOCFLUSH (line 158) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 159) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 160) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 161) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 162) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 163) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 164) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 165) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 166) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 167) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 168) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 169) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 170) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 171) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 172) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 173) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 174) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 175) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 176) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 177) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 178) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 179) | BIOCVERSION = 0x40044271 constant BPF_A (line 180) | BPF_A = 0x10 constant BPF_ABS (line 181) | BPF_ABS = 0x20 constant BPF_ADD (line 182) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 183) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LSH (line 201) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 202) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 203) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 207) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 208) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 209) | BPF_MISC = 0x7 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_OR (line 213) | BPF_OR = 0x40 constant BPF_RELEASE (line 214) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BRKINT (line 224) | BRKINT = 0x2 constant BS0 (line 225) | BS0 = 0x0 constant BS1 (line 226) | BS1 = 0x8000 constant BSDLY (line 227) | BSDLY = 0x8000 constant CFLUSH (line 228) | CFLUSH = 0xf constant CLOCAL (line 229) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 230) | CLOCK_MONOTONIC = 0x6 constant CLOCK_MONOTONIC_RAW (line 231) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_MONOTONIC_RAW_APPROX (line 232) | CLOCK_MONOTONIC_RAW_APPROX = 0x5 constant CLOCK_PROCESS_CPUTIME_ID (line 233) | CLOCK_PROCESS_CPUTIME_ID = 0xc constant CLOCK_REALTIME (line 234) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 235) | CLOCK_THREAD_CPUTIME_ID = 0x10 constant CLOCK_UPTIME_RAW (line 236) | CLOCK_UPTIME_RAW = 0x8 constant CLOCK_UPTIME_RAW_APPROX (line 237) | CLOCK_UPTIME_RAW_APPROX = 0x9 constant CLONE_NOFOLLOW (line 238) | CLONE_NOFOLLOW = 0x1 constant CLONE_NOOWNERCOPY (line 239) | CLONE_NOOWNERCOPY = 0x2 constant CR0 (line 240) | CR0 = 0x0 constant CR1 (line 241) | CR1 = 0x1000 constant CR2 (line 242) | CR2 = 0x2000 constant CR3 (line 243) | CR3 = 0x3000 constant CRDLY (line 244) | CRDLY = 0x3000 constant CREAD (line 245) | CREAD = 0x800 constant CRTSCTS (line 246) | CRTSCTS = 0x30000 constant CS5 (line 247) | CS5 = 0x0 constant CS6 (line 248) | CS6 = 0x100 constant CS7 (line 249) | CS7 = 0x200 constant CS8 (line 250) | CS8 = 0x300 constant CSIZE (line 251) | CSIZE = 0x300 constant CSTART (line 252) | CSTART = 0x11 constant CSTATUS (line 253) | CSTATUS = 0x14 constant CSTOP (line 254) | CSTOP = 0x13 constant CSTOPB (line 255) | CSTOPB = 0x400 constant CSUSP (line 256) | CSUSP = 0x1a constant CTLIOCGINFO (line 257) | CTLIOCGINFO = 0xc0644e03 constant CTL_HW (line 258) | CTL_HW = 0x6 constant CTL_KERN (line 259) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 260) | CTL_MAXNAME = 0xc constant CTL_NET (line 261) | CTL_NET = 0x4 constant DLT_A429 (line 262) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 263) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 264) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 265) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 266) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 267) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 268) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 269) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 270) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 271) | DLT_AURORA = 0x7e constant DLT_AX25 (line 272) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 273) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 274) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 275) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 276) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 277) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 278) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 279) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 280) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 281) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 282) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 283) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 284) | DLT_DBUS = 0xe7 constant DLT_DECT (line 285) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 286) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 287) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 288) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 289) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 290) | DLT_EN3MB = 0x2 constant DLT_ENC (line 291) | DLT_ENC = 0x6d constant DLT_ERF (line 292) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 293) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 294) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 295) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 296) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 297) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 298) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 299) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 300) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 301) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 302) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 303) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 304) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 305) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 306) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 307) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 308) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 309) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 310) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 311) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 312) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 313) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 314) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 315) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 316) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 317) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 318) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 319) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 320) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 321) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 322) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 323) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 324) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 325) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 326) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 327) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 328) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 329) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 330) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 331) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 332) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 333) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 334) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 335) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 336) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 337) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 338) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 339) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 340) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 341) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 342) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 343) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 344) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 345) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 346) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 347) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 348) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 349) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 350) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 351) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 352) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 353) | DLT_LAPD = 0xcb constant DLT_LIN (line 354) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 355) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 356) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 357) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 358) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 359) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 360) | DLT_LOOP = 0x6c constant DLT_LTALK (line 361) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 362) | DLT_MATCHING_MAX = 0x10a constant DLT_MATCHING_MIN (line 363) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 364) | DLT_MFR = 0xb6 constant DLT_MOST (line 365) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 366) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 367) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 368) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 369) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 370) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 371) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 372) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 373) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 374) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 375) | DLT_NFLOG = 0xef constant DLT_NG40 (line 376) | DLT_NG40 = 0xf4 constant DLT_NULL (line 377) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 378) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 379) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 380) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 381) | DLT_PPI = 0xc0 constant DLT_PPP (line 382) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 383) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 384) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 385) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 386) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 387) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 388) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 389) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 390) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 391) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 392) | DLT_RAW = 0xc constant DLT_RIO (line 393) | DLT_RIO = 0x7c constant DLT_SCCP (line 394) | DLT_SCCP = 0x8e constant DLT_SITA (line 395) | DLT_SITA = 0xc4 constant DLT_SLIP (line 396) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 397) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 398) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 399) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 400) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 401) | DLT_TZSP = 0x80 constant DLT_USB (line 402) | DLT_USB = 0xba constant DLT_USB_DARWIN (line 403) | DLT_USB_DARWIN = 0x10a constant DLT_USB_LINUX (line 404) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 405) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 406) | DLT_USER0 = 0x93 constant DLT_USER1 (line 407) | DLT_USER1 = 0x94 constant DLT_USER10 (line 408) | DLT_USER10 = 0x9d constant DLT_USER11 (line 409) | DLT_USER11 = 0x9e constant DLT_USER12 (line 410) | DLT_USER12 = 0x9f constant DLT_USER13 (line 411) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 412) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 413) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 414) | DLT_USER2 = 0x95 constant DLT_USER3 (line 415) | DLT_USER3 = 0x96 constant DLT_USER4 (line 416) | DLT_USER4 = 0x97 constant DLT_USER5 (line 417) | DLT_USER5 = 0x98 constant DLT_USER6 (line 418) | DLT_USER6 = 0x99 constant DLT_USER7 (line 419) | DLT_USER7 = 0x9a constant DLT_USER8 (line 420) | DLT_USER8 = 0x9b constant DLT_USER9 (line 421) | DLT_USER9 = 0x9c constant DLT_WIHART (line 422) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 423) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 424) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 425) | DT_BLK = 0x6 constant DT_CHR (line 426) | DT_CHR = 0x2 constant DT_DIR (line 427) | DT_DIR = 0x4 constant DT_FIFO (line 428) | DT_FIFO = 0x1 constant DT_LNK (line 429) | DT_LNK = 0xa constant DT_REG (line 430) | DT_REG = 0x8 constant DT_SOCK (line 431) | DT_SOCK = 0xc constant DT_UNKNOWN (line 432) | DT_UNKNOWN = 0x0 constant DT_WHT (line 433) | DT_WHT = 0xe constant ECHO (line 434) | ECHO = 0x8 constant ECHOCTL (line 435) | ECHOCTL = 0x40 constant ECHOE (line 436) | ECHOE = 0x2 constant ECHOK (line 437) | ECHOK = 0x4 constant ECHOKE (line 438) | ECHOKE = 0x1 constant ECHONL (line 439) | ECHONL = 0x10 constant ECHOPRT (line 440) | ECHOPRT = 0x20 constant EVFILT_AIO (line 441) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 442) | EVFILT_EXCEPT = -0xf constant EVFILT_FS (line 443) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 444) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 445) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 446) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 447) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 448) | EVFILT_SYSCOUNT = 0x11 constant EVFILT_THREADMARKER (line 449) | EVFILT_THREADMARKER = 0x11 constant EVFILT_TIMER (line 450) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 451) | EVFILT_USER = -0xa constant EVFILT_VM (line 452) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 453) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 454) | EVFILT_WRITE = -0x2 constant EV_ADD (line 455) | EV_ADD = 0x1 constant EV_CLEAR (line 456) | EV_CLEAR = 0x20 constant EV_DELETE (line 457) | EV_DELETE = 0x2 constant EV_DISABLE (line 458) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 459) | EV_DISPATCH = 0x80 constant EV_DISPATCH2 (line 460) | EV_DISPATCH2 = 0x180 constant EV_ENABLE (line 461) | EV_ENABLE = 0x4 constant EV_EOF (line 462) | EV_EOF = 0x8000 constant EV_ERROR (line 463) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 464) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 465) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 466) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 467) | EV_OOBAND = 0x2000 constant EV_POLL (line 468) | EV_POLL = 0x1000 constant EV_RECEIPT (line 469) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 470) | EV_SYSFLAGS = 0xf000 constant EV_UDATA_SPECIFIC (line 471) | EV_UDATA_SPECIFIC = 0x100 constant EV_VANISHED (line 472) | EV_VANISHED = 0x200 constant EXTA (line 473) | EXTA = 0x4b00 constant EXTB (line 474) | EXTB = 0x9600 constant EXTPROC (line 475) | EXTPROC = 0x800 constant FD_CLOEXEC (line 476) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 477) | FD_SETSIZE = 0x400 constant FF0 (line 478) | FF0 = 0x0 constant FF1 (line 479) | FF1 = 0x4000 constant FFDLY (line 480) | FFDLY = 0x4000 constant FLUSHO (line 481) | FLUSHO = 0x800000 constant FSOPT_ATTR_CMN_EXTENDED (line 482) | FSOPT_ATTR_CMN_EXTENDED = 0x20 constant FSOPT_NOFOLLOW (line 483) | FSOPT_NOFOLLOW = 0x1 constant FSOPT_NOINMEMUPDATE (line 484) | FSOPT_NOINMEMUPDATE = 0x2 constant FSOPT_PACK_INVAL_ATTRS (line 485) | FSOPT_PACK_INVAL_ATTRS = 0x8 constant FSOPT_REPORT_FULLSIZE (line 486) | FSOPT_REPORT_FULLSIZE = 0x4 constant FSOPT_RETURN_REALDEV (line 487) | FSOPT_RETURN_REALDEV = 0x200 constant F_ADDFILESIGS (line 488) | F_ADDFILESIGS = 0x3d constant F_ADDFILESIGS_FOR_DYLD_SIM (line 489) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53 constant F_ADDFILESIGS_INFO (line 490) | F_ADDFILESIGS_INFO = 0x67 constant F_ADDFILESIGS_RETURN (line 491) | F_ADDFILESIGS_RETURN = 0x61 constant F_ADDFILESUPPL (line 492) | F_ADDFILESUPPL = 0x68 constant F_ADDSIGS (line 493) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 494) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 495) | F_ALLOCATECONTIG = 0x2 constant F_BARRIERFSYNC (line 496) | F_BARRIERFSYNC = 0x55 constant F_CHECK_LV (line 497) | F_CHECK_LV = 0x62 constant F_CHKCLEAN (line 498) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 499) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 500) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 501) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 502) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 503) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 504) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 505) | F_GETCODEDIR = 0x48 constant F_GETFD (line 506) | F_GETFD = 0x1 constant F_GETFL (line 507) | F_GETFL = 0x3 constant F_GETLK (line 508) | F_GETLK = 0x7 constant F_GETLKPID (line 509) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 510) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 511) | F_GETOWN = 0x5 constant F_GETPATH (line 512) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 513) | F_GETPATH_MTMINFO = 0x47 constant F_GETPATH_NOFIRMLINK (line 514) | F_GETPATH_NOFIRMLINK = 0x66 constant F_GETPROTECTIONCLASS (line 515) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 516) | F_GETPROTECTIONLEVEL = 0x4d constant F_GETSIGSINFO (line 517) | F_GETSIGSINFO = 0x69 constant F_GLOBAL_NOCACHE (line 518) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 519) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 520) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 521) | F_NOCACHE = 0x30 constant F_NODIRECT (line 522) | F_NODIRECT = 0x3e constant F_OK (line 523) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 524) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 525) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 526) | F_PREALLOCATE = 0x2a constant F_PUNCHHOLE (line 527) | F_PUNCHHOLE = 0x63 constant F_RDADVISE (line 528) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 529) | F_RDAHEAD = 0x2d constant F_RDLCK (line 530) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 531) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 532) | F_SETFD = 0x2 constant F_SETFL (line 533) | F_SETFL = 0x4 constant F_SETLK (line 534) | F_SETLK = 0x8 constant F_SETLKW (line 535) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 536) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 537) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 538) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 539) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 540) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 541) | F_SINGLE_WRITER = 0x4c constant F_SPECULATIVE_READ (line 542) | F_SPECULATIVE_READ = 0x65 constant F_THAW_FS (line 543) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 544) | F_TRANSCODEKEY = 0x4b constant F_TRIM_ACTIVE_FILE (line 545) | F_TRIM_ACTIVE_FILE = 0x64 constant F_UNLCK (line 546) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 547) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 548) | F_WRLCK = 0x3 constant HUPCL (line 549) | HUPCL = 0x4000 constant HW_MACHINE (line 550) | HW_MACHINE = 0x1 constant ICANON (line 551) | ICANON = 0x100 constant ICMP6_FILTER (line 552) | ICMP6_FILTER = 0x12 constant ICRNL (line 553) | ICRNL = 0x100 constant IEXTEN (line 554) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 555) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 556) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 557) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 558) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 559) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 560) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 561) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 562) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 563) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 564) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 565) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 566) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 567) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 568) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 569) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 570) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 571) | IFF_UP = 0x1 constant IFNAMSIZ (line 572) | IFNAMSIZ = 0x10 constant IFT_1822 (line 573) | IFT_1822 = 0x2 constant IFT_6LOWPAN (line 574) | IFT_6LOWPAN = 0x40 constant IFT_AAL5 (line 575) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 576) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 577) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 578) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 579) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 580) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 581) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 582) | IFT_CEPT = 0x13 constant IFT_DS3 (line 583) | IFT_DS3 = 0x1e constant IFT_ENC (line 584) | IFT_ENC = 0xf4 constant IFT_EON (line 585) | IFT_EON = 0x19 constant IFT_ETHER (line 586) | IFT_ETHER = 0x6 constant IFT_FAITH (line 587) | IFT_FAITH = 0x38 constant IFT_FDDI (line 588) | IFT_FDDI = 0xf constant IFT_FRELAY (line 589) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 590) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 591) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 592) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 593) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 594) | IFT_HSSI = 0x2e constant IFT_HY (line 595) | IFT_HY = 0xe constant IFT_IEEE1394 (line 596) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 597) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 598) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 599) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 600) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 601) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 602) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 603) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 604) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 605) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 606) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 607) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 608) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 609) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 610) | IFT_MODEM = 0x30 constant IFT_NSIP (line 611) | IFT_NSIP = 0x1b constant IFT_OTHER (line 612) | IFT_OTHER = 0x1 constant IFT_P10 (line 613) | IFT_P10 = 0xc constant IFT_P80 (line 614) | IFT_P80 = 0xd constant IFT_PARA (line 615) | IFT_PARA = 0x22 constant IFT_PDP (line 616) | IFT_PDP = 0xff constant IFT_PFLOG (line 617) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 618) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 619) | IFT_PKTAP = 0xfe constant IFT_PPP (line 620) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 621) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 622) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 623) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 624) | IFT_RS232 = 0x21 constant IFT_SDLC (line 625) | IFT_SDLC = 0x11 constant IFT_SIP (line 626) | IFT_SIP = 0x1f constant IFT_SLIP (line 627) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 628) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 629) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 630) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 631) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 632) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 633) | IFT_STARLAN = 0xb constant IFT_STF (line 634) | IFT_STF = 0x39 constant IFT_T1 (line 635) | IFT_T1 = 0x12 constant IFT_ULTRA (line 636) | IFT_ULTRA = 0x1d constant IFT_V35 (line 637) | IFT_V35 = 0x2d constant IFT_X25 (line 638) | IFT_X25 = 0x5 constant IFT_X25DDN (line 639) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 640) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 641) | IFT_XETHER = 0x1a constant IGNBRK (line 642) | IGNBRK = 0x1 constant IGNCR (line 643) | IGNCR = 0x80 constant IGNPAR (line 644) | IGNPAR = 0x4 constant IMAXBEL (line 645) | IMAXBEL = 0x2000 constant INLCR (line 646) | INLCR = 0x40 constant INPCK (line 647) | INPCK = 0x10 constant IN_CLASSA_HOST (line 648) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 649) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 650) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 651) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 652) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 653) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 654) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 655) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 656) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 657) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 658) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 659) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 660) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 661) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 662) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 663) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 664) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 665) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 666) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 667) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 668) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 669) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 670) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 671) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 672) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 673) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 674) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 675) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 676) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 677) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 678) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 679) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 680) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 681) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 682) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 683) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 684) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 685) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 686) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 687) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 688) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 689) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 690) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 691) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 692) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 693) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 694) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 695) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 696) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 697) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 698) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 699) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 700) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 701) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 702) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 703) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 704) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 705) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 706) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 707) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 708) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 709) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 710) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 711) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 712) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 713) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 714) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 715) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 716) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 717) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 718) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 719) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 720) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 721) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 722) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 723) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 724) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 725) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 726) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 727) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 728) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 729) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 730) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 731) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 732) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 733) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 734) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 735) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 736) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 737) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 738) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 739) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 740) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 741) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 742) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 743) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 744) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 745) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 746) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 747) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 748) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 749) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 750) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 751) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 752) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 753) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 754) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 755) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 756) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 757) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 758) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 759) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 760) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 761) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 762) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 763) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 764) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 765) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 766) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 767) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 768) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 769) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 770) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 771) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 772) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 773) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 774) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 775) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 776) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 777) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 778) | IPV6_2292RTHDR = 0x18 constant IPV6_3542DSTOPTS (line 779) | IPV6_3542DSTOPTS = 0x32 constant IPV6_3542HOPLIMIT (line 780) | IPV6_3542HOPLIMIT = 0x2f constant IPV6_3542HOPOPTS (line 781) | IPV6_3542HOPOPTS = 0x31 constant IPV6_3542NEXTHOP (line 782) | IPV6_3542NEXTHOP = 0x30 constant IPV6_3542PKTINFO (line 783) | IPV6_3542PKTINFO = 0x2e constant IPV6_3542RTHDR (line 784) | IPV6_3542RTHDR = 0x33 constant IPV6_ADDR_MC_FLAGS_PREFIX (line 785) | IPV6_ADDR_MC_FLAGS_PREFIX = 0x20 constant IPV6_ADDR_MC_FLAGS_TRANSIENT (line 786) | IPV6_ADDR_MC_FLAGS_TRANSIENT = 0x10 constant IPV6_ADDR_MC_FLAGS_UNICAST_BASED (line 787) | IPV6_ADDR_MC_FLAGS_UNICAST_BASED = 0x30 constant IPV6_AUTOFLOWLABEL (line 788) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDV6ONLY (line 789) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 790) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 791) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 792) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 793) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 794) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 795) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 796) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 797) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 798) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 799) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOW_ECN_MASK (line 800) | IPV6_FLOW_ECN_MASK = 0x3000 constant IPV6_FRAGTTL (line 801) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 802) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 803) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 804) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 805) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 806) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 807) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 808) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 809) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 810) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 811) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 812) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 813) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 814) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 815) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 816) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 817) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 818) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 819) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 820) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 821) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 822) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 823) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 824) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 825) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 826) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 827) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 828) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 829) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 830) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 831) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 832) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 833) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 834) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 835) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 836) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 837) | IPV6_RECVPKTINFO = 0x3d constant IPV6_RECVRTHDR (line 838) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 839) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR (line 840) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 841) | IPV6_RTHDRDSTOPTS = 0x39 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 = 0x24 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_ADD_SOURCE_MEMBERSHIP (line 853) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 854) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 855) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 856) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 857) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 858) | IP_DF = 0x4000 constant IP_DONTFRAG (line 859) | IP_DONTFRAG = 0x1c constant IP_DROP_MEMBERSHIP (line 860) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 861) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 862) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 863) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 864) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 865) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 866) | IP_FAITH = 0x16 constant IP_FW_ADD (line 867) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 868) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 869) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 870) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 871) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 872) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 873) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 874) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 875) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 876) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 877) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 878) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 879) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 880) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 881) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 882) | IP_MSFILTER = 0x4a constant IP_MSS (line 883) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 884) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 885) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 886) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 887) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 888) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 889) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 890) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 891) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 892) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 893) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 894) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 895) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 896) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 897) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 898) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 899) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 900) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 901) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 902) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 903) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 904) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 905) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 906) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 907) | IP_RECVRETOPTS = 0x6 constant IP_RECVTOS (line 908) | IP_RECVTOS = 0x1b constant IP_RECVTTL (line 909) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 910) | IP_RETOPTS = 0x8 constant IP_RF (line 911) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 912) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 913) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 914) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 915) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 916) | IP_STRIPHDR = 0x17 constant IP_TOS (line 917) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 918) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 919) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 920) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 921) | ISIG = 0x80 constant ISTRIP (line 922) | ISTRIP = 0x20 constant IUTF8 (line 923) | IUTF8 = 0x4000 constant IXANY (line 924) | IXANY = 0x800 constant IXOFF (line 925) | IXOFF = 0x400 constant IXON (line 926) | IXON = 0x200 constant KERN_HOSTNAME (line 927) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 928) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 929) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 930) | KERN_VERSION = 0x4 constant LOCAL_PEERCRED (line 931) | LOCAL_PEERCRED = 0x1 constant LOCAL_PEEREPID (line 932) | LOCAL_PEEREPID = 0x3 constant LOCAL_PEEREUUID (line 933) | LOCAL_PEEREUUID = 0x5 constant LOCAL_PEERPID (line 934) | LOCAL_PEERPID = 0x2 constant LOCAL_PEERTOKEN (line 935) | LOCAL_PEERTOKEN = 0x6 constant LOCAL_PEERUUID (line 936) | LOCAL_PEERUUID = 0x4 constant LOCK_EX (line 937) | LOCK_EX = 0x2 constant LOCK_NB (line 938) | LOCK_NB = 0x4 constant LOCK_SH (line 939) | LOCK_SH = 0x1 constant LOCK_UN (line 940) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 941) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 942) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 943) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 944) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 945) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 946) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 947) | MADV_PAGEOUT = 0xa constant MADV_RANDOM (line 948) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 949) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 950) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 951) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_32BIT (line 952) | MAP_32BIT = 0x8000 constant MAP_ANON (line 953) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 954) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 955) | MAP_COPY = 0x2 constant MAP_FILE (line 956) | MAP_FILE = 0x0 constant MAP_FIXED (line 957) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 958) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 959) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 960) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 961) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 962) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 963) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 964) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 965) | MAP_RESERVED0080 = 0x80 constant MAP_RESILIENT_CODESIGN (line 966) | MAP_RESILIENT_CODESIGN = 0x2000 constant MAP_RESILIENT_MEDIA (line 967) | MAP_RESILIENT_MEDIA = 0x4000 constant MAP_SHARED (line 968) | MAP_SHARED = 0x1 constant MAP_TRANSLATED_ALLOW_EXECUTE (line 969) | MAP_TRANSLATED_ALLOW_EXECUTE = 0x20000 constant MAP_UNIX03 (line 970) | MAP_UNIX03 = 0x40000 constant MCAST_BLOCK_SOURCE (line 971) | MCAST_BLOCK_SOURCE = 0x54 constant MCAST_EXCLUDE (line 972) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 973) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 974) | MCAST_JOIN_GROUP = 0x50 constant MCAST_JOIN_SOURCE_GROUP (line 975) | MCAST_JOIN_SOURCE_GROUP = 0x52 constant MCAST_LEAVE_GROUP (line 976) | MCAST_LEAVE_GROUP = 0x51 constant MCAST_LEAVE_SOURCE_GROUP (line 977) | MCAST_LEAVE_SOURCE_GROUP = 0x53 constant MCAST_UNBLOCK_SOURCE (line 978) | MCAST_UNBLOCK_SOURCE = 0x55 constant MCAST_UNDEFINED (line 979) | MCAST_UNDEFINED = 0x0 constant MCL_CURRENT (line 980) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 981) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 982) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 983) | MNT_AUTOMOUNTED = 0x400000 constant MNT_CMDFLAGS (line 984) | MNT_CMDFLAGS = 0xf0000 constant MNT_CPROTECT (line 985) | MNT_CPROTECT = 0x80 constant MNT_DEFWRITE (line 986) | MNT_DEFWRITE = 0x2000000 constant MNT_DONTBROWSE (line 987) | MNT_DONTBROWSE = 0x100000 constant MNT_DOVOLFS (line 988) | MNT_DOVOLFS = 0x8000 constant MNT_DWAIT (line 989) | MNT_DWAIT = 0x4 constant MNT_EXPORTED (line 990) | MNT_EXPORTED = 0x100 constant MNT_EXT_ROOT_DATA_VOL (line 991) | MNT_EXT_ROOT_DATA_VOL = 0x1 constant MNT_FORCE (line 992) | MNT_FORCE = 0x80000 constant MNT_IGNORE_OWNERSHIP (line 993) | MNT_IGNORE_OWNERSHIP = 0x200000 constant MNT_JOURNALED (line 994) | MNT_JOURNALED = 0x800000 constant MNT_LOCAL (line 995) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 996) | MNT_MULTILABEL = 0x4000000 constant MNT_NOATIME (line 997) | MNT_NOATIME = 0x10000000 constant MNT_NOBLOCK (line 998) | MNT_NOBLOCK = 0x20000 constant MNT_NODEV (line 999) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 1000) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 1001) | MNT_NOSUID = 0x8 constant MNT_NOUSERXATTR (line 1002) | MNT_NOUSERXATTR = 0x1000000 constant MNT_NOWAIT (line 1003) | MNT_NOWAIT = 0x2 constant MNT_QUARANTINE (line 1004) | MNT_QUARANTINE = 0x400 constant MNT_QUOTA (line 1005) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1006) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1007) | MNT_RELOAD = 0x40000 constant MNT_REMOVABLE (line 1008) | MNT_REMOVABLE = 0x200 constant MNT_ROOTFS (line 1009) | MNT_ROOTFS = 0x4000 constant MNT_SNAPSHOT (line 1010) | MNT_SNAPSHOT = 0x40000000 constant MNT_STRICTATIME (line 1011) | MNT_STRICTATIME = 0x80000000 constant MNT_SYNCHRONOUS (line 1012) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1013) | MNT_UNION = 0x20 constant MNT_UNKNOWNPERMISSIONS (line 1014) | MNT_UNKNOWNPERMISSIONS = 0x200000 constant MNT_UPDATE (line 1015) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1016) | MNT_VISFLAGMASK = 0xd7f0f7ff constant MNT_WAIT (line 1017) | MNT_WAIT = 0x1 constant MSG_CTRUNC (line 1018) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1019) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1020) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1021) | MSG_EOF = 0x100 constant MSG_EOR (line 1022) | MSG_EOR = 0x8 constant MSG_FLUSH (line 1023) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 1024) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 1025) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 1026) | MSG_NEEDSA = 0x10000 constant MSG_NOSIGNAL (line 1027) | MSG_NOSIGNAL = 0x80000 constant MSG_OOB (line 1028) | MSG_OOB = 0x1 constant MSG_PEEK (line 1029) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 1030) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 1031) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 1032) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1033) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 1034) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 1035) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 1036) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 1037) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 1038) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 1039) | MS_SYNC = 0x10 constant NAME_MAX (line 1040) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1041) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 1042) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 1043) | NET_RT_FLAGS = 0x2 constant NET_RT_FLAGS_PRIV (line 1044) | NET_RT_FLAGS_PRIV = 0xa constant NET_RT_IFLIST (line 1045) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 1046) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 1047) | NET_RT_MAXID = 0xb constant NET_RT_STAT (line 1048) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 1049) | NET_RT_TRASH = 0x5 constant NFDBITS (line 1050) | NFDBITS = 0x20 constant NL0 (line 1051) | NL0 = 0x0 constant NL1 (line 1052) | NL1 = 0x100 constant NL2 (line 1053) | NL2 = 0x200 constant NL3 (line 1054) | NL3 = 0x300 constant NLDLY (line 1055) | NLDLY = 0x300 constant NOFLSH (line 1056) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1057) | NOKERNINFO = 0x2000000 constant NOTE_ABSOLUTE (line 1058) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 1059) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 1060) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 1061) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 1062) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 1063) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1064) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1065) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 1066) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 1067) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 1068) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 1069) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 1070) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 1071) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 1072) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 1073) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1074) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1075) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1076) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1077) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1078) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1079) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 1080) | NOTE_FORK = 0x40000000 constant NOTE_FUNLOCK (line 1081) | NOTE_FUNLOCK = 0x100 constant NOTE_LEEWAY (line 1082) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 1083) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1084) | NOTE_LOWAT = 0x1 constant NOTE_MACHTIME (line 1085) | NOTE_MACHTIME = 0x100 constant NOTE_MACH_CONTINUOUS_TIME (line 1086) | NOTE_MACH_CONTINUOUS_TIME = 0x80 constant NOTE_NONE (line 1087) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 1088) | NOTE_NSECONDS = 0x4 constant NOTE_OOB (line 1089) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 1090) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 1091) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 1092) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 1093) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1094) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1095) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 1096) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 1097) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1098) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1099) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1100) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 1101) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 1102) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 1103) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 1104) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 1105) | NOTE_WRITE = 0x2 constant OCRNL (line 1106) | OCRNL = 0x10 constant OFDEL (line 1107) | OFDEL = 0x20000 constant OFILL (line 1108) | OFILL = 0x80 constant ONLCR (line 1109) | ONLCR = 0x2 constant ONLRET (line 1110) | ONLRET = 0x40 constant ONOCR (line 1111) | ONOCR = 0x20 constant ONOEOT (line 1112) | ONOEOT = 0x8 constant OPOST (line 1113) | OPOST = 0x1 constant OXTABS (line 1114) | OXTABS = 0x4 constant O_ACCMODE (line 1115) | O_ACCMODE = 0x3 constant O_ALERT (line 1116) | O_ALERT = 0x20000000 constant O_APPEND (line 1117) | O_APPEND = 0x8 constant O_ASYNC (line 1118) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1119) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 1120) | O_CREAT = 0x200 constant O_DIRECTORY (line 1121) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 1122) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DP_GETRAWUNENCRYPTED (line 1123) | O_DP_GETRAWUNENCRYPTED = 0x2 constant O_DSYNC (line 1124) | O_DSYNC = 0x400000 constant O_EVTONLY (line 1125) | O_EVTONLY = 0x8000 constant O_EXCL (line 1126) | O_EXCL = 0x800 constant O_EXLOCK (line 1127) | O_EXLOCK = 0x20 constant O_FSYNC (line 1128) | O_FSYNC = 0x80 constant O_NDELAY (line 1129) | O_NDELAY = 0x4 constant O_NOCTTY (line 1130) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 1131) | O_NOFOLLOW = 0x100 constant O_NOFOLLOW_ANY (line 1132) | O_NOFOLLOW_ANY = 0x20000000 constant O_NONBLOCK (line 1133) | O_NONBLOCK = 0x4 constant O_POPUP (line 1134) | O_POPUP = 0x80000000 constant O_RDONLY (line 1135) | O_RDONLY = 0x0 constant O_RDWR (line 1136) | O_RDWR = 0x2 constant O_SHLOCK (line 1137) | O_SHLOCK = 0x10 constant O_SYMLINK (line 1138) | O_SYMLINK = 0x200000 constant O_SYNC (line 1139) | O_SYNC = 0x80 constant O_TRUNC (line 1140) | O_TRUNC = 0x400 constant O_WRONLY (line 1141) | O_WRONLY = 0x1 constant PARENB (line 1142) | PARENB = 0x1000 constant PARMRK (line 1143) | PARMRK = 0x8 constant PARODD (line 1144) | PARODD = 0x2000 constant PENDIN (line 1145) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1146) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1147) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1148) | PRIO_USER = 0x2 constant PROT_EXEC (line 1149) | PROT_EXEC = 0x4 constant PROT_NONE (line 1150) | PROT_NONE = 0x0 constant PROT_READ (line 1151) | PROT_READ = 0x1 constant PROT_WRITE (line 1152) | PROT_WRITE = 0x2 constant PT_ATTACH (line 1153) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 1154) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 1155) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 1156) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 1157) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 1158) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 1159) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 1160) | PT_KILL = 0x8 constant PT_READ_D (line 1161) | PT_READ_D = 0x2 constant PT_READ_I (line 1162) | PT_READ_I = 0x1 constant PT_READ_U (line 1163) | PT_READ_U = 0x3 constant PT_SIGEXC (line 1164) | PT_SIGEXC = 0xc constant PT_STEP (line 1165) | PT_STEP = 0x9 constant PT_THUPDATE (line 1166) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 1167) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 1168) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 1169) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 1170) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 1171) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 1172) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1173) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 1174) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 1175) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1176) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1177) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1178) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1179) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1180) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1181) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1182) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1183) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1184) | RTAX_BRD = 0x7 constant RTAX_DST (line 1185) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1186) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1187) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1188) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1189) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1190) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1191) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1192) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1193) | RTA_BRD = 0x80 constant RTA_DST (line 1194) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1195) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1196) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1197) | RTA_IFA = 0x20 constant RTA_IFP (line 1198) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1199) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1200) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1201) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1202) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 1203) | RTF_CONDEMNED = 0x2000000 constant RTF_DEAD (line 1204) | RTF_DEAD = 0x20000000 constant RTF_DELCLONE (line 1205) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 1206) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1207) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1208) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1209) | RTF_HOST = 0x4 constant RTF_IFREF (line 1210) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 1211) | RTF_IFSCOPE = 0x1000000 constant RTF_LLDATA (line 1212) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1213) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1214) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1215) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1216) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 1217) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 1218) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1219) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1220) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1221) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1222) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 1223) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 1224) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 1225) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 1226) | RTF_STATIC = 0x800 constant RTF_UP (line 1227) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1228) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1229) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1230) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1231) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1232) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1233) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1234) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1235) | RTM_GET = 0x4 constant RTM_GET2 (line 1236) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 1237) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 1238) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 1239) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1240) | RTM_LOSING = 0x5 constant RTM_MISS (line 1241) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1242) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1243) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 1244) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 1245) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1246) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1247) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1248) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1249) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1250) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1251) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1252) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1253) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1254) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1255) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1256) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1257) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1258) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1259) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1260) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1261) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1262) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1263) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1264) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SEEK_CUR (line 1265) | SEEK_CUR = 0x1 constant SEEK_DATA (line 1266) | SEEK_DATA = 0x4 constant SEEK_END (line 1267) | SEEK_END = 0x2 constant SEEK_HOLE (line 1268) | SEEK_HOLE = 0x3 constant SEEK_SET (line 1269) | SEEK_SET = 0x0 constant SHUT_RD (line 1270) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1271) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1272) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1273) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1274) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1275) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1276) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1277) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1278) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1279) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1280) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1281) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1282) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1283) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1284) | SIOCGHIWAT = 0x40047301 constant SIOCGIF6LOWPAN (line 1285) | SIOCGIF6LOWPAN = 0xc02069c5 constant SIOCGIFADDR (line 1286) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1287) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1288) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1289) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1290) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1291) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1292) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1293) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1294) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1295) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFFUNCTIONALTYPE (line 1296) | SIOCGIFFUNCTIONALTYPE = 0xc02069ad constant SIOCGIFGENERIC (line 1297) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1298) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1299) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1300) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1301) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1302) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1303) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1304) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1305) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1306) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1307) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1308) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1309) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGIFXMEDIA (line 1310) | SIOCGIFXMEDIA = 0xc02c6948 constant SIOCGLOWAT (line 1311) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1312) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1313) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1314) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1315) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1316) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1317) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1318) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1319) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1320) | SIOCSHIWAT = 0x80047300 constant SIOCSIF6LOWPAN (line 1321) | SIOCSIF6LOWPAN = 0x802069c4 constant SIOCSIFADDR (line 1322) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1323) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1324) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1325) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1326) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1327) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1328) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1329) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1330) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1331) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1332) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1333) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1334) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1335) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1336) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1337) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1338) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1339) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1340) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1341) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1342) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1343) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1344) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1345) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1346) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1347) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1348) | SOCK_STREAM = 0x1 constant SOL_LOCAL (line 1349) | SOL_LOCAL = 0x0 constant SOL_SOCKET (line 1350) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1351) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1352) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1353) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1354) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1355) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1356) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1357) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1358) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1359) | SO_LABEL = 0x1010 constant SO_LINGER (line 1360) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1361) | SO_LINGER_SEC = 0x1080 constant SO_NETSVC_MARKING_LEVEL (line 1362) | SO_NETSVC_MARKING_LEVEL = 0x1119 constant SO_NET_SERVICE_TYPE (line 1363) | SO_NET_SERVICE_TYPE = 0x1116 constant SO_NKE (line 1364) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1365) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1366) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1367) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1368) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1369) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1370) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1371) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1372) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1373) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1374) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1375) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1376) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1377) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1378) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1379) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1380) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1381) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1382) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1383) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1384) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1385) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1386) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1387) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1388) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1389) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1390) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1391) | S_IEXEC = 0x40 constant S_IFBLK (line 1392) | S_IFBLK = 0x6000 constant S_IFCHR (line 1393) | S_IFCHR = 0x2000 constant S_IFDIR (line 1394) | S_IFDIR = 0x4000 constant S_IFIFO (line 1395) | S_IFIFO = 0x1000 constant S_IFLNK (line 1396) | S_IFLNK = 0xa000 constant S_IFMT (line 1397) | S_IFMT = 0xf000 constant S_IFREG (line 1398) | S_IFREG = 0x8000 constant S_IFSOCK (line 1399) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1400) | S_IFWHT = 0xe000 constant S_IREAD (line 1401) | S_IREAD = 0x100 constant S_IRGRP (line 1402) | S_IRGRP = 0x20 constant S_IROTH (line 1403) | S_IROTH = 0x4 constant S_IRUSR (line 1404) | S_IRUSR = 0x100 constant S_IRWXG (line 1405) | S_IRWXG = 0x38 constant S_IRWXO (line 1406) | S_IRWXO = 0x7 constant S_IRWXU (line 1407) | S_IRWXU = 0x1c0 constant S_ISGID (line 1408) | S_ISGID = 0x400 constant S_ISTXT (line 1409) | S_ISTXT = 0x200 constant S_ISUID (line 1410) | S_ISUID = 0x800 constant S_ISVTX (line 1411) | S_ISVTX = 0x200 constant S_IWGRP (line 1412) | S_IWGRP = 0x10 constant S_IWOTH (line 1413) | S_IWOTH = 0x2 constant S_IWRITE (line 1414) | S_IWRITE = 0x80 constant S_IWUSR (line 1415) | S_IWUSR = 0x80 constant S_IXGRP (line 1416) | S_IXGRP = 0x8 constant S_IXOTH (line 1417) | S_IXOTH = 0x1 constant S_IXUSR (line 1418) | S_IXUSR = 0x40 constant TAB0 (line 1419) | TAB0 = 0x0 constant TAB1 (line 1420) | TAB1 = 0x400 constant TAB2 (line 1421) | TAB2 = 0x800 constant TAB3 (line 1422) | TAB3 = 0x4 constant TABDLY (line 1423) | TABDLY = 0xc04 constant TCIFLUSH (line 1424) | TCIFLUSH = 0x1 constant TCIOFF (line 1425) | TCIOFF = 0x3 constant TCIOFLUSH (line 1426) | TCIOFLUSH = 0x3 constant TCION (line 1427) | TCION = 0x4 constant TCOFLUSH (line 1428) | TCOFLUSH = 0x2 constant TCOOFF (line 1429) | TCOOFF = 0x1 constant TCOON (line 1430) | TCOON = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1431) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_CONNECTION_INFO (line 1432) | TCP_CONNECTION_INFO = 0x106 constant TCP_ENABLE_ECN (line 1433) | TCP_ENABLE_ECN = 0x104 constant TCP_FASTOPEN (line 1434) | TCP_FASTOPEN = 0x105 constant TCP_KEEPALIVE (line 1435) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1436) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1437) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1438) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1439) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1440) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1441) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1442) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1443) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1444) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1445) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1446) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1447) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1448) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1449) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1450) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1451) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1452) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1453) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1454) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1455) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1456) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1457) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1458) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1459) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1460) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1461) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1462) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1463) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1464) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1465) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1466) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1467) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1468) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1469) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1470) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1471) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1472) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1473) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1474) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1475) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1476) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1477) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1478) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1479) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1480) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1481) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1482) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1483) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1484) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1485) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1486) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1487) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1488) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1489) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1490) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1491) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1492) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1493) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1494) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1495) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1496) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1497) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1498) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1499) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1500) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1501) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1502) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1503) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1504) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1505) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1506) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1507) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1508) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1509) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1510) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1511) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1512) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1513) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1514) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1515) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1516) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1517) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1518) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1519) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1520) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1521) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1522) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1523) | TOSTOP = 0x400000 constant VDISCARD (line 1524) | VDISCARD = 0xf constant VDSUSP (line 1525) | VDSUSP = 0xb constant VEOF (line 1526) | VEOF = 0x0 constant VEOL (line 1527) | VEOL = 0x1 constant VEOL2 (line 1528) | VEOL2 = 0x2 constant VERASE (line 1529) | VERASE = 0x3 constant VINTR (line 1530) | VINTR = 0x8 constant VKILL (line 1531) | VKILL = 0x5 constant VLNEXT (line 1532) | VLNEXT = 0xe constant VMIN (line 1533) | VMIN = 0x10 constant VM_LOADAVG (line 1534) | VM_LOADAVG = 0x2 constant VM_MACHFACTOR (line 1535) | VM_MACHFACTOR = 0x4 constant VM_MAXID (line 1536) | VM_MAXID = 0x6 constant VM_METER (line 1537) | VM_METER = 0x1 constant VM_SWAPUSAGE (line 1538) | VM_SWAPUSAGE = 0x5 constant VQUIT (line 1539) | VQUIT = 0x9 constant VREPRINT (line 1540) | VREPRINT = 0x6 constant VSTART (line 1541) | VSTART = 0xc constant VSTATUS (line 1542) | VSTATUS = 0x12 constant VSTOP (line 1543) | VSTOP = 0xd constant VSUSP (line 1544) | VSUSP = 0xa constant VT0 (line 1545) | VT0 = 0x0 constant VT1 (line 1546) | VT1 = 0x10000 constant VTDLY (line 1547) | VTDLY = 0x10000 constant VTIME (line 1548) | VTIME = 0x11 constant VWERASE (line 1549) | VWERASE = 0x4 constant WCONTINUED (line 1550) | WCONTINUED = 0x10 constant WCOREFLAG (line 1551) | WCOREFLAG = 0x80 constant WEXITED (line 1552) | WEXITED = 0x4 constant WNOHANG (line 1553) | WNOHANG = 0x1 constant WNOWAIT (line 1554) | WNOWAIT = 0x20 constant WORDSIZE (line 1555) | WORDSIZE = 0x40 constant WSTOPPED (line 1556) | WSTOPPED = 0x8 constant WUNTRACED (line 1557) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1558) | XATTR_CREATE = 0x2 constant XATTR_NODEFAULT (line 1559) | XATTR_NODEFAULT = 0x10 constant XATTR_NOFOLLOW (line 1560) | XATTR_NOFOLLOW = 0x1 constant XATTR_NOSECURITY (line 1561) | XATTR_NOSECURITY = 0x8 constant XATTR_REPLACE (line 1562) | XATTR_REPLACE = 0x4 constant XATTR_SHOWCOMPRESSION (line 1563) | XATTR_SHOWCOMPRESSION = 0x20 constant E2BIG (line 1568) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1569) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1570) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1571) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1572) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1573) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1574) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1575) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1576) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1577) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1578) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1579) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1580) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1581) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1582) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1583) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1584) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1585) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1586) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1587) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1588) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1589) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1590) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1591) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1592) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1593) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1594) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1595) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1596) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1597) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1598) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1599) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1600) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1601) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1602) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1603) | EINVAL = syscall.Errno(0x16) constant EIO (line 1604) | EIO = syscall.Errno(0x5) constant EISCONN (line 1605) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1606) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1607) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1608) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1609) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1610) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1611) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1612) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1613) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1614) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1615) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1616) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1617) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1618) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1619) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1620) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1621) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1622) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1623) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1624) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1625) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1626) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1627) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1628) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1629) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1630) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1631) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1632) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1633) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1634) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1635) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1636) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1637) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1638) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1639) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1640) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1641) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1642) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1643) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1644) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1645) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1646) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1647) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1648) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1649) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1650) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1651) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1652) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1653) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1654) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1655) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1656) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1657) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1658) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1659) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1660) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1661) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1662) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1663) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1664) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1665) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1666) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1667) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1668) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1669) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1670) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1671) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1672) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1673) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1674) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1675) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1680) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1681) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1682) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1683) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1684) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1685) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1686) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1687) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1688) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1689) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1690) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1691) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1692) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1693) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1694) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1695) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1696) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1697) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1698) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1699) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1700) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1701) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1702) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1703) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1704) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1705) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1706) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1707) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1708) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1709) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1710) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1711) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go 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_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 = 0x1c constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_HYLINK (line 25) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 26) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x1e constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1c constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_LAT (line 33) | AF_LAT = 0xe constant AF_LINK (line 34) | AF_LINK = 0x12 constant AF_LOCAL (line 35) | AF_LOCAL = 0x1 constant AF_MAX (line 36) | AF_MAX = 0x29 constant AF_NATM (line 37) | AF_NATM = 0x1f constant AF_NDRV (line 38) | AF_NDRV = 0x1b constant AF_NETBIOS (line 39) | AF_NETBIOS = 0x21 constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PPP (line 42) | AF_PPP = 0x22 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 44) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 45) | AF_ROUTE = 0x11 constant AF_SIP (line 46) | AF_SIP = 0x18 constant AF_SNA (line 47) | AF_SNA = 0xb constant AF_SYSTEM (line 48) | AF_SYSTEM = 0x20 constant AF_SYS_CONTROL (line 49) | AF_SYS_CONTROL = 0x2 constant AF_UNIX (line 50) | AF_UNIX = 0x1 constant AF_UNSPEC (line 51) | AF_UNSPEC = 0x0 constant AF_UTUN (line 52) | AF_UTUN = 0x26 constant AF_VSOCK (line 53) | AF_VSOCK = 0x28 constant ALTWERASE (line 54) | ALTWERASE = 0x200 constant ATTR_BIT_MAP_COUNT (line 55) | ATTR_BIT_MAP_COUNT = 0x5 constant ATTR_CMN_ACCESSMASK (line 56) | ATTR_CMN_ACCESSMASK = 0x20000 constant ATTR_CMN_ACCTIME (line 57) | ATTR_CMN_ACCTIME = 0x1000 constant ATTR_CMN_ADDEDTIME (line 58) | ATTR_CMN_ADDEDTIME = 0x10000000 constant ATTR_CMN_BKUPTIME (line 59) | ATTR_CMN_BKUPTIME = 0x2000 constant ATTR_CMN_CHGTIME (line 60) | ATTR_CMN_CHGTIME = 0x800 constant ATTR_CMN_CRTIME (line 61) | ATTR_CMN_CRTIME = 0x200 constant ATTR_CMN_DATA_PROTECT_FLAGS (line 62) | ATTR_CMN_DATA_PROTECT_FLAGS = 0x40000000 constant ATTR_CMN_DEVID (line 63) | ATTR_CMN_DEVID = 0x2 constant ATTR_CMN_DOCUMENT_ID (line 64) | ATTR_CMN_DOCUMENT_ID = 0x100000 constant ATTR_CMN_ERROR (line 65) | ATTR_CMN_ERROR = 0x20000000 constant ATTR_CMN_EXTENDED_SECURITY (line 66) | ATTR_CMN_EXTENDED_SECURITY = 0x400000 constant ATTR_CMN_FILEID (line 67) | ATTR_CMN_FILEID = 0x2000000 constant ATTR_CMN_FLAGS (line 68) | ATTR_CMN_FLAGS = 0x40000 constant ATTR_CMN_FNDRINFO (line 69) | ATTR_CMN_FNDRINFO = 0x4000 constant ATTR_CMN_FSID (line 70) | ATTR_CMN_FSID = 0x4 constant ATTR_CMN_FULLPATH (line 71) | ATTR_CMN_FULLPATH = 0x8000000 constant ATTR_CMN_GEN_COUNT (line 72) | ATTR_CMN_GEN_COUNT = 0x80000 constant ATTR_CMN_GRPID (line 73) | ATTR_CMN_GRPID = 0x10000 constant ATTR_CMN_GRPUUID (line 74) | ATTR_CMN_GRPUUID = 0x1000000 constant ATTR_CMN_MODTIME (line 75) | ATTR_CMN_MODTIME = 0x400 constant ATTR_CMN_NAME (line 76) | ATTR_CMN_NAME = 0x1 constant ATTR_CMN_NAMEDATTRCOUNT (line 77) | ATTR_CMN_NAMEDATTRCOUNT = 0x80000 constant ATTR_CMN_NAMEDATTRLIST (line 78) | ATTR_CMN_NAMEDATTRLIST = 0x100000 constant ATTR_CMN_OBJID (line 79) | ATTR_CMN_OBJID = 0x20 constant ATTR_CMN_OBJPERMANENTID (line 80) | ATTR_CMN_OBJPERMANENTID = 0x40 constant ATTR_CMN_OBJTAG (line 81) | ATTR_CMN_OBJTAG = 0x10 constant ATTR_CMN_OBJTYPE (line 82) | ATTR_CMN_OBJTYPE = 0x8 constant ATTR_CMN_OWNERID (line 83) | ATTR_CMN_OWNERID = 0x8000 constant ATTR_CMN_PARENTID (line 84) | ATTR_CMN_PARENTID = 0x4000000 constant ATTR_CMN_PAROBJID (line 85) | ATTR_CMN_PAROBJID = 0x80 constant ATTR_CMN_RETURNED_ATTRS (line 86) | ATTR_CMN_RETURNED_ATTRS = 0x80000000 constant ATTR_CMN_SCRIPT (line 87) | ATTR_CMN_SCRIPT = 0x100 constant ATTR_CMN_SETMASK (line 88) | ATTR_CMN_SETMASK = 0x51c7ff00 constant ATTR_CMN_USERACCESS (line 89) | ATTR_CMN_USERACCESS = 0x200000 constant ATTR_CMN_UUID (line 90) | ATTR_CMN_UUID = 0x800000 constant ATTR_CMN_VALIDMASK (line 91) | ATTR_CMN_VALIDMASK = 0xffffffff constant ATTR_CMN_VOLSETMASK (line 92) | ATTR_CMN_VOLSETMASK = 0x6700 constant ATTR_FILE_ALLOCSIZE (line 93) | ATTR_FILE_ALLOCSIZE = 0x4 constant ATTR_FILE_CLUMPSIZE (line 94) | ATTR_FILE_CLUMPSIZE = 0x10 constant ATTR_FILE_DATAALLOCSIZE (line 95) | ATTR_FILE_DATAALLOCSIZE = 0x400 constant ATTR_FILE_DATAEXTENTS (line 96) | ATTR_FILE_DATAEXTENTS = 0x800 constant ATTR_FILE_DATALENGTH (line 97) | ATTR_FILE_DATALENGTH = 0x200 constant ATTR_FILE_DEVTYPE (line 98) | ATTR_FILE_DEVTYPE = 0x20 constant ATTR_FILE_FILETYPE (line 99) | ATTR_FILE_FILETYPE = 0x40 constant ATTR_FILE_FORKCOUNT (line 100) | ATTR_FILE_FORKCOUNT = 0x80 constant ATTR_FILE_FORKLIST (line 101) | ATTR_FILE_FORKLIST = 0x100 constant ATTR_FILE_IOBLOCKSIZE (line 102) | ATTR_FILE_IOBLOCKSIZE = 0x8 constant ATTR_FILE_LINKCOUNT (line 103) | ATTR_FILE_LINKCOUNT = 0x1 constant ATTR_FILE_RSRCALLOCSIZE (line 104) | ATTR_FILE_RSRCALLOCSIZE = 0x2000 constant ATTR_FILE_RSRCEXTENTS (line 105) | ATTR_FILE_RSRCEXTENTS = 0x4000 constant ATTR_FILE_RSRCLENGTH (line 106) | ATTR_FILE_RSRCLENGTH = 0x1000 constant ATTR_FILE_SETMASK (line 107) | ATTR_FILE_SETMASK = 0x20 constant ATTR_FILE_TOTALSIZE (line 108) | ATTR_FILE_TOTALSIZE = 0x2 constant ATTR_FILE_VALIDMASK (line 109) | ATTR_FILE_VALIDMASK = 0x37ff constant ATTR_VOL_ALLOCATIONCLUMP (line 110) | ATTR_VOL_ALLOCATIONCLUMP = 0x40 constant ATTR_VOL_ATTRIBUTES (line 111) | ATTR_VOL_ATTRIBUTES = 0x40000000 constant ATTR_VOL_CAPABILITIES (line 112) | ATTR_VOL_CAPABILITIES = 0x20000 constant ATTR_VOL_DIRCOUNT (line 113) | ATTR_VOL_DIRCOUNT = 0x400 constant ATTR_VOL_ENCODINGSUSED (line 114) | ATTR_VOL_ENCODINGSUSED = 0x10000 constant ATTR_VOL_FILECOUNT (line 115) | ATTR_VOL_FILECOUNT = 0x200 constant ATTR_VOL_FSTYPE (line 116) | ATTR_VOL_FSTYPE = 0x1 constant ATTR_VOL_INFO (line 117) | ATTR_VOL_INFO = 0x80000000 constant ATTR_VOL_IOBLOCKSIZE (line 118) | ATTR_VOL_IOBLOCKSIZE = 0x80 constant ATTR_VOL_MAXOBJCOUNT (line 119) | ATTR_VOL_MAXOBJCOUNT = 0x800 constant ATTR_VOL_MINALLOCATION (line 120) | ATTR_VOL_MINALLOCATION = 0x20 constant ATTR_VOL_MOUNTEDDEVICE (line 121) | ATTR_VOL_MOUNTEDDEVICE = 0x8000 constant ATTR_VOL_MOUNTFLAGS (line 122) | ATTR_VOL_MOUNTFLAGS = 0x4000 constant ATTR_VOL_MOUNTPOINT (line 123) | ATTR_VOL_MOUNTPOINT = 0x1000 constant ATTR_VOL_NAME (line 124) | ATTR_VOL_NAME = 0x2000 constant ATTR_VOL_OBJCOUNT (line 125) | ATTR_VOL_OBJCOUNT = 0x100 constant ATTR_VOL_QUOTA_SIZE (line 126) | ATTR_VOL_QUOTA_SIZE = 0x10000000 constant ATTR_VOL_RESERVED_SIZE (line 127) | ATTR_VOL_RESERVED_SIZE = 0x20000000 constant ATTR_VOL_SETMASK (line 128) | ATTR_VOL_SETMASK = 0x80002000 constant ATTR_VOL_SIGNATURE (line 129) | ATTR_VOL_SIGNATURE = 0x2 constant ATTR_VOL_SIZE (line 130) | ATTR_VOL_SIZE = 0x4 constant ATTR_VOL_SPACEAVAIL (line 131) | ATTR_VOL_SPACEAVAIL = 0x10 constant ATTR_VOL_SPACEFREE (line 132) | ATTR_VOL_SPACEFREE = 0x8 constant ATTR_VOL_UUID (line 133) | ATTR_VOL_UUID = 0x40000 constant ATTR_VOL_VALIDMASK (line 134) | ATTR_VOL_VALIDMASK = 0xf007ffff constant B0 (line 135) | B0 = 0x0 constant B110 (line 136) | B110 = 0x6e constant B115200 (line 137) | B115200 = 0x1c200 constant B1200 (line 138) | B1200 = 0x4b0 constant B134 (line 139) | B134 = 0x86 constant B14400 (line 140) | B14400 = 0x3840 constant B150 (line 141) | B150 = 0x96 constant B1800 (line 142) | B1800 = 0x708 constant B19200 (line 143) | B19200 = 0x4b00 constant B200 (line 144) | B200 = 0xc8 constant B230400 (line 145) | B230400 = 0x38400 constant B2400 (line 146) | B2400 = 0x960 constant B28800 (line 147) | B28800 = 0x7080 constant B300 (line 148) | B300 = 0x12c constant B38400 (line 149) | B38400 = 0x9600 constant B4800 (line 150) | B4800 = 0x12c0 constant B50 (line 151) | B50 = 0x32 constant B57600 (line 152) | B57600 = 0xe100 constant B600 (line 153) | B600 = 0x258 constant B7200 (line 154) | B7200 = 0x1c20 constant B75 (line 155) | B75 = 0x4b constant B76800 (line 156) | B76800 = 0x12c00 constant B9600 (line 157) | B9600 = 0x2580 constant BIOCFLUSH (line 158) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 159) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 160) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 161) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 162) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 163) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 164) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 165) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 166) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 167) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 168) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 169) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 170) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 171) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 172) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 173) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 174) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 175) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 176) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 177) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 178) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 179) | BIOCVERSION = 0x40044271 constant BPF_A (line 180) | BPF_A = 0x10 constant BPF_ABS (line 181) | BPF_ABS = 0x20 constant BPF_ADD (line 182) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 183) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 184) | BPF_ALU = 0x4 constant BPF_AND (line 185) | BPF_AND = 0x50 constant BPF_B (line 186) | BPF_B = 0x10 constant BPF_DIV (line 187) | BPF_DIV = 0x30 constant BPF_H (line 188) | BPF_H = 0x8 constant BPF_IMM (line 189) | BPF_IMM = 0x0 constant BPF_IND (line 190) | BPF_IND = 0x40 constant BPF_JA (line 191) | BPF_JA = 0x0 constant BPF_JEQ (line 192) | BPF_JEQ = 0x10 constant BPF_JGE (line 193) | BPF_JGE = 0x30 constant BPF_JGT (line 194) | BPF_JGT = 0x20 constant BPF_JMP (line 195) | BPF_JMP = 0x5 constant BPF_JSET (line 196) | BPF_JSET = 0x40 constant BPF_K (line 197) | BPF_K = 0x0 constant BPF_LD (line 198) | BPF_LD = 0x0 constant BPF_LDX (line 199) | BPF_LDX = 0x1 constant BPF_LEN (line 200) | BPF_LEN = 0x80 constant BPF_LSH (line 201) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 202) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 203) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 204) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 205) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 206) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 207) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 208) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 209) | BPF_MISC = 0x7 constant BPF_MSH (line 210) | BPF_MSH = 0xa0 constant BPF_MUL (line 211) | BPF_MUL = 0x20 constant BPF_NEG (line 212) | BPF_NEG = 0x80 constant BPF_OR (line 213) | BPF_OR = 0x40 constant BPF_RELEASE (line 214) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 215) | BPF_RET = 0x6 constant BPF_RSH (line 216) | BPF_RSH = 0x70 constant BPF_ST (line 217) | BPF_ST = 0x2 constant BPF_STX (line 218) | BPF_STX = 0x3 constant BPF_SUB (line 219) | BPF_SUB = 0x10 constant BPF_TAX (line 220) | BPF_TAX = 0x0 constant BPF_TXA (line 221) | BPF_TXA = 0x80 constant BPF_W (line 222) | BPF_W = 0x0 constant BPF_X (line 223) | BPF_X = 0x8 constant BRKINT (line 224) | BRKINT = 0x2 constant BS0 (line 225) | BS0 = 0x0 constant BS1 (line 226) | BS1 = 0x8000 constant BSDLY (line 227) | BSDLY = 0x8000 constant CFLUSH (line 228) | CFLUSH = 0xf constant CLOCAL (line 229) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 230) | CLOCK_MONOTONIC = 0x6 constant CLOCK_MONOTONIC_RAW (line 231) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_MONOTONIC_RAW_APPROX (line 232) | CLOCK_MONOTONIC_RAW_APPROX = 0x5 constant CLOCK_PROCESS_CPUTIME_ID (line 233) | CLOCK_PROCESS_CPUTIME_ID = 0xc constant CLOCK_REALTIME (line 234) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 235) | CLOCK_THREAD_CPUTIME_ID = 0x10 constant CLOCK_UPTIME_RAW (line 236) | CLOCK_UPTIME_RAW = 0x8 constant CLOCK_UPTIME_RAW_APPROX (line 237) | CLOCK_UPTIME_RAW_APPROX = 0x9 constant CLONE_NOFOLLOW (line 238) | CLONE_NOFOLLOW = 0x1 constant CLONE_NOOWNERCOPY (line 239) | CLONE_NOOWNERCOPY = 0x2 constant CR0 (line 240) | CR0 = 0x0 constant CR1 (line 241) | CR1 = 0x1000 constant CR2 (line 242) | CR2 = 0x2000 constant CR3 (line 243) | CR3 = 0x3000 constant CRDLY (line 244) | CRDLY = 0x3000 constant CREAD (line 245) | CREAD = 0x800 constant CRTSCTS (line 246) | CRTSCTS = 0x30000 constant CS5 (line 247) | CS5 = 0x0 constant CS6 (line 248) | CS6 = 0x100 constant CS7 (line 249) | CS7 = 0x200 constant CS8 (line 250) | CS8 = 0x300 constant CSIZE (line 251) | CSIZE = 0x300 constant CSTART (line 252) | CSTART = 0x11 constant CSTATUS (line 253) | CSTATUS = 0x14 constant CSTOP (line 254) | CSTOP = 0x13 constant CSTOPB (line 255) | CSTOPB = 0x400 constant CSUSP (line 256) | CSUSP = 0x1a constant CTLIOCGINFO (line 257) | CTLIOCGINFO = 0xc0644e03 constant CTL_HW (line 258) | CTL_HW = 0x6 constant CTL_KERN (line 259) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 260) | CTL_MAXNAME = 0xc constant CTL_NET (line 261) | CTL_NET = 0x4 constant DLT_A429 (line 262) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 263) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 264) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 265) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 266) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 267) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 268) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 269) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 270) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 271) | DLT_AURORA = 0x7e constant DLT_AX25 (line 272) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 273) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 274) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 275) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 276) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 277) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 278) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 279) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 280) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 281) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 282) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 283) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 284) | DLT_DBUS = 0xe7 constant DLT_DECT (line 285) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 286) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 287) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 288) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 289) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 290) | DLT_EN3MB = 0x2 constant DLT_ENC (line 291) | DLT_ENC = 0x6d constant DLT_ERF (line 292) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 293) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 294) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 295) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 296) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 297) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 298) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 299) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 300) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 301) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 302) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 303) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 304) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 305) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 306) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 307) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 308) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 309) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 310) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 311) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 312) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 313) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 314) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 315) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 316) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 317) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 318) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 319) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 320) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 321) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 322) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 323) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 324) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 325) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 326) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 327) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 328) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 329) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 330) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 331) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 332) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 333) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 334) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 335) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 336) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 337) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 338) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 339) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 340) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 341) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 342) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 343) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 344) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 345) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 346) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 347) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 348) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 349) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 350) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 351) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 352) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 353) | DLT_LAPD = 0xcb constant DLT_LIN (line 354) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 355) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 356) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 357) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 358) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 359) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 360) | DLT_LOOP = 0x6c constant DLT_LTALK (line 361) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 362) | DLT_MATCHING_MAX = 0x10a constant DLT_MATCHING_MIN (line 363) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 364) | DLT_MFR = 0xb6 constant DLT_MOST (line 365) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 366) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 367) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 368) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 369) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 370) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 371) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 372) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 373) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 374) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 375) | DLT_NFLOG = 0xef constant DLT_NG40 (line 376) | DLT_NG40 = 0xf4 constant DLT_NULL (line 377) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 378) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 379) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 380) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 381) | DLT_PPI = 0xc0 constant DLT_PPP (line 382) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 383) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 384) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 385) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 386) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 387) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 388) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 389) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 390) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 391) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 392) | DLT_RAW = 0xc constant DLT_RIO (line 393) | DLT_RIO = 0x7c constant DLT_SCCP (line 394) | DLT_SCCP = 0x8e constant DLT_SITA (line 395) | DLT_SITA = 0xc4 constant DLT_SLIP (line 396) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 397) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 398) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 399) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 400) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 401) | DLT_TZSP = 0x80 constant DLT_USB (line 402) | DLT_USB = 0xba constant DLT_USB_DARWIN (line 403) | DLT_USB_DARWIN = 0x10a constant DLT_USB_LINUX (line 404) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 405) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 406) | DLT_USER0 = 0x93 constant DLT_USER1 (line 407) | DLT_USER1 = 0x94 constant DLT_USER10 (line 408) | DLT_USER10 = 0x9d constant DLT_USER11 (line 409) | DLT_USER11 = 0x9e constant DLT_USER12 (line 410) | DLT_USER12 = 0x9f constant DLT_USER13 (line 411) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 412) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 413) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 414) | DLT_USER2 = 0x95 constant DLT_USER3 (line 415) | DLT_USER3 = 0x96 constant DLT_USER4 (line 416) | DLT_USER4 = 0x97 constant DLT_USER5 (line 417) | DLT_USER5 = 0x98 constant DLT_USER6 (line 418) | DLT_USER6 = 0x99 constant DLT_USER7 (line 419) | DLT_USER7 = 0x9a constant DLT_USER8 (line 420) | DLT_USER8 = 0x9b constant DLT_USER9 (line 421) | DLT_USER9 = 0x9c constant DLT_WIHART (line 422) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 423) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 424) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 425) | DT_BLK = 0x6 constant DT_CHR (line 426) | DT_CHR = 0x2 constant DT_DIR (line 427) | DT_DIR = 0x4 constant DT_FIFO (line 428) | DT_FIFO = 0x1 constant DT_LNK (line 429) | DT_LNK = 0xa constant DT_REG (line 430) | DT_REG = 0x8 constant DT_SOCK (line 431) | DT_SOCK = 0xc constant DT_UNKNOWN (line 432) | DT_UNKNOWN = 0x0 constant DT_WHT (line 433) | DT_WHT = 0xe constant ECHO (line 434) | ECHO = 0x8 constant ECHOCTL (line 435) | ECHOCTL = 0x40 constant ECHOE (line 436) | ECHOE = 0x2 constant ECHOK (line 437) | ECHOK = 0x4 constant ECHOKE (line 438) | ECHOKE = 0x1 constant ECHONL (line 439) | ECHONL = 0x10 constant ECHOPRT (line 440) | ECHOPRT = 0x20 constant EVFILT_AIO (line 441) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 442) | EVFILT_EXCEPT = -0xf constant EVFILT_FS (line 443) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 444) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 445) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 446) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 447) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 448) | EVFILT_SYSCOUNT = 0x11 constant EVFILT_THREADMARKER (line 449) | EVFILT_THREADMARKER = 0x11 constant EVFILT_TIMER (line 450) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 451) | EVFILT_USER = -0xa constant EVFILT_VM (line 452) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 453) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 454) | EVFILT_WRITE = -0x2 constant EV_ADD (line 455) | EV_ADD = 0x1 constant EV_CLEAR (line 456) | EV_CLEAR = 0x20 constant EV_DELETE (line 457) | EV_DELETE = 0x2 constant EV_DISABLE (line 458) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 459) | EV_DISPATCH = 0x80 constant EV_DISPATCH2 (line 460) | EV_DISPATCH2 = 0x180 constant EV_ENABLE (line 461) | EV_ENABLE = 0x4 constant EV_EOF (line 462) | EV_EOF = 0x8000 constant EV_ERROR (line 463) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 464) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 465) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 466) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 467) | EV_OOBAND = 0x2000 constant EV_POLL (line 468) | EV_POLL = 0x1000 constant EV_RECEIPT (line 469) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 470) | EV_SYSFLAGS = 0xf000 constant EV_UDATA_SPECIFIC (line 471) | EV_UDATA_SPECIFIC = 0x100 constant EV_VANISHED (line 472) | EV_VANISHED = 0x200 constant EXTA (line 473) | EXTA = 0x4b00 constant EXTB (line 474) | EXTB = 0x9600 constant EXTPROC (line 475) | EXTPROC = 0x800 constant FD_CLOEXEC (line 476) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 477) | FD_SETSIZE = 0x400 constant FF0 (line 478) | FF0 = 0x0 constant FF1 (line 479) | FF1 = 0x4000 constant FFDLY (line 480) | FFDLY = 0x4000 constant FLUSHO (line 481) | FLUSHO = 0x800000 constant FSOPT_ATTR_CMN_EXTENDED (line 482) | FSOPT_ATTR_CMN_EXTENDED = 0x20 constant FSOPT_NOFOLLOW (line 483) | FSOPT_NOFOLLOW = 0x1 constant FSOPT_NOINMEMUPDATE (line 484) | FSOPT_NOINMEMUPDATE = 0x2 constant FSOPT_PACK_INVAL_ATTRS (line 485) | FSOPT_PACK_INVAL_ATTRS = 0x8 constant FSOPT_REPORT_FULLSIZE (line 486) | FSOPT_REPORT_FULLSIZE = 0x4 constant FSOPT_RETURN_REALDEV (line 487) | FSOPT_RETURN_REALDEV = 0x200 constant F_ADDFILESIGS (line 488) | F_ADDFILESIGS = 0x3d constant F_ADDFILESIGS_FOR_DYLD_SIM (line 489) | F_ADDFILESIGS_FOR_DYLD_SIM = 0x53 constant F_ADDFILESIGS_INFO (line 490) | F_ADDFILESIGS_INFO = 0x67 constant F_ADDFILESIGS_RETURN (line 491) | F_ADDFILESIGS_RETURN = 0x61 constant F_ADDFILESUPPL (line 492) | F_ADDFILESUPPL = 0x68 constant F_ADDSIGS (line 493) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 494) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 495) | F_ALLOCATECONTIG = 0x2 constant F_BARRIERFSYNC (line 496) | F_BARRIERFSYNC = 0x55 constant F_CHECK_LV (line 497) | F_CHECK_LV = 0x62 constant F_CHKCLEAN (line 498) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 499) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 500) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 501) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 502) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 503) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 504) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 505) | F_GETCODEDIR = 0x48 constant F_GETFD (line 506) | F_GETFD = 0x1 constant F_GETFL (line 507) | F_GETFL = 0x3 constant F_GETLK (line 508) | F_GETLK = 0x7 constant F_GETLKPID (line 509) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 510) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 511) | F_GETOWN = 0x5 constant F_GETPATH (line 512) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 513) | F_GETPATH_MTMINFO = 0x47 constant F_GETPATH_NOFIRMLINK (line 514) | F_GETPATH_NOFIRMLINK = 0x66 constant F_GETPROTECTIONCLASS (line 515) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 516) | F_GETPROTECTIONLEVEL = 0x4d constant F_GETSIGSINFO (line 517) | F_GETSIGSINFO = 0x69 constant F_GLOBAL_NOCACHE (line 518) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 519) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 520) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 521) | F_NOCACHE = 0x30 constant F_NODIRECT (line 522) | F_NODIRECT = 0x3e constant F_OK (line 523) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 524) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 525) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 526) | F_PREALLOCATE = 0x2a constant F_PUNCHHOLE (line 527) | F_PUNCHHOLE = 0x63 constant F_RDADVISE (line 528) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 529) | F_RDAHEAD = 0x2d constant F_RDLCK (line 530) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 531) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 532) | F_SETFD = 0x2 constant F_SETFL (line 533) | F_SETFL = 0x4 constant F_SETLK (line 534) | F_SETLK = 0x8 constant F_SETLKW (line 535) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 536) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 537) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 538) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 539) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 540) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 541) | F_SINGLE_WRITER = 0x4c constant F_SPECULATIVE_READ (line 542) | F_SPECULATIVE_READ = 0x65 constant F_THAW_FS (line 543) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 544) | F_TRANSCODEKEY = 0x4b constant F_TRIM_ACTIVE_FILE (line 545) | F_TRIM_ACTIVE_FILE = 0x64 constant F_UNLCK (line 546) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 547) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 548) | F_WRLCK = 0x3 constant HUPCL (line 549) | HUPCL = 0x4000 constant HW_MACHINE (line 550) | HW_MACHINE = 0x1 constant ICANON (line 551) | ICANON = 0x100 constant ICMP6_FILTER (line 552) | ICMP6_FILTER = 0x12 constant ICRNL (line 553) | ICRNL = 0x100 constant IEXTEN (line 554) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 555) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 556) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 557) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 558) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 559) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 560) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 561) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 562) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 563) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 564) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 565) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 566) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 567) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 568) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 569) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 570) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 571) | IFF_UP = 0x1 constant IFNAMSIZ (line 572) | IFNAMSIZ = 0x10 constant IFT_1822 (line 573) | IFT_1822 = 0x2 constant IFT_6LOWPAN (line 574) | IFT_6LOWPAN = 0x40 constant IFT_AAL5 (line 575) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 576) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 577) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 578) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 579) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 580) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 581) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 582) | IFT_CEPT = 0x13 constant IFT_DS3 (line 583) | IFT_DS3 = 0x1e constant IFT_ENC (line 584) | IFT_ENC = 0xf4 constant IFT_EON (line 585) | IFT_EON = 0x19 constant IFT_ETHER (line 586) | IFT_ETHER = 0x6 constant IFT_FAITH (line 587) | IFT_FAITH = 0x38 constant IFT_FDDI (line 588) | IFT_FDDI = 0xf constant IFT_FRELAY (line 589) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 590) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 591) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 592) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 593) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 594) | IFT_HSSI = 0x2e constant IFT_HY (line 595) | IFT_HY = 0xe constant IFT_IEEE1394 (line 596) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 597) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 598) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 599) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 600) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 601) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 602) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 603) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 604) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 605) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 606) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 607) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 608) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 609) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 610) | IFT_MODEM = 0x30 constant IFT_NSIP (line 611) | IFT_NSIP = 0x1b constant IFT_OTHER (line 612) | IFT_OTHER = 0x1 constant IFT_P10 (line 613) | IFT_P10 = 0xc constant IFT_P80 (line 614) | IFT_P80 = 0xd constant IFT_PARA (line 615) | IFT_PARA = 0x22 constant IFT_PDP (line 616) | IFT_PDP = 0xff constant IFT_PFLOG (line 617) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 618) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 619) | IFT_PKTAP = 0xfe constant IFT_PPP (line 620) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 621) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 622) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 623) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 624) | IFT_RS232 = 0x21 constant IFT_SDLC (line 625) | IFT_SDLC = 0x11 constant IFT_SIP (line 626) | IFT_SIP = 0x1f constant IFT_SLIP (line 627) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 628) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 629) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 630) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 631) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 632) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 633) | IFT_STARLAN = 0xb constant IFT_STF (line 634) | IFT_STF = 0x39 constant IFT_T1 (line 635) | IFT_T1 = 0x12 constant IFT_ULTRA (line 636) | IFT_ULTRA = 0x1d constant IFT_V35 (line 637) | IFT_V35 = 0x2d constant IFT_X25 (line 638) | IFT_X25 = 0x5 constant IFT_X25DDN (line 639) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 640) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 641) | IFT_XETHER = 0x1a constant IGNBRK (line 642) | IGNBRK = 0x1 constant IGNCR (line 643) | IGNCR = 0x80 constant IGNPAR (line 644) | IGNPAR = 0x4 constant IMAXBEL (line 645) | IMAXBEL = 0x2000 constant INLCR (line 646) | INLCR = 0x40 constant INPCK (line 647) | INPCK = 0x10 constant IN_CLASSA_HOST (line 648) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 649) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 650) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 651) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 652) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 653) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 654) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 655) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 656) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 657) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 658) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 659) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 660) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 661) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 662) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 663) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 664) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 665) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 666) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 667) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 668) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 669) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 670) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 671) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 672) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 673) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 674) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 675) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 676) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 677) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 678) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 679) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 680) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 681) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 682) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 683) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 684) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 685) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 686) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 687) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 688) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 689) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 690) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 691) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 692) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 693) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 694) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 695) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 696) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 697) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 698) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 699) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 700) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 701) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 702) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 703) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 704) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 705) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 706) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 707) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 708) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 709) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 710) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 711) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 712) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 713) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 714) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 715) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 716) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 717) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 718) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 719) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 720) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 721) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 722) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 723) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 724) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 725) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 726) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 727) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 728) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 729) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 730) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 731) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 732) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 733) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 734) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 735) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 736) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 737) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 738) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 739) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 740) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 741) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 742) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 743) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 744) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 745) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 746) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 747) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 748) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 749) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 750) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 751) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 752) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 753) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 754) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 755) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 756) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 757) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 758) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 759) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 760) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 761) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 762) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 763) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 764) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 765) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 766) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 767) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 768) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 769) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 770) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 771) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 772) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 773) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 774) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 775) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 776) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 777) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 778) | IPV6_2292RTHDR = 0x18 constant IPV6_3542DSTOPTS (line 779) | IPV6_3542DSTOPTS = 0x32 constant IPV6_3542HOPLIMIT (line 780) | IPV6_3542HOPLIMIT = 0x2f constant IPV6_3542HOPOPTS (line 781) | IPV6_3542HOPOPTS = 0x31 constant IPV6_3542NEXTHOP (line 782) | IPV6_3542NEXTHOP = 0x30 constant IPV6_3542PKTINFO (line 783) | IPV6_3542PKTINFO = 0x2e constant IPV6_3542RTHDR (line 784) | IPV6_3542RTHDR = 0x33 constant IPV6_ADDR_MC_FLAGS_PREFIX (line 785) | IPV6_ADDR_MC_FLAGS_PREFIX = 0x20 constant IPV6_ADDR_MC_FLAGS_TRANSIENT (line 786) | IPV6_ADDR_MC_FLAGS_TRANSIENT = 0x10 constant IPV6_ADDR_MC_FLAGS_UNICAST_BASED (line 787) | IPV6_ADDR_MC_FLAGS_UNICAST_BASED = 0x30 constant IPV6_AUTOFLOWLABEL (line 788) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDV6ONLY (line 789) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 790) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 791) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 792) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 793) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 794) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 795) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 796) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 797) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 798) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 799) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOW_ECN_MASK (line 800) | IPV6_FLOW_ECN_MASK = 0x3000 constant IPV6_FRAGTTL (line 801) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 802) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 803) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 804) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 805) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 806) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 807) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 808) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 809) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 810) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 811) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 812) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 813) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 814) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 815) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 816) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 817) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 818) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 819) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 820) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 821) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 822) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 823) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 824) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 825) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 826) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 827) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 828) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 829) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 830) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 831) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 832) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 833) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 834) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 835) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 836) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 837) | IPV6_RECVPKTINFO = 0x3d constant IPV6_RECVRTHDR (line 838) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 839) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR (line 840) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 841) | IPV6_RTHDRDSTOPTS = 0x39 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 = 0x24 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_ADD_SOURCE_MEMBERSHIP (line 853) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 854) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 855) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 856) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 857) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 858) | IP_DF = 0x4000 constant IP_DONTFRAG (line 859) | IP_DONTFRAG = 0x1c constant IP_DROP_MEMBERSHIP (line 860) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 861) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 862) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 863) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 864) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 865) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 866) | IP_FAITH = 0x16 constant IP_FW_ADD (line 867) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 868) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 869) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 870) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 871) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 872) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 873) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 874) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 875) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 876) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 877) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 878) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 879) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 880) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 881) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 882) | IP_MSFILTER = 0x4a constant IP_MSS (line 883) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 884) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 885) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 886) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 887) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 888) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 889) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 890) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 891) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 892) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 893) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 894) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 895) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 896) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 897) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 898) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 899) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 900) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 901) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 902) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 903) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 904) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 905) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 906) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 907) | IP_RECVRETOPTS = 0x6 constant IP_RECVTOS (line 908) | IP_RECVTOS = 0x1b constant IP_RECVTTL (line 909) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 910) | IP_RETOPTS = 0x8 constant IP_RF (line 911) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 912) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 913) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 914) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 915) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 916) | IP_STRIPHDR = 0x17 constant IP_TOS (line 917) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 918) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 919) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 920) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 921) | ISIG = 0x80 constant ISTRIP (line 922) | ISTRIP = 0x20 constant IUTF8 (line 923) | IUTF8 = 0x4000 constant IXANY (line 924) | IXANY = 0x800 constant IXOFF (line 925) | IXOFF = 0x400 constant IXON (line 926) | IXON = 0x200 constant KERN_HOSTNAME (line 927) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 928) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 929) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 930) | KERN_VERSION = 0x4 constant LOCAL_PEERCRED (line 931) | LOCAL_PEERCRED = 0x1 constant LOCAL_PEEREPID (line 932) | LOCAL_PEEREPID = 0x3 constant LOCAL_PEEREUUID (line 933) | LOCAL_PEEREUUID = 0x5 constant LOCAL_PEERPID (line 934) | LOCAL_PEERPID = 0x2 constant LOCAL_PEERTOKEN (line 935) | LOCAL_PEERTOKEN = 0x6 constant LOCAL_PEERUUID (line 936) | LOCAL_PEERUUID = 0x4 constant LOCK_EX (line 937) | LOCK_EX = 0x2 constant LOCK_NB (line 938) | LOCK_NB = 0x4 constant LOCK_SH (line 939) | LOCK_SH = 0x1 constant LOCK_UN (line 940) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 941) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 942) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 943) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 944) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 945) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 946) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 947) | MADV_PAGEOUT = 0xa constant MADV_RANDOM (line 948) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 949) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 950) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 951) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_32BIT (line 952) | MAP_32BIT = 0x8000 constant MAP_ANON (line 953) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 954) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 955) | MAP_COPY = 0x2 constant MAP_FILE (line 956) | MAP_FILE = 0x0 constant MAP_FIXED (line 957) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 958) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 959) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 960) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 961) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 962) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 963) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 964) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 965) | MAP_RESERVED0080 = 0x80 constant MAP_RESILIENT_CODESIGN (line 966) | MAP_RESILIENT_CODESIGN = 0x2000 constant MAP_RESILIENT_MEDIA (line 967) | MAP_RESILIENT_MEDIA = 0x4000 constant MAP_SHARED (line 968) | MAP_SHARED = 0x1 constant MAP_TRANSLATED_ALLOW_EXECUTE (line 969) | MAP_TRANSLATED_ALLOW_EXECUTE = 0x20000 constant MAP_UNIX03 (line 970) | MAP_UNIX03 = 0x40000 constant MCAST_BLOCK_SOURCE (line 971) | MCAST_BLOCK_SOURCE = 0x54 constant MCAST_EXCLUDE (line 972) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 973) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 974) | MCAST_JOIN_GROUP = 0x50 constant MCAST_JOIN_SOURCE_GROUP (line 975) | MCAST_JOIN_SOURCE_GROUP = 0x52 constant MCAST_LEAVE_GROUP (line 976) | MCAST_LEAVE_GROUP = 0x51 constant MCAST_LEAVE_SOURCE_GROUP (line 977) | MCAST_LEAVE_SOURCE_GROUP = 0x53 constant MCAST_UNBLOCK_SOURCE (line 978) | MCAST_UNBLOCK_SOURCE = 0x55 constant MCAST_UNDEFINED (line 979) | MCAST_UNDEFINED = 0x0 constant MCL_CURRENT (line 980) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 981) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 982) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 983) | MNT_AUTOMOUNTED = 0x400000 constant MNT_CMDFLAGS (line 984) | MNT_CMDFLAGS = 0xf0000 constant MNT_CPROTECT (line 985) | MNT_CPROTECT = 0x80 constant MNT_DEFWRITE (line 986) | MNT_DEFWRITE = 0x2000000 constant MNT_DONTBROWSE (line 987) | MNT_DONTBROWSE = 0x100000 constant MNT_DOVOLFS (line 988) | MNT_DOVOLFS = 0x8000 constant MNT_DWAIT (line 989) | MNT_DWAIT = 0x4 constant MNT_EXPORTED (line 990) | MNT_EXPORTED = 0x100 constant MNT_EXT_ROOT_DATA_VOL (line 991) | MNT_EXT_ROOT_DATA_VOL = 0x1 constant MNT_FORCE (line 992) | MNT_FORCE = 0x80000 constant MNT_IGNORE_OWNERSHIP (line 993) | MNT_IGNORE_OWNERSHIP = 0x200000 constant MNT_JOURNALED (line 994) | MNT_JOURNALED = 0x800000 constant MNT_LOCAL (line 995) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 996) | MNT_MULTILABEL = 0x4000000 constant MNT_NOATIME (line 997) | MNT_NOATIME = 0x10000000 constant MNT_NOBLOCK (line 998) | MNT_NOBLOCK = 0x20000 constant MNT_NODEV (line 999) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 1000) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 1001) | MNT_NOSUID = 0x8 constant MNT_NOUSERXATTR (line 1002) | MNT_NOUSERXATTR = 0x1000000 constant MNT_NOWAIT (line 1003) | MNT_NOWAIT = 0x2 constant MNT_QUARANTINE (line 1004) | MNT_QUARANTINE = 0x400 constant MNT_QUOTA (line 1005) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1006) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1007) | MNT_RELOAD = 0x40000 constant MNT_REMOVABLE (line 1008) | MNT_REMOVABLE = 0x200 constant MNT_ROOTFS (line 1009) | MNT_ROOTFS = 0x4000 constant MNT_SNAPSHOT (line 1010) | MNT_SNAPSHOT = 0x40000000 constant MNT_STRICTATIME (line 1011) | MNT_STRICTATIME = 0x80000000 constant MNT_SYNCHRONOUS (line 1012) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1013) | MNT_UNION = 0x20 constant MNT_UNKNOWNPERMISSIONS (line 1014) | MNT_UNKNOWNPERMISSIONS = 0x200000 constant MNT_UPDATE (line 1015) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1016) | MNT_VISFLAGMASK = 0xd7f0f7ff constant MNT_WAIT (line 1017) | MNT_WAIT = 0x1 constant MSG_CTRUNC (line 1018) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1019) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1020) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1021) | MSG_EOF = 0x100 constant MSG_EOR (line 1022) | MSG_EOR = 0x8 constant MSG_FLUSH (line 1023) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 1024) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 1025) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 1026) | MSG_NEEDSA = 0x10000 constant MSG_NOSIGNAL (line 1027) | MSG_NOSIGNAL = 0x80000 constant MSG_OOB (line 1028) | MSG_OOB = 0x1 constant MSG_PEEK (line 1029) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 1030) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 1031) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 1032) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1033) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 1034) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 1035) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 1036) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 1037) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 1038) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 1039) | MS_SYNC = 0x10 constant NAME_MAX (line 1040) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1041) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 1042) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 1043) | NET_RT_FLAGS = 0x2 constant NET_RT_FLAGS_PRIV (line 1044) | NET_RT_FLAGS_PRIV = 0xa constant NET_RT_IFLIST (line 1045) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 1046) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 1047) | NET_RT_MAXID = 0xb constant NET_RT_STAT (line 1048) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 1049) | NET_RT_TRASH = 0x5 constant NFDBITS (line 1050) | NFDBITS = 0x20 constant NL0 (line 1051) | NL0 = 0x0 constant NL1 (line 1052) | NL1 = 0x100 constant NL2 (line 1053) | NL2 = 0x200 constant NL3 (line 1054) | NL3 = 0x300 constant NLDLY (line 1055) | NLDLY = 0x300 constant NOFLSH (line 1056) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1057) | NOKERNINFO = 0x2000000 constant NOTE_ABSOLUTE (line 1058) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 1059) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 1060) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 1061) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 1062) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 1063) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1064) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1065) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 1066) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 1067) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 1068) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 1069) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 1070) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 1071) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 1072) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 1073) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1074) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1075) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1076) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1077) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1078) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1079) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 1080) | NOTE_FORK = 0x40000000 constant NOTE_FUNLOCK (line 1081) | NOTE_FUNLOCK = 0x100 constant NOTE_LEEWAY (line 1082) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 1083) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1084) | NOTE_LOWAT = 0x1 constant NOTE_MACHTIME (line 1085) | NOTE_MACHTIME = 0x100 constant NOTE_MACH_CONTINUOUS_TIME (line 1086) | NOTE_MACH_CONTINUOUS_TIME = 0x80 constant NOTE_NONE (line 1087) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 1088) | NOTE_NSECONDS = 0x4 constant NOTE_OOB (line 1089) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 1090) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 1091) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 1092) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 1093) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1094) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1095) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 1096) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 1097) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1098) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1099) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1100) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 1101) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 1102) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 1103) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 1104) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 1105) | NOTE_WRITE = 0x2 constant OCRNL (line 1106) | OCRNL = 0x10 constant OFDEL (line 1107) | OFDEL = 0x20000 constant OFILL (line 1108) | OFILL = 0x80 constant ONLCR (line 1109) | ONLCR = 0x2 constant ONLRET (line 1110) | ONLRET = 0x40 constant ONOCR (line 1111) | ONOCR = 0x20 constant ONOEOT (line 1112) | ONOEOT = 0x8 constant OPOST (line 1113) | OPOST = 0x1 constant OXTABS (line 1114) | OXTABS = 0x4 constant O_ACCMODE (line 1115) | O_ACCMODE = 0x3 constant O_ALERT (line 1116) | O_ALERT = 0x20000000 constant O_APPEND (line 1117) | O_APPEND = 0x8 constant O_ASYNC (line 1118) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1119) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 1120) | O_CREAT = 0x200 constant O_DIRECTORY (line 1121) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 1122) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DP_GETRAWUNENCRYPTED (line 1123) | O_DP_GETRAWUNENCRYPTED = 0x2 constant O_DSYNC (line 1124) | O_DSYNC = 0x400000 constant O_EVTONLY (line 1125) | O_EVTONLY = 0x8000 constant O_EXCL (line 1126) | O_EXCL = 0x800 constant O_EXLOCK (line 1127) | O_EXLOCK = 0x20 constant O_FSYNC (line 1128) | O_FSYNC = 0x80 constant O_NDELAY (line 1129) | O_NDELAY = 0x4 constant O_NOCTTY (line 1130) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 1131) | O_NOFOLLOW = 0x100 constant O_NOFOLLOW_ANY (line 1132) | O_NOFOLLOW_ANY = 0x20000000 constant O_NONBLOCK (line 1133) | O_NONBLOCK = 0x4 constant O_POPUP (line 1134) | O_POPUP = 0x80000000 constant O_RDONLY (line 1135) | O_RDONLY = 0x0 constant O_RDWR (line 1136) | O_RDWR = 0x2 constant O_SHLOCK (line 1137) | O_SHLOCK = 0x10 constant O_SYMLINK (line 1138) | O_SYMLINK = 0x200000 constant O_SYNC (line 1139) | O_SYNC = 0x80 constant O_TRUNC (line 1140) | O_TRUNC = 0x400 constant O_WRONLY (line 1141) | O_WRONLY = 0x1 constant PARENB (line 1142) | PARENB = 0x1000 constant PARMRK (line 1143) | PARMRK = 0x8 constant PARODD (line 1144) | PARODD = 0x2000 constant PENDIN (line 1145) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1146) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1147) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1148) | PRIO_USER = 0x2 constant PROT_EXEC (line 1149) | PROT_EXEC = 0x4 constant PROT_NONE (line 1150) | PROT_NONE = 0x0 constant PROT_READ (line 1151) | PROT_READ = 0x1 constant PROT_WRITE (line 1152) | PROT_WRITE = 0x2 constant PT_ATTACH (line 1153) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 1154) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 1155) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 1156) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 1157) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 1158) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 1159) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 1160) | PT_KILL = 0x8 constant PT_READ_D (line 1161) | PT_READ_D = 0x2 constant PT_READ_I (line 1162) | PT_READ_I = 0x1 constant PT_READ_U (line 1163) | PT_READ_U = 0x3 constant PT_SIGEXC (line 1164) | PT_SIGEXC = 0xc constant PT_STEP (line 1165) | PT_STEP = 0x9 constant PT_THUPDATE (line 1166) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 1167) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 1168) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 1169) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 1170) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 1171) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 1172) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1173) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 1174) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 1175) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1176) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1177) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1178) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1179) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1180) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1181) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1182) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1183) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1184) | RTAX_BRD = 0x7 constant RTAX_DST (line 1185) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1186) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1187) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1188) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1189) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1190) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1191) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1192) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1193) | RTA_BRD = 0x80 constant RTA_DST (line 1194) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1195) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1196) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1197) | RTA_IFA = 0x20 constant RTA_IFP (line 1198) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1199) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1200) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1201) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1202) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 1203) | RTF_CONDEMNED = 0x2000000 constant RTF_DEAD (line 1204) | RTF_DEAD = 0x20000000 constant RTF_DELCLONE (line 1205) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 1206) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1207) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1208) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1209) | RTF_HOST = 0x4 constant RTF_IFREF (line 1210) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 1211) | RTF_IFSCOPE = 0x1000000 constant RTF_LLDATA (line 1212) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1213) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1214) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1215) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1216) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 1217) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 1218) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1219) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1220) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1221) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1222) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 1223) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 1224) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 1225) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 1226) | RTF_STATIC = 0x800 constant RTF_UP (line 1227) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1228) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1229) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1230) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1231) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1232) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1233) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1234) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1235) | RTM_GET = 0x4 constant RTM_GET2 (line 1236) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 1237) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 1238) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 1239) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1240) | RTM_LOSING = 0x5 constant RTM_MISS (line 1241) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1242) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1243) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 1244) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 1245) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1246) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1247) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1248) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1249) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1250) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1251) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1252) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1253) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1254) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1255) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1256) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1257) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1258) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1259) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1260) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1261) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1262) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1263) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1264) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SEEK_CUR (line 1265) | SEEK_CUR = 0x1 constant SEEK_DATA (line 1266) | SEEK_DATA = 0x4 constant SEEK_END (line 1267) | SEEK_END = 0x2 constant SEEK_HOLE (line 1268) | SEEK_HOLE = 0x3 constant SEEK_SET (line 1269) | SEEK_SET = 0x0 constant SHUT_RD (line 1270) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1271) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1272) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1273) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1274) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1275) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1276) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1277) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1278) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1279) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1280) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1281) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1282) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1283) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1284) | SIOCGHIWAT = 0x40047301 constant SIOCGIF6LOWPAN (line 1285) | SIOCGIF6LOWPAN = 0xc02069c5 constant SIOCGIFADDR (line 1286) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1287) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1288) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1289) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1290) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1291) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1292) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1293) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1294) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1295) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFFUNCTIONALTYPE (line 1296) | SIOCGIFFUNCTIONALTYPE = 0xc02069ad constant SIOCGIFGENERIC (line 1297) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1298) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1299) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1300) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1301) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1302) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1303) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1304) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1305) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1306) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1307) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1308) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1309) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGIFXMEDIA (line 1310) | SIOCGIFXMEDIA = 0xc02c6948 constant SIOCGLOWAT (line 1311) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1312) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1313) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1314) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1315) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1316) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1317) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1318) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1319) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1320) | SIOCSHIWAT = 0x80047300 constant SIOCSIF6LOWPAN (line 1321) | SIOCSIF6LOWPAN = 0x802069c4 constant SIOCSIFADDR (line 1322) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1323) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1324) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1325) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1326) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1327) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1328) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1329) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1330) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1331) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1332) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1333) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1334) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1335) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1336) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1337) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1338) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1339) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1340) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1341) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1342) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1343) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1344) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1345) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1346) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1347) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1348) | SOCK_STREAM = 0x1 constant SOL_LOCAL (line 1349) | SOL_LOCAL = 0x0 constant SOL_SOCKET (line 1350) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1351) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1352) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1353) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1354) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1355) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1356) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1357) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1358) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1359) | SO_LABEL = 0x1010 constant SO_LINGER (line 1360) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1361) | SO_LINGER_SEC = 0x1080 constant SO_NETSVC_MARKING_LEVEL (line 1362) | SO_NETSVC_MARKING_LEVEL = 0x1119 constant SO_NET_SERVICE_TYPE (line 1363) | SO_NET_SERVICE_TYPE = 0x1116 constant SO_NKE (line 1364) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1365) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1366) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1367) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1368) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1369) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1370) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1371) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1372) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1373) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1374) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1375) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1376) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1377) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1378) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1379) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1380) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1381) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1382) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1383) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1384) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1385) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1386) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1387) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1388) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1389) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1390) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1391) | S_IEXEC = 0x40 constant S_IFBLK (line 1392) | S_IFBLK = 0x6000 constant S_IFCHR (line 1393) | S_IFCHR = 0x2000 constant S_IFDIR (line 1394) | S_IFDIR = 0x4000 constant S_IFIFO (line 1395) | S_IFIFO = 0x1000 constant S_IFLNK (line 1396) | S_IFLNK = 0xa000 constant S_IFMT (line 1397) | S_IFMT = 0xf000 constant S_IFREG (line 1398) | S_IFREG = 0x8000 constant S_IFSOCK (line 1399) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1400) | S_IFWHT = 0xe000 constant S_IREAD (line 1401) | S_IREAD = 0x100 constant S_IRGRP (line 1402) | S_IRGRP = 0x20 constant S_IROTH (line 1403) | S_IROTH = 0x4 constant S_IRUSR (line 1404) | S_IRUSR = 0x100 constant S_IRWXG (line 1405) | S_IRWXG = 0x38 constant S_IRWXO (line 1406) | S_IRWXO = 0x7 constant S_IRWXU (line 1407) | S_IRWXU = 0x1c0 constant S_ISGID (line 1408) | S_ISGID = 0x400 constant S_ISTXT (line 1409) | S_ISTXT = 0x200 constant S_ISUID (line 1410) | S_ISUID = 0x800 constant S_ISVTX (line 1411) | S_ISVTX = 0x200 constant S_IWGRP (line 1412) | S_IWGRP = 0x10 constant S_IWOTH (line 1413) | S_IWOTH = 0x2 constant S_IWRITE (line 1414) | S_IWRITE = 0x80 constant S_IWUSR (line 1415) | S_IWUSR = 0x80 constant S_IXGRP (line 1416) | S_IXGRP = 0x8 constant S_IXOTH (line 1417) | S_IXOTH = 0x1 constant S_IXUSR (line 1418) | S_IXUSR = 0x40 constant TAB0 (line 1419) | TAB0 = 0x0 constant TAB1 (line 1420) | TAB1 = 0x400 constant TAB2 (line 1421) | TAB2 = 0x800 constant TAB3 (line 1422) | TAB3 = 0x4 constant TABDLY (line 1423) | TABDLY = 0xc04 constant TCIFLUSH (line 1424) | TCIFLUSH = 0x1 constant TCIOFF (line 1425) | TCIOFF = 0x3 constant TCIOFLUSH (line 1426) | TCIOFLUSH = 0x3 constant TCION (line 1427) | TCION = 0x4 constant TCOFLUSH (line 1428) | TCOFLUSH = 0x2 constant TCOOFF (line 1429) | TCOOFF = 0x1 constant TCOON (line 1430) | TCOON = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1431) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_CONNECTION_INFO (line 1432) | TCP_CONNECTION_INFO = 0x106 constant TCP_ENABLE_ECN (line 1433) | TCP_ENABLE_ECN = 0x104 constant TCP_FASTOPEN (line 1434) | TCP_FASTOPEN = 0x105 constant TCP_KEEPALIVE (line 1435) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1436) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1437) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1438) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1439) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1440) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1441) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1442) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1443) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1444) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1445) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1446) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1447) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1448) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1449) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1450) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1451) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1452) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1453) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1454) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1455) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1456) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1457) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1458) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1459) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1460) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1461) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1462) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1463) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1464) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1465) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1466) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1467) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1468) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1469) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1470) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1471) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1472) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1473) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1474) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1475) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1476) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1477) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1478) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1479) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1480) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1481) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1482) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1483) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1484) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1485) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1486) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1487) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1488) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1489) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1490) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1491) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1492) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1493) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1494) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1495) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1496) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1497) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1498) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1499) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1500) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1501) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1502) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1503) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1504) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1505) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1506) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1507) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1508) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1509) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1510) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1511) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1512) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1513) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1514) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1515) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1516) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1517) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1518) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1519) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1520) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1521) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1522) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1523) | TOSTOP = 0x400000 constant VDISCARD (line 1524) | VDISCARD = 0xf constant VDSUSP (line 1525) | VDSUSP = 0xb constant VEOF (line 1526) | VEOF = 0x0 constant VEOL (line 1527) | VEOL = 0x1 constant VEOL2 (line 1528) | VEOL2 = 0x2 constant VERASE (line 1529) | VERASE = 0x3 constant VINTR (line 1530) | VINTR = 0x8 constant VKILL (line 1531) | VKILL = 0x5 constant VLNEXT (line 1532) | VLNEXT = 0xe constant VMIN (line 1533) | VMIN = 0x10 constant VM_LOADAVG (line 1534) | VM_LOADAVG = 0x2 constant VM_MACHFACTOR (line 1535) | VM_MACHFACTOR = 0x4 constant VM_MAXID (line 1536) | VM_MAXID = 0x6 constant VM_METER (line 1537) | VM_METER = 0x1 constant VM_SWAPUSAGE (line 1538) | VM_SWAPUSAGE = 0x5 constant VQUIT (line 1539) | VQUIT = 0x9 constant VREPRINT (line 1540) | VREPRINT = 0x6 constant VSTART (line 1541) | VSTART = 0xc constant VSTATUS (line 1542) | VSTATUS = 0x12 constant VSTOP (line 1543) | VSTOP = 0xd constant VSUSP (line 1544) | VSUSP = 0xa constant VT0 (line 1545) | VT0 = 0x0 constant VT1 (line 1546) | VT1 = 0x10000 constant VTDLY (line 1547) | VTDLY = 0x10000 constant VTIME (line 1548) | VTIME = 0x11 constant VWERASE (line 1549) | VWERASE = 0x4 constant WCONTINUED (line 1550) | WCONTINUED = 0x10 constant WCOREFLAG (line 1551) | WCOREFLAG = 0x80 constant WEXITED (line 1552) | WEXITED = 0x4 constant WNOHANG (line 1553) | WNOHANG = 0x1 constant WNOWAIT (line 1554) | WNOWAIT = 0x20 constant WORDSIZE (line 1555) | WORDSIZE = 0x40 constant WSTOPPED (line 1556) | WSTOPPED = 0x8 constant WUNTRACED (line 1557) | WUNTRACED = 0x2 constant XATTR_CREATE (line 1558) | XATTR_CREATE = 0x2 constant XATTR_NODEFAULT (line 1559) | XATTR_NODEFAULT = 0x10 constant XATTR_NOFOLLOW (line 1560) | XATTR_NOFOLLOW = 0x1 constant XATTR_NOSECURITY (line 1561) | XATTR_NOSECURITY = 0x8 constant XATTR_REPLACE (line 1562) | XATTR_REPLACE = 0x4 constant XATTR_SHOWCOMPRESSION (line 1563) | XATTR_SHOWCOMPRESSION = 0x20 constant E2BIG (line 1568) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1569) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1570) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1571) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1572) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1573) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1574) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1575) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1576) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1577) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1578) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1579) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1580) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1581) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1582) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1583) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1584) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1585) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1586) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1587) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1588) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1589) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1590) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1591) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1592) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1593) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1594) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1595) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1596) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1597) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1598) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1599) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1600) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1601) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1602) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1603) | EINVAL = syscall.Errno(0x16) constant EIO (line 1604) | EIO = syscall.Errno(0x5) constant EISCONN (line 1605) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1606) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1607) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1608) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1609) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1610) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1611) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1612) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1613) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1614) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1615) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1616) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1617) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1618) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1619) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1620) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1621) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1622) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1623) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1624) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1625) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1626) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1627) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1628) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1629) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1630) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1631) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1632) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1633) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1634) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1635) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1636) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1637) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1638) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1639) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1640) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1641) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1642) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1643) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1644) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1645) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1646) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1647) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1648) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1649) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1650) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1651) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1652) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1653) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1654) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1655) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1656) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1657) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1658) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1659) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1660) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1661) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1662) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1663) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1664) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1665) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1666) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1667) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1668) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1669) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1670) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1671) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1672) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1673) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1674) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1675) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1680) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1681) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1682) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1683) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1684) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1685) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1686) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1687) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1688) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1689) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1690) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1691) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1692) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1693) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1694) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1695) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1696) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1697) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1698) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1699) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1700) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1701) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1702) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1703) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1704) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1705) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1706) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1707) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1708) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1709) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1710) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1711) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x21 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 = 0x23 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_IPX (line 32) | AF_IPX = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x1a constant AF_ISO (line 34) | AF_ISO = 0x7 constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x24 constant AF_MPLS (line 39) | AF_MPLS = 0x22 constant AF_NATM (line 40) | AF_NATM = 0x1d constant AF_NETBIOS (line 41) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 42) | AF_NETGRAPH = 0x20 constant AF_OSI (line 43) | AF_OSI = 0x7 constant AF_PUP (line 44) | AF_PUP = 0x4 constant AF_ROUTE (line 45) | AF_ROUTE = 0x11 constant AF_SIP (line 46) | AF_SIP = 0x18 constant AF_SNA (line 47) | AF_SNA = 0xb constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant ALTWERASE (line 50) | ALTWERASE = 0x200 constant B0 (line 51) | B0 = 0x0 constant B110 (line 52) | B110 = 0x6e constant B115200 (line 53) | B115200 = 0x1c200 constant B1200 (line 54) | B1200 = 0x4b0 constant B134 (line 55) | B134 = 0x86 constant B14400 (line 56) | B14400 = 0x3840 constant B150 (line 57) | B150 = 0x96 constant B1800 (line 58) | B1800 = 0x708 constant B19200 (line 59) | B19200 = 0x4b00 constant B200 (line 60) | B200 = 0xc8 constant B230400 (line 61) | B230400 = 0x38400 constant B2400 (line 62) | B2400 = 0x960 constant B28800 (line 63) | B28800 = 0x7080 constant B300 (line 64) | B300 = 0x12c constant B38400 (line 65) | B38400 = 0x9600 constant B460800 (line 66) | B460800 = 0x70800 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 B921600 (line 74) | B921600 = 0xe1000 constant B9600 (line 75) | B9600 = 0x2580 constant BIOCFEEDBACK (line 76) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 77) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 78) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 79) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 80) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETIF (line 81) | BIOCGETIF = 0x4020426b constant BIOCGFEEDBACK (line 82) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 83) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 84) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 85) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 86) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 87) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 88) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 89) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 90) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 91) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 92) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 93) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 94) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 95) | BIOCSETWF = 0x8010427b constant BIOCSFEEDBACK (line 96) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 97) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 98) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 101) | BIOCVERSION = 0x40044271 constant BPF_A (line 102) | BPF_A = 0x10 constant BPF_ABS (line 103) | BPF_ABS = 0x20 constant BPF_ADD (line 104) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 105) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 106) | BPF_ALU = 0x4 constant BPF_AND (line 107) | BPF_AND = 0x50 constant BPF_B (line 108) | BPF_B = 0x10 constant BPF_DEFAULTBUFSIZE (line 109) | BPF_DEFAULTBUFSIZE = 0x1000 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 = 0x80000 constant BPF_MAXINSNS (line 127) | BPF_MAXINSNS = 0x200 constant BPF_MAX_CLONES (line 128) | BPF_MAX_CLONES = 0x80 constant BPF_MEM (line 129) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 130) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 131) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 132) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 133) | BPF_MISC = 0x7 constant BPF_MOD (line 134) | BPF_MOD = 0x90 constant BPF_MSH (line 135) | BPF_MSH = 0xa0 constant BPF_MUL (line 136) | BPF_MUL = 0x20 constant BPF_NEG (line 137) | BPF_NEG = 0x80 constant BPF_OR (line 138) | BPF_OR = 0x40 constant BPF_RELEASE (line 139) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 140) | BPF_RET = 0x6 constant BPF_RSH (line 141) | BPF_RSH = 0x70 constant BPF_ST (line 142) | BPF_ST = 0x2 constant BPF_STX (line 143) | BPF_STX = 0x3 constant BPF_SUB (line 144) | BPF_SUB = 0x10 constant BPF_TAX (line 145) | BPF_TAX = 0x0 constant BPF_TXA (line 146) | BPF_TXA = 0x80 constant BPF_W (line 147) | BPF_W = 0x0 constant BPF_X (line 148) | BPF_X = 0x8 constant BPF_XOR (line 149) | BPF_XOR = 0xa0 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 153) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 154) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 155) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 156) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 157) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 158) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 159) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 160) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 161) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 162) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 163) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 164) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 165) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 166) | CLOCK_VIRTUAL = 0x1 constant CPUSTATES (line 167) | CPUSTATES = 0x5 constant CP_IDLE (line 168) | CP_IDLE = 0x4 constant CP_INTR (line 169) | CP_INTR = 0x3 constant CP_NICE (line 170) | CP_NICE = 0x1 constant CP_SYS (line 171) | CP_SYS = 0x2 constant CP_USER (line 172) | CP_USER = 0x0 constant CREAD (line 173) | CREAD = 0x800 constant CRTSCTS (line 174) | CRTSCTS = 0x30000 constant CS5 (line 175) | CS5 = 0x0 constant CS6 (line 176) | CS6 = 0x100 constant CS7 (line 177) | CS7 = 0x200 constant CS8 (line 178) | CS8 = 0x300 constant CSIZE (line 179) | CSIZE = 0x300 constant CSTART (line 180) | CSTART = 0x11 constant CSTATUS (line 181) | CSTATUS = 0x14 constant CSTOP (line 182) | CSTOP = 0x13 constant CSTOPB (line 183) | CSTOPB = 0x400 constant CSUSP (line 184) | CSUSP = 0x1a constant CTL_HW (line 185) | CTL_HW = 0x6 constant CTL_KERN (line 186) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 187) | CTL_MAXNAME = 0xc constant CTL_NET (line 188) | CTL_NET = 0x4 constant DLT_A429 (line 189) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 190) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 191) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 192) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 193) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 194) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 195) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 196) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 197) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 198) | DLT_AURORA = 0x7e constant DLT_AX25 (line 199) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 200) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 201) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 202) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 203) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 204) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 205) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 206) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 207) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 208) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 209) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 210) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 211) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 212) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 213) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 214) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 215) | DLT_DBUS = 0xe7 constant DLT_DECT (line 216) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 217) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 218) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 219) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 220) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 221) | DLT_EN3MB = 0x2 constant DLT_ENC (line 222) | DLT_ENC = 0x6d constant DLT_EPON (line 223) | DLT_EPON = 0x103 constant DLT_ERF (line 224) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 225) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 226) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 227) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 228) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 229) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 230) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 231) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 232) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 233) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 234) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 235) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 236) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 237) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 238) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 239) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 240) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 241) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 242) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 243) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 244) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 245) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 246) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 247) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 248) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 249) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 250) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 251) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 252) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 253) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 254) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 255) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 256) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 257) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 258) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 259) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 260) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 261) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 262) | DLT_IP_OVER_FC = 0x7a constant DLT_ISO_14443 (line 263) | DLT_ISO_14443 = 0x108 constant DLT_JUNIPER_ATM1 (line 264) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 265) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 266) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 267) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 268) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 269) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 270) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 271) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 272) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 273) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 274) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 275) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 276) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 277) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 278) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 279) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 280) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 281) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 282) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 283) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 284) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 285) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 286) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 287) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 288) | DLT_LAPD = 0xcb constant DLT_LIN (line 289) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 290) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 291) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 292) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 293) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 294) | DLT_LOOP = 0x6c constant DLT_LTALK (line 295) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 296) | DLT_MATCHING_MAX = 0x109 constant DLT_MATCHING_MIN (line 297) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 298) | DLT_MFR = 0xb6 constant DLT_MOST (line 299) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 300) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 301) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 302) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 303) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 304) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 305) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 306) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 307) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 308) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 309) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 310) | DLT_NFLOG = 0xef constant DLT_NG40 (line 311) | DLT_NG40 = 0xf4 constant DLT_NULL (line 312) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 313) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 314) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 315) | DLT_PFSYNC = 0x12 constant DLT_PKTAP (line 316) | DLT_PKTAP = 0x102 constant DLT_PPI (line 317) | DLT_PPI = 0xc0 constant DLT_PPP (line 318) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 319) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 320) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 321) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 322) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 323) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 324) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 325) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 326) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 327) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 328) | DLT_RAW = 0xc constant DLT_RDS (line 329) | DLT_RDS = 0x109 constant DLT_REDBACK_SMARTEDGE (line 330) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 331) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 332) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 333) | DLT_SCCP = 0x8e constant DLT_SCTP (line 334) | DLT_SCTP = 0xf8 constant DLT_SITA (line 335) | DLT_SITA = 0xc4 constant DLT_SLIP (line 336) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 337) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 338) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 339) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 340) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 341) | DLT_TZSP = 0x80 constant DLT_USB (line 342) | DLT_USB = 0xba constant DLT_USBPCAP (line 343) | DLT_USBPCAP = 0xf9 constant DLT_USB_FREEBSD (line 344) | DLT_USB_FREEBSD = 0xba constant DLT_USB_LINUX (line 345) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 346) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 347) | DLT_USER0 = 0x93 constant DLT_USER1 (line 348) | DLT_USER1 = 0x94 constant DLT_USER10 (line 349) | DLT_USER10 = 0x9d constant DLT_USER11 (line 350) | DLT_USER11 = 0x9e constant DLT_USER12 (line 351) | DLT_USER12 = 0x9f constant DLT_USER13 (line 352) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 353) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 354) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 355) | DLT_USER2 = 0x95 constant DLT_USER3 (line 356) | DLT_USER3 = 0x96 constant DLT_USER4 (line 357) | DLT_USER4 = 0x97 constant DLT_USER5 (line 358) | DLT_USER5 = 0x98 constant DLT_USER6 (line 359) | DLT_USER6 = 0x99 constant DLT_USER7 (line 360) | DLT_USER7 = 0x9a constant DLT_USER8 (line 361) | DLT_USER8 = 0x9b constant DLT_USER9 (line 362) | DLT_USER9 = 0x9c constant DLT_WATTSTOPPER_DLM (line 363) | DLT_WATTSTOPPER_DLM = 0x107 constant DLT_WIHART (line 364) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 365) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 366) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 367) | DLT_X2E_XORAYA = 0xd6 constant DLT_ZWAVE_R1_R2 (line 368) | DLT_ZWAVE_R1_R2 = 0x105 constant DLT_ZWAVE_R3 (line 369) | DLT_ZWAVE_R3 = 0x106 constant DT_BLK (line 370) | DT_BLK = 0x6 constant DT_CHR (line 371) | DT_CHR = 0x2 constant DT_DBF (line 372) | DT_DBF = 0xf constant DT_DIR (line 373) | DT_DIR = 0x4 constant DT_FIFO (line 374) | DT_FIFO = 0x1 constant DT_LNK (line 375) | DT_LNK = 0xa constant DT_REG (line 376) | DT_REG = 0x8 constant DT_SOCK (line 377) | DT_SOCK = 0xc constant DT_UNKNOWN (line 378) | DT_UNKNOWN = 0x0 constant DT_WHT (line 379) | DT_WHT = 0xe constant ECHO (line 380) | ECHO = 0x8 constant ECHOCTL (line 381) | ECHOCTL = 0x40 constant ECHOE (line 382) | ECHOE = 0x2 constant ECHOK (line 383) | ECHOK = 0x4 constant ECHOKE (line 384) | ECHOKE = 0x1 constant ECHONL (line 385) | ECHONL = 0x10 constant ECHOPRT (line 386) | ECHOPRT = 0x20 constant EVFILT_AIO (line 387) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 388) | EVFILT_EXCEPT = -0x8 constant EVFILT_FS (line 389) | EVFILT_FS = -0xa constant EVFILT_MARKER (line 390) | EVFILT_MARKER = 0xf constant EVFILT_PROC (line 391) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 392) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 393) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 394) | EVFILT_SYSCOUNT = 0xa constant EVFILT_TIMER (line 395) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 396) | EVFILT_USER = -0x9 constant EVFILT_VNODE (line 397) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 398) | EVFILT_WRITE = -0x2 constant EV_ADD (line 399) | EV_ADD = 0x1 constant EV_CLEAR (line 400) | EV_CLEAR = 0x20 constant EV_DELETE (line 401) | EV_DELETE = 0x2 constant EV_DISABLE (line 402) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 403) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 404) | EV_ENABLE = 0x4 constant EV_EOF (line 405) | EV_EOF = 0x8000 constant EV_ERROR (line 406) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 407) | EV_FLAG1 = 0x2000 constant EV_HUP (line 408) | EV_HUP = 0x800 constant EV_NODATA (line 409) | EV_NODATA = 0x1000 constant EV_ONESHOT (line 410) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 411) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 412) | EV_SYSFLAGS = 0xf800 constant EXTA (line 413) | EXTA = 0x4b00 constant EXTB (line 414) | EXTB = 0x9600 constant EXTEXIT_LWP (line 415) | EXTEXIT_LWP = 0x10000 constant EXTEXIT_PROC (line 416) | EXTEXIT_PROC = 0x0 constant EXTEXIT_SETINT (line 417) | EXTEXIT_SETINT = 0x1 constant EXTEXIT_SIMPLE (line 418) | EXTEXIT_SIMPLE = 0x0 constant EXTPROC (line 419) | EXTPROC = 0x800 constant FD_CLOEXEC (line 420) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 421) | FD_SETSIZE = 0x400 constant FLUSHO (line 422) | FLUSHO = 0x800000 constant F_DUP2FD (line 423) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 424) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 425) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 426) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 427) | F_GETFD = 0x1 constant F_GETFL (line 428) | F_GETFL = 0x3 constant F_GETLK (line 429) | F_GETLK = 0x7 constant F_GETOWN (line 430) | F_GETOWN = 0x5 constant F_OK (line 431) | F_OK = 0x0 constant F_RDLCK (line 432) | F_RDLCK = 0x1 constant F_SETFD (line 433) | F_SETFD = 0x2 constant F_SETFL (line 434) | F_SETFL = 0x4 constant F_SETLK (line 435) | F_SETLK = 0x8 constant F_SETLKW (line 436) | F_SETLKW = 0x9 constant F_SETOWN (line 437) | F_SETOWN = 0x6 constant F_UNLCK (line 438) | F_UNLCK = 0x2 constant F_WRLCK (line 439) | F_WRLCK = 0x3 constant HUPCL (line 440) | HUPCL = 0x4000 constant HW_MACHINE (line 441) | HW_MACHINE = 0x1 constant ICANON (line 442) | ICANON = 0x100 constant ICMP6_FILTER (line 443) | ICMP6_FILTER = 0x12 constant ICRNL (line 444) | ICRNL = 0x100 constant IEXTEN (line 445) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 446) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 447) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 448) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 449) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 450) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 451) | IFF_CANTCHANGE = 0x318e72 constant IFF_DEBUG (line 452) | IFF_DEBUG = 0x4 constant IFF_IDIRECT (line 453) | IFF_IDIRECT = 0x200000 constant IFF_LINK0 (line 454) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 455) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 456) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 457) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 458) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 459) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 460) | IFF_NOARP = 0x80 constant IFF_NPOLLING (line 461) | IFF_NPOLLING = 0x100000 constant IFF_OACTIVE (line 462) | IFF_OACTIVE = 0x400 constant IFF_OACTIVE_COMPAT (line 463) | IFF_OACTIVE_COMPAT = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_POLLING (line 465) | IFF_POLLING = 0x10000 constant IFF_POLLING_COMPAT (line 466) | IFF_POLLING_COMPAT = 0x10000 constant IFF_PPROMISC (line 467) | IFF_PPROMISC = 0x20000 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_SMART (line 471) | IFF_SMART = 0x20 constant IFF_STATICARP (line 472) | IFF_STATICARP = 0x80000 constant IFF_UP (line 473) | IFF_UP = 0x1 constant IFNAMSIZ (line 474) | IFNAMSIZ = 0x10 constant IFT_1822 (line 475) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 476) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 477) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 478) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 479) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 480) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 481) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 482) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 483) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 484) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 485) | IFT_ASYNC = 0x54 constant IFT_ATM (line 486) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 487) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 488) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 489) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 490) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 491) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 492) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 493) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 494) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 495) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 496) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 497) | IFT_BSC = 0x53 constant IFT_CARP (line 498) | IFT_CARP = 0xf8 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_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_DVBASILN (line 518) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 519) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 520) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 521) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 522) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 523) | IFT_ENC = 0xf4 constant IFT_EON (line 524) | IFT_EON = 0x19 constant IFT_EPLRS (line 525) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 526) | IFT_ESCON = 0x49 constant IFT_ETHER (line 527) | IFT_ETHER = 0x6 constant IFT_FAST (line 528) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 529) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 530) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 531) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 532) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 533) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 534) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 535) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 536) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 537) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 538) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 539) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 540) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 541) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 542) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 543) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 544) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 545) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 546) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 547) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 548) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 549) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 550) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 551) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 552) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 553) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 554) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 555) | IFT_HSSI = 0x2e constant IFT_HY (line 556) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 557) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 558) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 559) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 560) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 561) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 562) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 563) | IFT_IFGSN = 0x91 constant IFT_IMT (line 564) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 565) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 566) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 567) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 568) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 569) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 570) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 571) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 572) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 573) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 574) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 575) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 576) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 577) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 578) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 579) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 580) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 581) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 582) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 583) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 584) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 585) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 586) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 587) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 588) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 589) | IFT_LAPB = 0x10 constant IFT_LAPD (line 590) | IFT_LAPD = 0x4d constant IFT_LAPF (line 591) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 592) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 593) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 594) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 595) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 596) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 597) | IFT_MODEM = 0x30 constant IFT_MPC (line 598) | IFT_MPC = 0x71 constant IFT_MPLS (line 599) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 600) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 601) | IFT_MSDSL = 0x8f constant IFT_MVL (line 602) | IFT_MVL = 0xbf constant IFT_MYRINET (line 603) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 604) | IFT_NFAS = 0xaf constant IFT_NSIP (line 605) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 606) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 607) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 608) | IFT_OTHER = 0x1 constant IFT_P10 (line 609) | IFT_P10 = 0xc constant IFT_P80 (line 610) | IFT_P80 = 0xd constant IFT_PARA (line 611) | IFT_PARA = 0x22 constant IFT_PFLOG (line 612) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 613) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 614) | IFT_PLC = 0xae constant IFT_POS (line 615) | IFT_POS = 0xab constant IFT_PPP (line 616) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 617) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 618) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 619) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 620) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 621) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 622) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 623) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 624) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 625) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 626) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 627) | IFT_PVC = 0xf1 constant IFT_QLLC (line 628) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 629) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 630) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 631) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 632) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 633) | IFT_RS232 = 0x21 constant IFT_RSRB (line 634) | IFT_RSRB = 0x4f constant IFT_SDLC (line 635) | IFT_SDLC = 0x11 constant IFT_SDSL (line 636) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 637) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 638) | IFT_SIP = 0x1f constant IFT_SLIP (line 639) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 640) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 641) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 642) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 643) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 644) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 645) | IFT_SONETVT = 0x33 constant IFT_SRP (line 646) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 647) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 648) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 649) | IFT_STARLAN = 0xb constant IFT_STF (line 650) | IFT_STF = 0xf3 constant IFT_T1 (line 651) | IFT_T1 = 0x12 constant IFT_TDLC (line 652) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 653) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 654) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 655) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 656) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 657) | IFT_ULTRA = 0x1d constant IFT_USB (line 658) | IFT_USB = 0xa0 constant IFT_V11 (line 659) | IFT_V11 = 0x40 constant IFT_V35 (line 660) | IFT_V35 = 0x2d constant IFT_V36 (line 661) | IFT_V36 = 0x41 constant IFT_V37 (line 662) | IFT_V37 = 0x78 constant IFT_VDSL (line 663) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 664) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 665) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 666) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 667) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 668) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 669) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 670) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 671) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 672) | IFT_X213 = 0x5d constant IFT_X25 (line 673) | IFT_X25 = 0x5 constant IFT_X25DDN (line 674) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 675) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 676) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 677) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 678) | IFT_XETHER = 0x1a constant IGNBRK (line 679) | IGNBRK = 0x1 constant IGNCR (line 680) | IGNCR = 0x80 constant IGNPAR (line 681) | IGNPAR = 0x4 constant IMAXBEL (line 682) | IMAXBEL = 0x2000 constant INLCR (line 683) | INLCR = 0x40 constant INPCK (line 684) | INPCK = 0x10 constant IN_CLASSA_HOST (line 685) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 686) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 687) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 688) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 689) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 690) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 691) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 692) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 693) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 694) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 695) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 696) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 697) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 698) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 699) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 700) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 701) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 702) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 703) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 704) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 705) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 706) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 707) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 708) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 709) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 710) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 711) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 712) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 713) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 714) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 715) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 716) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 717) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 718) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 719) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 720) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 721) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 722) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 723) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 724) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 725) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 726) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 727) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 728) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 729) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 730) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 731) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 732) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 733) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 734) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 735) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 736) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 737) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 738) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 739) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 740) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 741) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 742) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 743) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 744) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 745) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 746) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 747) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 748) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 749) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 750) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 751) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 752) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 753) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 754) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 755) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 756) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 757) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 758) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 759) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 760) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 761) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 762) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 763) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 764) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MTP (line 765) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 766) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 767) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 768) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 769) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 770) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 771) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 772) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 773) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 774) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 775) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 776) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 777) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 778) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 779) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 780) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 781) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 782) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 783) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 784) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 785) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 786) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 787) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 788) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SDRP (line 789) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 790) | IPPROTO_SEP = 0x21 constant IPPROTO_SKIP (line 791) | IPPROTO_SKIP = 0x39 constant IPPROTO_SRPC (line 792) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 793) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 794) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 795) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 796) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 797) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 798) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 799) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 800) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 801) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 802) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 803) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 804) | IPPROTO_UDP = 0x11 constant IPPROTO_UNKNOWN (line 805) | IPPROTO_UNKNOWN = 0x102 constant IPPROTO_VINES (line 806) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 807) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 808) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 809) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 810) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 811) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 812) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 813) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 814) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDV6ONLY (line 815) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 816) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 817) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 818) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 819) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 820) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 821) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWINFO_MASK (line 822) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 823) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 824) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 825) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 826) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 827) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 828) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 829) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 830) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 831) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 832) | IPV6_HOPOPTS = 0x31 constant IPV6_JOIN_GROUP (line 833) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 834) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 835) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 836) | IPV6_MAXPACKET = 0xffff constant IPV6_MINHLIM (line 837) | IPV6_MINHLIM = 0x28 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_PKTOPTIONS (line 846) | IPV6_PKTOPTIONS = 0x34 constant IPV6_PORTRANGE (line 847) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 848) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 849) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 850) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 851) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 852) | IPV6_RECVDSTOPTS = 0x28 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_RECVRTHDR (line 857) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 858) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 859) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 860) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 861) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 862) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 863) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 864) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 865) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 866) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 867) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 868) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 869) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 870) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 871) | IP_ADD_MEMBERSHIP = 0xc constant IP_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_DROP_MEMBERSHIP (line 875) | IP_DROP_MEMBERSHIP = 0xd constant IP_DUMMYNET_CONFIGURE (line 876) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 877) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 878) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 879) | IP_DUMMYNET_GET = 0x40 constant IP_FW_ADD (line 880) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 881) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 882) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 883) | IP_FW_GET = 0x36 constant IP_FW_RESETLOG (line 884) | IP_FW_RESETLOG = 0x37 constant IP_FW_TBL_ADD (line 885) | IP_FW_TBL_ADD = 0x2a constant IP_FW_TBL_CREATE (line 886) | IP_FW_TBL_CREATE = 0x28 constant IP_FW_TBL_DEL (line 887) | IP_FW_TBL_DEL = 0x2b constant IP_FW_TBL_DESTROY (line 888) | IP_FW_TBL_DESTROY = 0x29 constant IP_FW_TBL_EXPIRE (line 889) | IP_FW_TBL_EXPIRE = 0x2f constant IP_FW_TBL_FLUSH (line 890) | IP_FW_TBL_FLUSH = 0x2c constant IP_FW_TBL_GET (line 891) | IP_FW_TBL_GET = 0x2d constant IP_FW_TBL_ZERO (line 892) | IP_FW_TBL_ZERO = 0x2e constant IP_FW_X (line 893) | IP_FW_X = 0x31 constant IP_FW_ZERO (line 894) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 895) | IP_HDRINCL = 0x2 constant IP_MAXPACKET (line 896) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 897) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 898) | IP_MF = 0x2000 constant IP_MINTTL (line 899) | IP_MINTTL = 0x42 constant IP_MSS (line 900) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 901) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 902) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 903) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 904) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 905) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 906) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 907) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 908) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 909) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 910) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 911) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 912) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 913) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 914) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 915) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 916) | IP_RETOPTS = 0x8 constant IP_RF (line 917) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 918) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 919) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 920) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 921) | IP_RSVP_VIF_ON = 0x11 constant IP_TOS (line 922) | IP_TOS = 0x3 constant IP_TTL (line 923) | IP_TTL = 0x4 constant ISIG (line 924) | ISIG = 0x80 constant ISTRIP (line 925) | ISTRIP = 0x20 constant IXANY (line 926) | IXANY = 0x800 constant IXOFF (line 927) | IXOFF = 0x400 constant IXON (line 928) | IXON = 0x200 constant KERN_HOSTNAME (line 929) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 930) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 931) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 932) | KERN_VERSION = 0x4 constant LOCK_EX (line 933) | LOCK_EX = 0x2 constant LOCK_NB (line 934) | LOCK_NB = 0x4 constant LOCK_SH (line 935) | LOCK_SH = 0x1 constant LOCK_UN (line 936) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 937) | MADV_AUTOSYNC = 0x7 constant MADV_CONTROL_END (line 938) | MADV_CONTROL_END = 0xb constant MADV_CONTROL_START (line 939) | MADV_CONTROL_START = 0xa constant MADV_CORE (line 940) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 941) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 942) | MADV_FREE = 0x5 constant MADV_INVAL (line 943) | MADV_INVAL = 0xa constant MADV_NOCORE (line 944) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 945) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 946) | MADV_NOSYNC = 0x6 constant MADV_RANDOM (line 947) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 948) | MADV_SEQUENTIAL = 0x2 constant MADV_SETMAP (line 949) | MADV_SETMAP = 0xb constant MADV_WILLNEED (line 950) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 951) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 952) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 953) | MAP_COPY = 0x2 constant MAP_FILE (line 954) | MAP_FILE = 0x0 constant MAP_FIXED (line 955) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 956) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 957) | MAP_INHERIT = 0x80 constant MAP_NOCORE (line 958) | MAP_NOCORE = 0x20000 constant MAP_NOEXTEND (line 959) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 960) | MAP_NORESERVE = 0x40 constant MAP_NOSYNC (line 961) | MAP_NOSYNC = 0x800 constant MAP_PRIVATE (line 962) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 963) | MAP_RENAME = 0x20 constant MAP_SHARED (line 964) | MAP_SHARED = 0x1 constant MAP_SIZEALIGN (line 965) | MAP_SIZEALIGN = 0x40000 constant MAP_STACK (line 966) | MAP_STACK = 0x400 constant MAP_TRYFIXED (line 967) | MAP_TRYFIXED = 0x10000 constant MAP_VPAGETABLE (line 968) | MAP_VPAGETABLE = 0x2000 constant MCL_CURRENT (line 969) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 970) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 971) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 972) | MNT_AUTOMOUNTED = 0x20 constant MNT_CMDFLAGS (line 973) | MNT_CMDFLAGS = 0xf0000 constant MNT_DEFEXPORTED (line 974) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 975) | MNT_DELEXPORT = 0x20000 constant MNT_EXKERB (line 976) | MNT_EXKERB = 0x800 constant MNT_EXPORTANON (line 977) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 978) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 979) | MNT_EXPUBLIC = 0x20000000 constant MNT_EXRDONLY (line 980) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 981) | MNT_FORCE = 0x80000 constant MNT_IGNORE (line 982) | MNT_IGNORE = 0x800000 constant MNT_LAZY (line 983) | MNT_LAZY = 0x4 constant MNT_LOCAL (line 984) | MNT_LOCAL = 0x1000 constant MNT_NOATIME (line 985) | MNT_NOATIME = 0x10000000 constant MNT_NOCLUSTERR (line 986) | MNT_NOCLUSTERR = 0x40000000 constant MNT_NOCLUSTERW (line 987) | MNT_NOCLUSTERW = 0x80000000 constant MNT_NODEV (line 988) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 989) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 990) | MNT_NOSUID = 0x8 constant MNT_NOSYMFOLLOW (line 991) | MNT_NOSYMFOLLOW = 0x400000 constant MNT_NOWAIT (line 992) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 993) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 994) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 995) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 996) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 997) | MNT_SOFTDEP = 0x200000 constant MNT_SUIDDIR (line 998) | MNT_SUIDDIR = 0x100000 constant MNT_SYNCHRONOUS (line 999) | MNT_SYNCHRONOUS = 0x2 constant MNT_TRIM (line 1000) | MNT_TRIM = 0x1000000 constant MNT_UPDATE (line 1001) | MNT_UPDATE = 0x10000 constant MNT_USER (line 1002) | MNT_USER = 0x8000 constant MNT_VISFLAGMASK (line 1003) | MNT_VISFLAGMASK = 0xf1f0ffff constant MNT_WAIT (line 1004) | MNT_WAIT = 0x1 constant MSG_CMSG_CLOEXEC (line 1005) | MSG_CMSG_CLOEXEC = 0x1000 constant MSG_CTRUNC (line 1006) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1007) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1008) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1009) | MSG_EOF = 0x100 constant MSG_EOR (line 1010) | MSG_EOR = 0x8 constant MSG_FBLOCKING (line 1011) | MSG_FBLOCKING = 0x10000 constant MSG_FMASK (line 1012) | MSG_FMASK = 0xffff0000 constant MSG_FNONBLOCKING (line 1013) | MSG_FNONBLOCKING = 0x20000 constant MSG_NOSIGNAL (line 1014) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1015) | MSG_OOB = 0x1 constant MSG_PEEK (line 1016) | MSG_PEEK = 0x2 constant MSG_SYNC (line 1017) | MSG_SYNC = 0x800 constant MSG_TRUNC (line 1018) | MSG_TRUNC = 0x10 constant MSG_UNUSED09 (line 1019) | MSG_UNUSED09 = 0x200 constant MSG_WAITALL (line 1020) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1021) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1022) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1023) | MS_SYNC = 0x0 constant NAME_MAX (line 1024) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1025) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1026) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1027) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 1028) | NET_RT_MAXID = 0x4 constant NFDBITS (line 1029) | NFDBITS = 0x40 constant NOFLSH (line 1030) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1031) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1032) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1033) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1034) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1035) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1036) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1037) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1038) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1039) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1040) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1041) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1042) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1043) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 1044) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1045) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1046) | NOTE_LOWAT = 0x1 constant NOTE_OOB (line 1047) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 1048) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1049) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1050) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1051) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1052) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1053) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1054) | NOTE_TRIGGER = 0x1000000 constant NOTE_WRITE (line 1055) | NOTE_WRITE = 0x2 constant OCRNL (line 1056) | OCRNL = 0x10 constant ONLCR (line 1057) | ONLCR = 0x2 constant ONLRET (line 1058) | ONLRET = 0x40 constant ONOCR (line 1059) | ONOCR = 0x20 constant ONOEOT (line 1060) | ONOEOT = 0x8 constant OPOST (line 1061) | OPOST = 0x1 constant OXTABS (line 1062) | OXTABS = 0x4 constant O_ACCMODE (line 1063) | O_ACCMODE = 0x3 constant O_APPEND (line 1064) | O_APPEND = 0x8 constant O_ASYNC (line 1065) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1066) | O_CLOEXEC = 0x20000 constant O_CREAT (line 1067) | O_CREAT = 0x200 constant O_DIRECT (line 1068) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1069) | O_DIRECTORY = 0x8000000 constant O_EXCL (line 1070) | O_EXCL = 0x800 constant O_EXLOCK (line 1071) | O_EXLOCK = 0x20 constant O_FAPPEND (line 1072) | O_FAPPEND = 0x100000 constant O_FASYNCWRITE (line 1073) | O_FASYNCWRITE = 0x800000 constant O_FBLOCKING (line 1074) | O_FBLOCKING = 0x40000 constant O_FMASK (line 1075) | O_FMASK = 0xfc0000 constant O_FNONBLOCKING (line 1076) | O_FNONBLOCKING = 0x80000 constant O_FOFFSET (line 1077) | O_FOFFSET = 0x200000 constant O_FSYNC (line 1078) | O_FSYNC = 0x80 constant O_FSYNCWRITE (line 1079) | O_FSYNCWRITE = 0x400000 constant O_NDELAY (line 1080) | O_NDELAY = 0x4 constant O_NOCTTY (line 1081) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1082) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1083) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1084) | O_RDONLY = 0x0 constant O_RDWR (line 1085) | O_RDWR = 0x2 constant O_SHLOCK (line 1086) | O_SHLOCK = 0x10 constant O_SYNC (line 1087) | O_SYNC = 0x80 constant O_TRUNC (line 1088) | O_TRUNC = 0x400 constant O_WRONLY (line 1089) | O_WRONLY = 0x1 constant PARENB (line 1090) | PARENB = 0x1000 constant PARMRK (line 1091) | PARMRK = 0x8 constant PARODD (line 1092) | PARODD = 0x2000 constant PENDIN (line 1093) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1094) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1095) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1096) | PRIO_USER = 0x2 constant PROT_EXEC (line 1097) | PROT_EXEC = 0x4 constant PROT_NONE (line 1098) | PROT_NONE = 0x0 constant PROT_READ (line 1099) | PROT_READ = 0x1 constant PROT_WRITE (line 1100) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1101) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1102) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1103) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1104) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1105) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1106) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1107) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1108) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1109) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1110) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1111) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1112) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1113) | RTAX_BRD = 0x7 constant RTAX_DST (line 1114) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1115) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1116) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1117) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1118) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1119) | RTAX_MAX = 0xb constant RTAX_MPLS1 (line 1120) | RTAX_MPLS1 = 0x8 constant RTAX_MPLS2 (line 1121) | RTAX_MPLS2 = 0x9 constant RTAX_MPLS3 (line 1122) | RTAX_MPLS3 = 0xa constant RTAX_NETMASK (line 1123) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1124) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1125) | RTA_BRD = 0x80 constant RTA_DST (line 1126) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1127) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1128) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1129) | RTA_IFA = 0x20 constant RTA_IFP (line 1130) | RTA_IFP = 0x10 constant RTA_MPLS1 (line 1131) | RTA_MPLS1 = 0x100 constant RTA_MPLS2 (line 1132) | RTA_MPLS2 = 0x200 constant RTA_MPLS3 (line 1133) | RTA_MPLS3 = 0x400 constant RTA_NETMASK (line 1134) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1135) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1136) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 1137) | RTF_CLONING = 0x100 constant RTF_DONE (line 1138) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1139) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1140) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1141) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1142) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1143) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1144) | RTF_MODIFIED = 0x20 constant RTF_MPLSOPS (line 1145) | RTF_MPLSOPS = 0x1000000 constant RTF_MULTICAST (line 1146) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1147) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1148) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1149) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1150) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1151) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1152) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1153) | RTF_STATIC = 0x800 constant RTF_UP (line 1154) | RTF_UP = 0x1 constant RTF_WASCLONED (line 1155) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 1156) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1157) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1158) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1159) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1160) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1161) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1162) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1163) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1164) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1165) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1166) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1167) | RTM_LOSING = 0x5 constant RTM_MISS (line 1168) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1169) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1170) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1171) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1172) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1173) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1174) | RTM_VERSION = 0x7 constant RTV_EXPIRE (line 1175) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1176) | RTV_HOPCOUNT = 0x2 constant RTV_IWCAPSEGS (line 1177) | RTV_IWCAPSEGS = 0x400 constant RTV_IWMAXSEGS (line 1178) | RTV_IWMAXSEGS = 0x200 constant RTV_MSL (line 1179) | RTV_MSL = 0x100 constant RTV_MTU (line 1180) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1181) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1182) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1183) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1184) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1185) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1186) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1187) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1188) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1189) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1190) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1191) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1192) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1193) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1194) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1195) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1196) | SIOCAIFGROUP = 0x80286987 constant SIOCALIFADDR (line 1197) | SIOCALIFADDR = 0x8118691b constant SIOCATMARK (line 1198) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1199) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1200) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1201) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1202) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1203) | SIOCDLIFADDR = 0x8118691d constant SIOCGDRVSPEC (line 1204) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1205) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1206) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1207) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1208) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALIAS (line 1209) | SIOCGIFALIAS = 0xc0406929 constant SIOCGIFBRDADDR (line 1210) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1211) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1212) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1213) | SIOCGIFDATA = 0xc0206926 constant SIOCGIFDSTADDR (line 1214) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1215) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1216) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1217) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1218) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFINDEX (line 1219) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMEDIA (line 1220) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1221) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1222) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1223) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1224) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1225) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPOLLCPU (line 1226) | SIOCGIFPOLLCPU = 0xc020697e constant SIOCGIFPSRCADDR (line 1227) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1228) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFTSOLEN (line 1229) | SIOCGIFTSOLEN = 0xc0206980 constant SIOCGLIFADDR (line 1230) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 1231) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLOWAT (line 1232) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1233) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1234) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1235) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCIFCREATE (line 1236) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1237) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1238) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1239) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1240) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1241) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1242) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1243) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1244) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDSTADDR (line 1245) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1246) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1247) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1248) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMEDIA (line 1249) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1250) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1251) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1252) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1253) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1254) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1255) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFPOLLCPU (line 1256) | SIOCSIFPOLLCPU = 0x8020697d constant SIOCSIFTSOLEN (line 1257) | SIOCSIFTSOLEN = 0x8020697f constant SIOCSLIFPHYADDR (line 1258) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLOWAT (line 1259) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1260) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 1261) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1262) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1263) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1264) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1265) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1266) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1267) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1268) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1269) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1270) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1271) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1272) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1273) | SO_BROADCAST = 0x20 constant SO_CPUHINT (line 1274) | SO_CPUHINT = 0x1030 constant SO_DEBUG (line 1275) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1276) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1277) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1278) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1279) | SO_LINGER = 0x80 constant SO_NOSIGPIPE (line 1280) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1281) | SO_OOBINLINE = 0x100 constant SO_RCVBUF (line 1282) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1283) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1284) | SO_RCVTIMEO = 0x1006 constant SO_RERROR (line 1285) | SO_RERROR = 0x2000 constant SO_REUSEADDR (line 1286) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1287) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1288) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1289) | SO_SNDLOWAT = 0x1003 constant SO_SNDSPACE (line 1290) | SO_SNDSPACE = 0x100a constant SO_SNDTIMEO (line 1291) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1292) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1293) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1294) | SO_USELOOPBACK = 0x40 constant S_BLKSIZE (line 1295) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1296) | S_IEXEC = 0x40 constant S_IFBLK (line 1297) | S_IFBLK = 0x6000 constant S_IFCHR (line 1298) | S_IFCHR = 0x2000 constant S_IFDB (line 1299) | S_IFDB = 0x9000 constant S_IFDIR (line 1300) | S_IFDIR = 0x4000 constant S_IFIFO (line 1301) | S_IFIFO = 0x1000 constant S_IFLNK (line 1302) | S_IFLNK = 0xa000 constant S_IFMT (line 1303) | S_IFMT = 0xf000 constant S_IFREG (line 1304) | S_IFREG = 0x8000 constant S_IFSOCK (line 1305) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1306) | S_IFWHT = 0xe000 constant S_IREAD (line 1307) | S_IREAD = 0x100 constant S_IRGRP (line 1308) | S_IRGRP = 0x20 constant S_IROTH (line 1309) | S_IROTH = 0x4 constant S_IRUSR (line 1310) | S_IRUSR = 0x100 constant S_IRWXG (line 1311) | S_IRWXG = 0x38 constant S_IRWXO (line 1312) | S_IRWXO = 0x7 constant S_IRWXU (line 1313) | S_IRWXU = 0x1c0 constant S_ISGID (line 1314) | S_ISGID = 0x400 constant S_ISTXT (line 1315) | S_ISTXT = 0x200 constant S_ISUID (line 1316) | S_ISUID = 0x800 constant S_ISVTX (line 1317) | S_ISVTX = 0x200 constant S_IWGRP (line 1318) | S_IWGRP = 0x10 constant S_IWOTH (line 1319) | S_IWOTH = 0x2 constant S_IWRITE (line 1320) | S_IWRITE = 0x80 constant S_IWUSR (line 1321) | S_IWUSR = 0x80 constant S_IXGRP (line 1322) | S_IXGRP = 0x8 constant S_IXOTH (line 1323) | S_IXOTH = 0x1 constant S_IXUSR (line 1324) | S_IXUSR = 0x40 constant TAB0 (line 1325) | TAB0 = 0x0 constant TAB3 (line 1326) | TAB3 = 0x4 constant TABDLY (line 1327) | TABDLY = 0x4 constant TCIFLUSH (line 1328) | TCIFLUSH = 0x1 constant TCIOFF (line 1329) | TCIOFF = 0x3 constant TCIOFLUSH (line 1330) | TCIOFLUSH = 0x3 constant TCION (line 1331) | TCION = 0x4 constant TCOFLUSH (line 1332) | TCOFLUSH = 0x2 constant TCOOFF (line 1333) | TCOOFF = 0x1 constant TCOON (line 1334) | TCOON = 0x2 constant TCP_FASTKEEP (line 1335) | TCP_FASTKEEP = 0x80 constant TCP_KEEPCNT (line 1336) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1337) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1338) | TCP_KEEPINIT = 0x20 constant TCP_KEEPINTVL (line 1339) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1340) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1341) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1342) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1343) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1344) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1345) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1346) | TCP_MINMSS = 0x100 constant TCP_MIN_WINSHIFT (line 1347) | TCP_MIN_WINSHIFT = 0x5 constant TCP_MSS (line 1348) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1349) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1350) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1351) | TCP_NOPUSH = 0x4 constant TCP_SIGNATURE_ENABLE (line 1352) | TCP_SIGNATURE_ENABLE = 0x10 constant TCSAFLUSH (line 1353) | TCSAFLUSH = 0x2 constant TIMER_ABSTIME (line 1354) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1355) | TIMER_RELTIME = 0x0 constant TIOCCBRK (line 1356) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1357) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1358) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1359) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1360) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1361) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1362) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1363) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1364) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1365) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1366) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1367) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1368) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1369) | TIOCGWINSZ = 0x40087468 constant TIOCISPTMASTER (line 1370) | TIOCISPTMASTER = 0x20007455 constant TIOCMBIC (line 1371) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1372) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1373) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1374) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1375) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1376) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1377) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1378) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1379) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1380) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1381) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1382) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1383) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1384) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1385) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1386) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1387) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1388) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1389) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1390) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1391) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1392) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1393) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1394) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1395) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1396) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1397) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1398) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1399) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1400) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1401) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1402) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1403) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1404) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1405) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1406) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1407) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1408) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1409) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1410) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1411) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1412) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1413) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1414) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1415) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1416) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1417) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1418) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1419) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1420) | TOSTOP = 0x400000 constant UTIME_NOW (line 1421) | UTIME_NOW = -0x1 constant UTIME_OMIT (line 1422) | UTIME_OMIT = -0x2 constant VCHECKPT (line 1423) | VCHECKPT = 0x13 constant VDISCARD (line 1424) | VDISCARD = 0xf constant VDSUSP (line 1425) | VDSUSP = 0xb constant VEOF (line 1426) | VEOF = 0x0 constant VEOL (line 1427) | VEOL = 0x1 constant VEOL2 (line 1428) | VEOL2 = 0x2 constant VERASE (line 1429) | VERASE = 0x3 constant VERASE2 (line 1430) | VERASE2 = 0x7 constant VINTR (line 1431) | VINTR = 0x8 constant VKILL (line 1432) | VKILL = 0x5 constant VLNEXT (line 1433) | VLNEXT = 0xe constant VMIN (line 1434) | VMIN = 0x10 constant VM_BCACHE_SIZE_MAX (line 1435) | VM_BCACHE_SIZE_MAX = 0x0 constant VM_SWZONE_SIZE_MAX (line 1436) | VM_SWZONE_SIZE_MAX = 0x4000000000 constant VQUIT (line 1437) | VQUIT = 0x9 constant VREPRINT (line 1438) | VREPRINT = 0x6 constant VSTART (line 1439) | VSTART = 0xc constant VSTATUS (line 1440) | VSTATUS = 0x12 constant VSTOP (line 1441) | VSTOP = 0xd constant VSUSP (line 1442) | VSUSP = 0xa constant VTIME (line 1443) | VTIME = 0x11 constant VWERASE (line 1444) | VWERASE = 0x4 constant WCONTINUED (line 1445) | WCONTINUED = 0x4 constant WCOREFLAG (line 1446) | WCOREFLAG = 0x80 constant WEXITED (line 1447) | WEXITED = 0x10 constant WLINUXCLONE (line 1448) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1449) | WNOHANG = 0x1 constant WNOWAIT (line 1450) | WNOWAIT = 0x8 constant WSTOPPED (line 1451) | WSTOPPED = 0x2 constant WTRAPPED (line 1452) | WTRAPPED = 0x20 constant WUNTRACED (line 1453) | WUNTRACED = 0x2 constant E2BIG (line 1458) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1459) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1460) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1461) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1462) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1463) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1464) | EALREADY = syscall.Errno(0x25) constant EASYNC (line 1465) | EASYNC = syscall.Errno(0x63) constant EAUTH (line 1466) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1467) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1468) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1469) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1470) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1471) | ECANCELED = syscall.Errno(0x55) constant ECHILD (line 1472) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1473) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1474) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1475) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1476) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1477) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1478) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1479) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1480) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1481) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1482) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1483) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1484) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1485) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1486) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1487) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1488) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1489) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1490) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1491) | EINVAL = syscall.Errno(0x16) constant EIO (line 1492) | EIO = syscall.Errno(0x5) constant EISCONN (line 1493) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1494) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1495) | ELAST = syscall.Errno(0x63) constant ELOOP (line 1496) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1497) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1498) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1499) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1500) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1501) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1502) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1503) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1504) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1505) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1506) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1507) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1508) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1509) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1510) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1511) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1512) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1513) | ENOLINK = syscall.Errno(0x5b) constant ENOMEDIUM (line 1514) | ENOMEDIUM = syscall.Errno(0x5d) constant ENOMEM (line 1515) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1516) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1517) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1518) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1519) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1520) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1521) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1522) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1523) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1524) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1525) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1526) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1527) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1528) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1529) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1530) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1531) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1532) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1533) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1534) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1535) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1536) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1537) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1538) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1539) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1540) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1541) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1542) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1543) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1544) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1545) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1546) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1547) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1548) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1549) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1550) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1551) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1552) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1553) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1554) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1559) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1560) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1561) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1562) | SIGCHLD = syscall.Signal(0x14) constant SIGCKPT (line 1563) | SIGCKPT = syscall.Signal(0x21) constant SIGCKPTEXIT (line 1564) | SIGCKPTEXIT = syscall.Signal(0x22) constant SIGCONT (line 1565) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1566) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1567) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1568) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1569) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1570) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1571) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1572) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1573) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1574) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1575) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1576) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1577) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1578) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1579) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1580) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1581) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1582) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1583) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1584) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1585) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1586) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1587) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1588) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1589) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1590) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1591) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1592) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1593) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x23 constant AF_ATM (line 17) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 18) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 19) | AF_CCITT = 0xa constant AF_CHAOS (line 20) | AF_CHAOS = 0x5 constant AF_CNT (line 21) | AF_CNT = 0x15 constant AF_COIP (line 22) | AF_COIP = 0x14 constant AF_DATAKIT (line 23) | AF_DATAKIT = 0x9 constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_DLI (line 25) | AF_DLI = 0xd constant AF_E164 (line 26) | AF_E164 = 0x1a constant AF_ECMA (line 27) | AF_ECMA = 0x8 constant AF_HYLINK (line 28) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 29) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 30) | AF_IMPLINK = 0x3 constant AF_INET (line 31) | AF_INET = 0x2 constant AF_INET6 (line 32) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 33) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 34) | AF_INET_SDP = 0x28 constant AF_IPX (line 35) | AF_IPX = 0x17 constant AF_ISDN (line 36) | AF_ISDN = 0x1a constant AF_ISO (line 37) | AF_ISO = 0x7 constant AF_LAT (line 38) | AF_LAT = 0xe constant AF_LINK (line 39) | AF_LINK = 0x12 constant AF_LOCAL (line 40) | AF_LOCAL = 0x1 constant AF_MAX (line 41) | AF_MAX = 0x2a constant AF_NATM (line 42) | AF_NATM = 0x1d constant AF_NETBIOS (line 43) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 44) | AF_NETGRAPH = 0x20 constant AF_OSI (line 45) | AF_OSI = 0x7 constant AF_PUP (line 46) | AF_PUP = 0x4 constant AF_ROUTE (line 47) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 48) | AF_SCLUSTER = 0x22 constant AF_SIP (line 49) | AF_SIP = 0x18 constant AF_SLOW (line 50) | AF_SLOW = 0x21 constant AF_SNA (line 51) | AF_SNA = 0xb constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 54) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 55) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 56) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 57) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 58) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 59) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 60) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 61) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 62) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 63) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 64) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 65) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 66) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 67) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 68) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 69) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 70) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 71) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 72) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 73) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 74) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 75) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 76) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 77) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 78) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 79) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 80) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 81) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 82) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 83) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 84) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 85) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 86) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 87) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 88) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 89) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 90) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 91) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 92) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 93) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 94) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 95) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 96) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 97) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 98) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 99) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 100) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 101) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 102) | ALTWERASE = 0x200 constant B0 (line 103) | B0 = 0x0 constant B110 (line 104) | B110 = 0x6e constant B115200 (line 105) | B115200 = 0x1c200 constant B1200 (line 106) | B1200 = 0x4b0 constant B134 (line 107) | B134 = 0x86 constant B14400 (line 108) | B14400 = 0x3840 constant B150 (line 109) | B150 = 0x96 constant B1800 (line 110) | B1800 = 0x708 constant B19200 (line 111) | B19200 = 0x4b00 constant B200 (line 112) | B200 = 0xc8 constant B230400 (line 113) | B230400 = 0x38400 constant B2400 (line 114) | B2400 = 0x960 constant B28800 (line 115) | B28800 = 0x7080 constant B300 (line 116) | B300 = 0x12c constant B38400 (line 117) | B38400 = 0x9600 constant B460800 (line 118) | B460800 = 0x70800 constant B4800 (line 119) | B4800 = 0x12c0 constant B50 (line 120) | B50 = 0x32 constant B57600 (line 121) | B57600 = 0xe100 constant B600 (line 122) | B600 = 0x258 constant B7200 (line 123) | B7200 = 0x1c20 constant B75 (line 124) | B75 = 0x4b constant B76800 (line 125) | B76800 = 0x12c00 constant B921600 (line 126) | B921600 = 0xe1000 constant B9600 (line 127) | B9600 = 0x2580 constant BIOCFEEDBACK (line 128) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 129) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 130) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 131) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 132) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 133) | BIOCGDLTLIST = 0xc0084279 constant BIOCGETBUFMODE (line 134) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 135) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 136) | BIOCGETZMAX = 0x4004427f constant BIOCGHDRCMPLT (line 137) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 138) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 139) | BIOCGRTIMEOUT = 0x4008426e constant BIOCGSEESENT (line 140) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 141) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 142) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 143) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 144) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 145) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 146) | BIOCROTZBUF = 0x400c4280 constant BIOCSBLEN (line 147) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 148) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 149) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 150) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 151) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 152) | BIOCSETFNR = 0x80084282 constant BIOCSETIF (line 153) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 154) | BIOCSETWF = 0x8008427b constant BIOCSETZBUF (line 155) | BIOCSETZBUF = 0x800c4281 constant BIOCSHDRCMPLT (line 156) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 157) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 158) | BIOCSRTIMEOUT = 0x8008426d constant BIOCSSEESENT (line 159) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 160) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 161) | BIOCVERSION = 0x40044271 constant BPF_A (line 162) | BPF_A = 0x10 constant BPF_ABS (line 163) | BPF_ABS = 0x20 constant BPF_ADD (line 164) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 165) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 166) | BPF_ALU = 0x4 constant BPF_AND (line 167) | BPF_AND = 0x50 constant BPF_B (line 168) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 169) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 170) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 171) | BPF_DIV = 0x30 constant BPF_H (line 172) | BPF_H = 0x8 constant BPF_IMM (line 173) | BPF_IMM = 0x0 constant BPF_IND (line 174) | BPF_IND = 0x40 constant BPF_JA (line 175) | BPF_JA = 0x0 constant BPF_JEQ (line 176) | BPF_JEQ = 0x10 constant BPF_JGE (line 177) | BPF_JGE = 0x30 constant BPF_JGT (line 178) | BPF_JGT = 0x20 constant BPF_JMP (line 179) | BPF_JMP = 0x5 constant BPF_JSET (line 180) | BPF_JSET = 0x40 constant BPF_K (line 181) | BPF_K = 0x0 constant BPF_LD (line 182) | BPF_LD = 0x0 constant BPF_LDX (line 183) | BPF_LDX = 0x1 constant BPF_LEN (line 184) | BPF_LEN = 0x80 constant BPF_LSH (line 185) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 186) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 187) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 188) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 189) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 190) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 191) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 192) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 193) | BPF_MISC = 0x7 constant BPF_MOD (line 194) | BPF_MOD = 0x90 constant BPF_MSH (line 195) | BPF_MSH = 0xa0 constant BPF_MUL (line 196) | BPF_MUL = 0x20 constant BPF_NEG (line 197) | BPF_NEG = 0x80 constant BPF_OR (line 198) | BPF_OR = 0x40 constant BPF_RELEASE (line 199) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 200) | BPF_RET = 0x6 constant BPF_RSH (line 201) | BPF_RSH = 0x70 constant BPF_ST (line 202) | BPF_ST = 0x2 constant BPF_STX (line 203) | BPF_STX = 0x3 constant BPF_SUB (line 204) | BPF_SUB = 0x10 constant BPF_TAX (line 205) | BPF_TAX = 0x0 constant BPF_TXA (line 206) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 207) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 208) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 209) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 210) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 211) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 212) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 213) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 214) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 215) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 216) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 217) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 218) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 219) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 220) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 221) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 222) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 223) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 224) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 225) | BPF_T_NORMAL = 0x0 constant BPF_W (line 226) | BPF_W = 0x0 constant BPF_X (line 227) | BPF_X = 0x8 constant BPF_XOR (line 228) | BPF_XOR = 0xa0 constant BRKINT (line 229) | BRKINT = 0x2 constant CAP_ACCEPT (line 230) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 231) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 232) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 233) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 234) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 235) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 236) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 237) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 238) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 239) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 240) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 241) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 242) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 243) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 244) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 245) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 246) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 247) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 248) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 249) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 250) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 251) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 252) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 253) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 254) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 255) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 256) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 257) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 258) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 259) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 260) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 261) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 262) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 263) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 264) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 265) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 266) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 267) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 268) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 269) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 270) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 271) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 272) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 273) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 274) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 275) | CAP_IOCTLS_ALL = 0x7fffffff constant CAP_KQUEUE (line 276) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 277) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 278) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 279) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 280) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 281) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 282) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 283) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 284) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 285) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 286) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 287) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 288) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 289) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 290) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 291) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 292) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 293) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 294) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 295) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 296) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 297) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 298) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 299) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 300) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 301) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 302) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 303) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 304) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 305) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 306) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 307) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 308) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 309) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 310) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 311) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 312) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 313) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 314) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 315) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 316) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 317) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 318) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 319) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 320) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 321) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 322) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 323) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 324) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 325) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 326) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 327) | CFLUSH = 0xf constant CLOCAL (line 328) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 329) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 330) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 331) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 332) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 333) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 334) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 335) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 336) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 337) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 338) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 339) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 340) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 341) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 342) | CLOCK_VIRTUAL = 0x1 constant CPUSTATES (line 343) | CPUSTATES = 0x5 constant CP_IDLE (line 344) | CP_IDLE = 0x4 constant CP_INTR (line 345) | CP_INTR = 0x3 constant CP_NICE (line 346) | CP_NICE = 0x1 constant CP_SYS (line 347) | CP_SYS = 0x2 constant CP_USER (line 348) | CP_USER = 0x0 constant CREAD (line 349) | CREAD = 0x800 constant CRTSCTS (line 350) | CRTSCTS = 0x30000 constant CS5 (line 351) | CS5 = 0x0 constant CS6 (line 352) | CS6 = 0x100 constant CS7 (line 353) | CS7 = 0x200 constant CS8 (line 354) | CS8 = 0x300 constant CSIZE (line 355) | CSIZE = 0x300 constant CSTART (line 356) | CSTART = 0x11 constant CSTATUS (line 357) | CSTATUS = 0x14 constant CSTOP (line 358) | CSTOP = 0x13 constant CSTOPB (line 359) | CSTOPB = 0x400 constant CSUSP (line 360) | CSUSP = 0x1a constant CTL_HW (line 361) | CTL_HW = 0x6 constant CTL_KERN (line 362) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 363) | CTL_MAXNAME = 0x18 constant CTL_NET (line 364) | CTL_NET = 0x4 constant DIOCGATTR (line 365) | DIOCGATTR = 0xc144648e constant DIOCGDELETE (line 366) | DIOCGDELETE = 0x80106488 constant DIOCGFLUSH (line 367) | DIOCGFLUSH = 0x20006487 constant DIOCGFRONTSTUFF (line 368) | DIOCGFRONTSTUFF = 0x40086486 constant DIOCGFWHEADS (line 369) | DIOCGFWHEADS = 0x40046483 constant DIOCGFWSECTORS (line 370) | DIOCGFWSECTORS = 0x40046482 constant DIOCGIDENT (line 371) | DIOCGIDENT = 0x41006489 constant DIOCGMEDIASIZE (line 372) | DIOCGMEDIASIZE = 0x40086481 constant DIOCGPHYSPATH (line 373) | DIOCGPHYSPATH = 0x4400648d constant DIOCGPROVIDERNAME (line 374) | DIOCGPROVIDERNAME = 0x4400648a constant DIOCGSECTORSIZE (line 375) | DIOCGSECTORSIZE = 0x40046480 constant DIOCGSTRIPEOFFSET (line 376) | DIOCGSTRIPEOFFSET = 0x4008648c constant DIOCGSTRIPESIZE (line 377) | DIOCGSTRIPESIZE = 0x4008648b constant DIOCSKERNELDUMP (line 378) | DIOCSKERNELDUMP = 0x804c6490 constant DIOCSKERNELDUMP_FREEBSD11 (line 379) | DIOCSKERNELDUMP_FREEBSD11 = 0x80046485 constant DIOCZONECMD (line 380) | DIOCZONECMD = 0xc06c648f constant DLT_A429 (line 381) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 382) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 383) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 384) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 385) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 386) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 387) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 388) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 389) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 390) | DLT_AURORA = 0x7e constant DLT_AX25 (line 391) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 392) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 393) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 394) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 395) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 396) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 397) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 398) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 399) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 400) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 401) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 402) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 403) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 404) | DLT_CISCO_IOS = 0x76 constant DLT_CLASS_NETBSD_RAWAF (line 405) | DLT_CLASS_NETBSD_RAWAF = 0x2240000 constant DLT_C_HDLC (line 406) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 407) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 408) | DLT_DBUS = 0xe7 constant DLT_DECT (line 409) | DLT_DECT = 0xdd constant DLT_DISPLAYPORT_AUX (line 410) | DLT_DISPLAYPORT_AUX = 0x113 constant DLT_DOCSIS (line 411) | DLT_DOCSIS = 0x8f constant DLT_DOCSIS31_XRA31 (line 412) | DLT_DOCSIS31_XRA31 = 0x111 constant DLT_DVB_CI (line 413) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 414) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 415) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 416) | DLT_EN3MB = 0x2 constant DLT_ENC (line 417) | DLT_ENC = 0x6d constant DLT_EPON (line 418) | DLT_EPON = 0x103 constant DLT_ERF (line 419) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 420) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 421) | DLT_ERF_POS = 0xb0 constant DLT_ETHERNET_MPACKET (line 422) | DLT_ETHERNET_MPACKET = 0x112 constant DLT_FC_2 (line 423) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 424) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 425) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 426) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 427) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 428) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 429) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 430) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 431) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 432) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 433) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 434) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 435) | DLT_GSMTAP_UM = 0xd9 constant DLT_IBM_SN (line 436) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 437) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 438) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 439) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 440) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 441) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 442) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 443) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 444) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 445) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 446) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 447) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 448) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 449) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 450) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 451) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 452) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 453) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 454) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 455) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 456) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 457) | DLT_IP_OVER_FC = 0x7a constant DLT_ISO_14443 (line 458) | DLT_ISO_14443 = 0x108 constant DLT_JUNIPER_ATM1 (line 459) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 460) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 461) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 462) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 463) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 464) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 465) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 466) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 467) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 468) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 469) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 470) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 471) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 472) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 473) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 474) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 475) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 476) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 477) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 478) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 479) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 480) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 481) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 482) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 483) | DLT_LAPD = 0xcb constant DLT_LIN (line 484) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 485) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 486) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 487) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 488) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 489) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 490) | DLT_LOOP = 0x6c constant DLT_LORATAP (line 491) | DLT_LORATAP = 0x10e constant DLT_LTALK (line 492) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 493) | DLT_MATCHING_MAX = 0x113 constant DLT_MATCHING_MIN (line 494) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 495) | DLT_MFR = 0xb6 constant DLT_MOST (line 496) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 497) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 498) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 499) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 500) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 501) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 502) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 503) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 504) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 505) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 506) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 507) | DLT_NFLOG = 0xef constant DLT_NG40 (line 508) | DLT_NG40 = 0xf4 constant DLT_NORDIC_BLE (line 509) | DLT_NORDIC_BLE = 0x110 constant DLT_NULL (line 510) | DLT_NULL = 0x0 constant DLT_OPENFLOW (line 511) | DLT_OPENFLOW = 0x10b constant DLT_PCI_EXP (line 512) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 513) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 514) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 515) | DLT_PKTAP = 0x102 constant DLT_PPI (line 516) | DLT_PPI = 0xc0 constant DLT_PPP (line 517) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 518) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 519) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 520) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 521) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 522) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 523) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 524) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 525) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 526) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 527) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 528) | DLT_RAW = 0xc constant DLT_RDS (line 529) | DLT_RDS = 0x109 constant DLT_REDBACK_SMARTEDGE (line 530) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 531) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 532) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 533) | DLT_SCCP = 0x8e constant DLT_SCTP (line 534) | DLT_SCTP = 0xf8 constant DLT_SDLC (line 535) | DLT_SDLC = 0x10c constant DLT_SITA (line 536) | DLT_SITA = 0xc4 constant DLT_SLIP (line 537) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 538) | DLT_SLIP_BSDOS = 0xd constant DLT_STANAG_5066_D_PDU (line 539) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 540) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 541) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TI_LLN_SNIFFER (line 542) | DLT_TI_LLN_SNIFFER = 0x10d constant DLT_TZSP (line 543) | DLT_TZSP = 0x80 constant DLT_USB (line 544) | DLT_USB = 0xba constant DLT_USBPCAP (line 545) | DLT_USBPCAP = 0xf9 constant DLT_USB_DARWIN (line 546) | DLT_USB_DARWIN = 0x10a constant DLT_USB_FREEBSD (line 547) | DLT_USB_FREEBSD = 0xba constant DLT_USB_LINUX (line 548) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 549) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 550) | DLT_USER0 = 0x93 constant DLT_USER1 (line 551) | DLT_USER1 = 0x94 constant DLT_USER10 (line 552) | DLT_USER10 = 0x9d constant DLT_USER11 (line 553) | DLT_USER11 = 0x9e constant DLT_USER12 (line 554) | DLT_USER12 = 0x9f constant DLT_USER13 (line 555) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 556) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 557) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 558) | DLT_USER2 = 0x95 constant DLT_USER3 (line 559) | DLT_USER3 = 0x96 constant DLT_USER4 (line 560) | DLT_USER4 = 0x97 constant DLT_USER5 (line 561) | DLT_USER5 = 0x98 constant DLT_USER6 (line 562) | DLT_USER6 = 0x99 constant DLT_USER7 (line 563) | DLT_USER7 = 0x9a constant DLT_USER8 (line 564) | DLT_USER8 = 0x9b constant DLT_USER9 (line 565) | DLT_USER9 = 0x9c constant DLT_VSOCK (line 566) | DLT_VSOCK = 0x10f constant DLT_WATTSTOPPER_DLM (line 567) | DLT_WATTSTOPPER_DLM = 0x107 constant DLT_WIHART (line 568) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 569) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 570) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 571) | DLT_X2E_XORAYA = 0xd6 constant DLT_ZWAVE_R1_R2 (line 572) | DLT_ZWAVE_R1_R2 = 0x105 constant DLT_ZWAVE_R3 (line 573) | DLT_ZWAVE_R3 = 0x106 constant DT_BLK (line 574) | DT_BLK = 0x6 constant DT_CHR (line 575) | DT_CHR = 0x2 constant DT_DIR (line 576) | DT_DIR = 0x4 constant DT_FIFO (line 577) | DT_FIFO = 0x1 constant DT_LNK (line 578) | DT_LNK = 0xa constant DT_REG (line 579) | DT_REG = 0x8 constant DT_SOCK (line 580) | DT_SOCK = 0xc constant DT_UNKNOWN (line 581) | DT_UNKNOWN = 0x0 constant DT_WHT (line 582) | DT_WHT = 0xe constant ECHO (line 583) | ECHO = 0x8 constant ECHOCTL (line 584) | ECHOCTL = 0x40 constant ECHOE (line 585) | ECHOE = 0x2 constant ECHOK (line 586) | ECHOK = 0x4 constant ECHOKE (line 587) | ECHOKE = 0x1 constant ECHONL (line 588) | ECHONL = 0x10 constant ECHOPRT (line 589) | ECHOPRT = 0x20 constant EVFILT_AIO (line 590) | EVFILT_AIO = -0x3 constant EVFILT_EMPTY (line 591) | EVFILT_EMPTY = -0xd constant EVFILT_FS (line 592) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 593) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 594) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 595) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 596) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 597) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 598) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 599) | EVFILT_SYSCOUNT = 0xd constant EVFILT_TIMER (line 600) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 601) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 602) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 603) | EVFILT_WRITE = -0x2 constant EVNAMEMAP_NAME_SIZE (line 604) | EVNAMEMAP_NAME_SIZE = 0x40 constant EV_ADD (line 605) | EV_ADD = 0x1 constant EV_CLEAR (line 606) | EV_CLEAR = 0x20 constant EV_DELETE (line 607) | EV_DELETE = 0x2 constant EV_DISABLE (line 608) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 609) | EV_DISPATCH = 0x80 constant EV_DROP (line 610) | EV_DROP = 0x1000 constant EV_ENABLE (line 611) | EV_ENABLE = 0x4 constant EV_EOF (line 612) | EV_EOF = 0x8000 constant EV_ERROR (line 613) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 614) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 615) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 616) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 617) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 618) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 619) | EV_SYSFLAGS = 0xf000 constant EXTA (line 620) | EXTA = 0x4b00 constant EXTATTR_MAXNAMELEN (line 621) | EXTATTR_MAXNAMELEN = 0xff constant EXTATTR_NAMESPACE_EMPTY (line 622) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 623) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 624) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 625) | EXTB = 0x9600 constant EXTPROC (line 626) | EXTPROC = 0x800 constant FD_CLOEXEC (line 627) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 628) | FD_SETSIZE = 0x400 constant FLUSHO (line 629) | FLUSHO = 0x800000 constant F_CANCEL (line 630) | F_CANCEL = 0x5 constant F_DUP2FD (line 631) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 632) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 633) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 634) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 635) | F_GETFD = 0x1 constant F_GETFL (line 636) | F_GETFL = 0x3 constant F_GETLK (line 637) | F_GETLK = 0xb constant F_GETOWN (line 638) | F_GETOWN = 0x5 constant F_OGETLK (line 639) | F_OGETLK = 0x7 constant F_OK (line 640) | F_OK = 0x0 constant F_OSETLK (line 641) | F_OSETLK = 0x8 constant F_OSETLKW (line 642) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 643) | F_RDAHEAD = 0x10 constant F_RDLCK (line 644) | F_RDLCK = 0x1 constant F_READAHEAD (line 645) | F_READAHEAD = 0xf constant F_SETFD (line 646) | F_SETFD = 0x2 constant F_SETFL (line 647) | F_SETFL = 0x4 constant F_SETLK (line 648) | F_SETLK = 0xc constant F_SETLKW (line 649) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 650) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 651) | F_SETOWN = 0x6 constant F_UNLCK (line 652) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 653) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 654) | F_WRLCK = 0x3 constant HUPCL (line 655) | HUPCL = 0x4000 constant HW_MACHINE (line 656) | HW_MACHINE = 0x1 constant ICANON (line 657) | ICANON = 0x100 constant ICMP6_FILTER (line 658) | ICMP6_FILTER = 0x12 constant ICRNL (line 659) | ICRNL = 0x100 constant IEXTEN (line 660) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 661) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 662) | IFAN_DEPARTURE = 0x1 constant IFCAP_WOL_MAGIC (line 663) | IFCAP_WOL_MAGIC = 0x2000 constant IFF_ALLMULTI (line 664) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 665) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 666) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 667) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 668) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 669) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 670) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 671) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 672) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 673) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 674) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 675) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 676) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 677) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 678) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 679) | IFF_NOARP = 0x80 constant IFF_NOGROUP (line 680) | IFF_NOGROUP = 0x800000 constant IFF_OACTIVE (line 681) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 682) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 683) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 684) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 685) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 686) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 687) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 688) | IFF_STATICARP = 0x80000 constant IFF_UP (line 689) | IFF_UP = 0x1 constant IFNAMSIZ (line 690) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 691) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 692) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 693) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 694) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 695) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 696) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 697) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 698) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 699) | IGNBRK = 0x1 constant IGNCR (line 700) | IGNCR = 0x80 constant IGNPAR (line 701) | IGNPAR = 0x4 constant IMAXBEL (line 702) | IMAXBEL = 0x2000 constant INLCR (line 703) | INLCR = 0x40 constant INPCK (line 704) | INPCK = 0x10 constant IN_CLASSA_HOST (line 705) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 706) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 707) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 708) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 709) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 710) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 711) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 712) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 713) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 714) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 715) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 716) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 717) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 718) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 719) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 720) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 721) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 722) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 723) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 724) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 725) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 726) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 727) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 728) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 729) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 730) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 731) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 732) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 733) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 734) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 735) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 736) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 737) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 738) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 739) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 740) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 741) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 742) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 743) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 744) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 745) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 746) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 747) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 748) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 749) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 750) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 751) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 752) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 753) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 754) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 755) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 756) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 757) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 758) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 759) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 760) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 761) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 762) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 763) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 764) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 765) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 766) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 767) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 768) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 769) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 770) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 771) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 772) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 773) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 774) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 775) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 776) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 777) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 778) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 779) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 780) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 781) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 782) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 783) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 784) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 785) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 786) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 787) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 788) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 789) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 790) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 791) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 792) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 793) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 794) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 795) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 796) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 797) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 798) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 799) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 800) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 801) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 802) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 803) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 804) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 805) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 806) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 807) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 808) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 809) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 810) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 811) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 812) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 813) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 814) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 815) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 816) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 817) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 818) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 819) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 820) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 821) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 822) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 823) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 824) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 825) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 826) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 827) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 828) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 829) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 830) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 831) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 832) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 833) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 834) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 835) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 836) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 837) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 838) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 839) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 840) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 841) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 842) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 843) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 844) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 845) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 846) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 847) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 848) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 849) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 850) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 851) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 852) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 853) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 854) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_LEN (line 855) | IPV6_FLOWLABEL_LEN = 0x14 constant IPV6_FLOWLABEL_MASK (line 856) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 857) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 858) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 859) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 860) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 861) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 862) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 863) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 864) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 865) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 866) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 867) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 868) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 869) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 870) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 871) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 872) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 873) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 874) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 875) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MMTU (line 876) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 877) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 878) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 879) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 880) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 881) | IPV6_NEXTHOP = 0x30 constant IPV6_ORIGDSTADDR (line 882) | IPV6_ORIGDSTADDR = 0x48 constant IPV6_PATHMTU (line 883) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 884) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 885) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 886) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 887) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 888) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 889) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 890) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 891) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 892) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 893) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVORIGDSTADDR (line 894) | IPV6_RECVORIGDSTADDR = 0x48 constant IPV6_RECVPATHMTU (line 895) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 896) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 897) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 898) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 899) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 900) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 901) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 902) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 903) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 904) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 905) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 906) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 907) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 908) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 909) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 910) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 911) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 912) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 913) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 914) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 915) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 916) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 917) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 918) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 919) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 920) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 921) | IP_DF = 0x4000 constant IP_DONTFRAG (line 922) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 923) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 924) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 925) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 926) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 927) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 928) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 929) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 930) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 931) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 932) | IP_FW3 = 0x30 constant IP_FW_ADD (line 933) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 934) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 935) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 936) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 937) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 938) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 939) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 940) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 941) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 942) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 943) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 944) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 945) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 946) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 947) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 948) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 949) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 950) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 951) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 952) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 953) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 954) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 955) | IP_MF = 0x2000 constant IP_MINTTL (line 956) | IP_MINTTL = 0x42 constant IP_MSFILTER (line 957) | IP_MSFILTER = 0x4a constant IP_MSS (line 958) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 959) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 960) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 961) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 962) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 963) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 964) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 965) | IP_OPTIONS = 0x1 constant IP_ORIGDSTADDR (line 966) | IP_ORIGDSTADDR = 0x1b constant IP_PORTRANGE (line 967) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 968) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 969) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 970) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 971) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 972) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 973) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 974) | IP_RECVOPTS = 0x5 constant IP_RECVORIGDSTADDR (line 975) | IP_RECVORIGDSTADDR = 0x1b constant IP_RECVRETOPTS (line 976) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 977) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 978) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 979) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 980) | IP_RETOPTS = 0x8 constant IP_RF (line 981) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 982) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 983) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 984) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 985) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 986) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 987) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 988) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 989) | IP_TOS = 0x3 constant IP_TTL (line 990) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 991) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 992) | ISIG = 0x80 constant ISTRIP (line 993) | ISTRIP = 0x20 constant IXANY (line 994) | IXANY = 0x800 constant IXOFF (line 995) | IXOFF = 0x400 constant IXON (line 996) | IXON = 0x200 constant KERN_HOSTNAME (line 997) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 998) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 999) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 1000) | KERN_VERSION = 0x4 constant LOCAL_CONNWAIT (line 1001) | LOCAL_CONNWAIT = 0x4 constant LOCAL_CREDS (line 1002) | LOCAL_CREDS = 0x2 constant LOCAL_CREDS_PERSISTENT (line 1003) | LOCAL_CREDS_PERSISTENT = 0x3 constant LOCAL_PEERCRED (line 1004) | LOCAL_PEERCRED = 0x1 constant LOCAL_VENDOR (line 1005) | LOCAL_VENDOR = 0x80000000 constant LOCK_EX (line 1006) | LOCK_EX = 0x2 constant LOCK_NB (line 1007) | LOCK_NB = 0x4 constant LOCK_SH (line 1008) | LOCK_SH = 0x1 constant LOCK_UN (line 1009) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 1010) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 1011) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 1012) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1013) | MADV_FREE = 0x5 constant MADV_NOCORE (line 1014) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 1015) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 1016) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1017) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1018) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1019) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1020) | MADV_WILLNEED = 0x3 constant MAP_ALIGNED_SUPER (line 1021) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1022) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1023) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1024) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1025) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1026) | MAP_COPY = 0x2 constant MAP_EXCL (line 1027) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1028) | MAP_FILE = 0x0 constant MAP_FIXED (line 1029) | MAP_FIXED = 0x10 constant MAP_GUARD (line 1030) | MAP_GUARD = 0x2000 constant MAP_HASSEMAPHORE (line 1031) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1032) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 1033) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1034) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1035) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 1036) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 1037) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 1038) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1039) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1040) | MAP_SHARED = 0x1 constant MAP_STACK (line 1041) | MAP_STACK = 0x400 constant MCAST_BLOCK_SOURCE (line 1042) | MCAST_BLOCK_SOURCE = 0x54 constant MCAST_EXCLUDE (line 1043) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 1044) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 1045) | MCAST_JOIN_GROUP = 0x50 constant MCAST_JOIN_SOURCE_GROUP (line 1046) | MCAST_JOIN_SOURCE_GROUP = 0x52 constant MCAST_LEAVE_GROUP (line 1047) | MCAST_LEAVE_GROUP = 0x51 constant MCAST_LEAVE_SOURCE_GROUP (line 1048) | MCAST_LEAVE_SOURCE_GROUP = 0x53 constant MCAST_UNBLOCK_SOURCE (line 1049) | MCAST_UNBLOCK_SOURCE = 0x55 constant MCAST_UNDEFINED (line 1050) | MCAST_UNDEFINED = 0x0 constant MCL_CURRENT (line 1051) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1052) | MCL_FUTURE = 0x2 constant MNT_ACLS (line 1053) | MNT_ACLS = 0x8000000 constant MNT_ASYNC (line 1054) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 1055) | MNT_AUTOMOUNTED = 0x200000000 constant MNT_BYFSID (line 1056) | MNT_BYFSID = 0x8000000 constant MNT_CMDFLAGS (line 1057) | MNT_CMDFLAGS = 0xd0f0000 constant MNT_DEFEXPORTED (line 1058) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 1059) | MNT_DELEXPORT = 0x20000 constant MNT_EXKERB (line 1060) | MNT_EXKERB = 0x800 constant MNT_EXPORTANON (line 1061) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1062) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1063) | MNT_EXPUBLIC = 0x20000000 constant MNT_EXRDONLY (line 1064) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 1065) | MNT_FORCE = 0x80000 constant MNT_GJOURNAL (line 1066) | MNT_GJOURNAL = 0x2000000 constant MNT_IGNORE (line 1067) | MNT_IGNORE = 0x800000 constant MNT_LAZY (line 1068) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1069) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 1070) | MNT_MULTILABEL = 0x4000000 constant MNT_NFS4ACLS (line 1071) | MNT_NFS4ACLS = 0x10 constant MNT_NOATIME (line 1072) | MNT_NOATIME = 0x10000000 constant MNT_NOCLUSTERR (line 1073) | MNT_NOCLUSTERR = 0x40000000 constant MNT_NOCLUSTERW (line 1074) | MNT_NOCLUSTERW = 0x80000000 constant MNT_NOEXEC (line 1075) | MNT_NOEXEC = 0x4 constant MNT_NONBUSY (line 1076) | MNT_NONBUSY = 0x4000000 constant MNT_NOSUID (line 1077) | MNT_NOSUID = 0x8 constant MNT_NOSYMFOLLOW (line 1078) | MNT_NOSYMFOLLOW = 0x400000 constant MNT_NOWAIT (line 1079) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 1080) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1081) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1082) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1083) | MNT_ROOTFS = 0x4000 constant MNT_SNAPSHOT (line 1084) | MNT_SNAPSHOT = 0x1000000 constant MNT_SOFTDEP (line 1085) | MNT_SOFTDEP = 0x200000 constant MNT_SUIDDIR (line 1086) | MNT_SUIDDIR = 0x100000 constant MNT_SUJ (line 1087) | MNT_SUJ = 0x100000000 constant MNT_SUSPEND (line 1088) | MNT_SUSPEND = 0x4 constant MNT_SYNCHRONOUS (line 1089) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1090) | MNT_UNION = 0x20 constant MNT_UNTRUSTED (line 1091) | MNT_UNTRUSTED = 0x800000000 constant MNT_UPDATE (line 1092) | MNT_UPDATE = 0x10000 constant MNT_UPDATEMASK (line 1093) | MNT_UPDATEMASK = 0xad8d0807e constant MNT_USER (line 1094) | MNT_USER = 0x8000 constant MNT_VERIFIED (line 1095) | MNT_VERIFIED = 0x400000000 constant MNT_VISFLAGMASK (line 1096) | MNT_VISFLAGMASK = 0xffef0ffff constant MNT_WAIT (line 1097) | MNT_WAIT = 0x1 constant MSG_CMSG_CLOEXEC (line 1098) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1099) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1100) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1101) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1102) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1103) | MSG_EOF = 0x100 constant MSG_EOR (line 1104) | MSG_EOR = 0x8 constant MSG_NBIO (line 1105) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1106) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1107) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1108) | MSG_OOB = 0x1 constant MSG_PEEK (line 1109) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1110) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1111) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 1112) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 1113) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1114) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1115) | MS_SYNC = 0x0 constant NAME_MAX (line 1116) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1117) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1118) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1119) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1120) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1121) | NET_RT_IFMALIST = 0x4 constant NFDBITS (line 1122) | NFDBITS = 0x20 constant NOFLSH (line 1123) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1124) | NOKERNINFO = 0x2000000 constant NOTE_ABSTIME (line 1125) | NOTE_ABSTIME = 0x10 constant NOTE_ATTRIB (line 1126) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1127) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1128) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1129) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1130) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1131) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1132) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1133) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1134) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1135) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1136) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1137) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1138) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1139) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1140) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1141) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1142) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1143) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1144) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1145) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1146) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1147) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1148) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1149) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1150) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1151) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1152) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1153) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1154) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1155) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1156) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1157) | NOTE_WRITE = 0x2 constant OCRNL (line 1158) | OCRNL = 0x10 constant ONLCR (line 1159) | ONLCR = 0x2 constant ONLRET (line 1160) | ONLRET = 0x40 constant ONOCR (line 1161) | ONOCR = 0x20 constant ONOEOT (line 1162) | ONOEOT = 0x8 constant OPOST (line 1163) | OPOST = 0x1 constant OXTABS (line 1164) | OXTABS = 0x4 constant O_ACCMODE (line 1165) | O_ACCMODE = 0x3 constant O_APPEND (line 1166) | O_APPEND = 0x8 constant O_ASYNC (line 1167) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1168) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1169) | O_CREAT = 0x200 constant O_DIRECT (line 1170) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1171) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1172) | O_EXCL = 0x800 constant O_EXEC (line 1173) | O_EXEC = 0x40000 constant O_EXLOCK (line 1174) | O_EXLOCK = 0x20 constant O_FSYNC (line 1175) | O_FSYNC = 0x80 constant O_NDELAY (line 1176) | O_NDELAY = 0x4 constant O_NOCTTY (line 1177) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1178) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1179) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1180) | O_RDONLY = 0x0 constant O_RDWR (line 1181) | O_RDWR = 0x2 constant O_SHLOCK (line 1182) | O_SHLOCK = 0x10 constant O_SYNC (line 1183) | O_SYNC = 0x80 constant O_TRUNC (line 1184) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1185) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1186) | O_VERIFY = 0x200000 constant O_WRONLY (line 1187) | O_WRONLY = 0x1 constant PARENB (line 1188) | PARENB = 0x1000 constant PARMRK (line 1189) | PARMRK = 0x8 constant PARODD (line 1190) | PARODD = 0x2000 constant PENDIN (line 1191) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1192) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1193) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1194) | PRIO_USER = 0x2 constant PROT_EXEC (line 1195) | PROT_EXEC = 0x4 constant PROT_NONE (line 1196) | PROT_NONE = 0x0 constant PROT_READ (line 1197) | PROT_READ = 0x1 constant PROT_WRITE (line 1198) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1199) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1200) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1201) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1202) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1203) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1204) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1205) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1206) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1207) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1208) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1209) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1210) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1211) | RTAX_BRD = 0x7 constant RTAX_DST (line 1212) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1213) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1214) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1215) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1216) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1217) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1218) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1219) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1220) | RTA_BRD = 0x80 constant RTA_DST (line 1221) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1222) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1223) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1224) | RTA_IFA = 0x20 constant RTA_IFP (line 1225) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1226) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1227) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1228) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1229) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1230) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1231) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1232) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1233) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1234) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1235) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1236) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1237) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1238) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1239) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1240) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1241) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1242) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1243) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1244) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1245) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1246) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1247) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1248) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1249) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1250) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1251) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1252) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1253) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1254) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1255) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1256) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1257) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1258) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1259) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1260) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1261) | RTM_LOSING = 0x5 constant RTM_MISS (line 1262) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1263) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1264) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1265) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1266) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1267) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1268) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1269) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1270) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1271) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1272) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1273) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1274) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1275) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1276) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1277) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1278) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1279) | RT_BLACKHOLE = 0x40 constant RT_DEFAULT_FIB (line 1280) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1281) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1282) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1283) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1284) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1285) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1286) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1287) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1288) | RT_MAY_LOOP_BIT = 0x3 constant RT_REJECT (line 1289) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1290) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1291) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1292) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1293) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1294) | SCM_CREDS = 0x3 constant SCM_MONOTONIC (line 1295) | SCM_MONOTONIC = 0x6 constant SCM_REALTIME (line 1296) | SCM_REALTIME = 0x5 constant SCM_RIGHTS (line 1297) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1298) | SCM_TIMESTAMP = 0x2 constant SCM_TIME_INFO (line 1299) | SCM_TIME_INFO = 0x7 constant SEEK_CUR (line 1300) | SEEK_CUR = 0x1 constant SEEK_DATA (line 1301) | SEEK_DATA = 0x3 constant SEEK_END (line 1302) | SEEK_END = 0x2 constant SEEK_HOLE (line 1303) | SEEK_HOLE = 0x4 constant SEEK_SET (line 1304) | SEEK_SET = 0x0 constant SHUT_RD (line 1305) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1306) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1307) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1308) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1309) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1310) | SIOCAIFGROUP = 0x80246987 constant SIOCATMARK (line 1311) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1312) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1313) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1314) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1315) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1316) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETSGCNT (line 1317) | SIOCGETSGCNT = 0xc0147210 constant SIOCGETVIFCNT (line 1318) | SIOCGETVIFCNT = 0xc014720f constant SIOCGHIWAT (line 1319) | SIOCGHIWAT = 0x40047301 constant SIOCGHWADDR (line 1320) | SIOCGHWADDR = 0xc020693e constant SIOCGI2C (line 1321) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1322) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1323) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1324) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1325) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDESCR (line 1326) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1327) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1328) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1329) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1330) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1331) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1332) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFINDEX (line 1333) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1334) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1335) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1336) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1337) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1338) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1339) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1340) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1341) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRSSHASH (line 1342) | SIOCGIFRSSHASH = 0xc0186997 constant SIOCGIFRSSKEY (line 1343) | SIOCGIFRSSKEY = 0xc0946996 constant SIOCGIFSTATUS (line 1344) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1345) | SIOCGIFXMEDIA = 0xc028698b constant SIOCGLANPCP (line 1346) | SIOCGLANPCP = 0xc0206998 constant SIOCGLOWAT (line 1347) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1348) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1349) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1350) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1351) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1352) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1353) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1354) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1355) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSDRVSPEC (line 1356) | SIOCSDRVSPEC = 0x801c697b constant SIOCSHIWAT (line 1357) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1358) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1359) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1360) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1361) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1362) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1363) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1364) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1365) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1366) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1367) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1368) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1369) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1370) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1371) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1372) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1373) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1374) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1375) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1376) | SIOCSIFVNET = 0xc020695a constant SIOCSLANPCP (line 1377) | SIOCSLANPCP = 0x80206999 constant SIOCSLOWAT (line 1378) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1379) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1380) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1381) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1382) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1383) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1384) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1385) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1386) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1387) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1388) | SOCK_STREAM = 0x1 constant SOL_LOCAL (line 1389) | SOL_LOCAL = 0x0 constant SOL_SOCKET (line 1390) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1391) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1392) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1393) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1394) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1395) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1396) | SO_DEBUG = 0x1 constant SO_DOMAIN (line 1397) | SO_DOMAIN = 0x1019 constant SO_DONTROUTE (line 1398) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1399) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1400) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1401) | SO_LABEL = 0x1009 constant SO_LINGER (line 1402) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1403) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1404) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1405) | SO_LISTENQLIMIT = 0x1011 constant SO_MAX_PACING_RATE (line 1406) | SO_MAX_PACING_RATE = 0x1018 constant SO_NOSIGPIPE (line 1407) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1408) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1409) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1410) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1411) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1412) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1413) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1414) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1415) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1416) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1417) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1418) | SO_REUSEPORT = 0x200 constant SO_REUSEPORT_LB (line 1419) | SO_REUSEPORT_LB = 0x10000 constant SO_SETFIB (line 1420) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1421) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1422) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1423) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1424) | SO_TIMESTAMP = 0x400 constant SO_TS_BINTIME (line 1425) | SO_TS_BINTIME = 0x1 constant SO_TS_CLOCK (line 1426) | SO_TS_CLOCK = 0x1017 constant SO_TS_CLOCK_MAX (line 1427) | SO_TS_CLOCK_MAX = 0x3 constant SO_TS_DEFAULT (line 1428) | SO_TS_DEFAULT = 0x0 constant SO_TS_MONOTONIC (line 1429) | SO_TS_MONOTONIC = 0x3 constant SO_TS_REALTIME (line 1430) | SO_TS_REALTIME = 0x2 constant SO_TS_REALTIME_MICRO (line 1431) | SO_TS_REALTIME_MICRO = 0x0 constant SO_TYPE (line 1432) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1433) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1434) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1435) | SO_VENDOR = 0x80000000 constant S_BLKSIZE (line 1436) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1437) | S_IEXEC = 0x40 constant S_IFBLK (line 1438) | S_IFBLK = 0x6000 constant S_IFCHR (line 1439) | S_IFCHR = 0x2000 constant S_IFDIR (line 1440) | S_IFDIR = 0x4000 constant S_IFIFO (line 1441) | S_IFIFO = 0x1000 constant S_IFLNK (line 1442) | S_IFLNK = 0xa000 constant S_IFMT (line 1443) | S_IFMT = 0xf000 constant S_IFREG (line 1444) | S_IFREG = 0x8000 constant S_IFSOCK (line 1445) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1446) | S_IFWHT = 0xe000 constant S_IREAD (line 1447) | S_IREAD = 0x100 constant S_IRGRP (line 1448) | S_IRGRP = 0x20 constant S_IROTH (line 1449) | S_IROTH = 0x4 constant S_IRUSR (line 1450) | S_IRUSR = 0x100 constant S_IRWXG (line 1451) | S_IRWXG = 0x38 constant S_IRWXO (line 1452) | S_IRWXO = 0x7 constant S_IRWXU (line 1453) | S_IRWXU = 0x1c0 constant S_ISGID (line 1454) | S_ISGID = 0x400 constant S_ISTXT (line 1455) | S_ISTXT = 0x200 constant S_ISUID (line 1456) | S_ISUID = 0x800 constant S_ISVTX (line 1457) | S_ISVTX = 0x200 constant S_IWGRP (line 1458) | S_IWGRP = 0x10 constant S_IWOTH (line 1459) | S_IWOTH = 0x2 constant S_IWRITE (line 1460) | S_IWRITE = 0x80 constant S_IWUSR (line 1461) | S_IWUSR = 0x80 constant S_IXGRP (line 1462) | S_IXGRP = 0x8 constant S_IXOTH (line 1463) | S_IXOTH = 0x1 constant S_IXUSR (line 1464) | S_IXUSR = 0x40 constant TAB0 (line 1465) | TAB0 = 0x0 constant TAB3 (line 1466) | TAB3 = 0x4 constant TABDLY (line 1467) | TABDLY = 0x4 constant TCIFLUSH (line 1468) | TCIFLUSH = 0x1 constant TCIOFF (line 1469) | TCIOFF = 0x3 constant TCIOFLUSH (line 1470) | TCIOFLUSH = 0x3 constant TCION (line 1471) | TCION = 0x4 constant TCOFLUSH (line 1472) | TCOFLUSH = 0x2 constant TCOOFF (line 1473) | TCOOFF = 0x1 constant TCOON (line 1474) | TCOON = 0x2 constant TCP_BBR_ACK_COMP_ALG (line 1475) | TCP_BBR_ACK_COMP_ALG = 0x448 constant TCP_BBR_DRAIN_INC_EXTRA (line 1476) | TCP_BBR_DRAIN_INC_EXTRA = 0x43c constant TCP_BBR_DRAIN_PG (line 1477) | TCP_BBR_DRAIN_PG = 0x42e constant TCP_BBR_EXTRA_GAIN (line 1478) | TCP_BBR_EXTRA_GAIN = 0x449 constant TCP_BBR_IWINTSO (line 1479) | TCP_BBR_IWINTSO = 0x42b constant TCP_BBR_LOWGAIN_FD (line 1480) | TCP_BBR_LOWGAIN_FD = 0x436 constant TCP_BBR_LOWGAIN_HALF (line 1481) | TCP_BBR_LOWGAIN_HALF = 0x435 constant TCP_BBR_LOWGAIN_THRESH (line 1482) | TCP_BBR_LOWGAIN_THRESH = 0x434 constant TCP_BBR_MAX_RTO (line 1483) | TCP_BBR_MAX_RTO = 0x439 constant TCP_BBR_MIN_RTO (line 1484) | TCP_BBR_MIN_RTO = 0x438 constant TCP_BBR_ONE_RETRAN (line 1485) | TCP_BBR_ONE_RETRAN = 0x431 constant TCP_BBR_PACE_CROSS (line 1486) | TCP_BBR_PACE_CROSS = 0x442 constant TCP_BBR_PACE_DEL_TAR (line 1487) | TCP_BBR_PACE_DEL_TAR = 0x43f constant TCP_BBR_PACE_PER_SEC (line 1488) | TCP_BBR_PACE_PER_SEC = 0x43e constant TCP_BBR_PACE_SEG_MAX (line 1489) | TCP_BBR_PACE_SEG_MAX = 0x440 constant TCP_BBR_PACE_SEG_MIN (line 1490) | TCP_BBR_PACE_SEG_MIN = 0x441 constant TCP_BBR_PROBE_RTT_GAIN (line 1491) | TCP_BBR_PROBE_RTT_GAIN = 0x44d constant TCP_BBR_PROBE_RTT_INT (line 1492) | TCP_BBR_PROBE_RTT_INT = 0x430 constant TCP_BBR_PROBE_RTT_LEN (line 1493) | TCP_BBR_PROBE_RTT_LEN = 0x44e constant TCP_BBR_RACK_RTT_USE (line 1494) | TCP_BBR_RACK_RTT_USE = 0x44a constant TCP_BBR_RECFORCE (line 1495) | TCP_BBR_RECFORCE = 0x42c constant TCP_BBR_REC_OVER_HPTS (line 1496) | TCP_BBR_REC_OVER_HPTS = 0x43a constant TCP_BBR_RETRAN_WTSO (line 1497) | TCP_BBR_RETRAN_WTSO = 0x44b constant TCP_BBR_RWND_IS_APP (line 1498) | TCP_BBR_RWND_IS_APP = 0x42f constant TCP_BBR_STARTUP_EXIT_EPOCH (line 1499) | TCP_BBR_STARTUP_EXIT_EPOCH = 0x43d constant TCP_BBR_STARTUP_LOSS_EXIT (line 1500) | TCP_BBR_STARTUP_LOSS_EXIT = 0x432 constant TCP_BBR_STARTUP_PG (line 1501) | TCP_BBR_STARTUP_PG = 0x42d constant TCP_BBR_UNLIMITED (line 1502) | TCP_BBR_UNLIMITED = 0x43b constant TCP_BBR_USEDEL_RATE (line 1503) | TCP_BBR_USEDEL_RATE = 0x437 constant TCP_BBR_USE_LOWGAIN (line 1504) | TCP_BBR_USE_LOWGAIN = 0x433 constant TCP_CA_NAME_MAX (line 1505) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1506) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1507) | TCP_CONGESTION = 0x40 constant TCP_DATA_AFTER_CLOSE (line 1508) | TCP_DATA_AFTER_CLOSE = 0x44c constant TCP_DELACK (line 1509) | TCP_DELACK = 0x48 constant TCP_FASTOPEN (line 1510) | TCP_FASTOPEN = 0x401 constant TCP_FASTOPEN_MAX_COOKIE_LEN (line 1511) | TCP_FASTOPEN_MAX_COOKIE_LEN = 0x10 constant TCP_FASTOPEN_MIN_COOKIE_LEN (line 1512) | TCP_FASTOPEN_MIN_COOKIE_LEN = 0x4 constant TCP_FASTOPEN_PSK_LEN (line 1513) | TCP_FASTOPEN_PSK_LEN = 0x10 constant TCP_FUNCTION_BLK (line 1514) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1515) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1516) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1517) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1518) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1519) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1520) | TCP_KEEPINTVL = 0x200 constant TCP_LOG (line 1521) | TCP_LOG = 0x22 constant TCP_LOGBUF (line 1522) | TCP_LOGBUF = 0x23 constant TCP_LOGDUMP (line 1523) | TCP_LOGDUMP = 0x25 constant TCP_LOGDUMPID (line 1524) | TCP_LOGDUMPID = 0x26 constant TCP_LOGID (line 1525) | TCP_LOGID = 0x24 constant TCP_LOG_ID_LEN (line 1526) | TCP_LOG_ID_LEN = 0x40 constant TCP_MAXBURST (line 1527) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1528) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1529) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1530) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1531) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1532) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1533) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1534) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1535) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1536) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1537) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1538) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1539) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1540) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1541) | TCP_PCAP_OUT = 0x800 constant TCP_RACK_EARLY_RECOV (line 1542) | TCP_RACK_EARLY_RECOV = 0x423 constant TCP_RACK_EARLY_SEG (line 1543) | TCP_RACK_EARLY_SEG = 0x424 constant TCP_RACK_IDLE_REDUCE_HIGH (line 1544) | TCP_RACK_IDLE_REDUCE_HIGH = 0x444 constant TCP_RACK_MIN_PACE (line 1545) | TCP_RACK_MIN_PACE = 0x445 constant TCP_RACK_MIN_PACE_SEG (line 1546) | TCP_RACK_MIN_PACE_SEG = 0x446 constant TCP_RACK_MIN_TO (line 1547) | TCP_RACK_MIN_TO = 0x422 constant TCP_RACK_PACE_ALWAYS (line 1548) | TCP_RACK_PACE_ALWAYS = 0x41f constant TCP_RACK_PACE_MAX_SEG (line 1549) | TCP_RACK_PACE_MAX_SEG = 0x41e constant TCP_RACK_PACE_REDUCE (line 1550) | TCP_RACK_PACE_REDUCE = 0x41d constant TCP_RACK_PKT_DELAY (line 1551) | TCP_RACK_PKT_DELAY = 0x428 constant TCP_RACK_PROP (line 1552) | TCP_RACK_PROP = 0x41b constant TCP_RACK_PROP_RATE (line 1553) | TCP_RACK_PROP_RATE = 0x420 constant TCP_RACK_PRR_SENDALOT (line 1554) | TCP_RACK_PRR_SENDALOT = 0x421 constant TCP_RACK_REORD_FADE (line 1555) | TCP_RACK_REORD_FADE = 0x426 constant TCP_RACK_REORD_THRESH (line 1556) | TCP_RACK_REORD_THRESH = 0x425 constant TCP_RACK_SESS_CWV (line 1557) | TCP_RACK_SESS_CWV = 0x42a constant TCP_RACK_TLP_INC_VAR (line 1558) | TCP_RACK_TLP_INC_VAR = 0x429 constant TCP_RACK_TLP_REDUCE (line 1559) | TCP_RACK_TLP_REDUCE = 0x41c constant TCP_RACK_TLP_THRESH (line 1560) | TCP_RACK_TLP_THRESH = 0x427 constant TCP_RACK_TLP_USE (line 1561) | TCP_RACK_TLP_USE = 0x447 constant TCP_VENDOR (line 1562) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1563) | TCSAFLUSH = 0x2 constant TIMER_ABSTIME (line 1564) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1565) | TIMER_RELTIME = 0x0 constant TIOCCBRK (line 1566) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1567) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1568) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1569) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1570) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1571) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1572) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1573) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1574) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1575) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1576) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1577) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1578) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1579) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1580) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1581) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1582) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1583) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1584) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1585) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1586) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1587) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1588) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1589) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1590) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1591) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1592) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1593) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1594) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1595) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1596) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1597) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1598) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1599) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1600) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1601) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1602) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1603) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1604) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1605) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1606) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1607) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1608) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1609) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1610) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1611) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1612) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1613) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1614) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1615) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1616) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1617) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1618) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1619) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1620) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1621) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1622) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1623) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1624) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1625) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1626) | TIOCTIMESTAMP = 0x40087459 constant TIOCUCNTL (line 1627) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1628) | TOSTOP = 0x400000 constant UTIME_NOW (line 1629) | UTIME_NOW = -0x1 constant UTIME_OMIT (line 1630) | UTIME_OMIT = -0x2 constant VDISCARD (line 1631) | VDISCARD = 0xf constant VDSUSP (line 1632) | VDSUSP = 0xb constant VEOF (line 1633) | VEOF = 0x0 constant VEOL (line 1634) | VEOL = 0x1 constant VEOL2 (line 1635) | VEOL2 = 0x2 constant VERASE (line 1636) | VERASE = 0x3 constant VERASE2 (line 1637) | VERASE2 = 0x7 constant VINTR (line 1638) | VINTR = 0x8 constant VKILL (line 1639) | VKILL = 0x5 constant VLNEXT (line 1640) | VLNEXT = 0xe constant VMIN (line 1641) | VMIN = 0x10 constant VM_BCACHE_SIZE_MAX (line 1642) | VM_BCACHE_SIZE_MAX = 0x70e0000 constant VM_SWZONE_SIZE_MAX (line 1643) | VM_SWZONE_SIZE_MAX = 0x2280000 constant VQUIT (line 1644) | VQUIT = 0x9 constant VREPRINT (line 1645) | VREPRINT = 0x6 constant VSTART (line 1646) | VSTART = 0xc constant VSTATUS (line 1647) | VSTATUS = 0x12 constant VSTOP (line 1648) | VSTOP = 0xd constant VSUSP (line 1649) | VSUSP = 0xa constant VTIME (line 1650) | VTIME = 0x11 constant VWERASE (line 1651) | VWERASE = 0x4 constant WCONTINUED (line 1652) | WCONTINUED = 0x4 constant WCOREFLAG (line 1653) | WCOREFLAG = 0x80 constant WEXITED (line 1654) | WEXITED = 0x10 constant WLINUXCLONE (line 1655) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1656) | WNOHANG = 0x1 constant WNOWAIT (line 1657) | WNOWAIT = 0x8 constant WSTOPPED (line 1658) | WSTOPPED = 0x2 constant WTRAPPED (line 1659) | WTRAPPED = 0x20 constant WUNTRACED (line 1660) | WUNTRACED = 0x2 constant E2BIG (line 1665) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1666) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1667) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1668) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1669) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1670) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1671) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1672) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1673) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1674) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1675) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1676) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1677) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1678) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1679) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1680) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1681) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1682) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1683) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1684) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1685) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1686) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1687) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1688) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1689) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1690) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1691) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1692) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1693) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1694) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1695) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1696) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1697) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1698) | EINVAL = syscall.Errno(0x16) constant EIO (line 1699) | EIO = syscall.Errno(0x5) constant EISCONN (line 1700) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1701) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1702) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1703) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1704) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1705) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1706) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1707) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1708) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1709) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1710) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1711) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1712) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1713) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1714) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1715) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1716) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1717) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1718) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1719) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1720) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1721) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1722) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1723) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1724) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1725) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1726) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1727) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1728) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1729) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1730) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1731) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1732) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1733) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1734) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1735) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1736) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1737) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1738) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1739) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1740) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1741) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1742) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1743) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1744) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1745) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1746) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1747) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1748) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1749) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1750) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1751) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1752) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1753) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1754) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1755) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1756) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1757) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1758) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1759) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1760) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1761) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1762) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1763) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1768) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1769) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1770) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1771) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1772) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1773) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1774) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1775) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1776) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1777) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1778) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1779) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1780) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1781) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1782) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1783) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1784) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1785) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1786) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1787) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1788) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1789) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1790) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1791) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1792) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1793) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1794) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1795) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1796) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1797) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1798) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1799) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1800) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1801) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1802) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x23 constant AF_ATM (line 17) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 18) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 19) | AF_CCITT = 0xa constant AF_CHAOS (line 20) | AF_CHAOS = 0x5 constant AF_CNT (line 21) | AF_CNT = 0x15 constant AF_COIP (line 22) | AF_COIP = 0x14 constant AF_DATAKIT (line 23) | AF_DATAKIT = 0x9 constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_DLI (line 25) | AF_DLI = 0xd constant AF_E164 (line 26) | AF_E164 = 0x1a constant AF_ECMA (line 27) | AF_ECMA = 0x8 constant AF_HYLINK (line 28) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 29) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 30) | AF_IMPLINK = 0x3 constant AF_INET (line 31) | AF_INET = 0x2 constant AF_INET6 (line 32) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 33) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 34) | AF_INET_SDP = 0x28 constant AF_IPX (line 35) | AF_IPX = 0x17 constant AF_ISDN (line 36) | AF_ISDN = 0x1a constant AF_ISO (line 37) | AF_ISO = 0x7 constant AF_LAT (line 38) | AF_LAT = 0xe constant AF_LINK (line 39) | AF_LINK = 0x12 constant AF_LOCAL (line 40) | AF_LOCAL = 0x1 constant AF_MAX (line 41) | AF_MAX = 0x2a constant AF_NATM (line 42) | AF_NATM = 0x1d constant AF_NETBIOS (line 43) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 44) | AF_NETGRAPH = 0x20 constant AF_OSI (line 45) | AF_OSI = 0x7 constant AF_PUP (line 46) | AF_PUP = 0x4 constant AF_ROUTE (line 47) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 48) | AF_SCLUSTER = 0x22 constant AF_SIP (line 49) | AF_SIP = 0x18 constant AF_SLOW (line 50) | AF_SLOW = 0x21 constant AF_SNA (line 51) | AF_SNA = 0xb constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 54) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 55) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 56) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 57) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 58) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 59) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 60) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 61) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 62) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 63) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 64) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 65) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 66) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 67) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 68) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 69) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 70) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 71) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 72) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 73) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 74) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 75) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 76) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 77) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 78) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 79) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 80) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 81) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 82) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 83) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 84) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 85) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 86) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 87) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 88) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 89) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 90) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 91) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 92) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 93) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 94) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 95) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 96) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 97) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 98) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 99) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 100) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 101) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 102) | ALTWERASE = 0x200 constant B0 (line 103) | B0 = 0x0 constant B110 (line 104) | B110 = 0x6e constant B115200 (line 105) | B115200 = 0x1c200 constant B1200 (line 106) | B1200 = 0x4b0 constant B134 (line 107) | B134 = 0x86 constant B14400 (line 108) | B14400 = 0x3840 constant B150 (line 109) | B150 = 0x96 constant B1800 (line 110) | B1800 = 0x708 constant B19200 (line 111) | B19200 = 0x4b00 constant B200 (line 112) | B200 = 0xc8 constant B230400 (line 113) | B230400 = 0x38400 constant B2400 (line 114) | B2400 = 0x960 constant B28800 (line 115) | B28800 = 0x7080 constant B300 (line 116) | B300 = 0x12c constant B38400 (line 117) | B38400 = 0x9600 constant B460800 (line 118) | B460800 = 0x70800 constant B4800 (line 119) | B4800 = 0x12c0 constant B50 (line 120) | B50 = 0x32 constant B57600 (line 121) | B57600 = 0xe100 constant B600 (line 122) | B600 = 0x258 constant B7200 (line 123) | B7200 = 0x1c20 constant B75 (line 124) | B75 = 0x4b constant B76800 (line 125) | B76800 = 0x12c00 constant B921600 (line 126) | B921600 = 0xe1000 constant B9600 (line 127) | B9600 = 0x2580 constant BIOCFEEDBACK (line 128) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 129) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 130) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 131) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 132) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 133) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETBUFMODE (line 134) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 135) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 136) | BIOCGETZMAX = 0x4008427f constant BIOCGHDRCMPLT (line 137) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 138) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 139) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 140) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 141) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 142) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 143) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 144) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 145) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 146) | BIOCROTZBUF = 0x40184280 constant BIOCSBLEN (line 147) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 148) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 149) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 150) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 151) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 152) | BIOCSETFNR = 0x80104282 constant BIOCSETIF (line 153) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 154) | BIOCSETWF = 0x8010427b constant BIOCSETZBUF (line 155) | BIOCSETZBUF = 0x80184281 constant BIOCSHDRCMPLT (line 156) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 157) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 158) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 159) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 160) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 161) | BIOCVERSION = 0x40044271 constant BPF_A (line 162) | BPF_A = 0x10 constant BPF_ABS (line 163) | BPF_ABS = 0x20 constant BPF_ADD (line 164) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 165) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 166) | BPF_ALU = 0x4 constant BPF_AND (line 167) | BPF_AND = 0x50 constant BPF_B (line 168) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 169) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 170) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 171) | BPF_DIV = 0x30 constant BPF_H (line 172) | BPF_H = 0x8 constant BPF_IMM (line 173) | BPF_IMM = 0x0 constant BPF_IND (line 174) | BPF_IND = 0x40 constant BPF_JA (line 175) | BPF_JA = 0x0 constant BPF_JEQ (line 176) | BPF_JEQ = 0x10 constant BPF_JGE (line 177) | BPF_JGE = 0x30 constant BPF_JGT (line 178) | BPF_JGT = 0x20 constant BPF_JMP (line 179) | BPF_JMP = 0x5 constant BPF_JSET (line 180) | BPF_JSET = 0x40 constant BPF_K (line 181) | BPF_K = 0x0 constant BPF_LD (line 182) | BPF_LD = 0x0 constant BPF_LDX (line 183) | BPF_LDX = 0x1 constant BPF_LEN (line 184) | BPF_LEN = 0x80 constant BPF_LSH (line 185) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 186) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 187) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 188) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 189) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 190) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 191) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 192) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 193) | BPF_MISC = 0x7 constant BPF_MOD (line 194) | BPF_MOD = 0x90 constant BPF_MSH (line 195) | BPF_MSH = 0xa0 constant BPF_MUL (line 196) | BPF_MUL = 0x20 constant BPF_NEG (line 197) | BPF_NEG = 0x80 constant BPF_OR (line 198) | BPF_OR = 0x40 constant BPF_RELEASE (line 199) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 200) | BPF_RET = 0x6 constant BPF_RSH (line 201) | BPF_RSH = 0x70 constant BPF_ST (line 202) | BPF_ST = 0x2 constant BPF_STX (line 203) | BPF_STX = 0x3 constant BPF_SUB (line 204) | BPF_SUB = 0x10 constant BPF_TAX (line 205) | BPF_TAX = 0x0 constant BPF_TXA (line 206) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 207) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 208) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 209) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 210) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 211) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 212) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 213) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 214) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 215) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 216) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 217) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 218) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 219) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 220) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 221) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 222) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 223) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 224) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 225) | BPF_T_NORMAL = 0x0 constant BPF_W (line 226) | BPF_W = 0x0 constant BPF_X (line 227) | BPF_X = 0x8 constant BPF_XOR (line 228) | BPF_XOR = 0xa0 constant BRKINT (line 229) | BRKINT = 0x2 constant CAP_ACCEPT (line 230) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 231) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 232) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 233) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 234) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 235) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 236) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 237) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 238) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 239) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 240) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 241) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 242) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 243) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 244) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 245) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 246) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 247) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 248) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 249) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 250) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 251) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 252) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 253) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 254) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 255) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 256) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 257) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 258) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 259) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 260) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 261) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 262) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 263) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 264) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 265) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 266) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 267) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 268) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 269) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 270) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 271) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 272) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 273) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 274) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 275) | CAP_IOCTLS_ALL = 0x7fffffffffffffff constant CAP_KQUEUE (line 276) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 277) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 278) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 279) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 280) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 281) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 282) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 283) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 284) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 285) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 286) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 287) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 288) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 289) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 290) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 291) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 292) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 293) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 294) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 295) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 296) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 297) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 298) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 299) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 300) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 301) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 302) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 303) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 304) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 305) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 306) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 307) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 308) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 309) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 310) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 311) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 312) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 313) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 314) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 315) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 316) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 317) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 318) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 319) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 320) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 321) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 322) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 323) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 324) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 325) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 326) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 327) | CFLUSH = 0xf constant CLOCAL (line 328) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 329) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 330) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 331) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 332) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 333) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 334) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 335) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 336) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 337) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 338) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 339) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 340) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 341) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 342) | CLOCK_VIRTUAL = 0x1 constant CPUSTATES (line 343) | CPUSTATES = 0x5 constant CP_IDLE (line 344) | CP_IDLE = 0x4 constant CP_INTR (line 345) | CP_INTR = 0x3 constant CP_NICE (line 346) | CP_NICE = 0x1 constant CP_SYS (line 347) | CP_SYS = 0x2 constant CP_USER (line 348) | CP_USER = 0x0 constant CREAD (line 349) | CREAD = 0x800 constant CRTSCTS (line 350) | CRTSCTS = 0x30000 constant CS5 (line 351) | CS5 = 0x0 constant CS6 (line 352) | CS6 = 0x100 constant CS7 (line 353) | CS7 = 0x200 constant CS8 (line 354) | CS8 = 0x300 constant CSIZE (line 355) | CSIZE = 0x300 constant CSTART (line 356) | CSTART = 0x11 constant CSTATUS (line 357) | CSTATUS = 0x14 constant CSTOP (line 358) | CSTOP = 0x13 constant CSTOPB (line 359) | CSTOPB = 0x400 constant CSUSP (line 360) | CSUSP = 0x1a constant CTL_HW (line 361) | CTL_HW = 0x6 constant CTL_KERN (line 362) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 363) | CTL_MAXNAME = 0x18 constant CTL_NET (line 364) | CTL_NET = 0x4 constant DIOCGATTR (line 365) | DIOCGATTR = 0xc148648e constant DIOCGDELETE (line 366) | DIOCGDELETE = 0x80106488 constant DIOCGFLUSH (line 367) | DIOCGFLUSH = 0x20006487 constant DIOCGFRONTSTUFF (line 368) | DIOCGFRONTSTUFF = 0x40086486 constant DIOCGFWHEADS (line 369) | DIOCGFWHEADS = 0x40046483 constant DIOCGFWSECTORS (line 370) | DIOCGFWSECTORS = 0x40046482 constant DIOCGIDENT (line 371) | DIOCGIDENT = 0x41006489 constant DIOCGMEDIASIZE (line 372) | DIOCGMEDIASIZE = 0x40086481 constant DIOCGPHYSPATH (line 373) | DIOCGPHYSPATH = 0x4400648d constant DIOCGPROVIDERNAME (line 374) | DIOCGPROVIDERNAME = 0x4400648a constant DIOCGSECTORSIZE (line 375) | DIOCGSECTORSIZE = 0x40046480 constant DIOCGSTRIPEOFFSET (line 376) | DIOCGSTRIPEOFFSET = 0x4008648c constant DIOCGSTRIPESIZE (line 377) | DIOCGSTRIPESIZE = 0x4008648b constant DIOCSKERNELDUMP (line 378) | DIOCSKERNELDUMP = 0x80506490 constant DIOCSKERNELDUMP_FREEBSD11 (line 379) | DIOCSKERNELDUMP_FREEBSD11 = 0x80046485 constant DIOCZONECMD (line 380) | DIOCZONECMD = 0xc080648f constant DLT_A429 (line 381) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 382) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 383) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 384) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 385) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 386) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 387) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 388) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 389) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 390) | DLT_AURORA = 0x7e constant DLT_AX25 (line 391) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 392) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 393) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 394) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 395) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 396) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 397) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 398) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 399) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 400) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 401) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 402) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 403) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 404) | DLT_CISCO_IOS = 0x76 constant DLT_CLASS_NETBSD_RAWAF (line 405) | DLT_CLASS_NETBSD_RAWAF = 0x2240000 constant DLT_C_HDLC (line 406) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 407) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 408) | DLT_DBUS = 0xe7 constant DLT_DECT (line 409) | DLT_DECT = 0xdd constant DLT_DISPLAYPORT_AUX (line 410) | DLT_DISPLAYPORT_AUX = 0x113 constant DLT_DOCSIS (line 411) | DLT_DOCSIS = 0x8f constant DLT_DOCSIS31_XRA31 (line 412) | DLT_DOCSIS31_XRA31 = 0x111 constant DLT_DVB_CI (line 413) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 414) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 415) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 416) | DLT_EN3MB = 0x2 constant DLT_ENC (line 417) | DLT_ENC = 0x6d constant DLT_EPON (line 418) | DLT_EPON = 0x103 constant DLT_ERF (line 419) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 420) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 421) | DLT_ERF_POS = 0xb0 constant DLT_ETHERNET_MPACKET (line 422) | DLT_ETHERNET_MPACKET = 0x112 constant DLT_FC_2 (line 423) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 424) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 425) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 426) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 427) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 428) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 429) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 430) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 431) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 432) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 433) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 434) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 435) | DLT_GSMTAP_UM = 0xd9 constant DLT_IBM_SN (line 436) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 437) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 438) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 439) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 440) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 441) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 442) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 443) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 444) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 445) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 446) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 447) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 448) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 449) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 450) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 451) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 452) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 453) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 454) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 455) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 456) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 457) | DLT_IP_OVER_FC = 0x7a constant DLT_ISO_14443 (line 458) | DLT_ISO_14443 = 0x108 constant DLT_JUNIPER_ATM1 (line 459) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 460) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 461) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 462) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 463) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 464) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 465) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 466) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 467) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 468) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 469) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 470) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 471) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 472) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 473) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 474) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 475) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 476) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 477) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 478) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 479) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 480) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 481) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 482) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 483) | DLT_LAPD = 0xcb constant DLT_LIN (line 484) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 485) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 486) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 487) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 488) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 489) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 490) | DLT_LOOP = 0x6c constant DLT_LORATAP (line 491) | DLT_LORATAP = 0x10e constant DLT_LTALK (line 492) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 493) | DLT_MATCHING_MAX = 0x113 constant DLT_MATCHING_MIN (line 494) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 495) | DLT_MFR = 0xb6 constant DLT_MOST (line 496) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 497) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 498) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 499) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 500) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 501) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 502) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 503) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 504) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 505) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 506) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 507) | DLT_NFLOG = 0xef constant DLT_NG40 (line 508) | DLT_NG40 = 0xf4 constant DLT_NORDIC_BLE (line 509) | DLT_NORDIC_BLE = 0x110 constant DLT_NULL (line 510) | DLT_NULL = 0x0 constant DLT_OPENFLOW (line 511) | DLT_OPENFLOW = 0x10b constant DLT_PCI_EXP (line 512) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 513) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 514) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 515) | DLT_PKTAP = 0x102 constant DLT_PPI (line 516) | DLT_PPI = 0xc0 constant DLT_PPP (line 517) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 518) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 519) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 520) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 521) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 522) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 523) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 524) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 525) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 526) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 527) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 528) | DLT_RAW = 0xc constant DLT_RDS (line 529) | DLT_RDS = 0x109 constant DLT_REDBACK_SMARTEDGE (line 530) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 531) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 532) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 533) | DLT_SCCP = 0x8e constant DLT_SCTP (line 534) | DLT_SCTP = 0xf8 constant DLT_SDLC (line 535) | DLT_SDLC = 0x10c constant DLT_SITA (line 536) | DLT_SITA = 0xc4 constant DLT_SLIP (line 537) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 538) | DLT_SLIP_BSDOS = 0xd constant DLT_STANAG_5066_D_PDU (line 539) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 540) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 541) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TI_LLN_SNIFFER (line 542) | DLT_TI_LLN_SNIFFER = 0x10d constant DLT_TZSP (line 543) | DLT_TZSP = 0x80 constant DLT_USB (line 544) | DLT_USB = 0xba constant DLT_USBPCAP (line 545) | DLT_USBPCAP = 0xf9 constant DLT_USB_DARWIN (line 546) | DLT_USB_DARWIN = 0x10a constant DLT_USB_FREEBSD (line 547) | DLT_USB_FREEBSD = 0xba constant DLT_USB_LINUX (line 548) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 549) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 550) | DLT_USER0 = 0x93 constant DLT_USER1 (line 551) | DLT_USER1 = 0x94 constant DLT_USER10 (line 552) | DLT_USER10 = 0x9d constant DLT_USER11 (line 553) | DLT_USER11 = 0x9e constant DLT_USER12 (line 554) | DLT_USER12 = 0x9f constant DLT_USER13 (line 555) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 556) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 557) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 558) | DLT_USER2 = 0x95 constant DLT_USER3 (line 559) | DLT_USER3 = 0x96 constant DLT_USER4 (line 560) | DLT_USER4 = 0x97 constant DLT_USER5 (line 561) | DLT_USER5 = 0x98 constant DLT_USER6 (line 562) | DLT_USER6 = 0x99 constant DLT_USER7 (line 563) | DLT_USER7 = 0x9a constant DLT_USER8 (line 564) | DLT_USER8 = 0x9b constant DLT_USER9 (line 565) | DLT_USER9 = 0x9c constant DLT_VSOCK (line 566) | DLT_VSOCK = 0x10f constant DLT_WATTSTOPPER_DLM (line 567) | DLT_WATTSTOPPER_DLM = 0x107 constant DLT_WIHART (line 568) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 569) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 570) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 571) | DLT_X2E_XORAYA = 0xd6 constant DLT_ZWAVE_R1_R2 (line 572) | DLT_ZWAVE_R1_R2 = 0x105 constant DLT_ZWAVE_R3 (line 573) | DLT_ZWAVE_R3 = 0x106 constant DT_BLK (line 574) | DT_BLK = 0x6 constant DT_CHR (line 575) | DT_CHR = 0x2 constant DT_DIR (line 576) | DT_DIR = 0x4 constant DT_FIFO (line 577) | DT_FIFO = 0x1 constant DT_LNK (line 578) | DT_LNK = 0xa constant DT_REG (line 579) | DT_REG = 0x8 constant DT_SOCK (line 580) | DT_SOCK = 0xc constant DT_UNKNOWN (line 581) | DT_UNKNOWN = 0x0 constant DT_WHT (line 582) | DT_WHT = 0xe constant ECHO (line 583) | ECHO = 0x8 constant ECHOCTL (line 584) | ECHOCTL = 0x40 constant ECHOE (line 585) | ECHOE = 0x2 constant ECHOK (line 586) | ECHOK = 0x4 constant ECHOKE (line 587) | ECHOKE = 0x1 constant ECHONL (line 588) | ECHONL = 0x10 constant ECHOPRT (line 589) | ECHOPRT = 0x20 constant EVFILT_AIO (line 590) | EVFILT_AIO = -0x3 constant EVFILT_EMPTY (line 591) | EVFILT_EMPTY = -0xd constant EVFILT_FS (line 592) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 593) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 594) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 595) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 596) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 597) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 598) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 599) | EVFILT_SYSCOUNT = 0xd constant EVFILT_TIMER (line 600) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 601) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 602) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 603) | EVFILT_WRITE = -0x2 constant EVNAMEMAP_NAME_SIZE (line 604) | EVNAMEMAP_NAME_SIZE = 0x40 constant EV_ADD (line 605) | EV_ADD = 0x1 constant EV_CLEAR (line 606) | EV_CLEAR = 0x20 constant EV_DELETE (line 607) | EV_DELETE = 0x2 constant EV_DISABLE (line 608) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 609) | EV_DISPATCH = 0x80 constant EV_DROP (line 610) | EV_DROP = 0x1000 constant EV_ENABLE (line 611) | EV_ENABLE = 0x4 constant EV_EOF (line 612) | EV_EOF = 0x8000 constant EV_ERROR (line 613) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 614) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 615) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 616) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 617) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 618) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 619) | EV_SYSFLAGS = 0xf000 constant EXTA (line 620) | EXTA = 0x4b00 constant EXTATTR_MAXNAMELEN (line 621) | EXTATTR_MAXNAMELEN = 0xff constant EXTATTR_NAMESPACE_EMPTY (line 622) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 623) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 624) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 625) | EXTB = 0x9600 constant EXTPROC (line 626) | EXTPROC = 0x800 constant FD_CLOEXEC (line 627) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 628) | FD_SETSIZE = 0x400 constant FLUSHO (line 629) | FLUSHO = 0x800000 constant F_CANCEL (line 630) | F_CANCEL = 0x5 constant F_DUP2FD (line 631) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 632) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 633) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 634) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 635) | F_GETFD = 0x1 constant F_GETFL (line 636) | F_GETFL = 0x3 constant F_GETLK (line 637) | F_GETLK = 0xb constant F_GETOWN (line 638) | F_GETOWN = 0x5 constant F_OGETLK (line 639) | F_OGETLK = 0x7 constant F_OK (line 640) | F_OK = 0x0 constant F_OSETLK (line 641) | F_OSETLK = 0x8 constant F_OSETLKW (line 642) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 643) | F_RDAHEAD = 0x10 constant F_RDLCK (line 644) | F_RDLCK = 0x1 constant F_READAHEAD (line 645) | F_READAHEAD = 0xf constant F_SETFD (line 646) | F_SETFD = 0x2 constant F_SETFL (line 647) | F_SETFL = 0x4 constant F_SETLK (line 648) | F_SETLK = 0xc constant F_SETLKW (line 649) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 650) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 651) | F_SETOWN = 0x6 constant F_UNLCK (line 652) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 653) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 654) | F_WRLCK = 0x3 constant HUPCL (line 655) | HUPCL = 0x4000 constant HW_MACHINE (line 656) | HW_MACHINE = 0x1 constant ICANON (line 657) | ICANON = 0x100 constant ICMP6_FILTER (line 658) | ICMP6_FILTER = 0x12 constant ICRNL (line 659) | ICRNL = 0x100 constant IEXTEN (line 660) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 661) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 662) | IFAN_DEPARTURE = 0x1 constant IFCAP_WOL_MAGIC (line 663) | IFCAP_WOL_MAGIC = 0x2000 constant IFF_ALLMULTI (line 664) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 665) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 666) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 667) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 668) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 669) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 670) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 671) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 672) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 673) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 674) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 675) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 676) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 677) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 678) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 679) | IFF_NOARP = 0x80 constant IFF_NOGROUP (line 680) | IFF_NOGROUP = 0x800000 constant IFF_OACTIVE (line 681) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 682) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 683) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 684) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 685) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 686) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 687) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 688) | IFF_STATICARP = 0x80000 constant IFF_UP (line 689) | IFF_UP = 0x1 constant IFNAMSIZ (line 690) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 691) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 692) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 693) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 694) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 695) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 696) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 697) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 698) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 699) | IGNBRK = 0x1 constant IGNCR (line 700) | IGNCR = 0x80 constant IGNPAR (line 701) | IGNPAR = 0x4 constant IMAXBEL (line 702) | IMAXBEL = 0x2000 constant INLCR (line 703) | INLCR = 0x40 constant INPCK (line 704) | INPCK = 0x10 constant IN_CLASSA_HOST (line 705) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 706) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 707) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 708) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 709) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 710) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 711) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 712) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 713) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 714) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 715) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 716) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 717) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 718) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 719) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 720) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 721) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 722) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 723) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 724) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 725) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 726) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 727) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 728) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 729) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 730) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 731) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 732) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 733) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 734) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 735) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 736) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 737) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 738) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 739) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 740) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 741) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 742) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 743) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 744) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 745) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 746) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 747) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 748) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 749) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 750) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 751) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 752) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 753) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 754) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 755) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 756) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 757) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 758) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 759) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 760) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 761) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 762) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 763) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 764) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 765) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 766) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 767) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 768) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 769) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 770) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 771) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 772) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 773) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 774) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 775) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 776) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 777) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 778) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 779) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 780) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 781) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 782) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 783) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 784) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 785) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 786) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 787) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 788) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 789) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 790) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 791) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 792) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 793) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 794) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 795) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 796) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 797) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 798) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 799) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 800) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 801) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 802) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 803) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 804) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 805) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 806) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 807) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 808) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 809) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 810) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 811) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 812) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 813) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 814) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 815) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 816) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 817) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 818) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 819) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 820) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 821) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 822) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 823) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 824) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 825) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 826) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 827) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 828) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 829) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 830) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 831) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 832) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 833) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 834) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 835) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 836) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 837) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 838) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 839) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 840) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 841) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 842) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 843) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 844) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 845) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 846) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 847) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 848) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 849) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 850) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 851) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 852) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 853) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 854) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_LEN (line 855) | IPV6_FLOWLABEL_LEN = 0x14 constant IPV6_FLOWLABEL_MASK (line 856) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 857) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 858) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 859) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 860) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 861) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 862) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 863) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 864) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 865) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 866) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 867) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 868) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 869) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 870) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 871) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 872) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 873) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 874) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 875) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MMTU (line 876) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 877) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 878) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 879) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 880) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 881) | IPV6_NEXTHOP = 0x30 constant IPV6_ORIGDSTADDR (line 882) | IPV6_ORIGDSTADDR = 0x48 constant IPV6_PATHMTU (line 883) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 884) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 885) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 886) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 887) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 888) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 889) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 890) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 891) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 892) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 893) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVORIGDSTADDR (line 894) | IPV6_RECVORIGDSTADDR = 0x48 constant IPV6_RECVPATHMTU (line 895) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 896) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 897) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 898) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 899) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 900) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 901) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 902) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 903) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 904) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 905) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 906) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 907) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 908) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 909) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 910) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 911) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 912) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 913) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 914) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 915) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 916) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 917) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 918) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 919) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 920) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 921) | IP_DF = 0x4000 constant IP_DONTFRAG (line 922) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 923) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 924) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 925) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 926) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 927) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 928) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 929) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 930) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 931) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 932) | IP_FW3 = 0x30 constant IP_FW_ADD (line 933) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 934) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 935) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 936) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 937) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 938) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 939) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 940) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 941) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 942) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 943) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 944) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 945) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 946) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 947) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 948) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 949) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 950) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 951) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 952) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 953) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 954) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 955) | IP_MF = 0x2000 constant IP_MINTTL (line 956) | IP_MINTTL = 0x42 constant IP_MSFILTER (line 957) | IP_MSFILTER = 0x4a constant IP_MSS (line 958) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 959) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 960) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 961) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 962) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 963) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 964) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 965) | IP_OPTIONS = 0x1 constant IP_ORIGDSTADDR (line 966) | IP_ORIGDSTADDR = 0x1b constant IP_PORTRANGE (line 967) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 968) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 969) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 970) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 971) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 972) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 973) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 974) | IP_RECVOPTS = 0x5 constant IP_RECVORIGDSTADDR (line 975) | IP_RECVORIGDSTADDR = 0x1b constant IP_RECVRETOPTS (line 976) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 977) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 978) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 979) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 980) | IP_RETOPTS = 0x8 constant IP_RF (line 981) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 982) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 983) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 984) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 985) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 986) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 987) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 988) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 989) | IP_TOS = 0x3 constant IP_TTL (line 990) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 991) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 992) | ISIG = 0x80 constant ISTRIP (line 993) | ISTRIP = 0x20 constant IXANY (line 994) | IXANY = 0x800 constant IXOFF (line 995) | IXOFF = 0x400 constant IXON (line 996) | IXON = 0x200 constant KERN_HOSTNAME (line 997) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 998) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 999) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 1000) | KERN_VERSION = 0x4 constant LOCAL_CONNWAIT (line 1001) | LOCAL_CONNWAIT = 0x4 constant LOCAL_CREDS (line 1002) | LOCAL_CREDS = 0x2 constant LOCAL_CREDS_PERSISTENT (line 1003) | LOCAL_CREDS_PERSISTENT = 0x3 constant LOCAL_PEERCRED (line 1004) | LOCAL_PEERCRED = 0x1 constant LOCAL_VENDOR (line 1005) | LOCAL_VENDOR = 0x80000000 constant LOCK_EX (line 1006) | LOCK_EX = 0x2 constant LOCK_NB (line 1007) | LOCK_NB = 0x4 constant LOCK_SH (line 1008) | LOCK_SH = 0x1 constant LOCK_UN (line 1009) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 1010) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 1011) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 1012) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1013) | MADV_FREE = 0x5 constant MADV_NOCORE (line 1014) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 1015) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 1016) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1017) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1018) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1019) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1020) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 1021) | MAP_32BIT = 0x80000 constant MAP_ALIGNED_SUPER (line 1022) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1023) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1024) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1025) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1026) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1027) | MAP_COPY = 0x2 constant MAP_EXCL (line 1028) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1029) | MAP_FILE = 0x0 constant MAP_FIXED (line 1030) | MAP_FIXED = 0x10 constant MAP_GUARD (line 1031) | MAP_GUARD = 0x2000 constant MAP_HASSEMAPHORE (line 1032) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1033) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 1034) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1035) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1036) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 1037) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 1038) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 1039) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1040) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1041) | MAP_SHARED = 0x1 constant MAP_STACK (line 1042) | MAP_STACK = 0x400 constant MCAST_BLOCK_SOURCE (line 1043) | MCAST_BLOCK_SOURCE = 0x54 constant MCAST_EXCLUDE (line 1044) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 1045) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 1046) | MCAST_JOIN_GROUP = 0x50 constant MCAST_JOIN_SOURCE_GROUP (line 1047) | MCAST_JOIN_SOURCE_GROUP = 0x52 constant MCAST_LEAVE_GROUP (line 1048) | MCAST_LEAVE_GROUP = 0x51 constant MCAST_LEAVE_SOURCE_GROUP (line 1049) | MCAST_LEAVE_SOURCE_GROUP = 0x53 constant MCAST_UNBLOCK_SOURCE (line 1050) | MCAST_UNBLOCK_SOURCE = 0x55 constant MCAST_UNDEFINED (line 1051) | MCAST_UNDEFINED = 0x0 constant MCL_CURRENT (line 1052) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1053) | MCL_FUTURE = 0x2 constant MNT_ACLS (line 1054) | MNT_ACLS = 0x8000000 constant MNT_ASYNC (line 1055) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 1056) | MNT_AUTOMOUNTED = 0x200000000 constant MNT_BYFSID (line 1057) | MNT_BYFSID = 0x8000000 constant MNT_CMDFLAGS (line 1058) | MNT_CMDFLAGS = 0xd0f0000 constant MNT_DEFEXPORTED (line 1059) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 1060) | MNT_DELEXPORT = 0x20000 constant MNT_EXKERB (line 1061) | MNT_EXKERB = 0x800 constant MNT_EXPORTANON (line 1062) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1063) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1064) | MNT_EXPUBLIC = 0x20000000 constant MNT_EXRDONLY (line 1065) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 1066) | MNT_FORCE = 0x80000 constant MNT_GJOURNAL (line 1067) | MNT_GJOURNAL = 0x2000000 constant MNT_IGNORE (line 1068) | MNT_IGNORE = 0x800000 constant MNT_LAZY (line 1069) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1070) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 1071) | MNT_MULTILABEL = 0x4000000 constant MNT_NFS4ACLS (line 1072) | MNT_NFS4ACLS = 0x10 constant MNT_NOATIME (line 1073) | MNT_NOATIME = 0x10000000 constant MNT_NOCLUSTERR (line 1074) | MNT_NOCLUSTERR = 0x40000000 constant MNT_NOCLUSTERW (line 1075) | MNT_NOCLUSTERW = 0x80000000 constant MNT_NOEXEC (line 1076) | MNT_NOEXEC = 0x4 constant MNT_NONBUSY (line 1077) | MNT_NONBUSY = 0x4000000 constant MNT_NOSUID (line 1078) | MNT_NOSUID = 0x8 constant MNT_NOSYMFOLLOW (line 1079) | MNT_NOSYMFOLLOW = 0x400000 constant MNT_NOWAIT (line 1080) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 1081) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1082) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1083) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1084) | MNT_ROOTFS = 0x4000 constant MNT_SNAPSHOT (line 1085) | MNT_SNAPSHOT = 0x1000000 constant MNT_SOFTDEP (line 1086) | MNT_SOFTDEP = 0x200000 constant MNT_SUIDDIR (line 1087) | MNT_SUIDDIR = 0x100000 constant MNT_SUJ (line 1088) | MNT_SUJ = 0x100000000 constant MNT_SUSPEND (line 1089) | MNT_SUSPEND = 0x4 constant MNT_SYNCHRONOUS (line 1090) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1091) | MNT_UNION = 0x20 constant MNT_UNTRUSTED (line 1092) | MNT_UNTRUSTED = 0x800000000 constant MNT_UPDATE (line 1093) | MNT_UPDATE = 0x10000 constant MNT_UPDATEMASK (line 1094) | MNT_UPDATEMASK = 0xad8d0807e constant MNT_USER (line 1095) | MNT_USER = 0x8000 constant MNT_VERIFIED (line 1096) | MNT_VERIFIED = 0x400000000 constant MNT_VISFLAGMASK (line 1097) | MNT_VISFLAGMASK = 0xffef0ffff constant MNT_WAIT (line 1098) | MNT_WAIT = 0x1 constant MSG_CMSG_CLOEXEC (line 1099) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1100) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1101) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1102) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1103) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1104) | MSG_EOF = 0x100 constant MSG_EOR (line 1105) | MSG_EOR = 0x8 constant MSG_NBIO (line 1106) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1107) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1108) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1109) | MSG_OOB = 0x1 constant MSG_PEEK (line 1110) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1111) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1112) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 1113) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 1114) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1115) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1116) | MS_SYNC = 0x0 constant NAME_MAX (line 1117) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1118) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1119) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1120) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1121) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1122) | NET_RT_IFMALIST = 0x4 constant NFDBITS (line 1123) | NFDBITS = 0x40 constant NOFLSH (line 1124) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1125) | NOKERNINFO = 0x2000000 constant NOTE_ABSTIME (line 1126) | NOTE_ABSTIME = 0x10 constant NOTE_ATTRIB (line 1127) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1128) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1129) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1130) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1131) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1132) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1133) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1134) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1135) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1136) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1137) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1138) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1139) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1140) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1141) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1142) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1143) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1144) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1145) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1146) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1147) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1148) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1149) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1150) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1151) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1152) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1153) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1154) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1155) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1156) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1157) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1158) | NOTE_WRITE = 0x2 constant OCRNL (line 1159) | OCRNL = 0x10 constant ONLCR (line 1160) | ONLCR = 0x2 constant ONLRET (line 1161) | ONLRET = 0x40 constant ONOCR (line 1162) | ONOCR = 0x20 constant ONOEOT (line 1163) | ONOEOT = 0x8 constant OPOST (line 1164) | OPOST = 0x1 constant OXTABS (line 1165) | OXTABS = 0x4 constant O_ACCMODE (line 1166) | O_ACCMODE = 0x3 constant O_APPEND (line 1167) | O_APPEND = 0x8 constant O_ASYNC (line 1168) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1169) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1170) | O_CREAT = 0x200 constant O_DIRECT (line 1171) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1172) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1173) | O_EXCL = 0x800 constant O_EXEC (line 1174) | O_EXEC = 0x40000 constant O_EXLOCK (line 1175) | O_EXLOCK = 0x20 constant O_FSYNC (line 1176) | O_FSYNC = 0x80 constant O_NDELAY (line 1177) | O_NDELAY = 0x4 constant O_NOCTTY (line 1178) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1179) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1180) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1181) | O_RDONLY = 0x0 constant O_RDWR (line 1182) | O_RDWR = 0x2 constant O_SHLOCK (line 1183) | O_SHLOCK = 0x10 constant O_SYNC (line 1184) | O_SYNC = 0x80 constant O_TRUNC (line 1185) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1186) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1187) | O_VERIFY = 0x200000 constant O_WRONLY (line 1188) | O_WRONLY = 0x1 constant PARENB (line 1189) | PARENB = 0x1000 constant PARMRK (line 1190) | PARMRK = 0x8 constant PARODD (line 1191) | PARODD = 0x2000 constant PENDIN (line 1192) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1193) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1194) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1195) | PRIO_USER = 0x2 constant PROT_EXEC (line 1196) | PROT_EXEC = 0x4 constant PROT_NONE (line 1197) | PROT_NONE = 0x0 constant PROT_READ (line 1198) | PROT_READ = 0x1 constant PROT_WRITE (line 1199) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1200) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1201) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1202) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1203) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1204) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1205) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1206) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1207) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1208) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1209) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1210) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1211) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1212) | RTAX_BRD = 0x7 constant RTAX_DST (line 1213) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1214) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1215) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1216) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1217) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1218) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1219) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1220) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1221) | RTA_BRD = 0x80 constant RTA_DST (line 1222) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1223) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1224) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1225) | RTA_IFA = 0x20 constant RTA_IFP (line 1226) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1227) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1228) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1229) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1230) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1231) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1232) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1233) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1234) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1235) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1236) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1237) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1238) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1239) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1240) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1241) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1242) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1243) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1244) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1245) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1246) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1247) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1248) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1249) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1250) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1251) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1252) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1253) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1254) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1255) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1256) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1257) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1258) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1259) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1260) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1261) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1262) | RTM_LOSING = 0x5 constant RTM_MISS (line 1263) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1264) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1265) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1266) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1267) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1268) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1269) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1270) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1271) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1272) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1273) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1274) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1275) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1276) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1277) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1278) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1279) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1280) | RT_BLACKHOLE = 0x40 constant RT_DEFAULT_FIB (line 1281) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1282) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1283) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1284) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1285) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1286) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1287) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1288) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1289) | RT_MAY_LOOP_BIT = 0x3 constant RT_REJECT (line 1290) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1291) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1292) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1293) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1294) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1295) | SCM_CREDS = 0x3 constant SCM_MONOTONIC (line 1296) | SCM_MONOTONIC = 0x6 constant SCM_REALTIME (line 1297) | SCM_REALTIME = 0x5 constant SCM_RIGHTS (line 1298) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1299) | SCM_TIMESTAMP = 0x2 constant SCM_TIME_INFO (line 1300) | SCM_TIME_INFO = 0x7 constant SEEK_CUR (line 1301) | SEEK_CUR = 0x1 constant SEEK_DATA (line 1302) | SEEK_DATA = 0x3 constant SEEK_END (line 1303) | SEEK_END = 0x2 constant SEEK_HOLE (line 1304) | SEEK_HOLE = 0x4 constant SEEK_SET (line 1305) | SEEK_SET = 0x0 constant SHUT_RD (line 1306) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1307) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1308) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1309) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1310) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1311) | SIOCAIFGROUP = 0x80286987 constant SIOCATMARK (line 1312) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1313) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1314) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1315) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1316) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1317) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1318) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1319) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1320) | SIOCGHIWAT = 0x40047301 constant SIOCGHWADDR (line 1321) | SIOCGHWADDR = 0xc020693e constant SIOCGI2C (line 1322) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1323) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1324) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1325) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1326) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDESCR (line 1327) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1328) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1329) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1330) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1331) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1332) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1333) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFINDEX (line 1334) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1335) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1336) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1337) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1338) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1339) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1340) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1341) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1342) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRSSHASH (line 1343) | SIOCGIFRSSHASH = 0xc0186997 constant SIOCGIFRSSKEY (line 1344) | SIOCGIFRSSKEY = 0xc0946996 constant SIOCGIFSTATUS (line 1345) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1346) | SIOCGIFXMEDIA = 0xc030698b constant SIOCGLANPCP (line 1347) | SIOCGLANPCP = 0xc0206998 constant SIOCGLOWAT (line 1348) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1349) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1350) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1351) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1352) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1353) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1354) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1355) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1356) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1357) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1358) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1359) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1360) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1361) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1362) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1363) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1364) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1365) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1366) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1367) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1368) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1369) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1370) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1371) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1372) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1373) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1374) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1375) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1376) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1377) | SIOCSIFVNET = 0xc020695a constant SIOCSLANPCP (line 1378) | SIOCSLANPCP = 0x80206999 constant SIOCSLOWAT (line 1379) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1380) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1381) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1382) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1383) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1384) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1385) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1386) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1387) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1388) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1389) | SOCK_STREAM = 0x1 constant SOL_LOCAL (line 1390) | SOL_LOCAL = 0x0 constant SOL_SOCKET (line 1391) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1392) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1393) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1394) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1395) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1396) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1397) | SO_DEBUG = 0x1 constant SO_DOMAIN (line 1398) | SO_DOMAIN = 0x1019 constant SO_DONTROUTE (line 1399) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1400) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1401) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1402) | SO_LABEL = 0x1009 constant SO_LINGER (line 1403) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1404) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1405) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1406) | SO_LISTENQLIMIT = 0x1011 constant SO_MAX_PACING_RATE (line 1407) | SO_MAX_PACING_RATE = 0x1018 constant SO_NOSIGPIPE (line 1408) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1409) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1410) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1411) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1412) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1413) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1414) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1415) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1416) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1417) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1418) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1419) | SO_REUSEPORT = 0x200 constant SO_REUSEPORT_LB (line 1420) | SO_REUSEPORT_LB = 0x10000 constant SO_SETFIB (line 1421) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1422) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1423) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1424) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1425) | SO_TIMESTAMP = 0x400 constant SO_TS_BINTIME (line 1426) | SO_TS_BINTIME = 0x1 constant SO_TS_CLOCK (line 1427) | SO_TS_CLOCK = 0x1017 constant SO_TS_CLOCK_MAX (line 1428) | SO_TS_CLOCK_MAX = 0x3 constant SO_TS_DEFAULT (line 1429) | SO_TS_DEFAULT = 0x0 constant SO_TS_MONOTONIC (line 1430) | SO_TS_MONOTONIC = 0x3 constant SO_TS_REALTIME (line 1431) | SO_TS_REALTIME = 0x2 constant SO_TS_REALTIME_MICRO (line 1432) | SO_TS_REALTIME_MICRO = 0x0 constant SO_TYPE (line 1433) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1434) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1435) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1436) | SO_VENDOR = 0x80000000 constant S_BLKSIZE (line 1437) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1438) | S_IEXEC = 0x40 constant S_IFBLK (line 1439) | S_IFBLK = 0x6000 constant S_IFCHR (line 1440) | S_IFCHR = 0x2000 constant S_IFDIR (line 1441) | S_IFDIR = 0x4000 constant S_IFIFO (line 1442) | S_IFIFO = 0x1000 constant S_IFLNK (line 1443) | S_IFLNK = 0xa000 constant S_IFMT (line 1444) | S_IFMT = 0xf000 constant S_IFREG (line 1445) | S_IFREG = 0x8000 constant S_IFSOCK (line 1446) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1447) | S_IFWHT = 0xe000 constant S_IREAD (line 1448) | S_IREAD = 0x100 constant S_IRGRP (line 1449) | S_IRGRP = 0x20 constant S_IROTH (line 1450) | S_IROTH = 0x4 constant S_IRUSR (line 1451) | S_IRUSR = 0x100 constant S_IRWXG (line 1452) | S_IRWXG = 0x38 constant S_IRWXO (line 1453) | S_IRWXO = 0x7 constant S_IRWXU (line 1454) | S_IRWXU = 0x1c0 constant S_ISGID (line 1455) | S_ISGID = 0x400 constant S_ISTXT (line 1456) | S_ISTXT = 0x200 constant S_ISUID (line 1457) | S_ISUID = 0x800 constant S_ISVTX (line 1458) | S_ISVTX = 0x200 constant S_IWGRP (line 1459) | S_IWGRP = 0x10 constant S_IWOTH (line 1460) | S_IWOTH = 0x2 constant S_IWRITE (line 1461) | S_IWRITE = 0x80 constant S_IWUSR (line 1462) | S_IWUSR = 0x80 constant S_IXGRP (line 1463) | S_IXGRP = 0x8 constant S_IXOTH (line 1464) | S_IXOTH = 0x1 constant S_IXUSR (line 1465) | S_IXUSR = 0x40 constant TAB0 (line 1466) | TAB0 = 0x0 constant TAB3 (line 1467) | TAB3 = 0x4 constant TABDLY (line 1468) | TABDLY = 0x4 constant TCIFLUSH (line 1469) | TCIFLUSH = 0x1 constant TCIOFF (line 1470) | TCIOFF = 0x3 constant TCIOFLUSH (line 1471) | TCIOFLUSH = 0x3 constant TCION (line 1472) | TCION = 0x4 constant TCOFLUSH (line 1473) | TCOFLUSH = 0x2 constant TCOOFF (line 1474) | TCOOFF = 0x1 constant TCOON (line 1475) | TCOON = 0x2 constant TCP_BBR_ACK_COMP_ALG (line 1476) | TCP_BBR_ACK_COMP_ALG = 0x448 constant TCP_BBR_DRAIN_INC_EXTRA (line 1477) | TCP_BBR_DRAIN_INC_EXTRA = 0x43c constant TCP_BBR_DRAIN_PG (line 1478) | TCP_BBR_DRAIN_PG = 0x42e constant TCP_BBR_EXTRA_GAIN (line 1479) | TCP_BBR_EXTRA_GAIN = 0x449 constant TCP_BBR_IWINTSO (line 1480) | TCP_BBR_IWINTSO = 0x42b constant TCP_BBR_LOWGAIN_FD (line 1481) | TCP_BBR_LOWGAIN_FD = 0x436 constant TCP_BBR_LOWGAIN_HALF (line 1482) | TCP_BBR_LOWGAIN_HALF = 0x435 constant TCP_BBR_LOWGAIN_THRESH (line 1483) | TCP_BBR_LOWGAIN_THRESH = 0x434 constant TCP_BBR_MAX_RTO (line 1484) | TCP_BBR_MAX_RTO = 0x439 constant TCP_BBR_MIN_RTO (line 1485) | TCP_BBR_MIN_RTO = 0x438 constant TCP_BBR_ONE_RETRAN (line 1486) | TCP_BBR_ONE_RETRAN = 0x431 constant TCP_BBR_PACE_CROSS (line 1487) | TCP_BBR_PACE_CROSS = 0x442 constant TCP_BBR_PACE_DEL_TAR (line 1488) | TCP_BBR_PACE_DEL_TAR = 0x43f constant TCP_BBR_PACE_PER_SEC (line 1489) | TCP_BBR_PACE_PER_SEC = 0x43e constant TCP_BBR_PACE_SEG_MAX (line 1490) | TCP_BBR_PACE_SEG_MAX = 0x440 constant TCP_BBR_PACE_SEG_MIN (line 1491) | TCP_BBR_PACE_SEG_MIN = 0x441 constant TCP_BBR_PROBE_RTT_GAIN (line 1492) | TCP_BBR_PROBE_RTT_GAIN = 0x44d constant TCP_BBR_PROBE_RTT_INT (line 1493) | TCP_BBR_PROBE_RTT_INT = 0x430 constant TCP_BBR_PROBE_RTT_LEN (line 1494) | TCP_BBR_PROBE_RTT_LEN = 0x44e constant TCP_BBR_RACK_RTT_USE (line 1495) | TCP_BBR_RACK_RTT_USE = 0x44a constant TCP_BBR_RECFORCE (line 1496) | TCP_BBR_RECFORCE = 0x42c constant TCP_BBR_REC_OVER_HPTS (line 1497) | TCP_BBR_REC_OVER_HPTS = 0x43a constant TCP_BBR_RETRAN_WTSO (line 1498) | TCP_BBR_RETRAN_WTSO = 0x44b constant TCP_BBR_RWND_IS_APP (line 1499) | TCP_BBR_RWND_IS_APP = 0x42f constant TCP_BBR_STARTUP_EXIT_EPOCH (line 1500) | TCP_BBR_STARTUP_EXIT_EPOCH = 0x43d constant TCP_BBR_STARTUP_LOSS_EXIT (line 1501) | TCP_BBR_STARTUP_LOSS_EXIT = 0x432 constant TCP_BBR_STARTUP_PG (line 1502) | TCP_BBR_STARTUP_PG = 0x42d constant TCP_BBR_UNLIMITED (line 1503) | TCP_BBR_UNLIMITED = 0x43b constant TCP_BBR_USEDEL_RATE (line 1504) | TCP_BBR_USEDEL_RATE = 0x437 constant TCP_BBR_USE_LOWGAIN (line 1505) | TCP_BBR_USE_LOWGAIN = 0x433 constant TCP_CA_NAME_MAX (line 1506) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1507) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1508) | TCP_CONGESTION = 0x40 constant TCP_DATA_AFTER_CLOSE (line 1509) | TCP_DATA_AFTER_CLOSE = 0x44c constant TCP_DELACK (line 1510) | TCP_DELACK = 0x48 constant TCP_FASTOPEN (line 1511) | TCP_FASTOPEN = 0x401 constant TCP_FASTOPEN_MAX_COOKIE_LEN (line 1512) | TCP_FASTOPEN_MAX_COOKIE_LEN = 0x10 constant TCP_FASTOPEN_MIN_COOKIE_LEN (line 1513) | TCP_FASTOPEN_MIN_COOKIE_LEN = 0x4 constant TCP_FASTOPEN_PSK_LEN (line 1514) | TCP_FASTOPEN_PSK_LEN = 0x10 constant TCP_FUNCTION_BLK (line 1515) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1516) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1517) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1518) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1519) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1520) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1521) | TCP_KEEPINTVL = 0x200 constant TCP_LOG (line 1522) | TCP_LOG = 0x22 constant TCP_LOGBUF (line 1523) | TCP_LOGBUF = 0x23 constant TCP_LOGDUMP (line 1524) | TCP_LOGDUMP = 0x25 constant TCP_LOGDUMPID (line 1525) | TCP_LOGDUMPID = 0x26 constant TCP_LOGID (line 1526) | TCP_LOGID = 0x24 constant TCP_LOG_ID_LEN (line 1527) | TCP_LOG_ID_LEN = 0x40 constant TCP_MAXBURST (line 1528) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1529) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1530) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1531) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1532) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1533) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1534) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1535) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1536) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1537) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1538) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1539) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1540) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1541) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1542) | TCP_PCAP_OUT = 0x800 constant TCP_RACK_EARLY_RECOV (line 1543) | TCP_RACK_EARLY_RECOV = 0x423 constant TCP_RACK_EARLY_SEG (line 1544) | TCP_RACK_EARLY_SEG = 0x424 constant TCP_RACK_IDLE_REDUCE_HIGH (line 1545) | TCP_RACK_IDLE_REDUCE_HIGH = 0x444 constant TCP_RACK_MIN_PACE (line 1546) | TCP_RACK_MIN_PACE = 0x445 constant TCP_RACK_MIN_PACE_SEG (line 1547) | TCP_RACK_MIN_PACE_SEG = 0x446 constant TCP_RACK_MIN_TO (line 1548) | TCP_RACK_MIN_TO = 0x422 constant TCP_RACK_PACE_ALWAYS (line 1549) | TCP_RACK_PACE_ALWAYS = 0x41f constant TCP_RACK_PACE_MAX_SEG (line 1550) | TCP_RACK_PACE_MAX_SEG = 0x41e constant TCP_RACK_PACE_REDUCE (line 1551) | TCP_RACK_PACE_REDUCE = 0x41d constant TCP_RACK_PKT_DELAY (line 1552) | TCP_RACK_PKT_DELAY = 0x428 constant TCP_RACK_PROP (line 1553) | TCP_RACK_PROP = 0x41b constant TCP_RACK_PROP_RATE (line 1554) | TCP_RACK_PROP_RATE = 0x420 constant TCP_RACK_PRR_SENDALOT (line 1555) | TCP_RACK_PRR_SENDALOT = 0x421 constant TCP_RACK_REORD_FADE (line 1556) | TCP_RACK_REORD_FADE = 0x426 constant TCP_RACK_REORD_THRESH (line 1557) | TCP_RACK_REORD_THRESH = 0x425 constant TCP_RACK_SESS_CWV (line 1558) | TCP_RACK_SESS_CWV = 0x42a constant TCP_RACK_TLP_INC_VAR (line 1559) | TCP_RACK_TLP_INC_VAR = 0x429 constant TCP_RACK_TLP_REDUCE (line 1560) | TCP_RACK_TLP_REDUCE = 0x41c constant TCP_RACK_TLP_THRESH (line 1561) | TCP_RACK_TLP_THRESH = 0x427 constant TCP_RACK_TLP_USE (line 1562) | TCP_RACK_TLP_USE = 0x447 constant TCP_VENDOR (line 1563) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1564) | TCSAFLUSH = 0x2 constant TIMER_ABSTIME (line 1565) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1566) | TIMER_RELTIME = 0x0 constant TIOCCBRK (line 1567) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1568) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1569) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1570) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1571) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1572) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1573) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1574) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1575) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1576) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1577) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1578) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1579) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1580) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1581) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1582) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1583) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1584) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1585) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1586) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1587) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1588) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1589) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1590) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1591) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1592) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1593) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1594) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1595) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1596) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1597) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1598) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1599) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1600) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1601) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1602) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1603) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1604) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1605) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1606) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1607) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1608) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1609) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1610) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1611) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1612) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1613) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1614) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1615) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1616) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1617) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1618) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1619) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1620) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1621) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1622) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1623) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1624) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1625) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1626) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1627) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1628) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1629) | TOSTOP = 0x400000 constant UTIME_NOW (line 1630) | UTIME_NOW = -0x1 constant UTIME_OMIT (line 1631) | UTIME_OMIT = -0x2 constant VDISCARD (line 1632) | VDISCARD = 0xf constant VDSUSP (line 1633) | VDSUSP = 0xb constant VEOF (line 1634) | VEOF = 0x0 constant VEOL (line 1635) | VEOL = 0x1 constant VEOL2 (line 1636) | VEOL2 = 0x2 constant VERASE (line 1637) | VERASE = 0x3 constant VERASE2 (line 1638) | VERASE2 = 0x7 constant VINTR (line 1639) | VINTR = 0x8 constant VKILL (line 1640) | VKILL = 0x5 constant VLNEXT (line 1641) | VLNEXT = 0xe constant VMIN (line 1642) | VMIN = 0x10 constant VQUIT (line 1643) | VQUIT = 0x9 constant VREPRINT (line 1644) | VREPRINT = 0x6 constant VSTART (line 1645) | VSTART = 0xc constant VSTATUS (line 1646) | VSTATUS = 0x12 constant VSTOP (line 1647) | VSTOP = 0xd constant VSUSP (line 1648) | VSUSP = 0xa constant VTIME (line 1649) | VTIME = 0x11 constant VWERASE (line 1650) | VWERASE = 0x4 constant WCONTINUED (line 1651) | WCONTINUED = 0x4 constant WCOREFLAG (line 1652) | WCOREFLAG = 0x80 constant WEXITED (line 1653) | WEXITED = 0x10 constant WLINUXCLONE (line 1654) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1655) | WNOHANG = 0x1 constant WNOWAIT (line 1656) | WNOWAIT = 0x8 constant WSTOPPED (line 1657) | WSTOPPED = 0x2 constant WTRAPPED (line 1658) | WTRAPPED = 0x20 constant WUNTRACED (line 1659) | WUNTRACED = 0x2 constant E2BIG (line 1664) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1665) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1666) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1667) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1668) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1669) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1670) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1671) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1672) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1673) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1674) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1675) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1676) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1677) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1678) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1679) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1680) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1681) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1682) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1683) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1684) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1685) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1686) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1687) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1688) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1689) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1690) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1691) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1692) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1693) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1694) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1695) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1696) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1697) | EINVAL = syscall.Errno(0x16) constant EIO (line 1698) | EIO = syscall.Errno(0x5) constant EISCONN (line 1699) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1700) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1701) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1702) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1703) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1704) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1705) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1706) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1707) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1708) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1709) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1710) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1711) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1712) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1713) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1714) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1715) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1716) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1717) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1718) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1719) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1720) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1721) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1722) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1723) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1724) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1725) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1726) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1727) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1728) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1729) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1730) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1731) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1732) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1733) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1734) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1735) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1736) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1737) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1738) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1739) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1740) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1741) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1742) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1743) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1744) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1745) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1746) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1747) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1748) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1749) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1750) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1751) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1752) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1753) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1754) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1755) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1756) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1757) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1758) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1759) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1760) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1761) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1762) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1767) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1768) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1769) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1770) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1771) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1772) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1773) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1774) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1775) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1776) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1777) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1778) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1779) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1780) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1781) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1782) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1783) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1784) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1785) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1786) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1787) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1788) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1789) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1790) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1791) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1792) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1793) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1794) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1795) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1796) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1797) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1798) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1799) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1800) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1801) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x23 constant AF_ATM (line 17) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 18) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 19) | AF_CCITT = 0xa constant AF_CHAOS (line 20) | AF_CHAOS = 0x5 constant AF_CNT (line 21) | AF_CNT = 0x15 constant AF_COIP (line 22) | AF_COIP = 0x14 constant AF_DATAKIT (line 23) | AF_DATAKIT = 0x9 constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_DLI (line 25) | AF_DLI = 0xd constant AF_E164 (line 26) | AF_E164 = 0x1a constant AF_ECMA (line 27) | AF_ECMA = 0x8 constant AF_HYLINK (line 28) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 29) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 30) | AF_IMPLINK = 0x3 constant AF_INET (line 31) | AF_INET = 0x2 constant AF_INET6 (line 32) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 33) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 34) | AF_INET_SDP = 0x28 constant AF_IPX (line 35) | AF_IPX = 0x17 constant AF_ISDN (line 36) | AF_ISDN = 0x1a constant AF_ISO (line 37) | AF_ISO = 0x7 constant AF_LAT (line 38) | AF_LAT = 0xe constant AF_LINK (line 39) | AF_LINK = 0x12 constant AF_LOCAL (line 40) | AF_LOCAL = 0x1 constant AF_MAX (line 41) | AF_MAX = 0x2a constant AF_NATM (line 42) | AF_NATM = 0x1d constant AF_NETBIOS (line 43) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 44) | AF_NETGRAPH = 0x20 constant AF_OSI (line 45) | AF_OSI = 0x7 constant AF_PUP (line 46) | AF_PUP = 0x4 constant AF_ROUTE (line 47) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 48) | AF_SCLUSTER = 0x22 constant AF_SIP (line 49) | AF_SIP = 0x18 constant AF_SLOW (line 50) | AF_SLOW = 0x21 constant AF_SNA (line 51) | AF_SNA = 0xb constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 54) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 55) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 56) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 57) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 58) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 59) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 60) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 61) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 62) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 63) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 64) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 65) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 66) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 67) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 68) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 69) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 70) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 71) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 72) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 73) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 74) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 75) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 76) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 77) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 78) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 79) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 80) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 81) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 82) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 83) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 84) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 85) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 86) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 87) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 88) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 89) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 90) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 91) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 92) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 93) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 94) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 95) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 96) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 97) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 98) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 99) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 100) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 101) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 102) | ALTWERASE = 0x200 constant B0 (line 103) | B0 = 0x0 constant B110 (line 104) | B110 = 0x6e constant B115200 (line 105) | B115200 = 0x1c200 constant B1200 (line 106) | B1200 = 0x4b0 constant B134 (line 107) | B134 = 0x86 constant B14400 (line 108) | B14400 = 0x3840 constant B150 (line 109) | B150 = 0x96 constant B1800 (line 110) | B1800 = 0x708 constant B19200 (line 111) | B19200 = 0x4b00 constant B200 (line 112) | B200 = 0xc8 constant B230400 (line 113) | B230400 = 0x38400 constant B2400 (line 114) | B2400 = 0x960 constant B28800 (line 115) | B28800 = 0x7080 constant B300 (line 116) | B300 = 0x12c constant B38400 (line 117) | B38400 = 0x9600 constant B460800 (line 118) | B460800 = 0x70800 constant B4800 (line 119) | B4800 = 0x12c0 constant B50 (line 120) | B50 = 0x32 constant B57600 (line 121) | B57600 = 0xe100 constant B600 (line 122) | B600 = 0x258 constant B7200 (line 123) | B7200 = 0x1c20 constant B75 (line 124) | B75 = 0x4b constant B76800 (line 125) | B76800 = 0x12c00 constant B921600 (line 126) | B921600 = 0xe1000 constant B9600 (line 127) | B9600 = 0x2580 constant BIOCFEEDBACK (line 128) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 129) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 130) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 131) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 132) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 133) | BIOCGDLTLIST = 0xc0084279 constant BIOCGETBUFMODE (line 134) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 135) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 136) | BIOCGETZMAX = 0x4004427f constant BIOCGHDRCMPLT (line 137) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 138) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 139) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 140) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 141) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 142) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 143) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 144) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 145) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 146) | BIOCROTZBUF = 0x400c4280 constant BIOCSBLEN (line 147) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 148) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 149) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 150) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 151) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 152) | BIOCSETFNR = 0x80084282 constant BIOCSETIF (line 153) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 154) | BIOCSETWF = 0x8008427b constant BIOCSETZBUF (line 155) | BIOCSETZBUF = 0x800c4281 constant BIOCSHDRCMPLT (line 156) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 157) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 158) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 159) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 160) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 161) | BIOCVERSION = 0x40044271 constant BPF_A (line 162) | BPF_A = 0x10 constant BPF_ABS (line 163) | BPF_ABS = 0x20 constant BPF_ADD (line 164) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 165) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 166) | BPF_ALU = 0x4 constant BPF_AND (line 167) | BPF_AND = 0x50 constant BPF_B (line 168) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 169) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 170) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 171) | BPF_DIV = 0x30 constant BPF_H (line 172) | BPF_H = 0x8 constant BPF_IMM (line 173) | BPF_IMM = 0x0 constant BPF_IND (line 174) | BPF_IND = 0x40 constant BPF_JA (line 175) | BPF_JA = 0x0 constant BPF_JEQ (line 176) | BPF_JEQ = 0x10 constant BPF_JGE (line 177) | BPF_JGE = 0x30 constant BPF_JGT (line 178) | BPF_JGT = 0x20 constant BPF_JMP (line 179) | BPF_JMP = 0x5 constant BPF_JSET (line 180) | BPF_JSET = 0x40 constant BPF_K (line 181) | BPF_K = 0x0 constant BPF_LD (line 182) | BPF_LD = 0x0 constant BPF_LDX (line 183) | BPF_LDX = 0x1 constant BPF_LEN (line 184) | BPF_LEN = 0x80 constant BPF_LSH (line 185) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 186) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 187) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 188) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 189) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 190) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 191) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 192) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 193) | BPF_MISC = 0x7 constant BPF_MOD (line 194) | BPF_MOD = 0x90 constant BPF_MSH (line 195) | BPF_MSH = 0xa0 constant BPF_MUL (line 196) | BPF_MUL = 0x20 constant BPF_NEG (line 197) | BPF_NEG = 0x80 constant BPF_OR (line 198) | BPF_OR = 0x40 constant BPF_RELEASE (line 199) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 200) | BPF_RET = 0x6 constant BPF_RSH (line 201) | BPF_RSH = 0x70 constant BPF_ST (line 202) | BPF_ST = 0x2 constant BPF_STX (line 203) | BPF_STX = 0x3 constant BPF_SUB (line 204) | BPF_SUB = 0x10 constant BPF_TAX (line 205) | BPF_TAX = 0x0 constant BPF_TXA (line 206) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 207) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 208) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 209) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 210) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 211) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 212) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 213) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 214) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 215) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 216) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 217) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 218) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 219) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 220) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 221) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 222) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 223) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 224) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 225) | BPF_T_NORMAL = 0x0 constant BPF_W (line 226) | BPF_W = 0x0 constant BPF_X (line 227) | BPF_X = 0x8 constant BPF_XOR (line 228) | BPF_XOR = 0xa0 constant BRKINT (line 229) | BRKINT = 0x2 constant CAP_ACCEPT (line 230) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 231) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 232) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 233) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 234) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 235) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 236) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 237) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 238) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 239) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 240) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 241) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 242) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 243) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 244) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 245) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 246) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 247) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 248) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 249) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 250) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 251) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 252) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 253) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 254) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 255) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 256) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 257) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 258) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 259) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 260) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 261) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 262) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 263) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 264) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 265) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 266) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 267) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 268) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 269) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 270) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 271) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 272) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 273) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 274) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 275) | CAP_IOCTLS_ALL = 0x7fffffff constant CAP_KQUEUE (line 276) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 277) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 278) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 279) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 280) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 281) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 282) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 283) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 284) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 285) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 286) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 287) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 288) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 289) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 290) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 291) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 292) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 293) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 294) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 295) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 296) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 297) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 298) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 299) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 300) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 301) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 302) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 303) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 304) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 305) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 306) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 307) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 308) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 309) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 310) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 311) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 312) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 313) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 314) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 315) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 316) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 317) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 318) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 319) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 320) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 321) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 322) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 323) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 324) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 325) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 326) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 327) | CFLUSH = 0xf constant CLOCAL (line 328) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 329) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 330) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 331) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 332) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 333) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 334) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 335) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 336) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 337) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 338) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 339) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 340) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 341) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 342) | CLOCK_VIRTUAL = 0x1 constant CPUSTATES (line 343) | CPUSTATES = 0x5 constant CP_IDLE (line 344) | CP_IDLE = 0x4 constant CP_INTR (line 345) | CP_INTR = 0x3 constant CP_NICE (line 346) | CP_NICE = 0x1 constant CP_SYS (line 347) | CP_SYS = 0x2 constant CP_USER (line 348) | CP_USER = 0x0 constant CREAD (line 349) | CREAD = 0x800 constant CRTSCTS (line 350) | CRTSCTS = 0x30000 constant CS5 (line 351) | CS5 = 0x0 constant CS6 (line 352) | CS6 = 0x100 constant CS7 (line 353) | CS7 = 0x200 constant CS8 (line 354) | CS8 = 0x300 constant CSIZE (line 355) | CSIZE = 0x300 constant CSTART (line 356) | CSTART = 0x11 constant CSTATUS (line 357) | CSTATUS = 0x14 constant CSTOP (line 358) | CSTOP = 0x13 constant CSTOPB (line 359) | CSTOPB = 0x400 constant CSUSP (line 360) | CSUSP = 0x1a constant CTL_HW (line 361) | CTL_HW = 0x6 constant CTL_KERN (line 362) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 363) | CTL_MAXNAME = 0x18 constant CTL_NET (line 364) | CTL_NET = 0x4 constant DIOCGATTR (line 365) | DIOCGATTR = 0xc144648e constant DIOCGDELETE (line 366) | DIOCGDELETE = 0x80106488 constant DIOCGFLUSH (line 367) | DIOCGFLUSH = 0x20006487 constant DIOCGFRONTSTUFF (line 368) | DIOCGFRONTSTUFF = 0x40086486 constant DIOCGFWHEADS (line 369) | DIOCGFWHEADS = 0x40046483 constant DIOCGFWSECTORS (line 370) | DIOCGFWSECTORS = 0x40046482 constant DIOCGIDENT (line 371) | DIOCGIDENT = 0x41006489 constant DIOCGMEDIASIZE (line 372) | DIOCGMEDIASIZE = 0x40086481 constant DIOCGPHYSPATH (line 373) | DIOCGPHYSPATH = 0x4400648d constant DIOCGPROVIDERNAME (line 374) | DIOCGPROVIDERNAME = 0x4400648a constant DIOCGSECTORSIZE (line 375) | DIOCGSECTORSIZE = 0x40046480 constant DIOCGSTRIPEOFFSET (line 376) | DIOCGSTRIPEOFFSET = 0x4008648c constant DIOCGSTRIPESIZE (line 377) | DIOCGSTRIPESIZE = 0x4008648b constant DIOCSKERNELDUMP (line 378) | DIOCSKERNELDUMP = 0x804c6490 constant DIOCSKERNELDUMP_FREEBSD11 (line 379) | DIOCSKERNELDUMP_FREEBSD11 = 0x80046485 constant DIOCZONECMD (line 380) | DIOCZONECMD = 0xc06c648f constant DLT_A429 (line 381) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 382) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 383) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 384) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 385) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 386) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 387) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 388) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 389) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 390) | DLT_AURORA = 0x7e constant DLT_AX25 (line 391) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 392) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 393) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 394) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 395) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 396) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 397) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 398) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 399) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 400) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 401) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 402) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 403) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 404) | DLT_CISCO_IOS = 0x76 constant DLT_CLASS_NETBSD_RAWAF (line 405) | DLT_CLASS_NETBSD_RAWAF = 0x2240000 constant DLT_C_HDLC (line 406) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 407) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 408) | DLT_DBUS = 0xe7 constant DLT_DECT (line 409) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 410) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 411) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 412) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 413) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 414) | DLT_EN3MB = 0x2 constant DLT_ENC (line 415) | DLT_ENC = 0x6d constant DLT_EPON (line 416) | DLT_EPON = 0x103 constant DLT_ERF (line 417) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 418) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 419) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 420) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 421) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 422) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 423) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 424) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 425) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 426) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 427) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 428) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 429) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 430) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 431) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 432) | DLT_GSMTAP_UM = 0xd9 constant DLT_IBM_SN (line 433) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 434) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 435) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 436) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 437) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 438) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 439) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 440) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 441) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 442) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 443) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 444) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 445) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 446) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 447) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 448) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 449) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 450) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 451) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 452) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 453) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 454) | DLT_IP_OVER_FC = 0x7a constant DLT_ISO_14443 (line 455) | DLT_ISO_14443 = 0x108 constant DLT_JUNIPER_ATM1 (line 456) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 457) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 458) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 459) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 460) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 461) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 462) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 463) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 464) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 465) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 466) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 467) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 468) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 469) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 470) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 471) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 472) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 473) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 474) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 475) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 476) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 477) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 478) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 479) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 480) | DLT_LAPD = 0xcb constant DLT_LIN (line 481) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 482) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 483) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 484) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 485) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 486) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 487) | DLT_LOOP = 0x6c constant DLT_LTALK (line 488) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 489) | DLT_MATCHING_MAX = 0x109 constant DLT_MATCHING_MIN (line 490) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 491) | DLT_MFR = 0xb6 constant DLT_MOST (line 492) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 493) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 494) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 495) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 496) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 497) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 498) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 499) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 500) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 501) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 502) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 503) | DLT_NFLOG = 0xef constant DLT_NG40 (line 504) | DLT_NG40 = 0xf4 constant DLT_NULL (line 505) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 506) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 507) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 508) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 509) | DLT_PKTAP = 0x102 constant DLT_PPI (line 510) | DLT_PPI = 0xc0 constant DLT_PPP (line 511) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 512) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 513) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 514) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 515) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 516) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 517) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 518) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 519) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 520) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 521) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 522) | DLT_RAW = 0xc constant DLT_RDS (line 523) | DLT_RDS = 0x109 constant DLT_REDBACK_SMARTEDGE (line 524) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 525) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 526) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 527) | DLT_SCCP = 0x8e constant DLT_SCTP (line 528) | DLT_SCTP = 0xf8 constant DLT_SITA (line 529) | DLT_SITA = 0xc4 constant DLT_SLIP (line 530) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 531) | DLT_SLIP_BSDOS = 0xd constant DLT_STANAG_5066_D_PDU (line 532) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 533) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 534) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 535) | DLT_TZSP = 0x80 constant DLT_USB (line 536) | DLT_USB = 0xba constant DLT_USBPCAP (line 537) | DLT_USBPCAP = 0xf9 constant DLT_USB_FREEBSD (line 538) | DLT_USB_FREEBSD = 0xba constant DLT_USB_LINUX (line 539) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 540) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 541) | DLT_USER0 = 0x93 constant DLT_USER1 (line 542) | DLT_USER1 = 0x94 constant DLT_USER10 (line 543) | DLT_USER10 = 0x9d constant DLT_USER11 (line 544) | DLT_USER11 = 0x9e constant DLT_USER12 (line 545) | DLT_USER12 = 0x9f constant DLT_USER13 (line 546) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 547) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 548) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 549) | DLT_USER2 = 0x95 constant DLT_USER3 (line 550) | DLT_USER3 = 0x96 constant DLT_USER4 (line 551) | DLT_USER4 = 0x97 constant DLT_USER5 (line 552) | DLT_USER5 = 0x98 constant DLT_USER6 (line 553) | DLT_USER6 = 0x99 constant DLT_USER7 (line 554) | DLT_USER7 = 0x9a constant DLT_USER8 (line 555) | DLT_USER8 = 0x9b constant DLT_USER9 (line 556) | DLT_USER9 = 0x9c constant DLT_WATTSTOPPER_DLM (line 557) | DLT_WATTSTOPPER_DLM = 0x107 constant DLT_WIHART (line 558) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 559) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 560) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 561) | DLT_X2E_XORAYA = 0xd6 constant DLT_ZWAVE_R1_R2 (line 562) | DLT_ZWAVE_R1_R2 = 0x105 constant DLT_ZWAVE_R3 (line 563) | DLT_ZWAVE_R3 = 0x106 constant DT_BLK (line 564) | DT_BLK = 0x6 constant DT_CHR (line 565) | DT_CHR = 0x2 constant DT_DIR (line 566) | DT_DIR = 0x4 constant DT_FIFO (line 567) | DT_FIFO = 0x1 constant DT_LNK (line 568) | DT_LNK = 0xa constant DT_REG (line 569) | DT_REG = 0x8 constant DT_SOCK (line 570) | DT_SOCK = 0xc constant DT_UNKNOWN (line 571) | DT_UNKNOWN = 0x0 constant DT_WHT (line 572) | DT_WHT = 0xe constant ECHO (line 573) | ECHO = 0x8 constant ECHOCTL (line 574) | ECHOCTL = 0x40 constant ECHOE (line 575) | ECHOE = 0x2 constant ECHOK (line 576) | ECHOK = 0x4 constant ECHOKE (line 577) | ECHOKE = 0x1 constant ECHONL (line 578) | ECHONL = 0x10 constant ECHOPRT (line 579) | ECHOPRT = 0x20 constant EVFILT_AIO (line 580) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 581) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 582) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 583) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 584) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 585) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 586) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 587) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 588) | EVFILT_SYSCOUNT = 0xc constant EVFILT_TIMER (line 589) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 590) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 591) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 592) | EVFILT_WRITE = -0x2 constant EV_ADD (line 593) | EV_ADD = 0x1 constant EV_CLEAR (line 594) | EV_CLEAR = 0x20 constant EV_DELETE (line 595) | EV_DELETE = 0x2 constant EV_DISABLE (line 596) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 597) | EV_DISPATCH = 0x80 constant EV_DROP (line 598) | EV_DROP = 0x1000 constant EV_ENABLE (line 599) | EV_ENABLE = 0x4 constant EV_EOF (line 600) | EV_EOF = 0x8000 constant EV_ERROR (line 601) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 602) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 603) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 604) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 605) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 606) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 607) | EV_SYSFLAGS = 0xf000 constant EXTA (line 608) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 609) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 610) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 611) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 612) | EXTB = 0x9600 constant EXTPROC (line 613) | EXTPROC = 0x800 constant FD_CLOEXEC (line 614) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 615) | FD_SETSIZE = 0x400 constant FLUSHO (line 616) | FLUSHO = 0x800000 constant F_CANCEL (line 617) | F_CANCEL = 0x5 constant F_DUP2FD (line 618) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 619) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 620) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 621) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 622) | F_GETFD = 0x1 constant F_GETFL (line 623) | F_GETFL = 0x3 constant F_GETLK (line 624) | F_GETLK = 0xb constant F_GETOWN (line 625) | F_GETOWN = 0x5 constant F_OGETLK (line 626) | F_OGETLK = 0x7 constant F_OK (line 627) | F_OK = 0x0 constant F_OSETLK (line 628) | F_OSETLK = 0x8 constant F_OSETLKW (line 629) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 630) | F_RDAHEAD = 0x10 constant F_RDLCK (line 631) | F_RDLCK = 0x1 constant F_READAHEAD (line 632) | F_READAHEAD = 0xf constant F_SETFD (line 633) | F_SETFD = 0x2 constant F_SETFL (line 634) | F_SETFL = 0x4 constant F_SETLK (line 635) | F_SETLK = 0xc constant F_SETLKW (line 636) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 637) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 638) | F_SETOWN = 0x6 constant F_UNLCK (line 639) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 640) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 641) | F_WRLCK = 0x3 constant HUPCL (line 642) | HUPCL = 0x4000 constant HW_MACHINE (line 643) | HW_MACHINE = 0x1 constant ICANON (line 644) | ICANON = 0x100 constant ICMP6_FILTER (line 645) | ICMP6_FILTER = 0x12 constant ICRNL (line 646) | ICRNL = 0x100 constant IEXTEN (line 647) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 648) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 649) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 650) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 651) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 652) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 653) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 654) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 655) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 656) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 657) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 658) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 659) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 660) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 661) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 662) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 663) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 664) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 665) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 666) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 667) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 668) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 669) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 670) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 671) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 672) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 673) | IFF_STATICARP = 0x80000 constant IFF_UP (line 674) | IFF_UP = 0x1 constant IFNAMSIZ (line 675) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 676) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 677) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 678) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 679) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 680) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 681) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 682) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 683) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 684) | IGNBRK = 0x1 constant IGNCR (line 685) | IGNCR = 0x80 constant IGNPAR (line 686) | IGNPAR = 0x4 constant IMAXBEL (line 687) | IMAXBEL = 0x2000 constant INLCR (line 688) | INLCR = 0x40 constant INPCK (line 689) | INPCK = 0x10 constant IN_CLASSA_HOST (line 690) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 691) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 692) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 693) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 694) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 695) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 696) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 697) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 698) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 699) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 700) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 701) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 702) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 703) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 704) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 705) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 706) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 707) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 708) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 709) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 710) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 711) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 712) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 713) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 714) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 715) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 716) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 717) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 718) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 719) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 720) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 721) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 722) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 723) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 724) | IPPROTO_DIVERT = 0x102 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_EMCON (line 728) | IPPROTO_EMCON = 0xe 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_GMTP (line 735) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 736) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 737) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 738) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 739) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 740) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 741) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 742) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 743) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 744) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 745) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 746) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 747) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 748) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 749) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 750) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 751) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 752) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 753) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 754) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 755) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 756) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 757) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 758) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 759) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 760) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 761) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 762) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 763) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 764) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 765) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 766) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 767) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 768) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 769) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 770) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 771) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 772) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 773) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 774) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 775) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 776) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 777) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 778) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 779) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 780) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 781) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 782) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 783) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 784) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 785) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 786) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 787) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 788) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 789) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 790) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 791) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 792) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 793) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 794) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 795) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 796) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 797) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 798) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 799) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 800) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 801) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 802) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 803) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 804) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 805) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 806) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 807) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 808) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 809) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 810) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 811) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 812) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 813) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 814) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 815) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 816) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 817) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 818) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 819) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 820) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 821) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 822) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 823) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 824) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 825) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 826) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 827) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 828) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 829) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 830) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 831) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 832) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 833) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 834) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 835) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 836) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 837) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 838) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 839) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 840) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 841) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 842) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 843) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 844) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 845) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 846) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 847) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 848) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 849) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 850) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 851) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 852) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 853) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 854) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 855) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 856) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 857) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 858) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 859) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 860) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 861) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 862) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 863) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 864) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 865) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 866) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 867) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 868) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 869) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 870) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 871) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 872) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 873) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 874) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 875) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 876) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 877) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 878) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 879) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 880) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 881) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 882) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 883) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 884) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 885) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 886) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 887) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 888) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 889) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 890) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 891) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 892) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 893) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 894) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 895) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 896) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 897) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 898) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 899) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 900) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 901) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 902) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 903) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 904) | IP_DF = 0x4000 constant IP_DONTFRAG (line 905) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 906) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 907) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 908) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 909) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 910) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 911) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 912) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 913) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 914) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 915) | IP_FW3 = 0x30 constant IP_FW_ADD (line 916) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 917) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 918) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 919) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 920) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 921) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 922) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 923) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 924) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 925) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 926) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 927) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 928) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 929) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 930) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 931) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 932) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 933) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 934) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 935) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 936) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 937) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 938) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 939) | IP_MF = 0x2000 constant IP_MINTTL (line 940) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 941) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 942) | IP_MSFILTER = 0x4a constant IP_MSS (line 943) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 944) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 945) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 946) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 947) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 948) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 949) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 950) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 951) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 952) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 953) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 954) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 955) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 956) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 957) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 958) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 959) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 960) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 961) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 962) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 963) | IP_RETOPTS = 0x8 constant IP_RF (line 964) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 965) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 966) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 967) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 968) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 969) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 970) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 971) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 972) | IP_TOS = 0x3 constant IP_TTL (line 973) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 974) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 975) | ISIG = 0x80 constant ISTRIP (line 976) | ISTRIP = 0x20 constant IXANY (line 977) | IXANY = 0x800 constant IXOFF (line 978) | IXOFF = 0x400 constant IXON (line 979) | IXON = 0x200 constant KERN_HOSTNAME (line 980) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 981) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 982) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 983) | KERN_VERSION = 0x4 constant LOCAL_CONNWAIT (line 984) | LOCAL_CONNWAIT = 0x4 constant LOCAL_CREDS (line 985) | LOCAL_CREDS = 0x2 constant LOCAL_CREDS_PERSISTENT (line 986) | LOCAL_CREDS_PERSISTENT = 0x3 constant LOCAL_PEERCRED (line 987) | LOCAL_PEERCRED = 0x1 constant LOCAL_VENDOR (line 988) | LOCAL_VENDOR = 0x80000000 constant LOCK_EX (line 989) | LOCK_EX = 0x2 constant LOCK_NB (line 990) | LOCK_NB = 0x4 constant LOCK_SH (line 991) | LOCK_SH = 0x1 constant LOCK_UN (line 992) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 993) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 994) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 995) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 996) | MADV_FREE = 0x5 constant MADV_NOCORE (line 997) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 998) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 999) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1000) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1001) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1002) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1003) | MADV_WILLNEED = 0x3 constant MAP_ALIGNED_SUPER (line 1004) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1005) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1006) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1007) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1008) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1009) | MAP_COPY = 0x2 constant MAP_EXCL (line 1010) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1011) | MAP_FILE = 0x0 constant MAP_FIXED (line 1012) | MAP_FIXED = 0x10 constant MAP_GUARD (line 1013) | MAP_GUARD = 0x2000 constant MAP_HASSEMAPHORE (line 1014) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1015) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 1016) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1017) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1018) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 1019) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 1020) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 1021) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1022) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1023) | MAP_SHARED = 0x1 constant MAP_STACK (line 1024) | MAP_STACK = 0x400 constant MCAST_BLOCK_SOURCE (line 1025) | MCAST_BLOCK_SOURCE = 0x54 constant MCAST_EXCLUDE (line 1026) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 1027) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 1028) | MCAST_JOIN_GROUP = 0x50 constant MCAST_JOIN_SOURCE_GROUP (line 1029) | MCAST_JOIN_SOURCE_GROUP = 0x52 constant MCAST_LEAVE_GROUP (line 1030) | MCAST_LEAVE_GROUP = 0x51 constant MCAST_LEAVE_SOURCE_GROUP (line 1031) | MCAST_LEAVE_SOURCE_GROUP = 0x53 constant MCAST_UNBLOCK_SOURCE (line 1032) | MCAST_UNBLOCK_SOURCE = 0x55 constant MCAST_UNDEFINED (line 1033) | MCAST_UNDEFINED = 0x0 constant MCL_CURRENT (line 1034) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1035) | MCL_FUTURE = 0x2 constant MNT_ACLS (line 1036) | MNT_ACLS = 0x8000000 constant MNT_ASYNC (line 1037) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 1038) | MNT_AUTOMOUNTED = 0x200000000 constant MNT_BYFSID (line 1039) | MNT_BYFSID = 0x8000000 constant MNT_CMDFLAGS (line 1040) | MNT_CMDFLAGS = 0xd0f0000 constant MNT_DEFEXPORTED (line 1041) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 1042) | MNT_DELEXPORT = 0x20000 constant MNT_EXKERB (line 1043) | MNT_EXKERB = 0x800 constant MNT_EXPORTANON (line 1044) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1045) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1046) | MNT_EXPUBLIC = 0x20000000 constant MNT_EXRDONLY (line 1047) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 1048) | MNT_FORCE = 0x80000 constant MNT_GJOURNAL (line 1049) | MNT_GJOURNAL = 0x2000000 constant MNT_IGNORE (line 1050) | MNT_IGNORE = 0x800000 constant MNT_LAZY (line 1051) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1052) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 1053) | MNT_MULTILABEL = 0x4000000 constant MNT_NFS4ACLS (line 1054) | MNT_NFS4ACLS = 0x10 constant MNT_NOATIME (line 1055) | MNT_NOATIME = 0x10000000 constant MNT_NOCLUSTERR (line 1056) | MNT_NOCLUSTERR = 0x40000000 constant MNT_NOCLUSTERW (line 1057) | MNT_NOCLUSTERW = 0x80000000 constant MNT_NOEXEC (line 1058) | MNT_NOEXEC = 0x4 constant MNT_NONBUSY (line 1059) | MNT_NONBUSY = 0x4000000 constant MNT_NOSUID (line 1060) | MNT_NOSUID = 0x8 constant MNT_NOSYMFOLLOW (line 1061) | MNT_NOSYMFOLLOW = 0x400000 constant MNT_NOWAIT (line 1062) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 1063) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1064) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1065) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1066) | MNT_ROOTFS = 0x4000 constant MNT_SNAPSHOT (line 1067) | MNT_SNAPSHOT = 0x1000000 constant MNT_SOFTDEP (line 1068) | MNT_SOFTDEP = 0x200000 constant MNT_SUIDDIR (line 1069) | MNT_SUIDDIR = 0x100000 constant MNT_SUJ (line 1070) | MNT_SUJ = 0x100000000 constant MNT_SUSPEND (line 1071) | MNT_SUSPEND = 0x4 constant MNT_SYNCHRONOUS (line 1072) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1073) | MNT_UNION = 0x20 constant MNT_UPDATE (line 1074) | MNT_UPDATE = 0x10000 constant MNT_UPDATEMASK (line 1075) | MNT_UPDATEMASK = 0x2d8d0807e constant MNT_USER (line 1076) | MNT_USER = 0x8000 constant MNT_VISFLAGMASK (line 1077) | MNT_VISFLAGMASK = 0x3fef0ffff constant MNT_WAIT (line 1078) | MNT_WAIT = 0x1 constant MSG_CMSG_CLOEXEC (line 1079) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1080) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1081) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1082) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1083) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1084) | MSG_EOF = 0x100 constant MSG_EOR (line 1085) | MSG_EOR = 0x8 constant MSG_NBIO (line 1086) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1087) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1088) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1089) | MSG_OOB = 0x1 constant MSG_PEEK (line 1090) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1091) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1092) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 1093) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 1094) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1095) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1096) | MS_SYNC = 0x0 constant NAME_MAX (line 1097) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1098) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1099) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1100) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1101) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1102) | NET_RT_IFMALIST = 0x4 constant NFDBITS (line 1103) | NFDBITS = 0x20 constant NOFLSH (line 1104) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1105) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1106) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1107) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1108) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1109) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1110) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1111) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1112) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1113) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1114) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1115) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1116) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1117) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1118) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1119) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1120) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1121) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1122) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1123) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1124) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1125) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1126) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1127) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1128) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1129) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1130) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1131) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1132) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1133) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1134) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1135) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1136) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1137) | NOTE_WRITE = 0x2 constant OCRNL (line 1138) | OCRNL = 0x10 constant ONLCR (line 1139) | ONLCR = 0x2 constant ONLRET (line 1140) | ONLRET = 0x40 constant ONOCR (line 1141) | ONOCR = 0x20 constant ONOEOT (line 1142) | ONOEOT = 0x8 constant OPOST (line 1143) | OPOST = 0x1 constant OXTABS (line 1144) | OXTABS = 0x4 constant O_ACCMODE (line 1145) | O_ACCMODE = 0x3 constant O_APPEND (line 1146) | O_APPEND = 0x8 constant O_ASYNC (line 1147) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1148) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1149) | O_CREAT = 0x200 constant O_DIRECT (line 1150) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1151) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1152) | O_EXCL = 0x800 constant O_EXEC (line 1153) | O_EXEC = 0x40000 constant O_EXLOCK (line 1154) | O_EXLOCK = 0x20 constant O_FSYNC (line 1155) | O_FSYNC = 0x80 constant O_NDELAY (line 1156) | O_NDELAY = 0x4 constant O_NOCTTY (line 1157) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1158) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1159) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1160) | O_RDONLY = 0x0 constant O_RDWR (line 1161) | O_RDWR = 0x2 constant O_SHLOCK (line 1162) | O_SHLOCK = 0x10 constant O_SYNC (line 1163) | O_SYNC = 0x80 constant O_TRUNC (line 1164) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1165) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1166) | O_VERIFY = 0x200000 constant O_WRONLY (line 1167) | O_WRONLY = 0x1 constant PARENB (line 1168) | PARENB = 0x1000 constant PARMRK (line 1169) | PARMRK = 0x8 constant PARODD (line 1170) | PARODD = 0x2000 constant PENDIN (line 1171) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1172) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1173) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1174) | PRIO_USER = 0x2 constant PROT_EXEC (line 1175) | PROT_EXEC = 0x4 constant PROT_NONE (line 1176) | PROT_NONE = 0x0 constant PROT_READ (line 1177) | PROT_READ = 0x1 constant PROT_WRITE (line 1178) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1179) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1180) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1181) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1182) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1183) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1184) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1185) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1186) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1187) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1188) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1189) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1190) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1191) | RTAX_BRD = 0x7 constant RTAX_DST (line 1192) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1193) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1194) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1195) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1196) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1197) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1198) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1199) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1200) | RTA_BRD = 0x80 constant RTA_DST (line 1201) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1202) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1203) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1204) | RTA_IFA = 0x20 constant RTA_IFP (line 1205) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1206) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1207) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1208) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1209) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1210) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1211) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1212) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1213) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1214) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1215) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1216) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1217) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1218) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1219) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1220) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1221) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1222) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1223) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1224) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1225) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1226) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1227) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1228) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1229) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1230) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1231) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1232) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1233) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1234) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1235) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1236) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1237) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1238) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1239) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1240) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1241) | RTM_LOSING = 0x5 constant RTM_MISS (line 1242) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1243) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1244) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1245) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1246) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1247) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1248) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1249) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1250) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1251) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1252) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1253) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1254) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1255) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1256) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1257) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1258) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1259) | RT_BLACKHOLE = 0x40 constant RT_CACHING_CONTEXT (line 1260) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1261) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1262) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1263) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1264) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1265) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1266) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1267) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1268) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1269) | RT_MAY_LOOP_BIT = 0x3 constant RT_NORTREF (line 1270) | RT_NORTREF = 0x2 constant RT_REJECT (line 1271) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1272) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1273) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1274) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1275) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1276) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1277) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1278) | SCM_TIMESTAMP = 0x2 constant SEEK_CUR (line 1279) | SEEK_CUR = 0x1 constant SEEK_DATA (line 1280) | SEEK_DATA = 0x3 constant SEEK_END (line 1281) | SEEK_END = 0x2 constant SEEK_HOLE (line 1282) | SEEK_HOLE = 0x4 constant SEEK_SET (line 1283) | SEEK_SET = 0x0 constant SHUT_RD (line 1284) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1285) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1286) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1287) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1288) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1289) | SIOCAIFGROUP = 0x80246987 constant SIOCATMARK (line 1290) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1291) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1292) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1293) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1294) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1295) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETSGCNT (line 1296) | SIOCGETSGCNT = 0xc0147210 constant SIOCGETVIFCNT (line 1297) | SIOCGETVIFCNT = 0xc014720f constant SIOCGHIWAT (line 1298) | SIOCGHIWAT = 0x40047301 constant SIOCGHWADDR (line 1299) | SIOCGHWADDR = 0xc020693e constant SIOCGI2C (line 1300) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1301) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1302) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1303) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1304) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDESCR (line 1305) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1306) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1307) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1308) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1309) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1310) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1311) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFINDEX (line 1312) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1313) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1314) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1315) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1316) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1317) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1318) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1319) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1320) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1321) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1322) | SIOCGIFXMEDIA = 0xc028698b constant SIOCGLOWAT (line 1323) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1324) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1325) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1326) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1327) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1328) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1329) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1330) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1331) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSDRVSPEC (line 1332) | SIOCSDRVSPEC = 0x801c697b constant SIOCSHIWAT (line 1333) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1334) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1335) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1336) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1337) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1338) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1339) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1340) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1341) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1342) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1343) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1344) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1345) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1346) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1347) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1348) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1349) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1350) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1351) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1352) | SIOCSIFVNET = 0xc020695a constant SIOCSLOWAT (line 1353) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1354) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1355) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1356) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1357) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1358) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1359) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1360) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1361) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1362) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1363) | SOCK_STREAM = 0x1 constant SOL_LOCAL (line 1364) | SOL_LOCAL = 0x0 constant SOL_SOCKET (line 1365) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1366) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1367) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1368) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1369) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1370) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1371) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1372) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1373) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1374) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1375) | SO_LABEL = 0x1009 constant SO_LINGER (line 1376) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1377) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1378) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1379) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1380) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1381) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1382) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1383) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1384) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1385) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1386) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1387) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1388) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1389) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1390) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1391) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1392) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1393) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1394) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1395) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1396) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1397) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1398) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1399) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1400) | SO_VENDOR = 0x80000000 constant S_BLKSIZE (line 1401) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1402) | S_IEXEC = 0x40 constant S_IFBLK (line 1403) | S_IFBLK = 0x6000 constant S_IFCHR (line 1404) | S_IFCHR = 0x2000 constant S_IFDIR (line 1405) | S_IFDIR = 0x4000 constant S_IFIFO (line 1406) | S_IFIFO = 0x1000 constant S_IFLNK (line 1407) | S_IFLNK = 0xa000 constant S_IFMT (line 1408) | S_IFMT = 0xf000 constant S_IFREG (line 1409) | S_IFREG = 0x8000 constant S_IFSOCK (line 1410) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1411) | S_IFWHT = 0xe000 constant S_IREAD (line 1412) | S_IREAD = 0x100 constant S_IRGRP (line 1413) | S_IRGRP = 0x20 constant S_IROTH (line 1414) | S_IROTH = 0x4 constant S_IRUSR (line 1415) | S_IRUSR = 0x100 constant S_IRWXG (line 1416) | S_IRWXG = 0x38 constant S_IRWXO (line 1417) | S_IRWXO = 0x7 constant S_IRWXU (line 1418) | S_IRWXU = 0x1c0 constant S_ISGID (line 1419) | S_ISGID = 0x400 constant S_ISTXT (line 1420) | S_ISTXT = 0x200 constant S_ISUID (line 1421) | S_ISUID = 0x800 constant S_ISVTX (line 1422) | S_ISVTX = 0x200 constant S_IWGRP (line 1423) | S_IWGRP = 0x10 constant S_IWOTH (line 1424) | S_IWOTH = 0x2 constant S_IWRITE (line 1425) | S_IWRITE = 0x80 constant S_IWUSR (line 1426) | S_IWUSR = 0x80 constant S_IXGRP (line 1427) | S_IXGRP = 0x8 constant S_IXOTH (line 1428) | S_IXOTH = 0x1 constant S_IXUSR (line 1429) | S_IXUSR = 0x40 constant TAB0 (line 1430) | TAB0 = 0x0 constant TAB3 (line 1431) | TAB3 = 0x4 constant TABDLY (line 1432) | TABDLY = 0x4 constant TCIFLUSH (line 1433) | TCIFLUSH = 0x1 constant TCIOFF (line 1434) | TCIOFF = 0x3 constant TCIOFLUSH (line 1435) | TCIOFLUSH = 0x3 constant TCION (line 1436) | TCION = 0x4 constant TCOFLUSH (line 1437) | TCOFLUSH = 0x2 constant TCOOFF (line 1438) | TCOOFF = 0x1 constant TCOON (line 1439) | TCOON = 0x2 constant TCP_CA_NAME_MAX (line 1440) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1441) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1442) | TCP_CONGESTION = 0x40 constant TCP_FASTOPEN (line 1443) | TCP_FASTOPEN = 0x401 constant TCP_FUNCTION_BLK (line 1444) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1445) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1446) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1447) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1448) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1449) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1450) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1451) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1452) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1453) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1454) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1455) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1456) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1457) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1458) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1459) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1460) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1461) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1462) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1463) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1464) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1465) | TCP_PCAP_OUT = 0x800 constant TCP_VENDOR (line 1466) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1467) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1468) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1469) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1470) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1471) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1472) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1473) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1474) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1475) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1476) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1477) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1478) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1479) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1480) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1481) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1482) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1483) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1484) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1485) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1486) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1487) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1488) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1489) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1490) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1491) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1492) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1493) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1494) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1495) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1496) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1497) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1498) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1499) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1500) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1501) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1502) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1503) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1504) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1505) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1506) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1507) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1508) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1509) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1510) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1511) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1512) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1513) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1514) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1515) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1516) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1517) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1518) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1519) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1520) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1521) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1522) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1523) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1524) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1525) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1526) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1527) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1528) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1529) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1530) | TOSTOP = 0x400000 constant VDISCARD (line 1531) | VDISCARD = 0xf constant VDSUSP (line 1532) | VDSUSP = 0xb constant VEOF (line 1533) | VEOF = 0x0 constant VEOL (line 1534) | VEOL = 0x1 constant VEOL2 (line 1535) | VEOL2 = 0x2 constant VERASE (line 1536) | VERASE = 0x3 constant VERASE2 (line 1537) | VERASE2 = 0x7 constant VINTR (line 1538) | VINTR = 0x8 constant VKILL (line 1539) | VKILL = 0x5 constant VLNEXT (line 1540) | VLNEXT = 0xe constant VMIN (line 1541) | VMIN = 0x10 constant VQUIT (line 1542) | VQUIT = 0x9 constant VREPRINT (line 1543) | VREPRINT = 0x6 constant VSTART (line 1544) | VSTART = 0xc constant VSTATUS (line 1545) | VSTATUS = 0x12 constant VSTOP (line 1546) | VSTOP = 0xd constant VSUSP (line 1547) | VSUSP = 0xa constant VTIME (line 1548) | VTIME = 0x11 constant VWERASE (line 1549) | VWERASE = 0x4 constant WCONTINUED (line 1550) | WCONTINUED = 0x4 constant WCOREFLAG (line 1551) | WCOREFLAG = 0x80 constant WEXITED (line 1552) | WEXITED = 0x10 constant WLINUXCLONE (line 1553) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1554) | WNOHANG = 0x1 constant WNOWAIT (line 1555) | WNOWAIT = 0x8 constant WSTOPPED (line 1556) | WSTOPPED = 0x2 constant WTRAPPED (line 1557) | WTRAPPED = 0x20 constant WUNTRACED (line 1558) | WUNTRACED = 0x2 constant E2BIG (line 1563) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1564) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1565) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1566) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1567) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1568) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1569) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1570) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1571) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1572) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1573) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1574) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1575) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1576) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1577) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1578) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1579) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1580) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1581) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1582) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1583) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1584) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1585) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1586) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1587) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1588) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1589) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1590) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1591) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1592) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1593) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1594) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1595) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1596) | EINVAL = syscall.Errno(0x16) constant EIO (line 1597) | EIO = syscall.Errno(0x5) constant EISCONN (line 1598) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1599) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1600) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1601) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1602) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1603) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1604) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1605) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1606) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1607) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1608) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1609) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1610) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1611) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1612) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1613) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1614) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1615) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1616) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1617) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1618) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1619) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1620) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1621) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1622) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1623) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1624) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1625) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1626) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1627) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1628) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1629) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1630) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1631) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1632) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1633) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1634) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1635) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1636) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1637) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1638) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1639) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1640) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1641) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1642) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1643) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1644) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1645) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1646) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1647) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1648) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1649) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1650) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1651) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1652) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1653) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1654) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1655) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1656) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1657) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1658) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1659) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1660) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1661) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1666) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1667) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1668) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1669) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1670) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1671) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1672) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1673) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1674) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1675) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1676) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1677) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1678) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1679) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1680) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1681) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1682) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1683) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1684) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1685) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1686) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1687) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1688) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1689) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1690) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1691) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1692) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1693) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1694) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1695) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1696) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1697) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1698) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1699) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1700) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x23 constant AF_ATM (line 17) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 18) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 19) | AF_CCITT = 0xa constant AF_CHAOS (line 20) | AF_CHAOS = 0x5 constant AF_CNT (line 21) | AF_CNT = 0x15 constant AF_COIP (line 22) | AF_COIP = 0x14 constant AF_DATAKIT (line 23) | AF_DATAKIT = 0x9 constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_DLI (line 25) | AF_DLI = 0xd constant AF_E164 (line 26) | AF_E164 = 0x1a constant AF_ECMA (line 27) | AF_ECMA = 0x8 constant AF_HYLINK (line 28) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 29) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 30) | AF_IMPLINK = 0x3 constant AF_INET (line 31) | AF_INET = 0x2 constant AF_INET6 (line 32) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 33) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 34) | AF_INET_SDP = 0x28 constant AF_IPX (line 35) | AF_IPX = 0x17 constant AF_ISDN (line 36) | AF_ISDN = 0x1a constant AF_ISO (line 37) | AF_ISO = 0x7 constant AF_LAT (line 38) | AF_LAT = 0xe constant AF_LINK (line 39) | AF_LINK = 0x12 constant AF_LOCAL (line 40) | AF_LOCAL = 0x1 constant AF_MAX (line 41) | AF_MAX = 0x2a constant AF_NATM (line 42) | AF_NATM = 0x1d constant AF_NETBIOS (line 43) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 44) | AF_NETGRAPH = 0x20 constant AF_OSI (line 45) | AF_OSI = 0x7 constant AF_PUP (line 46) | AF_PUP = 0x4 constant AF_ROUTE (line 47) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 48) | AF_SCLUSTER = 0x22 constant AF_SIP (line 49) | AF_SIP = 0x18 constant AF_SLOW (line 50) | AF_SLOW = 0x21 constant AF_SNA (line 51) | AF_SNA = 0xb constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 54) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 55) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 56) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 57) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 58) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 59) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 60) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 61) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 62) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 63) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 64) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 65) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 66) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 67) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 68) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 69) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 70) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 71) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 72) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 73) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 74) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 75) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 76) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 77) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 78) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 79) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 80) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 81) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 82) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 83) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 84) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 85) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 86) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 87) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 88) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 89) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 90) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 91) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 92) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 93) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 94) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 95) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 96) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 97) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 98) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 99) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 100) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 101) | AF_VENDOR47 = 0x85 constant ALTWERASE (line 102) | ALTWERASE = 0x200 constant B0 (line 103) | B0 = 0x0 constant B110 (line 104) | B110 = 0x6e constant B115200 (line 105) | B115200 = 0x1c200 constant B1200 (line 106) | B1200 = 0x4b0 constant B134 (line 107) | B134 = 0x86 constant B14400 (line 108) | B14400 = 0x3840 constant B150 (line 109) | B150 = 0x96 constant B1800 (line 110) | B1800 = 0x708 constant B19200 (line 111) | B19200 = 0x4b00 constant B200 (line 112) | B200 = 0xc8 constant B230400 (line 113) | B230400 = 0x38400 constant B2400 (line 114) | B2400 = 0x960 constant B28800 (line 115) | B28800 = 0x7080 constant B300 (line 116) | B300 = 0x12c constant B38400 (line 117) | B38400 = 0x9600 constant B460800 (line 118) | B460800 = 0x70800 constant B4800 (line 119) | B4800 = 0x12c0 constant B50 (line 120) | B50 = 0x32 constant B57600 (line 121) | B57600 = 0xe100 constant B600 (line 122) | B600 = 0x258 constant B7200 (line 123) | B7200 = 0x1c20 constant B75 (line 124) | B75 = 0x4b constant B76800 (line 125) | B76800 = 0x12c00 constant B921600 (line 126) | B921600 = 0xe1000 constant B9600 (line 127) | B9600 = 0x2580 constant BIOCFEEDBACK (line 128) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 129) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 130) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 131) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 132) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 133) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETBUFMODE (line 134) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 135) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 136) | BIOCGETZMAX = 0x4008427f constant BIOCGHDRCMPLT (line 137) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 138) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 139) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 140) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 141) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 142) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 143) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 144) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 145) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 146) | BIOCROTZBUF = 0x40184280 constant BIOCSBLEN (line 147) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 148) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 149) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 150) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 151) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 152) | BIOCSETFNR = 0x80104282 constant BIOCSETIF (line 153) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 154) | BIOCSETWF = 0x8010427b constant BIOCSETZBUF (line 155) | BIOCSETZBUF = 0x80184281 constant BIOCSHDRCMPLT (line 156) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 157) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 158) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 159) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 160) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 161) | BIOCVERSION = 0x40044271 constant BPF_A (line 162) | BPF_A = 0x10 constant BPF_ABS (line 163) | BPF_ABS = 0x20 constant BPF_ADD (line 164) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 165) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 166) | BPF_ALU = 0x4 constant BPF_AND (line 167) | BPF_AND = 0x50 constant BPF_B (line 168) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 169) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 170) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 171) | BPF_DIV = 0x30 constant BPF_H (line 172) | BPF_H = 0x8 constant BPF_IMM (line 173) | BPF_IMM = 0x0 constant BPF_IND (line 174) | BPF_IND = 0x40 constant BPF_JA (line 175) | BPF_JA = 0x0 constant BPF_JEQ (line 176) | BPF_JEQ = 0x10 constant BPF_JGE (line 177) | BPF_JGE = 0x30 constant BPF_JGT (line 178) | BPF_JGT = 0x20 constant BPF_JMP (line 179) | BPF_JMP = 0x5 constant BPF_JSET (line 180) | BPF_JSET = 0x40 constant BPF_K (line 181) | BPF_K = 0x0 constant BPF_LD (line 182) | BPF_LD = 0x0 constant BPF_LDX (line 183) | BPF_LDX = 0x1 constant BPF_LEN (line 184) | BPF_LEN = 0x80 constant BPF_LSH (line 185) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 186) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 187) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 188) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 189) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 190) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 191) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 192) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 193) | BPF_MISC = 0x7 constant BPF_MOD (line 194) | BPF_MOD = 0x90 constant BPF_MSH (line 195) | BPF_MSH = 0xa0 constant BPF_MUL (line 196) | BPF_MUL = 0x20 constant BPF_NEG (line 197) | BPF_NEG = 0x80 constant BPF_OR (line 198) | BPF_OR = 0x40 constant BPF_RELEASE (line 199) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 200) | BPF_RET = 0x6 constant BPF_RSH (line 201) | BPF_RSH = 0x70 constant BPF_ST (line 202) | BPF_ST = 0x2 constant BPF_STX (line 203) | BPF_STX = 0x3 constant BPF_SUB (line 204) | BPF_SUB = 0x10 constant BPF_TAX (line 205) | BPF_TAX = 0x0 constant BPF_TXA (line 206) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 207) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 208) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 209) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 210) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 211) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 212) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 213) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 214) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 215) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 216) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 217) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 218) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 219) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 220) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 221) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 222) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 223) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 224) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 225) | BPF_T_NORMAL = 0x0 constant BPF_W (line 226) | BPF_W = 0x0 constant BPF_X (line 227) | BPF_X = 0x8 constant BPF_XOR (line 228) | BPF_XOR = 0xa0 constant BRKINT (line 229) | BRKINT = 0x2 constant CAP_ACCEPT (line 230) | CAP_ACCEPT = 0x200000020000000 constant CAP_ACL_CHECK (line 231) | CAP_ACL_CHECK = 0x400000000010000 constant CAP_ACL_DELETE (line 232) | CAP_ACL_DELETE = 0x400000000020000 constant CAP_ACL_GET (line 233) | CAP_ACL_GET = 0x400000000040000 constant CAP_ACL_SET (line 234) | CAP_ACL_SET = 0x400000000080000 constant CAP_ALL0 (line 235) | CAP_ALL0 = 0x20007ffffffffff constant CAP_ALL1 (line 236) | CAP_ALL1 = 0x4000000001fffff constant CAP_BIND (line 237) | CAP_BIND = 0x200000040000000 constant CAP_BINDAT (line 238) | CAP_BINDAT = 0x200008000000400 constant CAP_CHFLAGSAT (line 239) | CAP_CHFLAGSAT = 0x200000000001400 constant CAP_CONNECT (line 240) | CAP_CONNECT = 0x200000080000000 constant CAP_CONNECTAT (line 241) | CAP_CONNECTAT = 0x200010000000400 constant CAP_CREATE (line 242) | CAP_CREATE = 0x200000000000040 constant CAP_EVENT (line 243) | CAP_EVENT = 0x400000000000020 constant CAP_EXTATTR_DELETE (line 244) | CAP_EXTATTR_DELETE = 0x400000000001000 constant CAP_EXTATTR_GET (line 245) | CAP_EXTATTR_GET = 0x400000000002000 constant CAP_EXTATTR_LIST (line 246) | CAP_EXTATTR_LIST = 0x400000000004000 constant CAP_EXTATTR_SET (line 247) | CAP_EXTATTR_SET = 0x400000000008000 constant CAP_FCHDIR (line 248) | CAP_FCHDIR = 0x200000000000800 constant CAP_FCHFLAGS (line 249) | CAP_FCHFLAGS = 0x200000000001000 constant CAP_FCHMOD (line 250) | CAP_FCHMOD = 0x200000000002000 constant CAP_FCHMODAT (line 251) | CAP_FCHMODAT = 0x200000000002400 constant CAP_FCHOWN (line 252) | CAP_FCHOWN = 0x200000000004000 constant CAP_FCHOWNAT (line 253) | CAP_FCHOWNAT = 0x200000000004400 constant CAP_FCNTL (line 254) | CAP_FCNTL = 0x200000000008000 constant CAP_FCNTL_ALL (line 255) | CAP_FCNTL_ALL = 0x78 constant CAP_FCNTL_GETFL (line 256) | CAP_FCNTL_GETFL = 0x8 constant CAP_FCNTL_GETOWN (line 257) | CAP_FCNTL_GETOWN = 0x20 constant CAP_FCNTL_SETFL (line 258) | CAP_FCNTL_SETFL = 0x10 constant CAP_FCNTL_SETOWN (line 259) | CAP_FCNTL_SETOWN = 0x40 constant CAP_FEXECVE (line 260) | CAP_FEXECVE = 0x200000000000080 constant CAP_FLOCK (line 261) | CAP_FLOCK = 0x200000000010000 constant CAP_FPATHCONF (line 262) | CAP_FPATHCONF = 0x200000000020000 constant CAP_FSCK (line 263) | CAP_FSCK = 0x200000000040000 constant CAP_FSTAT (line 264) | CAP_FSTAT = 0x200000000080000 constant CAP_FSTATAT (line 265) | CAP_FSTATAT = 0x200000000080400 constant CAP_FSTATFS (line 266) | CAP_FSTATFS = 0x200000000100000 constant CAP_FSYNC (line 267) | CAP_FSYNC = 0x200000000000100 constant CAP_FTRUNCATE (line 268) | CAP_FTRUNCATE = 0x200000000000200 constant CAP_FUTIMES (line 269) | CAP_FUTIMES = 0x200000000200000 constant CAP_FUTIMESAT (line 270) | CAP_FUTIMESAT = 0x200000000200400 constant CAP_GETPEERNAME (line 271) | CAP_GETPEERNAME = 0x200000100000000 constant CAP_GETSOCKNAME (line 272) | CAP_GETSOCKNAME = 0x200000200000000 constant CAP_GETSOCKOPT (line 273) | CAP_GETSOCKOPT = 0x200000400000000 constant CAP_IOCTL (line 274) | CAP_IOCTL = 0x400000000000080 constant CAP_IOCTLS_ALL (line 275) | CAP_IOCTLS_ALL = 0x7fffffffffffffff constant CAP_KQUEUE (line 276) | CAP_KQUEUE = 0x400000000100040 constant CAP_KQUEUE_CHANGE (line 277) | CAP_KQUEUE_CHANGE = 0x400000000100000 constant CAP_KQUEUE_EVENT (line 278) | CAP_KQUEUE_EVENT = 0x400000000000040 constant CAP_LINKAT_SOURCE (line 279) | CAP_LINKAT_SOURCE = 0x200020000000400 constant CAP_LINKAT_TARGET (line 280) | CAP_LINKAT_TARGET = 0x200000000400400 constant CAP_LISTEN (line 281) | CAP_LISTEN = 0x200000800000000 constant CAP_LOOKUP (line 282) | CAP_LOOKUP = 0x200000000000400 constant CAP_MAC_GET (line 283) | CAP_MAC_GET = 0x400000000000001 constant CAP_MAC_SET (line 284) | CAP_MAC_SET = 0x400000000000002 constant CAP_MKDIRAT (line 285) | CAP_MKDIRAT = 0x200000000800400 constant CAP_MKFIFOAT (line 286) | CAP_MKFIFOAT = 0x200000001000400 constant CAP_MKNODAT (line 287) | CAP_MKNODAT = 0x200000002000400 constant CAP_MMAP (line 288) | CAP_MMAP = 0x200000000000010 constant CAP_MMAP_R (line 289) | CAP_MMAP_R = 0x20000000000001d constant CAP_MMAP_RW (line 290) | CAP_MMAP_RW = 0x20000000000001f constant CAP_MMAP_RWX (line 291) | CAP_MMAP_RWX = 0x20000000000003f constant CAP_MMAP_RX (line 292) | CAP_MMAP_RX = 0x20000000000003d constant CAP_MMAP_W (line 293) | CAP_MMAP_W = 0x20000000000001e constant CAP_MMAP_WX (line 294) | CAP_MMAP_WX = 0x20000000000003e constant CAP_MMAP_X (line 295) | CAP_MMAP_X = 0x20000000000003c constant CAP_PDGETPID (line 296) | CAP_PDGETPID = 0x400000000000200 constant CAP_PDKILL (line 297) | CAP_PDKILL = 0x400000000000800 constant CAP_PDWAIT (line 298) | CAP_PDWAIT = 0x400000000000400 constant CAP_PEELOFF (line 299) | CAP_PEELOFF = 0x200001000000000 constant CAP_POLL_EVENT (line 300) | CAP_POLL_EVENT = 0x400000000000020 constant CAP_PREAD (line 301) | CAP_PREAD = 0x20000000000000d constant CAP_PWRITE (line 302) | CAP_PWRITE = 0x20000000000000e constant CAP_READ (line 303) | CAP_READ = 0x200000000000001 constant CAP_RECV (line 304) | CAP_RECV = 0x200000000000001 constant CAP_RENAMEAT_SOURCE (line 305) | CAP_RENAMEAT_SOURCE = 0x200000004000400 constant CAP_RENAMEAT_TARGET (line 306) | CAP_RENAMEAT_TARGET = 0x200040000000400 constant CAP_RIGHTS_VERSION (line 307) | CAP_RIGHTS_VERSION = 0x0 constant CAP_RIGHTS_VERSION_00 (line 308) | CAP_RIGHTS_VERSION_00 = 0x0 constant CAP_SEEK (line 309) | CAP_SEEK = 0x20000000000000c constant CAP_SEEK_TELL (line 310) | CAP_SEEK_TELL = 0x200000000000004 constant CAP_SEM_GETVALUE (line 311) | CAP_SEM_GETVALUE = 0x400000000000004 constant CAP_SEM_POST (line 312) | CAP_SEM_POST = 0x400000000000008 constant CAP_SEM_WAIT (line 313) | CAP_SEM_WAIT = 0x400000000000010 constant CAP_SEND (line 314) | CAP_SEND = 0x200000000000002 constant CAP_SETSOCKOPT (line 315) | CAP_SETSOCKOPT = 0x200002000000000 constant CAP_SHUTDOWN (line 316) | CAP_SHUTDOWN = 0x200004000000000 constant CAP_SOCK_CLIENT (line 317) | CAP_SOCK_CLIENT = 0x200007780000003 constant CAP_SOCK_SERVER (line 318) | CAP_SOCK_SERVER = 0x200007f60000003 constant CAP_SYMLINKAT (line 319) | CAP_SYMLINKAT = 0x200000008000400 constant CAP_TTYHOOK (line 320) | CAP_TTYHOOK = 0x400000000000100 constant CAP_UNLINKAT (line 321) | CAP_UNLINKAT = 0x200000010000400 constant CAP_UNUSED0_44 (line 322) | CAP_UNUSED0_44 = 0x200080000000000 constant CAP_UNUSED0_57 (line 323) | CAP_UNUSED0_57 = 0x300000000000000 constant CAP_UNUSED1_22 (line 324) | CAP_UNUSED1_22 = 0x400000000200000 constant CAP_UNUSED1_57 (line 325) | CAP_UNUSED1_57 = 0x500000000000000 constant CAP_WRITE (line 326) | CAP_WRITE = 0x200000000000002 constant CFLUSH (line 327) | CFLUSH = 0xf constant CLOCAL (line 328) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 329) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 330) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 331) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 332) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 333) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 334) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 335) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 336) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 337) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 338) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 339) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 340) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 341) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 342) | CLOCK_VIRTUAL = 0x1 constant CPUSTATES (line 343) | CPUSTATES = 0x5 constant CP_IDLE (line 344) | CP_IDLE = 0x4 constant CP_INTR (line 345) | CP_INTR = 0x3 constant CP_NICE (line 346) | CP_NICE = 0x1 constant CP_SYS (line 347) | CP_SYS = 0x2 constant CP_USER (line 348) | CP_USER = 0x0 constant CREAD (line 349) | CREAD = 0x800 constant CRTSCTS (line 350) | CRTSCTS = 0x30000 constant CS5 (line 351) | CS5 = 0x0 constant CS6 (line 352) | CS6 = 0x100 constant CS7 (line 353) | CS7 = 0x200 constant CS8 (line 354) | CS8 = 0x300 constant CSIZE (line 355) | CSIZE = 0x300 constant CSTART (line 356) | CSTART = 0x11 constant CSTATUS (line 357) | CSTATUS = 0x14 constant CSTOP (line 358) | CSTOP = 0x13 constant CSTOPB (line 359) | CSTOPB = 0x400 constant CSUSP (line 360) | CSUSP = 0x1a constant CTL_HW (line 361) | CTL_HW = 0x6 constant CTL_KERN (line 362) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 363) | CTL_MAXNAME = 0x18 constant CTL_NET (line 364) | CTL_NET = 0x4 constant DIOCGATTR (line 365) | DIOCGATTR = 0xc148648e constant DIOCGDELETE (line 366) | DIOCGDELETE = 0x80106488 constant DIOCGFLUSH (line 367) | DIOCGFLUSH = 0x20006487 constant DIOCGFRONTSTUFF (line 368) | DIOCGFRONTSTUFF = 0x40086486 constant DIOCGFWHEADS (line 369) | DIOCGFWHEADS = 0x40046483 constant DIOCGFWSECTORS (line 370) | DIOCGFWSECTORS = 0x40046482 constant DIOCGIDENT (line 371) | DIOCGIDENT = 0x41006489 constant DIOCGMEDIASIZE (line 372) | DIOCGMEDIASIZE = 0x40086481 constant DIOCGPHYSPATH (line 373) | DIOCGPHYSPATH = 0x4400648d constant DIOCGPROVIDERNAME (line 374) | DIOCGPROVIDERNAME = 0x4400648a constant DIOCGSECTORSIZE (line 375) | DIOCGSECTORSIZE = 0x40046480 constant DIOCGSTRIPEOFFSET (line 376) | DIOCGSTRIPEOFFSET = 0x4008648c constant DIOCGSTRIPESIZE (line 377) | DIOCGSTRIPESIZE = 0x4008648b constant DIOCSKERNELDUMP (line 378) | DIOCSKERNELDUMP = 0x80506490 constant DIOCSKERNELDUMP_FREEBSD11 (line 379) | DIOCSKERNELDUMP_FREEBSD11 = 0x80046485 constant DIOCZONECMD (line 380) | DIOCZONECMD = 0xc080648f constant DLT_A429 (line 381) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 382) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 383) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 384) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 385) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 386) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 387) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 388) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 389) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 390) | DLT_AURORA = 0x7e constant DLT_AX25 (line 391) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 392) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 393) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_BREDR_BB (line 394) | DLT_BLUETOOTH_BREDR_BB = 0xff constant DLT_BLUETOOTH_HCI_H4 (line 395) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 396) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_BLUETOOTH_LE_LL (line 397) | DLT_BLUETOOTH_LE_LL = 0xfb constant DLT_BLUETOOTH_LE_LL_WITH_PHDR (line 398) | DLT_BLUETOOTH_LE_LL_WITH_PHDR = 0x100 constant DLT_BLUETOOTH_LINUX_MONITOR (line 399) | DLT_BLUETOOTH_LINUX_MONITOR = 0xfe constant DLT_CAN20B (line 400) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 401) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 402) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 403) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 404) | DLT_CISCO_IOS = 0x76 constant DLT_CLASS_NETBSD_RAWAF (line 405) | DLT_CLASS_NETBSD_RAWAF = 0x2240000 constant DLT_C_HDLC (line 406) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 407) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 408) | DLT_DBUS = 0xe7 constant DLT_DECT (line 409) | DLT_DECT = 0xdd constant DLT_DISPLAYPORT_AUX (line 410) | DLT_DISPLAYPORT_AUX = 0x113 constant DLT_DOCSIS (line 411) | DLT_DOCSIS = 0x8f constant DLT_DOCSIS31_XRA31 (line 412) | DLT_DOCSIS31_XRA31 = 0x111 constant DLT_DVB_CI (line 413) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 414) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 415) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 416) | DLT_EN3MB = 0x2 constant DLT_ENC (line 417) | DLT_ENC = 0x6d constant DLT_EPON (line 418) | DLT_EPON = 0x103 constant DLT_ERF (line 419) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 420) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 421) | DLT_ERF_POS = 0xb0 constant DLT_ETHERNET_MPACKET (line 422) | DLT_ETHERNET_MPACKET = 0x112 constant DLT_FC_2 (line 423) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 424) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 425) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 426) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 427) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 428) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 429) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 430) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 431) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 432) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 433) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 434) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 435) | DLT_GSMTAP_UM = 0xd9 constant DLT_IBM_SN (line 436) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 437) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 438) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 439) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 440) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 441) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 442) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 443) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 444) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 445) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 446) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 447) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_INFINIBAND (line 448) | DLT_INFINIBAND = 0xf7 constant DLT_IPFILTER (line 449) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 450) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 451) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPMI_HPM_2 (line 452) | DLT_IPMI_HPM_2 = 0x104 constant DLT_IPNET (line 453) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 454) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 455) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 456) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 457) | DLT_IP_OVER_FC = 0x7a constant DLT_ISO_14443 (line 458) | DLT_ISO_14443 = 0x108 constant DLT_JUNIPER_ATM1 (line 459) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 460) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 461) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 462) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 463) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 464) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 465) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 466) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 467) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 468) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 469) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 470) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 471) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 472) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 473) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 474) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 475) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 476) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 477) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 478) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 479) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 480) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 481) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 482) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 483) | DLT_LAPD = 0xcb constant DLT_LIN (line 484) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 485) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 486) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 487) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 488) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 489) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 490) | DLT_LOOP = 0x6c constant DLT_LORATAP (line 491) | DLT_LORATAP = 0x10e constant DLT_LTALK (line 492) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 493) | DLT_MATCHING_MAX = 0x113 constant DLT_MATCHING_MIN (line 494) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 495) | DLT_MFR = 0xb6 constant DLT_MOST (line 496) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 497) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 498) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 499) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 500) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 501) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 502) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 503) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 504) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NETLINK (line 505) | DLT_NETLINK = 0xfd constant DLT_NFC_LLCP (line 506) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 507) | DLT_NFLOG = 0xef constant DLT_NG40 (line 508) | DLT_NG40 = 0xf4 constant DLT_NORDIC_BLE (line 509) | DLT_NORDIC_BLE = 0x110 constant DLT_NULL (line 510) | DLT_NULL = 0x0 constant DLT_OPENFLOW (line 511) | DLT_OPENFLOW = 0x10b constant DLT_PCI_EXP (line 512) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 513) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 514) | DLT_PFSYNC = 0x79 constant DLT_PKTAP (line 515) | DLT_PKTAP = 0x102 constant DLT_PPI (line 516) | DLT_PPI = 0xc0 constant DLT_PPP (line 517) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 518) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 519) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 520) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 521) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 522) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 523) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 524) | DLT_PRISM_HEADER = 0x77 constant DLT_PROFIBUS_DL (line 525) | DLT_PROFIBUS_DL = 0x101 constant DLT_PRONET (line 526) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 527) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 528) | DLT_RAW = 0xc constant DLT_RDS (line 529) | DLT_RDS = 0x109 constant DLT_REDBACK_SMARTEDGE (line 530) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 531) | DLT_RIO = 0x7c constant DLT_RTAC_SERIAL (line 532) | DLT_RTAC_SERIAL = 0xfa constant DLT_SCCP (line 533) | DLT_SCCP = 0x8e constant DLT_SCTP (line 534) | DLT_SCTP = 0xf8 constant DLT_SDLC (line 535) | DLT_SDLC = 0x10c constant DLT_SITA (line 536) | DLT_SITA = 0xc4 constant DLT_SLIP (line 537) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 538) | DLT_SLIP_BSDOS = 0xd constant DLT_STANAG_5066_D_PDU (line 539) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 540) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 541) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TI_LLN_SNIFFER (line 542) | DLT_TI_LLN_SNIFFER = 0x10d constant DLT_TZSP (line 543) | DLT_TZSP = 0x80 constant DLT_USB (line 544) | DLT_USB = 0xba constant DLT_USBPCAP (line 545) | DLT_USBPCAP = 0xf9 constant DLT_USB_DARWIN (line 546) | DLT_USB_DARWIN = 0x10a constant DLT_USB_FREEBSD (line 547) | DLT_USB_FREEBSD = 0xba constant DLT_USB_LINUX (line 548) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 549) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 550) | DLT_USER0 = 0x93 constant DLT_USER1 (line 551) | DLT_USER1 = 0x94 constant DLT_USER10 (line 552) | DLT_USER10 = 0x9d constant DLT_USER11 (line 553) | DLT_USER11 = 0x9e constant DLT_USER12 (line 554) | DLT_USER12 = 0x9f constant DLT_USER13 (line 555) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 556) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 557) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 558) | DLT_USER2 = 0x95 constant DLT_USER3 (line 559) | DLT_USER3 = 0x96 constant DLT_USER4 (line 560) | DLT_USER4 = 0x97 constant DLT_USER5 (line 561) | DLT_USER5 = 0x98 constant DLT_USER6 (line 562) | DLT_USER6 = 0x99 constant DLT_USER7 (line 563) | DLT_USER7 = 0x9a constant DLT_USER8 (line 564) | DLT_USER8 = 0x9b constant DLT_USER9 (line 565) | DLT_USER9 = 0x9c constant DLT_VSOCK (line 566) | DLT_VSOCK = 0x10f constant DLT_WATTSTOPPER_DLM (line 567) | DLT_WATTSTOPPER_DLM = 0x107 constant DLT_WIHART (line 568) | DLT_WIHART = 0xdf constant DLT_WIRESHARK_UPPER_PDU (line 569) | DLT_WIRESHARK_UPPER_PDU = 0xfc constant DLT_X2E_SERIAL (line 570) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 571) | DLT_X2E_XORAYA = 0xd6 constant DLT_ZWAVE_R1_R2 (line 572) | DLT_ZWAVE_R1_R2 = 0x105 constant DLT_ZWAVE_R3 (line 573) | DLT_ZWAVE_R3 = 0x106 constant DT_BLK (line 574) | DT_BLK = 0x6 constant DT_CHR (line 575) | DT_CHR = 0x2 constant DT_DIR (line 576) | DT_DIR = 0x4 constant DT_FIFO (line 577) | DT_FIFO = 0x1 constant DT_LNK (line 578) | DT_LNK = 0xa constant DT_REG (line 579) | DT_REG = 0x8 constant DT_SOCK (line 580) | DT_SOCK = 0xc constant DT_UNKNOWN (line 581) | DT_UNKNOWN = 0x0 constant DT_WHT (line 582) | DT_WHT = 0xe constant ECHO (line 583) | ECHO = 0x8 constant ECHOCTL (line 584) | ECHOCTL = 0x40 constant ECHOE (line 585) | ECHOE = 0x2 constant ECHOK (line 586) | ECHOK = 0x4 constant ECHOKE (line 587) | ECHOKE = 0x1 constant ECHONL (line 588) | ECHONL = 0x10 constant ECHOPRT (line 589) | ECHOPRT = 0x20 constant EVFILT_AIO (line 590) | EVFILT_AIO = -0x3 constant EVFILT_EMPTY (line 591) | EVFILT_EMPTY = -0xd constant EVFILT_FS (line 592) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 593) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 594) | EVFILT_PROC = -0x5 constant EVFILT_PROCDESC (line 595) | EVFILT_PROCDESC = -0x8 constant EVFILT_READ (line 596) | EVFILT_READ = -0x1 constant EVFILT_SENDFILE (line 597) | EVFILT_SENDFILE = -0xc constant EVFILT_SIGNAL (line 598) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 599) | EVFILT_SYSCOUNT = 0xd constant EVFILT_TIMER (line 600) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 601) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 602) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 603) | EVFILT_WRITE = -0x2 constant EVNAMEMAP_NAME_SIZE (line 604) | EVNAMEMAP_NAME_SIZE = 0x40 constant EV_ADD (line 605) | EV_ADD = 0x1 constant EV_CLEAR (line 606) | EV_CLEAR = 0x20 constant EV_DELETE (line 607) | EV_DELETE = 0x2 constant EV_DISABLE (line 608) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 609) | EV_DISPATCH = 0x80 constant EV_DROP (line 610) | EV_DROP = 0x1000 constant EV_ENABLE (line 611) | EV_ENABLE = 0x4 constant EV_EOF (line 612) | EV_EOF = 0x8000 constant EV_ERROR (line 613) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 614) | EV_FLAG1 = 0x2000 constant EV_FLAG2 (line 615) | EV_FLAG2 = 0x4000 constant EV_FORCEONESHOT (line 616) | EV_FORCEONESHOT = 0x100 constant EV_ONESHOT (line 617) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 618) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 619) | EV_SYSFLAGS = 0xf000 constant EXTA (line 620) | EXTA = 0x4b00 constant EXTATTR_MAXNAMELEN (line 621) | EXTATTR_MAXNAMELEN = 0xff constant EXTATTR_NAMESPACE_EMPTY (line 622) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 623) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 624) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 625) | EXTB = 0x9600 constant EXTPROC (line 626) | EXTPROC = 0x800 constant FD_CLOEXEC (line 627) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 628) | FD_SETSIZE = 0x400 constant FLUSHO (line 629) | FLUSHO = 0x800000 constant F_CANCEL (line 630) | F_CANCEL = 0x5 constant F_DUP2FD (line 631) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 632) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 633) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 634) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 635) | F_GETFD = 0x1 constant F_GETFL (line 636) | F_GETFL = 0x3 constant F_GETLK (line 637) | F_GETLK = 0xb constant F_GETOWN (line 638) | F_GETOWN = 0x5 constant F_OGETLK (line 639) | F_OGETLK = 0x7 constant F_OK (line 640) | F_OK = 0x0 constant F_OSETLK (line 641) | F_OSETLK = 0x8 constant F_OSETLKW (line 642) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 643) | F_RDAHEAD = 0x10 constant F_RDLCK (line 644) | F_RDLCK = 0x1 constant F_READAHEAD (line 645) | F_READAHEAD = 0xf constant F_SETFD (line 646) | F_SETFD = 0x2 constant F_SETFL (line 647) | F_SETFL = 0x4 constant F_SETLK (line 648) | F_SETLK = 0xc constant F_SETLKW (line 649) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 650) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 651) | F_SETOWN = 0x6 constant F_UNLCK (line 652) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 653) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 654) | F_WRLCK = 0x3 constant HUPCL (line 655) | HUPCL = 0x4000 constant HW_MACHINE (line 656) | HW_MACHINE = 0x1 constant ICANON (line 657) | ICANON = 0x100 constant ICMP6_FILTER (line 658) | ICMP6_FILTER = 0x12 constant ICRNL (line 659) | ICRNL = 0x100 constant IEXTEN (line 660) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 661) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 662) | IFAN_DEPARTURE = 0x1 constant IFCAP_WOL_MAGIC (line 663) | IFCAP_WOL_MAGIC = 0x2000 constant IFF_ALLMULTI (line 664) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 665) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 666) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 667) | IFF_CANTCHANGE = 0x218f52 constant IFF_CANTCONFIG (line 668) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 669) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 670) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 671) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 672) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 673) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 674) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 675) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 676) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 677) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 678) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 679) | IFF_NOARP = 0x80 constant IFF_NOGROUP (line 680) | IFF_NOGROUP = 0x800000 constant IFF_OACTIVE (line 681) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 682) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 683) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 684) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 685) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 686) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 687) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 688) | IFF_STATICARP = 0x80000 constant IFF_UP (line 689) | IFF_UP = 0x1 constant IFNAMSIZ (line 690) | IFNAMSIZ = 0x10 constant IFT_BRIDGE (line 691) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 692) | IFT_CARP = 0xf8 constant IFT_IEEE1394 (line 693) | IFT_IEEE1394 = 0x90 constant IFT_INFINIBAND (line 694) | IFT_INFINIBAND = 0xc7 constant IFT_L2VLAN (line 695) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 696) | IFT_L3IPVLAN = 0x88 constant IFT_PPP (line 697) | IFT_PPP = 0x17 constant IFT_PROPVIRTUAL (line 698) | IFT_PROPVIRTUAL = 0x35 constant IGNBRK (line 699) | IGNBRK = 0x1 constant IGNCR (line 700) | IGNCR = 0x80 constant IGNPAR (line 701) | IGNPAR = 0x4 constant IMAXBEL (line 702) | IMAXBEL = 0x2000 constant INLCR (line 703) | INLCR = 0x40 constant INPCK (line 704) | INPCK = 0x10 constant IN_CLASSA_HOST (line 705) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 706) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 707) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 708) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 709) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 710) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 711) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 712) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 713) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 714) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 715) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 716) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 717) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 718) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 719) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 720) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 721) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 722) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 723) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 724) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 725) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 726) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 727) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 728) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 729) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 730) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 731) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 732) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 733) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 734) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 735) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 736) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 737) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 738) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 739) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 740) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 741) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 742) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 743) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 744) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 745) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 746) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 747) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 748) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 749) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 750) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 751) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 752) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 753) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 754) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 755) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 756) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 757) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 758) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 759) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 760) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 761) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 762) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 763) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 764) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 765) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 766) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 767) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 768) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 769) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 770) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 771) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 772) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 773) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 774) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 775) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 776) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 777) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 778) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 779) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 780) | IPPROTO_MAX = 0x100 constant IPPROTO_MEAS (line 781) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 782) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 783) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 784) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 785) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 786) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 787) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 788) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 789) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 790) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 791) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 792) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 793) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 794) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 795) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 796) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 797) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 798) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 799) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 800) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 801) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 802) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 803) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 804) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 805) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 806) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 807) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 808) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 809) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 810) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 811) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 812) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 813) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 814) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 815) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 816) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 817) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 818) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 819) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 820) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 821) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 822) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 823) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 824) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 825) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 826) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 827) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 828) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 829) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 830) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 831) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 832) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 833) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 834) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 835) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 836) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 837) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 838) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 839) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 840) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 841) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 842) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 843) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 844) | IPV6_BINDANY = 0x40 constant IPV6_BINDMULTI (line 845) | IPV6_BINDMULTI = 0x41 constant IPV6_BINDV6ONLY (line 846) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 847) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 848) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 849) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 850) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 851) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 852) | IPV6_DSTOPTS = 0x32 constant IPV6_FLOWID (line 853) | IPV6_FLOWID = 0x43 constant IPV6_FLOWINFO_MASK (line 854) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_LEN (line 855) | IPV6_FLOWLABEL_LEN = 0x14 constant IPV6_FLOWLABEL_MASK (line 856) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FLOWTYPE (line 857) | IPV6_FLOWTYPE = 0x44 constant IPV6_FRAGTTL (line 858) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 859) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 860) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 861) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 862) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 863) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 864) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 865) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 866) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 867) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 868) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 869) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 870) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 871) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 872) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 873) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 874) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 875) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MMTU (line 876) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 877) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 878) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 879) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 880) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 881) | IPV6_NEXTHOP = 0x30 constant IPV6_ORIGDSTADDR (line 882) | IPV6_ORIGDSTADDR = 0x48 constant IPV6_PATHMTU (line 883) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 884) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 885) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 886) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 887) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 888) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 889) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 890) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVFLOWID (line 891) | IPV6_RECVFLOWID = 0x46 constant IPV6_RECVHOPLIMIT (line 892) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 893) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVORIGDSTADDR (line 894) | IPV6_RECVORIGDSTADDR = 0x48 constant IPV6_RECVPATHMTU (line 895) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 896) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRSSBUCKETID (line 897) | IPV6_RECVRSSBUCKETID = 0x47 constant IPV6_RECVRTHDR (line 898) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 899) | IPV6_RECVTCLASS = 0x39 constant IPV6_RSSBUCKETID (line 900) | IPV6_RSSBUCKETID = 0x45 constant IPV6_RSS_LISTEN_BUCKET (line 901) | IPV6_RSS_LISTEN_BUCKET = 0x42 constant IPV6_RTHDR (line 902) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 903) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 904) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 905) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 906) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 907) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 908) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 909) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 910) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 911) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 912) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 913) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 914) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 915) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 916) | IP_BINDANY = 0x18 constant IP_BINDMULTI (line 917) | IP_BINDMULTI = 0x19 constant IP_BLOCK_SOURCE (line 918) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 919) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 920) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 921) | IP_DF = 0x4000 constant IP_DONTFRAG (line 922) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 923) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 924) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 925) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 926) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 927) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 928) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 929) | IP_DUMMYNET_GET = 0x40 constant IP_FLOWID (line 930) | IP_FLOWID = 0x5a constant IP_FLOWTYPE (line 931) | IP_FLOWTYPE = 0x5b constant IP_FW3 (line 932) | IP_FW3 = 0x30 constant IP_FW_ADD (line 933) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 934) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 935) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 936) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 937) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 938) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 939) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 940) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 941) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 942) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 943) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 944) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 945) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 946) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 947) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 948) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 949) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 950) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 951) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 952) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 953) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 954) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 955) | IP_MF = 0x2000 constant IP_MINTTL (line 956) | IP_MINTTL = 0x42 constant IP_MSFILTER (line 957) | IP_MSFILTER = 0x4a constant IP_MSS (line 958) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 959) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 960) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 961) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 962) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 963) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 964) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 965) | IP_OPTIONS = 0x1 constant IP_ORIGDSTADDR (line 966) | IP_ORIGDSTADDR = 0x1b constant IP_PORTRANGE (line 967) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 968) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 969) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 970) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 971) | IP_RECVDSTADDR = 0x7 constant IP_RECVFLOWID (line 972) | IP_RECVFLOWID = 0x5d constant IP_RECVIF (line 973) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 974) | IP_RECVOPTS = 0x5 constant IP_RECVORIGDSTADDR (line 975) | IP_RECVORIGDSTADDR = 0x1b constant IP_RECVRETOPTS (line 976) | IP_RECVRETOPTS = 0x6 constant IP_RECVRSSBUCKETID (line 977) | IP_RECVRSSBUCKETID = 0x5e constant IP_RECVTOS (line 978) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 979) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 980) | IP_RETOPTS = 0x8 constant IP_RF (line 981) | IP_RF = 0x8000 constant IP_RSSBUCKETID (line 982) | IP_RSSBUCKETID = 0x5c constant IP_RSS_LISTEN_BUCKET (line 983) | IP_RSS_LISTEN_BUCKET = 0x1a constant IP_RSVP_OFF (line 984) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 985) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 986) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 987) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 988) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 989) | IP_TOS = 0x3 constant IP_TTL (line 990) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 991) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 992) | ISIG = 0x80 constant ISTRIP (line 993) | ISTRIP = 0x20 constant IXANY (line 994) | IXANY = 0x800 constant IXOFF (line 995) | IXOFF = 0x400 constant IXON (line 996) | IXON = 0x200 constant KERN_HOSTNAME (line 997) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 998) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 999) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 1000) | KERN_VERSION = 0x4 constant LOCAL_CONNWAIT (line 1001) | LOCAL_CONNWAIT = 0x4 constant LOCAL_CREDS (line 1002) | LOCAL_CREDS = 0x2 constant LOCAL_CREDS_PERSISTENT (line 1003) | LOCAL_CREDS_PERSISTENT = 0x3 constant LOCAL_PEERCRED (line 1004) | LOCAL_PEERCRED = 0x1 constant LOCAL_VENDOR (line 1005) | LOCAL_VENDOR = 0x80000000 constant LOCK_EX (line 1006) | LOCK_EX = 0x2 constant LOCK_NB (line 1007) | LOCK_NB = 0x4 constant LOCK_SH (line 1008) | LOCK_SH = 0x1 constant LOCK_UN (line 1009) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 1010) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 1011) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 1012) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1013) | MADV_FREE = 0x5 constant MADV_NOCORE (line 1014) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 1015) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 1016) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1017) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1018) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1019) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1020) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 1021) | MAP_32BIT = 0x80000 constant MAP_ALIGNED_SUPER (line 1022) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1023) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1024) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1025) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1026) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1027) | MAP_COPY = 0x2 constant MAP_EXCL (line 1028) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1029) | MAP_FILE = 0x0 constant MAP_FIXED (line 1030) | MAP_FIXED = 0x10 constant MAP_GUARD (line 1031) | MAP_GUARD = 0x2000 constant MAP_HASSEMAPHORE (line 1032) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1033) | MAP_NOCORE = 0x20000 constant MAP_NOSYNC (line 1034) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1035) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1036) | MAP_PRIVATE = 0x2 constant MAP_RESERVED0020 (line 1037) | MAP_RESERVED0020 = 0x20 constant MAP_RESERVED0040 (line 1038) | MAP_RESERVED0040 = 0x40 constant MAP_RESERVED0080 (line 1039) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1040) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1041) | MAP_SHARED = 0x1 constant MAP_STACK (line 1042) | MAP_STACK = 0x400 constant MCAST_BLOCK_SOURCE (line 1043) | MCAST_BLOCK_SOURCE = 0x54 constant MCAST_EXCLUDE (line 1044) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 1045) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 1046) | MCAST_JOIN_GROUP = 0x50 constant MCAST_JOIN_SOURCE_GROUP (line 1047) | MCAST_JOIN_SOURCE_GROUP = 0x52 constant MCAST_LEAVE_GROUP (line 1048) | MCAST_LEAVE_GROUP = 0x51 constant MCAST_LEAVE_SOURCE_GROUP (line 1049) | MCAST_LEAVE_SOURCE_GROUP = 0x53 constant MCAST_UNBLOCK_SOURCE (line 1050) | MCAST_UNBLOCK_SOURCE = 0x55 constant MCAST_UNDEFINED (line 1051) | MCAST_UNDEFINED = 0x0 constant MCL_CURRENT (line 1052) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1053) | MCL_FUTURE = 0x2 constant MNT_ACLS (line 1054) | MNT_ACLS = 0x8000000 constant MNT_ASYNC (line 1055) | MNT_ASYNC = 0x40 constant MNT_AUTOMOUNTED (line 1056) | MNT_AUTOMOUNTED = 0x200000000 constant MNT_BYFSID (line 1057) | MNT_BYFSID = 0x8000000 constant MNT_CMDFLAGS (line 1058) | MNT_CMDFLAGS = 0xd0f0000 constant MNT_DEFEXPORTED (line 1059) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 1060) | MNT_DELEXPORT = 0x20000 constant MNT_EXKERB (line 1061) | MNT_EXKERB = 0x800 constant MNT_EXPORTANON (line 1062) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1063) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1064) | MNT_EXPUBLIC = 0x20000000 constant MNT_EXRDONLY (line 1065) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 1066) | MNT_FORCE = 0x80000 constant MNT_GJOURNAL (line 1067) | MNT_GJOURNAL = 0x2000000 constant MNT_IGNORE (line 1068) | MNT_IGNORE = 0x800000 constant MNT_LAZY (line 1069) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1070) | MNT_LOCAL = 0x1000 constant MNT_MULTILABEL (line 1071) | MNT_MULTILABEL = 0x4000000 constant MNT_NFS4ACLS (line 1072) | MNT_NFS4ACLS = 0x10 constant MNT_NOATIME (line 1073) | MNT_NOATIME = 0x10000000 constant MNT_NOCLUSTERR (line 1074) | MNT_NOCLUSTERR = 0x40000000 constant MNT_NOCLUSTERW (line 1075) | MNT_NOCLUSTERW = 0x80000000 constant MNT_NOEXEC (line 1076) | MNT_NOEXEC = 0x4 constant MNT_NONBUSY (line 1077) | MNT_NONBUSY = 0x4000000 constant MNT_NOSUID (line 1078) | MNT_NOSUID = 0x8 constant MNT_NOSYMFOLLOW (line 1079) | MNT_NOSYMFOLLOW = 0x400000 constant MNT_NOWAIT (line 1080) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 1081) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1082) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1083) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1084) | MNT_ROOTFS = 0x4000 constant MNT_SNAPSHOT (line 1085) | MNT_SNAPSHOT = 0x1000000 constant MNT_SOFTDEP (line 1086) | MNT_SOFTDEP = 0x200000 constant MNT_SUIDDIR (line 1087) | MNT_SUIDDIR = 0x100000 constant MNT_SUJ (line 1088) | MNT_SUJ = 0x100000000 constant MNT_SUSPEND (line 1089) | MNT_SUSPEND = 0x4 constant MNT_SYNCHRONOUS (line 1090) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1091) | MNT_UNION = 0x20 constant MNT_UNTRUSTED (line 1092) | MNT_UNTRUSTED = 0x800000000 constant MNT_UPDATE (line 1093) | MNT_UPDATE = 0x10000 constant MNT_UPDATEMASK (line 1094) | MNT_UPDATEMASK = 0xad8d0807e constant MNT_USER (line 1095) | MNT_USER = 0x8000 constant MNT_VERIFIED (line 1096) | MNT_VERIFIED = 0x400000000 constant MNT_VISFLAGMASK (line 1097) | MNT_VISFLAGMASK = 0xffef0ffff constant MNT_WAIT (line 1098) | MNT_WAIT = 0x1 constant MSG_CMSG_CLOEXEC (line 1099) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1100) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1101) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1102) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1103) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1104) | MSG_EOF = 0x100 constant MSG_EOR (line 1105) | MSG_EOR = 0x8 constant MSG_NBIO (line 1106) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1107) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1108) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1109) | MSG_OOB = 0x1 constant MSG_PEEK (line 1110) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1111) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1112) | MSG_WAITALL = 0x40 constant MSG_WAITFORONE (line 1113) | MSG_WAITFORONE = 0x80000 constant MS_ASYNC (line 1114) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1115) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1116) | MS_SYNC = 0x0 constant NAME_MAX (line 1117) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1118) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1119) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1120) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1121) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1122) | NET_RT_IFMALIST = 0x4 constant NFDBITS (line 1123) | NFDBITS = 0x40 constant NOFLSH (line 1124) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1125) | NOKERNINFO = 0x2000000 constant NOTE_ABSTIME (line 1126) | NOTE_ABSTIME = 0x10 constant NOTE_ATTRIB (line 1127) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1128) | NOTE_CHILD = 0x4 constant NOTE_CLOSE (line 1129) | NOTE_CLOSE = 0x100 constant NOTE_CLOSE_WRITE (line 1130) | NOTE_CLOSE_WRITE = 0x200 constant NOTE_DELETE (line 1131) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1132) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1133) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1134) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1135) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1136) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1137) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1138) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1139) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1140) | NOTE_FFOR = 0x80000000 constant NOTE_FILE_POLL (line 1141) | NOTE_FILE_POLL = 0x2 constant NOTE_FORK (line 1142) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1143) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1144) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1145) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1146) | NOTE_NSECONDS = 0x8 constant NOTE_OPEN (line 1147) | NOTE_OPEN = 0x80 constant NOTE_PCTRLMASK (line 1148) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1149) | NOTE_PDATAMASK = 0xfffff constant NOTE_READ (line 1150) | NOTE_READ = 0x400 constant NOTE_RENAME (line 1151) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1152) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1153) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1154) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1155) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1156) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1157) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1158) | NOTE_WRITE = 0x2 constant OCRNL (line 1159) | OCRNL = 0x10 constant ONLCR (line 1160) | ONLCR = 0x2 constant ONLRET (line 1161) | ONLRET = 0x40 constant ONOCR (line 1162) | ONOCR = 0x20 constant ONOEOT (line 1163) | ONOEOT = 0x8 constant OPOST (line 1164) | OPOST = 0x1 constant OXTABS (line 1165) | OXTABS = 0x4 constant O_ACCMODE (line 1166) | O_ACCMODE = 0x3 constant O_APPEND (line 1167) | O_APPEND = 0x8 constant O_ASYNC (line 1168) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1169) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1170) | O_CREAT = 0x200 constant O_DIRECT (line 1171) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1172) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1173) | O_EXCL = 0x800 constant O_EXEC (line 1174) | O_EXEC = 0x40000 constant O_EXLOCK (line 1175) | O_EXLOCK = 0x20 constant O_FSYNC (line 1176) | O_FSYNC = 0x80 constant O_NDELAY (line 1177) | O_NDELAY = 0x4 constant O_NOCTTY (line 1178) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1179) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1180) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1181) | O_RDONLY = 0x0 constant O_RDWR (line 1182) | O_RDWR = 0x2 constant O_SHLOCK (line 1183) | O_SHLOCK = 0x10 constant O_SYNC (line 1184) | O_SYNC = 0x80 constant O_TRUNC (line 1185) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1186) | O_TTY_INIT = 0x80000 constant O_VERIFY (line 1187) | O_VERIFY = 0x200000 constant O_WRONLY (line 1188) | O_WRONLY = 0x1 constant PARENB (line 1189) | PARENB = 0x1000 constant PARMRK (line 1190) | PARMRK = 0x8 constant PARODD (line 1191) | PARODD = 0x2000 constant PENDIN (line 1192) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1193) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1194) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1195) | PRIO_USER = 0x2 constant PROT_EXEC (line 1196) | PROT_EXEC = 0x4 constant PROT_NONE (line 1197) | PROT_NONE = 0x0 constant PROT_READ (line 1198) | PROT_READ = 0x1 constant PROT_WRITE (line 1199) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1200) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1201) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1202) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1203) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1204) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1205) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1206) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1207) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1208) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1209) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1210) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1211) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1212) | RTAX_BRD = 0x7 constant RTAX_DST (line 1213) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1214) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1215) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1216) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1217) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1218) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1219) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1220) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1221) | RTA_BRD = 0x80 constant RTA_DST (line 1222) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1223) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1224) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1225) | RTA_IFA = 0x20 constant RTA_IFP (line 1226) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1227) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1228) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1229) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1230) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1231) | RTF_DYNAMIC = 0x10 constant RTF_FIXEDMTU (line 1232) | RTF_FIXEDMTU = 0x80000 constant RTF_FMASK (line 1233) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1234) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1235) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1236) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1237) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1238) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1239) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1240) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1241) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1242) | RTF_PINNED = 0x100000 constant RTF_PROTO1 (line 1243) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1244) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1245) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1246) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1247) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1248) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1249) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1250) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1251) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1252) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1253) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1254) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1255) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1256) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1257) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1258) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1259) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1260) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1261) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1262) | RTM_LOSING = 0x5 constant RTM_MISS (line 1263) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1264) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1265) | RTM_NEWMADDR = 0xf constant RTM_REDIRECT (line 1266) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1267) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1268) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1269) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1270) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1271) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1272) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1273) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1274) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1275) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1276) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1277) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1278) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1279) | RT_ALL_FIBS = -0x1 constant RT_BLACKHOLE (line 1280) | RT_BLACKHOLE = 0x40 constant RT_DEFAULT_FIB (line 1281) | RT_DEFAULT_FIB = 0x0 constant RT_HAS_GW (line 1282) | RT_HAS_GW = 0x80 constant RT_HAS_HEADER (line 1283) | RT_HAS_HEADER = 0x10 constant RT_HAS_HEADER_BIT (line 1284) | RT_HAS_HEADER_BIT = 0x4 constant RT_L2_ME (line 1285) | RT_L2_ME = 0x4 constant RT_L2_ME_BIT (line 1286) | RT_L2_ME_BIT = 0x2 constant RT_LLE_CACHE (line 1287) | RT_LLE_CACHE = 0x100 constant RT_MAY_LOOP (line 1288) | RT_MAY_LOOP = 0x8 constant RT_MAY_LOOP_BIT (line 1289) | RT_MAY_LOOP_BIT = 0x3 constant RT_REJECT (line 1290) | RT_REJECT = 0x20 constant RUSAGE_CHILDREN (line 1291) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1292) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1293) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1294) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1295) | SCM_CREDS = 0x3 constant SCM_MONOTONIC (line 1296) | SCM_MONOTONIC = 0x6 constant SCM_REALTIME (line 1297) | SCM_REALTIME = 0x5 constant SCM_RIGHTS (line 1298) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1299) | SCM_TIMESTAMP = 0x2 constant SCM_TIME_INFO (line 1300) | SCM_TIME_INFO = 0x7 constant SEEK_CUR (line 1301) | SEEK_CUR = 0x1 constant SEEK_DATA (line 1302) | SEEK_DATA = 0x3 constant SEEK_END (line 1303) | SEEK_END = 0x2 constant SEEK_HOLE (line 1304) | SEEK_HOLE = 0x4 constant SEEK_SET (line 1305) | SEEK_SET = 0x0 constant SHUT_RD (line 1306) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1307) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1308) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1309) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1310) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1311) | SIOCAIFGROUP = 0x80286987 constant SIOCATMARK (line 1312) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1313) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1314) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1315) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1316) | SIOCDIFPHYADDR = 0x80206949 constant SIOCGDRVSPEC (line 1317) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1318) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1319) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1320) | SIOCGHIWAT = 0x40047301 constant SIOCGHWADDR (line 1321) | SIOCGHWADDR = 0xc020693e constant SIOCGI2C (line 1322) | SIOCGI2C = 0xc020693d constant SIOCGIFADDR (line 1323) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1324) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1325) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1326) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDESCR (line 1327) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1328) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1329) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1330) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1331) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1332) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1333) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFINDEX (line 1334) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1335) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1336) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1337) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1338) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1339) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1340) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1341) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1342) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRSSHASH (line 1343) | SIOCGIFRSSHASH = 0xc0186997 constant SIOCGIFRSSKEY (line 1344) | SIOCGIFRSSKEY = 0xc0946996 constant SIOCGIFSTATUS (line 1345) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFXMEDIA (line 1346) | SIOCGIFXMEDIA = 0xc030698b constant SIOCGLANPCP (line 1347) | SIOCGLANPCP = 0xc0206998 constant SIOCGLOWAT (line 1348) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1349) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1350) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1351) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCGTUNFIB (line 1352) | SIOCGTUNFIB = 0xc020695e constant SIOCIFCREATE (line 1353) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1354) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1355) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1356) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1357) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1358) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1359) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1360) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1361) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1362) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1363) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1364) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1365) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1366) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1367) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1368) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1369) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1370) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1371) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1372) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1373) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1374) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1375) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1376) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1377) | SIOCSIFVNET = 0xc020695a constant SIOCSLANPCP (line 1378) | SIOCSLANPCP = 0x80206999 constant SIOCSLOWAT (line 1379) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1380) | SIOCSPGRP = 0x80047308 constant SIOCSTUNFIB (line 1381) | SIOCSTUNFIB = 0x8020695f constant SOCK_CLOEXEC (line 1382) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1383) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1384) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1385) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1386) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1387) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1388) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1389) | SOCK_STREAM = 0x1 constant SOL_LOCAL (line 1390) | SOL_LOCAL = 0x0 constant SOL_SOCKET (line 1391) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1392) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1393) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1394) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1395) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1396) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1397) | SO_DEBUG = 0x1 constant SO_DOMAIN (line 1398) | SO_DOMAIN = 0x1019 constant SO_DONTROUTE (line 1399) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1400) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1401) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1402) | SO_LABEL = 0x1009 constant SO_LINGER (line 1403) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1404) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1405) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1406) | SO_LISTENQLIMIT = 0x1011 constant SO_MAX_PACING_RATE (line 1407) | SO_MAX_PACING_RATE = 0x1018 constant SO_NOSIGPIPE (line 1408) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1409) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1410) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1411) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1412) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1413) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1414) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1415) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1416) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1417) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1418) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1419) | SO_REUSEPORT = 0x200 constant SO_REUSEPORT_LB (line 1420) | SO_REUSEPORT_LB = 0x10000 constant SO_SETFIB (line 1421) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1422) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1423) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1424) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1425) | SO_TIMESTAMP = 0x400 constant SO_TS_BINTIME (line 1426) | SO_TS_BINTIME = 0x1 constant SO_TS_CLOCK (line 1427) | SO_TS_CLOCK = 0x1017 constant SO_TS_CLOCK_MAX (line 1428) | SO_TS_CLOCK_MAX = 0x3 constant SO_TS_DEFAULT (line 1429) | SO_TS_DEFAULT = 0x0 constant SO_TS_MONOTONIC (line 1430) | SO_TS_MONOTONIC = 0x3 constant SO_TS_REALTIME (line 1431) | SO_TS_REALTIME = 0x2 constant SO_TS_REALTIME_MICRO (line 1432) | SO_TS_REALTIME_MICRO = 0x0 constant SO_TYPE (line 1433) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1434) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1435) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1436) | SO_VENDOR = 0x80000000 constant S_BLKSIZE (line 1437) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1438) | S_IEXEC = 0x40 constant S_IFBLK (line 1439) | S_IFBLK = 0x6000 constant S_IFCHR (line 1440) | S_IFCHR = 0x2000 constant S_IFDIR (line 1441) | S_IFDIR = 0x4000 constant S_IFIFO (line 1442) | S_IFIFO = 0x1000 constant S_IFLNK (line 1443) | S_IFLNK = 0xa000 constant S_IFMT (line 1444) | S_IFMT = 0xf000 constant S_IFREG (line 1445) | S_IFREG = 0x8000 constant S_IFSOCK (line 1446) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1447) | S_IFWHT = 0xe000 constant S_IREAD (line 1448) | S_IREAD = 0x100 constant S_IRGRP (line 1449) | S_IRGRP = 0x20 constant S_IROTH (line 1450) | S_IROTH = 0x4 constant S_IRUSR (line 1451) | S_IRUSR = 0x100 constant S_IRWXG (line 1452) | S_IRWXG = 0x38 constant S_IRWXO (line 1453) | S_IRWXO = 0x7 constant S_IRWXU (line 1454) | S_IRWXU = 0x1c0 constant S_ISGID (line 1455) | S_ISGID = 0x400 constant S_ISTXT (line 1456) | S_ISTXT = 0x200 constant S_ISUID (line 1457) | S_ISUID = 0x800 constant S_ISVTX (line 1458) | S_ISVTX = 0x200 constant S_IWGRP (line 1459) | S_IWGRP = 0x10 constant S_IWOTH (line 1460) | S_IWOTH = 0x2 constant S_IWRITE (line 1461) | S_IWRITE = 0x80 constant S_IWUSR (line 1462) | S_IWUSR = 0x80 constant S_IXGRP (line 1463) | S_IXGRP = 0x8 constant S_IXOTH (line 1464) | S_IXOTH = 0x1 constant S_IXUSR (line 1465) | S_IXUSR = 0x40 constant TAB0 (line 1466) | TAB0 = 0x0 constant TAB3 (line 1467) | TAB3 = 0x4 constant TABDLY (line 1468) | TABDLY = 0x4 constant TCIFLUSH (line 1469) | TCIFLUSH = 0x1 constant TCIOFF (line 1470) | TCIOFF = 0x3 constant TCIOFLUSH (line 1471) | TCIOFLUSH = 0x3 constant TCION (line 1472) | TCION = 0x4 constant TCOFLUSH (line 1473) | TCOFLUSH = 0x2 constant TCOOFF (line 1474) | TCOOFF = 0x1 constant TCOON (line 1475) | TCOON = 0x2 constant TCP_BBR_ACK_COMP_ALG (line 1476) | TCP_BBR_ACK_COMP_ALG = 0x448 constant TCP_BBR_DRAIN_INC_EXTRA (line 1477) | TCP_BBR_DRAIN_INC_EXTRA = 0x43c constant TCP_BBR_DRAIN_PG (line 1478) | TCP_BBR_DRAIN_PG = 0x42e constant TCP_BBR_EXTRA_GAIN (line 1479) | TCP_BBR_EXTRA_GAIN = 0x449 constant TCP_BBR_IWINTSO (line 1480) | TCP_BBR_IWINTSO = 0x42b constant TCP_BBR_LOWGAIN_FD (line 1481) | TCP_BBR_LOWGAIN_FD = 0x436 constant TCP_BBR_LOWGAIN_HALF (line 1482) | TCP_BBR_LOWGAIN_HALF = 0x435 constant TCP_BBR_LOWGAIN_THRESH (line 1483) | TCP_BBR_LOWGAIN_THRESH = 0x434 constant TCP_BBR_MAX_RTO (line 1484) | TCP_BBR_MAX_RTO = 0x439 constant TCP_BBR_MIN_RTO (line 1485) | TCP_BBR_MIN_RTO = 0x438 constant TCP_BBR_ONE_RETRAN (line 1486) | TCP_BBR_ONE_RETRAN = 0x431 constant TCP_BBR_PACE_CROSS (line 1487) | TCP_BBR_PACE_CROSS = 0x442 constant TCP_BBR_PACE_DEL_TAR (line 1488) | TCP_BBR_PACE_DEL_TAR = 0x43f constant TCP_BBR_PACE_PER_SEC (line 1489) | TCP_BBR_PACE_PER_SEC = 0x43e constant TCP_BBR_PACE_SEG_MAX (line 1490) | TCP_BBR_PACE_SEG_MAX = 0x440 constant TCP_BBR_PACE_SEG_MIN (line 1491) | TCP_BBR_PACE_SEG_MIN = 0x441 constant TCP_BBR_PROBE_RTT_GAIN (line 1492) | TCP_BBR_PROBE_RTT_GAIN = 0x44d constant TCP_BBR_PROBE_RTT_INT (line 1493) | TCP_BBR_PROBE_RTT_INT = 0x430 constant TCP_BBR_PROBE_RTT_LEN (line 1494) | TCP_BBR_PROBE_RTT_LEN = 0x44e constant TCP_BBR_RACK_RTT_USE (line 1495) | TCP_BBR_RACK_RTT_USE = 0x44a constant TCP_BBR_RECFORCE (line 1496) | TCP_BBR_RECFORCE = 0x42c constant TCP_BBR_REC_OVER_HPTS (line 1497) | TCP_BBR_REC_OVER_HPTS = 0x43a constant TCP_BBR_RETRAN_WTSO (line 1498) | TCP_BBR_RETRAN_WTSO = 0x44b constant TCP_BBR_RWND_IS_APP (line 1499) | TCP_BBR_RWND_IS_APP = 0x42f constant TCP_BBR_STARTUP_EXIT_EPOCH (line 1500) | TCP_BBR_STARTUP_EXIT_EPOCH = 0x43d constant TCP_BBR_STARTUP_LOSS_EXIT (line 1501) | TCP_BBR_STARTUP_LOSS_EXIT = 0x432 constant TCP_BBR_STARTUP_PG (line 1502) | TCP_BBR_STARTUP_PG = 0x42d constant TCP_BBR_UNLIMITED (line 1503) | TCP_BBR_UNLIMITED = 0x43b constant TCP_BBR_USEDEL_RATE (line 1504) | TCP_BBR_USEDEL_RATE = 0x437 constant TCP_BBR_USE_LOWGAIN (line 1505) | TCP_BBR_USE_LOWGAIN = 0x433 constant TCP_CA_NAME_MAX (line 1506) | TCP_CA_NAME_MAX = 0x10 constant TCP_CCALGOOPT (line 1507) | TCP_CCALGOOPT = 0x41 constant TCP_CONGESTION (line 1508) | TCP_CONGESTION = 0x40 constant TCP_DATA_AFTER_CLOSE (line 1509) | TCP_DATA_AFTER_CLOSE = 0x44c constant TCP_DELACK (line 1510) | TCP_DELACK = 0x48 constant TCP_FASTOPEN (line 1511) | TCP_FASTOPEN = 0x401 constant TCP_FASTOPEN_MAX_COOKIE_LEN (line 1512) | TCP_FASTOPEN_MAX_COOKIE_LEN = 0x10 constant TCP_FASTOPEN_MIN_COOKIE_LEN (line 1513) | TCP_FASTOPEN_MIN_COOKIE_LEN = 0x4 constant TCP_FASTOPEN_PSK_LEN (line 1514) | TCP_FASTOPEN_PSK_LEN = 0x10 constant TCP_FUNCTION_BLK (line 1515) | TCP_FUNCTION_BLK = 0x2000 constant TCP_FUNCTION_NAME_LEN_MAX (line 1516) | TCP_FUNCTION_NAME_LEN_MAX = 0x20 constant TCP_INFO (line 1517) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1518) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1519) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1520) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1521) | TCP_KEEPINTVL = 0x200 constant TCP_LOG (line 1522) | TCP_LOG = 0x22 constant TCP_LOGBUF (line 1523) | TCP_LOGBUF = 0x23 constant TCP_LOGDUMP (line 1524) | TCP_LOGDUMP = 0x25 constant TCP_LOGDUMPID (line 1525) | TCP_LOGDUMPID = 0x26 constant TCP_LOGID (line 1526) | TCP_LOGID = 0x24 constant TCP_LOG_ID_LEN (line 1527) | TCP_LOG_ID_LEN = 0x40 constant TCP_MAXBURST (line 1528) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1529) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1530) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1531) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1532) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1533) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1534) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1535) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1536) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1537) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1538) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1539) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1540) | TCP_NOPUSH = 0x4 constant TCP_PCAP_IN (line 1541) | TCP_PCAP_IN = 0x1000 constant TCP_PCAP_OUT (line 1542) | TCP_PCAP_OUT = 0x800 constant TCP_RACK_EARLY_RECOV (line 1543) | TCP_RACK_EARLY_RECOV = 0x423 constant TCP_RACK_EARLY_SEG (line 1544) | TCP_RACK_EARLY_SEG = 0x424 constant TCP_RACK_IDLE_REDUCE_HIGH (line 1545) | TCP_RACK_IDLE_REDUCE_HIGH = 0x444 constant TCP_RACK_MIN_PACE (line 1546) | TCP_RACK_MIN_PACE = 0x445 constant TCP_RACK_MIN_PACE_SEG (line 1547) | TCP_RACK_MIN_PACE_SEG = 0x446 constant TCP_RACK_MIN_TO (line 1548) | TCP_RACK_MIN_TO = 0x422 constant TCP_RACK_PACE_ALWAYS (line 1549) | TCP_RACK_PACE_ALWAYS = 0x41f constant TCP_RACK_PACE_MAX_SEG (line 1550) | TCP_RACK_PACE_MAX_SEG = 0x41e constant TCP_RACK_PACE_REDUCE (line 1551) | TCP_RACK_PACE_REDUCE = 0x41d constant TCP_RACK_PKT_DELAY (line 1552) | TCP_RACK_PKT_DELAY = 0x428 constant TCP_RACK_PROP (line 1553) | TCP_RACK_PROP = 0x41b constant TCP_RACK_PROP_RATE (line 1554) | TCP_RACK_PROP_RATE = 0x420 constant TCP_RACK_PRR_SENDALOT (line 1555) | TCP_RACK_PRR_SENDALOT = 0x421 constant TCP_RACK_REORD_FADE (line 1556) | TCP_RACK_REORD_FADE = 0x426 constant TCP_RACK_REORD_THRESH (line 1557) | TCP_RACK_REORD_THRESH = 0x425 constant TCP_RACK_SESS_CWV (line 1558) | TCP_RACK_SESS_CWV = 0x42a constant TCP_RACK_TLP_INC_VAR (line 1559) | TCP_RACK_TLP_INC_VAR = 0x429 constant TCP_RACK_TLP_REDUCE (line 1560) | TCP_RACK_TLP_REDUCE = 0x41c constant TCP_RACK_TLP_THRESH (line 1561) | TCP_RACK_TLP_THRESH = 0x427 constant TCP_RACK_TLP_USE (line 1562) | TCP_RACK_TLP_USE = 0x447 constant TCP_VENDOR (line 1563) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1564) | TCSAFLUSH = 0x2 constant TIMER_ABSTIME (line 1565) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1566) | TIMER_RELTIME = 0x0 constant TIOCCBRK (line 1567) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1568) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1569) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1570) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1571) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1572) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1573) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1574) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1575) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1576) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1577) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1578) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1579) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1580) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1581) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1582) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1583) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1584) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1585) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1586) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1587) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1588) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1589) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1590) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1591) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1592) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1593) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1594) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1595) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1596) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1597) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1598) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1599) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1600) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1601) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1602) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1603) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1604) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1605) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1606) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1607) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1608) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1609) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1610) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1611) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1612) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1613) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1614) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1615) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1616) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1617) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1618) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1619) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1620) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1621) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1622) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1623) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1624) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1625) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1626) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1627) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1628) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1629) | TOSTOP = 0x400000 constant UTIME_NOW (line 1630) | UTIME_NOW = -0x1 constant UTIME_OMIT (line 1631) | UTIME_OMIT = -0x2 constant VDISCARD (line 1632) | VDISCARD = 0xf constant VDSUSP (line 1633) | VDSUSP = 0xb constant VEOF (line 1634) | VEOF = 0x0 constant VEOL (line 1635) | VEOL = 0x1 constant VEOL2 (line 1636) | VEOL2 = 0x2 constant VERASE (line 1637) | VERASE = 0x3 constant VERASE2 (line 1638) | VERASE2 = 0x7 constant VINTR (line 1639) | VINTR = 0x8 constant VKILL (line 1640) | VKILL = 0x5 constant VLNEXT (line 1641) | VLNEXT = 0xe constant VMIN (line 1642) | VMIN = 0x10 constant VM_BCACHE_SIZE_MAX (line 1643) | VM_BCACHE_SIZE_MAX = 0x19000000 constant VQUIT (line 1644) | VQUIT = 0x9 constant VREPRINT (line 1645) | VREPRINT = 0x6 constant VSTART (line 1646) | VSTART = 0xc constant VSTATUS (line 1647) | VSTATUS = 0x12 constant VSTOP (line 1648) | VSTOP = 0xd constant VSUSP (line 1649) | VSUSP = 0xa constant VTIME (line 1650) | VTIME = 0x11 constant VWERASE (line 1651) | VWERASE = 0x4 constant WCONTINUED (line 1652) | WCONTINUED = 0x4 constant WCOREFLAG (line 1653) | WCOREFLAG = 0x80 constant WEXITED (line 1654) | WEXITED = 0x10 constant WLINUXCLONE (line 1655) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1656) | WNOHANG = 0x1 constant WNOWAIT (line 1657) | WNOWAIT = 0x8 constant WSTOPPED (line 1658) | WSTOPPED = 0x2 constant WTRAPPED (line 1659) | WTRAPPED = 0x20 constant WUNTRACED (line 1660) | WUNTRACED = 0x2 constant E2BIG (line 1665) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1666) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1667) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1668) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1669) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1670) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1671) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1672) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1673) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1674) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1675) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1676) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1677) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1678) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1679) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1680) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1681) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1682) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1683) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1684) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1685) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1686) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1687) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1688) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1689) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1690) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1691) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1692) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1693) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1694) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1695) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1696) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1697) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1698) | EINVAL = syscall.Errno(0x16) constant EIO (line 1699) | EIO = syscall.Errno(0x5) constant EISCONN (line 1700) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1701) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1702) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1703) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1704) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1705) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1706) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1707) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1708) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1709) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1710) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1711) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1712) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1713) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1714) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1715) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1716) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1717) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1718) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1719) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1720) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1721) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1722) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1723) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1724) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1725) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1726) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1727) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1728) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1729) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1730) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1731) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1732) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1733) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1734) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1735) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1736) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1737) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1738) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1739) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1740) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1741) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1742) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1743) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1744) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1745) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1746) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1747) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1748) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1749) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1750) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1751) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1752) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1753) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1754) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1755) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1756) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1757) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1758) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1759) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1760) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1761) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1762) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1763) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1768) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1769) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1770) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1771) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1772) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1773) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1774) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1775) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1776) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1777) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1778) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1779) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1780) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1781) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1782) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1783) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1784) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1785) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1786) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1787) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1788) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1789) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1790) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1791) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1792) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1793) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1794) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1795) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1796) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1797) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1798) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1799) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1800) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1801) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1802) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux.go constant AAFS_MAGIC (line 11) | AAFS_MAGIC = 0x5a3c69f0 constant ADFS_SUPER_MAGIC (line 12) | ADFS_SUPER_MAGIC = 0xadf5 constant AFFS_SUPER_MAGIC (line 13) | AFFS_SUPER_MAGIC = 0xadff constant AFS_FS_MAGIC (line 14) | AFS_FS_MAGIC = 0x6b414653 constant AFS_SUPER_MAGIC (line 15) | AFS_SUPER_MAGIC = 0x5346414f constant AF_ALG (line 16) | AF_ALG = 0x26 constant AF_APPLETALK (line 17) | AF_APPLETALK = 0x5 constant AF_ASH (line 18) | AF_ASH = 0x12 constant AF_ATMPVC (line 19) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 20) | AF_ATMSVC = 0x14 constant AF_AX25 (line 21) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 22) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 23) | AF_BRIDGE = 0x7 constant AF_CAIF (line 24) | AF_CAIF = 0x25 constant AF_CAN (line 25) | AF_CAN = 0x1d constant AF_DECnet (line 26) | AF_DECnet = 0xc constant AF_ECONET (line 27) | AF_ECONET = 0x13 constant AF_FILE (line 28) | AF_FILE = 0x1 constant AF_IB (line 29) | AF_IB = 0x1b constant AF_IEEE802154 (line 30) | AF_IEEE802154 = 0x24 constant AF_INET (line 31) | AF_INET = 0x2 constant AF_INET6 (line 32) | AF_INET6 = 0xa constant AF_IPX (line 33) | AF_IPX = 0x4 constant AF_IRDA (line 34) | AF_IRDA = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x22 constant AF_IUCV (line 36) | AF_IUCV = 0x20 constant AF_KCM (line 37) | AF_KCM = 0x29 constant AF_KEY (line 38) | AF_KEY = 0xf constant AF_LLC (line 39) | AF_LLC = 0x1a constant AF_LOCAL (line 40) | AF_LOCAL = 0x1 constant AF_MAX (line 41) | AF_MAX = 0x2d constant AF_MPLS (line 42) | AF_MPLS = 0x1c constant AF_NETBEUI (line 43) | AF_NETBEUI = 0xd constant AF_NETLINK (line 44) | AF_NETLINK = 0x10 constant AF_NETROM (line 45) | AF_NETROM = 0x6 constant AF_NFC (line 46) | AF_NFC = 0x27 constant AF_PACKET (line 47) | AF_PACKET = 0x11 constant AF_PHONET (line 48) | AF_PHONET = 0x23 constant AF_PPPOX (line 49) | AF_PPPOX = 0x18 constant AF_QIPCRTR (line 50) | AF_QIPCRTR = 0x2a constant AF_RDS (line 51) | AF_RDS = 0x15 constant AF_ROSE (line 52) | AF_ROSE = 0xb constant AF_ROUTE (line 53) | AF_ROUTE = 0x10 constant AF_RXRPC (line 54) | AF_RXRPC = 0x21 constant AF_SECURITY (line 55) | AF_SECURITY = 0xe constant AF_SMC (line 56) | AF_SMC = 0x2b constant AF_SNA (line 57) | AF_SNA = 0x16 constant AF_TIPC (line 58) | AF_TIPC = 0x1e constant AF_UNIX (line 59) | AF_UNIX = 0x1 constant AF_UNSPEC (line 60) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 61) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 62) | AF_WANPIPE = 0x19 constant AF_X25 (line 63) | AF_X25 = 0x9 constant AF_XDP (line 64) | AF_XDP = 0x2c constant ALG_OP_DECRYPT (line 65) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 66) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 67) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 68) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_DRBG_ENTROPY (line 69) | ALG_SET_DRBG_ENTROPY = 0x6 constant ALG_SET_IV (line 70) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 71) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 72) | ALG_SET_OP = 0x3 constant ANON_INODE_FS_MAGIC (line 73) | ANON_INODE_FS_MAGIC = 0x9041934 constant ARPHRD_6LOWPAN (line 74) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 75) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 76) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 77) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 78) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 79) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 80) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 81) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 82) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 83) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 84) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 85) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 86) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 87) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 88) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 89) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 90) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 91) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 92) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 93) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 94) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 95) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 96) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 97) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 98) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 99) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 100) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 101) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 102) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 103) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 104) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 105) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 106) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 107) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 108) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 109) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 110) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 111) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 112) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 113) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 114) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 115) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 116) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 117) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 118) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 119) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 120) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 121) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 122) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 123) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 124) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 125) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 126) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 127) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 128) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_RAWIP (line 129) | ARPHRD_RAWIP = 0x207 constant ARPHRD_ROSE (line 130) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 131) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 132) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 133) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 134) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 135) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 136) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 137) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 138) | ARPHRD_VOID = 0xffff constant ARPHRD_VSOCKMON (line 139) | ARPHRD_VSOCKMON = 0x33a constant ARPHRD_X25 (line 140) | ARPHRD_X25 = 0x10f constant AUTOFS_SUPER_MAGIC (line 141) | AUTOFS_SUPER_MAGIC = 0x187 constant B0 (line 142) | B0 = 0x0 constant B110 (line 143) | B110 = 0x3 constant B1200 (line 144) | B1200 = 0x9 constant B134 (line 145) | B134 = 0x4 constant B150 (line 146) | B150 = 0x5 constant B1800 (line 147) | B1800 = 0xa constant B19200 (line 148) | B19200 = 0xe constant B200 (line 149) | B200 = 0x6 constant B2400 (line 150) | B2400 = 0xb constant B300 (line 151) | B300 = 0x7 constant B38400 (line 152) | B38400 = 0xf constant B4800 (line 153) | B4800 = 0xc constant B50 (line 154) | B50 = 0x1 constant B600 (line 155) | B600 = 0x8 constant B75 (line 156) | B75 = 0x2 constant B9600 (line 157) | B9600 = 0xd constant BALLOON_KVM_MAGIC (line 158) | BALLOON_KVM_MAGIC = 0x13661366 constant BDEVFS_MAGIC (line 159) | BDEVFS_MAGIC = 0x62646576 constant BINDERFS_SUPER_MAGIC (line 160) | BINDERFS_SUPER_MAGIC = 0x6c6f6f70 constant BINFMTFS_MAGIC (line 161) | BINFMTFS_MAGIC = 0x42494e4d constant BPF_A (line 162) | BPF_A = 0x10 constant BPF_ABS (line 163) | BPF_ABS = 0x20 constant BPF_ADD (line 164) | BPF_ADD = 0x0 constant BPF_ALU (line 165) | BPF_ALU = 0x4 constant BPF_ALU64 (line 166) | BPF_ALU64 = 0x7 constant BPF_AND (line 167) | BPF_AND = 0x50 constant BPF_ARSH (line 168) | BPF_ARSH = 0xc0 constant BPF_ATOMIC (line 169) | BPF_ATOMIC = 0xc0 constant BPF_B (line 170) | BPF_B = 0x10 constant BPF_BUILD_ID_SIZE (line 171) | BPF_BUILD_ID_SIZE = 0x14 constant BPF_CALL (line 172) | BPF_CALL = 0x80 constant BPF_CMPXCHG (line 173) | BPF_CMPXCHG = 0xf1 constant BPF_DIV (line 174) | BPF_DIV = 0x30 constant BPF_DW (line 175) | BPF_DW = 0x18 constant BPF_END (line 176) | BPF_END = 0xd0 constant BPF_EXIT (line 177) | BPF_EXIT = 0x90 constant BPF_FETCH (line 178) | BPF_FETCH = 0x1 constant BPF_FROM_BE (line 179) | BPF_FROM_BE = 0x8 constant BPF_FROM_LE (line 180) | BPF_FROM_LE = 0x0 constant BPF_FS_MAGIC (line 181) | BPF_FS_MAGIC = 0xcafe4a11 constant BPF_F_ALLOW_MULTI (line 182) | BPF_F_ALLOW_MULTI = 0x2 constant BPF_F_ALLOW_OVERRIDE (line 183) | BPF_F_ALLOW_OVERRIDE = 0x1 constant BPF_F_ANY_ALIGNMENT (line 184) | BPF_F_ANY_ALIGNMENT = 0x2 constant BPF_F_QUERY_EFFECTIVE (line 185) | BPF_F_QUERY_EFFECTIVE = 0x1 constant BPF_F_REPLACE (line 186) | BPF_F_REPLACE = 0x4 constant BPF_F_SLEEPABLE (line 187) | BPF_F_SLEEPABLE = 0x10 constant BPF_F_STRICT_ALIGNMENT (line 188) | BPF_F_STRICT_ALIGNMENT = 0x1 constant BPF_F_TEST_RND_HI32 (line 189) | BPF_F_TEST_RND_HI32 = 0x4 constant BPF_F_TEST_RUN_ON_CPU (line 190) | BPF_F_TEST_RUN_ON_CPU = 0x1 constant BPF_F_TEST_STATE_FREQ (line 191) | BPF_F_TEST_STATE_FREQ = 0x8 constant BPF_H (line 192) | BPF_H = 0x8 constant BPF_IMM (line 193) | BPF_IMM = 0x0 constant BPF_IND (line 194) | BPF_IND = 0x40 constant BPF_JA (line 195) | BPF_JA = 0x0 constant BPF_JEQ (line 196) | BPF_JEQ = 0x10 constant BPF_JGE (line 197) | BPF_JGE = 0x30 constant BPF_JGT (line 198) | BPF_JGT = 0x20 constant BPF_JLE (line 199) | BPF_JLE = 0xb0 constant BPF_JLT (line 200) | BPF_JLT = 0xa0 constant BPF_JMP (line 201) | BPF_JMP = 0x5 constant BPF_JMP32 (line 202) | BPF_JMP32 = 0x6 constant BPF_JNE (line 203) | BPF_JNE = 0x50 constant BPF_JSET (line 204) | BPF_JSET = 0x40 constant BPF_JSGE (line 205) | BPF_JSGE = 0x70 constant BPF_JSGT (line 206) | BPF_JSGT = 0x60 constant BPF_JSLE (line 207) | BPF_JSLE = 0xd0 constant BPF_JSLT (line 208) | BPF_JSLT = 0xc0 constant BPF_K (line 209) | BPF_K = 0x0 constant BPF_LD (line 210) | BPF_LD = 0x0 constant BPF_LDX (line 211) | BPF_LDX = 0x1 constant BPF_LEN (line 212) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 213) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 214) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 215) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 216) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 217) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 218) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 219) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 220) | BPF_MISC = 0x7 constant BPF_MOD (line 221) | BPF_MOD = 0x90 constant BPF_MOV (line 222) | BPF_MOV = 0xb0 constant BPF_MSH (line 223) | BPF_MSH = 0xa0 constant BPF_MUL (line 224) | BPF_MUL = 0x20 constant BPF_NEG (line 225) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 226) | BPF_NET_OFF = -0x100000 constant BPF_OBJ_NAME_LEN (line 227) | BPF_OBJ_NAME_LEN = 0x10 constant BPF_OR (line 228) | BPF_OR = 0x40 constant BPF_PSEUDO_BTF_ID (line 229) | BPF_PSEUDO_BTF_ID = 0x3 constant BPF_PSEUDO_CALL (line 230) | BPF_PSEUDO_CALL = 0x1 constant BPF_PSEUDO_MAP_FD (line 231) | BPF_PSEUDO_MAP_FD = 0x1 constant BPF_PSEUDO_MAP_VALUE (line 232) | BPF_PSEUDO_MAP_VALUE = 0x2 constant BPF_RET (line 233) | BPF_RET = 0x6 constant BPF_RSH (line 234) | BPF_RSH = 0x70 constant BPF_ST (line 235) | BPF_ST = 0x2 constant BPF_STX (line 236) | BPF_STX = 0x3 constant BPF_SUB (line 237) | BPF_SUB = 0x10 constant BPF_TAG_SIZE (line 238) | BPF_TAG_SIZE = 0x8 constant BPF_TAX (line 239) | BPF_TAX = 0x0 constant BPF_TO_BE (line 240) | BPF_TO_BE = 0x8 constant BPF_TO_LE (line 241) | BPF_TO_LE = 0x0 constant BPF_TXA (line 242) | BPF_TXA = 0x80 constant BPF_W (line 243) | BPF_W = 0x0 constant BPF_X (line 244) | BPF_X = 0x8 constant BPF_XADD (line 245) | BPF_XADD = 0xc0 constant BPF_XCHG (line 246) | BPF_XCHG = 0xe1 constant BPF_XOR (line 247) | BPF_XOR = 0xa0 constant BRKINT (line 248) | BRKINT = 0x2 constant BS0 (line 249) | BS0 = 0x0 constant BTRFS_SUPER_MAGIC (line 250) | BTRFS_SUPER_MAGIC = 0x9123683e constant BTRFS_TEST_MAGIC (line 251) | BTRFS_TEST_MAGIC = 0x73727279 constant BUS_BLUETOOTH (line 252) | BUS_BLUETOOTH = 0x5 constant BUS_HIL (line 253) | BUS_HIL = 0x4 constant BUS_USB (line 254) | BUS_USB = 0x3 constant BUS_VIRTUAL (line 255) | BUS_VIRTUAL = 0x6 constant CAN_BCM (line 256) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 257) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 258) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 259) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_ACK (line 260) | CAN_ERR_ACK = 0x20 constant CAN_ERR_BUSERROR (line 261) | CAN_ERR_BUSERROR = 0x80 constant CAN_ERR_BUSOFF (line 262) | CAN_ERR_BUSOFF = 0x40 constant CAN_ERR_CRTL (line 263) | CAN_ERR_CRTL = 0x4 constant CAN_ERR_CRTL_ACTIVE (line 264) | CAN_ERR_CRTL_ACTIVE = 0x40 constant CAN_ERR_CRTL_RX_OVERFLOW (line 265) | CAN_ERR_CRTL_RX_OVERFLOW = 0x1 constant CAN_ERR_CRTL_RX_PASSIVE (line 266) | CAN_ERR_CRTL_RX_PASSIVE = 0x10 constant CAN_ERR_CRTL_RX_WARNING (line 267) | CAN_ERR_CRTL_RX_WARNING = 0x4 constant CAN_ERR_CRTL_TX_OVERFLOW (line 268) | CAN_ERR_CRTL_TX_OVERFLOW = 0x2 constant CAN_ERR_CRTL_TX_PASSIVE (line 269) | CAN_ERR_CRTL_TX_PASSIVE = 0x20 constant CAN_ERR_CRTL_TX_WARNING (line 270) | CAN_ERR_CRTL_TX_WARNING = 0x8 constant CAN_ERR_CRTL_UNSPEC (line 271) | CAN_ERR_CRTL_UNSPEC = 0x0 constant CAN_ERR_DLC (line 272) | CAN_ERR_DLC = 0x8 constant CAN_ERR_FLAG (line 273) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_LOSTARB (line 274) | CAN_ERR_LOSTARB = 0x2 constant CAN_ERR_LOSTARB_UNSPEC (line 275) | CAN_ERR_LOSTARB_UNSPEC = 0x0 constant CAN_ERR_MASK (line 276) | CAN_ERR_MASK = 0x1fffffff constant CAN_ERR_PROT (line 277) | CAN_ERR_PROT = 0x8 constant CAN_ERR_PROT_ACTIVE (line 278) | CAN_ERR_PROT_ACTIVE = 0x40 constant CAN_ERR_PROT_BIT (line 279) | CAN_ERR_PROT_BIT = 0x1 constant CAN_ERR_PROT_BIT0 (line 280) | CAN_ERR_PROT_BIT0 = 0x8 constant CAN_ERR_PROT_BIT1 (line 281) | CAN_ERR_PROT_BIT1 = 0x10 constant CAN_ERR_PROT_FORM (line 282) | CAN_ERR_PROT_FORM = 0x2 constant CAN_ERR_PROT_LOC_ACK (line 283) | CAN_ERR_PROT_LOC_ACK = 0x19 constant CAN_ERR_PROT_LOC_ACK_DEL (line 284) | CAN_ERR_PROT_LOC_ACK_DEL = 0x1b constant CAN_ERR_PROT_LOC_CRC_DEL (line 285) | CAN_ERR_PROT_LOC_CRC_DEL = 0x18 constant CAN_ERR_PROT_LOC_CRC_SEQ (line 286) | CAN_ERR_PROT_LOC_CRC_SEQ = 0x8 constant CAN_ERR_PROT_LOC_DATA (line 287) | CAN_ERR_PROT_LOC_DATA = 0xa constant CAN_ERR_PROT_LOC_DLC (line 288) | CAN_ERR_PROT_LOC_DLC = 0xb constant CAN_ERR_PROT_LOC_EOF (line 289) | CAN_ERR_PROT_LOC_EOF = 0x1a constant CAN_ERR_PROT_LOC_ID04_00 (line 290) | CAN_ERR_PROT_LOC_ID04_00 = 0xe constant CAN_ERR_PROT_LOC_ID12_05 (line 291) | CAN_ERR_PROT_LOC_ID12_05 = 0xf constant CAN_ERR_PROT_LOC_ID17_13 (line 292) | CAN_ERR_PROT_LOC_ID17_13 = 0x7 constant CAN_ERR_PROT_LOC_ID20_18 (line 293) | CAN_ERR_PROT_LOC_ID20_18 = 0x6 constant CAN_ERR_PROT_LOC_ID28_21 (line 294) | CAN_ERR_PROT_LOC_ID28_21 = 0x2 constant CAN_ERR_PROT_LOC_IDE (line 295) | CAN_ERR_PROT_LOC_IDE = 0x5 constant CAN_ERR_PROT_LOC_INTERM (line 296) | CAN_ERR_PROT_LOC_INTERM = 0x12 constant CAN_ERR_PROT_LOC_RES0 (line 297) | CAN_ERR_PROT_LOC_RES0 = 0x9 constant CAN_ERR_PROT_LOC_RES1 (line 298) | CAN_ERR_PROT_LOC_RES1 = 0xd constant CAN_ERR_PROT_LOC_RTR (line 299) | CAN_ERR_PROT_LOC_RTR = 0xc constant CAN_ERR_PROT_LOC_SOF (line 300) | CAN_ERR_PROT_LOC_SOF = 0x3 constant CAN_ERR_PROT_LOC_SRTR (line 301) | CAN_ERR_PROT_LOC_SRTR = 0x4 constant CAN_ERR_PROT_LOC_UNSPEC (line 302) | CAN_ERR_PROT_LOC_UNSPEC = 0x0 constant CAN_ERR_PROT_OVERLOAD (line 303) | CAN_ERR_PROT_OVERLOAD = 0x20 constant CAN_ERR_PROT_STUFF (line 304) | CAN_ERR_PROT_STUFF = 0x4 constant CAN_ERR_PROT_TX (line 305) | CAN_ERR_PROT_TX = 0x80 constant CAN_ERR_PROT_UNSPEC (line 306) | CAN_ERR_PROT_UNSPEC = 0x0 constant CAN_ERR_RESTARTED (line 307) | CAN_ERR_RESTARTED = 0x100 constant CAN_ERR_TRX (line 308) | CAN_ERR_TRX = 0x10 constant CAN_ERR_TRX_CANH_NO_WIRE (line 309) | CAN_ERR_TRX_CANH_NO_WIRE = 0x4 constant CAN_ERR_TRX_CANH_SHORT_TO_BAT (line 310) | CAN_ERR_TRX_CANH_SHORT_TO_BAT = 0x5 constant CAN_ERR_TRX_CANH_SHORT_TO_GND (line 311) | CAN_ERR_TRX_CANH_SHORT_TO_GND = 0x7 constant CAN_ERR_TRX_CANH_SHORT_TO_VCC (line 312) | CAN_ERR_TRX_CANH_SHORT_TO_VCC = 0x6 constant CAN_ERR_TRX_CANL_NO_WIRE (line 313) | CAN_ERR_TRX_CANL_NO_WIRE = 0x40 constant CAN_ERR_TRX_CANL_SHORT_TO_BAT (line 314) | CAN_ERR_TRX_CANL_SHORT_TO_BAT = 0x50 constant CAN_ERR_TRX_CANL_SHORT_TO_CANH (line 315) | CAN_ERR_TRX_CANL_SHORT_TO_CANH = 0x80 constant CAN_ERR_TRX_CANL_SHORT_TO_GND (line 316) | CAN_ERR_TRX_CANL_SHORT_TO_GND = 0x70 constant CAN_ERR_TRX_CANL_SHORT_TO_VCC (line 317) | CAN_ERR_TRX_CANL_SHORT_TO_VCC = 0x60 constant CAN_ERR_TRX_UNSPEC (line 318) | CAN_ERR_TRX_UNSPEC = 0x0 constant CAN_ERR_TX_TIMEOUT (line 319) | CAN_ERR_TX_TIMEOUT = 0x1 constant CAN_INV_FILTER (line 320) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 321) | CAN_ISOTP = 0x6 constant CAN_J1939 (line 322) | CAN_J1939 = 0x7 constant CAN_MAX_DLC (line 323) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 324) | CAN_MAX_DLEN = 0x8 constant CAN_MAX_RAW_DLC (line 325) | CAN_MAX_RAW_DLC = 0xf constant CAN_MCNET (line 326) | CAN_MCNET = 0x5 constant CAN_MTU (line 327) | CAN_MTU = 0x10 constant CAN_NPROTO (line 328) | CAN_NPROTO = 0x8 constant CAN_RAW (line 329) | CAN_RAW = 0x1 constant CAN_RAW_FILTER_MAX (line 330) | CAN_RAW_FILTER_MAX = 0x200 constant CAN_RTR_FLAG (line 331) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 332) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 333) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 334) | CAN_TP16 = 0x3 constant CAN_TP20 (line 335) | CAN_TP20 = 0x4 constant CAP_AUDIT_CONTROL (line 336) | CAP_AUDIT_CONTROL = 0x1e constant CAP_AUDIT_READ (line 337) | CAP_AUDIT_READ = 0x25 constant CAP_AUDIT_WRITE (line 338) | CAP_AUDIT_WRITE = 0x1d constant CAP_BLOCK_SUSPEND (line 339) | CAP_BLOCK_SUSPEND = 0x24 constant CAP_BPF (line 340) | CAP_BPF = 0x27 constant CAP_CHECKPOINT_RESTORE (line 341) | CAP_CHECKPOINT_RESTORE = 0x28 constant CAP_CHOWN (line 342) | CAP_CHOWN = 0x0 constant CAP_DAC_OVERRIDE (line 343) | CAP_DAC_OVERRIDE = 0x1 constant CAP_DAC_READ_SEARCH (line 344) | CAP_DAC_READ_SEARCH = 0x2 constant CAP_FOWNER (line 345) | CAP_FOWNER = 0x3 constant CAP_FSETID (line 346) | CAP_FSETID = 0x4 constant CAP_IPC_LOCK (line 347) | CAP_IPC_LOCK = 0xe constant CAP_IPC_OWNER (line 348) | CAP_IPC_OWNER = 0xf constant CAP_KILL (line 349) | CAP_KILL = 0x5 constant CAP_LAST_CAP (line 350) | CAP_LAST_CAP = 0x28 constant CAP_LEASE (line 351) | CAP_LEASE = 0x1c constant CAP_LINUX_IMMUTABLE (line 352) | CAP_LINUX_IMMUTABLE = 0x9 constant CAP_MAC_ADMIN (line 353) | CAP_MAC_ADMIN = 0x21 constant CAP_MAC_OVERRIDE (line 354) | CAP_MAC_OVERRIDE = 0x20 constant CAP_MKNOD (line 355) | CAP_MKNOD = 0x1b constant CAP_NET_ADMIN (line 356) | CAP_NET_ADMIN = 0xc constant CAP_NET_BIND_SERVICE (line 357) | CAP_NET_BIND_SERVICE = 0xa constant CAP_NET_BROADCAST (line 358) | CAP_NET_BROADCAST = 0xb constant CAP_NET_RAW (line 359) | CAP_NET_RAW = 0xd constant CAP_PERFMON (line 360) | CAP_PERFMON = 0x26 constant CAP_SETFCAP (line 361) | CAP_SETFCAP = 0x1f constant CAP_SETGID (line 362) | CAP_SETGID = 0x6 constant CAP_SETPCAP (line 363) | CAP_SETPCAP = 0x8 constant CAP_SETUID (line 364) | CAP_SETUID = 0x7 constant CAP_SYSLOG (line 365) | CAP_SYSLOG = 0x22 constant CAP_SYS_ADMIN (line 366) | CAP_SYS_ADMIN = 0x15 constant CAP_SYS_BOOT (line 367) | CAP_SYS_BOOT = 0x16 constant CAP_SYS_CHROOT (line 368) | CAP_SYS_CHROOT = 0x12 constant CAP_SYS_MODULE (line 369) | CAP_SYS_MODULE = 0x10 constant CAP_SYS_NICE (line 370) | CAP_SYS_NICE = 0x17 constant CAP_SYS_PACCT (line 371) | CAP_SYS_PACCT = 0x14 constant CAP_SYS_PTRACE (line 372) | CAP_SYS_PTRACE = 0x13 constant CAP_SYS_RAWIO (line 373) | CAP_SYS_RAWIO = 0x11 constant CAP_SYS_RESOURCE (line 374) | CAP_SYS_RESOURCE = 0x18 constant CAP_SYS_TIME (line 375) | CAP_SYS_TIME = 0x19 constant CAP_SYS_TTY_CONFIG (line 376) | CAP_SYS_TTY_CONFIG = 0x1a constant CAP_WAKE_ALARM (line 377) | CAP_WAKE_ALARM = 0x23 constant CFLUSH (line 378) | CFLUSH = 0xf constant CGROUP2_SUPER_MAGIC (line 379) | CGROUP2_SUPER_MAGIC = 0x63677270 constant CGROUP_SUPER_MAGIC (line 380) | CGROUP_SUPER_MAGIC = 0x27e0eb constant CLOCK_BOOTTIME (line 381) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 382) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 383) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 384) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 385) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 386) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 387) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 388) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 389) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 390) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 391) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 392) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 393) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 394) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 395) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 396) | CLOCK_TXINT = 0x3 constant CLONE_ARGS_SIZE_VER0 (line 397) | CLONE_ARGS_SIZE_VER0 = 0x40 constant CLONE_ARGS_SIZE_VER1 (line 398) | CLONE_ARGS_SIZE_VER1 = 0x50 constant CLONE_ARGS_SIZE_VER2 (line 399) | CLONE_ARGS_SIZE_VER2 = 0x58 constant CLONE_CHILD_CLEARTID (line 400) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 401) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_CLEAR_SIGHAND (line 402) | CLONE_CLEAR_SIGHAND = 0x100000000 constant CLONE_DETACHED (line 403) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 404) | CLONE_FILES = 0x400 constant CLONE_FS (line 405) | CLONE_FS = 0x200 constant CLONE_INTO_CGROUP (line 406) | CLONE_INTO_CGROUP = 0x200000000 constant CLONE_IO (line 407) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 408) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 409) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 410) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 411) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 412) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWTIME (line 413) | CLONE_NEWTIME = 0x80 constant CLONE_NEWUSER (line 414) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 415) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 416) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 417) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PIDFD (line 418) | CLONE_PIDFD = 0x1000 constant CLONE_PTRACE (line 419) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 420) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 421) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 422) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 423) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 424) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 425) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 426) | CLONE_VM = 0x100 constant CMSPAR (line 427) | CMSPAR = 0x40000000 constant CODA_SUPER_MAGIC (line 428) | CODA_SUPER_MAGIC = 0x73757245 constant CR0 (line 429) | CR0 = 0x0 constant CRAMFS_MAGIC (line 430) | CRAMFS_MAGIC = 0x28cd3d45 constant CRTSCTS (line 431) | CRTSCTS = 0x80000000 constant CRYPTO_MAX_NAME (line 432) | CRYPTO_MAX_NAME = 0x40 constant CRYPTO_MSG_MAX (line 433) | CRYPTO_MSG_MAX = 0x15 constant CRYPTO_NR_MSGTYPES (line 434) | CRYPTO_NR_MSGTYPES = 0x6 constant CRYPTO_REPORT_MAXSIZE (line 435) | CRYPTO_REPORT_MAXSIZE = 0x160 constant CS5 (line 436) | CS5 = 0x0 constant CSIGNAL (line 437) | CSIGNAL = 0xff constant CSTART (line 438) | CSTART = 0x11 constant CSTATUS (line 439) | CSTATUS = 0x0 constant CSTOP (line 440) | CSTOP = 0x13 constant CSUSP (line 441) | CSUSP = 0x1a constant DAXFS_MAGIC (line 442) | DAXFS_MAGIC = 0x64646178 constant DEBUGFS_MAGIC (line 443) | DEBUGFS_MAGIC = 0x64626720 constant DEVLINK_CMD_ESWITCH_MODE_GET (line 444) | DEVLINK_CMD_ESWITCH_MODE_GET = 0x1d constant DEVLINK_CMD_ESWITCH_MODE_SET (line 445) | DEVLINK_CMD_ESWITCH_MODE_SET = 0x1e constant DEVLINK_FLASH_OVERWRITE_IDENTIFIERS (line 446) | DEVLINK_FLASH_OVERWRITE_IDENTIFIERS = 0x2 constant DEVLINK_FLASH_OVERWRITE_SETTINGS (line 447) | DEVLINK_FLASH_OVERWRITE_SETTINGS = 0x1 constant DEVLINK_GENL_MCGRP_CONFIG_NAME (line 448) | DEVLINK_GENL_MCGRP_CONFIG_NAME = "config" constant DEVLINK_GENL_NAME (line 449) | DEVLINK_GENL_NAME = "devlink" constant DEVLINK_GENL_VERSION (line 450) | DEVLINK_GENL_VERSION = 0x1 constant DEVLINK_SB_THRESHOLD_TO_ALPHA_MAX (line 451) | DEVLINK_SB_THRESHOLD_TO_ALPHA_MAX = 0x14 constant DEVLINK_SUPPORTED_FLASH_OVERWRITE_SECTIONS (line 452) | DEVLINK_SUPPORTED_FLASH_OVERWRITE_SECTIONS = 0x3 constant DEVMEM_MAGIC (line 453) | DEVMEM_MAGIC = 0x454d444d constant DEVPTS_SUPER_MAGIC (line 454) | DEVPTS_SUPER_MAGIC = 0x1cd1 constant DMA_BUF_MAGIC (line 455) | DMA_BUF_MAGIC = 0x444d4142 constant DM_ACTIVE_PRESENT_FLAG (line 456) | DM_ACTIVE_PRESENT_FLAG = 0x20 constant DM_BUFFER_FULL_FLAG (line 457) | DM_BUFFER_FULL_FLAG = 0x100 constant DM_CONTROL_NODE (line 458) | DM_CONTROL_NODE = "control" constant DM_DATA_OUT_FLAG (line 459) | DM_DATA_OUT_FLAG = 0x10000 constant DM_DEFERRED_REMOVE (line 460) | DM_DEFERRED_REMOVE = 0x20000 constant DM_DEV_ARM_POLL (line 461) | DM_DEV_ARM_POLL = 0xc138fd10 constant DM_DEV_CREATE (line 462) | DM_DEV_CREATE = 0xc138fd03 constant DM_DEV_REMOVE (line 463) | DM_DEV_REMOVE = 0xc138fd04 constant DM_DEV_RENAME (line 464) | DM_DEV_RENAME = 0xc138fd05 constant DM_DEV_SET_GEOMETRY (line 465) | DM_DEV_SET_GEOMETRY = 0xc138fd0f constant DM_DEV_STATUS (line 466) | DM_DEV_STATUS = 0xc138fd07 constant DM_DEV_SUSPEND (line 467) | DM_DEV_SUSPEND = 0xc138fd06 constant DM_DEV_WAIT (line 468) | DM_DEV_WAIT = 0xc138fd08 constant DM_DIR (line 469) | DM_DIR = "mapper" constant DM_GET_TARGET_VERSION (line 470) | DM_GET_TARGET_VERSION = 0xc138fd11 constant DM_INACTIVE_PRESENT_FLAG (line 471) | DM_INACTIVE_PRESENT_FLAG = 0x40 constant DM_INTERNAL_SUSPEND_FLAG (line 472) | DM_INTERNAL_SUSPEND_FLAG = 0x40000 constant DM_IOCTL (line 473) | DM_IOCTL = 0xfd constant DM_LIST_DEVICES (line 474) | DM_LIST_DEVICES = 0xc138fd02 constant DM_LIST_VERSIONS (line 475) | DM_LIST_VERSIONS = 0xc138fd0d constant DM_MAX_TYPE_NAME (line 476) | DM_MAX_TYPE_NAME = 0x10 constant DM_NAME_LEN (line 477) | DM_NAME_LEN = 0x80 constant DM_NOFLUSH_FLAG (line 478) | DM_NOFLUSH_FLAG = 0x800 constant DM_PERSISTENT_DEV_FLAG (line 479) | DM_PERSISTENT_DEV_FLAG = 0x8 constant DM_QUERY_INACTIVE_TABLE_FLAG (line 480) | DM_QUERY_INACTIVE_TABLE_FLAG = 0x1000 constant DM_READONLY_FLAG (line 481) | DM_READONLY_FLAG = 0x1 constant DM_REMOVE_ALL (line 482) | DM_REMOVE_ALL = 0xc138fd01 constant DM_SECURE_DATA_FLAG (line 483) | DM_SECURE_DATA_FLAG = 0x8000 constant DM_SKIP_BDGET_FLAG (line 484) | DM_SKIP_BDGET_FLAG = 0x200 constant DM_SKIP_LOCKFS_FLAG (line 485) | DM_SKIP_LOCKFS_FLAG = 0x400 constant DM_STATUS_TABLE_FLAG (line 486) | DM_STATUS_TABLE_FLAG = 0x10 constant DM_SUSPEND_FLAG (line 487) | DM_SUSPEND_FLAG = 0x2 constant DM_TABLE_CLEAR (line 488) | DM_TABLE_CLEAR = 0xc138fd0a constant DM_TABLE_DEPS (line 489) | DM_TABLE_DEPS = 0xc138fd0b constant DM_TABLE_LOAD (line 490) | DM_TABLE_LOAD = 0xc138fd09 constant DM_TABLE_STATUS (line 491) | DM_TABLE_STATUS = 0xc138fd0c constant DM_TARGET_MSG (line 492) | DM_TARGET_MSG = 0xc138fd0e constant DM_UEVENT_GENERATED_FLAG (line 493) | DM_UEVENT_GENERATED_FLAG = 0x2000 constant DM_UUID_FLAG (line 494) | DM_UUID_FLAG = 0x4000 constant DM_UUID_LEN (line 495) | DM_UUID_LEN = 0x81 constant DM_VERSION (line 496) | DM_VERSION = 0xc138fd00 constant DM_VERSION_EXTRA (line 497) | DM_VERSION_EXTRA = "-ioctl (2021-02-01)" constant DM_VERSION_MAJOR (line 498) | DM_VERSION_MAJOR = 0x4 constant DM_VERSION_MINOR (line 499) | DM_VERSION_MINOR = 0x2c constant DM_VERSION_PATCHLEVEL (line 500) | DM_VERSION_PATCHLEVEL = 0x0 constant DT_BLK (line 501) | DT_BLK = 0x6 constant DT_CHR (line 502) | DT_CHR = 0x2 constant DT_DIR (line 503) | DT_DIR = 0x4 constant DT_FIFO (line 504) | DT_FIFO = 0x1 constant DT_LNK (line 505) | DT_LNK = 0xa constant DT_REG (line 506) | DT_REG = 0x8 constant DT_SOCK (line 507) | DT_SOCK = 0xc constant DT_UNKNOWN (line 508) | DT_UNKNOWN = 0x0 constant DT_WHT (line 509) | DT_WHT = 0xe constant ECHO (line 510) | ECHO = 0x8 constant ECRYPTFS_SUPER_MAGIC (line 511) | ECRYPTFS_SUPER_MAGIC = 0xf15f constant EFD_SEMAPHORE (line 512) | EFD_SEMAPHORE = 0x1 constant EFIVARFS_MAGIC (line 513) | EFIVARFS_MAGIC = 0xde5e81e4 constant EFS_SUPER_MAGIC (line 514) | EFS_SUPER_MAGIC = 0x414a53 constant ENCODING_DEFAULT (line 515) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 516) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 517) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 518) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 519) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 520) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 521) | EPOLLERR = 0x8 constant EPOLLET (line 522) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 523) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 524) | EPOLLHUP = 0x10 constant EPOLLIN (line 525) | EPOLLIN = 0x1 constant EPOLLMSG (line 526) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 527) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 528) | EPOLLOUT = 0x4 constant EPOLLPRI (line 529) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 530) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 531) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 532) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 533) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 534) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 535) | EPOLLWRNORM = 0x100 constant EPOLL_CTL_ADD (line 536) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 537) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 538) | EPOLL_CTL_MOD = 0x3 constant EROFS_SUPER_MAGIC_V1 (line 539) | EROFS_SUPER_MAGIC_V1 = 0xe0f5e1e2 constant ESP_V4_FLOW (line 540) | ESP_V4_FLOW = 0xa constant ESP_V6_FLOW (line 541) | ESP_V6_FLOW = 0xc constant ETHER_FLOW (line 542) | ETHER_FLOW = 0x12 constant ETHTOOL_BUSINFO_LEN (line 543) | ETHTOOL_BUSINFO_LEN = 0x20 constant ETHTOOL_EROMVERS_LEN (line 544) | ETHTOOL_EROMVERS_LEN = 0x20 constant ETHTOOL_FEC_AUTO (line 545) | ETHTOOL_FEC_AUTO = 0x2 constant ETHTOOL_FEC_BASER (line 546) | ETHTOOL_FEC_BASER = 0x10 constant ETHTOOL_FEC_LLRS (line 547) | ETHTOOL_FEC_LLRS = 0x20 constant ETHTOOL_FEC_NONE (line 548) | ETHTOOL_FEC_NONE = 0x1 constant ETHTOOL_FEC_OFF (line 549) | ETHTOOL_FEC_OFF = 0x4 constant ETHTOOL_FEC_RS (line 550) | ETHTOOL_FEC_RS = 0x8 constant ETHTOOL_FLAG_ALL (line 551) | ETHTOOL_FLAG_ALL = 0x7 constant ETHTOOL_FLAG_COMPACT_BITSETS (line 552) | ETHTOOL_FLAG_COMPACT_BITSETS = 0x1 constant ETHTOOL_FLAG_OMIT_REPLY (line 553) | ETHTOOL_FLAG_OMIT_REPLY = 0x2 constant ETHTOOL_FLAG_STATS (line 554) | ETHTOOL_FLAG_STATS = 0x4 constant ETHTOOL_FLASHDEV (line 555) | ETHTOOL_FLASHDEV = 0x33 constant ETHTOOL_FLASH_MAX_FILENAME (line 556) | ETHTOOL_FLASH_MAX_FILENAME = 0x80 constant ETHTOOL_FWVERS_LEN (line 557) | ETHTOOL_FWVERS_LEN = 0x20 constant ETHTOOL_F_COMPAT (line 558) | ETHTOOL_F_COMPAT = 0x4 constant ETHTOOL_F_UNSUPPORTED (line 559) | ETHTOOL_F_UNSUPPORTED = 0x1 constant ETHTOOL_F_WISH (line 560) | ETHTOOL_F_WISH = 0x2 constant ETHTOOL_GCHANNELS (line 561) | ETHTOOL_GCHANNELS = 0x3c constant ETHTOOL_GCOALESCE (line 562) | ETHTOOL_GCOALESCE = 0xe constant ETHTOOL_GDRVINFO (line 563) | ETHTOOL_GDRVINFO = 0x3 constant ETHTOOL_GEEE (line 564) | ETHTOOL_GEEE = 0x44 constant ETHTOOL_GEEPROM (line 565) | ETHTOOL_GEEPROM = 0xb constant ETHTOOL_GENL_NAME (line 566) | ETHTOOL_GENL_NAME = "ethtool" constant ETHTOOL_GENL_VERSION (line 567) | ETHTOOL_GENL_VERSION = 0x1 constant ETHTOOL_GET_DUMP_DATA (line 568) | ETHTOOL_GET_DUMP_DATA = 0x40 constant ETHTOOL_GET_DUMP_FLAG (line 569) | ETHTOOL_GET_DUMP_FLAG = 0x3f constant ETHTOOL_GET_TS_INFO (line 570) | ETHTOOL_GET_TS_INFO = 0x41 constant ETHTOOL_GFEATURES (line 571) | ETHTOOL_GFEATURES = 0x3a constant ETHTOOL_GFECPARAM (line 572) | ETHTOOL_GFECPARAM = 0x50 constant ETHTOOL_GFLAGS (line 573) | ETHTOOL_GFLAGS = 0x25 constant ETHTOOL_GGRO (line 574) | ETHTOOL_GGRO = 0x2b constant ETHTOOL_GGSO (line 575) | ETHTOOL_GGSO = 0x23 constant ETHTOOL_GLINK (line 576) | ETHTOOL_GLINK = 0xa constant ETHTOOL_GLINKSETTINGS (line 577) | ETHTOOL_GLINKSETTINGS = 0x4c constant ETHTOOL_GMODULEEEPROM (line 578) | ETHTOOL_GMODULEEEPROM = 0x43 constant ETHTOOL_GMODULEINFO (line 579) | ETHTOOL_GMODULEINFO = 0x42 constant ETHTOOL_GMSGLVL (line 580) | ETHTOOL_GMSGLVL = 0x7 constant ETHTOOL_GPAUSEPARAM (line 581) | ETHTOOL_GPAUSEPARAM = 0x12 constant ETHTOOL_GPERMADDR (line 582) | ETHTOOL_GPERMADDR = 0x20 constant ETHTOOL_GPFLAGS (line 583) | ETHTOOL_GPFLAGS = 0x27 constant ETHTOOL_GPHYSTATS (line 584) | ETHTOOL_GPHYSTATS = 0x4a constant ETHTOOL_GREGS (line 585) | ETHTOOL_GREGS = 0x4 constant ETHTOOL_GRINGPARAM (line 586) | ETHTOOL_GRINGPARAM = 0x10 constant ETHTOOL_GRSSH (line 587) | ETHTOOL_GRSSH = 0x46 constant ETHTOOL_GRXCLSRLALL (line 588) | ETHTOOL_GRXCLSRLALL = 0x30 constant ETHTOOL_GRXCLSRLCNT (line 589) | ETHTOOL_GRXCLSRLCNT = 0x2e constant ETHTOOL_GRXCLSRULE (line 590) | ETHTOOL_GRXCLSRULE = 0x2f constant ETHTOOL_GRXCSUM (line 591) | ETHTOOL_GRXCSUM = 0x14 constant ETHTOOL_GRXFH (line 592) | ETHTOOL_GRXFH = 0x29 constant ETHTOOL_GRXFHINDIR (line 593) | ETHTOOL_GRXFHINDIR = 0x38 constant ETHTOOL_GRXNTUPLE (line 594) | ETHTOOL_GRXNTUPLE = 0x36 constant ETHTOOL_GRXRINGS (line 595) | ETHTOOL_GRXRINGS = 0x2d constant ETHTOOL_GSET (line 596) | ETHTOOL_GSET = 0x1 constant ETHTOOL_GSG (line 597) | ETHTOOL_GSG = 0x18 constant ETHTOOL_GSSET_INFO (line 598) | ETHTOOL_GSSET_INFO = 0x37 constant ETHTOOL_GSTATS (line 599) | ETHTOOL_GSTATS = 0x1d constant ETHTOOL_GSTRINGS (line 600) | ETHTOOL_GSTRINGS = 0x1b constant ETHTOOL_GTSO (line 601) | ETHTOOL_GTSO = 0x1e constant ETHTOOL_GTUNABLE (line 602) | ETHTOOL_GTUNABLE = 0x48 constant ETHTOOL_GTXCSUM (line 603) | ETHTOOL_GTXCSUM = 0x16 constant ETHTOOL_GUFO (line 604) | ETHTOOL_GUFO = 0x21 constant ETHTOOL_GWOL (line 605) | ETHTOOL_GWOL = 0x5 constant ETHTOOL_MCGRP_MONITOR_NAME (line 606) | ETHTOOL_MCGRP_MONITOR_NAME = "monitor" constant ETHTOOL_NWAY_RST (line 607) | ETHTOOL_NWAY_RST = 0x9 constant ETHTOOL_PERQUEUE (line 608) | ETHTOOL_PERQUEUE = 0x4b constant ETHTOOL_PHYS_ID (line 609) | ETHTOOL_PHYS_ID = 0x1c constant ETHTOOL_PHY_EDPD_DFLT_TX_MSECS (line 610) | ETHTOOL_PHY_EDPD_DFLT_TX_MSECS = 0xffff constant ETHTOOL_PHY_EDPD_DISABLE (line 611) | ETHTOOL_PHY_EDPD_DISABLE = 0x0 constant ETHTOOL_PHY_EDPD_NO_TX (line 612) | ETHTOOL_PHY_EDPD_NO_TX = 0xfffe constant ETHTOOL_PHY_FAST_LINK_DOWN_OFF (line 613) | ETHTOOL_PHY_FAST_LINK_DOWN_OFF = 0xff constant ETHTOOL_PHY_FAST_LINK_DOWN_ON (line 614) | ETHTOOL_PHY_FAST_LINK_DOWN_ON = 0x0 constant ETHTOOL_PHY_GTUNABLE (line 615) | ETHTOOL_PHY_GTUNABLE = 0x4e constant ETHTOOL_PHY_STUNABLE (line 616) | ETHTOOL_PHY_STUNABLE = 0x4f constant ETHTOOL_RESET (line 617) | ETHTOOL_RESET = 0x34 constant ETHTOOL_RXNTUPLE_ACTION_CLEAR (line 618) | ETHTOOL_RXNTUPLE_ACTION_CLEAR = -0x2 constant ETHTOOL_RXNTUPLE_ACTION_DROP (line 619) | ETHTOOL_RXNTUPLE_ACTION_DROP = -0x1 constant ETHTOOL_RX_FLOW_SPEC_RING (line 620) | ETHTOOL_RX_FLOW_SPEC_RING = 0xffffffff constant ETHTOOL_RX_FLOW_SPEC_RING_VF (line 621) | ETHTOOL_RX_FLOW_SPEC_RING_VF = 0xff00000000 constant ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF (line 622) | ETHTOOL_RX_FLOW_SPEC_RING_VF_OFF = 0x20 constant ETHTOOL_SCHANNELS (line 623) | ETHTOOL_SCHANNELS = 0x3d constant ETHTOOL_SCOALESCE (line 624) | ETHTOOL_SCOALESCE = 0xf constant ETHTOOL_SEEE (line 625) | ETHTOOL_SEEE = 0x45 constant ETHTOOL_SEEPROM (line 626) | ETHTOOL_SEEPROM = 0xc constant ETHTOOL_SET_DUMP (line 627) | ETHTOOL_SET_DUMP = 0x3e constant ETHTOOL_SFEATURES (line 628) | ETHTOOL_SFEATURES = 0x3b constant ETHTOOL_SFECPARAM (line 629) | ETHTOOL_SFECPARAM = 0x51 constant ETHTOOL_SFLAGS (line 630) | ETHTOOL_SFLAGS = 0x26 constant ETHTOOL_SGRO (line 631) | ETHTOOL_SGRO = 0x2c constant ETHTOOL_SGSO (line 632) | ETHTOOL_SGSO = 0x24 constant ETHTOOL_SLINKSETTINGS (line 633) | ETHTOOL_SLINKSETTINGS = 0x4d constant ETHTOOL_SMSGLVL (line 634) | ETHTOOL_SMSGLVL = 0x8 constant ETHTOOL_SPAUSEPARAM (line 635) | ETHTOOL_SPAUSEPARAM = 0x13 constant ETHTOOL_SPFLAGS (line 636) | ETHTOOL_SPFLAGS = 0x28 constant ETHTOOL_SRINGPARAM (line 637) | ETHTOOL_SRINGPARAM = 0x11 constant ETHTOOL_SRSSH (line 638) | ETHTOOL_SRSSH = 0x47 constant ETHTOOL_SRXCLSRLDEL (line 639) | ETHTOOL_SRXCLSRLDEL = 0x31 constant ETHTOOL_SRXCLSRLINS (line 640) | ETHTOOL_SRXCLSRLINS = 0x32 constant ETHTOOL_SRXCSUM (line 641) | ETHTOOL_SRXCSUM = 0x15 constant ETHTOOL_SRXFH (line 642) | ETHTOOL_SRXFH = 0x2a constant ETHTOOL_SRXFHINDIR (line 643) | ETHTOOL_SRXFHINDIR = 0x39 constant ETHTOOL_SRXNTUPLE (line 644) | ETHTOOL_SRXNTUPLE = 0x35 constant ETHTOOL_SSET (line 645) | ETHTOOL_SSET = 0x2 constant ETHTOOL_SSG (line 646) | ETHTOOL_SSG = 0x19 constant ETHTOOL_STSO (line 647) | ETHTOOL_STSO = 0x1f constant ETHTOOL_STUNABLE (line 648) | ETHTOOL_STUNABLE = 0x49 constant ETHTOOL_STXCSUM (line 649) | ETHTOOL_STXCSUM = 0x17 constant ETHTOOL_SUFO (line 650) | ETHTOOL_SUFO = 0x22 constant ETHTOOL_SWOL (line 651) | ETHTOOL_SWOL = 0x6 constant ETHTOOL_TEST (line 652) | ETHTOOL_TEST = 0x1a constant ETH_P_1588 (line 653) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 654) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 655) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 656) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 657) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 658) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 659) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 660) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 661) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 662) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 663) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 664) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 665) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 666) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 667) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 668) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 669) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 670) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 671) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 672) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 673) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 674) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 675) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 676) | ETH_P_CANFD = 0xd constant ETH_P_CFM (line 677) | ETH_P_CFM = 0x8902 constant ETH_P_CONTROL (line 678) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 679) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 680) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 681) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 682) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 683) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 684) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 685) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 686) | ETH_P_DSA = 0x1b constant ETH_P_DSA_8021Q (line 687) | ETH_P_DSA_8021Q = 0xdadb constant ETH_P_ECONET (line 688) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 689) | ETH_P_EDSA = 0xdada constant ETH_P_ERSPAN (line 690) | ETH_P_ERSPAN = 0x88be constant ETH_P_ERSPAN2 (line 691) | ETH_P_ERSPAN2 = 0x22eb constant ETH_P_FCOE (line 692) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 693) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 694) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 695) | ETH_P_HSR = 0x892f constant ETH_P_IBOE (line 696) | ETH_P_IBOE = 0x8915 constant ETH_P_IEEE802154 (line 697) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 698) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 699) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IFE (line 700) | ETH_P_IFE = 0xed3e constant ETH_P_IP (line 701) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 702) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 703) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 704) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 705) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 706) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LLDP (line 707) | ETH_P_LLDP = 0x88cc constant ETH_P_LOCALTALK (line 708) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 709) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 710) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 711) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MAP (line 712) | ETH_P_MAP = 0xf9 constant ETH_P_MOBITEX (line 713) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 714) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 715) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MRP (line 716) | ETH_P_MRP = 0x88e3 constant ETH_P_MVRP (line 717) | ETH_P_MVRP = 0x88f5 constant ETH_P_NCSI (line 718) | ETH_P_NCSI = 0x88f8 constant ETH_P_NSH (line 719) | ETH_P_NSH = 0x894f constant ETH_P_PAE (line 720) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 721) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 722) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 723) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 724) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 725) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 726) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PREAUTH (line 727) | ETH_P_PREAUTH = 0x88c7 constant ETH_P_PRP (line 728) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 729) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 730) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 731) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 732) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 733) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 734) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 735) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 736) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 737) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 738) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 739) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 740) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 741) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 742) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 743) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 744) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 745) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 746) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 747) | ETH_P_XDSA = 0xf8 constant EXABYTE_ENABLE_NEST (line 748) | EXABYTE_ENABLE_NEST = 0xf0 constant EXT2_SUPER_MAGIC (line 749) | EXT2_SUPER_MAGIC = 0xef53 constant EXT3_SUPER_MAGIC (line 750) | EXT3_SUPER_MAGIC = 0xef53 constant EXT4_SUPER_MAGIC (line 751) | EXT4_SUPER_MAGIC = 0xef53 constant EXTA (line 752) | EXTA = 0xe constant EXTB (line 753) | EXTB = 0xf constant F2FS_SUPER_MAGIC (line 754) | F2FS_SUPER_MAGIC = 0xf2f52010 constant FALLOC_FL_COLLAPSE_RANGE (line 755) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 756) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 757) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 758) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 759) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_UNSHARE_RANGE (line 760) | FALLOC_FL_UNSHARE_RANGE = 0x40 constant FALLOC_FL_ZERO_RANGE (line 761) | FALLOC_FL_ZERO_RANGE = 0x10 constant FANOTIFY_METADATA_VERSION (line 762) | FANOTIFY_METADATA_VERSION = 0x3 constant FAN_ACCESS (line 763) | FAN_ACCESS = 0x1 constant FAN_ACCESS_PERM (line 764) | FAN_ACCESS_PERM = 0x20000 constant FAN_ALLOW (line 765) | FAN_ALLOW = 0x1 constant FAN_ALL_CLASS_BITS (line 766) | FAN_ALL_CLASS_BITS = 0xc constant FAN_ALL_EVENTS (line 767) | FAN_ALL_EVENTS = 0x3b constant FAN_ALL_INIT_FLAGS (line 768) | FAN_ALL_INIT_FLAGS = 0x3f constant FAN_ALL_MARK_FLAGS (line 769) | FAN_ALL_MARK_FLAGS = 0xff constant FAN_ALL_OUTGOING_EVENTS (line 770) | FAN_ALL_OUTGOING_EVENTS = 0x3403b constant FAN_ALL_PERM_EVENTS (line 771) | FAN_ALL_PERM_EVENTS = 0x30000 constant FAN_ATTRIB (line 772) | FAN_ATTRIB = 0x4 constant FAN_AUDIT (line 773) | FAN_AUDIT = 0x10 constant FAN_CLASS_CONTENT (line 774) | FAN_CLASS_CONTENT = 0x4 constant FAN_CLASS_NOTIF (line 775) | FAN_CLASS_NOTIF = 0x0 constant FAN_CLASS_PRE_CONTENT (line 776) | FAN_CLASS_PRE_CONTENT = 0x8 constant FAN_CLOEXEC (line 777) | FAN_CLOEXEC = 0x1 constant FAN_CLOSE (line 778) | FAN_CLOSE = 0x18 constant FAN_CLOSE_NOWRITE (line 779) | FAN_CLOSE_NOWRITE = 0x10 constant FAN_CLOSE_WRITE (line 780) | FAN_CLOSE_WRITE = 0x8 constant FAN_CREATE (line 781) | FAN_CREATE = 0x100 constant FAN_DELETE (line 782) | FAN_DELETE = 0x200 constant FAN_DELETE_SELF (line 783) | FAN_DELETE_SELF = 0x400 constant FAN_DENY (line 784) | FAN_DENY = 0x2 constant FAN_ENABLE_AUDIT (line 785) | FAN_ENABLE_AUDIT = 0x40 constant FAN_EVENT_INFO_TYPE_DFID (line 786) | FAN_EVENT_INFO_TYPE_DFID = 0x3 constant FAN_EVENT_INFO_TYPE_DFID_NAME (line 787) | FAN_EVENT_INFO_TYPE_DFID_NAME = 0x2 constant FAN_EVENT_INFO_TYPE_FID (line 788) | FAN_EVENT_INFO_TYPE_FID = 0x1 constant FAN_EVENT_METADATA_LEN (line 789) | FAN_EVENT_METADATA_LEN = 0x18 constant FAN_EVENT_ON_CHILD (line 790) | FAN_EVENT_ON_CHILD = 0x8000000 constant FAN_MARK_ADD (line 791) | FAN_MARK_ADD = 0x1 constant FAN_MARK_DONT_FOLLOW (line 792) | FAN_MARK_DONT_FOLLOW = 0x4 constant FAN_MARK_FILESYSTEM (line 793) | FAN_MARK_FILESYSTEM = 0x100 constant FAN_MARK_FLUSH (line 794) | FAN_MARK_FLUSH = 0x80 constant FAN_MARK_IGNORED_MASK (line 795) | FAN_MARK_IGNORED_MASK = 0x20 constant FAN_MARK_IGNORED_SURV_MODIFY (line 796) | FAN_MARK_IGNORED_SURV_MODIFY = 0x40 constant FAN_MARK_INODE (line 797) | FAN_MARK_INODE = 0x0 constant FAN_MARK_MOUNT (line 798) | FAN_MARK_MOUNT = 0x10 constant FAN_MARK_ONLYDIR (line 799) | FAN_MARK_ONLYDIR = 0x8 constant FAN_MARK_REMOVE (line 800) | FAN_MARK_REMOVE = 0x2 constant FAN_MODIFY (line 801) | FAN_MODIFY = 0x2 constant FAN_MOVE (line 802) | FAN_MOVE = 0xc0 constant FAN_MOVED_FROM (line 803) | FAN_MOVED_FROM = 0x40 constant FAN_MOVED_TO (line 804) | FAN_MOVED_TO = 0x80 constant FAN_MOVE_SELF (line 805) | FAN_MOVE_SELF = 0x800 constant FAN_NOFD (line 806) | FAN_NOFD = -0x1 constant FAN_NONBLOCK (line 807) | FAN_NONBLOCK = 0x2 constant FAN_ONDIR (line 808) | FAN_ONDIR = 0x40000000 constant FAN_OPEN (line 809) | FAN_OPEN = 0x20 constant FAN_OPEN_EXEC (line 810) | FAN_OPEN_EXEC = 0x1000 constant FAN_OPEN_EXEC_PERM (line 811) | FAN_OPEN_EXEC_PERM = 0x40000 constant FAN_OPEN_PERM (line 812) | FAN_OPEN_PERM = 0x10000 constant FAN_Q_OVERFLOW (line 813) | FAN_Q_OVERFLOW = 0x4000 constant FAN_REPORT_DFID_NAME (line 814) | FAN_REPORT_DFID_NAME = 0xc00 constant FAN_REPORT_DIR_FID (line 815) | FAN_REPORT_DIR_FID = 0x400 constant FAN_REPORT_FID (line 816) | FAN_REPORT_FID = 0x200 constant FAN_REPORT_NAME (line 817) | FAN_REPORT_NAME = 0x800 constant FAN_REPORT_TID (line 818) | FAN_REPORT_TID = 0x100 constant FAN_UNLIMITED_MARKS (line 819) | FAN_UNLIMITED_MARKS = 0x20 constant FAN_UNLIMITED_QUEUE (line 820) | FAN_UNLIMITED_QUEUE = 0x10 constant FD_CLOEXEC (line 821) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 822) | FD_SETSIZE = 0x400 constant FF0 (line 823) | FF0 = 0x0 constant FIDEDUPERANGE (line 824) | FIDEDUPERANGE = 0xc0189436 constant FSCRYPT_KEY_DESCRIPTOR_SIZE (line 825) | FSCRYPT_KEY_DESCRIPTOR_SIZE = 0x8 constant FSCRYPT_KEY_DESC_PREFIX (line 826) | FSCRYPT_KEY_DESC_PREFIX = "fscrypt:" constant FSCRYPT_KEY_DESC_PREFIX_SIZE (line 827) | FSCRYPT_KEY_DESC_PREFIX_SIZE = 0x8 constant FSCRYPT_KEY_IDENTIFIER_SIZE (line 828) | FSCRYPT_KEY_IDENTIFIER_SIZE = 0x10 constant FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY (line 829) | FSCRYPT_KEY_REMOVAL_STATUS_FLAG_FILES_BUSY = 0x1 constant FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS (line 830) | FSCRYPT_KEY_REMOVAL_STATUS_FLAG_OTHER_USERS = 0x2 constant FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR (line 831) | FSCRYPT_KEY_SPEC_TYPE_DESCRIPTOR = 0x1 constant FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER (line 832) | FSCRYPT_KEY_SPEC_TYPE_IDENTIFIER = 0x2 constant FSCRYPT_KEY_STATUS_ABSENT (line 833) | FSCRYPT_KEY_STATUS_ABSENT = 0x1 constant FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF (line 834) | FSCRYPT_KEY_STATUS_FLAG_ADDED_BY_SELF = 0x1 constant FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED (line 835) | FSCRYPT_KEY_STATUS_INCOMPLETELY_REMOVED = 0x3 constant FSCRYPT_KEY_STATUS_PRESENT (line 836) | FSCRYPT_KEY_STATUS_PRESENT = 0x2 constant FSCRYPT_MAX_KEY_SIZE (line 837) | FSCRYPT_MAX_KEY_SIZE = 0x40 constant FSCRYPT_MODE_ADIANTUM (line 838) | FSCRYPT_MODE_ADIANTUM = 0x9 constant FSCRYPT_MODE_AES_128_CBC (line 839) | FSCRYPT_MODE_AES_128_CBC = 0x5 constant FSCRYPT_MODE_AES_128_CTS (line 840) | FSCRYPT_MODE_AES_128_CTS = 0x6 constant FSCRYPT_MODE_AES_256_CTS (line 841) | FSCRYPT_MODE_AES_256_CTS = 0x4 constant FSCRYPT_MODE_AES_256_XTS (line 842) | FSCRYPT_MODE_AES_256_XTS = 0x1 constant FSCRYPT_POLICY_FLAGS_PAD_16 (line 843) | FSCRYPT_POLICY_FLAGS_PAD_16 = 0x2 constant FSCRYPT_POLICY_FLAGS_PAD_32 (line 844) | FSCRYPT_POLICY_FLAGS_PAD_32 = 0x3 constant FSCRYPT_POLICY_FLAGS_PAD_4 (line 845) | FSCRYPT_POLICY_FLAGS_PAD_4 = 0x0 constant FSCRYPT_POLICY_FLAGS_PAD_8 (line 846) | FSCRYPT_POLICY_FLAGS_PAD_8 = 0x1 constant FSCRYPT_POLICY_FLAGS_PAD_MASK (line 847) | FSCRYPT_POLICY_FLAGS_PAD_MASK = 0x3 constant FSCRYPT_POLICY_FLAG_DIRECT_KEY (line 848) | FSCRYPT_POLICY_FLAG_DIRECT_KEY = 0x4 constant FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32 (line 849) | FSCRYPT_POLICY_FLAG_IV_INO_LBLK_32 = 0x10 constant FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64 (line 850) | FSCRYPT_POLICY_FLAG_IV_INO_LBLK_64 = 0x8 constant FSCRYPT_POLICY_V1 (line 851) | FSCRYPT_POLICY_V1 = 0x0 constant FSCRYPT_POLICY_V2 (line 852) | FSCRYPT_POLICY_V2 = 0x2 constant FS_ENCRYPTION_MODE_ADIANTUM (line 853) | FS_ENCRYPTION_MODE_ADIANTUM = 0x9 constant FS_ENCRYPTION_MODE_AES_128_CBC (line 854) | FS_ENCRYPTION_MODE_AES_128_CBC = 0x5 constant FS_ENCRYPTION_MODE_AES_128_CTS (line 855) | FS_ENCRYPTION_MODE_AES_128_CTS = 0x6 constant FS_ENCRYPTION_MODE_AES_256_CBC (line 856) | FS_ENCRYPTION_MODE_AES_256_CBC = 0x3 constant FS_ENCRYPTION_MODE_AES_256_CTS (line 857) | FS_ENCRYPTION_MODE_AES_256_CTS = 0x4 constant FS_ENCRYPTION_MODE_AES_256_GCM (line 858) | FS_ENCRYPTION_MODE_AES_256_GCM = 0x2 constant FS_ENCRYPTION_MODE_AES_256_XTS (line 859) | FS_ENCRYPTION_MODE_AES_256_XTS = 0x1 constant FS_ENCRYPTION_MODE_INVALID (line 860) | FS_ENCRYPTION_MODE_INVALID = 0x0 constant FS_ENCRYPTION_MODE_SPECK128_256_CTS (line 861) | FS_ENCRYPTION_MODE_SPECK128_256_CTS = 0x8 constant FS_ENCRYPTION_MODE_SPECK128_256_XTS (line 862) | FS_ENCRYPTION_MODE_SPECK128_256_XTS = 0x7 constant FS_IOC_ADD_ENCRYPTION_KEY (line 863) | FS_IOC_ADD_ENCRYPTION_KEY = 0xc0506617 constant FS_IOC_GET_ENCRYPTION_KEY_STATUS (line 864) | FS_IOC_GET_ENCRYPTION_KEY_STATUS = 0xc080661a constant FS_IOC_GET_ENCRYPTION_POLICY_EX (line 865) | FS_IOC_GET_ENCRYPTION_POLICY_EX = 0xc0096616 constant FS_IOC_MEASURE_VERITY (line 866) | FS_IOC_MEASURE_VERITY = 0xc0046686 constant FS_IOC_READ_VERITY_METADATA (line 867) | FS_IOC_READ_VERITY_METADATA = 0xc0286687 constant FS_IOC_REMOVE_ENCRYPTION_KEY (line 868) | FS_IOC_REMOVE_ENCRYPTION_KEY = 0xc0406618 constant FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS (line 869) | FS_IOC_REMOVE_ENCRYPTION_KEY_ALL_USERS = 0xc0406619 constant FS_KEY_DESCRIPTOR_SIZE (line 870) | FS_KEY_DESCRIPTOR_SIZE = 0x8 constant FS_KEY_DESC_PREFIX (line 871) | FS_KEY_DESC_PREFIX = "fscrypt:" constant FS_KEY_DESC_PREFIX_SIZE (line 872) | FS_KEY_DESC_PREFIX_SIZE = 0x8 constant FS_MAX_KEY_SIZE (line 873) | FS_MAX_KEY_SIZE = 0x40 constant FS_POLICY_FLAGS_PAD_16 (line 874) | FS_POLICY_FLAGS_PAD_16 = 0x2 constant FS_POLICY_FLAGS_PAD_32 (line 875) | FS_POLICY_FLAGS_PAD_32 = 0x3 constant FS_POLICY_FLAGS_PAD_4 (line 876) | FS_POLICY_FLAGS_PAD_4 = 0x0 constant FS_POLICY_FLAGS_PAD_8 (line 877) | FS_POLICY_FLAGS_PAD_8 = 0x1 constant FS_POLICY_FLAGS_PAD_MASK (line 878) | FS_POLICY_FLAGS_PAD_MASK = 0x3 constant FS_POLICY_FLAGS_VALID (line 879) | FS_POLICY_FLAGS_VALID = 0x7 constant FS_VERITY_FL (line 880) | FS_VERITY_FL = 0x100000 constant FS_VERITY_HASH_ALG_SHA256 (line 881) | FS_VERITY_HASH_ALG_SHA256 = 0x1 constant FS_VERITY_HASH_ALG_SHA512 (line 882) | FS_VERITY_HASH_ALG_SHA512 = 0x2 constant FS_VERITY_METADATA_TYPE_DESCRIPTOR (line 883) | FS_VERITY_METADATA_TYPE_DESCRIPTOR = 0x2 constant FS_VERITY_METADATA_TYPE_MERKLE_TREE (line 884) | FS_VERITY_METADATA_TYPE_MERKLE_TREE = 0x1 constant FS_VERITY_METADATA_TYPE_SIGNATURE (line 885) | FS_VERITY_METADATA_TYPE_SIGNATURE = 0x3 constant FUTEXFS_SUPER_MAGIC (line 886) | FUTEXFS_SUPER_MAGIC = 0xbad1dea constant F_ADD_SEALS (line 887) | F_ADD_SEALS = 0x409 constant F_DUPFD (line 888) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 889) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 890) | F_EXLCK = 0x4 constant F_GETFD (line 891) | F_GETFD = 0x1 constant F_GETFL (line 892) | F_GETFL = 0x3 constant F_GETLEASE (line 893) | F_GETLEASE = 0x401 constant F_GETOWN_EX (line 894) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 895) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 896) | F_GETSIG = 0xb constant F_GET_FILE_RW_HINT (line 897) | F_GET_FILE_RW_HINT = 0x40d constant F_GET_RW_HINT (line 898) | F_GET_RW_HINT = 0x40b constant F_GET_SEALS (line 899) | F_GET_SEALS = 0x40a constant F_LOCK (line 900) | F_LOCK = 0x1 constant F_NOTIFY (line 901) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 902) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 903) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 904) | F_OFD_SETLKW = 0x26 constant F_OK (line 905) | F_OK = 0x0 constant F_SEAL_FUTURE_WRITE (line 906) | F_SEAL_FUTURE_WRITE = 0x10 constant F_SEAL_GROW (line 907) | F_SEAL_GROW = 0x4 constant F_SEAL_SEAL (line 908) | F_SEAL_SEAL = 0x1 constant F_SEAL_SHRINK (line 909) | F_SEAL_SHRINK = 0x2 constant F_SEAL_WRITE (line 910) | F_SEAL_WRITE = 0x8 constant F_SETFD (line 911) | F_SETFD = 0x2 constant F_SETFL (line 912) | F_SETFL = 0x4 constant F_SETLEASE (line 913) | F_SETLEASE = 0x400 constant F_SETOWN_EX (line 914) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 915) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 916) | F_SETSIG = 0xa constant F_SET_FILE_RW_HINT (line 917) | F_SET_FILE_RW_HINT = 0x40e constant F_SET_RW_HINT (line 918) | F_SET_RW_HINT = 0x40c constant F_SHLCK (line 919) | F_SHLCK = 0x8 constant F_TEST (line 920) | F_TEST = 0x3 constant F_TLOCK (line 921) | F_TLOCK = 0x2 constant F_ULOCK (line 922) | F_ULOCK = 0x0 constant GENL_ADMIN_PERM (line 923) | GENL_ADMIN_PERM = 0x1 constant GENL_CMD_CAP_DO (line 924) | GENL_CMD_CAP_DO = 0x2 constant GENL_CMD_CAP_DUMP (line 925) | GENL_CMD_CAP_DUMP = 0x4 constant GENL_CMD_CAP_HASPOL (line 926) | GENL_CMD_CAP_HASPOL = 0x8 constant GENL_HDRLEN (line 927) | GENL_HDRLEN = 0x4 constant GENL_ID_CTRL (line 928) | GENL_ID_CTRL = 0x10 constant GENL_ID_PMCRAID (line 929) | GENL_ID_PMCRAID = 0x12 constant GENL_ID_VFS_DQUOT (line 930) | GENL_ID_VFS_DQUOT = 0x11 constant GENL_MAX_ID (line 931) | GENL_MAX_ID = 0x3ff constant GENL_MIN_ID (line 932) | GENL_MIN_ID = 0x10 constant GENL_NAMSIZ (line 933) | GENL_NAMSIZ = 0x10 constant GENL_START_ALLOC (line 934) | GENL_START_ALLOC = 0x13 constant GENL_UNS_ADMIN_PERM (line 935) | GENL_UNS_ADMIN_PERM = 0x10 constant GRND_INSECURE (line 936) | GRND_INSECURE = 0x4 constant GRND_NONBLOCK (line 937) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 938) | GRND_RANDOM = 0x2 constant HDIO_DRIVE_CMD (line 939) | HDIO_DRIVE_CMD = 0x31f constant HDIO_DRIVE_CMD_AEB (line 940) | HDIO_DRIVE_CMD_AEB = 0x31e constant HDIO_DRIVE_CMD_HDR_SIZE (line 941) | HDIO_DRIVE_CMD_HDR_SIZE = 0x4 constant HDIO_DRIVE_HOB_HDR_SIZE (line 942) | HDIO_DRIVE_HOB_HDR_SIZE = 0x8 constant HDIO_DRIVE_RESET (line 943) | HDIO_DRIVE_RESET = 0x31c constant HDIO_DRIVE_TASK (line 944) | HDIO_DRIVE_TASK = 0x31e constant HDIO_DRIVE_TASKFILE (line 945) | HDIO_DRIVE_TASKFILE = 0x31d constant HDIO_DRIVE_TASK_HDR_SIZE (line 946) | HDIO_DRIVE_TASK_HDR_SIZE = 0x8 constant HDIO_GETGEO (line 947) | HDIO_GETGEO = 0x301 constant HDIO_GET_32BIT (line 948) | HDIO_GET_32BIT = 0x309 constant HDIO_GET_ACOUSTIC (line 949) | HDIO_GET_ACOUSTIC = 0x30f constant HDIO_GET_ADDRESS (line 950) | HDIO_GET_ADDRESS = 0x310 constant HDIO_GET_BUSSTATE (line 951) | HDIO_GET_BUSSTATE = 0x31a constant HDIO_GET_DMA (line 952) | HDIO_GET_DMA = 0x30b constant HDIO_GET_IDENTITY (line 953) | HDIO_GET_IDENTITY = 0x30d constant HDIO_GET_KEEPSETTINGS (line 954) | HDIO_GET_KEEPSETTINGS = 0x308 constant HDIO_GET_MULTCOUNT (line 955) | HDIO_GET_MULTCOUNT = 0x304 constant HDIO_GET_NICE (line 956) | HDIO_GET_NICE = 0x30c constant HDIO_GET_NOWERR (line 957) | HDIO_GET_NOWERR = 0x30a constant HDIO_GET_QDMA (line 958) | HDIO_GET_QDMA = 0x305 constant HDIO_GET_UNMASKINTR (line 959) | HDIO_GET_UNMASKINTR = 0x302 constant HDIO_GET_WCACHE (line 960) | HDIO_GET_WCACHE = 0x30e constant HDIO_OBSOLETE_IDENTITY (line 961) | HDIO_OBSOLETE_IDENTITY = 0x307 constant HDIO_SCAN_HWIF (line 962) | HDIO_SCAN_HWIF = 0x328 constant HDIO_SET_32BIT (line 963) | HDIO_SET_32BIT = 0x324 constant HDIO_SET_ACOUSTIC (line 964) | HDIO_SET_ACOUSTIC = 0x32c constant HDIO_SET_ADDRESS (line 965) | HDIO_SET_ADDRESS = 0x32f constant HDIO_SET_BUSSTATE (line 966) | HDIO_SET_BUSSTATE = 0x32d constant HDIO_SET_DMA (line 967) | HDIO_SET_DMA = 0x326 constant HDIO_SET_KEEPSETTINGS (line 968) | HDIO_SET_KEEPSETTINGS = 0x323 constant HDIO_SET_MULTCOUNT (line 969) | HDIO_SET_MULTCOUNT = 0x321 constant HDIO_SET_NICE (line 970) | HDIO_SET_NICE = 0x329 constant HDIO_SET_NOWERR (line 971) | HDIO_SET_NOWERR = 0x325 constant HDIO_SET_PIO_MODE (line 972) | HDIO_SET_PIO_MODE = 0x327 constant HDIO_SET_QDMA (line 973) | HDIO_SET_QDMA = 0x32e constant HDIO_SET_UNMASKINTR (line 974) | HDIO_SET_UNMASKINTR = 0x322 constant HDIO_SET_WCACHE (line 975) | HDIO_SET_WCACHE = 0x32b constant HDIO_SET_XFER (line 976) | HDIO_SET_XFER = 0x306 constant HDIO_TRISTATE_HWIF (line 977) | HDIO_TRISTATE_HWIF = 0x31b constant HDIO_UNREGISTER_HWIF (line 978) | HDIO_UNREGISTER_HWIF = 0x32a constant HID_MAX_DESCRIPTOR_SIZE (line 979) | HID_MAX_DESCRIPTOR_SIZE = 0x1000 constant HOSTFS_SUPER_MAGIC (line 980) | HOSTFS_SUPER_MAGIC = 0xc0ffee constant HPFS_SUPER_MAGIC (line 981) | HPFS_SUPER_MAGIC = 0xf995e849 constant HUGETLBFS_MAGIC (line 982) | HUGETLBFS_MAGIC = 0x958458f6 constant IBSHIFT (line 983) | IBSHIFT = 0x10 constant ICMPV6_FILTER (line 984) | ICMPV6_FILTER = 0x1 constant ICMPV6_FILTER_BLOCK (line 985) | ICMPV6_FILTER_BLOCK = 0x1 constant ICMPV6_FILTER_BLOCKOTHERS (line 986) | ICMPV6_FILTER_BLOCKOTHERS = 0x3 constant ICMPV6_FILTER_PASS (line 987) | ICMPV6_FILTER_PASS = 0x2 constant ICMPV6_FILTER_PASSONLY (line 988) | ICMPV6_FILTER_PASSONLY = 0x4 constant ICMP_FILTER (line 989) | ICMP_FILTER = 0x1 constant ICRNL (line 990) | ICRNL = 0x100 constant IFA_F_DADFAILED (line 991) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 992) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 993) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 994) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 995) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 996) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 997) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 998) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 999) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 1000) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 1001) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 1002) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 1003) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 1004) | IFA_MAX = 0xa constant IFF_ALLMULTI (line 1005) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 1006) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 1007) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 1008) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 1009) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 1010) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 1011) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 1012) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 1013) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 1014) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 1015) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 1016) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 1017) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 1018) | IFF_MULTI_QUEUE = 0x100 constant IFF_NAPI (line 1019) | IFF_NAPI = 0x10 constant IFF_NAPI_FRAGS (line 1020) | IFF_NAPI_FRAGS = 0x20 constant IFF_NOARP (line 1021) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 1022) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 1023) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 1024) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 1025) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 1026) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 1027) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 1028) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 1029) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 1030) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 1031) | IFF_SLAVE = 0x800 constant IFF_TAP (line 1032) | IFF_TAP = 0x2 constant IFF_TUN (line 1033) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 1034) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 1035) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 1036) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 1037) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 1038) | IFNAMSIZ = 0x10 constant IGNBRK (line 1039) | IGNBRK = 0x1 constant IGNCR (line 1040) | IGNCR = 0x80 constant IGNPAR (line 1041) | IGNPAR = 0x4 constant IMAXBEL (line 1042) | IMAXBEL = 0x2000 constant INLCR (line 1043) | INLCR = 0x40 constant INPCK (line 1044) | INPCK = 0x10 constant IN_ACCESS (line 1045) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 1046) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 1047) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 1048) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 1049) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 1050) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 1051) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 1052) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 1053) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 1054) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 1055) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 1056) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 1057) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 1058) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOSE (line 1059) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 1060) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 1061) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 1062) | IN_CREATE = 0x100 constant IN_DELETE (line 1063) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 1064) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 1065) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 1066) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 1067) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 1068) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 1069) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 1070) | IN_MASK_ADD = 0x20000000 constant IN_MASK_CREATE (line 1071) | IN_MASK_CREATE = 0x10000000 constant IN_MODIFY (line 1072) | IN_MODIFY = 0x2 constant IN_MOVE (line 1073) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 1074) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 1075) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 1076) | IN_MOVE_SELF = 0x800 constant IN_ONESHOT (line 1077) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 1078) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 1079) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 1080) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 1081) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 1082) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 1083) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 1084) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 1085) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 1086) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 1087) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 1088) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 1089) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERNET (line 1090) | IPPROTO_ETHERNET = 0x8f constant IPPROTO_FRAGMENT (line 1091) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 1092) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 1093) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 1094) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 1095) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 1096) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 1097) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 1098) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 1099) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 1100) | IPPROTO_IPV6 = 0x29 constant IPPROTO_L2TP (line 1101) | IPPROTO_L2TP = 0x73 constant IPPROTO_MH (line 1102) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 1103) | IPPROTO_MPLS = 0x89 constant IPPROTO_MPTCP (line 1104) | IPPROTO_MPTCP = 0x106 constant IPPROTO_MTP (line 1105) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 1106) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 1107) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 1108) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 1109) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 1110) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 1111) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 1112) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 1113) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 1114) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 1115) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 1116) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 1117) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 1118) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 1119) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 1120) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 1121) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 1122) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 1123) | IPV6_ADDRFORM = 0x1 constant IPV6_ADDR_PREFERENCES (line 1124) | IPV6_ADDR_PREFERENCES = 0x48 constant IPV6_ADD_MEMBERSHIP (line 1125) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 1126) | IPV6_AUTHHDR = 0xa constant IPV6_AUTOFLOWLABEL (line 1127) | IPV6_AUTOFLOWLABEL = 0x46 constant IPV6_CHECKSUM (line 1128) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 1129) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 1130) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 1131) | IPV6_DSTOPTS = 0x3b constant IPV6_FLOW (line 1132) | IPV6_FLOW = 0x11 constant IPV6_FREEBIND (line 1133) | IPV6_FREEBIND = 0x4e constant IPV6_HDRINCL (line 1134) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 1135) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 1136) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 1137) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 1138) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 1139) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 1140) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 1141) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MINHOPCOUNT (line 1142) | IPV6_MINHOPCOUNT = 0x49 constant IPV6_MTU (line 1143) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 1144) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_ALL (line 1145) | IPV6_MULTICAST_ALL = 0x1d constant IPV6_MULTICAST_HOPS (line 1146) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 1147) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 1148) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 1149) | IPV6_NEXTHOP = 0x9 constant IPV6_ORIGDSTADDR (line 1150) | IPV6_ORIGDSTADDR = 0x4a constant IPV6_PATHMTU (line 1151) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 1152) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 1153) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 1154) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 1155) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 1156) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 1157) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 1158) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 1159) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 1160) | IPV6_RECVERR = 0x19 constant IPV6_RECVERR_RFC4884 (line 1161) | IPV6_RECVERR_RFC4884 = 0x1f constant IPV6_RECVFRAGSIZE (line 1162) | IPV6_RECVFRAGSIZE = 0x4d constant IPV6_RECVHOPLIMIT (line 1163) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 1164) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVORIGDSTADDR (line 1165) | IPV6_RECVORIGDSTADDR = 0x4a constant IPV6_RECVPATHMTU (line 1166) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 1167) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 1168) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 1169) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 1170) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_ROUTER_ALERT_ISOLATE (line 1171) | IPV6_ROUTER_ALERT_ISOLATE = 0x1e constant IPV6_RTHDR (line 1172) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 1173) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 1174) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 1175) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 1176) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 1177) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 1178) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 1179) | IPV6_TCLASS = 0x43 constant IPV6_TRANSPARENT (line 1180) | IPV6_TRANSPARENT = 0x4b constant IPV6_UNICAST_HOPS (line 1181) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_UNICAST_IF (line 1182) | IPV6_UNICAST_IF = 0x4c constant IPV6_USER_FLOW (line 1183) | IPV6_USER_FLOW = 0xe constant IPV6_V6ONLY (line 1184) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 1185) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 1186) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 1187) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 1188) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 1189) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 1190) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 1191) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 1192) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 1193) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 1194) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 1195) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 1196) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 1197) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 1198) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 1199) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 1200) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 1201) | IP_MF = 0x2000 constant IP_MINTTL (line 1202) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 1203) | IP_MSFILTER = 0x29 constant IP_MSS (line 1204) | IP_MSS = 0x240 constant IP_MTU (line 1205) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 1206) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 1207) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 1208) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 1209) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 1210) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 1211) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 1212) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 1213) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 1214) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 1215) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 1216) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 1217) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 1218) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 1219) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 1220) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 1221) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 1222) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 1223) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 1224) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 1225) | IP_RECVERR = 0xb constant IP_RECVERR_RFC4884 (line 1226) | IP_RECVERR_RFC4884 = 0x1a constant IP_RECVFRAGSIZE (line 1227) | IP_RECVFRAGSIZE = 0x19 constant IP_RECVOPTS (line 1228) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 1229) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 1230) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 1231) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 1232) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 1233) | IP_RETOPTS = 0x7 constant IP_RF (line 1234) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 1235) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 1236) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 1237) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 1238) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 1239) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 1240) | IP_UNICAST_IF = 0x32 constant IP_USER_FLOW (line 1241) | IP_USER_FLOW = 0xd constant IP_XFRM_POLICY (line 1242) | IP_XFRM_POLICY = 0x11 constant ISOFS_SUPER_MAGIC (line 1243) | ISOFS_SUPER_MAGIC = 0x9660 constant ISTRIP (line 1244) | ISTRIP = 0x20 constant IUTF8 (line 1245) | IUTF8 = 0x4000 constant IXANY (line 1246) | IXANY = 0x800 constant JFFS2_SUPER_MAGIC (line 1247) | JFFS2_SUPER_MAGIC = 0x72b6 constant KEXEC_ARCH_386 (line 1248) | KEXEC_ARCH_386 = 0x30000 constant KEXEC_ARCH_68K (line 1249) | KEXEC_ARCH_68K = 0x40000 constant KEXEC_ARCH_AARCH64 (line 1250) | KEXEC_ARCH_AARCH64 = 0xb70000 constant KEXEC_ARCH_ARM (line 1251) | KEXEC_ARCH_ARM = 0x280000 constant KEXEC_ARCH_DEFAULT (line 1252) | KEXEC_ARCH_DEFAULT = 0x0 constant KEXEC_ARCH_IA_64 (line 1253) | KEXEC_ARCH_IA_64 = 0x320000 constant KEXEC_ARCH_MASK (line 1254) | KEXEC_ARCH_MASK = 0xffff0000 constant KEXEC_ARCH_MIPS (line 1255) | KEXEC_ARCH_MIPS = 0x80000 constant KEXEC_ARCH_MIPS_LE (line 1256) | KEXEC_ARCH_MIPS_LE = 0xa0000 constant KEXEC_ARCH_PARISC (line 1257) | KEXEC_ARCH_PARISC = 0xf0000 constant KEXEC_ARCH_PPC (line 1258) | KEXEC_ARCH_PPC = 0x140000 constant KEXEC_ARCH_PPC64 (line 1259) | KEXEC_ARCH_PPC64 = 0x150000 constant KEXEC_ARCH_S390 (line 1260) | KEXEC_ARCH_S390 = 0x160000 constant KEXEC_ARCH_SH (line 1261) | KEXEC_ARCH_SH = 0x2a0000 constant KEXEC_ARCH_X86_64 (line 1262) | KEXEC_ARCH_X86_64 = 0x3e0000 constant KEXEC_FILE_NO_INITRAMFS (line 1263) | KEXEC_FILE_NO_INITRAMFS = 0x4 constant KEXEC_FILE_ON_CRASH (line 1264) | KEXEC_FILE_ON_CRASH = 0x2 constant KEXEC_FILE_UNLOAD (line 1265) | KEXEC_FILE_UNLOAD = 0x1 constant KEXEC_ON_CRASH (line 1266) | KEXEC_ON_CRASH = 0x1 constant KEXEC_PRESERVE_CONTEXT (line 1267) | KEXEC_PRESERVE_CONTEXT = 0x2 constant KEXEC_SEGMENT_MAX (line 1268) | KEXEC_SEGMENT_MAX = 0x10 constant KEYCTL_ASSUME_AUTHORITY (line 1269) | KEYCTL_ASSUME_AUTHORITY = 0x10 constant KEYCTL_CAPABILITIES (line 1270) | KEYCTL_CAPABILITIES = 0x1f constant KEYCTL_CAPS0_BIG_KEY (line 1271) | KEYCTL_CAPS0_BIG_KEY = 0x10 constant KEYCTL_CAPS0_CAPABILITIES (line 1272) | KEYCTL_CAPS0_CAPABILITIES = 0x1 constant KEYCTL_CAPS0_DIFFIE_HELLMAN (line 1273) | KEYCTL_CAPS0_DIFFIE_HELLMAN = 0x4 constant KEYCTL_CAPS0_INVALIDATE (line 1274) | KEYCTL_CAPS0_INVALIDATE = 0x20 constant KEYCTL_CAPS0_MOVE (line 1275) | KEYCTL_CAPS0_MOVE = 0x80 constant KEYCTL_CAPS0_PERSISTENT_KEYRINGS (line 1276) | KEYCTL_CAPS0_PERSISTENT_KEYRINGS = 0x2 constant KEYCTL_CAPS0_PUBLIC_KEY (line 1277) | KEYCTL_CAPS0_PUBLIC_KEY = 0x8 constant KEYCTL_CAPS0_RESTRICT_KEYRING (line 1278) | KEYCTL_CAPS0_RESTRICT_KEYRING = 0x40 constant KEYCTL_CAPS1_NOTIFICATIONS (line 1279) | KEYCTL_CAPS1_NOTIFICATIONS = 0x4 constant KEYCTL_CAPS1_NS_KEYRING_NAME (line 1280) | KEYCTL_CAPS1_NS_KEYRING_NAME = 0x1 constant KEYCTL_CAPS1_NS_KEY_TAG (line 1281) | KEYCTL_CAPS1_NS_KEY_TAG = 0x2 constant KEYCTL_CHOWN (line 1282) | KEYCTL_CHOWN = 0x4 constant KEYCTL_CLEAR (line 1283) | KEYCTL_CLEAR = 0x7 constant KEYCTL_DESCRIBE (line 1284) | KEYCTL_DESCRIBE = 0x6 constant KEYCTL_DH_COMPUTE (line 1285) | KEYCTL_DH_COMPUTE = 0x17 constant KEYCTL_GET_KEYRING_ID (line 1286) | KEYCTL_GET_KEYRING_ID = 0x0 constant KEYCTL_GET_PERSISTENT (line 1287) | KEYCTL_GET_PERSISTENT = 0x16 constant KEYCTL_GET_SECURITY (line 1288) | KEYCTL_GET_SECURITY = 0x11 constant KEYCTL_INSTANTIATE (line 1289) | KEYCTL_INSTANTIATE = 0xc constant KEYCTL_INSTANTIATE_IOV (line 1290) | KEYCTL_INSTANTIATE_IOV = 0x14 constant KEYCTL_INVALIDATE (line 1291) | KEYCTL_INVALIDATE = 0x15 constant KEYCTL_JOIN_SESSION_KEYRING (line 1292) | KEYCTL_JOIN_SESSION_KEYRING = 0x1 constant KEYCTL_LINK (line 1293) | KEYCTL_LINK = 0x8 constant KEYCTL_MOVE (line 1294) | KEYCTL_MOVE = 0x1e constant KEYCTL_MOVE_EXCL (line 1295) | KEYCTL_MOVE_EXCL = 0x1 constant KEYCTL_NEGATE (line 1296) | KEYCTL_NEGATE = 0xd constant KEYCTL_PKEY_DECRYPT (line 1297) | KEYCTL_PKEY_DECRYPT = 0x1a constant KEYCTL_PKEY_ENCRYPT (line 1298) | KEYCTL_PKEY_ENCRYPT = 0x19 constant KEYCTL_PKEY_QUERY (line 1299) | KEYCTL_PKEY_QUERY = 0x18 constant KEYCTL_PKEY_SIGN (line 1300) | KEYCTL_PKEY_SIGN = 0x1b constant KEYCTL_PKEY_VERIFY (line 1301) | KEYCTL_PKEY_VERIFY = 0x1c constant KEYCTL_READ (line 1302) | KEYCTL_READ = 0xb constant KEYCTL_REJECT (line 1303) | KEYCTL_REJECT = 0x13 constant KEYCTL_RESTRICT_KEYRING (line 1304) | KEYCTL_RESTRICT_KEYRING = 0x1d constant KEYCTL_REVOKE (line 1305) | KEYCTL_REVOKE = 0x3 constant KEYCTL_SEARCH (line 1306) | KEYCTL_SEARCH = 0xa constant KEYCTL_SESSION_TO_PARENT (line 1307) | KEYCTL_SESSION_TO_PARENT = 0x12 constant KEYCTL_SETPERM (line 1308) | KEYCTL_SETPERM = 0x5 constant KEYCTL_SET_REQKEY_KEYRING (line 1309) | KEYCTL_SET_REQKEY_KEYRING = 0xe constant KEYCTL_SET_TIMEOUT (line 1310) | KEYCTL_SET_TIMEOUT = 0xf constant KEYCTL_SUPPORTS_DECRYPT (line 1311) | KEYCTL_SUPPORTS_DECRYPT = 0x2 constant KEYCTL_SUPPORTS_ENCRYPT (line 1312) | KEYCTL_SUPPORTS_ENCRYPT = 0x1 constant KEYCTL_SUPPORTS_SIGN (line 1313) | KEYCTL_SUPPORTS_SIGN = 0x4 constant KEYCTL_SUPPORTS_VERIFY (line 1314) | KEYCTL_SUPPORTS_VERIFY = 0x8 constant KEYCTL_UNLINK (line 1315) | KEYCTL_UNLINK = 0x9 constant KEYCTL_UPDATE (line 1316) | KEYCTL_UPDATE = 0x2 constant KEYCTL_WATCH_KEY (line 1317) | KEYCTL_WATCH_KEY = 0x20 constant KEY_REQKEY_DEFL_DEFAULT (line 1318) | KEY_REQKEY_DEFL_DEFAULT = 0x0 constant KEY_REQKEY_DEFL_GROUP_KEYRING (line 1319) | KEY_REQKEY_DEFL_GROUP_KEYRING = 0x6 constant KEY_REQKEY_DEFL_NO_CHANGE (line 1320) | KEY_REQKEY_DEFL_NO_CHANGE = -0x1 constant KEY_REQKEY_DEFL_PROCESS_KEYRING (line 1321) | KEY_REQKEY_DEFL_PROCESS_KEYRING = 0x2 constant KEY_REQKEY_DEFL_REQUESTOR_KEYRING (line 1322) | KEY_REQKEY_DEFL_REQUESTOR_KEYRING = 0x7 constant KEY_REQKEY_DEFL_SESSION_KEYRING (line 1323) | KEY_REQKEY_DEFL_SESSION_KEYRING = 0x3 constant KEY_REQKEY_DEFL_THREAD_KEYRING (line 1324) | KEY_REQKEY_DEFL_THREAD_KEYRING = 0x1 constant KEY_REQKEY_DEFL_USER_KEYRING (line 1325) | KEY_REQKEY_DEFL_USER_KEYRING = 0x4 constant KEY_REQKEY_DEFL_USER_SESSION_KEYRING (line 1326) | KEY_REQKEY_DEFL_USER_SESSION_KEYRING = 0x5 constant KEY_SPEC_GROUP_KEYRING (line 1327) | KEY_SPEC_GROUP_KEYRING = -0x6 constant KEY_SPEC_PROCESS_KEYRING (line 1328) | KEY_SPEC_PROCESS_KEYRING = -0x2 constant KEY_SPEC_REQKEY_AUTH_KEY (line 1329) | KEY_SPEC_REQKEY_AUTH_KEY = -0x7 constant KEY_SPEC_REQUESTOR_KEYRING (line 1330) | KEY_SPEC_REQUESTOR_KEYRING = -0x8 constant KEY_SPEC_SESSION_KEYRING (line 1331) | KEY_SPEC_SESSION_KEYRING = -0x3 constant KEY_SPEC_THREAD_KEYRING (line 1332) | KEY_SPEC_THREAD_KEYRING = -0x1 constant KEY_SPEC_USER_KEYRING (line 1333) | KEY_SPEC_USER_KEYRING = -0x4 constant KEY_SPEC_USER_SESSION_KEYRING (line 1334) | KEY_SPEC_USER_SESSION_KEYRING = -0x5 constant LINUX_REBOOT_CMD_CAD_OFF (line 1335) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 1336) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 1337) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 1338) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 1339) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 1340) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 1341) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 1342) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 1343) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 1344) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 1345) | LOCK_EX = 0x2 constant LOCK_NB (line 1346) | LOCK_NB = 0x4 constant LOCK_SH (line 1347) | LOCK_SH = 0x1 constant LOCK_UN (line 1348) | LOCK_UN = 0x8 constant LOOP_CLR_FD (line 1349) | LOOP_CLR_FD = 0x4c01 constant LOOP_CTL_ADD (line 1350) | LOOP_CTL_ADD = 0x4c80 constant LOOP_CTL_GET_FREE (line 1351) | LOOP_CTL_GET_FREE = 0x4c82 constant LOOP_CTL_REMOVE (line 1352) | LOOP_CTL_REMOVE = 0x4c81 constant LOOP_GET_STATUS (line 1353) | LOOP_GET_STATUS = 0x4c03 constant LOOP_GET_STATUS64 (line 1354) | LOOP_GET_STATUS64 = 0x4c05 constant LOOP_SET_BLOCK_SIZE (line 1355) | LOOP_SET_BLOCK_SIZE = 0x4c09 constant LOOP_SET_CAPACITY (line 1356) | LOOP_SET_CAPACITY = 0x4c07 constant LOOP_SET_DIRECT_IO (line 1357) | LOOP_SET_DIRECT_IO = 0x4c08 constant LOOP_SET_FD (line 1358) | LOOP_SET_FD = 0x4c00 constant LOOP_SET_STATUS (line 1359) | LOOP_SET_STATUS = 0x4c02 constant LOOP_SET_STATUS64 (line 1360) | LOOP_SET_STATUS64 = 0x4c04 constant LOOP_SET_STATUS_CLEARABLE_FLAGS (line 1361) | LOOP_SET_STATUS_CLEARABLE_FLAGS = 0x4 constant LOOP_SET_STATUS_SETTABLE_FLAGS (line 1362) | LOOP_SET_STATUS_SETTABLE_FLAGS = 0xc constant LO_KEY_SIZE (line 1363) | LO_KEY_SIZE = 0x20 constant LO_NAME_SIZE (line 1364) | LO_NAME_SIZE = 0x40 constant LWTUNNEL_IP6_MAX (line 1365) | LWTUNNEL_IP6_MAX = 0x8 constant LWTUNNEL_IP_MAX (line 1366) | LWTUNNEL_IP_MAX = 0x8 constant LWTUNNEL_IP_OPTS_MAX (line 1367) | LWTUNNEL_IP_OPTS_MAX = 0x3 constant LWTUNNEL_IP_OPT_ERSPAN_MAX (line 1368) | LWTUNNEL_IP_OPT_ERSPAN_MAX = 0x4 constant LWTUNNEL_IP_OPT_GENEVE_MAX (line 1369) | LWTUNNEL_IP_OPT_GENEVE_MAX = 0x3 constant LWTUNNEL_IP_OPT_VXLAN_MAX (line 1370) | LWTUNNEL_IP_OPT_VXLAN_MAX = 0x1 constant MADV_COLD (line 1371) | MADV_COLD = 0x14 constant MADV_DODUMP (line 1372) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 1373) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 1374) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 1375) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 1376) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1377) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 1378) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 1379) | MADV_HWPOISON = 0x64 constant MADV_KEEPONFORK (line 1380) | MADV_KEEPONFORK = 0x13 constant MADV_MERGEABLE (line 1381) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 1382) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 1383) | MADV_NORMAL = 0x0 constant MADV_PAGEOUT (line 1384) | MADV_PAGEOUT = 0x15 constant MADV_RANDOM (line 1385) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 1386) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 1387) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 1388) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 1389) | MADV_WILLNEED = 0x3 constant MADV_WIPEONFORK (line 1390) | MADV_WIPEONFORK = 0x12 constant MAP_FILE (line 1391) | MAP_FILE = 0x0 constant MAP_FIXED (line 1392) | MAP_FIXED = 0x10 constant MAP_FIXED_NOREPLACE (line 1393) | MAP_FIXED_NOREPLACE = 0x100000 constant MAP_HUGE_MASK (line 1394) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 1395) | MAP_HUGE_SHIFT = 0x1a constant MAP_PRIVATE (line 1396) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 1397) | MAP_SHARED = 0x1 constant MAP_SHARED_VALIDATE (line 1398) | MAP_SHARED_VALIDATE = 0x3 constant MAP_TYPE (line 1399) | MAP_TYPE = 0xf constant MCAST_BLOCK_SOURCE (line 1400) | MCAST_BLOCK_SOURCE = 0x2b constant MCAST_EXCLUDE (line 1401) | MCAST_EXCLUDE = 0x0 constant MCAST_INCLUDE (line 1402) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 1403) | MCAST_JOIN_GROUP = 0x2a constant MCAST_JOIN_SOURCE_GROUP (line 1404) | MCAST_JOIN_SOURCE_GROUP = 0x2e constant MCAST_LEAVE_GROUP (line 1405) | MCAST_LEAVE_GROUP = 0x2d constant MCAST_LEAVE_SOURCE_GROUP (line 1406) | MCAST_LEAVE_SOURCE_GROUP = 0x2f constant MCAST_MSFILTER (line 1407) | MCAST_MSFILTER = 0x30 constant MCAST_UNBLOCK_SOURCE (line 1408) | MCAST_UNBLOCK_SOURCE = 0x2c constant MEMGETREGIONINFO (line 1409) | MEMGETREGIONINFO = 0xc0104d08 constant MEMREADOOB64 (line 1410) | MEMREADOOB64 = 0xc0184d16 constant MEMWRITE (line 1411) | MEMWRITE = 0xc0304d18 constant MEMWRITEOOB64 (line 1412) | MEMWRITEOOB64 = 0xc0184d15 constant MFD_ALLOW_SEALING (line 1413) | MFD_ALLOW_SEALING = 0x2 constant MFD_CLOEXEC (line 1414) | MFD_CLOEXEC = 0x1 constant MFD_HUGETLB (line 1415) | MFD_HUGETLB = 0x4 constant MFD_HUGE_16GB (line 1416) | MFD_HUGE_16GB = -0x78000000 constant MFD_HUGE_16MB (line 1417) | MFD_HUGE_16MB = 0x60000000 constant MFD_HUGE_1GB (line 1418) | MFD_HUGE_1GB = 0x78000000 constant MFD_HUGE_1MB (line 1419) | MFD_HUGE_1MB = 0x50000000 constant MFD_HUGE_256MB (line 1420) | MFD_HUGE_256MB = 0x70000000 constant MFD_HUGE_2GB (line 1421) | MFD_HUGE_2GB = 0x7c000000 constant MFD_HUGE_2MB (line 1422) | MFD_HUGE_2MB = 0x54000000 constant MFD_HUGE_32MB (line 1423) | MFD_HUGE_32MB = 0x64000000 constant MFD_HUGE_512KB (line 1424) | MFD_HUGE_512KB = 0x4c000000 constant MFD_HUGE_512MB (line 1425) | MFD_HUGE_512MB = 0x74000000 constant MFD_HUGE_64KB (line 1426) | MFD_HUGE_64KB = 0x40000000 constant MFD_HUGE_8MB (line 1427) | MFD_HUGE_8MB = 0x5c000000 constant MFD_HUGE_MASK (line 1428) | MFD_HUGE_MASK = 0x3f constant MFD_HUGE_SHIFT (line 1429) | MFD_HUGE_SHIFT = 0x1a constant MINIX2_SUPER_MAGIC (line 1430) | MINIX2_SUPER_MAGIC = 0x2468 constant MINIX2_SUPER_MAGIC2 (line 1431) | MINIX2_SUPER_MAGIC2 = 0x2478 constant MINIX3_SUPER_MAGIC (line 1432) | MINIX3_SUPER_MAGIC = 0x4d5a constant MINIX_SUPER_MAGIC (line 1433) | MINIX_SUPER_MAGIC = 0x137f constant MINIX_SUPER_MAGIC2 (line 1434) | MINIX_SUPER_MAGIC2 = 0x138f constant MNT_DETACH (line 1435) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 1436) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 1437) | MNT_FORCE = 0x1 constant MODULE_INIT_IGNORE_MODVERSIONS (line 1438) | MODULE_INIT_IGNORE_MODVERSIONS = 0x1 constant MODULE_INIT_IGNORE_VERMAGIC (line 1439) | MODULE_INIT_IGNORE_VERMAGIC = 0x2 constant MSDOS_SUPER_MAGIC (line 1440) | MSDOS_SUPER_MAGIC = 0x4d44 constant MSG_BATCH (line 1441) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 1442) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 1443) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 1444) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 1445) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1446) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 1447) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 1448) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 1449) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 1450) | MSG_FIN = 0x200 constant MSG_MORE (line 1451) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 1452) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 1453) | MSG_OOB = 0x1 constant MSG_PEEK (line 1454) | MSG_PEEK = 0x2 constant MSG_PROXY (line 1455) | MSG_PROXY = 0x10 constant MSG_RST (line 1456) | MSG_RST = 0x1000 constant MSG_SYN (line 1457) | MSG_SYN = 0x400 constant MSG_TRUNC (line 1458) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 1459) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 1460) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 1461) | MSG_WAITFORONE = 0x10000 constant MSG_ZEROCOPY (line 1462) | MSG_ZEROCOPY = 0x4000000 constant MS_ACTIVE (line 1463) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 1464) | MS_ASYNC = 0x1 constant MS_BIND (line 1465) | MS_BIND = 0x1000 constant MS_BORN (line 1466) | MS_BORN = 0x20000000 constant MS_DIRSYNC (line 1467) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 1468) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 1469) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 1470) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 1471) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 1472) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 1473) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 1474) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 1475) | MS_MOVE = 0x2000 constant MS_NOATIME (line 1476) | MS_NOATIME = 0x400 constant MS_NODEV (line 1477) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 1478) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 1479) | MS_NOEXEC = 0x8 constant MS_NOREMOTELOCK (line 1480) | MS_NOREMOTELOCK = 0x8000000 constant MS_NOSEC (line 1481) | MS_NOSEC = 0x10000000 constant MS_NOSUID (line 1482) | MS_NOSUID = 0x2 constant MS_NOSYMFOLLOW (line 1483) | MS_NOSYMFOLLOW = 0x100 constant MS_NOUSER (line 1484) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 1485) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 1486) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 1487) | MS_RDONLY = 0x1 constant MS_REC (line 1488) | MS_REC = 0x4000 constant MS_RELATIME (line 1489) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 1490) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 1491) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 1492) | MS_SHARED = 0x100000 constant MS_SILENT (line 1493) | MS_SILENT = 0x8000 constant MS_SLAVE (line 1494) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 1495) | MS_STRICTATIME = 0x1000000 constant MS_SUBMOUNT (line 1496) | MS_SUBMOUNT = 0x4000000 constant MS_SYNC (line 1497) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 1498) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 1499) | MS_UNBINDABLE = 0x20000 constant MS_VERBOSE (line 1500) | MS_VERBOSE = 0x8000 constant MTD_ABSENT (line 1501) | MTD_ABSENT = 0x0 constant MTD_BIT_WRITEABLE (line 1502) | MTD_BIT_WRITEABLE = 0x800 constant MTD_CAP_NANDFLASH (line 1503) | MTD_CAP_NANDFLASH = 0x400 constant MTD_CAP_NORFLASH (line 1504) | MTD_CAP_NORFLASH = 0xc00 constant MTD_CAP_NVRAM (line 1505) | MTD_CAP_NVRAM = 0x1c00 constant MTD_CAP_RAM (line 1506) | MTD_CAP_RAM = 0x1c00 constant MTD_CAP_ROM (line 1507) | MTD_CAP_ROM = 0x0 constant MTD_DATAFLASH (line 1508) | MTD_DATAFLASH = 0x6 constant MTD_INODE_FS_MAGIC (line 1509) | MTD_INODE_FS_MAGIC = 0x11307854 constant MTD_MAX_ECCPOS_ENTRIES (line 1510) | MTD_MAX_ECCPOS_ENTRIES = 0x40 constant MTD_MAX_OOBFREE_ENTRIES (line 1511) | MTD_MAX_OOBFREE_ENTRIES = 0x8 constant MTD_MLCNANDFLASH (line 1512) | MTD_MLCNANDFLASH = 0x8 constant MTD_NANDECC_AUTOPLACE (line 1513) | MTD_NANDECC_AUTOPLACE = 0x2 constant MTD_NANDECC_AUTOPL_USR (line 1514) | MTD_NANDECC_AUTOPL_USR = 0x4 constant MTD_NANDECC_OFF (line 1515) | MTD_NANDECC_OFF = 0x0 constant MTD_NANDECC_PLACE (line 1516) | MTD_NANDECC_PLACE = 0x1 constant MTD_NANDECC_PLACEONLY (line 1517) | MTD_NANDECC_PLACEONLY = 0x3 constant MTD_NANDFLASH (line 1518) | MTD_NANDFLASH = 0x4 constant MTD_NORFLASH (line 1519) | MTD_NORFLASH = 0x3 constant MTD_NO_ERASE (line 1520) | MTD_NO_ERASE = 0x1000 constant MTD_OTP_FACTORY (line 1521) | MTD_OTP_FACTORY = 0x1 constant MTD_OTP_OFF (line 1522) | MTD_OTP_OFF = 0x0 constant MTD_OTP_USER (line 1523) | MTD_OTP_USER = 0x2 constant MTD_POWERUP_LOCK (line 1524) | MTD_POWERUP_LOCK = 0x2000 constant MTD_RAM (line 1525) | MTD_RAM = 0x1 constant MTD_ROM (line 1526) | MTD_ROM = 0x2 constant MTD_SLC_ON_MLC_EMULATION (line 1527) | MTD_SLC_ON_MLC_EMULATION = 0x4000 constant MTD_UBIVOLUME (line 1528) | MTD_UBIVOLUME = 0x7 constant MTD_WRITEABLE (line 1529) | MTD_WRITEABLE = 0x400 constant NAME_MAX (line 1530) | NAME_MAX = 0xff constant NCP_SUPER_MAGIC (line 1531) | NCP_SUPER_MAGIC = 0x564c constant NETLINK_ADD_MEMBERSHIP (line 1532) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 1533) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 1534) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 1535) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 1536) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 1537) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 1538) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 1539) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 1540) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_EXT_ACK (line 1541) | NETLINK_EXT_ACK = 0xb constant NETLINK_FIB_LOOKUP (line 1542) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 1543) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 1544) | NETLINK_GENERIC = 0x10 constant NETLINK_GET_STRICT_CHK (line 1545) | NETLINK_GET_STRICT_CHK = 0xc constant NETLINK_INET_DIAG (line 1546) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 1547) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 1548) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 1549) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 1550) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 1551) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 1552) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 1553) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 1554) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 1555) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 1556) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 1557) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 1558) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 1559) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 1560) | NETLINK_SELINUX = 0x7 constant NETLINK_SMC (line 1561) | NETLINK_SMC = 0x16 constant NETLINK_SOCK_DIAG (line 1562) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 1563) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 1564) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 1565) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 1566) | NETLINK_XFRM = 0x6 constant NETNSA_MAX (line 1567) | NETNSA_MAX = 0x5 constant NETNSA_NSID_NOT_ASSIGNED (line 1568) | NETNSA_NSID_NOT_ASSIGNED = -0x1 constant NFC_ATR_REQ_GB_MAXSIZE (line 1569) | NFC_ATR_REQ_GB_MAXSIZE = 0x30 constant NFC_ATR_REQ_MAXSIZE (line 1570) | NFC_ATR_REQ_MAXSIZE = 0x40 constant NFC_ATR_RES_GB_MAXSIZE (line 1571) | NFC_ATR_RES_GB_MAXSIZE = 0x2f constant NFC_ATR_RES_MAXSIZE (line 1572) | NFC_ATR_RES_MAXSIZE = 0x40 constant NFC_COMM_ACTIVE (line 1573) | NFC_COMM_ACTIVE = 0x0 constant NFC_COMM_PASSIVE (line 1574) | NFC_COMM_PASSIVE = 0x1 constant NFC_DEVICE_NAME_MAXSIZE (line 1575) | NFC_DEVICE_NAME_MAXSIZE = 0x8 constant NFC_DIRECTION_RX (line 1576) | NFC_DIRECTION_RX = 0x0 constant NFC_DIRECTION_TX (line 1577) | NFC_DIRECTION_TX = 0x1 constant NFC_FIRMWARE_NAME_MAXSIZE (line 1578) | NFC_FIRMWARE_NAME_MAXSIZE = 0x20 constant NFC_GB_MAXSIZE (line 1579) | NFC_GB_MAXSIZE = 0x30 constant NFC_GENL_MCAST_EVENT_NAME (line 1580) | NFC_GENL_MCAST_EVENT_NAME = "events" constant NFC_GENL_NAME (line 1581) | NFC_GENL_NAME = "nfc" constant NFC_GENL_VERSION (line 1582) | NFC_GENL_VERSION = 0x1 constant NFC_HEADER_SIZE (line 1583) | NFC_HEADER_SIZE = 0x1 constant NFC_ISO15693_UID_MAXSIZE (line 1584) | NFC_ISO15693_UID_MAXSIZE = 0x8 constant NFC_LLCP_MAX_SERVICE_NAME (line 1585) | NFC_LLCP_MAX_SERVICE_NAME = 0x3f constant NFC_LLCP_MIUX (line 1586) | NFC_LLCP_MIUX = 0x1 constant NFC_LLCP_REMOTE_LTO (line 1587) | NFC_LLCP_REMOTE_LTO = 0x3 constant NFC_LLCP_REMOTE_MIU (line 1588) | NFC_LLCP_REMOTE_MIU = 0x2 constant NFC_LLCP_REMOTE_RW (line 1589) | NFC_LLCP_REMOTE_RW = 0x4 constant NFC_LLCP_RW (line 1590) | NFC_LLCP_RW = 0x0 constant NFC_NFCID1_MAXSIZE (line 1591) | NFC_NFCID1_MAXSIZE = 0xa constant NFC_NFCID2_MAXSIZE (line 1592) | NFC_NFCID2_MAXSIZE = 0x8 constant NFC_NFCID3_MAXSIZE (line 1593) | NFC_NFCID3_MAXSIZE = 0xa constant NFC_PROTO_FELICA (line 1594) | NFC_PROTO_FELICA = 0x3 constant NFC_PROTO_FELICA_MASK (line 1595) | NFC_PROTO_FELICA_MASK = 0x8 constant NFC_PROTO_ISO14443 (line 1596) | NFC_PROTO_ISO14443 = 0x4 constant NFC_PROTO_ISO14443_B (line 1597) | NFC_PROTO_ISO14443_B = 0x6 constant NFC_PROTO_ISO14443_B_MASK (line 1598) | NFC_PROTO_ISO14443_B_MASK = 0x40 constant NFC_PROTO_ISO14443_MASK (line 1599) | NFC_PROTO_ISO14443_MASK = 0x10 constant NFC_PROTO_ISO15693 (line 1600) | NFC_PROTO_ISO15693 = 0x7 constant NFC_PROTO_ISO15693_MASK (line 1601) | NFC_PROTO_ISO15693_MASK = 0x80 constant NFC_PROTO_JEWEL (line 1602) | NFC_PROTO_JEWEL = 0x1 constant NFC_PROTO_JEWEL_MASK (line 1603) | NFC_PROTO_JEWEL_MASK = 0x2 constant NFC_PROTO_MAX (line 1604) | NFC_PROTO_MAX = 0x8 constant NFC_PROTO_MIFARE (line 1605) | NFC_PROTO_MIFARE = 0x2 constant NFC_PROTO_MIFARE_MASK (line 1606) | NFC_PROTO_MIFARE_MASK = 0x4 constant NFC_PROTO_NFC_DEP (line 1607) | NFC_PROTO_NFC_DEP = 0x5 constant NFC_PROTO_NFC_DEP_MASK (line 1608) | NFC_PROTO_NFC_DEP_MASK = 0x20 constant NFC_RAW_HEADER_SIZE (line 1609) | NFC_RAW_HEADER_SIZE = 0x2 constant NFC_RF_INITIATOR (line 1610) | NFC_RF_INITIATOR = 0x0 constant NFC_RF_NONE (line 1611) | NFC_RF_NONE = 0x2 constant NFC_RF_TARGET (line 1612) | NFC_RF_TARGET = 0x1 constant NFC_SENSB_RES_MAXSIZE (line 1613) | NFC_SENSB_RES_MAXSIZE = 0xc constant NFC_SENSF_RES_MAXSIZE (line 1614) | NFC_SENSF_RES_MAXSIZE = 0x12 constant NFC_SE_DISABLED (line 1615) | NFC_SE_DISABLED = 0x0 constant NFC_SE_EMBEDDED (line 1616) | NFC_SE_EMBEDDED = 0x2 constant NFC_SE_ENABLED (line 1617) | NFC_SE_ENABLED = 0x1 constant NFC_SE_UICC (line 1618) | NFC_SE_UICC = 0x1 constant NFC_SOCKPROTO_LLCP (line 1619) | NFC_SOCKPROTO_LLCP = 0x1 constant NFC_SOCKPROTO_MAX (line 1620) | NFC_SOCKPROTO_MAX = 0x2 constant NFC_SOCKPROTO_RAW (line 1621) | NFC_SOCKPROTO_RAW = 0x0 constant NFNETLINK_V0 (line 1622) | NFNETLINK_V0 = 0x0 constant NFNLGRP_ACCT_QUOTA (line 1623) | NFNLGRP_ACCT_QUOTA = 0x8 constant NFNLGRP_CONNTRACK_DESTROY (line 1624) | NFNLGRP_CONNTRACK_DESTROY = 0x3 constant NFNLGRP_CONNTRACK_EXP_DESTROY (line 1625) | NFNLGRP_CONNTRACK_EXP_DESTROY = 0x6 constant NFNLGRP_CONNTRACK_EXP_NEW (line 1626) | NFNLGRP_CONNTRACK_EXP_NEW = 0x4 constant NFNLGRP_CONNTRACK_EXP_UPDATE (line 1627) | NFNLGRP_CONNTRACK_EXP_UPDATE = 0x5 constant NFNLGRP_CONNTRACK_NEW (line 1628) | NFNLGRP_CONNTRACK_NEW = 0x1 constant NFNLGRP_CONNTRACK_UPDATE (line 1629) | NFNLGRP_CONNTRACK_UPDATE = 0x2 constant NFNLGRP_MAX (line 1630) | NFNLGRP_MAX = 0x9 constant NFNLGRP_NFTABLES (line 1631) | NFNLGRP_NFTABLES = 0x7 constant NFNLGRP_NFTRACE (line 1632) | NFNLGRP_NFTRACE = 0x9 constant NFNLGRP_NONE (line 1633) | NFNLGRP_NONE = 0x0 constant NFNL_BATCH_MAX (line 1634) | NFNL_BATCH_MAX = 0x1 constant NFNL_MSG_BATCH_BEGIN (line 1635) | NFNL_MSG_BATCH_BEGIN = 0x10 constant NFNL_MSG_BATCH_END (line 1636) | NFNL_MSG_BATCH_END = 0x11 constant NFNL_NFA_NEST (line 1637) | NFNL_NFA_NEST = 0x8000 constant NFNL_SUBSYS_ACCT (line 1638) | NFNL_SUBSYS_ACCT = 0x7 constant NFNL_SUBSYS_COUNT (line 1639) | NFNL_SUBSYS_COUNT = 0xc constant NFNL_SUBSYS_CTHELPER (line 1640) | NFNL_SUBSYS_CTHELPER = 0x9 constant NFNL_SUBSYS_CTNETLINK (line 1641) | NFNL_SUBSYS_CTNETLINK = 0x1 constant NFNL_SUBSYS_CTNETLINK_EXP (line 1642) | NFNL_SUBSYS_CTNETLINK_EXP = 0x2 constant NFNL_SUBSYS_CTNETLINK_TIMEOUT (line 1643) | NFNL_SUBSYS_CTNETLINK_TIMEOUT = 0x8 constant NFNL_SUBSYS_IPSET (line 1644) | NFNL_SUBSYS_IPSET = 0x6 constant NFNL_SUBSYS_NFTABLES (line 1645) | NFNL_SUBSYS_NFTABLES = 0xa constant NFNL_SUBSYS_NFT_COMPAT (line 1646) | NFNL_SUBSYS_NFT_COMPAT = 0xb constant NFNL_SUBSYS_NONE (line 1647) | NFNL_SUBSYS_NONE = 0x0 constant NFNL_SUBSYS_OSF (line 1648) | NFNL_SUBSYS_OSF = 0x5 constant NFNL_SUBSYS_QUEUE (line 1649) | NFNL_SUBSYS_QUEUE = 0x3 constant NFNL_SUBSYS_ULOG (line 1650) | NFNL_SUBSYS_ULOG = 0x4 constant NFS_SUPER_MAGIC (line 1651) | NFS_SUPER_MAGIC = 0x6969 constant NILFS_SUPER_MAGIC (line 1652) | NILFS_SUPER_MAGIC = 0x3434 constant NL0 (line 1653) | NL0 = 0x0 constant NL1 (line 1654) | NL1 = 0x100 constant NLA_ALIGNTO (line 1655) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 1656) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 1657) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 1658) | NLA_HDRLEN = 0x4 constant NLMSG_ALIGNTO (line 1659) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 1660) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 1661) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 1662) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 1663) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 1664) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 1665) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 1666) | NLM_F_ACK = 0x4 constant NLM_F_ACK_TLVS (line 1667) | NLM_F_ACK_TLVS = 0x200 constant NLM_F_APPEND (line 1668) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 1669) | NLM_F_ATOMIC = 0x400 constant NLM_F_CAPPED (line 1670) | NLM_F_CAPPED = 0x100 constant NLM_F_CREATE (line 1671) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 1672) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 1673) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 1674) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 1675) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 1676) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 1677) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 1678) | NLM_F_MULTI = 0x2 constant NLM_F_NONREC (line 1679) | NLM_F_NONREC = 0x100 constant NLM_F_REPLACE (line 1680) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 1681) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 1682) | NLM_F_ROOT = 0x100 constant NSFS_MAGIC (line 1683) | NSFS_MAGIC = 0x6e736673 constant OCFS2_SUPER_MAGIC (line 1684) | OCFS2_SUPER_MAGIC = 0x7461636f constant OCRNL (line 1685) | OCRNL = 0x8 constant OFDEL (line 1686) | OFDEL = 0x80 constant OFILL (line 1687) | OFILL = 0x40 constant ONLRET (line 1688) | ONLRET = 0x20 constant ONOCR (line 1689) | ONOCR = 0x10 constant OPENPROM_SUPER_MAGIC (line 1690) | OPENPROM_SUPER_MAGIC = 0x9fa1 constant OPOST (line 1691) | OPOST = 0x1 constant OVERLAYFS_SUPER_MAGIC (line 1692) | OVERLAYFS_SUPER_MAGIC = 0x794c7630 constant O_ACCMODE (line 1693) | O_ACCMODE = 0x3 constant O_RDONLY (line 1694) | O_RDONLY = 0x0 constant O_RDWR (line 1695) | O_RDWR = 0x2 constant O_WRONLY (line 1696) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 1697) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 1698) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 1699) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 1700) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 1701) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 1702) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 1703) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 1704) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 1705) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 1706) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 1707) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 1708) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_FLAG_UNIQUEID (line 1709) | PACKET_FANOUT_FLAG_UNIQUEID = 0x2000 constant PACKET_FANOUT_HASH (line 1710) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 1711) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 1712) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 1713) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 1714) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 1715) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 1716) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 1717) | PACKET_HOST = 0x0 constant PACKET_IGNORE_OUTGOING (line 1718) | PACKET_IGNORE_OUTGOING = 0x17 constant PACKET_KERNEL (line 1719) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 1720) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 1721) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 1722) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 1723) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 1724) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 1725) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 1726) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 1727) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 1728) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 1729) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 1730) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 1731) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 1732) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 1733) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 1734) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 1735) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 1736) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 1737) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 1738) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 1739) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 1740) | PACKET_USER = 0x6 constant PACKET_VERSION (line 1741) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 1742) | PACKET_VNET_HDR = 0xf constant PARITY_CRC16_PR0 (line 1743) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 1744) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 1745) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 1746) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 1747) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 1748) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 1749) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 1750) | PARITY_NONE = 0x1 constant PARMRK (line 1751) | PARMRK = 0x8 constant PERF_ATTR_SIZE_VER0 (line 1752) | PERF_ATTR_SIZE_VER0 = 0x40 constant PERF_ATTR_SIZE_VER1 (line 1753) | PERF_ATTR_SIZE_VER1 = 0x48 constant PERF_ATTR_SIZE_VER2 (line 1754) | PERF_ATTR_SIZE_VER2 = 0x50 constant PERF_ATTR_SIZE_VER3 (line 1755) | PERF_ATTR_SIZE_VER3 = 0x60 constant PERF_ATTR_SIZE_VER4 (line 1756) | PERF_ATTR_SIZE_VER4 = 0x68 constant PERF_ATTR_SIZE_VER5 (line 1757) | PERF_ATTR_SIZE_VER5 = 0x70 constant PERF_ATTR_SIZE_VER6 (line 1758) | PERF_ATTR_SIZE_VER6 = 0x78 constant PERF_AUX_FLAG_COLLISION (line 1759) | PERF_AUX_FLAG_COLLISION = 0x8 constant PERF_AUX_FLAG_OVERWRITE (line 1760) | PERF_AUX_FLAG_OVERWRITE = 0x2 constant PERF_AUX_FLAG_PARTIAL (line 1761) | PERF_AUX_FLAG_PARTIAL = 0x4 constant PERF_AUX_FLAG_TRUNCATED (line 1762) | PERF_AUX_FLAG_TRUNCATED = 0x1 constant PERF_FLAG_FD_CLOEXEC (line 1763) | PERF_FLAG_FD_CLOEXEC = 0x8 constant PERF_FLAG_FD_NO_GROUP (line 1764) | PERF_FLAG_FD_NO_GROUP = 0x1 constant PERF_FLAG_FD_OUTPUT (line 1765) | PERF_FLAG_FD_OUTPUT = 0x2 constant PERF_FLAG_PID_CGROUP (line 1766) | PERF_FLAG_PID_CGROUP = 0x4 constant PERF_MAX_CONTEXTS_PER_STACK (line 1767) | PERF_MAX_CONTEXTS_PER_STACK = 0x8 constant PERF_MAX_STACK_DEPTH (line 1768) | PERF_MAX_STACK_DEPTH = 0x7f constant PERF_MEM_BLK_ADDR (line 1769) | PERF_MEM_BLK_ADDR = 0x4 constant PERF_MEM_BLK_DATA (line 1770) | PERF_MEM_BLK_DATA = 0x2 constant PERF_MEM_BLK_NA (line 1771) | PERF_MEM_BLK_NA = 0x1 constant PERF_MEM_BLK_SHIFT (line 1772) | PERF_MEM_BLK_SHIFT = 0x28 constant PERF_MEM_LOCK_LOCKED (line 1773) | PERF_MEM_LOCK_LOCKED = 0x2 constant PERF_MEM_LOCK_NA (line 1774) | PERF_MEM_LOCK_NA = 0x1 constant PERF_MEM_LOCK_SHIFT (line 1775) | PERF_MEM_LOCK_SHIFT = 0x18 constant PERF_MEM_LVLNUM_ANY_CACHE (line 1776) | PERF_MEM_LVLNUM_ANY_CACHE = 0xb constant PERF_MEM_LVLNUM_L1 (line 1777) | PERF_MEM_LVLNUM_L1 = 0x1 constant PERF_MEM_LVLNUM_L2 (line 1778) | PERF_MEM_LVLNUM_L2 = 0x2 constant PERF_MEM_LVLNUM_L3 (line 1779) | PERF_MEM_LVLNUM_L3 = 0x3 constant PERF_MEM_LVLNUM_L4 (line 1780) | PERF_MEM_LVLNUM_L4 = 0x4 constant PERF_MEM_LVLNUM_LFB (line 1781) | PERF_MEM_LVLNUM_LFB = 0xc constant PERF_MEM_LVLNUM_NA (line 1782) | PERF_MEM_LVLNUM_NA = 0xf constant PERF_MEM_LVLNUM_PMEM (line 1783) | PERF_MEM_LVLNUM_PMEM = 0xe constant PERF_MEM_LVLNUM_RAM (line 1784) | PERF_MEM_LVLNUM_RAM = 0xd constant PERF_MEM_LVLNUM_SHIFT (line 1785) | PERF_MEM_LVLNUM_SHIFT = 0x21 constant PERF_MEM_LVL_HIT (line 1786) | PERF_MEM_LVL_HIT = 0x2 constant PERF_MEM_LVL_IO (line 1787) | PERF_MEM_LVL_IO = 0x1000 constant PERF_MEM_LVL_L1 (line 1788) | PERF_MEM_LVL_L1 = 0x8 constant PERF_MEM_LVL_L2 (line 1789) | PERF_MEM_LVL_L2 = 0x20 constant PERF_MEM_LVL_L3 (line 1790) | PERF_MEM_LVL_L3 = 0x40 constant PERF_MEM_LVL_LFB (line 1791) | PERF_MEM_LVL_LFB = 0x10 constant PERF_MEM_LVL_LOC_RAM (line 1792) | PERF_MEM_LVL_LOC_RAM = 0x80 constant PERF_MEM_LVL_MISS (line 1793) | PERF_MEM_LVL_MISS = 0x4 constant PERF_MEM_LVL_NA (line 1794) | PERF_MEM_LVL_NA = 0x1 constant PERF_MEM_LVL_REM_CCE1 (line 1795) | PERF_MEM_LVL_REM_CCE1 = 0x400 constant PERF_MEM_LVL_REM_CCE2 (line 1796) | PERF_MEM_LVL_REM_CCE2 = 0x800 constant PERF_MEM_LVL_REM_RAM1 (line 1797) | PERF_MEM_LVL_REM_RAM1 = 0x100 constant PERF_MEM_LVL_REM_RAM2 (line 1798) | PERF_MEM_LVL_REM_RAM2 = 0x200 constant PERF_MEM_LVL_SHIFT (line 1799) | PERF_MEM_LVL_SHIFT = 0x5 constant PERF_MEM_LVL_UNC (line 1800) | PERF_MEM_LVL_UNC = 0x2000 constant PERF_MEM_OP_EXEC (line 1801) | PERF_MEM_OP_EXEC = 0x10 constant PERF_MEM_OP_LOAD (line 1802) | PERF_MEM_OP_LOAD = 0x2 constant PERF_MEM_OP_NA (line 1803) | PERF_MEM_OP_NA = 0x1 constant PERF_MEM_OP_PFETCH (line 1804) | PERF_MEM_OP_PFETCH = 0x8 constant PERF_MEM_OP_SHIFT (line 1805) | PERF_MEM_OP_SHIFT = 0x0 constant PERF_MEM_OP_STORE (line 1806) | PERF_MEM_OP_STORE = 0x4 constant PERF_MEM_REMOTE_REMOTE (line 1807) | PERF_MEM_REMOTE_REMOTE = 0x1 constant PERF_MEM_REMOTE_SHIFT (line 1808) | PERF_MEM_REMOTE_SHIFT = 0x25 constant PERF_MEM_SNOOPX_FWD (line 1809) | PERF_MEM_SNOOPX_FWD = 0x1 constant PERF_MEM_SNOOPX_SHIFT (line 1810) | PERF_MEM_SNOOPX_SHIFT = 0x26 constant PERF_MEM_SNOOP_HIT (line 1811) | PERF_MEM_SNOOP_HIT = 0x4 constant PERF_MEM_SNOOP_HITM (line 1812) | PERF_MEM_SNOOP_HITM = 0x10 constant PERF_MEM_SNOOP_MISS (line 1813) | PERF_MEM_SNOOP_MISS = 0x8 constant PERF_MEM_SNOOP_NA (line 1814) | PERF_MEM_SNOOP_NA = 0x1 constant PERF_MEM_SNOOP_NONE (line 1815) | PERF_MEM_SNOOP_NONE = 0x2 constant PERF_MEM_SNOOP_SHIFT (line 1816) | PERF_MEM_SNOOP_SHIFT = 0x13 constant PERF_MEM_TLB_HIT (line 1817) | PERF_MEM_TLB_HIT = 0x2 constant PERF_MEM_TLB_L1 (line 1818) | PERF_MEM_TLB_L1 = 0x8 constant PERF_MEM_TLB_L2 (line 1819) | PERF_MEM_TLB_L2 = 0x10 constant PERF_MEM_TLB_MISS (line 1820) | PERF_MEM_TLB_MISS = 0x4 constant PERF_MEM_TLB_NA (line 1821) | PERF_MEM_TLB_NA = 0x1 constant PERF_MEM_TLB_OS (line 1822) | PERF_MEM_TLB_OS = 0x40 constant PERF_MEM_TLB_SHIFT (line 1823) | PERF_MEM_TLB_SHIFT = 0x1a constant PERF_MEM_TLB_WK (line 1824) | PERF_MEM_TLB_WK = 0x20 constant PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER (line 1825) | PERF_RECORD_KSYMBOL_FLAGS_UNREGISTER = 0x1 constant PERF_RECORD_MISC_COMM_EXEC (line 1826) | PERF_RECORD_MISC_COMM_EXEC = 0x2000 constant PERF_RECORD_MISC_CPUMODE_MASK (line 1827) | PERF_RECORD_MISC_CPUMODE_MASK = 0x7 constant PERF_RECORD_MISC_CPUMODE_UNKNOWN (line 1828) | PERF_RECORD_MISC_CPUMODE_UNKNOWN = 0x0 constant PERF_RECORD_MISC_EXACT_IP (line 1829) | PERF_RECORD_MISC_EXACT_IP = 0x4000 constant PERF_RECORD_MISC_EXT_RESERVED (line 1830) | PERF_RECORD_MISC_EXT_RESERVED = 0x8000 constant PERF_RECORD_MISC_FORK_EXEC (line 1831) | PERF_RECORD_MISC_FORK_EXEC = 0x2000 constant PERF_RECORD_MISC_GUEST_KERNEL (line 1832) | PERF_RECORD_MISC_GUEST_KERNEL = 0x4 constant PERF_RECORD_MISC_GUEST_USER (line 1833) | PERF_RECORD_MISC_GUEST_USER = 0x5 constant PERF_RECORD_MISC_HYPERVISOR (line 1834) | PERF_RECORD_MISC_HYPERVISOR = 0x3 constant PERF_RECORD_MISC_KERNEL (line 1835) | PERF_RECORD_MISC_KERNEL = 0x1 constant PERF_RECORD_MISC_MMAP_BUILD_ID (line 1836) | PERF_RECORD_MISC_MMAP_BUILD_ID = 0x4000 constant PERF_RECORD_MISC_MMAP_DATA (line 1837) | PERF_RECORD_MISC_MMAP_DATA = 0x2000 constant PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT (line 1838) | PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT = 0x1000 constant PERF_RECORD_MISC_SWITCH_OUT (line 1839) | PERF_RECORD_MISC_SWITCH_OUT = 0x2000 constant PERF_RECORD_MISC_SWITCH_OUT_PREEMPT (line 1840) | PERF_RECORD_MISC_SWITCH_OUT_PREEMPT = 0x4000 constant PERF_RECORD_MISC_USER (line 1841) | PERF_RECORD_MISC_USER = 0x2 constant PERF_SAMPLE_BRANCH_PLM_ALL (line 1842) | PERF_SAMPLE_BRANCH_PLM_ALL = 0x7 constant PERF_SAMPLE_WEIGHT_TYPE (line 1843) | PERF_SAMPLE_WEIGHT_TYPE = 0x1004000 constant PIPEFS_MAGIC (line 1844) | PIPEFS_MAGIC = 0x50495045 constant PPC_CMM_MAGIC (line 1845) | PPC_CMM_MAGIC = 0xc7571590 constant PPPIOCGNPMODE (line 1846) | PPPIOCGNPMODE = 0xc008744c constant PPPIOCNEWUNIT (line 1847) | PPPIOCNEWUNIT = 0xc004743e constant PRIO_PGRP (line 1848) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1849) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1850) | PRIO_USER = 0x2 constant PROC_SUPER_MAGIC (line 1851) | PROC_SUPER_MAGIC = 0x9fa0 constant PROT_EXEC (line 1852) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 1853) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 1854) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 1855) | PROT_NONE = 0x0 constant PROT_READ (line 1856) | PROT_READ = 0x1 constant PROT_WRITE (line 1857) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1858) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1859) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1860) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1861) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1862) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1863) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1864) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1865) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1866) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1867) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1868) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1869) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1870) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1871) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1872) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1873) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1874) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1875) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1876) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1877) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1878) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1879) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1880) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1881) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1882) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1883) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1884) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1885) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1886) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1887) | PR_GET_FP_MODE = 0x2e constant PR_GET_IO_FLUSHER (line 1888) | PR_GET_IO_FLUSHER = 0x3a constant PR_GET_KEEPCAPS (line 1889) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1890) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1891) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1892) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1893) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1894) | PR_GET_SECUREBITS = 0x1b constant PR_GET_SPECULATION_CTRL (line 1895) | PR_GET_SPECULATION_CTRL = 0x34 constant PR_GET_TAGGED_ADDR_CTRL (line 1896) | PR_GET_TAGGED_ADDR_CTRL = 0x38 constant PR_GET_THP_DISABLE (line 1897) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1898) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1899) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1900) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1901) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1902) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1903) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1904) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1905) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1906) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1907) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1908) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1909) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1910) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1911) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_MTE_TAG_MASK (line 1912) | PR_MTE_TAG_MASK = 0x7fff8 constant PR_MTE_TAG_SHIFT (line 1913) | PR_MTE_TAG_SHIFT = 0x3 constant PR_MTE_TCF_ASYNC (line 1914) | PR_MTE_TCF_ASYNC = 0x4 constant PR_MTE_TCF_MASK (line 1915) | PR_MTE_TCF_MASK = 0x6 constant PR_MTE_TCF_NONE (line 1916) | PR_MTE_TCF_NONE = 0x0 constant PR_MTE_TCF_SHIFT (line 1917) | PR_MTE_TCF_SHIFT = 0x1 constant PR_MTE_TCF_SYNC (line 1918) | PR_MTE_TCF_SYNC = 0x2 constant PR_PAC_APDAKEY (line 1919) | PR_PAC_APDAKEY = 0x4 constant PR_PAC_APDBKEY (line 1920) | PR_PAC_APDBKEY = 0x8 constant PR_PAC_APGAKEY (line 1921) | PR_PAC_APGAKEY = 0x10 constant PR_PAC_APIAKEY (line 1922) | PR_PAC_APIAKEY = 0x1 constant PR_PAC_APIBKEY (line 1923) | PR_PAC_APIBKEY = 0x2 constant PR_PAC_RESET_KEYS (line 1924) | PR_PAC_RESET_KEYS = 0x36 constant PR_SET_CHILD_SUBREAPER (line 1925) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1926) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1927) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1928) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1929) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1930) | PR_SET_FP_MODE = 0x2d constant PR_SET_IO_FLUSHER (line 1931) | PR_SET_IO_FLUSHER = 0x39 constant PR_SET_KEEPCAPS (line 1932) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1933) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1934) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1935) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1936) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1937) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1938) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1939) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1940) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1941) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1942) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1943) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1944) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1945) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1946) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1947) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1948) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1949) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1950) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1951) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1952) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_SECCOMP (line 1953) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1954) | PR_SET_SECUREBITS = 0x1c constant PR_SET_SPECULATION_CTRL (line 1955) | PR_SET_SPECULATION_CTRL = 0x35 constant PR_SET_SYSCALL_USER_DISPATCH (line 1956) | PR_SET_SYSCALL_USER_DISPATCH = 0x3b constant PR_SET_TAGGED_ADDR_CTRL (line 1957) | PR_SET_TAGGED_ADDR_CTRL = 0x37 constant PR_SET_THP_DISABLE (line 1958) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1959) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1960) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1961) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1962) | PR_SET_UNALIGN = 0x6 constant PR_SPEC_DISABLE (line 1963) | PR_SPEC_DISABLE = 0x4 constant PR_SPEC_DISABLE_NOEXEC (line 1964) | PR_SPEC_DISABLE_NOEXEC = 0x10 constant PR_SPEC_ENABLE (line 1965) | PR_SPEC_ENABLE = 0x2 constant PR_SPEC_FORCE_DISABLE (line 1966) | PR_SPEC_FORCE_DISABLE = 0x8 constant PR_SPEC_INDIRECT_BRANCH (line 1967) | PR_SPEC_INDIRECT_BRANCH = 0x1 constant PR_SPEC_NOT_AFFECTED (line 1968) | PR_SPEC_NOT_AFFECTED = 0x0 constant PR_SPEC_PRCTL (line 1969) | PR_SPEC_PRCTL = 0x1 constant PR_SPEC_STORE_BYPASS (line 1970) | PR_SPEC_STORE_BYPASS = 0x0 constant PR_SVE_GET_VL (line 1971) | PR_SVE_GET_VL = 0x33 constant PR_SVE_SET_VL (line 1972) | PR_SVE_SET_VL = 0x32 constant PR_SVE_SET_VL_ONEXEC (line 1973) | PR_SVE_SET_VL_ONEXEC = 0x40000 constant PR_SVE_VL_INHERIT (line 1974) | PR_SVE_VL_INHERIT = 0x20000 constant PR_SVE_VL_LEN_MASK (line 1975) | PR_SVE_VL_LEN_MASK = 0xffff constant PR_SYS_DISPATCH_OFF (line 1976) | PR_SYS_DISPATCH_OFF = 0x0 constant PR_SYS_DISPATCH_ON (line 1977) | PR_SYS_DISPATCH_ON = 0x1 constant PR_TAGGED_ADDR_ENABLE (line 1978) | PR_TAGGED_ADDR_ENABLE = 0x1 constant PR_TASK_PERF_EVENTS_DISABLE (line 1979) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1980) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1981) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1982) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1983) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1984) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1985) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1986) | PR_UNALIGN_SIGBUS = 0x2 constant PSTOREFS_MAGIC (line 1987) | PSTOREFS_MAGIC = 0x6165676c constant PTRACE_ATTACH (line 1988) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1989) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1990) | PTRACE_DETACH = 0x11 constant PTRACE_EVENTMSG_SYSCALL_ENTRY (line 1991) | PTRACE_EVENTMSG_SYSCALL_ENTRY = 0x1 constant PTRACE_EVENTMSG_SYSCALL_EXIT (line 1992) | PTRACE_EVENTMSG_SYSCALL_EXIT = 0x2 constant PTRACE_EVENT_CLONE (line 1993) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1994) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1995) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1996) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1997) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1998) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1999) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 2000) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 2001) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETREGS (line 2002) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 2003) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 2004) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 2005) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_SYSCALL_INFO (line 2006) | PTRACE_GET_SYSCALL_INFO = 0x420e constant PTRACE_INTERRUPT (line 2007) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 2008) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 2009) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 2010) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 2011) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 2012) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 2013) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 2014) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 2015) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 2016) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 2017) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 2018) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 2019) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 2020) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 2021) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 2022) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 2023) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 2024) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 2025) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 2026) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 2027) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 2028) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 2029) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SECCOMP_GET_METADATA (line 2030) | PTRACE_SECCOMP_GET_METADATA = 0x420d constant PTRACE_SEIZE (line 2031) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETOPTIONS (line 2032) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 2033) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 2034) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 2035) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 2036) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLESTEP (line 2037) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 2038) | PTRACE_SYSCALL = 0x18 constant PTRACE_SYSCALL_INFO_ENTRY (line 2039) | PTRACE_SYSCALL_INFO_ENTRY = 0x1 constant PTRACE_SYSCALL_INFO_EXIT (line 2040) | PTRACE_SYSCALL_INFO_EXIT = 0x2 constant PTRACE_SYSCALL_INFO_NONE (line 2041) | PTRACE_SYSCALL_INFO_NONE = 0x0 constant PTRACE_SYSCALL_INFO_SECCOMP (line 2042) | PTRACE_SYSCALL_INFO_SECCOMP = 0x3 constant PTRACE_TRACEME (line 2043) | PTRACE_TRACEME = 0x0 constant QNX4_SUPER_MAGIC (line 2044) | QNX4_SUPER_MAGIC = 0x2f constant QNX6_SUPER_MAGIC (line 2045) | QNX6_SUPER_MAGIC = 0x68191122 constant RAMFS_MAGIC (line 2046) | RAMFS_MAGIC = 0x858458f6 constant RAW_PAYLOAD_DIGITAL (line 2047) | RAW_PAYLOAD_DIGITAL = 0x3 constant RAW_PAYLOAD_HCI (line 2048) | RAW_PAYLOAD_HCI = 0x2 constant RAW_PAYLOAD_LLCP (line 2049) | RAW_PAYLOAD_LLCP = 0x0 constant RAW_PAYLOAD_NCI (line 2050) | RAW_PAYLOAD_NCI = 0x1 constant RAW_PAYLOAD_PROPRIETARY (line 2051) | RAW_PAYLOAD_PROPRIETARY = 0x4 constant RDTGROUP_SUPER_MAGIC (line 2052) | RDTGROUP_SUPER_MAGIC = 0x7655821 constant REISERFS_SUPER_MAGIC (line 2053) | REISERFS_SUPER_MAGIC = 0x52654973 constant RENAME_EXCHANGE (line 2054) | RENAME_EXCHANGE = 0x2 constant RENAME_NOREPLACE (line 2055) | RENAME_NOREPLACE = 0x1 constant RENAME_WHITEOUT (line 2056) | RENAME_WHITEOUT = 0x4 constant RLIMIT_CORE (line 2057) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 2058) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 2059) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 2060) | RLIMIT_FSIZE = 0x1 constant RLIMIT_LOCKS (line 2061) | RLIMIT_LOCKS = 0xa constant RLIMIT_MSGQUEUE (line 2062) | RLIMIT_MSGQUEUE = 0xc constant RLIMIT_NICE (line 2063) | RLIMIT_NICE = 0xd constant RLIMIT_RTPRIO (line 2064) | RLIMIT_RTPRIO = 0xe constant RLIMIT_RTTIME (line 2065) | RLIMIT_RTTIME = 0xf constant RLIMIT_SIGPENDING (line 2066) | RLIMIT_SIGPENDING = 0xb constant RLIMIT_STACK (line 2067) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 2068) | RLIM_INFINITY = 0xffffffffffffffff constant RTAX_ADVMSS (line 2069) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 2070) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 2071) | RTAX_CWND = 0x7 constant RTAX_FASTOPEN_NO_COOKIE (line 2072) | RTAX_FASTOPEN_NO_COOKIE = 0x11 constant RTAX_FEATURES (line 2073) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 2074) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 2075) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 2076) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 2077) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 2078) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 2079) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 2080) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 2081) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 2082) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 2083) | RTAX_MAX = 0x11 constant RTAX_MTU (line 2084) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 2085) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 2086) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 2087) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 2088) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 2089) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 2090) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 2091) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 2092) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 2093) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 2094) | RTA_MAX = 0x1e constant RTCF_DIRECTSRC (line 2095) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 2096) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 2097) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 2098) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 2099) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 2100) | RTCF_VALVE = 0x200000 constant RTC_AF (line 2101) | RTC_AF = 0x20 constant RTC_FEATURE_ALARM (line 2102) | RTC_FEATURE_ALARM = 0x0 constant RTC_FEATURE_ALARM_RES_MINUTE (line 2103) | RTC_FEATURE_ALARM_RES_MINUTE = 0x1 constant RTC_FEATURE_CNT (line 2104) | RTC_FEATURE_CNT = 0x3 constant RTC_FEATURE_NEED_WEEK_DAY (line 2105) | RTC_FEATURE_NEED_WEEK_DAY = 0x2 constant RTC_IRQF (line 2106) | RTC_IRQF = 0x80 constant RTC_MAX_FREQ (line 2107) | RTC_MAX_FREQ = 0x2000 constant RTC_PF (line 2108) | RTC_PF = 0x40 constant RTC_UF (line 2109) | RTC_UF = 0x10 constant RTF_ADDRCLASSMASK (line 2110) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 2111) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 2112) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 2113) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 2114) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 2115) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 2116) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 2117) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 2118) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 2119) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 2120) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 2121) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 2122) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 2123) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 2124) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 2125) | RTF_MSS = 0x40 constant RTF_MTU (line 2126) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 2127) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 2128) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 2129) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 2130) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 2131) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 2132) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 2133) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 2134) | RTF_REJECT = 0x200 constant RTF_STATIC (line 2135) | RTF_STATIC = 0x400 constant RTF_THROW (line 2136) | RTF_THROW = 0x2000 constant RTF_UP (line 2137) | RTF_UP = 0x1 constant RTF_WINDOW (line 2138) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 2139) | RTF_XRESOLVE = 0x800 constant RTMGRP_DECnet_IFADDR (line 2140) | RTMGRP_DECnet_IFADDR = 0x1000 constant RTMGRP_DECnet_ROUTE (line 2141) | RTMGRP_DECnet_ROUTE = 0x4000 constant RTMGRP_IPV4_IFADDR (line 2142) | RTMGRP_IPV4_IFADDR = 0x10 constant RTMGRP_IPV4_MROUTE (line 2143) | RTMGRP_IPV4_MROUTE = 0x20 constant RTMGRP_IPV4_ROUTE (line 2144) | RTMGRP_IPV4_ROUTE = 0x40 constant RTMGRP_IPV4_RULE (line 2145) | RTMGRP_IPV4_RULE = 0x80 constant RTMGRP_IPV6_IFADDR (line 2146) | RTMGRP_IPV6_IFADDR = 0x100 constant RTMGRP_IPV6_IFINFO (line 2147) | RTMGRP_IPV6_IFINFO = 0x800 constant RTMGRP_IPV6_MROUTE (line 2148) | RTMGRP_IPV6_MROUTE = 0x200 constant RTMGRP_IPV6_PREFIX (line 2149) | RTMGRP_IPV6_PREFIX = 0x20000 constant RTMGRP_IPV6_ROUTE (line 2150) | RTMGRP_IPV6_ROUTE = 0x400 constant RTMGRP_LINK (line 2151) | RTMGRP_LINK = 0x1 constant RTMGRP_NEIGH (line 2152) | RTMGRP_NEIGH = 0x4 constant RTMGRP_NOTIFY (line 2153) | RTMGRP_NOTIFY = 0x2 constant RTMGRP_TC (line 2154) | RTMGRP_TC = 0x8 constant RTM_BASE (line 2155) | RTM_BASE = 0x10 constant RTM_DELACTION (line 2156) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 2157) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 2158) | RTM_DELADDRLABEL = 0x49 constant RTM_DELCHAIN (line 2159) | RTM_DELCHAIN = 0x65 constant RTM_DELLINK (line 2160) | RTM_DELLINK = 0x11 constant RTM_DELLINKPROP (line 2161) | RTM_DELLINKPROP = 0x6d constant RTM_DELMDB (line 2162) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 2163) | RTM_DELNEIGH = 0x1d constant RTM_DELNETCONF (line 2164) | RTM_DELNETCONF = 0x51 constant RTM_DELNEXTHOP (line 2165) | RTM_DELNEXTHOP = 0x69 constant RTM_DELNSID (line 2166) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 2167) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 2168) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 2169) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 2170) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 2171) | RTM_DELTFILTER = 0x2d constant RTM_DELVLAN (line 2172) | RTM_DELVLAN = 0x71 constant RTM_F_CLONED (line 2173) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 2174) | RTM_F_EQUALIZE = 0x400 constant RTM_F_FIB_MATCH (line 2175) | RTM_F_FIB_MATCH = 0x2000 constant RTM_F_LOOKUP_TABLE (line 2176) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 2177) | RTM_F_NOTIFY = 0x100 constant RTM_F_OFFLOAD (line 2178) | RTM_F_OFFLOAD = 0x4000 constant RTM_F_OFFLOAD_FAILED (line 2179) | RTM_F_OFFLOAD_FAILED = 0x20000000 constant RTM_F_PREFIX (line 2180) | RTM_F_PREFIX = 0x800 constant RTM_F_TRAP (line 2181) | RTM_F_TRAP = 0x8000 constant RTM_GETACTION (line 2182) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 2183) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 2184) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 2185) | RTM_GETANYCAST = 0x3e constant RTM_GETCHAIN (line 2186) | RTM_GETCHAIN = 0x66 constant RTM_GETDCB (line 2187) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 2188) | RTM_GETLINK = 0x12 constant RTM_GETLINKPROP (line 2189) | RTM_GETLINKPROP = 0x6e constant RTM_GETMDB (line 2190) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 2191) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 2192) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 2193) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 2194) | RTM_GETNETCONF = 0x52 constant RTM_GETNEXTHOP (line 2195) | RTM_GETNEXTHOP = 0x6a constant RTM_GETNSID (line 2196) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 2197) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 2198) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 2199) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 2200) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 2201) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 2202) | RTM_GETTFILTER = 0x2e constant RTM_GETVLAN (line 2203) | RTM_GETVLAN = 0x72 constant RTM_MAX (line 2204) | RTM_MAX = 0x73 constant RTM_NEWACTION (line 2205) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 2206) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 2207) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWCACHEREPORT (line 2208) | RTM_NEWCACHEREPORT = 0x60 constant RTM_NEWCHAIN (line 2209) | RTM_NEWCHAIN = 0x64 constant RTM_NEWLINK (line 2210) | RTM_NEWLINK = 0x10 constant RTM_NEWLINKPROP (line 2211) | RTM_NEWLINKPROP = 0x6c constant RTM_NEWMDB (line 2212) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 2213) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 2214) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 2215) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 2216) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNEXTHOP (line 2217) | RTM_NEWNEXTHOP = 0x68 constant RTM_NEWNSID (line 2218) | RTM_NEWNSID = 0x58 constant RTM_NEWNVLAN (line 2219) | RTM_NEWNVLAN = 0x70 constant RTM_NEWPREFIX (line 2220) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 2221) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 2222) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 2223) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 2224) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 2225) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 2226) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 2227) | RTM_NR_FAMILIES = 0x19 constant RTM_NR_MSGTYPES (line 2228) | RTM_NR_MSGTYPES = 0x64 constant RTM_SETDCB (line 2229) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 2230) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 2231) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 2232) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 2233) | RTNH_COMPARE_MASK = 0x59 constant RTNH_F_DEAD (line 2234) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 2235) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 2236) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 2237) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 2238) | RTNH_F_PERVASIVE = 0x2 constant RTNH_F_TRAP (line 2239) | RTNH_F_TRAP = 0x40 constant RTNH_F_UNRESOLVED (line 2240) | RTNH_F_UNRESOLVED = 0x20 constant RTN_MAX (line 2241) | RTN_MAX = 0xb constant RTPROT_BABEL (line 2242) | RTPROT_BABEL = 0x2a constant RTPROT_BGP (line 2243) | RTPROT_BGP = 0xba constant RTPROT_BIRD (line 2244) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 2245) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 2246) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 2247) | RTPROT_DNROUTED = 0xd constant RTPROT_EIGRP (line 2248) | RTPROT_EIGRP = 0xc0 constant RTPROT_GATED (line 2249) | RTPROT_GATED = 0x8 constant RTPROT_ISIS (line 2250) | RTPROT_ISIS = 0xbb constant RTPROT_KEEPALIVED (line 2251) | RTPROT_KEEPALIVED = 0x12 constant RTPROT_KERNEL (line 2252) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 2253) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 2254) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 2255) | RTPROT_NTK = 0xf constant RTPROT_OSPF (line 2256) | RTPROT_OSPF = 0xbc constant RTPROT_RA (line 2257) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 2258) | RTPROT_REDIRECT = 0x1 constant RTPROT_RIP (line 2259) | RTPROT_RIP = 0xbd constant RTPROT_STATIC (line 2260) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 2261) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 2262) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 2263) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 2264) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 2265) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 2266) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 2267) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 2268) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 2269) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 2270) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 2271) | RUSAGE_THREAD = 0x1 constant RWF_APPEND (line 2272) | RWF_APPEND = 0x10 constant RWF_DSYNC (line 2273) | RWF_DSYNC = 0x2 constant RWF_HIPRI (line 2274) | RWF_HIPRI = 0x1 constant RWF_NOWAIT (line 2275) | RWF_NOWAIT = 0x8 constant RWF_SUPPORTED (line 2276) | RWF_SUPPORTED = 0x1f constant RWF_SYNC (line 2277) | RWF_SYNC = 0x4 constant RWF_WRITE_LIFE_NOT_SET (line 2278) | RWF_WRITE_LIFE_NOT_SET = 0x0 constant SCM_CREDENTIALS (line 2279) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 2280) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 2281) | SCM_TIMESTAMP = 0x1d constant SC_LOG_FLUSH (line 2282) | SC_LOG_FLUSH = 0x100000 constant SECCOMP_MODE_DISABLED (line 2283) | SECCOMP_MODE_DISABLED = 0x0 constant SECCOMP_MODE_FILTER (line 2284) | SECCOMP_MODE_FILTER = 0x2 constant SECCOMP_MODE_STRICT (line 2285) | SECCOMP_MODE_STRICT = 0x1 constant SECURITYFS_MAGIC (line 2286) | SECURITYFS_MAGIC = 0x73636673 constant SEEK_CUR (line 2287) | SEEK_CUR = 0x1 constant SEEK_DATA (line 2288) | SEEK_DATA = 0x3 constant SEEK_END (line 2289) | SEEK_END = 0x2 constant SEEK_HOLE (line 2290) | SEEK_HOLE = 0x4 constant SEEK_MAX (line 2291) | SEEK_MAX = 0x4 constant SEEK_SET (line 2292) | SEEK_SET = 0x0 constant SELINUX_MAGIC (line 2293) | SELINUX_MAGIC = 0xf97cff8c constant SHUT_RD (line 2294) | SHUT_RD = 0x0 constant SHUT_RDWR (line 2295) | SHUT_RDWR = 0x2 constant SHUT_WR (line 2296) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 2297) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 2298) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 2299) | SIOCADDRT = 0x890b constant SIOCBONDCHANGEACTIVE (line 2300) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 2301) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 2302) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 2303) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 2304) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 2305) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 2306) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 2307) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 2308) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 2309) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 2310) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 2311) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 2312) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 2313) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 2314) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 2315) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 2316) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 2317) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 2318) | SIOCGARP = 0x8954 constant SIOCGETLINKNAME (line 2319) | SIOCGETLINKNAME = 0x89e0 constant SIOCGETNODEID (line 2320) | SIOCGETNODEID = 0x89e1 constant SIOCGHWTSTAMP (line 2321) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 2322) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 2323) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 2324) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 2325) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 2326) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 2327) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 2328) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 2329) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 2330) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 2331) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 2332) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 2333) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 2334) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 2335) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 2336) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 2337) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 2338) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 2339) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 2340) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 2341) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 2342) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 2343) | SIOCGMIIREG = 0x8948 constant SIOCGPPPCSTATS (line 2344) | SIOCGPPPCSTATS = 0x89f2 constant SIOCGPPPSTATS (line 2345) | SIOCGPPPSTATS = 0x89f0 constant SIOCGPPPVER (line 2346) | SIOCGPPPVER = 0x89f1 constant SIOCGRARP (line 2347) | SIOCGRARP = 0x8961 constant SIOCGSKNS (line 2348) | SIOCGSKNS = 0x894c constant SIOCGSTAMP (line 2349) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 2350) | SIOCGSTAMPNS = 0x8907 constant SIOCGSTAMPNS_OLD (line 2351) | SIOCGSTAMPNS_OLD = 0x8907 constant SIOCGSTAMP_OLD (line 2352) | SIOCGSTAMP_OLD = 0x8906 constant SIOCOUTQNSD (line 2353) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 2354) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 2355) | SIOCRTMSG = 0x890d constant SIOCSARP (line 2356) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 2357) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 2358) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 2359) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 2360) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 2361) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 2362) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 2363) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 2364) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 2365) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 2366) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 2367) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 2368) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 2369) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 2370) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 2371) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 2372) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 2373) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 2374) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 2375) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 2376) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 2377) | SIOCSMIIREG = 0x8949 constant SIOCSRARP (line 2378) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 2379) | SIOCWANDEV = 0x894a constant SMACK_MAGIC (line 2380) | SMACK_MAGIC = 0x43415d53 constant SMART_AUTOSAVE (line 2381) | SMART_AUTOSAVE = 0xd2 constant SMART_AUTO_OFFLINE (line 2382) | SMART_AUTO_OFFLINE = 0xdb constant SMART_DISABLE (line 2383) | SMART_DISABLE = 0xd9 constant SMART_ENABLE (line 2384) | SMART_ENABLE = 0xd8 constant SMART_HCYL_PASS (line 2385) | SMART_HCYL_PASS = 0xc2 constant SMART_IMMEDIATE_OFFLINE (line 2386) | SMART_IMMEDIATE_OFFLINE = 0xd4 constant SMART_LCYL_PASS (line 2387) | SMART_LCYL_PASS = 0x4f constant SMART_READ_LOG_SECTOR (line 2388) | SMART_READ_LOG_SECTOR = 0xd5 constant SMART_READ_THRESHOLDS (line 2389) | SMART_READ_THRESHOLDS = 0xd1 constant SMART_READ_VALUES (line 2390) | SMART_READ_VALUES = 0xd0 constant SMART_SAVE (line 2391) | SMART_SAVE = 0xd3 constant SMART_STATUS (line 2392) | SMART_STATUS = 0xda constant SMART_WRITE_LOG_SECTOR (line 2393) | SMART_WRITE_LOG_SECTOR = 0xd6 constant SMART_WRITE_THRESHOLDS (line 2394) | SMART_WRITE_THRESHOLDS = 0xd7 constant SMB_SUPER_MAGIC (line 2395) | SMB_SUPER_MAGIC = 0x517b constant SOCKFS_MAGIC (line 2396) | SOCKFS_MAGIC = 0x534f434b constant SOCK_DCCP (line 2397) | SOCK_DCCP = 0x6 constant SOCK_IOC_TYPE (line 2398) | SOCK_IOC_TYPE = 0x89 constant SOCK_PACKET (line 2399) | SOCK_PACKET = 0xa constant SOCK_RAW (line 2400) | SOCK_RAW = 0x3 constant SOCK_RDM (line 2401) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 2402) | SOCK_SEQPACKET = 0x5 constant SOL_AAL (line 2403) | SOL_AAL = 0x109 constant SOL_ALG (line 2404) | SOL_ALG = 0x117 constant SOL_ATM (line 2405) | SOL_ATM = 0x108 constant SOL_CAIF (line 2406) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 2407) | SOL_CAN_BASE = 0x64 constant SOL_CAN_RAW (line 2408) | SOL_CAN_RAW = 0x65 constant SOL_DCCP (line 2409) | SOL_DCCP = 0x10d constant SOL_DECNET (line 2410) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 2411) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 2412) | SOL_IP = 0x0 constant SOL_IPV6 (line 2413) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 2414) | SOL_IRDA = 0x10a constant SOL_IUCV (line 2415) | SOL_IUCV = 0x115 constant SOL_KCM (line 2416) | SOL_KCM = 0x119 constant SOL_LLC (line 2417) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 2418) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 2419) | SOL_NETLINK = 0x10e constant SOL_NFC (line 2420) | SOL_NFC = 0x118 constant SOL_PACKET (line 2421) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 2422) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 2423) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 2424) | SOL_RAW = 0xff constant SOL_RDS (line 2425) | SOL_RDS = 0x114 constant SOL_RXRPC (line 2426) | SOL_RXRPC = 0x110 constant SOL_TCP (line 2427) | SOL_TCP = 0x6 constant SOL_TIPC (line 2428) | SOL_TIPC = 0x10f constant SOL_TLS (line 2429) | SOL_TLS = 0x11a constant SOL_X25 (line 2430) | SOL_X25 = 0x106 constant SOL_XDP (line 2431) | SOL_XDP = 0x11b constant SOMAXCONN (line 2432) | SOMAXCONN = 0x1000 constant SO_ATTACH_FILTER (line 2433) | SO_ATTACH_FILTER = 0x1a constant SO_DEBUG (line 2434) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 2435) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 2436) | SO_DETACH_FILTER = 0x1b constant SO_EE_CODE_TXTIME_INVALID_PARAM (line 2437) | SO_EE_CODE_TXTIME_INVALID_PARAM = 0x1 constant SO_EE_CODE_TXTIME_MISSED (line 2438) | SO_EE_CODE_TXTIME_MISSED = 0x2 constant SO_EE_CODE_ZEROCOPY_COPIED (line 2439) | SO_EE_CODE_ZEROCOPY_COPIED = 0x1 constant SO_EE_ORIGIN_ICMP (line 2440) | SO_EE_ORIGIN_ICMP = 0x2 constant SO_EE_ORIGIN_ICMP6 (line 2441) | SO_EE_ORIGIN_ICMP6 = 0x3 constant SO_EE_ORIGIN_LOCAL (line 2442) | SO_EE_ORIGIN_LOCAL = 0x1 constant SO_EE_ORIGIN_NONE (line 2443) | SO_EE_ORIGIN_NONE = 0x0 constant SO_EE_ORIGIN_TIMESTAMPING (line 2444) | SO_EE_ORIGIN_TIMESTAMPING = 0x4 constant SO_EE_ORIGIN_TXSTATUS (line 2445) | SO_EE_ORIGIN_TXSTATUS = 0x4 constant SO_EE_ORIGIN_TXTIME (line 2446) | SO_EE_ORIGIN_TXTIME = 0x6 constant SO_EE_ORIGIN_ZEROCOPY (line 2447) | SO_EE_ORIGIN_ZEROCOPY = 0x5 constant SO_EE_RFC4884_FLAG_INVALID (line 2448) | SO_EE_RFC4884_FLAG_INVALID = 0x1 constant SO_GET_FILTER (line 2449) | SO_GET_FILTER = 0x1a constant SO_NO_CHECK (line 2450) | SO_NO_CHECK = 0xb constant SO_PEERNAME (line 2451) | SO_PEERNAME = 0x1c constant SO_PRIORITY (line 2452) | SO_PRIORITY = 0xc constant SO_TIMESTAMP (line 2453) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMP_OLD (line 2454) | SO_TIMESTAMP_OLD = 0x1d constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 2455) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 2456) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 2457) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 2458) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 2459) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 2460) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 2461) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SPLICE_F_GIFT (line 2462) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 2463) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 2464) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 2465) | SPLICE_F_NONBLOCK = 0x2 constant SQUASHFS_MAGIC (line 2466) | SQUASHFS_MAGIC = 0x73717368 constant STACK_END_MAGIC (line 2467) | STACK_END_MAGIC = 0x57ac6e9d constant STATX_ALL (line 2468) | STATX_ALL = 0xfff constant STATX_ATIME (line 2469) | STATX_ATIME = 0x20 constant STATX_ATTR_APPEND (line 2470) | STATX_ATTR_APPEND = 0x20 constant STATX_ATTR_AUTOMOUNT (line 2471) | STATX_ATTR_AUTOMOUNT = 0x1000 constant STATX_ATTR_COMPRESSED (line 2472) | STATX_ATTR_COMPRESSED = 0x4 constant STATX_ATTR_DAX (line 2473) | STATX_ATTR_DAX = 0x200000 constant STATX_ATTR_ENCRYPTED (line 2474) | STATX_ATTR_ENCRYPTED = 0x800 constant STATX_ATTR_IMMUTABLE (line 2475) | STATX_ATTR_IMMUTABLE = 0x10 constant STATX_ATTR_MOUNT_ROOT (line 2476) | STATX_ATTR_MOUNT_ROOT = 0x2000 constant STATX_ATTR_NODUMP (line 2477) | STATX_ATTR_NODUMP = 0x40 constant STATX_ATTR_VERITY (line 2478) | STATX_ATTR_VERITY = 0x100000 constant STATX_BASIC_STATS (line 2479) | STATX_BASIC_STATS = 0x7ff constant STATX_BLOCKS (line 2480) | STATX_BLOCKS = 0x400 constant STATX_BTIME (line 2481) | STATX_BTIME = 0x800 constant STATX_CTIME (line 2482) | STATX_CTIME = 0x80 constant STATX_GID (line 2483) | STATX_GID = 0x10 constant STATX_INO (line 2484) | STATX_INO = 0x100 constant STATX_MNT_ID (line 2485) | STATX_MNT_ID = 0x1000 constant STATX_MODE (line 2486) | STATX_MODE = 0x2 constant STATX_MTIME (line 2487) | STATX_MTIME = 0x40 constant STATX_NLINK (line 2488) | STATX_NLINK = 0x4 constant STATX_SIZE (line 2489) | STATX_SIZE = 0x200 constant STATX_TYPE (line 2490) | STATX_TYPE = 0x1 constant STATX_UID (line 2491) | STATX_UID = 0x8 constant STATX__RESERVED (line 2492) | STATX__RESERVED = 0x80000000 constant SYNC_FILE_RANGE_WAIT_AFTER (line 2493) | SYNC_FILE_RANGE_WAIT_AFTER = 0x4 constant SYNC_FILE_RANGE_WAIT_BEFORE (line 2494) | SYNC_FILE_RANGE_WAIT_BEFORE = 0x1 constant SYNC_FILE_RANGE_WRITE (line 2495) | SYNC_FILE_RANGE_WRITE = 0x2 constant SYNC_FILE_RANGE_WRITE_AND_WAIT (line 2496) | SYNC_FILE_RANGE_WRITE_AND_WAIT = 0x7 constant SYSFS_MAGIC (line 2497) | SYSFS_MAGIC = 0x62656572 constant S_BLKSIZE (line 2498) | S_BLKSIZE = 0x200 constant S_IEXEC (line 2499) | S_IEXEC = 0x40 constant S_IFBLK (line 2500) | S_IFBLK = 0x6000 constant S_IFCHR (line 2501) | S_IFCHR = 0x2000 constant S_IFDIR (line 2502) | S_IFDIR = 0x4000 constant S_IFIFO (line 2503) | S_IFIFO = 0x1000 constant S_IFLNK (line 2504) | S_IFLNK = 0xa000 constant S_IFMT (line 2505) | S_IFMT = 0xf000 constant S_IFREG (line 2506) | S_IFREG = 0x8000 constant S_IFSOCK (line 2507) | S_IFSOCK = 0xc000 constant S_IREAD (line 2508) | S_IREAD = 0x100 constant S_IRGRP (line 2509) | S_IRGRP = 0x20 constant S_IROTH (line 2510) | S_IROTH = 0x4 constant S_IRUSR (line 2511) | S_IRUSR = 0x100 constant S_IRWXG (line 2512) | S_IRWXG = 0x38 constant S_IRWXO (line 2513) | S_IRWXO = 0x7 constant S_IRWXU (line 2514) | S_IRWXU = 0x1c0 constant S_ISGID (line 2515) | S_ISGID = 0x400 constant S_ISUID (line 2516) | S_ISUID = 0x800 constant S_ISVTX (line 2517) | S_ISVTX = 0x200 constant S_IWGRP (line 2518) | S_IWGRP = 0x10 constant S_IWOTH (line 2519) | S_IWOTH = 0x2 constant S_IWRITE (line 2520) | S_IWRITE = 0x80 constant S_IWUSR (line 2521) | S_IWUSR = 0x80 constant S_IXGRP (line 2522) | S_IXGRP = 0x8 constant S_IXOTH (line 2523) | S_IXOTH = 0x1 constant S_IXUSR (line 2524) | S_IXUSR = 0x40 constant TAB0 (line 2525) | TAB0 = 0x0 constant TASKSTATS_CMD_ATTR_MAX (line 2526) | TASKSTATS_CMD_ATTR_MAX = 0x4 constant TASKSTATS_CMD_MAX (line 2527) | TASKSTATS_CMD_MAX = 0x2 constant TASKSTATS_GENL_NAME (line 2528) | TASKSTATS_GENL_NAME = "TASKSTATS" constant TASKSTATS_GENL_VERSION (line 2529) | TASKSTATS_GENL_VERSION = 0x1 constant TASKSTATS_TYPE_MAX (line 2530) | TASKSTATS_TYPE_MAX = 0x6 constant TASKSTATS_VERSION (line 2531) | TASKSTATS_VERSION = 0xa constant TCIFLUSH (line 2532) | TCIFLUSH = 0x0 constant TCIOFF (line 2533) | TCIOFF = 0x2 constant TCIOFLUSH (line 2534) | TCIOFLUSH = 0x2 constant TCION (line 2535) | TCION = 0x3 constant TCOFLUSH (line 2536) | TCOFLUSH = 0x1 constant TCOOFF (line 2537) | TCOOFF = 0x0 constant TCOON (line 2538) | TCOON = 0x1 constant TCP_CC_INFO (line 2539) | TCP_CC_INFO = 0x1a constant TCP_CM_INQ (line 2540) | TCP_CM_INQ = 0x24 constant TCP_CONGESTION (line 2541) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 2542) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 2543) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 2544) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 2545) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 2546) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 2547) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 2548) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 2549) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 2550) | TCP_FASTOPEN = 0x17 constant TCP_FASTOPEN_CONNECT (line 2551) | TCP_FASTOPEN_CONNECT = 0x1e constant TCP_FASTOPEN_KEY (line 2552) | TCP_FASTOPEN_KEY = 0x21 constant TCP_FASTOPEN_NO_COOKIE (line 2553) | TCP_FASTOPEN_NO_COOKIE = 0x22 constant TCP_INFO (line 2554) | TCP_INFO = 0xb constant TCP_INQ (line 2555) | TCP_INQ = 0x24 constant TCP_KEEPCNT (line 2556) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 2557) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 2558) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 2559) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 2560) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 2561) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 2562) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 2563) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_EXT (line 2564) | TCP_MD5SIG_EXT = 0x20 constant TCP_MD5SIG_FLAG_PREFIX (line 2565) | TCP_MD5SIG_FLAG_PREFIX = 0x1 constant TCP_MD5SIG_MAXKEYLEN (line 2566) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 2567) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 2568) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 2569) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 2570) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 2571) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 2572) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 2573) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 2574) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OFF (line 2575) | TCP_REPAIR_OFF = 0x0 constant TCP_REPAIR_OFF_NO_WP (line 2576) | TCP_REPAIR_OFF_NO_WP = -0x1 constant TCP_REPAIR_ON (line 2577) | TCP_REPAIR_ON = 0x1 constant TCP_REPAIR_OPTIONS (line 2578) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 2579) | TCP_REPAIR_QUEUE = 0x14 constant TCP_REPAIR_WINDOW (line 2580) | TCP_REPAIR_WINDOW = 0x1d constant TCP_SAVED_SYN (line 2581) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 2582) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 2583) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 2584) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 2585) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 2586) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 2587) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 2588) | TCP_TIMESTAMP = 0x18 constant TCP_TX_DELAY (line 2589) | TCP_TX_DELAY = 0x25 constant TCP_ULP (line 2590) | TCP_ULP = 0x1f constant TCP_USER_TIMEOUT (line 2591) | TCP_USER_TIMEOUT = 0x12 constant TCP_V4_FLOW (line 2592) | TCP_V4_FLOW = 0x1 constant TCP_V6_FLOW (line 2593) | TCP_V6_FLOW = 0x5 constant TCP_WINDOW_CLAMP (line 2594) | TCP_WINDOW_CLAMP = 0xa constant TCP_ZEROCOPY_RECEIVE (line 2595) | TCP_ZEROCOPY_RECEIVE = 0x23 constant TFD_TIMER_ABSTIME (line 2596) | TFD_TIMER_ABSTIME = 0x1 constant TFD_TIMER_CANCEL_ON_SET (line 2597) | TFD_TIMER_CANCEL_ON_SET = 0x2 constant TIMER_ABSTIME (line 2598) | TIMER_ABSTIME = 0x1 constant TIOCM_DTR (line 2599) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 2600) | TIOCM_LE = 0x1 constant TIOCM_RTS (line 2601) | TIOCM_RTS = 0x4 constant TIOCPKT_DATA (line 2602) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 2603) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 2604) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 2605) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 2606) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 2607) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 2608) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 2609) | TIOCPKT_STOP = 0x4 constant TIPC_ADDR_ID (line 2610) | TIPC_ADDR_ID = 0x3 constant TIPC_ADDR_MCAST (line 2611) | TIPC_ADDR_MCAST = 0x1 constant TIPC_ADDR_NAME (line 2612) | TIPC_ADDR_NAME = 0x2 constant TIPC_ADDR_NAMESEQ (line 2613) | TIPC_ADDR_NAMESEQ = 0x1 constant TIPC_AEAD_ALG_NAME (line 2614) | TIPC_AEAD_ALG_NAME = 0x20 constant TIPC_AEAD_KEYLEN_MAX (line 2615) | TIPC_AEAD_KEYLEN_MAX = 0x24 constant TIPC_AEAD_KEYLEN_MIN (line 2616) | TIPC_AEAD_KEYLEN_MIN = 0x14 constant TIPC_AEAD_KEY_SIZE_MAX (line 2617) | TIPC_AEAD_KEY_SIZE_MAX = 0x48 constant TIPC_CFG_SRV (line 2618) | TIPC_CFG_SRV = 0x0 constant TIPC_CLUSTER_BITS (line 2619) | TIPC_CLUSTER_BITS = 0xc constant TIPC_CLUSTER_MASK (line 2620) | TIPC_CLUSTER_MASK = 0xfff000 constant TIPC_CLUSTER_OFFSET (line 2621) | TIPC_CLUSTER_OFFSET = 0xc constant TIPC_CLUSTER_SIZE (line 2622) | TIPC_CLUSTER_SIZE = 0xfff constant TIPC_CONN_SHUTDOWN (line 2623) | TIPC_CONN_SHUTDOWN = 0x5 constant TIPC_CONN_TIMEOUT (line 2624) | TIPC_CONN_TIMEOUT = 0x82 constant TIPC_CRITICAL_IMPORTANCE (line 2625) | TIPC_CRITICAL_IMPORTANCE = 0x3 constant TIPC_DESTNAME (line 2626) | TIPC_DESTNAME = 0x3 constant TIPC_DEST_DROPPABLE (line 2627) | TIPC_DEST_DROPPABLE = 0x81 constant TIPC_ERRINFO (line 2628) | TIPC_ERRINFO = 0x1 constant TIPC_ERR_NO_NAME (line 2629) | TIPC_ERR_NO_NAME = 0x1 constant TIPC_ERR_NO_NODE (line 2630) | TIPC_ERR_NO_NODE = 0x3 constant TIPC_ERR_NO_PORT (line 2631) | TIPC_ERR_NO_PORT = 0x2 constant TIPC_ERR_OVERLOAD (line 2632) | TIPC_ERR_OVERLOAD = 0x4 constant TIPC_GROUP_JOIN (line 2633) | TIPC_GROUP_JOIN = 0x87 constant TIPC_GROUP_LEAVE (line 2634) | TIPC_GROUP_LEAVE = 0x88 constant TIPC_GROUP_LOOPBACK (line 2635) | TIPC_GROUP_LOOPBACK = 0x1 constant TIPC_GROUP_MEMBER_EVTS (line 2636) | TIPC_GROUP_MEMBER_EVTS = 0x2 constant TIPC_HIGH_IMPORTANCE (line 2637) | TIPC_HIGH_IMPORTANCE = 0x2 constant TIPC_IMPORTANCE (line 2638) | TIPC_IMPORTANCE = 0x7f constant TIPC_LINK_STATE (line 2639) | TIPC_LINK_STATE = 0x2 constant TIPC_LOW_IMPORTANCE (line 2640) | TIPC_LOW_IMPORTANCE = 0x0 constant TIPC_MAX_BEARER_NAME (line 2641) | TIPC_MAX_BEARER_NAME = 0x20 constant TIPC_MAX_IF_NAME (line 2642) | TIPC_MAX_IF_NAME = 0x10 constant TIPC_MAX_LINK_NAME (line 2643) | TIPC_MAX_LINK_NAME = 0x44 constant TIPC_MAX_MEDIA_NAME (line 2644) | TIPC_MAX_MEDIA_NAME = 0x10 constant TIPC_MAX_USER_MSG_SIZE (line 2645) | TIPC_MAX_USER_MSG_SIZE = 0x101d0 constant TIPC_MCAST_BROADCAST (line 2646) | TIPC_MCAST_BROADCAST = 0x85 constant TIPC_MCAST_REPLICAST (line 2647) | TIPC_MCAST_REPLICAST = 0x86 constant TIPC_MEDIUM_IMPORTANCE (line 2648) | TIPC_MEDIUM_IMPORTANCE = 0x1 constant TIPC_NODEID_LEN (line 2649) | TIPC_NODEID_LEN = 0x10 constant TIPC_NODELAY (line 2650) | TIPC_NODELAY = 0x8a constant TIPC_NODE_BITS (line 2651) | TIPC_NODE_BITS = 0xc constant TIPC_NODE_MASK (line 2652) | TIPC_NODE_MASK = 0xfff constant TIPC_NODE_OFFSET (line 2653) | TIPC_NODE_OFFSET = 0x0 constant TIPC_NODE_RECVQ_DEPTH (line 2654) | TIPC_NODE_RECVQ_DEPTH = 0x83 constant TIPC_NODE_SIZE (line 2655) | TIPC_NODE_SIZE = 0xfff constant TIPC_NODE_STATE (line 2656) | TIPC_NODE_STATE = 0x0 constant TIPC_OK (line 2657) | TIPC_OK = 0x0 constant TIPC_PUBLISHED (line 2658) | TIPC_PUBLISHED = 0x1 constant TIPC_REKEYING_NOW (line 2659) | TIPC_REKEYING_NOW = 0xffffffff constant TIPC_RESERVED_TYPES (line 2660) | TIPC_RESERVED_TYPES = 0x40 constant TIPC_RETDATA (line 2661) | TIPC_RETDATA = 0x2 constant TIPC_SERVICE_ADDR (line 2662) | TIPC_SERVICE_ADDR = 0x2 constant TIPC_SERVICE_RANGE (line 2663) | TIPC_SERVICE_RANGE = 0x1 constant TIPC_SOCKET_ADDR (line 2664) | TIPC_SOCKET_ADDR = 0x3 constant TIPC_SOCK_RECVQ_DEPTH (line 2665) | TIPC_SOCK_RECVQ_DEPTH = 0x84 constant TIPC_SOCK_RECVQ_USED (line 2666) | TIPC_SOCK_RECVQ_USED = 0x89 constant TIPC_SRC_DROPPABLE (line 2667) | TIPC_SRC_DROPPABLE = 0x80 constant TIPC_SUBSCR_TIMEOUT (line 2668) | TIPC_SUBSCR_TIMEOUT = 0x3 constant TIPC_SUB_CANCEL (line 2669) | TIPC_SUB_CANCEL = 0x4 constant TIPC_SUB_PORTS (line 2670) | TIPC_SUB_PORTS = 0x1 constant TIPC_SUB_SERVICE (line 2671) | TIPC_SUB_SERVICE = 0x2 constant TIPC_TOP_SRV (line 2672) | TIPC_TOP_SRV = 0x1 constant TIPC_WAIT_FOREVER (line 2673) | TIPC_WAIT_FOREVER = 0xffffffff constant TIPC_WITHDRAWN (line 2674) | TIPC_WITHDRAWN = 0x2 constant TIPC_ZONE_BITS (line 2675) | TIPC_ZONE_BITS = 0x8 constant TIPC_ZONE_CLUSTER_MASK (line 2676) | TIPC_ZONE_CLUSTER_MASK = 0xfffff000 constant TIPC_ZONE_MASK (line 2677) | TIPC_ZONE_MASK = 0xff000000 constant TIPC_ZONE_OFFSET (line 2678) | TIPC_ZONE_OFFSET = 0x18 constant TIPC_ZONE_SCOPE (line 2679) | TIPC_ZONE_SCOPE = 0x1 constant TIPC_ZONE_SIZE (line 2680) | TIPC_ZONE_SIZE = 0xff constant TMPFS_MAGIC (line 2681) | TMPFS_MAGIC = 0x1021994 constant TPACKET_ALIGNMENT (line 2682) | TPACKET_ALIGNMENT = 0x10 constant TPACKET_HDRLEN (line 2683) | TPACKET_HDRLEN = 0x34 constant TP_STATUS_AVAILABLE (line 2684) | TP_STATUS_AVAILABLE = 0x0 constant TP_STATUS_BLK_TMO (line 2685) | TP_STATUS_BLK_TMO = 0x20 constant TP_STATUS_COPY (line 2686) | TP_STATUS_COPY = 0x2 constant TP_STATUS_CSUMNOTREADY (line 2687) | TP_STATUS_CSUMNOTREADY = 0x8 constant TP_STATUS_CSUM_VALID (line 2688) | TP_STATUS_CSUM_VALID = 0x80 constant TP_STATUS_KERNEL (line 2689) | TP_STATUS_KERNEL = 0x0 constant TP_STATUS_LOSING (line 2690) | TP_STATUS_LOSING = 0x4 constant TP_STATUS_SENDING (line 2691) | TP_STATUS_SENDING = 0x2 constant TP_STATUS_SEND_REQUEST (line 2692) | TP_STATUS_SEND_REQUEST = 0x1 constant TP_STATUS_TS_RAW_HARDWARE (line 2693) | TP_STATUS_TS_RAW_HARDWARE = 0x80000000 constant TP_STATUS_TS_SOFTWARE (line 2694) | TP_STATUS_TS_SOFTWARE = 0x20000000 constant TP_STATUS_TS_SYS_HARDWARE (line 2695) | TP_STATUS_TS_SYS_HARDWARE = 0x40000000 constant TP_STATUS_USER (line 2696) | TP_STATUS_USER = 0x1 constant TP_STATUS_VLAN_TPID_VALID (line 2697) | TP_STATUS_VLAN_TPID_VALID = 0x40 constant TP_STATUS_VLAN_VALID (line 2698) | TP_STATUS_VLAN_VALID = 0x10 constant TP_STATUS_WRONG_FORMAT (line 2699) | TP_STATUS_WRONG_FORMAT = 0x4 constant TRACEFS_MAGIC (line 2700) | TRACEFS_MAGIC = 0x74726163 constant TS_COMM_LEN (line 2701) | TS_COMM_LEN = 0x20 constant UDF_SUPER_MAGIC (line 2702) | UDF_SUPER_MAGIC = 0x15013346 constant UMOUNT_NOFOLLOW (line 2703) | UMOUNT_NOFOLLOW = 0x8 constant USBDEVICE_SUPER_MAGIC (line 2704) | USBDEVICE_SUPER_MAGIC = 0x9fa2 constant UTIME_NOW (line 2705) | UTIME_NOW = 0x3fffffff constant UTIME_OMIT (line 2706) | UTIME_OMIT = 0x3ffffffe constant V9FS_MAGIC (line 2707) | V9FS_MAGIC = 0x1021997 constant VERASE (line 2708) | VERASE = 0x2 constant VINTR (line 2709) | VINTR = 0x0 constant VKILL (line 2710) | VKILL = 0x3 constant VLNEXT (line 2711) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 2712) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 2713) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 2714) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_LOCAL (line 2715) | VMADDR_CID_LOCAL = 0x1 constant VMADDR_FLAG_TO_HOST (line 2716) | VMADDR_FLAG_TO_HOST = 0x1 constant VMADDR_PORT_ANY (line 2717) | VMADDR_PORT_ANY = 0xffffffff constant VM_SOCKETS_INVALID_VERSION (line 2718) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 2719) | VQUIT = 0x1 constant VT0 (line 2720) | VT0 = 0x0 constant WAKE_MAGIC (line 2721) | WAKE_MAGIC = 0x20 constant WALL (line 2722) | WALL = 0x40000000 constant WCLONE (line 2723) | WCLONE = 0x80000000 constant WCONTINUED (line 2724) | WCONTINUED = 0x8 constant WDIOC_SETPRETIMEOUT (line 2725) | WDIOC_SETPRETIMEOUT = 0xc0045708 constant WDIOC_SETTIMEOUT (line 2726) | WDIOC_SETTIMEOUT = 0xc0045706 constant WDIOF_ALARMONLY (line 2727) | WDIOF_ALARMONLY = 0x400 constant WDIOF_CARDRESET (line 2728) | WDIOF_CARDRESET = 0x20 constant WDIOF_EXTERN1 (line 2729) | WDIOF_EXTERN1 = 0x4 constant WDIOF_EXTERN2 (line 2730) | WDIOF_EXTERN2 = 0x8 constant WDIOF_FANFAULT (line 2731) | WDIOF_FANFAULT = 0x2 constant WDIOF_KEEPALIVEPING (line 2732) | WDIOF_KEEPALIVEPING = 0x8000 constant WDIOF_MAGICCLOSE (line 2733) | WDIOF_MAGICCLOSE = 0x100 constant WDIOF_OVERHEAT (line 2734) | WDIOF_OVERHEAT = 0x1 constant WDIOF_POWEROVER (line 2735) | WDIOF_POWEROVER = 0x40 constant WDIOF_POWERUNDER (line 2736) | WDIOF_POWERUNDER = 0x10 constant WDIOF_PRETIMEOUT (line 2737) | WDIOF_PRETIMEOUT = 0x200 constant WDIOF_SETTIMEOUT (line 2738) | WDIOF_SETTIMEOUT = 0x80 constant WDIOF_UNKNOWN (line 2739) | WDIOF_UNKNOWN = -0x1 constant WDIOS_DISABLECARD (line 2740) | WDIOS_DISABLECARD = 0x1 constant WDIOS_ENABLECARD (line 2741) | WDIOS_ENABLECARD = 0x2 constant WDIOS_TEMPPANIC (line 2742) | WDIOS_TEMPPANIC = 0x4 constant WDIOS_UNKNOWN (line 2743) | WDIOS_UNKNOWN = -0x1 constant WEXITED (line 2744) | WEXITED = 0x4 constant WIN_ACKMEDIACHANGE (line 2745) | WIN_ACKMEDIACHANGE = 0xdb constant WIN_CHECKPOWERMODE1 (line 2746) | WIN_CHECKPOWERMODE1 = 0xe5 constant WIN_CHECKPOWERMODE2 (line 2747) | WIN_CHECKPOWERMODE2 = 0x98 constant WIN_DEVICE_RESET (line 2748) | WIN_DEVICE_RESET = 0x8 constant WIN_DIAGNOSE (line 2749) | WIN_DIAGNOSE = 0x90 constant WIN_DOORLOCK (line 2750) | WIN_DOORLOCK = 0xde constant WIN_DOORUNLOCK (line 2751) | WIN_DOORUNLOCK = 0xdf constant WIN_DOWNLOAD_MICROCODE (line 2752) | WIN_DOWNLOAD_MICROCODE = 0x92 constant WIN_FLUSH_CACHE (line 2753) | WIN_FLUSH_CACHE = 0xe7 constant WIN_FLUSH_CACHE_EXT (line 2754) | WIN_FLUSH_CACHE_EXT = 0xea constant WIN_FORMAT (line 2755) | WIN_FORMAT = 0x50 constant WIN_GETMEDIASTATUS (line 2756) | WIN_GETMEDIASTATUS = 0xda constant WIN_IDENTIFY (line 2757) | WIN_IDENTIFY = 0xec constant WIN_IDENTIFY_DMA (line 2758) | WIN_IDENTIFY_DMA = 0xee constant WIN_IDLEIMMEDIATE (line 2759) | WIN_IDLEIMMEDIATE = 0xe1 constant WIN_INIT (line 2760) | WIN_INIT = 0x60 constant WIN_MEDIAEJECT (line 2761) | WIN_MEDIAEJECT = 0xed constant WIN_MULTREAD (line 2762) | WIN_MULTREAD = 0xc4 constant WIN_MULTREAD_EXT (line 2763) | WIN_MULTREAD_EXT = 0x29 constant WIN_MULTWRITE (line 2764) | WIN_MULTWRITE = 0xc5 constant WIN_MULTWRITE_EXT (line 2765) | WIN_MULTWRITE_EXT = 0x39 constant WIN_NOP (line 2766) | WIN_NOP = 0x0 constant WIN_PACKETCMD (line 2767) | WIN_PACKETCMD = 0xa0 constant WIN_PIDENTIFY (line 2768) | WIN_PIDENTIFY = 0xa1 constant WIN_POSTBOOT (line 2769) | WIN_POSTBOOT = 0xdc constant WIN_PREBOOT (line 2770) | WIN_PREBOOT = 0xdd constant WIN_QUEUED_SERVICE (line 2771) | WIN_QUEUED_SERVICE = 0xa2 constant WIN_READ (line 2772) | WIN_READ = 0x20 constant WIN_READDMA (line 2773) | WIN_READDMA = 0xc8 constant WIN_READDMA_EXT (line 2774) | WIN_READDMA_EXT = 0x25 constant WIN_READDMA_ONCE (line 2775) | WIN_READDMA_ONCE = 0xc9 constant WIN_READDMA_QUEUED (line 2776) | WIN_READDMA_QUEUED = 0xc7 constant WIN_READDMA_QUEUED_EXT (line 2777) | WIN_READDMA_QUEUED_EXT = 0x26 constant WIN_READ_BUFFER (line 2778) | WIN_READ_BUFFER = 0xe4 constant WIN_READ_EXT (line 2779) | WIN_READ_EXT = 0x24 constant WIN_READ_LONG (line 2780) | WIN_READ_LONG = 0x22 constant WIN_READ_LONG_ONCE (line 2781) | WIN_READ_LONG_ONCE = 0x23 constant WIN_READ_NATIVE_MAX (line 2782) | WIN_READ_NATIVE_MAX = 0xf8 constant WIN_READ_NATIVE_MAX_EXT (line 2783) | WIN_READ_NATIVE_MAX_EXT = 0x27 constant WIN_READ_ONCE (line 2784) | WIN_READ_ONCE = 0x21 constant WIN_RECAL (line 2785) | WIN_RECAL = 0x10 constant WIN_RESTORE (line 2786) | WIN_RESTORE = 0x10 constant WIN_SECURITY_DISABLE (line 2787) | WIN_SECURITY_DISABLE = 0xf6 constant WIN_SECURITY_ERASE_PREPARE (line 2788) | WIN_SECURITY_ERASE_PREPARE = 0xf3 constant WIN_SECURITY_ERASE_UNIT (line 2789) | WIN_SECURITY_ERASE_UNIT = 0xf4 constant WIN_SECURITY_FREEZE_LOCK (line 2790) | WIN_SECURITY_FREEZE_LOCK = 0xf5 constant WIN_SECURITY_SET_PASS (line 2791) | WIN_SECURITY_SET_PASS = 0xf1 constant WIN_SECURITY_UNLOCK (line 2792) | WIN_SECURITY_UNLOCK = 0xf2 constant WIN_SEEK (line 2793) | WIN_SEEK = 0x70 constant WIN_SETFEATURES (line 2794) | WIN_SETFEATURES = 0xef constant WIN_SETIDLE1 (line 2795) | WIN_SETIDLE1 = 0xe3 constant WIN_SETIDLE2 (line 2796) | WIN_SETIDLE2 = 0x97 constant WIN_SETMULT (line 2797) | WIN_SETMULT = 0xc6 constant WIN_SET_MAX (line 2798) | WIN_SET_MAX = 0xf9 constant WIN_SET_MAX_EXT (line 2799) | WIN_SET_MAX_EXT = 0x37 constant WIN_SLEEPNOW1 (line 2800) | WIN_SLEEPNOW1 = 0xe6 constant WIN_SLEEPNOW2 (line 2801) | WIN_SLEEPNOW2 = 0x99 constant WIN_SMART (line 2802) | WIN_SMART = 0xb0 constant WIN_SPECIFY (line 2803) | WIN_SPECIFY = 0x91 constant WIN_SRST (line 2804) | WIN_SRST = 0x8 constant WIN_STANDBY (line 2805) | WIN_STANDBY = 0xe2 constant WIN_STANDBY2 (line 2806) | WIN_STANDBY2 = 0x96 constant WIN_STANDBYNOW1 (line 2807) | WIN_STANDBYNOW1 = 0xe0 constant WIN_STANDBYNOW2 (line 2808) | WIN_STANDBYNOW2 = 0x94 constant WIN_VERIFY (line 2809) | WIN_VERIFY = 0x40 constant WIN_VERIFY_EXT (line 2810) | WIN_VERIFY_EXT = 0x42 constant WIN_VERIFY_ONCE (line 2811) | WIN_VERIFY_ONCE = 0x41 constant WIN_WRITE (line 2812) | WIN_WRITE = 0x30 constant WIN_WRITEDMA (line 2813) | WIN_WRITEDMA = 0xca constant WIN_WRITEDMA_EXT (line 2814) | WIN_WRITEDMA_EXT = 0x35 constant WIN_WRITEDMA_ONCE (line 2815) | WIN_WRITEDMA_ONCE = 0xcb constant WIN_WRITEDMA_QUEUED (line 2816) | WIN_WRITEDMA_QUEUED = 0xcc constant WIN_WRITEDMA_QUEUED_EXT (line 2817) | WIN_WRITEDMA_QUEUED_EXT = 0x36 constant WIN_WRITE_BUFFER (line 2818) | WIN_WRITE_BUFFER = 0xe8 constant WIN_WRITE_EXT (line 2819) | WIN_WRITE_EXT = 0x34 constant WIN_WRITE_LONG (line 2820) | WIN_WRITE_LONG = 0x32 constant WIN_WRITE_LONG_ONCE (line 2821) | WIN_WRITE_LONG_ONCE = 0x33 constant WIN_WRITE_ONCE (line 2822) | WIN_WRITE_ONCE = 0x31 constant WIN_WRITE_SAME (line 2823) | WIN_WRITE_SAME = 0xe9 constant WIN_WRITE_VERIFY (line 2824) | WIN_WRITE_VERIFY = 0x3c constant WNOHANG (line 2825) | WNOHANG = 0x1 constant WNOTHREAD (line 2826) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 2827) | WNOWAIT = 0x1000000 constant WSTOPPED (line 2828) | WSTOPPED = 0x2 constant WUNTRACED (line 2829) | WUNTRACED = 0x2 constant XATTR_CREATE (line 2830) | XATTR_CREATE = 0x1 constant XATTR_REPLACE (line 2831) | XATTR_REPLACE = 0x2 constant XDP_COPY (line 2832) | XDP_COPY = 0x2 constant XDP_FLAGS_DRV_MODE (line 2833) | XDP_FLAGS_DRV_MODE = 0x4 constant XDP_FLAGS_HW_MODE (line 2834) | XDP_FLAGS_HW_MODE = 0x8 constant XDP_FLAGS_MASK (line 2835) | XDP_FLAGS_MASK = 0x1f constant XDP_FLAGS_MODES (line 2836) | XDP_FLAGS_MODES = 0xe constant XDP_FLAGS_REPLACE (line 2837) | XDP_FLAGS_REPLACE = 0x10 constant XDP_FLAGS_SKB_MODE (line 2838) | XDP_FLAGS_SKB_MODE = 0x2 constant XDP_FLAGS_UPDATE_IF_NOEXIST (line 2839) | XDP_FLAGS_UPDATE_IF_NOEXIST = 0x1 constant XDP_MMAP_OFFSETS (line 2840) | XDP_MMAP_OFFSETS = 0x1 constant XDP_OPTIONS (line 2841) | XDP_OPTIONS = 0x8 constant XDP_OPTIONS_ZEROCOPY (line 2842) | XDP_OPTIONS_ZEROCOPY = 0x1 constant XDP_PACKET_HEADROOM (line 2843) | XDP_PACKET_HEADROOM = 0x100 constant XDP_PGOFF_RX_RING (line 2844) | XDP_PGOFF_RX_RING = 0x0 constant XDP_PGOFF_TX_RING (line 2845) | XDP_PGOFF_TX_RING = 0x80000000 constant XDP_RING_NEED_WAKEUP (line 2846) | XDP_RING_NEED_WAKEUP = 0x1 constant XDP_RX_RING (line 2847) | XDP_RX_RING = 0x2 constant XDP_SHARED_UMEM (line 2848) | XDP_SHARED_UMEM = 0x1 constant XDP_STATISTICS (line 2849) | XDP_STATISTICS = 0x7 constant XDP_TX_RING (line 2850) | XDP_TX_RING = 0x3 constant XDP_UMEM_COMPLETION_RING (line 2851) | XDP_UMEM_COMPLETION_RING = 0x6 constant XDP_UMEM_FILL_RING (line 2852) | XDP_UMEM_FILL_RING = 0x5 constant XDP_UMEM_PGOFF_COMPLETION_RING (line 2853) | XDP_UMEM_PGOFF_COMPLETION_RING = 0x180000000 constant XDP_UMEM_PGOFF_FILL_RING (line 2854) | XDP_UMEM_PGOFF_FILL_RING = 0x100000000 constant XDP_UMEM_REG (line 2855) | XDP_UMEM_REG = 0x4 constant XDP_UMEM_UNALIGNED_CHUNK_FLAG (line 2856) | XDP_UMEM_UNALIGNED_CHUNK_FLAG = 0x1 constant XDP_USE_NEED_WAKEUP (line 2857) | XDP_USE_NEED_WAKEUP = 0x8 constant XDP_ZEROCOPY (line 2858) | XDP_ZEROCOPY = 0x4 constant XENFS_SUPER_MAGIC (line 2859) | XENFS_SUPER_MAGIC = 0xabba1974 constant XFS_SUPER_MAGIC (line 2860) | XFS_SUPER_MAGIC = 0x58465342 constant Z3FOLD_MAGIC (line 2861) | Z3FOLD_MAGIC = 0x33 constant ZONEFS_MAGIC (line 2862) | ZONEFS_MAGIC = 0x5a4f4653 constant ZSMALLOC_MAGIC (line 2863) | ZSMALLOC_MAGIC = 0x58295829 constant _HIDIOCGRAWNAME_LEN (line 2864) | _HIDIOCGRAWNAME_LEN = 0x80 constant _HIDIOCGRAWPHYS_LEN (line 2865) | _HIDIOCGRAWPHYS_LEN = 0x40 constant _HIDIOCGRAWUNIQ_LEN (line 2866) | _HIDIOCGRAWUNIQ_LEN = 0x40 constant E2BIG (line 2871) | E2BIG = syscall.Errno(0x7) constant EACCES (line 2872) | EACCES = syscall.Errno(0xd) constant EAGAIN (line 2873) | EAGAIN = syscall.Errno(0xb) constant EBADF (line 2874) | EBADF = syscall.Errno(0x9) constant EBUSY (line 2875) | EBUSY = syscall.Errno(0x10) constant ECHILD (line 2876) | ECHILD = syscall.Errno(0xa) constant EDOM (line 2877) | EDOM = syscall.Errno(0x21) constant EEXIST (line 2878) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 2879) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 2880) | EFBIG = syscall.Errno(0x1b) constant EINTR (line 2881) | EINTR = syscall.Errno(0x4) constant EINVAL (line 2882) | EINVAL = syscall.Errno(0x16) constant EIO (line 2883) | EIO = syscall.Errno(0x5) constant EISDIR (line 2884) | EISDIR = syscall.Errno(0x15) constant EMFILE (line 2885) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 2886) | EMLINK = syscall.Errno(0x1f) constant ENFILE (line 2887) | ENFILE = syscall.Errno(0x17) constant ENODEV (line 2888) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 2889) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 2890) | ENOEXEC = syscall.Errno(0x8) constant ENOMEM (line 2891) | ENOMEM = syscall.Errno(0xc) constant ENOSPC (line 2892) | ENOSPC = syscall.Errno(0x1c) constant ENOTBLK (line 2893) | ENOTBLK = syscall.Errno(0xf) constant ENOTDIR (line 2894) | ENOTDIR = syscall.Errno(0x14) constant ENOTTY (line 2895) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 2896) | ENXIO = syscall.Errno(0x6) constant EPERM (line 2897) | EPERM = syscall.Errno(0x1) constant EPIPE (line 2898) | EPIPE = syscall.Errno(0x20) constant ERANGE (line 2899) | ERANGE = syscall.Errno(0x22) constant EROFS (line 2900) | EROFS = syscall.Errno(0x1e) constant ESPIPE (line 2901) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 2902) | ESRCH = syscall.Errno(0x3) constant ETXTBSY (line 2903) | ETXTBSY = syscall.Errno(0x1a) constant EWOULDBLOCK (line 2904) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 2905) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 2910) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 2911) | SIGALRM = syscall.Signal(0xe) constant SIGFPE (line 2912) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 2913) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 2914) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 2915) | SIGINT = syscall.Signal(0x2) constant SIGIOT (line 2916) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 2917) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 2918) | SIGPIPE = syscall.Signal(0xd) constant SIGQUIT (line 2919) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 2920) | SIGSEGV = syscall.Signal(0xb) constant SIGTERM (line 2921) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 2922) | SIGTRAP = syscall.Signal(0x5) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_386.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x80041270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x40041271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x1265 constant BLKFRASET (line 34) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x80041272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x127b constant BLKRAGET (line 38) | BLKRAGET = 0x1263 constant BLKRASET (line 39) | BLKRASET = 0x1262 constant BLKROGET (line 40) | BLKROGET = 0x125e constant BLKROSET (line 41) | BLKROSET = 0x125d constant BLKRRPART (line 42) | BLKRRPART = 0x125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x1268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x81484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x80104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x40049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x4020940d constant FLUSHO (line 79) | FLUSHO = 0x1000 constant FP_XSTATE_MAGIC2 (line 80) | FP_XSTATE_MAGIC2 = 0x46505845 constant FS_IOC_ENABLE_VERITY (line 81) | FS_IOC_ENABLE_VERITY = 0x40806685 constant FS_IOC_GETFLAGS (line 82) | FS_IOC_GETFLAGS = 0x80046601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 83) | FS_IOC_GET_ENCRYPTION_NONCE = 0x8010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 84) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 85) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SETFLAGS (line 86) | FS_IOC_SETFLAGS = 0x40046602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 87) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant F_GETLK (line 88) | F_GETLK = 0xc constant F_GETLK64 (line 89) | F_GETLK64 = 0xc constant F_GETOWN (line 90) | F_GETOWN = 0x9 constant F_RDLCK (line 91) | F_RDLCK = 0x0 constant F_SETLK (line 92) | F_SETLK = 0xd constant F_SETLK64 (line 93) | F_SETLK64 = 0xd constant F_SETLKW (line 94) | F_SETLKW = 0xe constant F_SETLKW64 (line 95) | F_SETLKW64 = 0xe constant F_SETOWN (line 96) | F_SETOWN = 0x8 constant F_UNLCK (line 97) | F_UNLCK = 0x2 constant F_WRLCK (line 98) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 99) | HIDIOCGRAWINFO = 0x80084803 constant HIDIOCGRDESC (line 100) | HIDIOCGRDESC = 0x90044802 constant HIDIOCGRDESCSIZE (line 101) | HIDIOCGRDESCSIZE = 0x80044801 constant HUPCL (line 102) | HUPCL = 0x400 constant ICANON (line 103) | ICANON = 0x2 constant IEXTEN (line 104) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 105) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 106) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 107) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9 constant ISIG (line 108) | ISIG = 0x1 constant IUCLC (line 109) | IUCLC = 0x200 constant IXOFF (line 110) | IXOFF = 0x1000 constant IXON (line 111) | IXON = 0x400 constant MAP_32BIT (line 112) | MAP_32BIT = 0x40 constant MAP_ANON (line 113) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 114) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 115) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 116) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 117) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 118) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 119) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 120) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 121) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 122) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 123) | MAP_STACK = 0x20000 constant MAP_SYNC (line 124) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 125) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 126) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 127) | MCL_ONFAULT = 0x4 constant MEMERASE (line 128) | MEMERASE = 0x40084d02 constant MEMERASE64 (line 129) | MEMERASE64 = 0x40104d14 constant MEMGETBADBLOCK (line 130) | MEMGETBADBLOCK = 0x40084d0b constant MEMGETINFO (line 131) | MEMGETINFO = 0x80204d01 constant MEMGETOOBSEL (line 132) | MEMGETOOBSEL = 0x80c84d0a constant MEMGETREGIONCOUNT (line 133) | MEMGETREGIONCOUNT = 0x80044d07 constant MEMISLOCKED (line 134) | MEMISLOCKED = 0x80084d17 constant MEMLOCK (line 135) | MEMLOCK = 0x40084d05 constant MEMREADOOB (line 136) | MEMREADOOB = 0xc00c4d04 constant MEMSETBADBLOCK (line 137) | MEMSETBADBLOCK = 0x40084d0c constant MEMUNLOCK (line 138) | MEMUNLOCK = 0x40084d06 constant MEMWRITEOOB (line 139) | MEMWRITEOOB = 0xc00c4d03 constant MTDFILEMODE (line 140) | MTDFILEMODE = 0x4d13 constant NFDBITS (line 141) | NFDBITS = 0x20 constant NLDLY (line 142) | NLDLY = 0x100 constant NOFLSH (line 143) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 144) | NS_GET_NSTYPE = 0xb703 constant NS_GET_OWNER_UID (line 145) | NS_GET_OWNER_UID = 0xb704 constant NS_GET_PARENT (line 146) | NS_GET_PARENT = 0xb702 constant NS_GET_USERNS (line 147) | NS_GET_USERNS = 0xb701 constant OLCUC (line 148) | OLCUC = 0x2 constant ONLCR (line 149) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 150) | OTPGETREGIONCOUNT = 0x40044d0e constant OTPGETREGIONINFO (line 151) | OTPGETREGIONINFO = 0x400c4d0f constant OTPLOCK (line 152) | OTPLOCK = 0x800c4d10 constant OTPSELECT (line 153) | OTPSELECT = 0x80044d0d constant O_APPEND (line 154) | O_APPEND = 0x400 constant O_ASYNC (line 155) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 156) | O_CLOEXEC = 0x80000 constant O_CREAT (line 157) | O_CREAT = 0x40 constant O_DIRECT (line 158) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 159) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 160) | O_DSYNC = 0x1000 constant O_EXCL (line 161) | O_EXCL = 0x80 constant O_FSYNC (line 162) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 163) | O_LARGEFILE = 0x8000 constant O_NDELAY (line 164) | O_NDELAY = 0x800 constant O_NOATIME (line 165) | O_NOATIME = 0x40000 constant O_NOCTTY (line 166) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 167) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 168) | O_NONBLOCK = 0x800 constant O_PATH (line 169) | O_PATH = 0x200000 constant O_RSYNC (line 170) | O_RSYNC = 0x101000 constant O_SYNC (line 171) | O_SYNC = 0x101000 constant O_TMPFILE (line 172) | O_TMPFILE = 0x410000 constant O_TRUNC (line 173) | O_TRUNC = 0x200 constant PARENB (line 174) | PARENB = 0x100 constant PARODD (line 175) | PARODD = 0x200 constant PENDIN (line 176) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 177) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 178) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 179) | PERF_EVENT_IOC_ID = 0x80042407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 180) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4004240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 181) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 182) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_QUERY_BPF (line 183) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a constant PERF_EVENT_IOC_REFRESH (line 184) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 185) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 186) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 187) | PERF_EVENT_IOC_SET_FILTER = 0x40042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 188) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PPPIOCATTACH (line 189) | PPPIOCATTACH = 0x4004743d constant PPPIOCATTCHAN (line 190) | PPPIOCATTCHAN = 0x40047438 constant PPPIOCBRIDGECHAN (line 191) | PPPIOCBRIDGECHAN = 0x40047435 constant PPPIOCCONNECT (line 192) | PPPIOCCONNECT = 0x4004743a constant PPPIOCDETACH (line 193) | PPPIOCDETACH = 0x4004743c constant PPPIOCDISCONN (line 194) | PPPIOCDISCONN = 0x7439 constant PPPIOCGASYNCMAP (line 195) | PPPIOCGASYNCMAP = 0x80047458 constant PPPIOCGCHAN (line 196) | PPPIOCGCHAN = 0x80047437 constant PPPIOCGDEBUG (line 197) | PPPIOCGDEBUG = 0x80047441 constant PPPIOCGFLAGS (line 198) | PPPIOCGFLAGS = 0x8004745a constant PPPIOCGIDLE (line 199) | PPPIOCGIDLE = 0x8008743f constant PPPIOCGIDLE32 (line 200) | PPPIOCGIDLE32 = 0x8008743f constant PPPIOCGIDLE64 (line 201) | PPPIOCGIDLE64 = 0x8010743f constant PPPIOCGL2TPSTATS (line 202) | PPPIOCGL2TPSTATS = 0x80487436 constant PPPIOCGMRU (line 203) | PPPIOCGMRU = 0x80047453 constant PPPIOCGRASYNCMAP (line 204) | PPPIOCGRASYNCMAP = 0x80047455 constant PPPIOCGUNIT (line 205) | PPPIOCGUNIT = 0x80047456 constant PPPIOCGXASYNCMAP (line 206) | PPPIOCGXASYNCMAP = 0x80207450 constant PPPIOCSACTIVE (line 207) | PPPIOCSACTIVE = 0x40087446 constant PPPIOCSASYNCMAP (line 208) | PPPIOCSASYNCMAP = 0x40047457 constant PPPIOCSCOMPRESS (line 209) | PPPIOCSCOMPRESS = 0x400c744d constant PPPIOCSDEBUG (line 210) | PPPIOCSDEBUG = 0x40047440 constant PPPIOCSFLAGS (line 211) | PPPIOCSFLAGS = 0x40047459 constant PPPIOCSMAXCID (line 212) | PPPIOCSMAXCID = 0x40047451 constant PPPIOCSMRRU (line 213) | PPPIOCSMRRU = 0x4004743b constant PPPIOCSMRU (line 214) | PPPIOCSMRU = 0x40047452 constant PPPIOCSNPMODE (line 215) | PPPIOCSNPMODE = 0x4008744b constant PPPIOCSPASS (line 216) | PPPIOCSPASS = 0x40087447 constant PPPIOCSRASYNCMAP (line 217) | PPPIOCSRASYNCMAP = 0x40047454 constant PPPIOCSXASYNCMAP (line 218) | PPPIOCSXASYNCMAP = 0x4020744f constant PPPIOCUNBRIDGECHAN (line 219) | PPPIOCUNBRIDGECHAN = 0x7434 constant PPPIOCXFERUNIT (line 220) | PPPIOCXFERUNIT = 0x744e constant PR_SET_PTRACER_ANY (line 221) | PR_SET_PTRACER_ANY = 0xffffffff constant PTRACE_GETFPREGS (line 222) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPXREGS (line 223) | PTRACE_GETFPXREGS = 0x12 constant PTRACE_GET_THREAD_AREA (line 224) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_OLDSETOPTIONS (line 225) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_SETFPREGS (line 226) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPXREGS (line 227) | PTRACE_SETFPXREGS = 0x13 constant PTRACE_SET_THREAD_AREA (line 228) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SINGLEBLOCK (line 229) | PTRACE_SINGLEBLOCK = 0x21 constant PTRACE_SYSEMU (line 230) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 231) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant RLIMIT_AS (line 232) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 233) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 234) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 235) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 236) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 237) | RNDADDENTROPY = 0x40085203 constant RNDADDTOENTCNT (line 238) | RNDADDTOENTCNT = 0x40045201 constant RNDCLEARPOOL (line 239) | RNDCLEARPOOL = 0x5206 constant RNDGETENTCNT (line 240) | RNDGETENTCNT = 0x80045200 constant RNDGETPOOL (line 241) | RNDGETPOOL = 0x80085202 constant RNDRESEEDCRNG (line 242) | RNDRESEEDCRNG = 0x5207 constant RNDZAPENTCNT (line 243) | RNDZAPENTCNT = 0x5204 constant RTC_AIE_OFF (line 244) | RTC_AIE_OFF = 0x7002 constant RTC_AIE_ON (line 245) | RTC_AIE_ON = 0x7001 constant RTC_ALM_READ (line 246) | RTC_ALM_READ = 0x80247008 constant RTC_ALM_SET (line 247) | RTC_ALM_SET = 0x40247007 constant RTC_EPOCH_READ (line 248) | RTC_EPOCH_READ = 0x8004700d constant RTC_EPOCH_SET (line 249) | RTC_EPOCH_SET = 0x4004700e constant RTC_IRQP_READ (line 250) | RTC_IRQP_READ = 0x8004700b constant RTC_IRQP_SET (line 251) | RTC_IRQP_SET = 0x4004700c constant RTC_PIE_OFF (line 252) | RTC_PIE_OFF = 0x7006 constant RTC_PIE_ON (line 253) | RTC_PIE_ON = 0x7005 constant RTC_PLL_GET (line 254) | RTC_PLL_GET = 0x801c7011 constant RTC_PLL_SET (line 255) | RTC_PLL_SET = 0x401c7012 constant RTC_RD_TIME (line 256) | RTC_RD_TIME = 0x80247009 constant RTC_SET_TIME (line 257) | RTC_SET_TIME = 0x4024700a constant RTC_UIE_OFF (line 258) | RTC_UIE_OFF = 0x7004 constant RTC_UIE_ON (line 259) | RTC_UIE_ON = 0x7003 constant RTC_VL_CLR (line 260) | RTC_VL_CLR = 0x7014 constant RTC_VL_READ (line 261) | RTC_VL_READ = 0x80047013 constant RTC_WIE_OFF (line 262) | RTC_WIE_OFF = 0x7010 constant RTC_WIE_ON (line 263) | RTC_WIE_ON = 0x700f constant RTC_WKALM_RD (line 264) | RTC_WKALM_RD = 0x80287010 constant RTC_WKALM_SET (line 265) | RTC_WKALM_SET = 0x4028700f constant SCM_TIMESTAMPING (line 266) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 267) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 268) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 269) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 270) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 271) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 272) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 273) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 274) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 275) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 276) | SIOCGSTAMPNS_NEW = 0x80108907 constant SIOCGSTAMP_NEW (line 277) | SIOCGSTAMP_NEW = 0x80108906 constant SIOCINQ (line 278) | SIOCINQ = 0x541b constant SIOCOUTQ (line 279) | SIOCOUTQ = 0x5411 constant SIOCSPGRP (line 280) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 281) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 282) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 283) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 284) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 285) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 286) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 287) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 288) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 289) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 290) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 291) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 292) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 293) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 294) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 295) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 296) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 297) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 298) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 299) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 300) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 301) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 302) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 303) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 304) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 305) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 306) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 307) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 308) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 309) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 310) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 311) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 312) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 313) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 314) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 315) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 316) | SO_PEERCRED = 0x11 constant SO_PEERGROUPS (line 317) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 318) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 319) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 320) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 321) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 322) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 323) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 324) | SO_RCVTIMEO = 0x14 constant SO_RCVTIMEO_NEW (line 325) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 326) | SO_RCVTIMEO_OLD = 0x14 constant SO_REUSEADDR (line 327) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 328) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 329) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 330) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 331) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 332) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 333) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 334) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 335) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 336) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 337) | SO_SNDTIMEO = 0x15 constant SO_SNDTIMEO_NEW (line 338) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 339) | SO_SNDTIMEO_OLD = 0x15 constant SO_TIMESTAMPING (line 340) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 341) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 342) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 343) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 344) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 345) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 346) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 347) | SO_TXTIME = 0x3d constant SO_TYPE (line 348) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 349) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 350) | SO_ZEROCOPY = 0x3c constant TAB1 (line 351) | TAB1 = 0x800 constant TAB2 (line 352) | TAB2 = 0x1000 constant TAB3 (line 353) | TAB3 = 0x1800 constant TABDLY (line 354) | TABDLY = 0x1800 constant TCFLSH (line 355) | TCFLSH = 0x540b constant TCGETA (line 356) | TCGETA = 0x5405 constant TCGETS (line 357) | TCGETS = 0x5401 constant TCGETS2 (line 358) | TCGETS2 = 0x802c542a constant TCGETX (line 359) | TCGETX = 0x5432 constant TCSAFLUSH (line 360) | TCSAFLUSH = 0x2 constant TCSBRK (line 361) | TCSBRK = 0x5409 constant TCSBRKP (line 362) | TCSBRKP = 0x5425 constant TCSETA (line 363) | TCSETA = 0x5406 constant TCSETAF (line 364) | TCSETAF = 0x5408 constant TCSETAW (line 365) | TCSETAW = 0x5407 constant TCSETS (line 366) | TCSETS = 0x5402 constant TCSETS2 (line 367) | TCSETS2 = 0x402c542b constant TCSETSF (line 368) | TCSETSF = 0x5404 constant TCSETSF2 (line 369) | TCSETSF2 = 0x402c542d constant TCSETSW (line 370) | TCSETSW = 0x5403 constant TCSETSW2 (line 371) | TCSETSW2 = 0x402c542c constant TCSETX (line 372) | TCSETX = 0x5433 constant TCSETXF (line 373) | TCSETXF = 0x5434 constant TCSETXW (line 374) | TCSETXW = 0x5435 constant TCXONC (line 375) | TCXONC = 0x540a constant TFD_CLOEXEC (line 376) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 377) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 378) | TIOCCBRK = 0x5428 constant TIOCCONS (line 379) | TIOCCONS = 0x541d constant TIOCEXCL (line 380) | TIOCEXCL = 0x540c constant TIOCGDEV (line 381) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 382) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 383) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 384) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 385) | TIOCGISO7816 = 0x80285442 constant TIOCGLCKTRMIOS (line 386) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 387) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 388) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 389) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 390) | TIOCGPTN = 0x80045430 constant TIOCGPTPEER (line 391) | TIOCGPTPEER = 0x5441 constant TIOCGRS485 (line 392) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 393) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 394) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 395) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 396) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 397) | TIOCINQ = 0x541b constant TIOCLINUX (line 398) | TIOCLINUX = 0x541c constant TIOCMBIC (line 399) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 400) | TIOCMBIS = 0x5416 constant TIOCMGET (line 401) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 402) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 403) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 404) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 405) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 406) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 407) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 408) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 409) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 410) | TIOCM_SR = 0x10 constant TIOCM_ST (line 411) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 412) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 413) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 414) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 415) | TIOCPKT = 0x5420 constant TIOCSBRK (line 416) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 417) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 418) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 419) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 420) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 421) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 422) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 423) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 424) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 425) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 426) | TIOCSETD = 0x5423 constant TIOCSIG (line 427) | TIOCSIG = 0x40045436 constant TIOCSISO7816 (line 428) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 429) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 430) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 431) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 432) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 433) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 434) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 435) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 436) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 437) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 438) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 439) | TUNATTACHFILTER = 0x400854d5 constant TUNDETACHFILTER (line 440) | TUNDETACHFILTER = 0x400854d6 constant TUNGETDEVNETNS (line 441) | TUNGETDEVNETNS = 0x54e3 constant TUNGETFEATURES (line 442) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 443) | TUNGETFILTER = 0x800854db constant TUNGETIFF (line 444) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 445) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 446) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 447) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 448) | TUNGETVNETLE = 0x800454dd constant TUNSETCARRIER (line 449) | TUNSETCARRIER = 0x400454e2 constant TUNSETDEBUG (line 450) | TUNSETDEBUG = 0x400454c9 constant TUNSETFILTEREBPF (line 451) | TUNSETFILTEREBPF = 0x800454e1 constant TUNSETGROUP (line 452) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 453) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 454) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 455) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 456) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 457) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 458) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 459) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 460) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 461) | TUNSETSNDBUF = 0x400454d4 constant TUNSETSTEERINGEBPF (line 462) | TUNSETSTEERINGEBPF = 0x800454e0 constant TUNSETTXFILTER (line 463) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 464) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 465) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 466) | TUNSETVNETLE = 0x400454dc constant UBI_IOCATT (line 467) | UBI_IOCATT = 0x40186f40 constant UBI_IOCDET (line 468) | UBI_IOCDET = 0x40046f41 constant UBI_IOCEBCH (line 469) | UBI_IOCEBCH = 0x40044f02 constant UBI_IOCEBER (line 470) | UBI_IOCEBER = 0x40044f01 constant UBI_IOCEBISMAP (line 471) | UBI_IOCEBISMAP = 0x80044f05 constant UBI_IOCEBMAP (line 472) | UBI_IOCEBMAP = 0x40084f03 constant UBI_IOCEBUNMAP (line 473) | UBI_IOCEBUNMAP = 0x40044f04 constant UBI_IOCMKVOL (line 474) | UBI_IOCMKVOL = 0x40986f00 constant UBI_IOCRMVOL (line 475) | UBI_IOCRMVOL = 0x40046f01 constant UBI_IOCRNVOL (line 476) | UBI_IOCRNVOL = 0x51106f03 constant UBI_IOCRPEB (line 477) | UBI_IOCRPEB = 0x40046f04 constant UBI_IOCRSVOL (line 478) | UBI_IOCRSVOL = 0x400c6f02 constant UBI_IOCSETVOLPROP (line 479) | UBI_IOCSETVOLPROP = 0x40104f06 constant UBI_IOCSPEB (line 480) | UBI_IOCSPEB = 0x40046f05 constant UBI_IOCVOLCRBLK (line 481) | UBI_IOCVOLCRBLK = 0x40804f07 constant UBI_IOCVOLRMBLK (line 482) | UBI_IOCVOLRMBLK = 0x4f08 constant UBI_IOCVOLUP (line 483) | UBI_IOCVOLUP = 0x40084f00 constant VDISCARD (line 484) | VDISCARD = 0xd constant VEOF (line 485) | VEOF = 0x4 constant VEOL (line 486) | VEOL = 0xb constant VEOL2 (line 487) | VEOL2 = 0x10 constant VMIN (line 488) | VMIN = 0x6 constant VREPRINT (line 489) | VREPRINT = 0xc constant VSTART (line 490) | VSTART = 0x8 constant VSTOP (line 491) | VSTOP = 0x9 constant VSUSP (line 492) | VSUSP = 0xa constant VSWTC (line 493) | VSWTC = 0x7 constant VT1 (line 494) | VT1 = 0x4000 constant VTDLY (line 495) | VTDLY = 0x4000 constant VTIME (line 496) | VTIME = 0x5 constant VWERASE (line 497) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 498) | WDIOC_GETBOOTSTATUS = 0x80045702 constant WDIOC_GETPRETIMEOUT (line 499) | WDIOC_GETPRETIMEOUT = 0x80045709 constant WDIOC_GETSTATUS (line 500) | WDIOC_GETSTATUS = 0x80045701 constant WDIOC_GETSUPPORT (line 501) | WDIOC_GETSUPPORT = 0x80285700 constant WDIOC_GETTEMP (line 502) | WDIOC_GETTEMP = 0x80045703 constant WDIOC_GETTIMELEFT (line 503) | WDIOC_GETTIMELEFT = 0x8004570a constant WDIOC_GETTIMEOUT (line 504) | WDIOC_GETTIMEOUT = 0x80045707 constant WDIOC_KEEPALIVE (line 505) | WDIOC_KEEPALIVE = 0x80045705 constant WDIOC_SETOPTIONS (line 506) | WDIOC_SETOPTIONS = 0x80045704 constant WORDSIZE (line 507) | WORDSIZE = 0x20 constant X86_FXSR_MAGIC (line 508) | X86_FXSR_MAGIC = 0x0 constant XCASE (line 509) | XCASE = 0x4 constant XTABS (line 510) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 511) | _HIDIOCGRAWNAME = 0x80804804 constant _HIDIOCGRAWPHYS (line 512) | _HIDIOCGRAWPHYS = 0x80404805 constant _HIDIOCGRAWUNIQ (line 513) | _HIDIOCGRAWUNIQ = 0x80404808 constant EADDRINUSE (line 518) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 519) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 520) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 521) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 522) | EALREADY = syscall.Errno(0x72) constant EBADE (line 523) | EBADE = syscall.Errno(0x34) constant EBADFD (line 524) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 525) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 526) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 527) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 528) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 529) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 530) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 531) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 532) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 533) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 534) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 535) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 536) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 537) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 538) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 539) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 540) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 541) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 542) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 543) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 544) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 545) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 546) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 547) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 548) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 549) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 550) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 551) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 552) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 553) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 554) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 555) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 556) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 557) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 558) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 559) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 560) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 561) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 562) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 563) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 564) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 565) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 566) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 567) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 568) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 569) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 570) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 571) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 572) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 573) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 574) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 575) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 576) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 577) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 578) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 579) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 580) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 581) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 582) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 583) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 584) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 585) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 586) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 587) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 588) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 589) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 590) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 591) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 592) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 593) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 594) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 595) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 596) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 597) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 598) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 599) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 600) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 601) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 602) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 603) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 604) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 605) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 606) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 607) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 608) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 609) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 610) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 611) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 612) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 613) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 614) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 615) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 616) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 621) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 622) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 623) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 624) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 625) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 626) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 627) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 628) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 629) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 630) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 631) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 632) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 633) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 634) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 635) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 636) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 637) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 638) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 639) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 640) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 641) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x1265 constant BLKFRASET (line 34) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x127b constant BLKRAGET (line 38) | BLKRAGET = 0x1263 constant BLKRASET (line 39) | BLKRASET = 0x1262 constant BLKROGET (line 40) | BLKROGET = 0x125e constant BLKROSET (line 41) | BLKROSET = 0x125d constant BLKRRPART (line 42) | BLKRRPART = 0x125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x1268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x81484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x80104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x40049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x4020940d constant FLUSHO (line 79) | FLUSHO = 0x1000 constant FP_XSTATE_MAGIC2 (line 80) | FP_XSTATE_MAGIC2 = 0x46505845 constant FS_IOC_ENABLE_VERITY (line 81) | FS_IOC_ENABLE_VERITY = 0x40806685 constant FS_IOC_GETFLAGS (line 82) | FS_IOC_GETFLAGS = 0x80086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 83) | FS_IOC_GET_ENCRYPTION_NONCE = 0x8010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 84) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 85) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SETFLAGS (line 86) | FS_IOC_SETFLAGS = 0x40086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 87) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant F_GETLK (line 88) | F_GETLK = 0x5 constant F_GETLK64 (line 89) | F_GETLK64 = 0x5 constant F_GETOWN (line 90) | F_GETOWN = 0x9 constant F_RDLCK (line 91) | F_RDLCK = 0x0 constant F_SETLK (line 92) | F_SETLK = 0x6 constant F_SETLK64 (line 93) | F_SETLK64 = 0x6 constant F_SETLKW (line 94) | F_SETLKW = 0x7 constant F_SETLKW64 (line 95) | F_SETLKW64 = 0x7 constant F_SETOWN (line 96) | F_SETOWN = 0x8 constant F_UNLCK (line 97) | F_UNLCK = 0x2 constant F_WRLCK (line 98) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 99) | HIDIOCGRAWINFO = 0x80084803 constant HIDIOCGRDESC (line 100) | HIDIOCGRDESC = 0x90044802 constant HIDIOCGRDESCSIZE (line 101) | HIDIOCGRDESCSIZE = 0x80044801 constant HUPCL (line 102) | HUPCL = 0x400 constant ICANON (line 103) | ICANON = 0x2 constant IEXTEN (line 104) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 105) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 106) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 107) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9 constant ISIG (line 108) | ISIG = 0x1 constant IUCLC (line 109) | IUCLC = 0x200 constant IXOFF (line 110) | IXOFF = 0x1000 constant IXON (line 111) | IXON = 0x400 constant MAP_32BIT (line 112) | MAP_32BIT = 0x40 constant MAP_ANON (line 113) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 114) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 115) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 116) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 117) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 118) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 119) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 120) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 121) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 122) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 123) | MAP_STACK = 0x20000 constant MAP_SYNC (line 124) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 125) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 126) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 127) | MCL_ONFAULT = 0x4 constant MEMERASE (line 128) | MEMERASE = 0x40084d02 constant MEMERASE64 (line 129) | MEMERASE64 = 0x40104d14 constant MEMGETBADBLOCK (line 130) | MEMGETBADBLOCK = 0x40084d0b constant MEMGETINFO (line 131) | MEMGETINFO = 0x80204d01 constant MEMGETOOBSEL (line 132) | MEMGETOOBSEL = 0x80c84d0a constant MEMGETREGIONCOUNT (line 133) | MEMGETREGIONCOUNT = 0x80044d07 constant MEMISLOCKED (line 134) | MEMISLOCKED = 0x80084d17 constant MEMLOCK (line 135) | MEMLOCK = 0x40084d05 constant MEMREADOOB (line 136) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 137) | MEMSETBADBLOCK = 0x40084d0c constant MEMUNLOCK (line 138) | MEMUNLOCK = 0x40084d06 constant MEMWRITEOOB (line 139) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 140) | MTDFILEMODE = 0x4d13 constant NFDBITS (line 141) | NFDBITS = 0x40 constant NLDLY (line 142) | NLDLY = 0x100 constant NOFLSH (line 143) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 144) | NS_GET_NSTYPE = 0xb703 constant NS_GET_OWNER_UID (line 145) | NS_GET_OWNER_UID = 0xb704 constant NS_GET_PARENT (line 146) | NS_GET_PARENT = 0xb702 constant NS_GET_USERNS (line 147) | NS_GET_USERNS = 0xb701 constant OLCUC (line 148) | OLCUC = 0x2 constant ONLCR (line 149) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 150) | OTPGETREGIONCOUNT = 0x40044d0e constant OTPGETREGIONINFO (line 151) | OTPGETREGIONINFO = 0x400c4d0f constant OTPLOCK (line 152) | OTPLOCK = 0x800c4d10 constant OTPSELECT (line 153) | OTPSELECT = 0x80044d0d constant O_APPEND (line 154) | O_APPEND = 0x400 constant O_ASYNC (line 155) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 156) | O_CLOEXEC = 0x80000 constant O_CREAT (line 157) | O_CREAT = 0x40 constant O_DIRECT (line 158) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 159) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 160) | O_DSYNC = 0x1000 constant O_EXCL (line 161) | O_EXCL = 0x80 constant O_FSYNC (line 162) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 163) | O_LARGEFILE = 0x0 constant O_NDELAY (line 164) | O_NDELAY = 0x800 constant O_NOATIME (line 165) | O_NOATIME = 0x40000 constant O_NOCTTY (line 166) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 167) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 168) | O_NONBLOCK = 0x800 constant O_PATH (line 169) | O_PATH = 0x200000 constant O_RSYNC (line 170) | O_RSYNC = 0x101000 constant O_SYNC (line 171) | O_SYNC = 0x101000 constant O_TMPFILE (line 172) | O_TMPFILE = 0x410000 constant O_TRUNC (line 173) | O_TRUNC = 0x200 constant PARENB (line 174) | PARENB = 0x100 constant PARODD (line 175) | PARODD = 0x200 constant PENDIN (line 176) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 177) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 178) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 179) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 180) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 181) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 182) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_QUERY_BPF (line 183) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 184) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 185) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 186) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 187) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 188) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PPPIOCATTACH (line 189) | PPPIOCATTACH = 0x4004743d constant PPPIOCATTCHAN (line 190) | PPPIOCATTCHAN = 0x40047438 constant PPPIOCBRIDGECHAN (line 191) | PPPIOCBRIDGECHAN = 0x40047435 constant PPPIOCCONNECT (line 192) | PPPIOCCONNECT = 0x4004743a constant PPPIOCDETACH (line 193) | PPPIOCDETACH = 0x4004743c constant PPPIOCDISCONN (line 194) | PPPIOCDISCONN = 0x7439 constant PPPIOCGASYNCMAP (line 195) | PPPIOCGASYNCMAP = 0x80047458 constant PPPIOCGCHAN (line 196) | PPPIOCGCHAN = 0x80047437 constant PPPIOCGDEBUG (line 197) | PPPIOCGDEBUG = 0x80047441 constant PPPIOCGFLAGS (line 198) | PPPIOCGFLAGS = 0x8004745a constant PPPIOCGIDLE (line 199) | PPPIOCGIDLE = 0x8010743f constant PPPIOCGIDLE32 (line 200) | PPPIOCGIDLE32 = 0x8008743f constant PPPIOCGIDLE64 (line 201) | PPPIOCGIDLE64 = 0x8010743f constant PPPIOCGL2TPSTATS (line 202) | PPPIOCGL2TPSTATS = 0x80487436 constant PPPIOCGMRU (line 203) | PPPIOCGMRU = 0x80047453 constant PPPIOCGRASYNCMAP (line 204) | PPPIOCGRASYNCMAP = 0x80047455 constant PPPIOCGUNIT (line 205) | PPPIOCGUNIT = 0x80047456 constant PPPIOCGXASYNCMAP (line 206) | PPPIOCGXASYNCMAP = 0x80207450 constant PPPIOCSACTIVE (line 207) | PPPIOCSACTIVE = 0x40107446 constant PPPIOCSASYNCMAP (line 208) | PPPIOCSASYNCMAP = 0x40047457 constant PPPIOCSCOMPRESS (line 209) | PPPIOCSCOMPRESS = 0x4010744d constant PPPIOCSDEBUG (line 210) | PPPIOCSDEBUG = 0x40047440 constant PPPIOCSFLAGS (line 211) | PPPIOCSFLAGS = 0x40047459 constant PPPIOCSMAXCID (line 212) | PPPIOCSMAXCID = 0x40047451 constant PPPIOCSMRRU (line 213) | PPPIOCSMRRU = 0x4004743b constant PPPIOCSMRU (line 214) | PPPIOCSMRU = 0x40047452 constant PPPIOCSNPMODE (line 215) | PPPIOCSNPMODE = 0x4008744b constant PPPIOCSPASS (line 216) | PPPIOCSPASS = 0x40107447 constant PPPIOCSRASYNCMAP (line 217) | PPPIOCSRASYNCMAP = 0x40047454 constant PPPIOCSXASYNCMAP (line 218) | PPPIOCSXASYNCMAP = 0x4020744f constant PPPIOCUNBRIDGECHAN (line 219) | PPPIOCUNBRIDGECHAN = 0x7434 constant PPPIOCXFERUNIT (line 220) | PPPIOCXFERUNIT = 0x744e constant PR_SET_PTRACER_ANY (line 221) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_ARCH_PRCTL (line 222) | PTRACE_ARCH_PRCTL = 0x1e constant PTRACE_GETFPREGS (line 223) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPXREGS (line 224) | PTRACE_GETFPXREGS = 0x12 constant PTRACE_GET_THREAD_AREA (line 225) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_OLDSETOPTIONS (line 226) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_SETFPREGS (line 227) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPXREGS (line 228) | PTRACE_SETFPXREGS = 0x13 constant PTRACE_SET_THREAD_AREA (line 229) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SINGLEBLOCK (line 230) | PTRACE_SINGLEBLOCK = 0x21 constant PTRACE_SYSEMU (line 231) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 232) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant RLIMIT_AS (line 233) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 234) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 235) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 236) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 237) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 238) | RNDADDENTROPY = 0x40085203 constant RNDADDTOENTCNT (line 239) | RNDADDTOENTCNT = 0x40045201 constant RNDCLEARPOOL (line 240) | RNDCLEARPOOL = 0x5206 constant RNDGETENTCNT (line 241) | RNDGETENTCNT = 0x80045200 constant RNDGETPOOL (line 242) | RNDGETPOOL = 0x80085202 constant RNDRESEEDCRNG (line 243) | RNDRESEEDCRNG = 0x5207 constant RNDZAPENTCNT (line 244) | RNDZAPENTCNT = 0x5204 constant RTC_AIE_OFF (line 245) | RTC_AIE_OFF = 0x7002 constant RTC_AIE_ON (line 246) | RTC_AIE_ON = 0x7001 constant RTC_ALM_READ (line 247) | RTC_ALM_READ = 0x80247008 constant RTC_ALM_SET (line 248) | RTC_ALM_SET = 0x40247007 constant RTC_EPOCH_READ (line 249) | RTC_EPOCH_READ = 0x8008700d constant RTC_EPOCH_SET (line 250) | RTC_EPOCH_SET = 0x4008700e constant RTC_IRQP_READ (line 251) | RTC_IRQP_READ = 0x8008700b constant RTC_IRQP_SET (line 252) | RTC_IRQP_SET = 0x4008700c constant RTC_PIE_OFF (line 253) | RTC_PIE_OFF = 0x7006 constant RTC_PIE_ON (line 254) | RTC_PIE_ON = 0x7005 constant RTC_PLL_GET (line 255) | RTC_PLL_GET = 0x80207011 constant RTC_PLL_SET (line 256) | RTC_PLL_SET = 0x40207012 constant RTC_RD_TIME (line 257) | RTC_RD_TIME = 0x80247009 constant RTC_SET_TIME (line 258) | RTC_SET_TIME = 0x4024700a constant RTC_UIE_OFF (line 259) | RTC_UIE_OFF = 0x7004 constant RTC_UIE_ON (line 260) | RTC_UIE_ON = 0x7003 constant RTC_VL_CLR (line 261) | RTC_VL_CLR = 0x7014 constant RTC_VL_READ (line 262) | RTC_VL_READ = 0x80047013 constant RTC_WIE_OFF (line 263) | RTC_WIE_OFF = 0x7010 constant RTC_WIE_ON (line 264) | RTC_WIE_ON = 0x700f constant RTC_WKALM_RD (line 265) | RTC_WKALM_RD = 0x80287010 constant RTC_WKALM_SET (line 266) | RTC_WKALM_SET = 0x4028700f constant SCM_TIMESTAMPING (line 267) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 268) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 269) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 270) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 271) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 272) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 273) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 274) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 275) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 276) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 277) | SIOCGSTAMPNS_NEW = 0x80108907 constant SIOCGSTAMP_NEW (line 278) | SIOCGSTAMP_NEW = 0x80108906 constant SIOCINQ (line 279) | SIOCINQ = 0x541b constant SIOCOUTQ (line 280) | SIOCOUTQ = 0x5411 constant SIOCSPGRP (line 281) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 282) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 283) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 284) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 285) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 286) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 287) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 288) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 289) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 290) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 291) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 292) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 293) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 294) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 295) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 296) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 297) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 298) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 299) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 300) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 301) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 302) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 303) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 304) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 305) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 306) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 307) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 308) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 309) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 310) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 311) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 312) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 313) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 314) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 315) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 316) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 317) | SO_PEERCRED = 0x11 constant SO_PEERGROUPS (line 318) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 319) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 320) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 321) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 322) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 323) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 324) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 325) | SO_RCVTIMEO = 0x14 constant SO_RCVTIMEO_NEW (line 326) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 327) | SO_RCVTIMEO_OLD = 0x14 constant SO_REUSEADDR (line 328) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 329) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 330) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 331) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 332) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 333) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 334) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 335) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 336) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 337) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 338) | SO_SNDTIMEO = 0x15 constant SO_SNDTIMEO_NEW (line 339) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 340) | SO_SNDTIMEO_OLD = 0x15 constant SO_TIMESTAMPING (line 341) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 342) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 343) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 344) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 345) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 346) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 347) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 348) | SO_TXTIME = 0x3d constant SO_TYPE (line 349) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 350) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 351) | SO_ZEROCOPY = 0x3c constant TAB1 (line 352) | TAB1 = 0x800 constant TAB2 (line 353) | TAB2 = 0x1000 constant TAB3 (line 354) | TAB3 = 0x1800 constant TABDLY (line 355) | TABDLY = 0x1800 constant TCFLSH (line 356) | TCFLSH = 0x540b constant TCGETA (line 357) | TCGETA = 0x5405 constant TCGETS (line 358) | TCGETS = 0x5401 constant TCGETS2 (line 359) | TCGETS2 = 0x802c542a constant TCGETX (line 360) | TCGETX = 0x5432 constant TCSAFLUSH (line 361) | TCSAFLUSH = 0x2 constant TCSBRK (line 362) | TCSBRK = 0x5409 constant TCSBRKP (line 363) | TCSBRKP = 0x5425 constant TCSETA (line 364) | TCSETA = 0x5406 constant TCSETAF (line 365) | TCSETAF = 0x5408 constant TCSETAW (line 366) | TCSETAW = 0x5407 constant TCSETS (line 367) | TCSETS = 0x5402 constant TCSETS2 (line 368) | TCSETS2 = 0x402c542b constant TCSETSF (line 369) | TCSETSF = 0x5404 constant TCSETSF2 (line 370) | TCSETSF2 = 0x402c542d constant TCSETSW (line 371) | TCSETSW = 0x5403 constant TCSETSW2 (line 372) | TCSETSW2 = 0x402c542c constant TCSETX (line 373) | TCSETX = 0x5433 constant TCSETXF (line 374) | TCSETXF = 0x5434 constant TCSETXW (line 375) | TCSETXW = 0x5435 constant TCXONC (line 376) | TCXONC = 0x540a constant TFD_CLOEXEC (line 377) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 378) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 379) | TIOCCBRK = 0x5428 constant TIOCCONS (line 380) | TIOCCONS = 0x541d constant TIOCEXCL (line 381) | TIOCEXCL = 0x540c constant TIOCGDEV (line 382) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 383) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 384) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 385) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 386) | TIOCGISO7816 = 0x80285442 constant TIOCGLCKTRMIOS (line 387) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 388) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 389) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 390) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 391) | TIOCGPTN = 0x80045430 constant TIOCGPTPEER (line 392) | TIOCGPTPEER = 0x5441 constant TIOCGRS485 (line 393) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 394) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 395) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 396) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 397) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 398) | TIOCINQ = 0x541b constant TIOCLINUX (line 399) | TIOCLINUX = 0x541c constant TIOCMBIC (line 400) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 401) | TIOCMBIS = 0x5416 constant TIOCMGET (line 402) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 403) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 404) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 405) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 406) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 407) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 408) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 409) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 410) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 411) | TIOCM_SR = 0x10 constant TIOCM_ST (line 412) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 413) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 414) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 415) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 416) | TIOCPKT = 0x5420 constant TIOCSBRK (line 417) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 418) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 419) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 420) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 421) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 422) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 423) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 424) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 425) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 426) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 427) | TIOCSETD = 0x5423 constant TIOCSIG (line 428) | TIOCSIG = 0x40045436 constant TIOCSISO7816 (line 429) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 430) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 431) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 432) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 433) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 434) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 435) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 436) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 437) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 438) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 439) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 440) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 441) | TUNDETACHFILTER = 0x401054d6 constant TUNGETDEVNETNS (line 442) | TUNGETDEVNETNS = 0x54e3 constant TUNGETFEATURES (line 443) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 444) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 445) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 446) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 447) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 448) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 449) | TUNGETVNETLE = 0x800454dd constant TUNSETCARRIER (line 450) | TUNSETCARRIER = 0x400454e2 constant TUNSETDEBUG (line 451) | TUNSETDEBUG = 0x400454c9 constant TUNSETFILTEREBPF (line 452) | TUNSETFILTEREBPF = 0x800454e1 constant TUNSETGROUP (line 453) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 454) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 455) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 456) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 457) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 458) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 459) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 460) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 461) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 462) | TUNSETSNDBUF = 0x400454d4 constant TUNSETSTEERINGEBPF (line 463) | TUNSETSTEERINGEBPF = 0x800454e0 constant TUNSETTXFILTER (line 464) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 465) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 466) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 467) | TUNSETVNETLE = 0x400454dc constant UBI_IOCATT (line 468) | UBI_IOCATT = 0x40186f40 constant UBI_IOCDET (line 469) | UBI_IOCDET = 0x40046f41 constant UBI_IOCEBCH (line 470) | UBI_IOCEBCH = 0x40044f02 constant UBI_IOCEBER (line 471) | UBI_IOCEBER = 0x40044f01 constant UBI_IOCEBISMAP (line 472) | UBI_IOCEBISMAP = 0x80044f05 constant UBI_IOCEBMAP (line 473) | UBI_IOCEBMAP = 0x40084f03 constant UBI_IOCEBUNMAP (line 474) | UBI_IOCEBUNMAP = 0x40044f04 constant UBI_IOCMKVOL (line 475) | UBI_IOCMKVOL = 0x40986f00 constant UBI_IOCRMVOL (line 476) | UBI_IOCRMVOL = 0x40046f01 constant UBI_IOCRNVOL (line 477) | UBI_IOCRNVOL = 0x51106f03 constant UBI_IOCRPEB (line 478) | UBI_IOCRPEB = 0x40046f04 constant UBI_IOCRSVOL (line 479) | UBI_IOCRSVOL = 0x400c6f02 constant UBI_IOCSETVOLPROP (line 480) | UBI_IOCSETVOLPROP = 0x40104f06 constant UBI_IOCSPEB (line 481) | UBI_IOCSPEB = 0x40046f05 constant UBI_IOCVOLCRBLK (line 482) | UBI_IOCVOLCRBLK = 0x40804f07 constant UBI_IOCVOLRMBLK (line 483) | UBI_IOCVOLRMBLK = 0x4f08 constant UBI_IOCVOLUP (line 484) | UBI_IOCVOLUP = 0x40084f00 constant VDISCARD (line 485) | VDISCARD = 0xd constant VEOF (line 486) | VEOF = 0x4 constant VEOL (line 487) | VEOL = 0xb constant VEOL2 (line 488) | VEOL2 = 0x10 constant VMIN (line 489) | VMIN = 0x6 constant VREPRINT (line 490) | VREPRINT = 0xc constant VSTART (line 491) | VSTART = 0x8 constant VSTOP (line 492) | VSTOP = 0x9 constant VSUSP (line 493) | VSUSP = 0xa constant VSWTC (line 494) | VSWTC = 0x7 constant VT1 (line 495) | VT1 = 0x4000 constant VTDLY (line 496) | VTDLY = 0x4000 constant VTIME (line 497) | VTIME = 0x5 constant VWERASE (line 498) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 499) | WDIOC_GETBOOTSTATUS = 0x80045702 constant WDIOC_GETPRETIMEOUT (line 500) | WDIOC_GETPRETIMEOUT = 0x80045709 constant WDIOC_GETSTATUS (line 501) | WDIOC_GETSTATUS = 0x80045701 constant WDIOC_GETSUPPORT (line 502) | WDIOC_GETSUPPORT = 0x80285700 constant WDIOC_GETTEMP (line 503) | WDIOC_GETTEMP = 0x80045703 constant WDIOC_GETTIMELEFT (line 504) | WDIOC_GETTIMELEFT = 0x8004570a constant WDIOC_GETTIMEOUT (line 505) | WDIOC_GETTIMEOUT = 0x80045707 constant WDIOC_KEEPALIVE (line 506) | WDIOC_KEEPALIVE = 0x80045705 constant WDIOC_SETOPTIONS (line 507) | WDIOC_SETOPTIONS = 0x80045704 constant WORDSIZE (line 508) | WORDSIZE = 0x40 constant XCASE (line 509) | XCASE = 0x4 constant XTABS (line 510) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 511) | _HIDIOCGRAWNAME = 0x80804804 constant _HIDIOCGRAWPHYS (line 512) | _HIDIOCGRAWPHYS = 0x80404805 constant _HIDIOCGRAWUNIQ (line 513) | _HIDIOCGRAWUNIQ = 0x80404808 constant EADDRINUSE (line 518) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 519) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 520) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 521) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 522) | EALREADY = syscall.Errno(0x72) constant EBADE (line 523) | EBADE = syscall.Errno(0x34) constant EBADFD (line 524) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 525) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 526) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 527) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 528) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 529) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 530) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 531) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 532) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 533) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 534) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 535) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 536) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 537) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 538) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 539) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 540) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 541) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 542) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 543) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 544) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 545) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 546) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 547) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 548) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 549) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 550) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 551) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 552) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 553) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 554) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 555) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 556) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 557) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 558) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 559) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 560) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 561) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 562) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 563) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 564) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 565) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 566) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 567) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 568) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 569) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 570) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 571) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 572) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 573) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 574) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 575) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 576) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 577) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 578) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 579) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 580) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 581) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 582) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 583) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 584) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 585) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 586) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 587) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 588) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 589) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 590) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 591) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 592) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 593) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 594) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 595) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 596) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 597) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 598) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 599) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 600) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 601) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 602) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 603) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 604) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 605) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 606) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 607) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 608) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 609) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 610) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 611) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 612) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 613) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 614) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 615) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 616) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 621) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 622) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 623) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 624) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 625) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 626) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 627) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 628) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 629) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 630) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 631) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 632) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 633) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 634) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 635) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 636) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 637) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 638) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 639) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 640) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 641) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x80041270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x40041271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x1265 constant BLKFRASET (line 34) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x80041272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x127b constant BLKRAGET (line 38) | BLKRAGET = 0x1263 constant BLKRASET (line 39) | BLKRASET = 0x1262 constant BLKROGET (line 40) | BLKROGET = 0x125e constant BLKROSET (line 41) | BLKROSET = 0x125d constant BLKRRPART (line 42) | BLKRRPART = 0x125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x1268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x81484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x80104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x40049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x4020940d constant FLUSHO (line 79) | FLUSHO = 0x1000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x40806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x80046601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x8010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x40046602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant F_GETLK (line 87) | F_GETLK = 0xc constant F_GETLK64 (line 88) | F_GETLK64 = 0xc constant F_GETOWN (line 89) | F_GETOWN = 0x9 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0xd constant F_SETLK64 (line 92) | F_SETLK64 = 0xd constant F_SETLKW (line 93) | F_SETLKW = 0xe constant F_SETLKW64 (line 94) | F_SETLKW64 = 0xe constant F_SETOWN (line 95) | F_SETOWN = 0x8 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x80084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x90044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x80044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 121) | MAP_STACK = 0x20000 constant MAP_SYNC (line 122) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x40084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x40104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x40084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x80204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x80c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x80044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x80084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x40084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc00c4d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x40084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x40084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc00c4d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x4d13 constant NFDBITS (line 139) | NFDBITS = 0x20 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0xb703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0xb704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0xb702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0xb701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x40044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x400c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x800c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x80044d0d constant O_APPEND (line 152) | O_APPEND = 0x400 constant O_ASYNC (line 153) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x40 constant O_DIRECT (line 156) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 158) | O_DSYNC = 0x1000 constant O_EXCL (line 159) | O_EXCL = 0x80 constant O_FSYNC (line 160) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x20000 constant O_NDELAY (line 162) | O_NDELAY = 0x800 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x800 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x101000 constant O_SYNC (line 169) | O_SYNC = 0x101000 constant O_TMPFILE (line 170) | O_TMPFILE = 0x404000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x80042407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4004240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x40042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x4004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x40047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x40047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x4004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x4004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x7439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x80047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x80047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x80047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x8004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x8008743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x8008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x8010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x80487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x80047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x80047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x80047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x80207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x40087446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x40047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x400c744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x40047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x40047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x40047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x4004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x40047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x4008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x40087447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x40047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x4020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x7434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffff constant PTRACE_GETCRUNCHREGS (line 220) | PTRACE_GETCRUNCHREGS = 0x19 constant PTRACE_GETFDPIC (line 221) | PTRACE_GETFDPIC = 0x1f constant PTRACE_GETFDPIC_EXEC (line 222) | PTRACE_GETFDPIC_EXEC = 0x0 constant PTRACE_GETFDPIC_INTERP (line 223) | PTRACE_GETFDPIC_INTERP = 0x1 constant PTRACE_GETFPREGS (line 224) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETHBPREGS (line 225) | PTRACE_GETHBPREGS = 0x1d constant PTRACE_GETVFPREGS (line 226) | PTRACE_GETVFPREGS = 0x1b constant PTRACE_GETWMMXREGS (line 227) | PTRACE_GETWMMXREGS = 0x12 constant PTRACE_GET_THREAD_AREA (line 228) | PTRACE_GET_THREAD_AREA = 0x16 constant PTRACE_OLDSETOPTIONS (line 229) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_SETCRUNCHREGS (line 230) | PTRACE_SETCRUNCHREGS = 0x1a constant PTRACE_SETFPREGS (line 231) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETHBPREGS (line 232) | PTRACE_SETHBPREGS = 0x1e constant PTRACE_SETVFPREGS (line 233) | PTRACE_SETVFPREGS = 0x1c constant PTRACE_SETWMMXREGS (line 234) | PTRACE_SETWMMXREGS = 0x13 constant PTRACE_SET_SYSCALL (line 235) | PTRACE_SET_SYSCALL = 0x17 constant PT_DATA_ADDR (line 236) | PT_DATA_ADDR = 0x10004 constant PT_TEXT_ADDR (line 237) | PT_TEXT_ADDR = 0x10000 constant PT_TEXT_END_ADDR (line 238) | PT_TEXT_END_ADDR = 0x10008 constant RLIMIT_AS (line 239) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 240) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 241) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 242) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 243) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 244) | RNDADDENTROPY = 0x40085203 constant RNDADDTOENTCNT (line 245) | RNDADDTOENTCNT = 0x40045201 constant RNDCLEARPOOL (line 246) | RNDCLEARPOOL = 0x5206 constant RNDGETENTCNT (line 247) | RNDGETENTCNT = 0x80045200 constant RNDGETPOOL (line 248) | RNDGETPOOL = 0x80085202 constant RNDRESEEDCRNG (line 249) | RNDRESEEDCRNG = 0x5207 constant RNDZAPENTCNT (line 250) | RNDZAPENTCNT = 0x5204 constant RTC_AIE_OFF (line 251) | RTC_AIE_OFF = 0x7002 constant RTC_AIE_ON (line 252) | RTC_AIE_ON = 0x7001 constant RTC_ALM_READ (line 253) | RTC_ALM_READ = 0x80247008 constant RTC_ALM_SET (line 254) | RTC_ALM_SET = 0x40247007 constant RTC_EPOCH_READ (line 255) | RTC_EPOCH_READ = 0x8004700d constant RTC_EPOCH_SET (line 256) | RTC_EPOCH_SET = 0x4004700e constant RTC_IRQP_READ (line 257) | RTC_IRQP_READ = 0x8004700b constant RTC_IRQP_SET (line 258) | RTC_IRQP_SET = 0x4004700c constant RTC_PIE_OFF (line 259) | RTC_PIE_OFF = 0x7006 constant RTC_PIE_ON (line 260) | RTC_PIE_ON = 0x7005 constant RTC_PLL_GET (line 261) | RTC_PLL_GET = 0x801c7011 constant RTC_PLL_SET (line 262) | RTC_PLL_SET = 0x401c7012 constant RTC_RD_TIME (line 263) | RTC_RD_TIME = 0x80247009 constant RTC_SET_TIME (line 264) | RTC_SET_TIME = 0x4024700a constant RTC_UIE_OFF (line 265) | RTC_UIE_OFF = 0x7004 constant RTC_UIE_ON (line 266) | RTC_UIE_ON = 0x7003 constant RTC_VL_CLR (line 267) | RTC_VL_CLR = 0x7014 constant RTC_VL_READ (line 268) | RTC_VL_READ = 0x80047013 constant RTC_WIE_OFF (line 269) | RTC_WIE_OFF = 0x7010 constant RTC_WIE_ON (line 270) | RTC_WIE_ON = 0x700f constant RTC_WKALM_RD (line 271) | RTC_WKALM_RD = 0x80287010 constant RTC_WKALM_SET (line 272) | RTC_WKALM_SET = 0x4028700f constant SCM_TIMESTAMPING (line 273) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 274) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 275) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 276) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 277) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 278) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 279) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 280) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 281) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 282) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 283) | SIOCGSTAMPNS_NEW = 0x80108907 constant SIOCGSTAMP_NEW (line 284) | SIOCGSTAMP_NEW = 0x80108906 constant SIOCINQ (line 285) | SIOCINQ = 0x541b constant SIOCOUTQ (line 286) | SIOCOUTQ = 0x5411 constant SIOCSPGRP (line 287) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 288) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 289) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 290) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 291) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 292) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 293) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 294) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 295) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 296) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 297) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 298) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 299) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 300) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 301) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 302) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 303) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 304) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 305) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 306) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 307) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 308) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 309) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 310) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 311) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 312) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 313) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 314) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 315) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 316) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 317) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 318) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 319) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 320) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 321) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 322) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 323) | SO_PEERCRED = 0x11 constant SO_PEERGROUPS (line 324) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 325) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 326) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 327) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 328) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 329) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 330) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 331) | SO_RCVTIMEO = 0x14 constant SO_RCVTIMEO_NEW (line 332) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 333) | SO_RCVTIMEO_OLD = 0x14 constant SO_REUSEADDR (line 334) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 335) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 336) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 337) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 338) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 339) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 340) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 341) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 342) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 343) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 344) | SO_SNDTIMEO = 0x15 constant SO_SNDTIMEO_NEW (line 345) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 346) | SO_SNDTIMEO_OLD = 0x15 constant SO_TIMESTAMPING (line 347) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 348) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 349) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 350) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 351) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 352) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 353) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 354) | SO_TXTIME = 0x3d constant SO_TYPE (line 355) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 356) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 357) | SO_ZEROCOPY = 0x3c constant TAB1 (line 358) | TAB1 = 0x800 constant TAB2 (line 359) | TAB2 = 0x1000 constant TAB3 (line 360) | TAB3 = 0x1800 constant TABDLY (line 361) | TABDLY = 0x1800 constant TCFLSH (line 362) | TCFLSH = 0x540b constant TCGETA (line 363) | TCGETA = 0x5405 constant TCGETS (line 364) | TCGETS = 0x5401 constant TCGETS2 (line 365) | TCGETS2 = 0x802c542a constant TCGETX (line 366) | TCGETX = 0x5432 constant TCSAFLUSH (line 367) | TCSAFLUSH = 0x2 constant TCSBRK (line 368) | TCSBRK = 0x5409 constant TCSBRKP (line 369) | TCSBRKP = 0x5425 constant TCSETA (line 370) | TCSETA = 0x5406 constant TCSETAF (line 371) | TCSETAF = 0x5408 constant TCSETAW (line 372) | TCSETAW = 0x5407 constant TCSETS (line 373) | TCSETS = 0x5402 constant TCSETS2 (line 374) | TCSETS2 = 0x402c542b constant TCSETSF (line 375) | TCSETSF = 0x5404 constant TCSETSF2 (line 376) | TCSETSF2 = 0x402c542d constant TCSETSW (line 377) | TCSETSW = 0x5403 constant TCSETSW2 (line 378) | TCSETSW2 = 0x402c542c constant TCSETX (line 379) | TCSETX = 0x5433 constant TCSETXF (line 380) | TCSETXF = 0x5434 constant TCSETXW (line 381) | TCSETXW = 0x5435 constant TCXONC (line 382) | TCXONC = 0x540a constant TFD_CLOEXEC (line 383) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 384) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 385) | TIOCCBRK = 0x5428 constant TIOCCONS (line 386) | TIOCCONS = 0x541d constant TIOCEXCL (line 387) | TIOCEXCL = 0x540c constant TIOCGDEV (line 388) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 389) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 390) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 391) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 392) | TIOCGISO7816 = 0x80285442 constant TIOCGLCKTRMIOS (line 393) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 394) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 395) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 396) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 397) | TIOCGPTN = 0x80045430 constant TIOCGPTPEER (line 398) | TIOCGPTPEER = 0x5441 constant TIOCGRS485 (line 399) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 400) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 401) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 402) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 403) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 404) | TIOCINQ = 0x541b constant TIOCLINUX (line 405) | TIOCLINUX = 0x541c constant TIOCMBIC (line 406) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 407) | TIOCMBIS = 0x5416 constant TIOCMGET (line 408) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 409) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 410) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 411) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 412) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 413) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 414) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 415) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 416) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 417) | TIOCM_SR = 0x10 constant TIOCM_ST (line 418) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 419) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 420) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 421) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 422) | TIOCPKT = 0x5420 constant TIOCSBRK (line 423) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 424) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 425) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 426) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 427) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 428) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 429) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 430) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 431) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 432) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 433) | TIOCSETD = 0x5423 constant TIOCSIG (line 434) | TIOCSIG = 0x40045436 constant TIOCSISO7816 (line 435) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 436) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 437) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 438) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 439) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 440) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 441) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 442) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 443) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 444) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 445) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 446) | TUNATTACHFILTER = 0x400854d5 constant TUNDETACHFILTER (line 447) | TUNDETACHFILTER = 0x400854d6 constant TUNGETDEVNETNS (line 448) | TUNGETDEVNETNS = 0x54e3 constant TUNGETFEATURES (line 449) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 450) | TUNGETFILTER = 0x800854db constant TUNGETIFF (line 451) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 452) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 453) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 454) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 455) | TUNGETVNETLE = 0x800454dd constant TUNSETCARRIER (line 456) | TUNSETCARRIER = 0x400454e2 constant TUNSETDEBUG (line 457) | TUNSETDEBUG = 0x400454c9 constant TUNSETFILTEREBPF (line 458) | TUNSETFILTEREBPF = 0x800454e1 constant TUNSETGROUP (line 459) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 460) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 461) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 462) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 463) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 464) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 465) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 466) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 467) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 468) | TUNSETSNDBUF = 0x400454d4 constant TUNSETSTEERINGEBPF (line 469) | TUNSETSTEERINGEBPF = 0x800454e0 constant TUNSETTXFILTER (line 470) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 471) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 472) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 473) | TUNSETVNETLE = 0x400454dc constant UBI_IOCATT (line 474) | UBI_IOCATT = 0x40186f40 constant UBI_IOCDET (line 475) | UBI_IOCDET = 0x40046f41 constant UBI_IOCEBCH (line 476) | UBI_IOCEBCH = 0x40044f02 constant UBI_IOCEBER (line 477) | UBI_IOCEBER = 0x40044f01 constant UBI_IOCEBISMAP (line 478) | UBI_IOCEBISMAP = 0x80044f05 constant UBI_IOCEBMAP (line 479) | UBI_IOCEBMAP = 0x40084f03 constant UBI_IOCEBUNMAP (line 480) | UBI_IOCEBUNMAP = 0x40044f04 constant UBI_IOCMKVOL (line 481) | UBI_IOCMKVOL = 0x40986f00 constant UBI_IOCRMVOL (line 482) | UBI_IOCRMVOL = 0x40046f01 constant UBI_IOCRNVOL (line 483) | UBI_IOCRNVOL = 0x51106f03 constant UBI_IOCRPEB (line 484) | UBI_IOCRPEB = 0x40046f04 constant UBI_IOCRSVOL (line 485) | UBI_IOCRSVOL = 0x400c6f02 constant UBI_IOCSETVOLPROP (line 486) | UBI_IOCSETVOLPROP = 0x40104f06 constant UBI_IOCSPEB (line 487) | UBI_IOCSPEB = 0x40046f05 constant UBI_IOCVOLCRBLK (line 488) | UBI_IOCVOLCRBLK = 0x40804f07 constant UBI_IOCVOLRMBLK (line 489) | UBI_IOCVOLRMBLK = 0x4f08 constant UBI_IOCVOLUP (line 490) | UBI_IOCVOLUP = 0x40084f00 constant VDISCARD (line 491) | VDISCARD = 0xd constant VEOF (line 492) | VEOF = 0x4 constant VEOL (line 493) | VEOL = 0xb constant VEOL2 (line 494) | VEOL2 = 0x10 constant VMIN (line 495) | VMIN = 0x6 constant VREPRINT (line 496) | VREPRINT = 0xc constant VSTART (line 497) | VSTART = 0x8 constant VSTOP (line 498) | VSTOP = 0x9 constant VSUSP (line 499) | VSUSP = 0xa constant VSWTC (line 500) | VSWTC = 0x7 constant VT1 (line 501) | VT1 = 0x4000 constant VTDLY (line 502) | VTDLY = 0x4000 constant VTIME (line 503) | VTIME = 0x5 constant VWERASE (line 504) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 505) | WDIOC_GETBOOTSTATUS = 0x80045702 constant WDIOC_GETPRETIMEOUT (line 506) | WDIOC_GETPRETIMEOUT = 0x80045709 constant WDIOC_GETSTATUS (line 507) | WDIOC_GETSTATUS = 0x80045701 constant WDIOC_GETSUPPORT (line 508) | WDIOC_GETSUPPORT = 0x80285700 constant WDIOC_GETTEMP (line 509) | WDIOC_GETTEMP = 0x80045703 constant WDIOC_GETTIMELEFT (line 510) | WDIOC_GETTIMELEFT = 0x8004570a constant WDIOC_GETTIMEOUT (line 511) | WDIOC_GETTIMEOUT = 0x80045707 constant WDIOC_KEEPALIVE (line 512) | WDIOC_KEEPALIVE = 0x80045705 constant WDIOC_SETOPTIONS (line 513) | WDIOC_SETOPTIONS = 0x80045704 constant WORDSIZE (line 514) | WORDSIZE = 0x20 constant XCASE (line 515) | XCASE = 0x4 constant XTABS (line 516) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 517) | _HIDIOCGRAWNAME = 0x80804804 constant _HIDIOCGRAWPHYS (line 518) | _HIDIOCGRAWPHYS = 0x80404805 constant _HIDIOCGRAWUNIQ (line 519) | _HIDIOCGRAWUNIQ = 0x80404808 constant EADDRINUSE (line 524) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 525) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 526) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 527) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 528) | EALREADY = syscall.Errno(0x72) constant EBADE (line 529) | EBADE = syscall.Errno(0x34) constant EBADFD (line 530) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 531) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 532) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 533) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 534) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 535) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 536) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 537) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 538) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 539) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 540) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 541) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 542) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 543) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 544) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 545) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 546) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 547) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 548) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 549) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 550) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 551) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 552) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 553) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 554) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 555) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 556) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 557) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 558) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 559) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 560) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 561) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 562) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 563) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 564) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 565) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 566) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 567) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 568) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 569) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 570) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 571) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 572) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 573) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 574) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 575) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 576) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 577) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 578) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 579) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 580) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 581) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 582) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 583) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 584) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 585) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 586) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 587) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 588) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 589) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 590) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 591) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 592) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 593) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 594) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 595) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 596) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 597) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 598) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 599) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 600) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 601) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 602) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 603) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 604) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 605) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 606) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 607) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 608) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 609) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 610) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 611) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 612) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 613) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 614) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 615) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 616) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 617) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 618) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 619) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 620) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 621) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 622) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 627) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 628) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 629) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 630) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 631) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 632) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 633) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 634) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 635) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 636) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 637) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 638) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 639) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 640) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 641) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 642) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 643) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 644) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 645) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 646) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 647) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x1265 constant BLKFRASET (line 34) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x127b constant BLKRAGET (line 38) | BLKRAGET = 0x1263 constant BLKRASET (line 39) | BLKRASET = 0x1262 constant BLKROGET (line 40) | BLKROGET = 0x125e constant BLKROSET (line 41) | BLKROSET = 0x125d constant BLKRRPART (line 42) | BLKRRPART = 0x125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x1268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x81484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x80104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant ESR_MAGIC (line 74) | ESR_MAGIC = 0x45535201 constant EXTPROC (line 75) | EXTPROC = 0x10000 constant EXTRA_MAGIC (line 76) | EXTRA_MAGIC = 0x45585401 constant FF1 (line 77) | FF1 = 0x8000 constant FFDLY (line 78) | FFDLY = 0x8000 constant FICLONE (line 79) | FICLONE = 0x40049409 constant FICLONERANGE (line 80) | FICLONERANGE = 0x4020940d constant FLUSHO (line 81) | FLUSHO = 0x1000 constant FPSIMD_MAGIC (line 82) | FPSIMD_MAGIC = 0x46508001 constant FS_IOC_ENABLE_VERITY (line 83) | FS_IOC_ENABLE_VERITY = 0x40806685 constant FS_IOC_GETFLAGS (line 84) | FS_IOC_GETFLAGS = 0x80086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 85) | FS_IOC_GET_ENCRYPTION_NONCE = 0x8010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 86) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 87) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SETFLAGS (line 88) | FS_IOC_SETFLAGS = 0x40086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 89) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant F_GETLK (line 90) | F_GETLK = 0x5 constant F_GETLK64 (line 91) | F_GETLK64 = 0x5 constant F_GETOWN (line 92) | F_GETOWN = 0x9 constant F_RDLCK (line 93) | F_RDLCK = 0x0 constant F_SETLK (line 94) | F_SETLK = 0x6 constant F_SETLK64 (line 95) | F_SETLK64 = 0x6 constant F_SETLKW (line 96) | F_SETLKW = 0x7 constant F_SETLKW64 (line 97) | F_SETLKW64 = 0x7 constant F_SETOWN (line 98) | F_SETOWN = 0x8 constant F_UNLCK (line 99) | F_UNLCK = 0x2 constant F_WRLCK (line 100) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 101) | HIDIOCGRAWINFO = 0x80084803 constant HIDIOCGRDESC (line 102) | HIDIOCGRDESC = 0x90044802 constant HIDIOCGRDESCSIZE (line 103) | HIDIOCGRDESCSIZE = 0x80044801 constant HUPCL (line 104) | HUPCL = 0x400 constant ICANON (line 105) | ICANON = 0x2 constant IEXTEN (line 106) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 107) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 108) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 109) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9 constant ISIG (line 110) | ISIG = 0x1 constant IUCLC (line 111) | IUCLC = 0x200 constant IXOFF (line 112) | IXOFF = 0x1000 constant IXON (line 113) | IXON = 0x400 constant MAP_ANON (line 114) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 115) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 116) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 117) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 118) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 119) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 120) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 121) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 122) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 123) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 124) | MAP_STACK = 0x20000 constant MAP_SYNC (line 125) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 126) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 127) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 128) | MCL_ONFAULT = 0x4 constant MEMERASE (line 129) | MEMERASE = 0x40084d02 constant MEMERASE64 (line 130) | MEMERASE64 = 0x40104d14 constant MEMGETBADBLOCK (line 131) | MEMGETBADBLOCK = 0x40084d0b constant MEMGETINFO (line 132) | MEMGETINFO = 0x80204d01 constant MEMGETOOBSEL (line 133) | MEMGETOOBSEL = 0x80c84d0a constant MEMGETREGIONCOUNT (line 134) | MEMGETREGIONCOUNT = 0x80044d07 constant MEMISLOCKED (line 135) | MEMISLOCKED = 0x80084d17 constant MEMLOCK (line 136) | MEMLOCK = 0x40084d05 constant MEMREADOOB (line 137) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 138) | MEMSETBADBLOCK = 0x40084d0c constant MEMUNLOCK (line 139) | MEMUNLOCK = 0x40084d06 constant MEMWRITEOOB (line 140) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 141) | MTDFILEMODE = 0x4d13 constant NFDBITS (line 142) | NFDBITS = 0x40 constant NLDLY (line 143) | NLDLY = 0x100 constant NOFLSH (line 144) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 145) | NS_GET_NSTYPE = 0xb703 constant NS_GET_OWNER_UID (line 146) | NS_GET_OWNER_UID = 0xb704 constant NS_GET_PARENT (line 147) | NS_GET_PARENT = 0xb702 constant NS_GET_USERNS (line 148) | NS_GET_USERNS = 0xb701 constant OLCUC (line 149) | OLCUC = 0x2 constant ONLCR (line 150) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 151) | OTPGETREGIONCOUNT = 0x40044d0e constant OTPGETREGIONINFO (line 152) | OTPGETREGIONINFO = 0x400c4d0f constant OTPLOCK (line 153) | OTPLOCK = 0x800c4d10 constant OTPSELECT (line 154) | OTPSELECT = 0x80044d0d constant O_APPEND (line 155) | O_APPEND = 0x400 constant O_ASYNC (line 156) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 157) | O_CLOEXEC = 0x80000 constant O_CREAT (line 158) | O_CREAT = 0x40 constant O_DIRECT (line 159) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 160) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 161) | O_DSYNC = 0x1000 constant O_EXCL (line 162) | O_EXCL = 0x80 constant O_FSYNC (line 163) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 164) | O_LARGEFILE = 0x0 constant O_NDELAY (line 165) | O_NDELAY = 0x800 constant O_NOATIME (line 166) | O_NOATIME = 0x40000 constant O_NOCTTY (line 167) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 168) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 169) | O_NONBLOCK = 0x800 constant O_PATH (line 170) | O_PATH = 0x200000 constant O_RSYNC (line 171) | O_RSYNC = 0x101000 constant O_SYNC (line 172) | O_SYNC = 0x101000 constant O_TMPFILE (line 173) | O_TMPFILE = 0x404000 constant O_TRUNC (line 174) | O_TRUNC = 0x200 constant PARENB (line 175) | PARENB = 0x100 constant PARODD (line 176) | PARODD = 0x200 constant PENDIN (line 177) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 178) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 179) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 180) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 181) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 182) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 183) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_QUERY_BPF (line 184) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 185) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 186) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 187) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 188) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 189) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PPPIOCATTACH (line 190) | PPPIOCATTACH = 0x4004743d constant PPPIOCATTCHAN (line 191) | PPPIOCATTCHAN = 0x40047438 constant PPPIOCBRIDGECHAN (line 192) | PPPIOCBRIDGECHAN = 0x40047435 constant PPPIOCCONNECT (line 193) | PPPIOCCONNECT = 0x4004743a constant PPPIOCDETACH (line 194) | PPPIOCDETACH = 0x4004743c constant PPPIOCDISCONN (line 195) | PPPIOCDISCONN = 0x7439 constant PPPIOCGASYNCMAP (line 196) | PPPIOCGASYNCMAP = 0x80047458 constant PPPIOCGCHAN (line 197) | PPPIOCGCHAN = 0x80047437 constant PPPIOCGDEBUG (line 198) | PPPIOCGDEBUG = 0x80047441 constant PPPIOCGFLAGS (line 199) | PPPIOCGFLAGS = 0x8004745a constant PPPIOCGIDLE (line 200) | PPPIOCGIDLE = 0x8010743f constant PPPIOCGIDLE32 (line 201) | PPPIOCGIDLE32 = 0x8008743f constant PPPIOCGIDLE64 (line 202) | PPPIOCGIDLE64 = 0x8010743f constant PPPIOCGL2TPSTATS (line 203) | PPPIOCGL2TPSTATS = 0x80487436 constant PPPIOCGMRU (line 204) | PPPIOCGMRU = 0x80047453 constant PPPIOCGRASYNCMAP (line 205) | PPPIOCGRASYNCMAP = 0x80047455 constant PPPIOCGUNIT (line 206) | PPPIOCGUNIT = 0x80047456 constant PPPIOCGXASYNCMAP (line 207) | PPPIOCGXASYNCMAP = 0x80207450 constant PPPIOCSACTIVE (line 208) | PPPIOCSACTIVE = 0x40107446 constant PPPIOCSASYNCMAP (line 209) | PPPIOCSASYNCMAP = 0x40047457 constant PPPIOCSCOMPRESS (line 210) | PPPIOCSCOMPRESS = 0x4010744d constant PPPIOCSDEBUG (line 211) | PPPIOCSDEBUG = 0x40047440 constant PPPIOCSFLAGS (line 212) | PPPIOCSFLAGS = 0x40047459 constant PPPIOCSMAXCID (line 213) | PPPIOCSMAXCID = 0x40047451 constant PPPIOCSMRRU (line 214) | PPPIOCSMRRU = 0x4004743b constant PPPIOCSMRU (line 215) | PPPIOCSMRU = 0x40047452 constant PPPIOCSNPMODE (line 216) | PPPIOCSNPMODE = 0x4008744b constant PPPIOCSPASS (line 217) | PPPIOCSPASS = 0x40107447 constant PPPIOCSRASYNCMAP (line 218) | PPPIOCSRASYNCMAP = 0x40047454 constant PPPIOCSXASYNCMAP (line 219) | PPPIOCSXASYNCMAP = 0x4020744f constant PPPIOCUNBRIDGECHAN (line 220) | PPPIOCUNBRIDGECHAN = 0x7434 constant PPPIOCXFERUNIT (line 221) | PPPIOCXFERUNIT = 0x744e constant PROT_BTI (line 222) | PROT_BTI = 0x10 constant PROT_MTE (line 223) | PROT_MTE = 0x20 constant PR_SET_PTRACER_ANY (line 224) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_PEEKMTETAGS (line 225) | PTRACE_PEEKMTETAGS = 0x21 constant PTRACE_POKEMTETAGS (line 226) | PTRACE_POKEMTETAGS = 0x22 constant PTRACE_SYSEMU (line 227) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 228) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant RLIMIT_AS (line 229) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 230) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 231) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 232) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 233) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 234) | RNDADDENTROPY = 0x40085203 constant RNDADDTOENTCNT (line 235) | RNDADDTOENTCNT = 0x40045201 constant RNDCLEARPOOL (line 236) | RNDCLEARPOOL = 0x5206 constant RNDGETENTCNT (line 237) | RNDGETENTCNT = 0x80045200 constant RNDGETPOOL (line 238) | RNDGETPOOL = 0x80085202 constant RNDRESEEDCRNG (line 239) | RNDRESEEDCRNG = 0x5207 constant RNDZAPENTCNT (line 240) | RNDZAPENTCNT = 0x5204 constant RTC_AIE_OFF (line 241) | RTC_AIE_OFF = 0x7002 constant RTC_AIE_ON (line 242) | RTC_AIE_ON = 0x7001 constant RTC_ALM_READ (line 243) | RTC_ALM_READ = 0x80247008 constant RTC_ALM_SET (line 244) | RTC_ALM_SET = 0x40247007 constant RTC_EPOCH_READ (line 245) | RTC_EPOCH_READ = 0x8008700d constant RTC_EPOCH_SET (line 246) | RTC_EPOCH_SET = 0x4008700e constant RTC_IRQP_READ (line 247) | RTC_IRQP_READ = 0x8008700b constant RTC_IRQP_SET (line 248) | RTC_IRQP_SET = 0x4008700c constant RTC_PIE_OFF (line 249) | RTC_PIE_OFF = 0x7006 constant RTC_PIE_ON (line 250) | RTC_PIE_ON = 0x7005 constant RTC_PLL_GET (line 251) | RTC_PLL_GET = 0x80207011 constant RTC_PLL_SET (line 252) | RTC_PLL_SET = 0x40207012 constant RTC_RD_TIME (line 253) | RTC_RD_TIME = 0x80247009 constant RTC_SET_TIME (line 254) | RTC_SET_TIME = 0x4024700a constant RTC_UIE_OFF (line 255) | RTC_UIE_OFF = 0x7004 constant RTC_UIE_ON (line 256) | RTC_UIE_ON = 0x7003 constant RTC_VL_CLR (line 257) | RTC_VL_CLR = 0x7014 constant RTC_VL_READ (line 258) | RTC_VL_READ = 0x80047013 constant RTC_WIE_OFF (line 259) | RTC_WIE_OFF = 0x7010 constant RTC_WIE_ON (line 260) | RTC_WIE_ON = 0x700f constant RTC_WKALM_RD (line 261) | RTC_WKALM_RD = 0x80287010 constant RTC_WKALM_SET (line 262) | RTC_WKALM_SET = 0x4028700f constant SCM_TIMESTAMPING (line 263) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 264) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 265) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 266) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 267) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 268) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 269) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 270) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 271) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 272) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 273) | SIOCGSTAMPNS_NEW = 0x80108907 constant SIOCGSTAMP_NEW (line 274) | SIOCGSTAMP_NEW = 0x80108906 constant SIOCINQ (line 275) | SIOCINQ = 0x541b constant SIOCOUTQ (line 276) | SIOCOUTQ = 0x5411 constant SIOCSPGRP (line 277) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 278) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 279) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 280) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 281) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 282) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 283) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 284) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 285) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 286) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 287) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 288) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 289) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 290) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 291) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 292) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 293) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 294) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 295) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 296) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 297) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 298) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 299) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 300) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 301) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 302) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 303) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 304) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 305) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 306) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 307) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 308) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 309) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 310) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 311) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 312) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 313) | SO_PEERCRED = 0x11 constant SO_PEERGROUPS (line 314) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 315) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 316) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 317) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 318) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 319) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 320) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 321) | SO_RCVTIMEO = 0x14 constant SO_RCVTIMEO_NEW (line 322) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 323) | SO_RCVTIMEO_OLD = 0x14 constant SO_REUSEADDR (line 324) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 325) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 326) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 327) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 328) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 329) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 330) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 331) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 332) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 333) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 334) | SO_SNDTIMEO = 0x15 constant SO_SNDTIMEO_NEW (line 335) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 336) | SO_SNDTIMEO_OLD = 0x15 constant SO_TIMESTAMPING (line 337) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 338) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 339) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 340) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 341) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 342) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 343) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 344) | SO_TXTIME = 0x3d constant SO_TYPE (line 345) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 346) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 347) | SO_ZEROCOPY = 0x3c constant SVE_MAGIC (line 348) | SVE_MAGIC = 0x53564501 constant TAB1 (line 349) | TAB1 = 0x800 constant TAB2 (line 350) | TAB2 = 0x1000 constant TAB3 (line 351) | TAB3 = 0x1800 constant TABDLY (line 352) | TABDLY = 0x1800 constant TCFLSH (line 353) | TCFLSH = 0x540b constant TCGETA (line 354) | TCGETA = 0x5405 constant TCGETS (line 355) | TCGETS = 0x5401 constant TCGETS2 (line 356) | TCGETS2 = 0x802c542a constant TCGETX (line 357) | TCGETX = 0x5432 constant TCSAFLUSH (line 358) | TCSAFLUSH = 0x2 constant TCSBRK (line 359) | TCSBRK = 0x5409 constant TCSBRKP (line 360) | TCSBRKP = 0x5425 constant TCSETA (line 361) | TCSETA = 0x5406 constant TCSETAF (line 362) | TCSETAF = 0x5408 constant TCSETAW (line 363) | TCSETAW = 0x5407 constant TCSETS (line 364) | TCSETS = 0x5402 constant TCSETS2 (line 365) | TCSETS2 = 0x402c542b constant TCSETSF (line 366) | TCSETSF = 0x5404 constant TCSETSF2 (line 367) | TCSETSF2 = 0x402c542d constant TCSETSW (line 368) | TCSETSW = 0x5403 constant TCSETSW2 (line 369) | TCSETSW2 = 0x402c542c constant TCSETX (line 370) | TCSETX = 0x5433 constant TCSETXF (line 371) | TCSETXF = 0x5434 constant TCSETXW (line 372) | TCSETXW = 0x5435 constant TCXONC (line 373) | TCXONC = 0x540a constant TFD_CLOEXEC (line 374) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 375) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 376) | TIOCCBRK = 0x5428 constant TIOCCONS (line 377) | TIOCCONS = 0x541d constant TIOCEXCL (line 378) | TIOCEXCL = 0x540c constant TIOCGDEV (line 379) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 380) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 381) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 382) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 383) | TIOCGISO7816 = 0x80285442 constant TIOCGLCKTRMIOS (line 384) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 385) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 386) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 387) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 388) | TIOCGPTN = 0x80045430 constant TIOCGPTPEER (line 389) | TIOCGPTPEER = 0x5441 constant TIOCGRS485 (line 390) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 391) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 392) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 393) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 394) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 395) | TIOCINQ = 0x541b constant TIOCLINUX (line 396) | TIOCLINUX = 0x541c constant TIOCMBIC (line 397) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 398) | TIOCMBIS = 0x5416 constant TIOCMGET (line 399) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 400) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 401) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 402) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 403) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 404) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 405) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 406) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 407) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 408) | TIOCM_SR = 0x10 constant TIOCM_ST (line 409) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 410) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 411) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 412) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 413) | TIOCPKT = 0x5420 constant TIOCSBRK (line 414) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 415) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 416) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 417) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 418) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 419) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 420) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 421) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 422) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 423) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 424) | TIOCSETD = 0x5423 constant TIOCSIG (line 425) | TIOCSIG = 0x40045436 constant TIOCSISO7816 (line 426) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 427) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 428) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 429) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 430) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 431) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 432) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 433) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 434) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 435) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 436) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 437) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 438) | TUNDETACHFILTER = 0x401054d6 constant TUNGETDEVNETNS (line 439) | TUNGETDEVNETNS = 0x54e3 constant TUNGETFEATURES (line 440) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 441) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 442) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 443) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 444) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 445) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 446) | TUNGETVNETLE = 0x800454dd constant TUNSETCARRIER (line 447) | TUNSETCARRIER = 0x400454e2 constant TUNSETDEBUG (line 448) | TUNSETDEBUG = 0x400454c9 constant TUNSETFILTEREBPF (line 449) | TUNSETFILTEREBPF = 0x800454e1 constant TUNSETGROUP (line 450) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 451) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 452) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 453) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 454) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 455) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 456) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 457) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 458) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 459) | TUNSETSNDBUF = 0x400454d4 constant TUNSETSTEERINGEBPF (line 460) | TUNSETSTEERINGEBPF = 0x800454e0 constant TUNSETTXFILTER (line 461) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 462) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 463) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 464) | TUNSETVNETLE = 0x400454dc constant UBI_IOCATT (line 465) | UBI_IOCATT = 0x40186f40 constant UBI_IOCDET (line 466) | UBI_IOCDET = 0x40046f41 constant UBI_IOCEBCH (line 467) | UBI_IOCEBCH = 0x40044f02 constant UBI_IOCEBER (line 468) | UBI_IOCEBER = 0x40044f01 constant UBI_IOCEBISMAP (line 469) | UBI_IOCEBISMAP = 0x80044f05 constant UBI_IOCEBMAP (line 470) | UBI_IOCEBMAP = 0x40084f03 constant UBI_IOCEBUNMAP (line 471) | UBI_IOCEBUNMAP = 0x40044f04 constant UBI_IOCMKVOL (line 472) | UBI_IOCMKVOL = 0x40986f00 constant UBI_IOCRMVOL (line 473) | UBI_IOCRMVOL = 0x40046f01 constant UBI_IOCRNVOL (line 474) | UBI_IOCRNVOL = 0x51106f03 constant UBI_IOCRPEB (line 475) | UBI_IOCRPEB = 0x40046f04 constant UBI_IOCRSVOL (line 476) | UBI_IOCRSVOL = 0x400c6f02 constant UBI_IOCSETVOLPROP (line 477) | UBI_IOCSETVOLPROP = 0x40104f06 constant UBI_IOCSPEB (line 478) | UBI_IOCSPEB = 0x40046f05 constant UBI_IOCVOLCRBLK (line 479) | UBI_IOCVOLCRBLK = 0x40804f07 constant UBI_IOCVOLRMBLK (line 480) | UBI_IOCVOLRMBLK = 0x4f08 constant UBI_IOCVOLUP (line 481) | UBI_IOCVOLUP = 0x40084f00 constant VDISCARD (line 482) | VDISCARD = 0xd constant VEOF (line 483) | VEOF = 0x4 constant VEOL (line 484) | VEOL = 0xb constant VEOL2 (line 485) | VEOL2 = 0x10 constant VMIN (line 486) | VMIN = 0x6 constant VREPRINT (line 487) | VREPRINT = 0xc constant VSTART (line 488) | VSTART = 0x8 constant VSTOP (line 489) | VSTOP = 0x9 constant VSUSP (line 490) | VSUSP = 0xa constant VSWTC (line 491) | VSWTC = 0x7 constant VT1 (line 492) | VT1 = 0x4000 constant VTDLY (line 493) | VTDLY = 0x4000 constant VTIME (line 494) | VTIME = 0x5 constant VWERASE (line 495) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 496) | WDIOC_GETBOOTSTATUS = 0x80045702 constant WDIOC_GETPRETIMEOUT (line 497) | WDIOC_GETPRETIMEOUT = 0x80045709 constant WDIOC_GETSTATUS (line 498) | WDIOC_GETSTATUS = 0x80045701 constant WDIOC_GETSUPPORT (line 499) | WDIOC_GETSUPPORT = 0x80285700 constant WDIOC_GETTEMP (line 500) | WDIOC_GETTEMP = 0x80045703 constant WDIOC_GETTIMELEFT (line 501) | WDIOC_GETTIMELEFT = 0x8004570a constant WDIOC_GETTIMEOUT (line 502) | WDIOC_GETTIMEOUT = 0x80045707 constant WDIOC_KEEPALIVE (line 503) | WDIOC_KEEPALIVE = 0x80045705 constant WDIOC_SETOPTIONS (line 504) | WDIOC_SETOPTIONS = 0x80045704 constant WORDSIZE (line 505) | WORDSIZE = 0x40 constant XCASE (line 506) | XCASE = 0x4 constant XTABS (line 507) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 508) | _HIDIOCGRAWNAME = 0x80804804 constant _HIDIOCGRAWPHYS (line 509) | _HIDIOCGRAWPHYS = 0x80404805 constant _HIDIOCGRAWUNIQ (line 510) | _HIDIOCGRAWUNIQ = 0x80404808 constant EADDRINUSE (line 515) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 516) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 517) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 518) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 519) | EALREADY = syscall.Errno(0x72) constant EBADE (line 520) | EBADE = syscall.Errno(0x34) constant EBADFD (line 521) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 522) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 523) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 524) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 525) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 526) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 527) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 528) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 529) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 530) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 531) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 532) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 533) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 534) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 535) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 536) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 537) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 538) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 539) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 540) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 541) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 542) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 543) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 544) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 545) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 546) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 547) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 548) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 549) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 550) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 551) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 552) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 553) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 554) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 555) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 556) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 557) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 558) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 559) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 560) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 561) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 562) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 563) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 564) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 565) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 566) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 567) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 568) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 569) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 570) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 571) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 572) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 573) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 574) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 575) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 576) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 577) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 578) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 579) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 580) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 581) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 582) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 583) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 584) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 585) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 586) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 587) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 588) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 589) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 590) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 591) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 592) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 593) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 594) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 595) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 596) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 597) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 598) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 599) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 600) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 601) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 602) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 603) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 604) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 605) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 606) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 607) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 608) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 609) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 610) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 611) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 612) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 613) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 618) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 619) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 620) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 621) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 622) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 623) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 624) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 625) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 626) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 627) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 628) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 629) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 630) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 631) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 632) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 633) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 634) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 635) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 636) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 637) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 638) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40041270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80041271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40041272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x80 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x2000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40046601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80046602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0x21 constant F_GETLK64 (line 88) | F_GETLK64 = 0x21 constant F_GETOWN (line 89) | F_GETOWN = 0x17 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x22 constant F_SETLK64 (line 92) | F_SETLK64 = 0x22 constant F_SETLKW (line 93) | F_SETLKW = 0x23 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0x23 constant F_SETOWN (line 95) | F_SETOWN = 0x18 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x100 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x80 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x4000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x80000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x10000 constant MAP_RENAME (line 121) | MAP_RENAME = 0x800 constant MAP_STACK (line 122) | MAP_STACK = 0x40000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc00c4d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc00c4d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x20 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x40044d0d constant O_APPEND (line 152) | O_APPEND = 0x8 constant O_ASYNC (line 153) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x100 constant O_DIRECT (line 156) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 158) | O_DSYNC = 0x10 constant O_EXCL (line 159) | O_EXCL = 0x400 constant O_FSYNC (line 160) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 162) | O_NDELAY = 0x80 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x80 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x4010 constant O_SYNC (line 169) | O_SYNC = 0x4010 constant O_TMPFILE (line 170) | O_TMPFILE = 0x410000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x40042407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x80042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x4008743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x80087446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x800c744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x80087447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x2000744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffff constant PTRACE_GETFPREGS (line 220) | PTRACE_GETFPREGS = 0xe constant PTRACE_GET_THREAD_AREA (line 221) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 222) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 223) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_OLDSETOPTIONS (line 224) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_PEEKDATA_3264 (line 225) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKTEXT_3264 (line 226) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_POKEDATA_3264 (line 227) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT_3264 (line 228) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_SETFPREGS (line 229) | PTRACE_SETFPREGS = 0xf constant PTRACE_SET_THREAD_AREA (line 230) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 231) | PTRACE_SET_WATCH_REGS = 0xd1 constant RLIMIT_AS (line 232) | RLIMIT_AS = 0x6 constant RLIMIT_MEMLOCK (line 233) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_NOFILE (line 234) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 235) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 236) | RLIMIT_RSS = 0x7 constant RNDADDENTROPY (line 237) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 238) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 239) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 240) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 241) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 242) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 243) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 244) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 245) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 246) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 247) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 248) | RTC_EPOCH_READ = 0x4004700d constant RTC_EPOCH_SET (line 249) | RTC_EPOCH_SET = 0x8004700e constant RTC_IRQP_READ (line 250) | RTC_IRQP_READ = 0x4004700b constant RTC_IRQP_SET (line 251) | RTC_IRQP_SET = 0x8004700c constant RTC_PIE_OFF (line 252) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 253) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 254) | RTC_PLL_GET = 0x401c7011 constant RTC_PLL_SET (line 255) | RTC_PLL_SET = 0x801c7012 constant RTC_RD_TIME (line 256) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 257) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 258) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 259) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 260) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 261) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 262) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 263) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 264) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 265) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 266) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 267) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 268) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 269) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 270) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 271) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 272) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 273) | SFD_NONBLOCK = 0x80 constant SIOCATMARK (line 274) | SIOCATMARK = 0x40047307 constant SIOCGPGRP (line 275) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMPNS_NEW (line 276) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 277) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 278) | SIOCINQ = 0x467f constant SIOCOUTQ (line 279) | SIOCOUTQ = 0x7472 constant SIOCSPGRP (line 280) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 281) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 282) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 283) | SOCK_NONBLOCK = 0x80 constant SOCK_STREAM (line 284) | SOCK_STREAM = 0x2 constant SOL_SOCKET (line 285) | SOL_SOCKET = 0xffff constant SO_ACCEPTCONN (line 286) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 287) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 288) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 289) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 290) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 291) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 292) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 293) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 294) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 295) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 296) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 297) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 298) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 299) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 300) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 301) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 302) | SO_ERROR = 0x1007 constant SO_INCOMING_CPU (line 303) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 304) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 305) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 306) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 307) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 308) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 309) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 310) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 311) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 312) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 313) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 314) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 315) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 316) | SO_PEERCRED = 0x12 constant SO_PEERGROUPS (line 317) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 318) | SO_PEERSEC = 0x1e constant SO_PREFER_BUSY_POLL (line 319) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 320) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 321) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 322) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 323) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 324) | SO_RCVTIMEO = 0x1006 constant SO_RCVTIMEO_NEW (line 325) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 326) | SO_RCVTIMEO_OLD = 0x1006 constant SO_REUSEADDR (line 327) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 328) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 329) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 330) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 331) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 332) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 333) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 334) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 335) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 336) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 337) | SO_SNDTIMEO = 0x1005 constant SO_SNDTIMEO_NEW (line 338) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 339) | SO_SNDTIMEO_OLD = 0x1005 constant SO_STYLE (line 340) | SO_STYLE = 0x1008 constant SO_TIMESTAMPING (line 341) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 342) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 343) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 344) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 345) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 346) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 347) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 348) | SO_TXTIME = 0x3d constant SO_TYPE (line 349) | SO_TYPE = 0x1008 constant SO_WIFI_STATUS (line 350) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 351) | SO_ZEROCOPY = 0x3c constant TAB1 (line 352) | TAB1 = 0x800 constant TAB2 (line 353) | TAB2 = 0x1000 constant TAB3 (line 354) | TAB3 = 0x1800 constant TABDLY (line 355) | TABDLY = 0x1800 constant TCFLSH (line 356) | TCFLSH = 0x5407 constant TCGETA (line 357) | TCGETA = 0x5401 constant TCGETS (line 358) | TCGETS = 0x540d constant TCGETS2 (line 359) | TCGETS2 = 0x4030542a constant TCSAFLUSH (line 360) | TCSAFLUSH = 0x5410 constant TCSBRK (line 361) | TCSBRK = 0x5405 constant TCSBRKP (line 362) | TCSBRKP = 0x5486 constant TCSETA (line 363) | TCSETA = 0x5402 constant TCSETAF (line 364) | TCSETAF = 0x5404 constant TCSETAW (line 365) | TCSETAW = 0x5403 constant TCSETS (line 366) | TCSETS = 0x540e constant TCSETS2 (line 367) | TCSETS2 = 0x8030542b constant TCSETSF (line 368) | TCSETSF = 0x5410 constant TCSETSF2 (line 369) | TCSETSF2 = 0x8030542d constant TCSETSW (line 370) | TCSETSW = 0x540f constant TCSETSW2 (line 371) | TCSETSW2 = 0x8030542c constant TCXONC (line 372) | TCXONC = 0x5406 constant TFD_CLOEXEC (line 373) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 374) | TFD_NONBLOCK = 0x80 constant TIOCCBRK (line 375) | TIOCCBRK = 0x5428 constant TIOCCONS (line 376) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 377) | TIOCEXCL = 0x740d constant TIOCGDEV (line 378) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 379) | TIOCGETD = 0x7400 constant TIOCGETP (line 380) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 381) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 382) | TIOCGICOUNT = 0x5492 constant TIOCGISO7816 (line 383) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 384) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 385) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 386) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 387) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 388) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 389) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 390) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 391) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 392) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 393) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 394) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 395) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 396) | TIOCINQ = 0x467f constant TIOCLINUX (line 397) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 398) | TIOCMBIC = 0x741c constant TIOCMBIS (line 399) | TIOCMBIS = 0x741b constant TIOCMGET (line 400) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 401) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 402) | TIOCMSET = 0x741a constant TIOCM_CAR (line 403) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 404) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 405) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 406) | TIOCM_DSR = 0x400 constant TIOCM_RI (line 407) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 408) | TIOCM_RNG = 0x200 constant TIOCM_SR (line 409) | TIOCM_SR = 0x20 constant TIOCM_ST (line 410) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 411) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 412) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 413) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 414) | TIOCPKT = 0x5470 constant TIOCSBRK (line 415) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 416) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 417) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 418) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 419) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 420) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 421) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 422) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 423) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 424) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 425) | TIOCSETD = 0x7401 constant TIOCSETN (line 426) | TIOCSETN = 0x740a constant TIOCSETP (line 427) | TIOCSETP = 0x7409 constant TIOCSIG (line 428) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 429) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 430) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 431) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 432) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 433) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 434) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 435) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 436) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 437) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 438) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 439) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 440) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 441) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 442) | TUNDETACHFILTER = 0x800854d6 constant TUNGETDEVNETNS (line 443) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 444) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 445) | TUNGETFILTER = 0x400854db constant TUNGETIFF (line 446) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 447) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 448) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 449) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 450) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 451) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 452) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 453) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 454) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 455) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 456) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 457) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 458) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 459) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 460) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 461) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 462) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 463) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 464) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 465) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 466) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 467) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 468) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 469) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 470) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 471) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 472) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 473) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 474) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 475) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 476) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 477) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 478) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 479) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 480) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 481) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 482) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 483) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 484) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 485) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 486) | VDISCARD = 0xd constant VEOF (line 487) | VEOF = 0x10 constant VEOL (line 488) | VEOL = 0x11 constant VEOL2 (line 489) | VEOL2 = 0x6 constant VMIN (line 490) | VMIN = 0x4 constant VREPRINT (line 491) | VREPRINT = 0xc constant VSTART (line 492) | VSTART = 0x8 constant VSTOP (line 493) | VSTOP = 0x9 constant VSUSP (line 494) | VSUSP = 0xa constant VSWTC (line 495) | VSWTC = 0x7 constant VSWTCH (line 496) | VSWTCH = 0x7 constant VT1 (line 497) | VT1 = 0x4000 constant VTDLY (line 498) | VTDLY = 0x4000 constant VTIME (line 499) | VTIME = 0x5 constant VWERASE (line 500) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 501) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 502) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 503) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 504) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 505) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 506) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 507) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 508) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 509) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 510) | WORDSIZE = 0x20 constant XCASE (line 511) | XCASE = 0x4 constant XTABS (line 512) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 513) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 514) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 515) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 520) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 521) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 522) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 523) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EALREADY (line 524) | EALREADY = syscall.Errno(0x95) constant EBADE (line 525) | EBADE = syscall.Errno(0x32) constant EBADFD (line 526) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 527) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 528) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 529) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 530) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 531) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 532) | ECANCELED = syscall.Errno(0x9e) constant ECHRNG (line 533) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 534) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 535) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 536) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 537) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 538) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 539) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 540) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOTDOT (line 541) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 542) | EDQUOT = syscall.Errno(0x46d) constant EHOSTDOWN (line 543) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 544) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 545) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 546) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 547) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 548) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 549) | EINPROGRESS = syscall.Errno(0x96) constant EISCONN (line 550) | EISCONN = syscall.Errno(0x85) constant EISNAM (line 551) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 552) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 553) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 554) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 555) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 556) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 557) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 558) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 559) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 560) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 561) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 562) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 563) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 564) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 565) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 566) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMSGSIZE (line 567) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 568) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 569) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 570) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 571) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 572) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 573) | ENETUNREACH = syscall.Errno(0x80) constant ENOANO (line 574) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 575) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 576) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 577) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 578) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 579) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 580) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 581) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMSG (line 582) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 583) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 584) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 585) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSR (line 586) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 587) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 588) | ENOSYS = syscall.Errno(0x59) constant ENOTCONN (line 589) | ENOTCONN = syscall.Errno(0x86) constant ENOTEMPTY (line 590) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 591) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 592) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 593) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 594) | ENOTSUP = syscall.Errno(0x7a) constant ENOTUNIQ (line 595) | ENOTUNIQ = syscall.Errno(0x50) constant EOPNOTSUPP (line 596) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 597) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 598) | EOWNERDEAD = syscall.Errno(0xa5) constant EPFNOSUPPORT (line 599) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPROTO (line 600) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 601) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 602) | EPROTOTYPE = syscall.Errno(0x62) constant EREMCHG (line 603) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 604) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 605) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 606) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 607) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 608) | ERFKILL = syscall.Errno(0xa7) constant ESHUTDOWN (line 609) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 610) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESRMNT (line 611) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 612) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 613) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 614) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 615) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 616) | ETOOMANYREFS = syscall.Errno(0x90) constant EUCLEAN (line 617) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 618) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 619) | EUSERS = syscall.Errno(0x5e) constant EXFULL (line 620) | EXFULL = syscall.Errno(0x34) constant SIGBUS (line 625) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 626) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 627) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 628) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 629) | SIGEMT = syscall.Signal(0x7) constant SIGIO (line 630) | SIGIO = syscall.Signal(0x16) constant SIGPOLL (line 631) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 632) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 633) | SIGPWR = syscall.Signal(0x13) constant SIGSTOP (line 634) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 635) | SIGSYS = syscall.Signal(0xc) constant SIGTSTP (line 636) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 637) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 638) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 639) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 640) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 641) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 642) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 643) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 644) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 645) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x80 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x2000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0xe constant F_GETLK64 (line 88) | F_GETLK64 = 0xe constant F_GETOWN (line 89) | F_GETOWN = 0x17 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x6 constant F_SETLK64 (line 92) | F_SETLK64 = 0x6 constant F_SETLKW (line 93) | F_SETLKW = 0x7 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0x7 constant F_SETOWN (line 95) | F_SETOWN = 0x18 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x100 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x80 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x4000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x80000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x10000 constant MAP_RENAME (line 121) | MAP_RENAME = 0x800 constant MAP_STACK (line 122) | MAP_STACK = 0x40000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x40 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x40044d0d constant O_APPEND (line 152) | O_APPEND = 0x8 constant O_ASYNC (line 153) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x100 constant O_DIRECT (line 156) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 158) | O_DSYNC = 0x10 constant O_EXCL (line 159) | O_EXCL = 0x400 constant O_FSYNC (line 160) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x0 constant O_NDELAY (line 162) | O_NDELAY = 0x80 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x80 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x4010 constant O_SYNC (line 169) | O_SYNC = 0x4010 constant O_TMPFILE (line 170) | O_TMPFILE = 0x410000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x4010743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x80107446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x8010744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x80107447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x2000744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_GETFPREGS (line 220) | PTRACE_GETFPREGS = 0xe constant PTRACE_GET_THREAD_AREA (line 221) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 222) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 223) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_OLDSETOPTIONS (line 224) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_PEEKDATA_3264 (line 225) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKTEXT_3264 (line 226) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_POKEDATA_3264 (line 227) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT_3264 (line 228) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_SETFPREGS (line 229) | PTRACE_SETFPREGS = 0xf constant PTRACE_SET_THREAD_AREA (line 230) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 231) | PTRACE_SET_WATCH_REGS = 0xd1 constant RLIMIT_AS (line 232) | RLIMIT_AS = 0x6 constant RLIMIT_MEMLOCK (line 233) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_NOFILE (line 234) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 235) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 236) | RLIMIT_RSS = 0x7 constant RNDADDENTROPY (line 237) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 238) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 239) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 240) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 241) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 242) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 243) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 244) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 245) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 246) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 247) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 248) | RTC_EPOCH_READ = 0x4008700d constant RTC_EPOCH_SET (line 249) | RTC_EPOCH_SET = 0x8008700e constant RTC_IRQP_READ (line 250) | RTC_IRQP_READ = 0x4008700b constant RTC_IRQP_SET (line 251) | RTC_IRQP_SET = 0x8008700c constant RTC_PIE_OFF (line 252) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 253) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 254) | RTC_PLL_GET = 0x40207011 constant RTC_PLL_SET (line 255) | RTC_PLL_SET = 0x80207012 constant RTC_RD_TIME (line 256) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 257) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 258) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 259) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 260) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 261) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 262) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 263) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 264) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 265) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 266) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 267) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 268) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 269) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 270) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 271) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 272) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 273) | SFD_NONBLOCK = 0x80 constant SIOCATMARK (line 274) | SIOCATMARK = 0x40047307 constant SIOCGPGRP (line 275) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMPNS_NEW (line 276) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 277) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 278) | SIOCINQ = 0x467f constant SIOCOUTQ (line 279) | SIOCOUTQ = 0x7472 constant SIOCSPGRP (line 280) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 281) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 282) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 283) | SOCK_NONBLOCK = 0x80 constant SOCK_STREAM (line 284) | SOCK_STREAM = 0x2 constant SOL_SOCKET (line 285) | SOL_SOCKET = 0xffff constant SO_ACCEPTCONN (line 286) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 287) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 288) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 289) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 290) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 291) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 292) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 293) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 294) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 295) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 296) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 297) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 298) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 299) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 300) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 301) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 302) | SO_ERROR = 0x1007 constant SO_INCOMING_CPU (line 303) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 304) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 305) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 306) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 307) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 308) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 309) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 310) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 311) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 312) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 313) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 314) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 315) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 316) | SO_PEERCRED = 0x12 constant SO_PEERGROUPS (line 317) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 318) | SO_PEERSEC = 0x1e constant SO_PREFER_BUSY_POLL (line 319) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 320) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 321) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 322) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 323) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 324) | SO_RCVTIMEO = 0x1006 constant SO_RCVTIMEO_NEW (line 325) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 326) | SO_RCVTIMEO_OLD = 0x1006 constant SO_REUSEADDR (line 327) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 328) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 329) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 330) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 331) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 332) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 333) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 334) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 335) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 336) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 337) | SO_SNDTIMEO = 0x1005 constant SO_SNDTIMEO_NEW (line 338) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 339) | SO_SNDTIMEO_OLD = 0x1005 constant SO_STYLE (line 340) | SO_STYLE = 0x1008 constant SO_TIMESTAMPING (line 341) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 342) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 343) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 344) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 345) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 346) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 347) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 348) | SO_TXTIME = 0x3d constant SO_TYPE (line 349) | SO_TYPE = 0x1008 constant SO_WIFI_STATUS (line 350) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 351) | SO_ZEROCOPY = 0x3c constant TAB1 (line 352) | TAB1 = 0x800 constant TAB2 (line 353) | TAB2 = 0x1000 constant TAB3 (line 354) | TAB3 = 0x1800 constant TABDLY (line 355) | TABDLY = 0x1800 constant TCFLSH (line 356) | TCFLSH = 0x5407 constant TCGETA (line 357) | TCGETA = 0x5401 constant TCGETS (line 358) | TCGETS = 0x540d constant TCGETS2 (line 359) | TCGETS2 = 0x4030542a constant TCSAFLUSH (line 360) | TCSAFLUSH = 0x5410 constant TCSBRK (line 361) | TCSBRK = 0x5405 constant TCSBRKP (line 362) | TCSBRKP = 0x5486 constant TCSETA (line 363) | TCSETA = 0x5402 constant TCSETAF (line 364) | TCSETAF = 0x5404 constant TCSETAW (line 365) | TCSETAW = 0x5403 constant TCSETS (line 366) | TCSETS = 0x540e constant TCSETS2 (line 367) | TCSETS2 = 0x8030542b constant TCSETSF (line 368) | TCSETSF = 0x5410 constant TCSETSF2 (line 369) | TCSETSF2 = 0x8030542d constant TCSETSW (line 370) | TCSETSW = 0x540f constant TCSETSW2 (line 371) | TCSETSW2 = 0x8030542c constant TCXONC (line 372) | TCXONC = 0x5406 constant TFD_CLOEXEC (line 373) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 374) | TFD_NONBLOCK = 0x80 constant TIOCCBRK (line 375) | TIOCCBRK = 0x5428 constant TIOCCONS (line 376) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 377) | TIOCEXCL = 0x740d constant TIOCGDEV (line 378) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 379) | TIOCGETD = 0x7400 constant TIOCGETP (line 380) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 381) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 382) | TIOCGICOUNT = 0x5492 constant TIOCGISO7816 (line 383) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 384) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 385) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 386) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 387) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 388) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 389) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 390) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 391) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 392) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 393) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 394) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 395) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 396) | TIOCINQ = 0x467f constant TIOCLINUX (line 397) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 398) | TIOCMBIC = 0x741c constant TIOCMBIS (line 399) | TIOCMBIS = 0x741b constant TIOCMGET (line 400) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 401) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 402) | TIOCMSET = 0x741a constant TIOCM_CAR (line 403) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 404) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 405) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 406) | TIOCM_DSR = 0x400 constant TIOCM_RI (line 407) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 408) | TIOCM_RNG = 0x200 constant TIOCM_SR (line 409) | TIOCM_SR = 0x20 constant TIOCM_ST (line 410) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 411) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 412) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 413) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 414) | TIOCPKT = 0x5470 constant TIOCSBRK (line 415) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 416) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 417) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 418) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 419) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 420) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 421) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 422) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 423) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 424) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 425) | TIOCSETD = 0x7401 constant TIOCSETN (line 426) | TIOCSETN = 0x740a constant TIOCSETP (line 427) | TIOCSETP = 0x7409 constant TIOCSIG (line 428) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 429) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 430) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 431) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 432) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 433) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 434) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 435) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 436) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 437) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 438) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 439) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 440) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 441) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 442) | TUNDETACHFILTER = 0x801054d6 constant TUNGETDEVNETNS (line 443) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 444) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 445) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 446) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 447) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 448) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 449) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 450) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 451) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 452) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 453) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 454) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 455) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 456) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 457) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 458) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 459) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 460) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 461) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 462) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 463) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 464) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 465) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 466) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 467) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 468) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 469) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 470) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 471) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 472) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 473) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 474) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 475) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 476) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 477) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 478) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 479) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 480) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 481) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 482) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 483) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 484) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 485) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 486) | VDISCARD = 0xd constant VEOF (line 487) | VEOF = 0x10 constant VEOL (line 488) | VEOL = 0x11 constant VEOL2 (line 489) | VEOL2 = 0x6 constant VMIN (line 490) | VMIN = 0x4 constant VREPRINT (line 491) | VREPRINT = 0xc constant VSTART (line 492) | VSTART = 0x8 constant VSTOP (line 493) | VSTOP = 0x9 constant VSUSP (line 494) | VSUSP = 0xa constant VSWTC (line 495) | VSWTC = 0x7 constant VSWTCH (line 496) | VSWTCH = 0x7 constant VT1 (line 497) | VT1 = 0x4000 constant VTDLY (line 498) | VTDLY = 0x4000 constant VTIME (line 499) | VTIME = 0x5 constant VWERASE (line 500) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 501) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 502) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 503) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 504) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 505) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 506) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 507) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 508) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 509) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 510) | WORDSIZE = 0x40 constant XCASE (line 511) | XCASE = 0x4 constant XTABS (line 512) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 513) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 514) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 515) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 520) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 521) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 522) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 523) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EALREADY (line 524) | EALREADY = syscall.Errno(0x95) constant EBADE (line 525) | EBADE = syscall.Errno(0x32) constant EBADFD (line 526) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 527) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 528) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 529) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 530) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 531) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 532) | ECANCELED = syscall.Errno(0x9e) constant ECHRNG (line 533) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 534) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 535) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 536) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 537) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 538) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 539) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 540) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOTDOT (line 541) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 542) | EDQUOT = syscall.Errno(0x46d) constant EHOSTDOWN (line 543) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 544) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 545) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 546) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 547) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 548) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 549) | EINPROGRESS = syscall.Errno(0x96) constant EISCONN (line 550) | EISCONN = syscall.Errno(0x85) constant EISNAM (line 551) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 552) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 553) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 554) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 555) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 556) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 557) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 558) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 559) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 560) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 561) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 562) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 563) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 564) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 565) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 566) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMSGSIZE (line 567) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 568) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 569) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 570) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 571) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 572) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 573) | ENETUNREACH = syscall.Errno(0x80) constant ENOANO (line 574) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 575) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 576) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 577) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 578) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 579) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 580) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 581) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMSG (line 582) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 583) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 584) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 585) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSR (line 586) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 587) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 588) | ENOSYS = syscall.Errno(0x59) constant ENOTCONN (line 589) | ENOTCONN = syscall.Errno(0x86) constant ENOTEMPTY (line 590) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 591) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 592) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 593) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 594) | ENOTSUP = syscall.Errno(0x7a) constant ENOTUNIQ (line 595) | ENOTUNIQ = syscall.Errno(0x50) constant EOPNOTSUPP (line 596) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 597) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 598) | EOWNERDEAD = syscall.Errno(0xa5) constant EPFNOSUPPORT (line 599) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPROTO (line 600) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 601) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 602) | EPROTOTYPE = syscall.Errno(0x62) constant EREMCHG (line 603) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 604) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 605) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 606) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 607) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 608) | ERFKILL = syscall.Errno(0xa7) constant ESHUTDOWN (line 609) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 610) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESRMNT (line 611) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 612) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 613) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 614) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 615) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 616) | ETOOMANYREFS = syscall.Errno(0x90) constant EUCLEAN (line 617) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 618) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 619) | EUSERS = syscall.Errno(0x5e) constant EXFULL (line 620) | EXFULL = syscall.Errno(0x34) constant SIGBUS (line 625) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 626) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 627) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 628) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 629) | SIGEMT = syscall.Signal(0x7) constant SIGIO (line 630) | SIGIO = syscall.Signal(0x16) constant SIGPOLL (line 631) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 632) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 633) | SIGPWR = syscall.Signal(0x13) constant SIGSTOP (line 634) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 635) | SIGSYS = syscall.Signal(0xc) constant SIGTSTP (line 636) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 637) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 638) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 639) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 640) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 641) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 642) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 643) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 644) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 645) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x80 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x2000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0xe constant F_GETLK64 (line 88) | F_GETLK64 = 0xe constant F_GETOWN (line 89) | F_GETOWN = 0x17 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x6 constant F_SETLK64 (line 92) | F_SETLK64 = 0x6 constant F_SETLKW (line 93) | F_SETLKW = 0x7 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0x7 constant F_SETOWN (line 95) | F_SETOWN = 0x18 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x100 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x80 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x4000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x80000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x10000 constant MAP_RENAME (line 121) | MAP_RENAME = 0x800 constant MAP_STACK (line 122) | MAP_STACK = 0x40000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x40 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x40044d0d constant O_APPEND (line 152) | O_APPEND = 0x8 constant O_ASYNC (line 153) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x100 constant O_DIRECT (line 156) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 158) | O_DSYNC = 0x10 constant O_EXCL (line 159) | O_EXCL = 0x400 constant O_FSYNC (line 160) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x0 constant O_NDELAY (line 162) | O_NDELAY = 0x80 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x80 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x4010 constant O_SYNC (line 169) | O_SYNC = 0x4010 constant O_TMPFILE (line 170) | O_TMPFILE = 0x410000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x4010743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x80107446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x8010744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x80107447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x2000744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_GETFPREGS (line 220) | PTRACE_GETFPREGS = 0xe constant PTRACE_GET_THREAD_AREA (line 221) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 222) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 223) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_OLDSETOPTIONS (line 224) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_PEEKDATA_3264 (line 225) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKTEXT_3264 (line 226) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_POKEDATA_3264 (line 227) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT_3264 (line 228) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_SETFPREGS (line 229) | PTRACE_SETFPREGS = 0xf constant PTRACE_SET_THREAD_AREA (line 230) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 231) | PTRACE_SET_WATCH_REGS = 0xd1 constant RLIMIT_AS (line 232) | RLIMIT_AS = 0x6 constant RLIMIT_MEMLOCK (line 233) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_NOFILE (line 234) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 235) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 236) | RLIMIT_RSS = 0x7 constant RNDADDENTROPY (line 237) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 238) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 239) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 240) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 241) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 242) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 243) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 244) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 245) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 246) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 247) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 248) | RTC_EPOCH_READ = 0x4008700d constant RTC_EPOCH_SET (line 249) | RTC_EPOCH_SET = 0x8008700e constant RTC_IRQP_READ (line 250) | RTC_IRQP_READ = 0x4008700b constant RTC_IRQP_SET (line 251) | RTC_IRQP_SET = 0x8008700c constant RTC_PIE_OFF (line 252) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 253) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 254) | RTC_PLL_GET = 0x40207011 constant RTC_PLL_SET (line 255) | RTC_PLL_SET = 0x80207012 constant RTC_RD_TIME (line 256) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 257) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 258) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 259) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 260) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 261) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 262) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 263) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 264) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 265) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 266) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 267) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 268) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 269) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 270) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 271) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 272) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 273) | SFD_NONBLOCK = 0x80 constant SIOCATMARK (line 274) | SIOCATMARK = 0x40047307 constant SIOCGPGRP (line 275) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMPNS_NEW (line 276) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 277) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 278) | SIOCINQ = 0x467f constant SIOCOUTQ (line 279) | SIOCOUTQ = 0x7472 constant SIOCSPGRP (line 280) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 281) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 282) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 283) | SOCK_NONBLOCK = 0x80 constant SOCK_STREAM (line 284) | SOCK_STREAM = 0x2 constant SOL_SOCKET (line 285) | SOL_SOCKET = 0xffff constant SO_ACCEPTCONN (line 286) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 287) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 288) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 289) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 290) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 291) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 292) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 293) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 294) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 295) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 296) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 297) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 298) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 299) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 300) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 301) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 302) | SO_ERROR = 0x1007 constant SO_INCOMING_CPU (line 303) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 304) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 305) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 306) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 307) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 308) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 309) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 310) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 311) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 312) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 313) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 314) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 315) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 316) | SO_PEERCRED = 0x12 constant SO_PEERGROUPS (line 317) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 318) | SO_PEERSEC = 0x1e constant SO_PREFER_BUSY_POLL (line 319) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 320) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 321) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 322) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 323) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 324) | SO_RCVTIMEO = 0x1006 constant SO_RCVTIMEO_NEW (line 325) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 326) | SO_RCVTIMEO_OLD = 0x1006 constant SO_REUSEADDR (line 327) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 328) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 329) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 330) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 331) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 332) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 333) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 334) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 335) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 336) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 337) | SO_SNDTIMEO = 0x1005 constant SO_SNDTIMEO_NEW (line 338) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 339) | SO_SNDTIMEO_OLD = 0x1005 constant SO_STYLE (line 340) | SO_STYLE = 0x1008 constant SO_TIMESTAMPING (line 341) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 342) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 343) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 344) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 345) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 346) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 347) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 348) | SO_TXTIME = 0x3d constant SO_TYPE (line 349) | SO_TYPE = 0x1008 constant SO_WIFI_STATUS (line 350) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 351) | SO_ZEROCOPY = 0x3c constant TAB1 (line 352) | TAB1 = 0x800 constant TAB2 (line 353) | TAB2 = 0x1000 constant TAB3 (line 354) | TAB3 = 0x1800 constant TABDLY (line 355) | TABDLY = 0x1800 constant TCFLSH (line 356) | TCFLSH = 0x5407 constant TCGETA (line 357) | TCGETA = 0x5401 constant TCGETS (line 358) | TCGETS = 0x540d constant TCGETS2 (line 359) | TCGETS2 = 0x4030542a constant TCSAFLUSH (line 360) | TCSAFLUSH = 0x5410 constant TCSBRK (line 361) | TCSBRK = 0x5405 constant TCSBRKP (line 362) | TCSBRKP = 0x5486 constant TCSETA (line 363) | TCSETA = 0x5402 constant TCSETAF (line 364) | TCSETAF = 0x5404 constant TCSETAW (line 365) | TCSETAW = 0x5403 constant TCSETS (line 366) | TCSETS = 0x540e constant TCSETS2 (line 367) | TCSETS2 = 0x8030542b constant TCSETSF (line 368) | TCSETSF = 0x5410 constant TCSETSF2 (line 369) | TCSETSF2 = 0x8030542d constant TCSETSW (line 370) | TCSETSW = 0x540f constant TCSETSW2 (line 371) | TCSETSW2 = 0x8030542c constant TCXONC (line 372) | TCXONC = 0x5406 constant TFD_CLOEXEC (line 373) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 374) | TFD_NONBLOCK = 0x80 constant TIOCCBRK (line 375) | TIOCCBRK = 0x5428 constant TIOCCONS (line 376) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 377) | TIOCEXCL = 0x740d constant TIOCGDEV (line 378) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 379) | TIOCGETD = 0x7400 constant TIOCGETP (line 380) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 381) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 382) | TIOCGICOUNT = 0x5492 constant TIOCGISO7816 (line 383) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 384) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 385) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 386) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 387) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 388) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 389) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 390) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 391) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 392) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 393) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 394) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 395) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 396) | TIOCINQ = 0x467f constant TIOCLINUX (line 397) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 398) | TIOCMBIC = 0x741c constant TIOCMBIS (line 399) | TIOCMBIS = 0x741b constant TIOCMGET (line 400) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 401) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 402) | TIOCMSET = 0x741a constant TIOCM_CAR (line 403) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 404) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 405) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 406) | TIOCM_DSR = 0x400 constant TIOCM_RI (line 407) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 408) | TIOCM_RNG = 0x200 constant TIOCM_SR (line 409) | TIOCM_SR = 0x20 constant TIOCM_ST (line 410) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 411) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 412) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 413) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 414) | TIOCPKT = 0x5470 constant TIOCSBRK (line 415) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 416) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 417) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 418) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 419) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 420) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 421) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 422) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 423) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 424) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 425) | TIOCSETD = 0x7401 constant TIOCSETN (line 426) | TIOCSETN = 0x740a constant TIOCSETP (line 427) | TIOCSETP = 0x7409 constant TIOCSIG (line 428) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 429) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 430) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 431) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 432) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 433) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 434) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 435) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 436) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 437) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 438) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 439) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 440) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 441) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 442) | TUNDETACHFILTER = 0x801054d6 constant TUNGETDEVNETNS (line 443) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 444) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 445) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 446) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 447) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 448) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 449) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 450) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 451) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 452) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 453) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 454) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 455) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 456) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 457) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 458) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 459) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 460) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 461) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 462) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 463) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 464) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 465) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 466) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 467) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 468) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 469) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 470) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 471) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 472) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 473) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 474) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 475) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 476) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 477) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 478) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 479) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 480) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 481) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 482) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 483) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 484) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 485) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 486) | VDISCARD = 0xd constant VEOF (line 487) | VEOF = 0x10 constant VEOL (line 488) | VEOL = 0x11 constant VEOL2 (line 489) | VEOL2 = 0x6 constant VMIN (line 490) | VMIN = 0x4 constant VREPRINT (line 491) | VREPRINT = 0xc constant VSTART (line 492) | VSTART = 0x8 constant VSTOP (line 493) | VSTOP = 0x9 constant VSUSP (line 494) | VSUSP = 0xa constant VSWTC (line 495) | VSWTC = 0x7 constant VSWTCH (line 496) | VSWTCH = 0x7 constant VT1 (line 497) | VT1 = 0x4000 constant VTDLY (line 498) | VTDLY = 0x4000 constant VTIME (line 499) | VTIME = 0x5 constant VWERASE (line 500) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 501) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 502) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 503) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 504) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 505) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 506) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 507) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 508) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 509) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 510) | WORDSIZE = 0x40 constant XCASE (line 511) | XCASE = 0x4 constant XTABS (line 512) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 513) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 514) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 515) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 520) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 521) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 522) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 523) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EALREADY (line 524) | EALREADY = syscall.Errno(0x95) constant EBADE (line 525) | EBADE = syscall.Errno(0x32) constant EBADFD (line 526) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 527) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 528) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 529) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 530) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 531) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 532) | ECANCELED = syscall.Errno(0x9e) constant ECHRNG (line 533) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 534) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 535) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 536) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 537) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 538) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 539) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 540) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOTDOT (line 541) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 542) | EDQUOT = syscall.Errno(0x46d) constant EHOSTDOWN (line 543) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 544) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 545) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 546) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 547) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 548) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 549) | EINPROGRESS = syscall.Errno(0x96) constant EISCONN (line 550) | EISCONN = syscall.Errno(0x85) constant EISNAM (line 551) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 552) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 553) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 554) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 555) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 556) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 557) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 558) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 559) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 560) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 561) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 562) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 563) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 564) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 565) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 566) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMSGSIZE (line 567) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 568) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 569) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 570) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 571) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 572) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 573) | ENETUNREACH = syscall.Errno(0x80) constant ENOANO (line 574) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 575) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 576) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 577) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 578) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 579) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 580) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 581) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMSG (line 582) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 583) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 584) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 585) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSR (line 586) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 587) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 588) | ENOSYS = syscall.Errno(0x59) constant ENOTCONN (line 589) | ENOTCONN = syscall.Errno(0x86) constant ENOTEMPTY (line 590) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 591) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 592) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 593) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 594) | ENOTSUP = syscall.Errno(0x7a) constant ENOTUNIQ (line 595) | ENOTUNIQ = syscall.Errno(0x50) constant EOPNOTSUPP (line 596) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 597) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 598) | EOWNERDEAD = syscall.Errno(0xa5) constant EPFNOSUPPORT (line 599) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPROTO (line 600) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 601) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 602) | EPROTOTYPE = syscall.Errno(0x62) constant EREMCHG (line 603) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 604) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 605) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 606) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 607) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 608) | ERFKILL = syscall.Errno(0xa7) constant ESHUTDOWN (line 609) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 610) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESRMNT (line 611) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 612) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 613) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 614) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 615) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 616) | ETOOMANYREFS = syscall.Errno(0x90) constant EUCLEAN (line 617) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 618) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 619) | EUSERS = syscall.Errno(0x5e) constant EXFULL (line 620) | EXFULL = syscall.Errno(0x34) constant SIGBUS (line 625) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 626) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 627) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 628) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 629) | SIGEMT = syscall.Signal(0x7) constant SIGIO (line 630) | SIGIO = syscall.Signal(0x16) constant SIGPOLL (line 631) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 632) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 633) | SIGPWR = syscall.Signal(0x13) constant SIGSTOP (line 634) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 635) | SIGSYS = syscall.Signal(0xc) constant SIGTSTP (line 636) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 637) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 638) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 639) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 640) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 641) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 642) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 643) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 644) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 645) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40041270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80041271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40041272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x80 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x2000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40046601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80046602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0x21 constant F_GETLK64 (line 88) | F_GETLK64 = 0x21 constant F_GETOWN (line 89) | F_GETOWN = 0x17 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x22 constant F_SETLK64 (line 92) | F_SETLK64 = 0x22 constant F_SETLKW (line 93) | F_SETLKW = 0x23 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0x23 constant F_SETOWN (line 95) | F_SETOWN = 0x18 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x100 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x80 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x4000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x80000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x10000 constant MAP_RENAME (line 121) | MAP_RENAME = 0x800 constant MAP_STACK (line 122) | MAP_STACK = 0x40000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc00c4d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc00c4d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x20 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x40044d0d constant O_APPEND (line 152) | O_APPEND = 0x8 constant O_ASYNC (line 153) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x100 constant O_DIRECT (line 156) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 158) | O_DSYNC = 0x10 constant O_EXCL (line 159) | O_EXCL = 0x400 constant O_FSYNC (line 160) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 162) | O_NDELAY = 0x80 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x80 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x4010 constant O_SYNC (line 169) | O_SYNC = 0x4010 constant O_TMPFILE (line 170) | O_TMPFILE = 0x410000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x40042407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x80042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x4008743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x80087446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x800c744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x80087447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x2000744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffff constant PTRACE_GETFPREGS (line 220) | PTRACE_GETFPREGS = 0xe constant PTRACE_GET_THREAD_AREA (line 221) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 222) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 223) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_OLDSETOPTIONS (line 224) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_PEEKDATA_3264 (line 225) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKTEXT_3264 (line 226) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_POKEDATA_3264 (line 227) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT_3264 (line 228) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_SETFPREGS (line 229) | PTRACE_SETFPREGS = 0xf constant PTRACE_SET_THREAD_AREA (line 230) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 231) | PTRACE_SET_WATCH_REGS = 0xd1 constant RLIMIT_AS (line 232) | RLIMIT_AS = 0x6 constant RLIMIT_MEMLOCK (line 233) | RLIMIT_MEMLOCK = 0x9 constant RLIMIT_NOFILE (line 234) | RLIMIT_NOFILE = 0x5 constant RLIMIT_NPROC (line 235) | RLIMIT_NPROC = 0x8 constant RLIMIT_RSS (line 236) | RLIMIT_RSS = 0x7 constant RNDADDENTROPY (line 237) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 238) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 239) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 240) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 241) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 242) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 243) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 244) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 245) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 246) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 247) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 248) | RTC_EPOCH_READ = 0x4004700d constant RTC_EPOCH_SET (line 249) | RTC_EPOCH_SET = 0x8004700e constant RTC_IRQP_READ (line 250) | RTC_IRQP_READ = 0x4004700b constant RTC_IRQP_SET (line 251) | RTC_IRQP_SET = 0x8004700c constant RTC_PIE_OFF (line 252) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 253) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 254) | RTC_PLL_GET = 0x401c7011 constant RTC_PLL_SET (line 255) | RTC_PLL_SET = 0x801c7012 constant RTC_RD_TIME (line 256) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 257) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 258) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 259) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 260) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 261) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 262) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 263) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 264) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 265) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 266) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 267) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 268) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 269) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 270) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 271) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 272) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 273) | SFD_NONBLOCK = 0x80 constant SIOCATMARK (line 274) | SIOCATMARK = 0x40047307 constant SIOCGPGRP (line 275) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMPNS_NEW (line 276) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 277) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 278) | SIOCINQ = 0x467f constant SIOCOUTQ (line 279) | SIOCOUTQ = 0x7472 constant SIOCSPGRP (line 280) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 281) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 282) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 283) | SOCK_NONBLOCK = 0x80 constant SOCK_STREAM (line 284) | SOCK_STREAM = 0x2 constant SOL_SOCKET (line 285) | SOL_SOCKET = 0xffff constant SO_ACCEPTCONN (line 286) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 287) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 288) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 289) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 290) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 291) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 292) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 293) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 294) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 295) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 296) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 297) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 298) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 299) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 300) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 301) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 302) | SO_ERROR = 0x1007 constant SO_INCOMING_CPU (line 303) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 304) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 305) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 306) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 307) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 308) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 309) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 310) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 311) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 312) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 313) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 314) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 315) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 316) | SO_PEERCRED = 0x12 constant SO_PEERGROUPS (line 317) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 318) | SO_PEERSEC = 0x1e constant SO_PREFER_BUSY_POLL (line 319) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 320) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 321) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 322) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 323) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 324) | SO_RCVTIMEO = 0x1006 constant SO_RCVTIMEO_NEW (line 325) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 326) | SO_RCVTIMEO_OLD = 0x1006 constant SO_REUSEADDR (line 327) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 328) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 329) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 330) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 331) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 332) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 333) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 334) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 335) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 336) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 337) | SO_SNDTIMEO = 0x1005 constant SO_SNDTIMEO_NEW (line 338) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 339) | SO_SNDTIMEO_OLD = 0x1005 constant SO_STYLE (line 340) | SO_STYLE = 0x1008 constant SO_TIMESTAMPING (line 341) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 342) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 343) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 344) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 345) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 346) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 347) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 348) | SO_TXTIME = 0x3d constant SO_TYPE (line 349) | SO_TYPE = 0x1008 constant SO_WIFI_STATUS (line 350) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 351) | SO_ZEROCOPY = 0x3c constant TAB1 (line 352) | TAB1 = 0x800 constant TAB2 (line 353) | TAB2 = 0x1000 constant TAB3 (line 354) | TAB3 = 0x1800 constant TABDLY (line 355) | TABDLY = 0x1800 constant TCFLSH (line 356) | TCFLSH = 0x5407 constant TCGETA (line 357) | TCGETA = 0x5401 constant TCGETS (line 358) | TCGETS = 0x540d constant TCGETS2 (line 359) | TCGETS2 = 0x4030542a constant TCSAFLUSH (line 360) | TCSAFLUSH = 0x5410 constant TCSBRK (line 361) | TCSBRK = 0x5405 constant TCSBRKP (line 362) | TCSBRKP = 0x5486 constant TCSETA (line 363) | TCSETA = 0x5402 constant TCSETAF (line 364) | TCSETAF = 0x5404 constant TCSETAW (line 365) | TCSETAW = 0x5403 constant TCSETS (line 366) | TCSETS = 0x540e constant TCSETS2 (line 367) | TCSETS2 = 0x8030542b constant TCSETSF (line 368) | TCSETSF = 0x5410 constant TCSETSF2 (line 369) | TCSETSF2 = 0x8030542d constant TCSETSW (line 370) | TCSETSW = 0x540f constant TCSETSW2 (line 371) | TCSETSW2 = 0x8030542c constant TCXONC (line 372) | TCXONC = 0x5406 constant TFD_CLOEXEC (line 373) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 374) | TFD_NONBLOCK = 0x80 constant TIOCCBRK (line 375) | TIOCCBRK = 0x5428 constant TIOCCONS (line 376) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 377) | TIOCEXCL = 0x740d constant TIOCGDEV (line 378) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 379) | TIOCGETD = 0x7400 constant TIOCGETP (line 380) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 381) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 382) | TIOCGICOUNT = 0x5492 constant TIOCGISO7816 (line 383) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 384) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 385) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 386) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 387) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 388) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 389) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 390) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 391) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 392) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 393) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 394) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 395) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 396) | TIOCINQ = 0x467f constant TIOCLINUX (line 397) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 398) | TIOCMBIC = 0x741c constant TIOCMBIS (line 399) | TIOCMBIS = 0x741b constant TIOCMGET (line 400) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 401) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 402) | TIOCMSET = 0x741a constant TIOCM_CAR (line 403) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 404) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 405) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 406) | TIOCM_DSR = 0x400 constant TIOCM_RI (line 407) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 408) | TIOCM_RNG = 0x200 constant TIOCM_SR (line 409) | TIOCM_SR = 0x20 constant TIOCM_ST (line 410) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 411) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 412) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 413) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 414) | TIOCPKT = 0x5470 constant TIOCSBRK (line 415) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 416) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 417) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 418) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 419) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 420) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 421) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 422) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 423) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 424) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 425) | TIOCSETD = 0x7401 constant TIOCSETN (line 426) | TIOCSETN = 0x740a constant TIOCSETP (line 427) | TIOCSETP = 0x7409 constant TIOCSIG (line 428) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 429) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 430) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 431) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 432) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 433) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 434) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 435) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 436) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 437) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 438) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 439) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 440) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 441) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 442) | TUNDETACHFILTER = 0x800854d6 constant TUNGETDEVNETNS (line 443) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 444) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 445) | TUNGETFILTER = 0x400854db constant TUNGETIFF (line 446) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 447) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 448) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 449) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 450) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 451) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 452) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 453) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 454) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 455) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 456) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 457) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 458) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 459) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 460) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 461) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 462) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 463) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 464) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 465) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 466) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 467) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 468) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 469) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 470) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 471) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 472) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 473) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 474) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 475) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 476) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 477) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 478) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 479) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 480) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 481) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 482) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 483) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 484) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 485) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 486) | VDISCARD = 0xd constant VEOF (line 487) | VEOF = 0x10 constant VEOL (line 488) | VEOL = 0x11 constant VEOL2 (line 489) | VEOL2 = 0x6 constant VMIN (line 490) | VMIN = 0x4 constant VREPRINT (line 491) | VREPRINT = 0xc constant VSTART (line 492) | VSTART = 0x8 constant VSTOP (line 493) | VSTOP = 0x9 constant VSUSP (line 494) | VSUSP = 0xa constant VSWTC (line 495) | VSWTC = 0x7 constant VSWTCH (line 496) | VSWTCH = 0x7 constant VT1 (line 497) | VT1 = 0x4000 constant VTDLY (line 498) | VTDLY = 0x4000 constant VTIME (line 499) | VTIME = 0x5 constant VWERASE (line 500) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 501) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 502) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 503) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 504) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 505) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 506) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 507) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 508) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 509) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 510) | WORDSIZE = 0x20 constant XCASE (line 511) | XCASE = 0x4 constant XTABS (line 512) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 513) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 514) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 515) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 520) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 521) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 522) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 523) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EALREADY (line 524) | EALREADY = syscall.Errno(0x95) constant EBADE (line 525) | EBADE = syscall.Errno(0x32) constant EBADFD (line 526) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 527) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 528) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 529) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 530) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 531) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 532) | ECANCELED = syscall.Errno(0x9e) constant ECHRNG (line 533) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 534) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 535) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 536) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 537) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 538) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 539) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 540) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOTDOT (line 541) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 542) | EDQUOT = syscall.Errno(0x46d) constant EHOSTDOWN (line 543) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 544) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 545) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 546) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 547) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 548) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 549) | EINPROGRESS = syscall.Errno(0x96) constant EISCONN (line 550) | EISCONN = syscall.Errno(0x85) constant EISNAM (line 551) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 552) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 553) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 554) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 555) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 556) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 557) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 558) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 559) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 560) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 561) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 562) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 563) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 564) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 565) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 566) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMSGSIZE (line 567) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 568) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 569) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 570) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 571) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 572) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 573) | ENETUNREACH = syscall.Errno(0x80) constant ENOANO (line 574) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 575) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 576) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 577) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 578) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 579) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 580) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 581) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMSG (line 582) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 583) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 584) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 585) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSR (line 586) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 587) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 588) | ENOSYS = syscall.Errno(0x59) constant ENOTCONN (line 589) | ENOTCONN = syscall.Errno(0x86) constant ENOTEMPTY (line 590) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 591) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 592) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 593) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 594) | ENOTSUP = syscall.Errno(0x7a) constant ENOTUNIQ (line 595) | ENOTUNIQ = syscall.Errno(0x50) constant EOPNOTSUPP (line 596) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 597) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 598) | EOWNERDEAD = syscall.Errno(0xa5) constant EPFNOSUPPORT (line 599) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPROTO (line 600) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 601) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 602) | EPROTOTYPE = syscall.Errno(0x62) constant EREMCHG (line 603) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 604) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 605) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 606) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 607) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 608) | ERFKILL = syscall.Errno(0xa7) constant ESHUTDOWN (line 609) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 610) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESRMNT (line 611) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 612) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 613) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 614) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 615) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 616) | ETOOMANYREFS = syscall.Errno(0x90) constant EUCLEAN (line 617) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 618) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 619) | EUSERS = syscall.Errno(0x5e) constant EXFULL (line 620) | EXFULL = syscall.Errno(0x34) constant SIGBUS (line 625) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 626) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 627) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 628) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 629) | SIGEMT = syscall.Signal(0x7) constant SIGIO (line 630) | SIGIO = syscall.Signal(0x16) constant SIGPOLL (line 631) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 632) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 633) | SIGPWR = syscall.Signal(0x13) constant SIGSTOP (line 634) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 635) | SIGSYS = syscall.Signal(0xc) constant SIGTSTP (line 636) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 637) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 638) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 639) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 640) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 641) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 642) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 643) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 644) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 645) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go constant B1000000 (line 15) | B1000000 = 0x17 constant B115200 (line 16) | B115200 = 0x11 constant B1152000 (line 17) | B1152000 = 0x18 constant B1500000 (line 18) | B1500000 = 0x19 constant B2000000 (line 19) | B2000000 = 0x1a constant B230400 (line 20) | B230400 = 0x12 constant B2500000 (line 21) | B2500000 = 0x1b constant B3000000 (line 22) | B3000000 = 0x1c constant B3500000 (line 23) | B3500000 = 0x1d constant B4000000 (line 24) | B4000000 = 0x1e constant B460800 (line 25) | B460800 = 0x13 constant B500000 (line 26) | B500000 = 0x14 constant B57600 (line 27) | B57600 = 0x10 constant B576000 (line 28) | B576000 = 0x15 constant B921600 (line 29) | B921600 = 0x16 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40041270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80041271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40041272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1f constant BS1 (line 47) | BS1 = 0x8000 constant BSDLY (line 48) | BSDLY = 0x8000 constant CBAUD (line 49) | CBAUD = 0xff constant CBAUDEX (line 50) | CBAUDEX = 0x0 constant CIBAUD (line 51) | CIBAUD = 0xff0000 constant CLOCAL (line 52) | CLOCAL = 0x8000 constant CR1 (line 53) | CR1 = 0x1000 constant CR2 (line 54) | CR2 = 0x2000 constant CR3 (line 55) | CR3 = 0x3000 constant CRDLY (line 56) | CRDLY = 0x3000 constant CREAD (line 57) | CREAD = 0x800 constant CS6 (line 58) | CS6 = 0x100 constant CS7 (line 59) | CS7 = 0x200 constant CS8 (line 60) | CS8 = 0x300 constant CSIZE (line 61) | CSIZE = 0x300 constant CSTOPB (line 62) | CSTOPB = 0x400 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x40 constant ECHOE (line 66) | ECHOE = 0x2 constant ECHOK (line 67) | ECHOK = 0x4 constant ECHOKE (line 68) | ECHOKE = 0x1 constant ECHONL (line 69) | ECHONL = 0x10 constant ECHOPRT (line 70) | ECHOPRT = 0x20 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000000 constant FF1 (line 75) | FF1 = 0x4000 constant FFDLY (line 76) | FFDLY = 0x4000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x800000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40046601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80046602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0xc constant F_GETLK64 (line 88) | F_GETLK64 = 0xc constant F_GETOWN (line 89) | F_GETOWN = 0x9 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0xd constant F_SETLK64 (line 92) | F_SETLK64 = 0xd constant F_SETLKW (line 93) | F_SETLKW = 0xe constant F_SETLKW64 (line 94) | F_SETLKW64 = 0xe constant F_SETOWN (line 95) | F_SETOWN = 0x8 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x4000 constant ICANON (line 102) | ICANON = 0x100 constant IEXTEN (line 103) | IEXTEN = 0x400 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x80 constant IUCLC (line 108) | IUCLC = 0x1000 constant IXOFF (line 109) | IXOFF = 0x400 constant IXON (line 110) | IXON = 0x200 constant MAP_ANON (line 111) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 121) | MAP_STACK = 0x20000 constant MAP_SYNC (line 122) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x8000 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc00c4d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc00c4d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x20 constant NL2 (line 140) | NL2 = 0x200 constant NL3 (line 141) | NL3 = 0x300 constant NLDLY (line 142) | NLDLY = 0x300 constant NOFLSH (line 143) | NOFLSH = 0x80000000 constant NS_GET_NSTYPE (line 144) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 145) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 146) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 147) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 148) | OLCUC = 0x4 constant ONLCR (line 149) | ONLCR = 0x2 constant OTPGETREGIONCOUNT (line 150) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 151) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 152) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 153) | OTPSELECT = 0x40044d0d constant O_APPEND (line 154) | O_APPEND = 0x400 constant O_ASYNC (line 155) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 156) | O_CLOEXEC = 0x80000 constant O_CREAT (line 157) | O_CREAT = 0x40 constant O_DIRECT (line 158) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 159) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 160) | O_DSYNC = 0x1000 constant O_EXCL (line 161) | O_EXCL = 0x80 constant O_FSYNC (line 162) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 163) | O_LARGEFILE = 0x10000 constant O_NDELAY (line 164) | O_NDELAY = 0x800 constant O_NOATIME (line 165) | O_NOATIME = 0x40000 constant O_NOCTTY (line 166) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 167) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 168) | O_NONBLOCK = 0x800 constant O_PATH (line 169) | O_PATH = 0x200000 constant O_RSYNC (line 170) | O_RSYNC = 0x101000 constant O_SYNC (line 171) | O_SYNC = 0x101000 constant O_TMPFILE (line 172) | O_TMPFILE = 0x404000 constant O_TRUNC (line 173) | O_TRUNC = 0x200 constant PARENB (line 174) | PARENB = 0x1000 constant PARODD (line 175) | PARODD = 0x2000 constant PENDIN (line 176) | PENDIN = 0x20000000 constant PERF_EVENT_IOC_DISABLE (line 177) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 178) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 179) | PERF_EVENT_IOC_ID = 0x40042407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 180) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8004240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 181) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 182) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 183) | PERF_EVENT_IOC_QUERY_BPF = 0xc004240a constant PERF_EVENT_IOC_REFRESH (line 184) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 185) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 186) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 187) | PERF_EVENT_IOC_SET_FILTER = 0x80042406 constant PERF_EVENT_IOC_SET_OUTPUT (line 188) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 189) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 190) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 191) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 192) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 193) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 194) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 195) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 196) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 197) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 198) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 199) | PPPIOCGIDLE = 0x4008743f constant PPPIOCGIDLE32 (line 200) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 201) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 202) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 203) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 204) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 205) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 206) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 207) | PPPIOCSACTIVE = 0x80087446 constant PPPIOCSASYNCMAP (line 208) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 209) | PPPIOCSCOMPRESS = 0x800c744d constant PPPIOCSDEBUG (line 210) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 211) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 212) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 213) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 214) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 215) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 216) | PPPIOCSPASS = 0x80087447 constant PPPIOCSRASYNCMAP (line 217) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 218) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 219) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 220) | PPPIOCXFERUNIT = 0x2000744e constant PROT_SAO (line 221) | PROT_SAO = 0x10 constant PR_SET_PTRACER_ANY (line 222) | PR_SET_PTRACER_ANY = 0xffffffff constant PTRACE_GETEVRREGS (line 223) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 224) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS64 (line 225) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETVRREGS (line 226) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 227) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 228) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_SETEVRREGS (line 229) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 230) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETREGS64 (line 231) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETVRREGS (line 232) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 233) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 234) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 235) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SYSEMU (line 236) | PTRACE_SYSEMU = 0x1d constant PTRACE_SYSEMU_SINGLESTEP (line 237) | PTRACE_SYSEMU_SINGLESTEP = 0x1e constant PT_CCR (line 238) | PT_CCR = 0x26 constant PT_CTR (line 239) | PT_CTR = 0x23 constant PT_DAR (line 240) | PT_DAR = 0x29 constant PT_DSCR (line 241) | PT_DSCR = 0x2c constant PT_DSISR (line 242) | PT_DSISR = 0x2a constant PT_FPR0 (line 243) | PT_FPR0 = 0x30 constant PT_FPR31 (line 244) | PT_FPR31 = 0x6e constant PT_FPSCR (line 245) | PT_FPSCR = 0x71 constant PT_LNK (line 246) | PT_LNK = 0x24 constant PT_MQ (line 247) | PT_MQ = 0x27 constant PT_MSR (line 248) | PT_MSR = 0x21 constant PT_NIP (line 249) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 250) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 251) | PT_R0 = 0x0 constant PT_R1 (line 252) | PT_R1 = 0x1 constant PT_R10 (line 253) | PT_R10 = 0xa constant PT_R11 (line 254) | PT_R11 = 0xb constant PT_R12 (line 255) | PT_R12 = 0xc constant PT_R13 (line 256) | PT_R13 = 0xd constant PT_R14 (line 257) | PT_R14 = 0xe constant PT_R15 (line 258) | PT_R15 = 0xf constant PT_R16 (line 259) | PT_R16 = 0x10 constant PT_R17 (line 260) | PT_R17 = 0x11 constant PT_R18 (line 261) | PT_R18 = 0x12 constant PT_R19 (line 262) | PT_R19 = 0x13 constant PT_R2 (line 263) | PT_R2 = 0x2 constant PT_R20 (line 264) | PT_R20 = 0x14 constant PT_R21 (line 265) | PT_R21 = 0x15 constant PT_R22 (line 266) | PT_R22 = 0x16 constant PT_R23 (line 267) | PT_R23 = 0x17 constant PT_R24 (line 268) | PT_R24 = 0x18 constant PT_R25 (line 269) | PT_R25 = 0x19 constant PT_R26 (line 270) | PT_R26 = 0x1a constant PT_R27 (line 271) | PT_R27 = 0x1b constant PT_R28 (line 272) | PT_R28 = 0x1c constant PT_R29 (line 273) | PT_R29 = 0x1d constant PT_R3 (line 274) | PT_R3 = 0x3 constant PT_R30 (line 275) | PT_R30 = 0x1e constant PT_R31 (line 276) | PT_R31 = 0x1f constant PT_R4 (line 277) | PT_R4 = 0x4 constant PT_R5 (line 278) | PT_R5 = 0x5 constant PT_R6 (line 279) | PT_R6 = 0x6 constant PT_R7 (line 280) | PT_R7 = 0x7 constant PT_R8 (line 281) | PT_R8 = 0x8 constant PT_R9 (line 282) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 283) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 284) | PT_RESULT = 0x2b constant PT_TRAP (line 285) | PT_TRAP = 0x28 constant PT_XER (line 286) | PT_XER = 0x25 constant RLIMIT_AS (line 287) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 288) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 289) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 290) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 291) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 292) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 293) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 294) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 295) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 296) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 297) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 298) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 299) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 300) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 301) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 302) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 303) | RTC_EPOCH_READ = 0x4004700d constant RTC_EPOCH_SET (line 304) | RTC_EPOCH_SET = 0x8004700e constant RTC_IRQP_READ (line 305) | RTC_IRQP_READ = 0x4004700b constant RTC_IRQP_SET (line 306) | RTC_IRQP_SET = 0x8004700c constant RTC_PIE_OFF (line 307) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 308) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 309) | RTC_PLL_GET = 0x401c7011 constant RTC_PLL_SET (line 310) | RTC_PLL_SET = 0x801c7012 constant RTC_RD_TIME (line 311) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 312) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 313) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 314) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 315) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 316) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 317) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 318) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 319) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 320) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 321) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 322) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 323) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 324) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 325) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 326) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 327) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 328) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 329) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 330) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 331) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 332) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 333) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 334) | SIOCOUTQ = 0x40047473 constant SIOCSPGRP (line 335) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 336) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 337) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 338) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 339) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 340) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 341) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 342) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 343) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 344) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 345) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 346) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 347) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 348) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 349) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 350) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 351) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 352) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 353) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 354) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 355) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 356) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 357) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 358) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 359) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 360) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 361) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 362) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 363) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 364) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 365) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 366) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 367) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 368) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 369) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 370) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 371) | SO_PEERCRED = 0x15 constant SO_PEERGROUPS (line 372) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 373) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 374) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 375) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 376) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 377) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 378) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 379) | SO_RCVTIMEO = 0x12 constant SO_RCVTIMEO_NEW (line 380) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 381) | SO_RCVTIMEO_OLD = 0x12 constant SO_REUSEADDR (line 382) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 383) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 384) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 385) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 386) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 387) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 388) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 389) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 390) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 391) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 392) | SO_SNDTIMEO = 0x13 constant SO_SNDTIMEO_NEW (line 393) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 394) | SO_SNDTIMEO_OLD = 0x13 constant SO_TIMESTAMPING (line 395) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 396) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 397) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 398) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 399) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 400) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 401) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 402) | SO_TXTIME = 0x3d constant SO_TYPE (line 403) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 404) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 405) | SO_ZEROCOPY = 0x3c constant TAB1 (line 406) | TAB1 = 0x400 constant TAB2 (line 407) | TAB2 = 0x800 constant TAB3 (line 408) | TAB3 = 0xc00 constant TABDLY (line 409) | TABDLY = 0xc00 constant TCFLSH (line 410) | TCFLSH = 0x2000741f constant TCGETA (line 411) | TCGETA = 0x40147417 constant TCGETS (line 412) | TCGETS = 0x402c7413 constant TCSAFLUSH (line 413) | TCSAFLUSH = 0x2 constant TCSBRK (line 414) | TCSBRK = 0x2000741d constant TCSBRKP (line 415) | TCSBRKP = 0x5425 constant TCSETA (line 416) | TCSETA = 0x80147418 constant TCSETAF (line 417) | TCSETAF = 0x8014741c constant TCSETAW (line 418) | TCSETAW = 0x80147419 constant TCSETS (line 419) | TCSETS = 0x802c7414 constant TCSETSF (line 420) | TCSETSF = 0x802c7416 constant TCSETSW (line 421) | TCSETSW = 0x802c7415 constant TCXONC (line 422) | TCXONC = 0x2000741e constant TFD_CLOEXEC (line 423) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 424) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 425) | TIOCCBRK = 0x5428 constant TIOCCONS (line 426) | TIOCCONS = 0x541d constant TIOCEXCL (line 427) | TIOCEXCL = 0x540c constant TIOCGDEV (line 428) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 429) | TIOCGETC = 0x40067412 constant TIOCGETD (line 430) | TIOCGETD = 0x5424 constant TIOCGETP (line 431) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 432) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 433) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 434) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 435) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 436) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 437) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 438) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 439) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 440) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 441) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 442) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 443) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 444) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 445) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 446) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 447) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 448) | TIOCLINUX = 0x541c constant TIOCMBIC (line 449) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 450) | TIOCMBIS = 0x5416 constant TIOCMGET (line 451) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 452) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 453) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 454) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 455) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 456) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 457) | TIOCM_DSR = 0x100 constant TIOCM_LOOP (line 458) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 459) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 460) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 461) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 462) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 463) | TIOCM_SR = 0x10 constant TIOCM_ST (line 464) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 465) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 466) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 467) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 468) | TIOCPKT = 0x5420 constant TIOCSBRK (line 469) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 470) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 471) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 472) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 473) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 474) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 475) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 476) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 477) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 478) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 479) | TIOCSETC = 0x80067411 constant TIOCSETD (line 480) | TIOCSETD = 0x5423 constant TIOCSETN (line 481) | TIOCSETN = 0x8006740a constant TIOCSETP (line 482) | TIOCSETP = 0x80067409 constant TIOCSIG (line 483) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 484) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 485) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 486) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 487) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 488) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 489) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 490) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 491) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 492) | TIOCSTART = 0x2000746e constant TIOCSTI (line 493) | TIOCSTI = 0x5412 constant TIOCSTOP (line 494) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 495) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 496) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 497) | TOSTOP = 0x400000 constant TUNATTACHFILTER (line 498) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 499) | TUNDETACHFILTER = 0x800854d6 constant TUNGETDEVNETNS (line 500) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 501) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 502) | TUNGETFILTER = 0x400854db constant TUNGETIFF (line 503) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 504) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 505) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 506) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 507) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 508) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 509) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 510) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 511) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 512) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 513) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 514) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 515) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 516) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 517) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 518) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 519) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 520) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 521) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 522) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 523) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 524) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 525) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 526) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 527) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 528) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 529) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 530) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 531) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 532) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 533) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 534) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 535) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 536) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 537) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 538) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 539) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 540) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 541) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 542) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 543) | VDISCARD = 0x10 constant VEOF (line 544) | VEOF = 0x4 constant VEOL (line 545) | VEOL = 0x6 constant VEOL2 (line 546) | VEOL2 = 0x8 constant VMIN (line 547) | VMIN = 0x5 constant VREPRINT (line 548) | VREPRINT = 0xb constant VSTART (line 549) | VSTART = 0xd constant VSTOP (line 550) | VSTOP = 0xe constant VSUSP (line 551) | VSUSP = 0xc constant VSWTC (line 552) | VSWTC = 0x9 constant VT1 (line 553) | VT1 = 0x10000 constant VTDLY (line 554) | VTDLY = 0x10000 constant VTIME (line 555) | VTIME = 0x7 constant VWERASE (line 556) | VWERASE = 0xa constant WDIOC_GETBOOTSTATUS (line 557) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 558) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 559) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 560) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 561) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 562) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 563) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 564) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 565) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 566) | WORDSIZE = 0x20 constant XCASE (line 567) | XCASE = 0x4000 constant XTABS (line 568) | XTABS = 0xc00 constant _HIDIOCGRAWNAME (line 569) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 570) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 571) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 576) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 577) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 578) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 579) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 580) | EALREADY = syscall.Errno(0x72) constant EBADE (line 581) | EBADE = syscall.Errno(0x34) constant EBADFD (line 582) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 583) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 584) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 585) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 586) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 587) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 588) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 589) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 590) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 591) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 592) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 593) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 594) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 595) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 596) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 597) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 598) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 599) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 600) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 601) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 602) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 603) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 604) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 605) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 606) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 607) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 608) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 609) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 610) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 611) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 612) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 613) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 614) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 615) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 616) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 617) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 618) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 619) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 620) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 621) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 622) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 623) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 624) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 625) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 626) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 627) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 628) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 629) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 630) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 631) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 632) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 633) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 634) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 635) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 636) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 637) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 638) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 639) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 640) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 641) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 642) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 643) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 644) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 645) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 646) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 647) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 648) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 649) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 650) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 651) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 652) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 653) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 654) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 655) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 656) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 657) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 658) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 659) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 660) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 661) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 662) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 663) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 664) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 665) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 666) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 667) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 668) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 669) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 670) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 671) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 672) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 673) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 674) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 679) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 680) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 681) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 682) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 683) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 684) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 685) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 686) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 687) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 688) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 689) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 690) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 691) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 692) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 693) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 694) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 695) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 696) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 697) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 698) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 699) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go constant B1000000 (line 15) | B1000000 = 0x17 constant B115200 (line 16) | B115200 = 0x11 constant B1152000 (line 17) | B1152000 = 0x18 constant B1500000 (line 18) | B1500000 = 0x19 constant B2000000 (line 19) | B2000000 = 0x1a constant B230400 (line 20) | B230400 = 0x12 constant B2500000 (line 21) | B2500000 = 0x1b constant B3000000 (line 22) | B3000000 = 0x1c constant B3500000 (line 23) | B3500000 = 0x1d constant B4000000 (line 24) | B4000000 = 0x1e constant B460800 (line 25) | B460800 = 0x13 constant B500000 (line 26) | B500000 = 0x14 constant B57600 (line 27) | B57600 = 0x10 constant B576000 (line 28) | B576000 = 0x15 constant B921600 (line 29) | B921600 = 0x16 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1f constant BS1 (line 47) | BS1 = 0x8000 constant BSDLY (line 48) | BSDLY = 0x8000 constant CBAUD (line 49) | CBAUD = 0xff constant CBAUDEX (line 50) | CBAUDEX = 0x0 constant CIBAUD (line 51) | CIBAUD = 0xff0000 constant CLOCAL (line 52) | CLOCAL = 0x8000 constant CR1 (line 53) | CR1 = 0x1000 constant CR2 (line 54) | CR2 = 0x2000 constant CR3 (line 55) | CR3 = 0x3000 constant CRDLY (line 56) | CRDLY = 0x3000 constant CREAD (line 57) | CREAD = 0x800 constant CS6 (line 58) | CS6 = 0x100 constant CS7 (line 59) | CS7 = 0x200 constant CS8 (line 60) | CS8 = 0x300 constant CSIZE (line 61) | CSIZE = 0x300 constant CSTOPB (line 62) | CSTOPB = 0x400 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x40 constant ECHOE (line 66) | ECHOE = 0x2 constant ECHOK (line 67) | ECHOK = 0x4 constant ECHOKE (line 68) | ECHOKE = 0x1 constant ECHONL (line 69) | ECHONL = 0x10 constant ECHOPRT (line 70) | ECHOPRT = 0x20 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000000 constant FF1 (line 75) | FF1 = 0x4000 constant FFDLY (line 76) | FFDLY = 0x4000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x800000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0x5 constant F_GETLK64 (line 88) | F_GETLK64 = 0xc constant F_GETOWN (line 89) | F_GETOWN = 0x9 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x6 constant F_SETLK64 (line 92) | F_SETLK64 = 0xd constant F_SETLKW (line 93) | F_SETLKW = 0x7 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0xe constant F_SETOWN (line 95) | F_SETOWN = 0x8 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x4000 constant ICANON (line 102) | ICANON = 0x100 constant IEXTEN (line 103) | IEXTEN = 0x400 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x80 constant IUCLC (line 108) | IUCLC = 0x1000 constant IXOFF (line 109) | IXOFF = 0x400 constant IXON (line 110) | IXON = 0x200 constant MAP_ANON (line 111) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 121) | MAP_STACK = 0x20000 constant MAP_SYNC (line 122) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x8000 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x40 constant NL2 (line 140) | NL2 = 0x200 constant NL3 (line 141) | NL3 = 0x300 constant NLDLY (line 142) | NLDLY = 0x300 constant NOFLSH (line 143) | NOFLSH = 0x80000000 constant NS_GET_NSTYPE (line 144) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 145) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 146) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 147) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 148) | OLCUC = 0x4 constant ONLCR (line 149) | ONLCR = 0x2 constant OTPGETREGIONCOUNT (line 150) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 151) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 152) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 153) | OTPSELECT = 0x40044d0d constant O_APPEND (line 154) | O_APPEND = 0x400 constant O_ASYNC (line 155) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 156) | O_CLOEXEC = 0x80000 constant O_CREAT (line 157) | O_CREAT = 0x40 constant O_DIRECT (line 158) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 159) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 160) | O_DSYNC = 0x1000 constant O_EXCL (line 161) | O_EXCL = 0x80 constant O_FSYNC (line 162) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 163) | O_LARGEFILE = 0x0 constant O_NDELAY (line 164) | O_NDELAY = 0x800 constant O_NOATIME (line 165) | O_NOATIME = 0x40000 constant O_NOCTTY (line 166) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 167) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 168) | O_NONBLOCK = 0x800 constant O_PATH (line 169) | O_PATH = 0x200000 constant O_RSYNC (line 170) | O_RSYNC = 0x101000 constant O_SYNC (line 171) | O_SYNC = 0x101000 constant O_TMPFILE (line 172) | O_TMPFILE = 0x404000 constant O_TRUNC (line 173) | O_TRUNC = 0x200 constant PARENB (line 174) | PARENB = 0x1000 constant PARODD (line 175) | PARODD = 0x2000 constant PENDIN (line 176) | PENDIN = 0x20000000 constant PERF_EVENT_IOC_DISABLE (line 177) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 178) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 179) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 180) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 181) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 182) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 183) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 184) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 185) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 186) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 187) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 188) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 189) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 190) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 191) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 192) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 193) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 194) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 195) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 196) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 197) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 198) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 199) | PPPIOCGIDLE = 0x4010743f constant PPPIOCGIDLE32 (line 200) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 201) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 202) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 203) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 204) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 205) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 206) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 207) | PPPIOCSACTIVE = 0x80107446 constant PPPIOCSASYNCMAP (line 208) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 209) | PPPIOCSCOMPRESS = 0x8010744d constant PPPIOCSDEBUG (line 210) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 211) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 212) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 213) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 214) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 215) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 216) | PPPIOCSPASS = 0x80107447 constant PPPIOCSRASYNCMAP (line 217) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 218) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 219) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 220) | PPPIOCXFERUNIT = 0x2000744e constant PROT_SAO (line 221) | PROT_SAO = 0x10 constant PR_SET_PTRACER_ANY (line 222) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_GETEVRREGS (line 223) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 224) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS64 (line 225) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETVRREGS (line 226) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 227) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 228) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_SETEVRREGS (line 229) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 230) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETREGS64 (line 231) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETVRREGS (line 232) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 233) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 234) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 235) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SYSEMU (line 236) | PTRACE_SYSEMU = 0x1d constant PTRACE_SYSEMU_SINGLESTEP (line 237) | PTRACE_SYSEMU_SINGLESTEP = 0x1e constant PT_CCR (line 238) | PT_CCR = 0x26 constant PT_CTR (line 239) | PT_CTR = 0x23 constant PT_DAR (line 240) | PT_DAR = 0x29 constant PT_DSCR (line 241) | PT_DSCR = 0x2c constant PT_DSISR (line 242) | PT_DSISR = 0x2a constant PT_FPR0 (line 243) | PT_FPR0 = 0x30 constant PT_FPSCR (line 244) | PT_FPSCR = 0x50 constant PT_LNK (line 245) | PT_LNK = 0x24 constant PT_MSR (line 246) | PT_MSR = 0x21 constant PT_NIP (line 247) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 248) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 249) | PT_R0 = 0x0 constant PT_R1 (line 250) | PT_R1 = 0x1 constant PT_R10 (line 251) | PT_R10 = 0xa constant PT_R11 (line 252) | PT_R11 = 0xb constant PT_R12 (line 253) | PT_R12 = 0xc constant PT_R13 (line 254) | PT_R13 = 0xd constant PT_R14 (line 255) | PT_R14 = 0xe constant PT_R15 (line 256) | PT_R15 = 0xf constant PT_R16 (line 257) | PT_R16 = 0x10 constant PT_R17 (line 258) | PT_R17 = 0x11 constant PT_R18 (line 259) | PT_R18 = 0x12 constant PT_R19 (line 260) | PT_R19 = 0x13 constant PT_R2 (line 261) | PT_R2 = 0x2 constant PT_R20 (line 262) | PT_R20 = 0x14 constant PT_R21 (line 263) | PT_R21 = 0x15 constant PT_R22 (line 264) | PT_R22 = 0x16 constant PT_R23 (line 265) | PT_R23 = 0x17 constant PT_R24 (line 266) | PT_R24 = 0x18 constant PT_R25 (line 267) | PT_R25 = 0x19 constant PT_R26 (line 268) | PT_R26 = 0x1a constant PT_R27 (line 269) | PT_R27 = 0x1b constant PT_R28 (line 270) | PT_R28 = 0x1c constant PT_R29 (line 271) | PT_R29 = 0x1d constant PT_R3 (line 272) | PT_R3 = 0x3 constant PT_R30 (line 273) | PT_R30 = 0x1e constant PT_R31 (line 274) | PT_R31 = 0x1f constant PT_R4 (line 275) | PT_R4 = 0x4 constant PT_R5 (line 276) | PT_R5 = 0x5 constant PT_R6 (line 277) | PT_R6 = 0x6 constant PT_R7 (line 278) | PT_R7 = 0x7 constant PT_R8 (line 279) | PT_R8 = 0x8 constant PT_R9 (line 280) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 281) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 282) | PT_RESULT = 0x2b constant PT_SOFTE (line 283) | PT_SOFTE = 0x27 constant PT_TRAP (line 284) | PT_TRAP = 0x28 constant PT_VR0 (line 285) | PT_VR0 = 0x52 constant PT_VRSAVE (line 286) | PT_VRSAVE = 0x94 constant PT_VSCR (line 287) | PT_VSCR = 0x93 constant PT_VSR0 (line 288) | PT_VSR0 = 0x96 constant PT_VSR31 (line 289) | PT_VSR31 = 0xd4 constant PT_XER (line 290) | PT_XER = 0x25 constant RLIMIT_AS (line 291) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 292) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 293) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 294) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 295) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 296) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 297) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 298) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 299) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 300) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 301) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 302) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 303) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 304) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 305) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 306) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 307) | RTC_EPOCH_READ = 0x4008700d constant RTC_EPOCH_SET (line 308) | RTC_EPOCH_SET = 0x8008700e constant RTC_IRQP_READ (line 309) | RTC_IRQP_READ = 0x4008700b constant RTC_IRQP_SET (line 310) | RTC_IRQP_SET = 0x8008700c constant RTC_PIE_OFF (line 311) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 312) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 313) | RTC_PLL_GET = 0x40207011 constant RTC_PLL_SET (line 314) | RTC_PLL_SET = 0x80207012 constant RTC_RD_TIME (line 315) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 316) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 317) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 318) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 319) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 320) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 321) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 322) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 323) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 324) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 325) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 326) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 327) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 328) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 329) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 330) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 331) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 332) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 333) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 334) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 335) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 336) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 337) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 338) | SIOCOUTQ = 0x40047473 constant SIOCSPGRP (line 339) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 340) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 341) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 342) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 343) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 344) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 345) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 346) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 347) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 348) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 349) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 350) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 351) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 352) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 353) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 354) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 355) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 356) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 357) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 358) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 359) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 360) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 361) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 362) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 363) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 364) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 365) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 366) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 367) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 368) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 369) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 370) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 371) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 372) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 373) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 374) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 375) | SO_PEERCRED = 0x15 constant SO_PEERGROUPS (line 376) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 377) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 378) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 379) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 380) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 381) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 382) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 383) | SO_RCVTIMEO = 0x12 constant SO_RCVTIMEO_NEW (line 384) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 385) | SO_RCVTIMEO_OLD = 0x12 constant SO_REUSEADDR (line 386) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 387) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 388) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 389) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 390) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 391) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 392) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 393) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 394) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 395) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 396) | SO_SNDTIMEO = 0x13 constant SO_SNDTIMEO_NEW (line 397) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 398) | SO_SNDTIMEO_OLD = 0x13 constant SO_TIMESTAMPING (line 399) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 400) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 401) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 402) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 403) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 404) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 405) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 406) | SO_TXTIME = 0x3d constant SO_TYPE (line 407) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 408) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 409) | SO_ZEROCOPY = 0x3c constant TAB1 (line 410) | TAB1 = 0x400 constant TAB2 (line 411) | TAB2 = 0x800 constant TAB3 (line 412) | TAB3 = 0xc00 constant TABDLY (line 413) | TABDLY = 0xc00 constant TCFLSH (line 414) | TCFLSH = 0x2000741f constant TCGETA (line 415) | TCGETA = 0x40147417 constant TCGETS (line 416) | TCGETS = 0x402c7413 constant TCSAFLUSH (line 417) | TCSAFLUSH = 0x2 constant TCSBRK (line 418) | TCSBRK = 0x2000741d constant TCSBRKP (line 419) | TCSBRKP = 0x5425 constant TCSETA (line 420) | TCSETA = 0x80147418 constant TCSETAF (line 421) | TCSETAF = 0x8014741c constant TCSETAW (line 422) | TCSETAW = 0x80147419 constant TCSETS (line 423) | TCSETS = 0x802c7414 constant TCSETSF (line 424) | TCSETSF = 0x802c7416 constant TCSETSW (line 425) | TCSETSW = 0x802c7415 constant TCXONC (line 426) | TCXONC = 0x2000741e constant TFD_CLOEXEC (line 427) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 428) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 429) | TIOCCBRK = 0x5428 constant TIOCCONS (line 430) | TIOCCONS = 0x541d constant TIOCEXCL (line 431) | TIOCEXCL = 0x540c constant TIOCGDEV (line 432) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 433) | TIOCGETC = 0x40067412 constant TIOCGETD (line 434) | TIOCGETD = 0x5424 constant TIOCGETP (line 435) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 436) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 437) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 438) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 439) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 440) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 441) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 442) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 443) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 444) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 445) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 446) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 447) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 448) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 449) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 450) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 451) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 452) | TIOCLINUX = 0x541c constant TIOCMBIC (line 453) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 454) | TIOCMBIS = 0x5416 constant TIOCMGET (line 455) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 456) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 457) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 458) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 459) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 460) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 461) | TIOCM_DSR = 0x100 constant TIOCM_LOOP (line 462) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 463) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 464) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 465) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 466) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 467) | TIOCM_SR = 0x10 constant TIOCM_ST (line 468) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 469) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 470) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 471) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 472) | TIOCPKT = 0x5420 constant TIOCSBRK (line 473) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 474) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 475) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 476) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 477) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 478) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 479) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 480) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 481) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 482) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 483) | TIOCSETC = 0x80067411 constant TIOCSETD (line 484) | TIOCSETD = 0x5423 constant TIOCSETN (line 485) | TIOCSETN = 0x8006740a constant TIOCSETP (line 486) | TIOCSETP = 0x80067409 constant TIOCSIG (line 487) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 488) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 489) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 490) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 491) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 492) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 493) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 494) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 495) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 496) | TIOCSTART = 0x2000746e constant TIOCSTI (line 497) | TIOCSTI = 0x5412 constant TIOCSTOP (line 498) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 499) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 500) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 501) | TOSTOP = 0x400000 constant TUNATTACHFILTER (line 502) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 503) | TUNDETACHFILTER = 0x801054d6 constant TUNGETDEVNETNS (line 504) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 505) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 506) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 507) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 508) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 509) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 510) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 511) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 512) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 513) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 514) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 515) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 516) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 517) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 518) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 519) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 520) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 521) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 522) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 523) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 524) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 525) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 526) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 527) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 528) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 529) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 530) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 531) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 532) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 533) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 534) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 535) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 536) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 537) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 538) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 539) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 540) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 541) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 542) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 543) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 544) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 545) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 546) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 547) | VDISCARD = 0x10 constant VEOF (line 548) | VEOF = 0x4 constant VEOL (line 549) | VEOL = 0x6 constant VEOL2 (line 550) | VEOL2 = 0x8 constant VMIN (line 551) | VMIN = 0x5 constant VREPRINT (line 552) | VREPRINT = 0xb constant VSTART (line 553) | VSTART = 0xd constant VSTOP (line 554) | VSTOP = 0xe constant VSUSP (line 555) | VSUSP = 0xc constant VSWTC (line 556) | VSWTC = 0x9 constant VT1 (line 557) | VT1 = 0x10000 constant VTDLY (line 558) | VTDLY = 0x10000 constant VTIME (line 559) | VTIME = 0x7 constant VWERASE (line 560) | VWERASE = 0xa constant WDIOC_GETBOOTSTATUS (line 561) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 562) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 563) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 564) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 565) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 566) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 567) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 568) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 569) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 570) | WORDSIZE = 0x40 constant XCASE (line 571) | XCASE = 0x4000 constant XTABS (line 572) | XTABS = 0xc00 constant _HIDIOCGRAWNAME (line 573) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 574) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 575) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 580) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 581) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 582) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 583) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 584) | EALREADY = syscall.Errno(0x72) constant EBADE (line 585) | EBADE = syscall.Errno(0x34) constant EBADFD (line 586) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 587) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 588) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 589) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 590) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 591) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 592) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 593) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 594) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 595) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 596) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 597) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 598) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 599) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 600) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 601) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 602) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 603) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 604) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 605) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 606) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 607) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 608) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 609) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 610) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 611) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 612) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 613) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 614) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 615) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 616) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 617) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 618) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 619) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 620) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 621) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 622) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 623) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 624) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 625) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 626) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 627) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 628) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 629) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 630) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 631) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 632) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 633) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 634) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 635) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 636) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 637) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 638) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 639) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 640) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 641) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 642) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 643) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 644) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 645) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 646) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 647) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 648) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 649) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 650) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 651) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 652) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 653) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 654) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 655) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 656) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 657) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 658) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 659) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 660) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 661) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 662) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 663) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 664) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 665) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 666) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 667) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 668) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 669) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 670) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 671) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 672) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 673) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 674) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 675) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 676) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 677) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 678) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 683) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 684) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 685) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 686) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 687) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 688) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 689) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 690) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 691) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 692) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 693) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 694) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 695) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 696) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 697) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 698) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 699) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 700) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 701) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 702) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 703) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go constant B1000000 (line 15) | B1000000 = 0x17 constant B115200 (line 16) | B115200 = 0x11 constant B1152000 (line 17) | B1152000 = 0x18 constant B1500000 (line 18) | B1500000 = 0x19 constant B2000000 (line 19) | B2000000 = 0x1a constant B230400 (line 20) | B230400 = 0x12 constant B2500000 (line 21) | B2500000 = 0x1b constant B3000000 (line 22) | B3000000 = 0x1c constant B3500000 (line 23) | B3500000 = 0x1d constant B4000000 (line 24) | B4000000 = 0x1e constant B460800 (line 25) | B460800 = 0x13 constant B500000 (line 26) | B500000 = 0x14 constant B57600 (line 27) | B57600 = 0x10 constant B576000 (line 28) | B576000 = 0x15 constant B921600 (line 29) | B921600 = 0x16 constant BLKBSZGET (line 30) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 34) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 38) | BLKRAGET = 0x20001263 constant BLKRASET (line 39) | BLKRASET = 0x20001262 constant BLKROGET (line 40) | BLKROGET = 0x2000125e constant BLKROSET (line 41) | BLKROSET = 0x2000125d constant BLKRRPART (line 42) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x20001268 constant BOTHER (line 46) | BOTHER = 0x1f constant BS1 (line 47) | BS1 = 0x8000 constant BSDLY (line 48) | BSDLY = 0x8000 constant CBAUD (line 49) | CBAUD = 0xff constant CBAUDEX (line 50) | CBAUDEX = 0x0 constant CIBAUD (line 51) | CIBAUD = 0xff0000 constant CLOCAL (line 52) | CLOCAL = 0x8000 constant CR1 (line 53) | CR1 = 0x1000 constant CR2 (line 54) | CR2 = 0x2000 constant CR3 (line 55) | CR3 = 0x3000 constant CRDLY (line 56) | CRDLY = 0x3000 constant CREAD (line 57) | CREAD = 0x800 constant CS6 (line 58) | CS6 = 0x100 constant CS7 (line 59) | CS7 = 0x200 constant CS8 (line 60) | CS8 = 0x300 constant CSIZE (line 61) | CSIZE = 0x300 constant CSTOPB (line 62) | CSTOPB = 0x400 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x40 constant ECHOE (line 66) | ECHOE = 0x2 constant ECHOK (line 67) | ECHOK = 0x4 constant ECHOKE (line 68) | ECHOKE = 0x1 constant ECHONL (line 69) | ECHONL = 0x10 constant ECHOPRT (line 70) | ECHOPRT = 0x20 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000000 constant FF1 (line 75) | FF1 = 0x4000 constant FFDLY (line 76) | FFDLY = 0x4000 constant FICLONE (line 77) | FICLONE = 0x80049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x8020940d constant FLUSHO (line 79) | FLUSHO = 0x800000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x40086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x80086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 87) | F_GETLK = 0x5 constant F_GETLK64 (line 88) | F_GETLK64 = 0xc constant F_GETOWN (line 89) | F_GETOWN = 0x9 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x6 constant F_SETLK64 (line 92) | F_SETLK64 = 0xd constant F_SETLKW (line 93) | F_SETLKW = 0x7 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0xe constant F_SETOWN (line 95) | F_SETOWN = 0x8 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 101) | HUPCL = 0x4000 constant ICANON (line 102) | ICANON = 0x100 constant IEXTEN (line 103) | IEXTEN = 0x400 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 107) | ISIG = 0x80 constant IUCLC (line 108) | IUCLC = 0x1000 constant IXOFF (line 109) | IXOFF = 0x400 constant IXON (line 110) | IXON = 0x200 constant MAP_ANON (line 111) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 121) | MAP_STACK = 0x20000 constant MAP_SYNC (line 122) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x8000 constant MEMERASE (line 126) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 139) | NFDBITS = 0x40 constant NL2 (line 140) | NL2 = 0x200 constant NL3 (line 141) | NL3 = 0x300 constant NLDLY (line 142) | NLDLY = 0x300 constant NOFLSH (line 143) | NOFLSH = 0x80000000 constant NS_GET_NSTYPE (line 144) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 145) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 146) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 147) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 148) | OLCUC = 0x4 constant ONLCR (line 149) | ONLCR = 0x2 constant OTPGETREGIONCOUNT (line 150) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 151) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 152) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 153) | OTPSELECT = 0x40044d0d constant O_APPEND (line 154) | O_APPEND = 0x400 constant O_ASYNC (line 155) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 156) | O_CLOEXEC = 0x80000 constant O_CREAT (line 157) | O_CREAT = 0x40 constant O_DIRECT (line 158) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 159) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 160) | O_DSYNC = 0x1000 constant O_EXCL (line 161) | O_EXCL = 0x80 constant O_FSYNC (line 162) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 163) | O_LARGEFILE = 0x0 constant O_NDELAY (line 164) | O_NDELAY = 0x800 constant O_NOATIME (line 165) | O_NOATIME = 0x40000 constant O_NOCTTY (line 166) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 167) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 168) | O_NONBLOCK = 0x800 constant O_PATH (line 169) | O_PATH = 0x200000 constant O_RSYNC (line 170) | O_RSYNC = 0x101000 constant O_SYNC (line 171) | O_SYNC = 0x101000 constant O_TMPFILE (line 172) | O_TMPFILE = 0x404000 constant O_TRUNC (line 173) | O_TRUNC = 0x200 constant PARENB (line 174) | PARENB = 0x1000 constant PARODD (line 175) | PARODD = 0x2000 constant PENDIN (line 176) | PENDIN = 0x20000000 constant PERF_EVENT_IOC_DISABLE (line 177) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 178) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 179) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 180) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 181) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 182) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 183) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 184) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 185) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 186) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 187) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 188) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 189) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 190) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 191) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 192) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 193) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 194) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 195) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 196) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 197) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 198) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 199) | PPPIOCGIDLE = 0x4010743f constant PPPIOCGIDLE32 (line 200) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 201) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 202) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 203) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 204) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 205) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 206) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 207) | PPPIOCSACTIVE = 0x80107446 constant PPPIOCSASYNCMAP (line 208) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 209) | PPPIOCSCOMPRESS = 0x8010744d constant PPPIOCSDEBUG (line 210) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 211) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 212) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 213) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 214) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 215) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 216) | PPPIOCSPASS = 0x80107447 constant PPPIOCSRASYNCMAP (line 217) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 218) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 219) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 220) | PPPIOCXFERUNIT = 0x2000744e constant PROT_SAO (line 221) | PROT_SAO = 0x10 constant PR_SET_PTRACER_ANY (line 222) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_GETEVRREGS (line 223) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 224) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS64 (line 225) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETVRREGS (line 226) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 227) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 228) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_SETEVRREGS (line 229) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 230) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETREGS64 (line 231) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETVRREGS (line 232) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 233) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 234) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 235) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SYSEMU (line 236) | PTRACE_SYSEMU = 0x1d constant PTRACE_SYSEMU_SINGLESTEP (line 237) | PTRACE_SYSEMU_SINGLESTEP = 0x1e constant PT_CCR (line 238) | PT_CCR = 0x26 constant PT_CTR (line 239) | PT_CTR = 0x23 constant PT_DAR (line 240) | PT_DAR = 0x29 constant PT_DSCR (line 241) | PT_DSCR = 0x2c constant PT_DSISR (line 242) | PT_DSISR = 0x2a constant PT_FPR0 (line 243) | PT_FPR0 = 0x30 constant PT_FPSCR (line 244) | PT_FPSCR = 0x50 constant PT_LNK (line 245) | PT_LNK = 0x24 constant PT_MSR (line 246) | PT_MSR = 0x21 constant PT_NIP (line 247) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 248) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 249) | PT_R0 = 0x0 constant PT_R1 (line 250) | PT_R1 = 0x1 constant PT_R10 (line 251) | PT_R10 = 0xa constant PT_R11 (line 252) | PT_R11 = 0xb constant PT_R12 (line 253) | PT_R12 = 0xc constant PT_R13 (line 254) | PT_R13 = 0xd constant PT_R14 (line 255) | PT_R14 = 0xe constant PT_R15 (line 256) | PT_R15 = 0xf constant PT_R16 (line 257) | PT_R16 = 0x10 constant PT_R17 (line 258) | PT_R17 = 0x11 constant PT_R18 (line 259) | PT_R18 = 0x12 constant PT_R19 (line 260) | PT_R19 = 0x13 constant PT_R2 (line 261) | PT_R2 = 0x2 constant PT_R20 (line 262) | PT_R20 = 0x14 constant PT_R21 (line 263) | PT_R21 = 0x15 constant PT_R22 (line 264) | PT_R22 = 0x16 constant PT_R23 (line 265) | PT_R23 = 0x17 constant PT_R24 (line 266) | PT_R24 = 0x18 constant PT_R25 (line 267) | PT_R25 = 0x19 constant PT_R26 (line 268) | PT_R26 = 0x1a constant PT_R27 (line 269) | PT_R27 = 0x1b constant PT_R28 (line 270) | PT_R28 = 0x1c constant PT_R29 (line 271) | PT_R29 = 0x1d constant PT_R3 (line 272) | PT_R3 = 0x3 constant PT_R30 (line 273) | PT_R30 = 0x1e constant PT_R31 (line 274) | PT_R31 = 0x1f constant PT_R4 (line 275) | PT_R4 = 0x4 constant PT_R5 (line 276) | PT_R5 = 0x5 constant PT_R6 (line 277) | PT_R6 = 0x6 constant PT_R7 (line 278) | PT_R7 = 0x7 constant PT_R8 (line 279) | PT_R8 = 0x8 constant PT_R9 (line 280) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 281) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 282) | PT_RESULT = 0x2b constant PT_SOFTE (line 283) | PT_SOFTE = 0x27 constant PT_TRAP (line 284) | PT_TRAP = 0x28 constant PT_VR0 (line 285) | PT_VR0 = 0x52 constant PT_VRSAVE (line 286) | PT_VRSAVE = 0x94 constant PT_VSCR (line 287) | PT_VSCR = 0x93 constant PT_VSR0 (line 288) | PT_VSR0 = 0x96 constant PT_VSR31 (line 289) | PT_VSR31 = 0xd4 constant PT_XER (line 290) | PT_XER = 0x25 constant RLIMIT_AS (line 291) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 292) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 293) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 294) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 295) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 296) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 297) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 298) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 299) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 300) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 301) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 302) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 303) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 304) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 305) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 306) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 307) | RTC_EPOCH_READ = 0x4008700d constant RTC_EPOCH_SET (line 308) | RTC_EPOCH_SET = 0x8008700e constant RTC_IRQP_READ (line 309) | RTC_IRQP_READ = 0x4008700b constant RTC_IRQP_SET (line 310) | RTC_IRQP_SET = 0x8008700c constant RTC_PIE_OFF (line 311) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 312) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 313) | RTC_PLL_GET = 0x40207011 constant RTC_PLL_SET (line 314) | RTC_PLL_SET = 0x80207012 constant RTC_RD_TIME (line 315) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 316) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 317) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 318) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 319) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 320) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 321) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 322) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 323) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 324) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 325) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 326) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 327) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 328) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 329) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 330) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 331) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 332) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 333) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 334) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 335) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 336) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 337) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 338) | SIOCOUTQ = 0x40047473 constant SIOCSPGRP (line 339) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 340) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 341) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 342) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 343) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 344) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 345) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 346) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 347) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 348) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 349) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 350) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 351) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 352) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 353) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 354) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 355) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 356) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 357) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 358) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 359) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 360) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 361) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 362) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 363) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 364) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 365) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 366) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 367) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 368) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 369) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 370) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 371) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 372) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 373) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 374) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 375) | SO_PEERCRED = 0x15 constant SO_PEERGROUPS (line 376) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 377) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 378) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 379) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 380) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 381) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 382) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 383) | SO_RCVTIMEO = 0x12 constant SO_RCVTIMEO_NEW (line 384) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 385) | SO_RCVTIMEO_OLD = 0x12 constant SO_REUSEADDR (line 386) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 387) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 388) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 389) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 390) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 391) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 392) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 393) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 394) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 395) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 396) | SO_SNDTIMEO = 0x13 constant SO_SNDTIMEO_NEW (line 397) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 398) | SO_SNDTIMEO_OLD = 0x13 constant SO_TIMESTAMPING (line 399) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 400) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 401) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 402) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 403) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 404) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 405) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 406) | SO_TXTIME = 0x3d constant SO_TYPE (line 407) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 408) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 409) | SO_ZEROCOPY = 0x3c constant TAB1 (line 410) | TAB1 = 0x400 constant TAB2 (line 411) | TAB2 = 0x800 constant TAB3 (line 412) | TAB3 = 0xc00 constant TABDLY (line 413) | TABDLY = 0xc00 constant TCFLSH (line 414) | TCFLSH = 0x2000741f constant TCGETA (line 415) | TCGETA = 0x40147417 constant TCGETS (line 416) | TCGETS = 0x402c7413 constant TCSAFLUSH (line 417) | TCSAFLUSH = 0x2 constant TCSBRK (line 418) | TCSBRK = 0x2000741d constant TCSBRKP (line 419) | TCSBRKP = 0x5425 constant TCSETA (line 420) | TCSETA = 0x80147418 constant TCSETAF (line 421) | TCSETAF = 0x8014741c constant TCSETAW (line 422) | TCSETAW = 0x80147419 constant TCSETS (line 423) | TCSETS = 0x802c7414 constant TCSETSF (line 424) | TCSETSF = 0x802c7416 constant TCSETSW (line 425) | TCSETSW = 0x802c7415 constant TCXONC (line 426) | TCXONC = 0x2000741e constant TFD_CLOEXEC (line 427) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 428) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 429) | TIOCCBRK = 0x5428 constant TIOCCONS (line 430) | TIOCCONS = 0x541d constant TIOCEXCL (line 431) | TIOCEXCL = 0x540c constant TIOCGDEV (line 432) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 433) | TIOCGETC = 0x40067412 constant TIOCGETD (line 434) | TIOCGETD = 0x5424 constant TIOCGETP (line 435) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 436) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 437) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 438) | TIOCGISO7816 = 0x40285442 constant TIOCGLCKTRMIOS (line 439) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 440) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 441) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 442) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 443) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 444) | TIOCGPTN = 0x40045430 constant TIOCGPTPEER (line 445) | TIOCGPTPEER = 0x20005441 constant TIOCGRS485 (line 446) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 447) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 448) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 449) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 450) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 451) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 452) | TIOCLINUX = 0x541c constant TIOCMBIC (line 453) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 454) | TIOCMBIS = 0x5416 constant TIOCMGET (line 455) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 456) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 457) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 458) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 459) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 460) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 461) | TIOCM_DSR = 0x100 constant TIOCM_LOOP (line 462) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 463) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 464) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 465) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 466) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 467) | TIOCM_SR = 0x10 constant TIOCM_ST (line 468) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 469) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 470) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 471) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 472) | TIOCPKT = 0x5420 constant TIOCSBRK (line 473) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 474) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 475) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 476) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 477) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 478) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 479) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 480) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 481) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 482) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 483) | TIOCSETC = 0x80067411 constant TIOCSETD (line 484) | TIOCSETD = 0x5423 constant TIOCSETN (line 485) | TIOCSETN = 0x8006740a constant TIOCSETP (line 486) | TIOCSETP = 0x80067409 constant TIOCSIG (line 487) | TIOCSIG = 0x80045436 constant TIOCSISO7816 (line 488) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 489) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 490) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 491) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 492) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 493) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 494) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 495) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 496) | TIOCSTART = 0x2000746e constant TIOCSTI (line 497) | TIOCSTI = 0x5412 constant TIOCSTOP (line 498) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 499) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 500) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 501) | TOSTOP = 0x400000 constant TUNATTACHFILTER (line 502) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 503) | TUNDETACHFILTER = 0x801054d6 constant TUNGETDEVNETNS (line 504) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 505) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 506) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 507) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 508) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 509) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 510) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 511) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 512) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 513) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 514) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 515) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 516) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 517) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 518) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 519) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 520) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 521) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 522) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 523) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 524) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 525) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 526) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 527) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 528) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 529) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 530) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 531) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 532) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 533) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 534) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 535) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 536) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 537) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 538) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 539) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 540) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 541) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 542) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 543) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 544) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 545) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 546) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 547) | VDISCARD = 0x10 constant VEOF (line 548) | VEOF = 0x4 constant VEOL (line 549) | VEOL = 0x6 constant VEOL2 (line 550) | VEOL2 = 0x8 constant VMIN (line 551) | VMIN = 0x5 constant VREPRINT (line 552) | VREPRINT = 0xb constant VSTART (line 553) | VSTART = 0xd constant VSTOP (line 554) | VSTOP = 0xe constant VSUSP (line 555) | VSUSP = 0xc constant VSWTC (line 556) | VSWTC = 0x9 constant VT1 (line 557) | VT1 = 0x10000 constant VTDLY (line 558) | VTDLY = 0x10000 constant VTIME (line 559) | VTIME = 0x7 constant VWERASE (line 560) | VWERASE = 0xa constant WDIOC_GETBOOTSTATUS (line 561) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 562) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 563) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 564) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 565) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 566) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 567) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 568) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 569) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 570) | WORDSIZE = 0x40 constant XCASE (line 571) | XCASE = 0x4000 constant XTABS (line 572) | XTABS = 0xc00 constant _HIDIOCGRAWNAME (line 573) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 574) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 575) | _HIDIOCGRAWUNIQ = 0x40404808 constant EADDRINUSE (line 580) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 581) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 582) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 583) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 584) | EALREADY = syscall.Errno(0x72) constant EBADE (line 585) | EBADE = syscall.Errno(0x34) constant EBADFD (line 586) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 587) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 588) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 589) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 590) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 591) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 592) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 593) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 594) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 595) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 596) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 597) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 598) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 599) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 600) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 601) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 602) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 603) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 604) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 605) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 606) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 607) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 608) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 609) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 610) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 611) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 612) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 613) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 614) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 615) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 616) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 617) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 618) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 619) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 620) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 621) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 622) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 623) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 624) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 625) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 626) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 627) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 628) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 629) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 630) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 631) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 632) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 633) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 634) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 635) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 636) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 637) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 638) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 639) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 640) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 641) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 642) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 643) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 644) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 645) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 646) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 647) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 648) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 649) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 650) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 651) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 652) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 653) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 654) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 655) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 656) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 657) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 658) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 659) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 660) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 661) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 662) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 663) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 664) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 665) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 666) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 667) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 668) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 669) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 670) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 671) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 672) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 673) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 674) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 675) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 676) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 677) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 678) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 683) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 684) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 685) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 686) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 687) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 688) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 689) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 690) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 691) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 692) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 693) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 694) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 695) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 696) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 697) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 698) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 699) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 700) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 701) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 702) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 703) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x1265 constant BLKFRASET (line 34) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x127b constant BLKRAGET (line 38) | BLKRAGET = 0x1263 constant BLKRASET (line 39) | BLKRASET = 0x1262 constant BLKROGET (line 40) | BLKROGET = 0x125e constant BLKROSET (line 41) | BLKROSET = 0x125d constant BLKRRPART (line 42) | BLKRRPART = 0x125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x1268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x81484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x80104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x40049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x4020940d constant FLUSHO (line 79) | FLUSHO = 0x1000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x40806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x80086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x8010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x40086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant F_GETLK (line 87) | F_GETLK = 0x5 constant F_GETLK64 (line 88) | F_GETLK64 = 0x5 constant F_GETOWN (line 89) | F_GETOWN = 0x9 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x6 constant F_SETLK64 (line 92) | F_SETLK64 = 0x6 constant F_SETLKW (line 93) | F_SETLKW = 0x7 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0x7 constant F_SETOWN (line 95) | F_SETOWN = 0x8 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x80084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x90044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x80044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 121) | MAP_STACK = 0x20000 constant MAP_SYNC (line 122) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x40084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x40104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x40084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x80204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x80c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x80044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x80084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x40084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x40084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x40084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x4d13 constant NFDBITS (line 139) | NFDBITS = 0x40 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0xb703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0xb704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0xb702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0xb701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x40044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x400c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x800c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x80044d0d constant O_APPEND (line 152) | O_APPEND = 0x400 constant O_ASYNC (line 153) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x40 constant O_DIRECT (line 156) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 158) | O_DSYNC = 0x1000 constant O_EXCL (line 159) | O_EXCL = 0x80 constant O_FSYNC (line 160) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x0 constant O_NDELAY (line 162) | O_NDELAY = 0x800 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x800 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x101000 constant O_SYNC (line 169) | O_SYNC = 0x101000 constant O_TMPFILE (line 170) | O_TMPFILE = 0x410000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x4004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x40047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x40047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x4004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x4004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x7439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x80047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x80047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x80047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x8004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x8010743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x8008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x8010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x80487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x80047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x80047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x80047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x80207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x40107446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x40047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x4010744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x40047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x40047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x40047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x4004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x40047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x4008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x40107447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x40047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x4020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x7434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant RLIMIT_AS (line 220) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 221) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 222) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 223) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 224) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 225) | RNDADDENTROPY = 0x40085203 constant RNDADDTOENTCNT (line 226) | RNDADDTOENTCNT = 0x40045201 constant RNDCLEARPOOL (line 227) | RNDCLEARPOOL = 0x5206 constant RNDGETENTCNT (line 228) | RNDGETENTCNT = 0x80045200 constant RNDGETPOOL (line 229) | RNDGETPOOL = 0x80085202 constant RNDRESEEDCRNG (line 230) | RNDRESEEDCRNG = 0x5207 constant RNDZAPENTCNT (line 231) | RNDZAPENTCNT = 0x5204 constant RTC_AIE_OFF (line 232) | RTC_AIE_OFF = 0x7002 constant RTC_AIE_ON (line 233) | RTC_AIE_ON = 0x7001 constant RTC_ALM_READ (line 234) | RTC_ALM_READ = 0x80247008 constant RTC_ALM_SET (line 235) | RTC_ALM_SET = 0x40247007 constant RTC_EPOCH_READ (line 236) | RTC_EPOCH_READ = 0x8008700d constant RTC_EPOCH_SET (line 237) | RTC_EPOCH_SET = 0x4008700e constant RTC_IRQP_READ (line 238) | RTC_IRQP_READ = 0x8008700b constant RTC_IRQP_SET (line 239) | RTC_IRQP_SET = 0x4008700c constant RTC_PIE_OFF (line 240) | RTC_PIE_OFF = 0x7006 constant RTC_PIE_ON (line 241) | RTC_PIE_ON = 0x7005 constant RTC_PLL_GET (line 242) | RTC_PLL_GET = 0x80207011 constant RTC_PLL_SET (line 243) | RTC_PLL_SET = 0x40207012 constant RTC_RD_TIME (line 244) | RTC_RD_TIME = 0x80247009 constant RTC_SET_TIME (line 245) | RTC_SET_TIME = 0x4024700a constant RTC_UIE_OFF (line 246) | RTC_UIE_OFF = 0x7004 constant RTC_UIE_ON (line 247) | RTC_UIE_ON = 0x7003 constant RTC_VL_CLR (line 248) | RTC_VL_CLR = 0x7014 constant RTC_VL_READ (line 249) | RTC_VL_READ = 0x80047013 constant RTC_WIE_OFF (line 250) | RTC_WIE_OFF = 0x7010 constant RTC_WIE_ON (line 251) | RTC_WIE_ON = 0x700f constant RTC_WKALM_RD (line 252) | RTC_WKALM_RD = 0x80287010 constant RTC_WKALM_SET (line 253) | RTC_WKALM_SET = 0x4028700f constant SCM_TIMESTAMPING (line 254) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 255) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 256) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 257) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 258) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 259) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 260) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 261) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 262) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 263) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 264) | SIOCGSTAMPNS_NEW = 0x80108907 constant SIOCGSTAMP_NEW (line 265) | SIOCGSTAMP_NEW = 0x80108906 constant SIOCINQ (line 266) | SIOCINQ = 0x541b constant SIOCOUTQ (line 267) | SIOCOUTQ = 0x5411 constant SIOCSPGRP (line 268) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 269) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 270) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 271) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 272) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 273) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 274) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 275) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 276) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 277) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 278) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 279) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 280) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 281) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 282) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 283) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 284) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 285) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 286) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 287) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 288) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 289) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 290) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 291) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 292) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 293) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 294) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 295) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 296) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 297) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 298) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 299) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 300) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 301) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 302) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 303) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 304) | SO_PEERCRED = 0x11 constant SO_PEERGROUPS (line 305) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 306) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 307) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 308) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 309) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 310) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 311) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 312) | SO_RCVTIMEO = 0x14 constant SO_RCVTIMEO_NEW (line 313) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 314) | SO_RCVTIMEO_OLD = 0x14 constant SO_REUSEADDR (line 315) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 316) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 317) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 318) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 319) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 320) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 321) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 322) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 323) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 324) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 325) | SO_SNDTIMEO = 0x15 constant SO_SNDTIMEO_NEW (line 326) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 327) | SO_SNDTIMEO_OLD = 0x15 constant SO_TIMESTAMPING (line 328) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 329) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 330) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 331) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 332) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 333) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 334) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 335) | SO_TXTIME = 0x3d constant SO_TYPE (line 336) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 337) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 338) | SO_ZEROCOPY = 0x3c constant TAB1 (line 339) | TAB1 = 0x800 constant TAB2 (line 340) | TAB2 = 0x1000 constant TAB3 (line 341) | TAB3 = 0x1800 constant TABDLY (line 342) | TABDLY = 0x1800 constant TCFLSH (line 343) | TCFLSH = 0x540b constant TCGETA (line 344) | TCGETA = 0x5405 constant TCGETS (line 345) | TCGETS = 0x5401 constant TCGETS2 (line 346) | TCGETS2 = 0x802c542a constant TCGETX (line 347) | TCGETX = 0x5432 constant TCSAFLUSH (line 348) | TCSAFLUSH = 0x2 constant TCSBRK (line 349) | TCSBRK = 0x5409 constant TCSBRKP (line 350) | TCSBRKP = 0x5425 constant TCSETA (line 351) | TCSETA = 0x5406 constant TCSETAF (line 352) | TCSETAF = 0x5408 constant TCSETAW (line 353) | TCSETAW = 0x5407 constant TCSETS (line 354) | TCSETS = 0x5402 constant TCSETS2 (line 355) | TCSETS2 = 0x402c542b constant TCSETSF (line 356) | TCSETSF = 0x5404 constant TCSETSF2 (line 357) | TCSETSF2 = 0x402c542d constant TCSETSW (line 358) | TCSETSW = 0x5403 constant TCSETSW2 (line 359) | TCSETSW2 = 0x402c542c constant TCSETX (line 360) | TCSETX = 0x5433 constant TCSETXF (line 361) | TCSETXF = 0x5434 constant TCSETXW (line 362) | TCSETXW = 0x5435 constant TCXONC (line 363) | TCXONC = 0x540a constant TFD_CLOEXEC (line 364) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 365) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 366) | TIOCCBRK = 0x5428 constant TIOCCONS (line 367) | TIOCCONS = 0x541d constant TIOCEXCL (line 368) | TIOCEXCL = 0x540c constant TIOCGDEV (line 369) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 370) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 371) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 372) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 373) | TIOCGISO7816 = 0x80285442 constant TIOCGLCKTRMIOS (line 374) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 375) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 376) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 377) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 378) | TIOCGPTN = 0x80045430 constant TIOCGPTPEER (line 379) | TIOCGPTPEER = 0x5441 constant TIOCGRS485 (line 380) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 381) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 382) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 383) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 384) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 385) | TIOCINQ = 0x541b constant TIOCLINUX (line 386) | TIOCLINUX = 0x541c constant TIOCMBIC (line 387) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 388) | TIOCMBIS = 0x5416 constant TIOCMGET (line 389) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 390) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 391) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 392) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 393) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 394) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 395) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 396) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 397) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 398) | TIOCM_SR = 0x10 constant TIOCM_ST (line 399) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 400) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 401) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 402) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 403) | TIOCPKT = 0x5420 constant TIOCSBRK (line 404) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 405) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 406) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 407) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 408) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 409) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 410) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 411) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 412) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 413) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 414) | TIOCSETD = 0x5423 constant TIOCSIG (line 415) | TIOCSIG = 0x40045436 constant TIOCSISO7816 (line 416) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 417) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 418) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 419) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 420) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 421) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 422) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 423) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 424) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 425) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 426) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 427) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 428) | TUNDETACHFILTER = 0x401054d6 constant TUNGETDEVNETNS (line 429) | TUNGETDEVNETNS = 0x54e3 constant TUNGETFEATURES (line 430) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 431) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 432) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 433) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 434) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 435) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 436) | TUNGETVNETLE = 0x800454dd constant TUNSETCARRIER (line 437) | TUNSETCARRIER = 0x400454e2 constant TUNSETDEBUG (line 438) | TUNSETDEBUG = 0x400454c9 constant TUNSETFILTEREBPF (line 439) | TUNSETFILTEREBPF = 0x800454e1 constant TUNSETGROUP (line 440) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 441) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 442) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 443) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 444) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 445) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 446) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 447) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 448) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 449) | TUNSETSNDBUF = 0x400454d4 constant TUNSETSTEERINGEBPF (line 450) | TUNSETSTEERINGEBPF = 0x800454e0 constant TUNSETTXFILTER (line 451) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 452) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 453) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 454) | TUNSETVNETLE = 0x400454dc constant UBI_IOCATT (line 455) | UBI_IOCATT = 0x40186f40 constant UBI_IOCDET (line 456) | UBI_IOCDET = 0x40046f41 constant UBI_IOCEBCH (line 457) | UBI_IOCEBCH = 0x40044f02 constant UBI_IOCEBER (line 458) | UBI_IOCEBER = 0x40044f01 constant UBI_IOCEBISMAP (line 459) | UBI_IOCEBISMAP = 0x80044f05 constant UBI_IOCEBMAP (line 460) | UBI_IOCEBMAP = 0x40084f03 constant UBI_IOCEBUNMAP (line 461) | UBI_IOCEBUNMAP = 0x40044f04 constant UBI_IOCMKVOL (line 462) | UBI_IOCMKVOL = 0x40986f00 constant UBI_IOCRMVOL (line 463) | UBI_IOCRMVOL = 0x40046f01 constant UBI_IOCRNVOL (line 464) | UBI_IOCRNVOL = 0x51106f03 constant UBI_IOCRPEB (line 465) | UBI_IOCRPEB = 0x40046f04 constant UBI_IOCRSVOL (line 466) | UBI_IOCRSVOL = 0x400c6f02 constant UBI_IOCSETVOLPROP (line 467) | UBI_IOCSETVOLPROP = 0x40104f06 constant UBI_IOCSPEB (line 468) | UBI_IOCSPEB = 0x40046f05 constant UBI_IOCVOLCRBLK (line 469) | UBI_IOCVOLCRBLK = 0x40804f07 constant UBI_IOCVOLRMBLK (line 470) | UBI_IOCVOLRMBLK = 0x4f08 constant UBI_IOCVOLUP (line 471) | UBI_IOCVOLUP = 0x40084f00 constant VDISCARD (line 472) | VDISCARD = 0xd constant VEOF (line 473) | VEOF = 0x4 constant VEOL (line 474) | VEOL = 0xb constant VEOL2 (line 475) | VEOL2 = 0x10 constant VMIN (line 476) | VMIN = 0x6 constant VREPRINT (line 477) | VREPRINT = 0xc constant VSTART (line 478) | VSTART = 0x8 constant VSTOP (line 479) | VSTOP = 0x9 constant VSUSP (line 480) | VSUSP = 0xa constant VSWTC (line 481) | VSWTC = 0x7 constant VT1 (line 482) | VT1 = 0x4000 constant VTDLY (line 483) | VTDLY = 0x4000 constant VTIME (line 484) | VTIME = 0x5 constant VWERASE (line 485) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 486) | WDIOC_GETBOOTSTATUS = 0x80045702 constant WDIOC_GETPRETIMEOUT (line 487) | WDIOC_GETPRETIMEOUT = 0x80045709 constant WDIOC_GETSTATUS (line 488) | WDIOC_GETSTATUS = 0x80045701 constant WDIOC_GETSUPPORT (line 489) | WDIOC_GETSUPPORT = 0x80285700 constant WDIOC_GETTEMP (line 490) | WDIOC_GETTEMP = 0x80045703 constant WDIOC_GETTIMELEFT (line 491) | WDIOC_GETTIMELEFT = 0x8004570a constant WDIOC_GETTIMEOUT (line 492) | WDIOC_GETTIMEOUT = 0x80045707 constant WDIOC_KEEPALIVE (line 493) | WDIOC_KEEPALIVE = 0x80045705 constant WDIOC_SETOPTIONS (line 494) | WDIOC_SETOPTIONS = 0x80045704 constant WORDSIZE (line 495) | WORDSIZE = 0x40 constant XCASE (line 496) | XCASE = 0x4 constant XTABS (line 497) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 498) | _HIDIOCGRAWNAME = 0x80804804 constant _HIDIOCGRAWPHYS (line 499) | _HIDIOCGRAWPHYS = 0x80404805 constant _HIDIOCGRAWUNIQ (line 500) | _HIDIOCGRAWUNIQ = 0x80404808 constant EADDRINUSE (line 505) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 506) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 507) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 508) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 509) | EALREADY = syscall.Errno(0x72) constant EBADE (line 510) | EBADE = syscall.Errno(0x34) constant EBADFD (line 511) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 512) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 513) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 514) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 515) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 516) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 517) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 518) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 519) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 520) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 521) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 522) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 523) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 524) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 525) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 526) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 527) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 528) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 529) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 530) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 531) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 532) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 533) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 534) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 535) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 536) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 537) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 538) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 539) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 540) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 541) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 542) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 543) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 544) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 545) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 546) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 547) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 548) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 549) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 550) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 551) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 552) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 553) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 554) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 555) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 556) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 557) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 558) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 559) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 560) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 561) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 562) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 563) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 564) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 565) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 566) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 567) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 568) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 569) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 570) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 571) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 572) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 573) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 574) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 575) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 576) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 577) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 578) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 579) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 580) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 581) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 582) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 583) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 584) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 585) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 586) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 587) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 588) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 589) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 590) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 591) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 592) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 593) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 594) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 595) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 596) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 597) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 598) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 599) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 600) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 601) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 602) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 603) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 608) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 609) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 610) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 611) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 612) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 613) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 614) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 615) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 616) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 617) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 618) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 619) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 620) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 621) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 622) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 623) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 624) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 625) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 626) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 627) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 628) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go constant B1000000 (line 15) | B1000000 = 0x1008 constant B115200 (line 16) | B115200 = 0x1002 constant B1152000 (line 17) | B1152000 = 0x1009 constant B1500000 (line 18) | B1500000 = 0x100a constant B2000000 (line 19) | B2000000 = 0x100b constant B230400 (line 20) | B230400 = 0x1003 constant B2500000 (line 21) | B2500000 = 0x100c constant B3000000 (line 22) | B3000000 = 0x100d constant B3500000 (line 23) | B3500000 = 0x100e constant B4000000 (line 24) | B4000000 = 0x100f constant B460800 (line 25) | B460800 = 0x1004 constant B500000 (line 26) | B500000 = 0x1005 constant B57600 (line 27) | B57600 = 0x1001 constant B576000 (line 28) | B576000 = 0x1006 constant B921600 (line 29) | B921600 = 0x1007 constant BLKBSZGET (line 30) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 31) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 32) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 33) | BLKFRAGET = 0x1265 constant BLKFRASET (line 34) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 35) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 36) | BLKGETSIZE64 = 0x80081272 constant BLKPBSZGET (line 37) | BLKPBSZGET = 0x127b constant BLKRAGET (line 38) | BLKRAGET = 0x1263 constant BLKRASET (line 39) | BLKRASET = 0x1262 constant BLKROGET (line 40) | BLKROGET = 0x125e constant BLKROSET (line 41) | BLKROSET = 0x125d constant BLKRRPART (line 42) | BLKRRPART = 0x125f constant BLKSECTGET (line 43) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 44) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 45) | BLKSSZGET = 0x1268 constant BOTHER (line 46) | BOTHER = 0x1000 constant BS1 (line 47) | BS1 = 0x2000 constant BSDLY (line 48) | BSDLY = 0x2000 constant CBAUD (line 49) | CBAUD = 0x100f constant CBAUDEX (line 50) | CBAUDEX = 0x1000 constant CIBAUD (line 51) | CIBAUD = 0x100f0000 constant CLOCAL (line 52) | CLOCAL = 0x800 constant CR1 (line 53) | CR1 = 0x200 constant CR2 (line 54) | CR2 = 0x400 constant CR3 (line 55) | CR3 = 0x600 constant CRDLY (line 56) | CRDLY = 0x600 constant CREAD (line 57) | CREAD = 0x80 constant CS6 (line 58) | CS6 = 0x10 constant CS7 (line 59) | CS7 = 0x20 constant CS8 (line 60) | CS8 = 0x30 constant CSIZE (line 61) | CSIZE = 0x30 constant CSTOPB (line 62) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 63) | ECCGETLAYOUT = 0x81484d11 constant ECCGETSTATS (line 64) | ECCGETSTATS = 0x80104d12 constant ECHOCTL (line 65) | ECHOCTL = 0x200 constant ECHOE (line 66) | ECHOE = 0x10 constant ECHOK (line 67) | ECHOK = 0x20 constant ECHOKE (line 68) | ECHOKE = 0x800 constant ECHONL (line 69) | ECHONL = 0x40 constant ECHOPRT (line 70) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 71) | EFD_CLOEXEC = 0x80000 constant EFD_NONBLOCK (line 72) | EFD_NONBLOCK = 0x800 constant EPOLL_CLOEXEC (line 73) | EPOLL_CLOEXEC = 0x80000 constant EXTPROC (line 74) | EXTPROC = 0x10000 constant FF1 (line 75) | FF1 = 0x8000 constant FFDLY (line 76) | FFDLY = 0x8000 constant FICLONE (line 77) | FICLONE = 0x40049409 constant FICLONERANGE (line 78) | FICLONERANGE = 0x4020940d constant FLUSHO (line 79) | FLUSHO = 0x1000 constant FS_IOC_ENABLE_VERITY (line 80) | FS_IOC_ENABLE_VERITY = 0x40806685 constant FS_IOC_GETFLAGS (line 81) | FS_IOC_GETFLAGS = 0x80086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 82) | FS_IOC_GET_ENCRYPTION_NONCE = 0x8010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 83) | FS_IOC_GET_ENCRYPTION_POLICY = 0x400c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 84) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x40106614 constant FS_IOC_SETFLAGS (line 85) | FS_IOC_SETFLAGS = 0x40086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 86) | FS_IOC_SET_ENCRYPTION_POLICY = 0x800c6613 constant F_GETLK (line 87) | F_GETLK = 0x5 constant F_GETLK64 (line 88) | F_GETLK64 = 0x5 constant F_GETOWN (line 89) | F_GETOWN = 0x9 constant F_RDLCK (line 90) | F_RDLCK = 0x0 constant F_SETLK (line 91) | F_SETLK = 0x6 constant F_SETLK64 (line 92) | F_SETLK64 = 0x6 constant F_SETLKW (line 93) | F_SETLKW = 0x7 constant F_SETLKW64 (line 94) | F_SETLKW64 = 0x7 constant F_SETOWN (line 95) | F_SETOWN = 0x8 constant F_UNLCK (line 96) | F_UNLCK = 0x2 constant F_WRLCK (line 97) | F_WRLCK = 0x1 constant HIDIOCGRAWINFO (line 98) | HIDIOCGRAWINFO = 0x80084803 constant HIDIOCGRDESC (line 99) | HIDIOCGRDESC = 0x90044802 constant HIDIOCGRDESCSIZE (line 100) | HIDIOCGRDESCSIZE = 0x80044801 constant HUPCL (line 101) | HUPCL = 0x400 constant ICANON (line 102) | ICANON = 0x2 constant IEXTEN (line 103) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 104) | IN_CLOEXEC = 0x80000 constant IN_NONBLOCK (line 105) | IN_NONBLOCK = 0x800 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 106) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x7b9 constant ISIG (line 107) | ISIG = 0x1 constant IUCLC (line 108) | IUCLC = 0x200 constant IXOFF (line 109) | IXOFF = 0x1000 constant IXON (line 110) | IXON = 0x400 constant MAP_ANON (line 111) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 112) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 113) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 114) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 115) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 116) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 117) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 118) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 119) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 120) | MAP_POPULATE = 0x8000 constant MAP_STACK (line 121) | MAP_STACK = 0x20000 constant MAP_SYNC (line 122) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 123) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 124) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 125) | MCL_ONFAULT = 0x4 constant MEMERASE (line 126) | MEMERASE = 0x40084d02 constant MEMERASE64 (line 127) | MEMERASE64 = 0x40104d14 constant MEMGETBADBLOCK (line 128) | MEMGETBADBLOCK = 0x40084d0b constant MEMGETINFO (line 129) | MEMGETINFO = 0x80204d01 constant MEMGETOOBSEL (line 130) | MEMGETOOBSEL = 0x80c84d0a constant MEMGETREGIONCOUNT (line 131) | MEMGETREGIONCOUNT = 0x80044d07 constant MEMISLOCKED (line 132) | MEMISLOCKED = 0x80084d17 constant MEMLOCK (line 133) | MEMLOCK = 0x40084d05 constant MEMREADOOB (line 134) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 135) | MEMSETBADBLOCK = 0x40084d0c constant MEMUNLOCK (line 136) | MEMUNLOCK = 0x40084d06 constant MEMWRITEOOB (line 137) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 138) | MTDFILEMODE = 0x4d13 constant NFDBITS (line 139) | NFDBITS = 0x40 constant NLDLY (line 140) | NLDLY = 0x100 constant NOFLSH (line 141) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 142) | NS_GET_NSTYPE = 0xb703 constant NS_GET_OWNER_UID (line 143) | NS_GET_OWNER_UID = 0xb704 constant NS_GET_PARENT (line 144) | NS_GET_PARENT = 0xb702 constant NS_GET_USERNS (line 145) | NS_GET_USERNS = 0xb701 constant OLCUC (line 146) | OLCUC = 0x2 constant ONLCR (line 147) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 148) | OTPGETREGIONCOUNT = 0x40044d0e constant OTPGETREGIONINFO (line 149) | OTPGETREGIONINFO = 0x400c4d0f constant OTPLOCK (line 150) | OTPLOCK = 0x800c4d10 constant OTPSELECT (line 151) | OTPSELECT = 0x80044d0d constant O_APPEND (line 152) | O_APPEND = 0x400 constant O_ASYNC (line 153) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 154) | O_CLOEXEC = 0x80000 constant O_CREAT (line 155) | O_CREAT = 0x40 constant O_DIRECT (line 156) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 157) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 158) | O_DSYNC = 0x1000 constant O_EXCL (line 159) | O_EXCL = 0x80 constant O_FSYNC (line 160) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 161) | O_LARGEFILE = 0x0 constant O_NDELAY (line 162) | O_NDELAY = 0x800 constant O_NOATIME (line 163) | O_NOATIME = 0x40000 constant O_NOCTTY (line 164) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 165) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 166) | O_NONBLOCK = 0x800 constant O_PATH (line 167) | O_PATH = 0x200000 constant O_RSYNC (line 168) | O_RSYNC = 0x101000 constant O_SYNC (line 169) | O_SYNC = 0x101000 constant O_TMPFILE (line 170) | O_TMPFILE = 0x410000 constant O_TRUNC (line 171) | O_TRUNC = 0x200 constant PARENB (line 172) | PARENB = 0x100 constant PARODD (line 173) | PARODD = 0x200 constant PENDIN (line 174) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 175) | PERF_EVENT_IOC_DISABLE = 0x2401 constant PERF_EVENT_IOC_ENABLE (line 176) | PERF_EVENT_IOC_ENABLE = 0x2400 constant PERF_EVENT_IOC_ID (line 177) | PERF_EVENT_IOC_ID = 0x80082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 178) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x4008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 179) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x40042409 constant PERF_EVENT_IOC_PERIOD (line 180) | PERF_EVENT_IOC_PERIOD = 0x40082404 constant PERF_EVENT_IOC_QUERY_BPF (line 181) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 182) | PERF_EVENT_IOC_REFRESH = 0x2402 constant PERF_EVENT_IOC_RESET (line 183) | PERF_EVENT_IOC_RESET = 0x2403 constant PERF_EVENT_IOC_SET_BPF (line 184) | PERF_EVENT_IOC_SET_BPF = 0x40042408 constant PERF_EVENT_IOC_SET_FILTER (line 185) | PERF_EVENT_IOC_SET_FILTER = 0x40082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 186) | PERF_EVENT_IOC_SET_OUTPUT = 0x2405 constant PPPIOCATTACH (line 187) | PPPIOCATTACH = 0x4004743d constant PPPIOCATTCHAN (line 188) | PPPIOCATTCHAN = 0x40047438 constant PPPIOCBRIDGECHAN (line 189) | PPPIOCBRIDGECHAN = 0x40047435 constant PPPIOCCONNECT (line 190) | PPPIOCCONNECT = 0x4004743a constant PPPIOCDETACH (line 191) | PPPIOCDETACH = 0x4004743c constant PPPIOCDISCONN (line 192) | PPPIOCDISCONN = 0x7439 constant PPPIOCGASYNCMAP (line 193) | PPPIOCGASYNCMAP = 0x80047458 constant PPPIOCGCHAN (line 194) | PPPIOCGCHAN = 0x80047437 constant PPPIOCGDEBUG (line 195) | PPPIOCGDEBUG = 0x80047441 constant PPPIOCGFLAGS (line 196) | PPPIOCGFLAGS = 0x8004745a constant PPPIOCGIDLE (line 197) | PPPIOCGIDLE = 0x8010743f constant PPPIOCGIDLE32 (line 198) | PPPIOCGIDLE32 = 0x8008743f constant PPPIOCGIDLE64 (line 199) | PPPIOCGIDLE64 = 0x8010743f constant PPPIOCGL2TPSTATS (line 200) | PPPIOCGL2TPSTATS = 0x80487436 constant PPPIOCGMRU (line 201) | PPPIOCGMRU = 0x80047453 constant PPPIOCGRASYNCMAP (line 202) | PPPIOCGRASYNCMAP = 0x80047455 constant PPPIOCGUNIT (line 203) | PPPIOCGUNIT = 0x80047456 constant PPPIOCGXASYNCMAP (line 204) | PPPIOCGXASYNCMAP = 0x80207450 constant PPPIOCSACTIVE (line 205) | PPPIOCSACTIVE = 0x40107446 constant PPPIOCSASYNCMAP (line 206) | PPPIOCSASYNCMAP = 0x40047457 constant PPPIOCSCOMPRESS (line 207) | PPPIOCSCOMPRESS = 0x4010744d constant PPPIOCSDEBUG (line 208) | PPPIOCSDEBUG = 0x40047440 constant PPPIOCSFLAGS (line 209) | PPPIOCSFLAGS = 0x40047459 constant PPPIOCSMAXCID (line 210) | PPPIOCSMAXCID = 0x40047451 constant PPPIOCSMRRU (line 211) | PPPIOCSMRRU = 0x4004743b constant PPPIOCSMRU (line 212) | PPPIOCSMRU = 0x40047452 constant PPPIOCSNPMODE (line 213) | PPPIOCSNPMODE = 0x4008744b constant PPPIOCSPASS (line 214) | PPPIOCSPASS = 0x40107447 constant PPPIOCSRASYNCMAP (line 215) | PPPIOCSRASYNCMAP = 0x40047454 constant PPPIOCSXASYNCMAP (line 216) | PPPIOCSXASYNCMAP = 0x4020744f constant PPPIOCUNBRIDGECHAN (line 217) | PPPIOCUNBRIDGECHAN = 0x7434 constant PPPIOCXFERUNIT (line 218) | PPPIOCXFERUNIT = 0x744e constant PR_SET_PTRACER_ANY (line 219) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_DISABLE_TE (line 220) | PTRACE_DISABLE_TE = 0x5010 constant PTRACE_ENABLE_TE (line 221) | PTRACE_ENABLE_TE = 0x5009 constant PTRACE_GET_LAST_BREAK (line 222) | PTRACE_GET_LAST_BREAK = 0x5006 constant PTRACE_OLDSETOPTIONS (line 223) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_PEEKDATA_AREA (line 224) | PTRACE_PEEKDATA_AREA = 0x5003 constant PTRACE_PEEKTEXT_AREA (line 225) | PTRACE_PEEKTEXT_AREA = 0x5002 constant PTRACE_PEEKUSR_AREA (line 226) | PTRACE_PEEKUSR_AREA = 0x5000 constant PTRACE_PEEK_SYSTEM_CALL (line 227) | PTRACE_PEEK_SYSTEM_CALL = 0x5007 constant PTRACE_POKEDATA_AREA (line 228) | PTRACE_POKEDATA_AREA = 0x5005 constant PTRACE_POKETEXT_AREA (line 229) | PTRACE_POKETEXT_AREA = 0x5004 constant PTRACE_POKEUSR_AREA (line 230) | PTRACE_POKEUSR_AREA = 0x5001 constant PTRACE_POKE_SYSTEM_CALL (line 231) | PTRACE_POKE_SYSTEM_CALL = 0x5008 constant PTRACE_PROT (line 232) | PTRACE_PROT = 0x15 constant PTRACE_SINGLEBLOCK (line 233) | PTRACE_SINGLEBLOCK = 0xc constant PTRACE_SYSEMU (line 234) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 235) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant PTRACE_TE_ABORT_RAND (line 236) | PTRACE_TE_ABORT_RAND = 0x5011 constant PT_ACR0 (line 237) | PT_ACR0 = 0x90 constant PT_ACR1 (line 238) | PT_ACR1 = 0x94 constant PT_ACR10 (line 239) | PT_ACR10 = 0xb8 constant PT_ACR11 (line 240) | PT_ACR11 = 0xbc constant PT_ACR12 (line 241) | PT_ACR12 = 0xc0 constant PT_ACR13 (line 242) | PT_ACR13 = 0xc4 constant PT_ACR14 (line 243) | PT_ACR14 = 0xc8 constant PT_ACR15 (line 244) | PT_ACR15 = 0xcc constant PT_ACR2 (line 245) | PT_ACR2 = 0x98 constant PT_ACR3 (line 246) | PT_ACR3 = 0x9c constant PT_ACR4 (line 247) | PT_ACR4 = 0xa0 constant PT_ACR5 (line 248) | PT_ACR5 = 0xa4 constant PT_ACR6 (line 249) | PT_ACR6 = 0xa8 constant PT_ACR7 (line 250) | PT_ACR7 = 0xac constant PT_ACR8 (line 251) | PT_ACR8 = 0xb0 constant PT_ACR9 (line 252) | PT_ACR9 = 0xb4 constant PT_CR_10 (line 253) | PT_CR_10 = 0x168 constant PT_CR_11 (line 254) | PT_CR_11 = 0x170 constant PT_CR_9 (line 255) | PT_CR_9 = 0x160 constant PT_ENDREGS (line 256) | PT_ENDREGS = 0x1af constant PT_FPC (line 257) | PT_FPC = 0xd8 constant PT_FPR0 (line 258) | PT_FPR0 = 0xe0 constant PT_FPR1 (line 259) | PT_FPR1 = 0xe8 constant PT_FPR10 (line 260) | PT_FPR10 = 0x130 constant PT_FPR11 (line 261) | PT_FPR11 = 0x138 constant PT_FPR12 (line 262) | PT_FPR12 = 0x140 constant PT_FPR13 (line 263) | PT_FPR13 = 0x148 constant PT_FPR14 (line 264) | PT_FPR14 = 0x150 constant PT_FPR15 (line 265) | PT_FPR15 = 0x158 constant PT_FPR2 (line 266) | PT_FPR2 = 0xf0 constant PT_FPR3 (line 267) | PT_FPR3 = 0xf8 constant PT_FPR4 (line 268) | PT_FPR4 = 0x100 constant PT_FPR5 (line 269) | PT_FPR5 = 0x108 constant PT_FPR6 (line 270) | PT_FPR6 = 0x110 constant PT_FPR7 (line 271) | PT_FPR7 = 0x118 constant PT_FPR8 (line 272) | PT_FPR8 = 0x120 constant PT_FPR9 (line 273) | PT_FPR9 = 0x128 constant PT_GPR0 (line 274) | PT_GPR0 = 0x10 constant PT_GPR1 (line 275) | PT_GPR1 = 0x18 constant PT_GPR10 (line 276) | PT_GPR10 = 0x60 constant PT_GPR11 (line 277) | PT_GPR11 = 0x68 constant PT_GPR12 (line 278) | PT_GPR12 = 0x70 constant PT_GPR13 (line 279) | PT_GPR13 = 0x78 constant PT_GPR14 (line 280) | PT_GPR14 = 0x80 constant PT_GPR15 (line 281) | PT_GPR15 = 0x88 constant PT_GPR2 (line 282) | PT_GPR2 = 0x20 constant PT_GPR3 (line 283) | PT_GPR3 = 0x28 constant PT_GPR4 (line 284) | PT_GPR4 = 0x30 constant PT_GPR5 (line 285) | PT_GPR5 = 0x38 constant PT_GPR6 (line 286) | PT_GPR6 = 0x40 constant PT_GPR7 (line 287) | PT_GPR7 = 0x48 constant PT_GPR8 (line 288) | PT_GPR8 = 0x50 constant PT_GPR9 (line 289) | PT_GPR9 = 0x58 constant PT_IEEE_IP (line 290) | PT_IEEE_IP = 0x1a8 constant PT_LASTOFF (line 291) | PT_LASTOFF = 0x1a8 constant PT_ORIGGPR2 (line 292) | PT_ORIGGPR2 = 0xd0 constant PT_PSWADDR (line 293) | PT_PSWADDR = 0x8 constant PT_PSWMASK (line 294) | PT_PSWMASK = 0x0 constant RLIMIT_AS (line 295) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 296) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 297) | RLIMIT_NOFILE = 0x7 constant RLIMIT_NPROC (line 298) | RLIMIT_NPROC = 0x6 constant RLIMIT_RSS (line 299) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 300) | RNDADDENTROPY = 0x40085203 constant RNDADDTOENTCNT (line 301) | RNDADDTOENTCNT = 0x40045201 constant RNDCLEARPOOL (line 302) | RNDCLEARPOOL = 0x5206 constant RNDGETENTCNT (line 303) | RNDGETENTCNT = 0x80045200 constant RNDGETPOOL (line 304) | RNDGETPOOL = 0x80085202 constant RNDRESEEDCRNG (line 305) | RNDRESEEDCRNG = 0x5207 constant RNDZAPENTCNT (line 306) | RNDZAPENTCNT = 0x5204 constant RTC_AIE_OFF (line 307) | RTC_AIE_OFF = 0x7002 constant RTC_AIE_ON (line 308) | RTC_AIE_ON = 0x7001 constant RTC_ALM_READ (line 309) | RTC_ALM_READ = 0x80247008 constant RTC_ALM_SET (line 310) | RTC_ALM_SET = 0x40247007 constant RTC_EPOCH_READ (line 311) | RTC_EPOCH_READ = 0x8008700d constant RTC_EPOCH_SET (line 312) | RTC_EPOCH_SET = 0x4008700e constant RTC_IRQP_READ (line 313) | RTC_IRQP_READ = 0x8008700b constant RTC_IRQP_SET (line 314) | RTC_IRQP_SET = 0x4008700c constant RTC_PIE_OFF (line 315) | RTC_PIE_OFF = 0x7006 constant RTC_PIE_ON (line 316) | RTC_PIE_ON = 0x7005 constant RTC_PLL_GET (line 317) | RTC_PLL_GET = 0x80207011 constant RTC_PLL_SET (line 318) | RTC_PLL_SET = 0x40207012 constant RTC_RD_TIME (line 319) | RTC_RD_TIME = 0x80247009 constant RTC_SET_TIME (line 320) | RTC_SET_TIME = 0x4024700a constant RTC_UIE_OFF (line 321) | RTC_UIE_OFF = 0x7004 constant RTC_UIE_ON (line 322) | RTC_UIE_ON = 0x7003 constant RTC_VL_CLR (line 323) | RTC_VL_CLR = 0x7014 constant RTC_VL_READ (line 324) | RTC_VL_READ = 0x80047013 constant RTC_WIE_OFF (line 325) | RTC_WIE_OFF = 0x7010 constant RTC_WIE_ON (line 326) | RTC_WIE_ON = 0x700f constant RTC_WKALM_RD (line 327) | RTC_WKALM_RD = 0x80287010 constant RTC_WKALM_SET (line 328) | RTC_WKALM_SET = 0x4028700f constant SCM_TIMESTAMPING (line 329) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPING_OPT_STATS (line 330) | SCM_TIMESTAMPING_OPT_STATS = 0x36 constant SCM_TIMESTAMPING_PKTINFO (line 331) | SCM_TIMESTAMPING_PKTINFO = 0x3a constant SCM_TIMESTAMPNS (line 332) | SCM_TIMESTAMPNS = 0x23 constant SCM_TXTIME (line 333) | SCM_TXTIME = 0x3d constant SCM_WIFI_STATUS (line 334) | SCM_WIFI_STATUS = 0x29 constant SFD_CLOEXEC (line 335) | SFD_CLOEXEC = 0x80000 constant SFD_NONBLOCK (line 336) | SFD_NONBLOCK = 0x800 constant SIOCATMARK (line 337) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 338) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 339) | SIOCGSTAMPNS_NEW = 0x80108907 constant SIOCGSTAMP_NEW (line 340) | SIOCGSTAMP_NEW = 0x80108906 constant SIOCINQ (line 341) | SIOCINQ = 0x541b constant SIOCOUTQ (line 342) | SIOCOUTQ = 0x5411 constant SIOCSPGRP (line 343) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 344) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 345) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 346) | SOCK_NONBLOCK = 0x800 constant SOCK_STREAM (line 347) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 348) | SOL_SOCKET = 0x1 constant SO_ACCEPTCONN (line 349) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 350) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_REUSEPORT_CBPF (line 351) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 352) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 353) | SO_BINDTODEVICE = 0x19 constant SO_BINDTOIFINDEX (line 354) | SO_BINDTOIFINDEX = 0x3e constant SO_BPF_EXTENSIONS (line 355) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 356) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 357) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 358) | SO_BUSY_POLL = 0x2e constant SO_BUSY_POLL_BUDGET (line 359) | SO_BUSY_POLL_BUDGET = 0x46 constant SO_CNX_ADVICE (line 360) | SO_CNX_ADVICE = 0x35 constant SO_COOKIE (line 361) | SO_COOKIE = 0x39 constant SO_DETACH_REUSEPORT_BPF (line 362) | SO_DETACH_REUSEPORT_BPF = 0x44 constant SO_DOMAIN (line 363) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 364) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 365) | SO_ERROR = 0x4 constant SO_INCOMING_CPU (line 366) | SO_INCOMING_CPU = 0x31 constant SO_INCOMING_NAPI_ID (line 367) | SO_INCOMING_NAPI_ID = 0x38 constant SO_KEEPALIVE (line 368) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 369) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 370) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 371) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 372) | SO_MAX_PACING_RATE = 0x2f constant SO_MEMINFO (line 373) | SO_MEMINFO = 0x37 constant SO_NOFCS (line 374) | SO_NOFCS = 0x2b constant SO_OOBINLINE (line 375) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 376) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 377) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 378) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 379) | SO_PEERCRED = 0x11 constant SO_PEERGROUPS (line 380) | SO_PEERGROUPS = 0x3b constant SO_PEERSEC (line 381) | SO_PEERSEC = 0x1f constant SO_PREFER_BUSY_POLL (line 382) | SO_PREFER_BUSY_POLL = 0x45 constant SO_PROTOCOL (line 383) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 384) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 385) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 386) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 387) | SO_RCVTIMEO = 0x14 constant SO_RCVTIMEO_NEW (line 388) | SO_RCVTIMEO_NEW = 0x42 constant SO_RCVTIMEO_OLD (line 389) | SO_RCVTIMEO_OLD = 0x14 constant SO_REUSEADDR (line 390) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 391) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 392) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 393) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 394) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 395) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 396) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 397) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 398) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 399) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 400) | SO_SNDTIMEO = 0x15 constant SO_SNDTIMEO_NEW (line 401) | SO_SNDTIMEO_NEW = 0x43 constant SO_SNDTIMEO_OLD (line 402) | SO_SNDTIMEO_OLD = 0x15 constant SO_TIMESTAMPING (line 403) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPING_NEW (line 404) | SO_TIMESTAMPING_NEW = 0x41 constant SO_TIMESTAMPING_OLD (line 405) | SO_TIMESTAMPING_OLD = 0x25 constant SO_TIMESTAMPNS (line 406) | SO_TIMESTAMPNS = 0x23 constant SO_TIMESTAMPNS_NEW (line 407) | SO_TIMESTAMPNS_NEW = 0x40 constant SO_TIMESTAMPNS_OLD (line 408) | SO_TIMESTAMPNS_OLD = 0x23 constant SO_TIMESTAMP_NEW (line 409) | SO_TIMESTAMP_NEW = 0x3f constant SO_TXTIME (line 410) | SO_TXTIME = 0x3d constant SO_TYPE (line 411) | SO_TYPE = 0x3 constant SO_WIFI_STATUS (line 412) | SO_WIFI_STATUS = 0x29 constant SO_ZEROCOPY (line 413) | SO_ZEROCOPY = 0x3c constant TAB1 (line 414) | TAB1 = 0x800 constant TAB2 (line 415) | TAB2 = 0x1000 constant TAB3 (line 416) | TAB3 = 0x1800 constant TABDLY (line 417) | TABDLY = 0x1800 constant TCFLSH (line 418) | TCFLSH = 0x540b constant TCGETA (line 419) | TCGETA = 0x5405 constant TCGETS (line 420) | TCGETS = 0x5401 constant TCGETS2 (line 421) | TCGETS2 = 0x802c542a constant TCGETX (line 422) | TCGETX = 0x5432 constant TCSAFLUSH (line 423) | TCSAFLUSH = 0x2 constant TCSBRK (line 424) | TCSBRK = 0x5409 constant TCSBRKP (line 425) | TCSBRKP = 0x5425 constant TCSETA (line 426) | TCSETA = 0x5406 constant TCSETAF (line 427) | TCSETAF = 0x5408 constant TCSETAW (line 428) | TCSETAW = 0x5407 constant TCSETS (line 429) | TCSETS = 0x5402 constant TCSETS2 (line 430) | TCSETS2 = 0x402c542b constant TCSETSF (line 431) | TCSETSF = 0x5404 constant TCSETSF2 (line 432) | TCSETSF2 = 0x402c542d constant TCSETSW (line 433) | TCSETSW = 0x5403 constant TCSETSW2 (line 434) | TCSETSW2 = 0x402c542c constant TCSETX (line 435) | TCSETX = 0x5433 constant TCSETXF (line 436) | TCSETXF = 0x5434 constant TCSETXW (line 437) | TCSETXW = 0x5435 constant TCXONC (line 438) | TCXONC = 0x540a constant TFD_CLOEXEC (line 439) | TFD_CLOEXEC = 0x80000 constant TFD_NONBLOCK (line 440) | TFD_NONBLOCK = 0x800 constant TIOCCBRK (line 441) | TIOCCBRK = 0x5428 constant TIOCCONS (line 442) | TIOCCONS = 0x541d constant TIOCEXCL (line 443) | TIOCEXCL = 0x540c constant TIOCGDEV (line 444) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 445) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 446) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 447) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 448) | TIOCGISO7816 = 0x80285442 constant TIOCGLCKTRMIOS (line 449) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 450) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 451) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 452) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 453) | TIOCGPTN = 0x80045430 constant TIOCGPTPEER (line 454) | TIOCGPTPEER = 0x5441 constant TIOCGRS485 (line 455) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 456) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 457) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 458) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 459) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 460) | TIOCINQ = 0x541b constant TIOCLINUX (line 461) | TIOCLINUX = 0x541c constant TIOCMBIC (line 462) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 463) | TIOCMBIS = 0x5416 constant TIOCMGET (line 464) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 465) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 466) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 467) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 468) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 469) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 470) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 471) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 472) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 473) | TIOCM_SR = 0x10 constant TIOCM_ST (line 474) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 475) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 476) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 477) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 478) | TIOCPKT = 0x5420 constant TIOCSBRK (line 479) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 480) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 481) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 482) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 483) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 484) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 485) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 486) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 487) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 488) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 489) | TIOCSETD = 0x5423 constant TIOCSIG (line 490) | TIOCSIG = 0x40045436 constant TIOCSISO7816 (line 491) | TIOCSISO7816 = 0xc0285443 constant TIOCSLCKTRMIOS (line 492) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 493) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 494) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 495) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 496) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 497) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 498) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 499) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 500) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 501) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 502) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 503) | TUNDETACHFILTER = 0x401054d6 constant TUNGETDEVNETNS (line 504) | TUNGETDEVNETNS = 0x54e3 constant TUNGETFEATURES (line 505) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 506) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 507) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 508) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 509) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 510) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 511) | TUNGETVNETLE = 0x800454dd constant TUNSETCARRIER (line 512) | TUNSETCARRIER = 0x400454e2 constant TUNSETDEBUG (line 513) | TUNSETDEBUG = 0x400454c9 constant TUNSETFILTEREBPF (line 514) | TUNSETFILTEREBPF = 0x800454e1 constant TUNSETGROUP (line 515) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 516) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 517) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 518) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 519) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 520) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 521) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 522) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 523) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 524) | TUNSETSNDBUF = 0x400454d4 constant TUNSETSTEERINGEBPF (line 525) | TUNSETSTEERINGEBPF = 0x800454e0 constant TUNSETTXFILTER (line 526) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 527) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 528) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 529) | TUNSETVNETLE = 0x400454dc constant UBI_IOCATT (line 530) | UBI_IOCATT = 0x40186f40 constant UBI_IOCDET (line 531) | UBI_IOCDET = 0x40046f41 constant UBI_IOCEBCH (line 532) | UBI_IOCEBCH = 0x40044f02 constant UBI_IOCEBER (line 533) | UBI_IOCEBER = 0x40044f01 constant UBI_IOCEBISMAP (line 534) | UBI_IOCEBISMAP = 0x80044f05 constant UBI_IOCEBMAP (line 535) | UBI_IOCEBMAP = 0x40084f03 constant UBI_IOCEBUNMAP (line 536) | UBI_IOCEBUNMAP = 0x40044f04 constant UBI_IOCMKVOL (line 537) | UBI_IOCMKVOL = 0x40986f00 constant UBI_IOCRMVOL (line 538) | UBI_IOCRMVOL = 0x40046f01 constant UBI_IOCRNVOL (line 539) | UBI_IOCRNVOL = 0x51106f03 constant UBI_IOCRPEB (line 540) | UBI_IOCRPEB = 0x40046f04 constant UBI_IOCRSVOL (line 541) | UBI_IOCRSVOL = 0x400c6f02 constant UBI_IOCSETVOLPROP (line 542) | UBI_IOCSETVOLPROP = 0x40104f06 constant UBI_IOCSPEB (line 543) | UBI_IOCSPEB = 0x40046f05 constant UBI_IOCVOLCRBLK (line 544) | UBI_IOCVOLCRBLK = 0x40804f07 constant UBI_IOCVOLRMBLK (line 545) | UBI_IOCVOLRMBLK = 0x4f08 constant UBI_IOCVOLUP (line 546) | UBI_IOCVOLUP = 0x40084f00 constant VDISCARD (line 547) | VDISCARD = 0xd constant VEOF (line 548) | VEOF = 0x4 constant VEOL (line 549) | VEOL = 0xb constant VEOL2 (line 550) | VEOL2 = 0x10 constant VMIN (line 551) | VMIN = 0x6 constant VREPRINT (line 552) | VREPRINT = 0xc constant VSTART (line 553) | VSTART = 0x8 constant VSTOP (line 554) | VSTOP = 0x9 constant VSUSP (line 555) | VSUSP = 0xa constant VSWTC (line 556) | VSWTC = 0x7 constant VT1 (line 557) | VT1 = 0x4000 constant VTDLY (line 558) | VTDLY = 0x4000 constant VTIME (line 559) | VTIME = 0x5 constant VWERASE (line 560) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 561) | WDIOC_GETBOOTSTATUS = 0x80045702 constant WDIOC_GETPRETIMEOUT (line 562) | WDIOC_GETPRETIMEOUT = 0x80045709 constant WDIOC_GETSTATUS (line 563) | WDIOC_GETSTATUS = 0x80045701 constant WDIOC_GETSUPPORT (line 564) | WDIOC_GETSUPPORT = 0x80285700 constant WDIOC_GETTEMP (line 565) | WDIOC_GETTEMP = 0x80045703 constant WDIOC_GETTIMELEFT (line 566) | WDIOC_GETTIMELEFT = 0x8004570a constant WDIOC_GETTIMEOUT (line 567) | WDIOC_GETTIMEOUT = 0x80045707 constant WDIOC_KEEPALIVE (line 568) | WDIOC_KEEPALIVE = 0x80045705 constant WDIOC_SETOPTIONS (line 569) | WDIOC_SETOPTIONS = 0x80045704 constant WORDSIZE (line 570) | WORDSIZE = 0x40 constant XCASE (line 571) | XCASE = 0x4 constant XTABS (line 572) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 573) | _HIDIOCGRAWNAME = 0x80804804 constant _HIDIOCGRAWPHYS (line 574) | _HIDIOCGRAWPHYS = 0x80404805 constant _HIDIOCGRAWUNIQ (line 575) | _HIDIOCGRAWUNIQ = 0x80404808 constant EADDRINUSE (line 580) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 581) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 582) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 583) | EAFNOSUPPORT = syscall.Errno(0x61) constant EALREADY (line 584) | EALREADY = syscall.Errno(0x72) constant EBADE (line 585) | EBADE = syscall.Errno(0x34) constant EBADFD (line 586) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 587) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 588) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 589) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 590) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 591) | EBFONT = syscall.Errno(0x3b) constant ECANCELED (line 592) | ECANCELED = syscall.Errno(0x7d) constant ECHRNG (line 593) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 594) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 595) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 596) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 597) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 598) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 599) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 600) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOTDOT (line 601) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 602) | EDQUOT = syscall.Errno(0x7a) constant EHOSTDOWN (line 603) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 604) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 605) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 606) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 607) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 608) | EINPROGRESS = syscall.Errno(0x73) constant EISCONN (line 609) | EISCONN = syscall.Errno(0x6a) constant EISNAM (line 610) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 611) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 612) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 613) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 614) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 615) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 616) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 617) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 618) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 619) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 620) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 621) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 622) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 623) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 624) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 625) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMSGSIZE (line 626) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 627) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 628) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 629) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 630) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 631) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 632) | ENETUNREACH = syscall.Errno(0x65) constant ENOANO (line 633) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 634) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 635) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 636) | ENODATA = syscall.Errno(0x3d) constant ENOKEY (line 637) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 638) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 639) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 640) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMSG (line 641) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 642) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 643) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 644) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSR (line 645) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 646) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 647) | ENOSYS = syscall.Errno(0x26) constant ENOTCONN (line 648) | ENOTCONN = syscall.Errno(0x6b) constant ENOTEMPTY (line 649) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 650) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 651) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 652) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 653) | ENOTSUP = syscall.Errno(0x5f) constant ENOTUNIQ (line 654) | ENOTUNIQ = syscall.Errno(0x4c) constant EOPNOTSUPP (line 655) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 656) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 657) | EOWNERDEAD = syscall.Errno(0x82) constant EPFNOSUPPORT (line 658) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPROTO (line 659) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 660) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 661) | EPROTOTYPE = syscall.Errno(0x5b) constant EREMCHG (line 662) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 663) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 664) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 665) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 666) | ERFKILL = syscall.Errno(0x84) constant ESHUTDOWN (line 667) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 668) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESRMNT (line 669) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 670) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 671) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 672) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 673) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 674) | ETOOMANYREFS = syscall.Errno(0x6d) constant EUCLEAN (line 675) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 676) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 677) | EUSERS = syscall.Errno(0x57) constant EXFULL (line 678) | EXFULL = syscall.Errno(0x36) constant SIGBUS (line 683) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 684) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 685) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 686) | SIGCONT = syscall.Signal(0x12) constant SIGIO (line 687) | SIGIO = syscall.Signal(0x1d) constant SIGPOLL (line 688) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 689) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 690) | SIGPWR = syscall.Signal(0x1e) constant SIGSTKFLT (line 691) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 692) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 693) | SIGSYS = syscall.Signal(0x1f) constant SIGTSTP (line 694) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 695) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 696) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 697) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 698) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 699) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 700) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 701) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 702) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 703) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go constant ASI_LEON_DFLUSH (line 15) | ASI_LEON_DFLUSH = 0x11 constant ASI_LEON_IFLUSH (line 16) | ASI_LEON_IFLUSH = 0x10 constant ASI_LEON_MMUFLUSH (line 17) | ASI_LEON_MMUFLUSH = 0x18 constant B1000000 (line 18) | B1000000 = 0x1008 constant B115200 (line 19) | B115200 = 0x1002 constant B1152000 (line 20) | B1152000 = 0x1009 constant B1500000 (line 21) | B1500000 = 0x100a constant B2000000 (line 22) | B2000000 = 0x100b constant B230400 (line 23) | B230400 = 0x1003 constant B2500000 (line 24) | B2500000 = 0x100c constant B3000000 (line 25) | B3000000 = 0x100d constant B3500000 (line 26) | B3500000 = 0x100e constant B4000000 (line 27) | B4000000 = 0x100f constant B460800 (line 28) | B460800 = 0x1004 constant B500000 (line 29) | B500000 = 0x1005 constant B57600 (line 30) | B57600 = 0x1001 constant B576000 (line 31) | B576000 = 0x1006 constant B921600 (line 32) | B921600 = 0x1007 constant BLKBSZGET (line 33) | BLKBSZGET = 0x40081270 constant BLKBSZSET (line 34) | BLKBSZSET = 0x80081271 constant BLKFLSBUF (line 35) | BLKFLSBUF = 0x20001261 constant BLKFRAGET (line 36) | BLKFRAGET = 0x20001265 constant BLKFRASET (line 37) | BLKFRASET = 0x20001264 constant BLKGETSIZE (line 38) | BLKGETSIZE = 0x20001260 constant BLKGETSIZE64 (line 39) | BLKGETSIZE64 = 0x40081272 constant BLKPBSZGET (line 40) | BLKPBSZGET = 0x2000127b constant BLKRAGET (line 41) | BLKRAGET = 0x20001263 constant BLKRASET (line 42) | BLKRASET = 0x20001262 constant BLKROGET (line 43) | BLKROGET = 0x2000125e constant BLKROSET (line 44) | BLKROSET = 0x2000125d constant BLKRRPART (line 45) | BLKRRPART = 0x2000125f constant BLKSECTGET (line 46) | BLKSECTGET = 0x20001267 constant BLKSECTSET (line 47) | BLKSECTSET = 0x20001266 constant BLKSSZGET (line 48) | BLKSSZGET = 0x20001268 constant BOTHER (line 49) | BOTHER = 0x1000 constant BS1 (line 50) | BS1 = 0x2000 constant BSDLY (line 51) | BSDLY = 0x2000 constant CBAUD (line 52) | CBAUD = 0x100f constant CBAUDEX (line 53) | CBAUDEX = 0x1000 constant CIBAUD (line 54) | CIBAUD = 0x100f0000 constant CLOCAL (line 55) | CLOCAL = 0x800 constant CR1 (line 56) | CR1 = 0x200 constant CR2 (line 57) | CR2 = 0x400 constant CR3 (line 58) | CR3 = 0x600 constant CRDLY (line 59) | CRDLY = 0x600 constant CREAD (line 60) | CREAD = 0x80 constant CS6 (line 61) | CS6 = 0x10 constant CS7 (line 62) | CS7 = 0x20 constant CS8 (line 63) | CS8 = 0x30 constant CSIZE (line 64) | CSIZE = 0x30 constant CSTOPB (line 65) | CSTOPB = 0x40 constant ECCGETLAYOUT (line 66) | ECCGETLAYOUT = 0x41484d11 constant ECCGETSTATS (line 67) | ECCGETSTATS = 0x40104d12 constant ECHOCTL (line 68) | ECHOCTL = 0x200 constant ECHOE (line 69) | ECHOE = 0x10 constant ECHOK (line 70) | ECHOK = 0x20 constant ECHOKE (line 71) | ECHOKE = 0x800 constant ECHONL (line 72) | ECHONL = 0x40 constant ECHOPRT (line 73) | ECHOPRT = 0x400 constant EFD_CLOEXEC (line 74) | EFD_CLOEXEC = 0x400000 constant EFD_NONBLOCK (line 75) | EFD_NONBLOCK = 0x4000 constant EMT_TAGOVF (line 76) | EMT_TAGOVF = 0x1 constant EPOLL_CLOEXEC (line 77) | EPOLL_CLOEXEC = 0x400000 constant EXTPROC (line 78) | EXTPROC = 0x10000 constant FF1 (line 79) | FF1 = 0x8000 constant FFDLY (line 80) | FFDLY = 0x8000 constant FICLONE (line 81) | FICLONE = 0x80049409 constant FICLONERANGE (line 82) | FICLONERANGE = 0x8020940d constant FLUSHO (line 83) | FLUSHO = 0x1000 constant FS_IOC_ENABLE_VERITY (line 84) | FS_IOC_ENABLE_VERITY = 0x80806685 constant FS_IOC_GETFLAGS (line 85) | FS_IOC_GETFLAGS = 0x40086601 constant FS_IOC_GET_ENCRYPTION_NONCE (line 86) | FS_IOC_GET_ENCRYPTION_NONCE = 0x4010661b constant FS_IOC_GET_ENCRYPTION_POLICY (line 87) | FS_IOC_GET_ENCRYPTION_POLICY = 0x800c6615 constant FS_IOC_GET_ENCRYPTION_PWSALT (line 88) | FS_IOC_GET_ENCRYPTION_PWSALT = 0x80106614 constant FS_IOC_SETFLAGS (line 89) | FS_IOC_SETFLAGS = 0x80086602 constant FS_IOC_SET_ENCRYPTION_POLICY (line 90) | FS_IOC_SET_ENCRYPTION_POLICY = 0x400c6613 constant F_GETLK (line 91) | F_GETLK = 0x7 constant F_GETLK64 (line 92) | F_GETLK64 = 0x7 constant F_GETOWN (line 93) | F_GETOWN = 0x5 constant F_RDLCK (line 94) | F_RDLCK = 0x1 constant F_SETLK (line 95) | F_SETLK = 0x8 constant F_SETLK64 (line 96) | F_SETLK64 = 0x8 constant F_SETLKW (line 97) | F_SETLKW = 0x9 constant F_SETLKW64 (line 98) | F_SETLKW64 = 0x9 constant F_SETOWN (line 99) | F_SETOWN = 0x6 constant F_UNLCK (line 100) | F_UNLCK = 0x3 constant F_WRLCK (line 101) | F_WRLCK = 0x2 constant HIDIOCGRAWINFO (line 102) | HIDIOCGRAWINFO = 0x40084803 constant HIDIOCGRDESC (line 103) | HIDIOCGRDESC = 0x50044802 constant HIDIOCGRDESCSIZE (line 104) | HIDIOCGRDESCSIZE = 0x40044801 constant HUPCL (line 105) | HUPCL = 0x400 constant ICANON (line 106) | ICANON = 0x2 constant IEXTEN (line 107) | IEXTEN = 0x8000 constant IN_CLOEXEC (line 108) | IN_CLOEXEC = 0x400000 constant IN_NONBLOCK (line 109) | IN_NONBLOCK = 0x4000 constant IOCTL_VM_SOCKETS_GET_LOCAL_CID (line 110) | IOCTL_VM_SOCKETS_GET_LOCAL_CID = 0x200007b9 constant ISIG (line 111) | ISIG = 0x1 constant IUCLC (line 112) | IUCLC = 0x200 constant IXOFF (line 113) | IXOFF = 0x1000 constant IXON (line 114) | IXON = 0x400 constant MAP_ANON (line 115) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 116) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 117) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 118) | MAP_EXECUTABLE = 0x1000 constant MAP_GROWSDOWN (line 119) | MAP_GROWSDOWN = 0x200 constant MAP_HUGETLB (line 120) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 121) | MAP_LOCKED = 0x100 constant MAP_NONBLOCK (line 122) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 123) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 124) | MAP_POPULATE = 0x8000 constant MAP_RENAME (line 125) | MAP_RENAME = 0x20 constant MAP_STACK (line 126) | MAP_STACK = 0x20000 constant MAP_SYNC (line 127) | MAP_SYNC = 0x80000 constant MCL_CURRENT (line 128) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 129) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 130) | MCL_ONFAULT = 0x8000 constant MEMERASE (line 131) | MEMERASE = 0x80084d02 constant MEMERASE64 (line 132) | MEMERASE64 = 0x80104d14 constant MEMGETBADBLOCK (line 133) | MEMGETBADBLOCK = 0x80084d0b constant MEMGETINFO (line 134) | MEMGETINFO = 0x40204d01 constant MEMGETOOBSEL (line 135) | MEMGETOOBSEL = 0x40c84d0a constant MEMGETREGIONCOUNT (line 136) | MEMGETREGIONCOUNT = 0x40044d07 constant MEMISLOCKED (line 137) | MEMISLOCKED = 0x40084d17 constant MEMLOCK (line 138) | MEMLOCK = 0x80084d05 constant MEMREADOOB (line 139) | MEMREADOOB = 0xc0104d04 constant MEMSETBADBLOCK (line 140) | MEMSETBADBLOCK = 0x80084d0c constant MEMUNLOCK (line 141) | MEMUNLOCK = 0x80084d06 constant MEMWRITEOOB (line 142) | MEMWRITEOOB = 0xc0104d03 constant MTDFILEMODE (line 143) | MTDFILEMODE = 0x20004d13 constant NFDBITS (line 144) | NFDBITS = 0x40 constant NLDLY (line 145) | NLDLY = 0x100 constant NOFLSH (line 146) | NOFLSH = 0x80 constant NS_GET_NSTYPE (line 147) | NS_GET_NSTYPE = 0x2000b703 constant NS_GET_OWNER_UID (line 148) | NS_GET_OWNER_UID = 0x2000b704 constant NS_GET_PARENT (line 149) | NS_GET_PARENT = 0x2000b702 constant NS_GET_USERNS (line 150) | NS_GET_USERNS = 0x2000b701 constant OLCUC (line 151) | OLCUC = 0x2 constant ONLCR (line 152) | ONLCR = 0x4 constant OTPGETREGIONCOUNT (line 153) | OTPGETREGIONCOUNT = 0x80044d0e constant OTPGETREGIONINFO (line 154) | OTPGETREGIONINFO = 0x800c4d0f constant OTPLOCK (line 155) | OTPLOCK = 0x400c4d10 constant OTPSELECT (line 156) | OTPSELECT = 0x40044d0d constant O_APPEND (line 157) | O_APPEND = 0x8 constant O_ASYNC (line 158) | O_ASYNC = 0x40 constant O_CLOEXEC (line 159) | O_CLOEXEC = 0x400000 constant O_CREAT (line 160) | O_CREAT = 0x200 constant O_DIRECT (line 161) | O_DIRECT = 0x100000 constant O_DIRECTORY (line 162) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 163) | O_DSYNC = 0x2000 constant O_EXCL (line 164) | O_EXCL = 0x800 constant O_FSYNC (line 165) | O_FSYNC = 0x802000 constant O_LARGEFILE (line 166) | O_LARGEFILE = 0x0 constant O_NDELAY (line 167) | O_NDELAY = 0x4004 constant O_NOATIME (line 168) | O_NOATIME = 0x200000 constant O_NOCTTY (line 169) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 170) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 171) | O_NONBLOCK = 0x4000 constant O_PATH (line 172) | O_PATH = 0x1000000 constant O_RSYNC (line 173) | O_RSYNC = 0x802000 constant O_SYNC (line 174) | O_SYNC = 0x802000 constant O_TMPFILE (line 175) | O_TMPFILE = 0x2010000 constant O_TRUNC (line 176) | O_TRUNC = 0x400 constant PARENB (line 177) | PARENB = 0x100 constant PARODD (line 178) | PARODD = 0x200 constant PENDIN (line 179) | PENDIN = 0x4000 constant PERF_EVENT_IOC_DISABLE (line 180) | PERF_EVENT_IOC_DISABLE = 0x20002401 constant PERF_EVENT_IOC_ENABLE (line 181) | PERF_EVENT_IOC_ENABLE = 0x20002400 constant PERF_EVENT_IOC_ID (line 182) | PERF_EVENT_IOC_ID = 0x40082407 constant PERF_EVENT_IOC_MODIFY_ATTRIBUTES (line 183) | PERF_EVENT_IOC_MODIFY_ATTRIBUTES = 0x8008240b constant PERF_EVENT_IOC_PAUSE_OUTPUT (line 184) | PERF_EVENT_IOC_PAUSE_OUTPUT = 0x80042409 constant PERF_EVENT_IOC_PERIOD (line 185) | PERF_EVENT_IOC_PERIOD = 0x80082404 constant PERF_EVENT_IOC_QUERY_BPF (line 186) | PERF_EVENT_IOC_QUERY_BPF = 0xc008240a constant PERF_EVENT_IOC_REFRESH (line 187) | PERF_EVENT_IOC_REFRESH = 0x20002402 constant PERF_EVENT_IOC_RESET (line 188) | PERF_EVENT_IOC_RESET = 0x20002403 constant PERF_EVENT_IOC_SET_BPF (line 189) | PERF_EVENT_IOC_SET_BPF = 0x80042408 constant PERF_EVENT_IOC_SET_FILTER (line 190) | PERF_EVENT_IOC_SET_FILTER = 0x80082406 constant PERF_EVENT_IOC_SET_OUTPUT (line 191) | PERF_EVENT_IOC_SET_OUTPUT = 0x20002405 constant PPPIOCATTACH (line 192) | PPPIOCATTACH = 0x8004743d constant PPPIOCATTCHAN (line 193) | PPPIOCATTCHAN = 0x80047438 constant PPPIOCBRIDGECHAN (line 194) | PPPIOCBRIDGECHAN = 0x80047435 constant PPPIOCCONNECT (line 195) | PPPIOCCONNECT = 0x8004743a constant PPPIOCDETACH (line 196) | PPPIOCDETACH = 0x8004743c constant PPPIOCDISCONN (line 197) | PPPIOCDISCONN = 0x20007439 constant PPPIOCGASYNCMAP (line 198) | PPPIOCGASYNCMAP = 0x40047458 constant PPPIOCGCHAN (line 199) | PPPIOCGCHAN = 0x40047437 constant PPPIOCGDEBUG (line 200) | PPPIOCGDEBUG = 0x40047441 constant PPPIOCGFLAGS (line 201) | PPPIOCGFLAGS = 0x4004745a constant PPPIOCGIDLE (line 202) | PPPIOCGIDLE = 0x4010743f constant PPPIOCGIDLE32 (line 203) | PPPIOCGIDLE32 = 0x4008743f constant PPPIOCGIDLE64 (line 204) | PPPIOCGIDLE64 = 0x4010743f constant PPPIOCGL2TPSTATS (line 205) | PPPIOCGL2TPSTATS = 0x40487436 constant PPPIOCGMRU (line 206) | PPPIOCGMRU = 0x40047453 constant PPPIOCGRASYNCMAP (line 207) | PPPIOCGRASYNCMAP = 0x40047455 constant PPPIOCGUNIT (line 208) | PPPIOCGUNIT = 0x40047456 constant PPPIOCGXASYNCMAP (line 209) | PPPIOCGXASYNCMAP = 0x40207450 constant PPPIOCSACTIVE (line 210) | PPPIOCSACTIVE = 0x80107446 constant PPPIOCSASYNCMAP (line 211) | PPPIOCSASYNCMAP = 0x80047457 constant PPPIOCSCOMPRESS (line 212) | PPPIOCSCOMPRESS = 0x8010744d constant PPPIOCSDEBUG (line 213) | PPPIOCSDEBUG = 0x80047440 constant PPPIOCSFLAGS (line 214) | PPPIOCSFLAGS = 0x80047459 constant PPPIOCSMAXCID (line 215) | PPPIOCSMAXCID = 0x80047451 constant PPPIOCSMRRU (line 216) | PPPIOCSMRRU = 0x8004743b constant PPPIOCSMRU (line 217) | PPPIOCSMRU = 0x80047452 constant PPPIOCSNPMODE (line 218) | PPPIOCSNPMODE = 0x8008744b constant PPPIOCSPASS (line 219) | PPPIOCSPASS = 0x80107447 constant PPPIOCSRASYNCMAP (line 220) | PPPIOCSRASYNCMAP = 0x80047454 constant PPPIOCSXASYNCMAP (line 221) | PPPIOCSXASYNCMAP = 0x8020744f constant PPPIOCUNBRIDGECHAN (line 222) | PPPIOCUNBRIDGECHAN = 0x20007434 constant PPPIOCXFERUNIT (line 223) | PPPIOCXFERUNIT = 0x2000744e constant PR_SET_PTRACER_ANY (line 224) | PR_SET_PTRACER_ANY = 0xffffffffffffffff constant PTRACE_GETFPAREGS (line 225) | PTRACE_GETFPAREGS = 0x14 constant PTRACE_GETFPREGS (line 226) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPREGS64 (line 227) | PTRACE_GETFPREGS64 = 0x19 constant PTRACE_GETREGS64 (line 228) | PTRACE_GETREGS64 = 0x16 constant PTRACE_READDATA (line 229) | PTRACE_READDATA = 0x10 constant PTRACE_READTEXT (line 230) | PTRACE_READTEXT = 0x12 constant PTRACE_SETFPAREGS (line 231) | PTRACE_SETFPAREGS = 0x15 constant PTRACE_SETFPREGS (line 232) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPREGS64 (line 233) | PTRACE_SETFPREGS64 = 0x1a constant PTRACE_SETREGS64 (line 234) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SPARC_DETACH (line 235) | PTRACE_SPARC_DETACH = 0xb constant PTRACE_WRITEDATA (line 236) | PTRACE_WRITEDATA = 0x11 constant PTRACE_WRITETEXT (line 237) | PTRACE_WRITETEXT = 0x13 constant PT_FP (line 238) | PT_FP = 0x48 constant PT_G0 (line 239) | PT_G0 = 0x10 constant PT_G1 (line 240) | PT_G1 = 0x14 constant PT_G2 (line 241) | PT_G2 = 0x18 constant PT_G3 (line 242) | PT_G3 = 0x1c constant PT_G4 (line 243) | PT_G4 = 0x20 constant PT_G5 (line 244) | PT_G5 = 0x24 constant PT_G6 (line 245) | PT_G6 = 0x28 constant PT_G7 (line 246) | PT_G7 = 0x2c constant PT_I0 (line 247) | PT_I0 = 0x30 constant PT_I1 (line 248) | PT_I1 = 0x34 constant PT_I2 (line 249) | PT_I2 = 0x38 constant PT_I3 (line 250) | PT_I3 = 0x3c constant PT_I4 (line 251) | PT_I4 = 0x40 constant PT_I5 (line 252) | PT_I5 = 0x44 constant PT_I6 (line 253) | PT_I6 = 0x48 constant PT_I7 (line 254) | PT_I7 = 0x4c constant PT_NPC (line 255) | PT_NPC = 0x8 constant PT_PC (line 256) | PT_PC = 0x4 constant PT_PSR (line 257) | PT_PSR = 0x0 constant PT_REGS_MAGIC (line 258) | PT_REGS_MAGIC = 0x57ac6c00 constant PT_TNPC (line 259) | PT_TNPC = 0x90 constant PT_TPC (line 260) | PT_TPC = 0x88 constant PT_TSTATE (line 261) | PT_TSTATE = 0x80 constant PT_V9_FP (line 262) | PT_V9_FP = 0x70 constant PT_V9_G0 (line 263) | PT_V9_G0 = 0x0 constant PT_V9_G1 (line 264) | PT_V9_G1 = 0x8 constant PT_V9_G2 (line 265) | PT_V9_G2 = 0x10 constant PT_V9_G3 (line 266) | PT_V9_G3 = 0x18 constant PT_V9_G4 (line 267) | PT_V9_G4 = 0x20 constant PT_V9_G5 (line 268) | PT_V9_G5 = 0x28 constant PT_V9_G6 (line 269) | PT_V9_G6 = 0x30 constant PT_V9_G7 (line 270) | PT_V9_G7 = 0x38 constant PT_V9_I0 (line 271) | PT_V9_I0 = 0x40 constant PT_V9_I1 (line 272) | PT_V9_I1 = 0x48 constant PT_V9_I2 (line 273) | PT_V9_I2 = 0x50 constant PT_V9_I3 (line 274) | PT_V9_I3 = 0x58 constant PT_V9_I4 (line 275) | PT_V9_I4 = 0x60 constant PT_V9_I5 (line 276) | PT_V9_I5 = 0x68 constant PT_V9_I6 (line 277) | PT_V9_I6 = 0x70 constant PT_V9_I7 (line 278) | PT_V9_I7 = 0x78 constant PT_V9_MAGIC (line 279) | PT_V9_MAGIC = 0x9c constant PT_V9_TNPC (line 280) | PT_V9_TNPC = 0x90 constant PT_V9_TPC (line 281) | PT_V9_TPC = 0x88 constant PT_V9_TSTATE (line 282) | PT_V9_TSTATE = 0x80 constant PT_V9_Y (line 283) | PT_V9_Y = 0x98 constant PT_WIM (line 284) | PT_WIM = 0x10 constant PT_Y (line 285) | PT_Y = 0xc constant RLIMIT_AS (line 286) | RLIMIT_AS = 0x9 constant RLIMIT_MEMLOCK (line 287) | RLIMIT_MEMLOCK = 0x8 constant RLIMIT_NOFILE (line 288) | RLIMIT_NOFILE = 0x6 constant RLIMIT_NPROC (line 289) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 290) | RLIMIT_RSS = 0x5 constant RNDADDENTROPY (line 291) | RNDADDENTROPY = 0x80085203 constant RNDADDTOENTCNT (line 292) | RNDADDTOENTCNT = 0x80045201 constant RNDCLEARPOOL (line 293) | RNDCLEARPOOL = 0x20005206 constant RNDGETENTCNT (line 294) | RNDGETENTCNT = 0x40045200 constant RNDGETPOOL (line 295) | RNDGETPOOL = 0x40085202 constant RNDRESEEDCRNG (line 296) | RNDRESEEDCRNG = 0x20005207 constant RNDZAPENTCNT (line 297) | RNDZAPENTCNT = 0x20005204 constant RTC_AIE_OFF (line 298) | RTC_AIE_OFF = 0x20007002 constant RTC_AIE_ON (line 299) | RTC_AIE_ON = 0x20007001 constant RTC_ALM_READ (line 300) | RTC_ALM_READ = 0x40247008 constant RTC_ALM_SET (line 301) | RTC_ALM_SET = 0x80247007 constant RTC_EPOCH_READ (line 302) | RTC_EPOCH_READ = 0x4008700d constant RTC_EPOCH_SET (line 303) | RTC_EPOCH_SET = 0x8008700e constant RTC_IRQP_READ (line 304) | RTC_IRQP_READ = 0x4008700b constant RTC_IRQP_SET (line 305) | RTC_IRQP_SET = 0x8008700c constant RTC_PIE_OFF (line 306) | RTC_PIE_OFF = 0x20007006 constant RTC_PIE_ON (line 307) | RTC_PIE_ON = 0x20007005 constant RTC_PLL_GET (line 308) | RTC_PLL_GET = 0x40207011 constant RTC_PLL_SET (line 309) | RTC_PLL_SET = 0x80207012 constant RTC_RD_TIME (line 310) | RTC_RD_TIME = 0x40247009 constant RTC_SET_TIME (line 311) | RTC_SET_TIME = 0x8024700a constant RTC_UIE_OFF (line 312) | RTC_UIE_OFF = 0x20007004 constant RTC_UIE_ON (line 313) | RTC_UIE_ON = 0x20007003 constant RTC_VL_CLR (line 314) | RTC_VL_CLR = 0x20007014 constant RTC_VL_READ (line 315) | RTC_VL_READ = 0x40047013 constant RTC_WIE_OFF (line 316) | RTC_WIE_OFF = 0x20007010 constant RTC_WIE_ON (line 317) | RTC_WIE_ON = 0x2000700f constant RTC_WKALM_RD (line 318) | RTC_WKALM_RD = 0x40287010 constant RTC_WKALM_SET (line 319) | RTC_WKALM_SET = 0x8028700f constant SCM_TIMESTAMPING (line 320) | SCM_TIMESTAMPING = 0x23 constant SCM_TIMESTAMPING_OPT_STATS (line 321) | SCM_TIMESTAMPING_OPT_STATS = 0x38 constant SCM_TIMESTAMPING_PKTINFO (line 322) | SCM_TIMESTAMPING_PKTINFO = 0x3c constant SCM_TIMESTAMPNS (line 323) | SCM_TIMESTAMPNS = 0x21 constant SCM_TXTIME (line 324) | SCM_TXTIME = 0x3f constant SCM_WIFI_STATUS (line 325) | SCM_WIFI_STATUS = 0x25 constant SFD_CLOEXEC (line 326) | SFD_CLOEXEC = 0x400000 constant SFD_NONBLOCK (line 327) | SFD_NONBLOCK = 0x4000 constant SIOCATMARK (line 328) | SIOCATMARK = 0x8905 constant SIOCGPGRP (line 329) | SIOCGPGRP = 0x8904 constant SIOCGSTAMPNS_NEW (line 330) | SIOCGSTAMPNS_NEW = 0x40108907 constant SIOCGSTAMP_NEW (line 331) | SIOCGSTAMP_NEW = 0x40108906 constant SIOCINQ (line 332) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 333) | SIOCOUTQ = 0x40047473 constant SIOCSPGRP (line 334) | SIOCSPGRP = 0x8902 constant SOCK_CLOEXEC (line 335) | SOCK_CLOEXEC = 0x400000 constant SOCK_DGRAM (line 336) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 337) | SOCK_NONBLOCK = 0x4000 constant SOCK_STREAM (line 338) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 339) | SOL_SOCKET = 0xffff constant SO_ACCEPTCONN (line 340) | SO_ACCEPTCONN = 0x8000 constant SO_ATTACH_BPF (line 341) | SO_ATTACH_BPF = 0x34 constant SO_ATTACH_REUSEPORT_CBPF (line 342) | SO_ATTACH_REUSEPORT_CBPF = 0x35 constant SO_ATTACH_REUSEPORT_EBPF (line 343) | SO_ATTACH_REUSEPORT_EBPF = 0x36 constant SO_BINDTODEVICE (line 344) | SO_BINDTODEVICE = 0xd constant SO_BINDTOIFINDEX (line 345) | SO_BINDTOIFINDEX = 0x41 constant SO_BPF_EXTENSIONS (line 346) | SO_BPF_EXTENSIONS = 0x32 constant SO_BROADCAST (line 347) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 348) | SO_BSDCOMPAT = 0x400 constant SO_BUSY_POLL (line 349) | SO_BUSY_POLL = 0x30 constant SO_BUSY_POLL_BUDGET (line 350) | SO_BUSY_POLL_BUDGET = 0x49 constant SO_CNX_ADVICE (line 351) | SO_CNX_ADVICE = 0x37 constant SO_COOKIE (line 352) | SO_COOKIE = 0x3b constant SO_DETACH_REUSEPORT_BPF (line 353) | SO_DETACH_REUSEPORT_BPF = 0x47 constant SO_DOMAIN (line 354) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 355) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 356) | SO_ERROR = 0x1007 constant SO_INCOMING_CPU (line 357) | SO_INCOMING_CPU = 0x33 constant SO_INCOMING_NAPI_ID (line 358) | SO_INCOMING_NAPI_ID = 0x3a constant SO_KEEPALIVE (line 359) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 360) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 361) | SO_LOCK_FILTER = 0x28 constant SO_MARK (line 362) | SO_MARK = 0x22 constant SO_MAX_PACING_RATE (line 363) | SO_MAX_PACING_RATE = 0x31 constant SO_MEMINFO (line 364) | SO_MEMINFO = 0x39 constant SO_NOFCS (line 365) | SO_NOFCS = 0x27 constant SO_OOBINLINE (line 366) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 367) | SO_PASSCRED = 0x2 constant SO_PASSSEC (line 368) | SO_PASSSEC = 0x1f constant SO_PEEK_OFF (line 369) | SO_PEEK_OFF = 0x26 constant SO_PEERCRED (line 370) | SO_PEERCRED = 0x40 constant SO_PEERGROUPS (line 371) | SO_PEERGROUPS = 0x3d constant SO_PEERSEC (line 372) | SO_PEERSEC = 0x1e constant SO_PREFER_BUSY_POLL (line 373) | SO_PREFER_BUSY_POLL = 0x48 constant SO_PROTOCOL (line 374) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 375) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 376) | SO_RCVBUFFORCE = 0x100b constant SO_RCVLOWAT (line 377) | SO_RCVLOWAT = 0x800 constant SO_RCVTIMEO (line 378) | SO_RCVTIMEO = 0x2000 constant SO_RCVTIMEO_NEW (line 379) | SO_RCVTIMEO_NEW = 0x44 constant SO_RCVTIMEO_OLD (line 380) | SO_RCVTIMEO_OLD = 0x2000 constant SO_REUSEADDR (line 381) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 382) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 383) | SO_RXQ_OVFL = 0x24 constant SO_SECURITY_AUTHENTICATION (line 384) | SO_SECURITY_AUTHENTICATION = 0x5001 constant SO_SECURITY_ENCRYPTION_NETWORK (line 385) | SO_SECURITY_ENCRYPTION_NETWORK = 0x5004 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 386) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x5002 constant SO_SELECT_ERR_QUEUE (line 387) | SO_SELECT_ERR_QUEUE = 0x29 constant SO_SNDBUF (line 388) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 389) | SO_SNDBUFFORCE = 0x100a constant SO_SNDLOWAT (line 390) | SO_SNDLOWAT = 0x1000 constant SO_SNDTIMEO (line 391) | SO_SNDTIMEO = 0x4000 constant SO_SNDTIMEO_NEW (line 392) | SO_SNDTIMEO_NEW = 0x45 constant SO_SNDTIMEO_OLD (line 393) | SO_SNDTIMEO_OLD = 0x4000 constant SO_TIMESTAMPING (line 394) | SO_TIMESTAMPING = 0x23 constant SO_TIMESTAMPING_NEW (line 395) | SO_TIMESTAMPING_NEW = 0x43 constant SO_TIMESTAMPING_OLD (line 396) | SO_TIMESTAMPING_OLD = 0x23 constant SO_TIMESTAMPNS (line 397) | SO_TIMESTAMPNS = 0x21 constant SO_TIMESTAMPNS_NEW (line 398) | SO_TIMESTAMPNS_NEW = 0x42 constant SO_TIMESTAMPNS_OLD (line 399) | SO_TIMESTAMPNS_OLD = 0x21 constant SO_TIMESTAMP_NEW (line 400) | SO_TIMESTAMP_NEW = 0x46 constant SO_TXTIME (line 401) | SO_TXTIME = 0x3f constant SO_TYPE (line 402) | SO_TYPE = 0x1008 constant SO_WIFI_STATUS (line 403) | SO_WIFI_STATUS = 0x25 constant SO_ZEROCOPY (line 404) | SO_ZEROCOPY = 0x3e constant TAB1 (line 405) | TAB1 = 0x800 constant TAB2 (line 406) | TAB2 = 0x1000 constant TAB3 (line 407) | TAB3 = 0x1800 constant TABDLY (line 408) | TABDLY = 0x1800 constant TCFLSH (line 409) | TCFLSH = 0x20005407 constant TCGETA (line 410) | TCGETA = 0x40125401 constant TCGETS (line 411) | TCGETS = 0x40245408 constant TCGETS2 (line 412) | TCGETS2 = 0x402c540c constant TCSAFLUSH (line 413) | TCSAFLUSH = 0x2 constant TCSBRK (line 414) | TCSBRK = 0x20005405 constant TCSBRKP (line 415) | TCSBRKP = 0x5425 constant TCSETA (line 416) | TCSETA = 0x80125402 constant TCSETAF (line 417) | TCSETAF = 0x80125404 constant TCSETAW (line 418) | TCSETAW = 0x80125403 constant TCSETS (line 419) | TCSETS = 0x80245409 constant TCSETS2 (line 420) | TCSETS2 = 0x802c540d constant TCSETSF (line 421) | TCSETSF = 0x8024540b constant TCSETSF2 (line 422) | TCSETSF2 = 0x802c540f constant TCSETSW (line 423) | TCSETSW = 0x8024540a constant TCSETSW2 (line 424) | TCSETSW2 = 0x802c540e constant TCXONC (line 425) | TCXONC = 0x20005406 constant TFD_CLOEXEC (line 426) | TFD_CLOEXEC = 0x400000 constant TFD_NONBLOCK (line 427) | TFD_NONBLOCK = 0x4000 constant TIOCCBRK (line 428) | TIOCCBRK = 0x2000747a constant TIOCCONS (line 429) | TIOCCONS = 0x20007424 constant TIOCEXCL (line 430) | TIOCEXCL = 0x2000740d constant TIOCGDEV (line 431) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 432) | TIOCGETD = 0x40047400 constant TIOCGEXCL (line 433) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 434) | TIOCGICOUNT = 0x545d constant TIOCGISO7816 (line 435) | TIOCGISO7816 = 0x40285443 constant TIOCGLCKTRMIOS (line 436) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 437) | TIOCGPGRP = 0x40047483 constant TIOCGPKT (line 438) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 439) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 440) | TIOCGPTN = 0x40047486 constant TIOCGPTPEER (line 441) | TIOCGPTPEER = 0x20007489 constant TIOCGRS485 (line 442) | TIOCGRS485 = 0x40205441 constant TIOCGSERIAL (line 443) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 444) | TIOCGSID = 0x40047485 constant TIOCGSOFTCAR (line 445) | TIOCGSOFTCAR = 0x40047464 constant TIOCGWINSZ (line 446) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 447) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 448) | TIOCLINUX = 0x541c constant TIOCMBIC (line 449) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 450) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 451) | TIOCMGET = 0x4004746a constant TIOCMIWAIT (line 452) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 453) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 454) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 455) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 456) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 457) | TIOCM_DSR = 0x100 constant TIOCM_RI (line 458) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 459) | TIOCM_RNG = 0x80 constant TIOCM_SR (line 460) | TIOCM_SR = 0x10 constant TIOCM_ST (line 461) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 462) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 463) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 464) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 465) | TIOCPKT = 0x80047470 constant TIOCSBRK (line 466) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 467) | TIOCSCTTY = 0x20007484 constant TIOCSERCONFIG (line 468) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 469) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 470) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 471) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 472) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 473) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 474) | TIOCSERSWILD = 0x5455 constant TIOCSETD (line 475) | TIOCSETD = 0x80047401 constant TIOCSIG (line 476) | TIOCSIG = 0x80047488 constant TIOCSISO7816 (line 477) | TIOCSISO7816 = 0xc0285444 constant TIOCSLCKTRMIOS (line 478) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 479) | TIOCSPGRP = 0x80047482 constant TIOCSPTLCK (line 480) | TIOCSPTLCK = 0x80047487 constant TIOCSRS485 (line 481) | TIOCSRS485 = 0xc0205442 constant TIOCSSERIAL (line 482) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 483) | TIOCSSOFTCAR = 0x80047465 constant TIOCSTART (line 484) | TIOCSTART = 0x2000746e constant TIOCSTI (line 485) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 486) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 487) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 488) | TIOCVHANGUP = 0x20005437 constant TOSTOP (line 489) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 490) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 491) | TUNDETACHFILTER = 0x801054d6 constant TUNGETDEVNETNS (line 492) | TUNGETDEVNETNS = 0x200054e3 constant TUNGETFEATURES (line 493) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 494) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 495) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 496) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 497) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 498) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 499) | TUNGETVNETLE = 0x400454dd constant TUNSETCARRIER (line 500) | TUNSETCARRIER = 0x800454e2 constant TUNSETDEBUG (line 501) | TUNSETDEBUG = 0x800454c9 constant TUNSETFILTEREBPF (line 502) | TUNSETFILTEREBPF = 0x400454e1 constant TUNSETGROUP (line 503) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 504) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 505) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 506) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 507) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 508) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 509) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 510) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 511) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 512) | TUNSETSNDBUF = 0x800454d4 constant TUNSETSTEERINGEBPF (line 513) | TUNSETSTEERINGEBPF = 0x400454e0 constant TUNSETTXFILTER (line 514) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 515) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 516) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 517) | TUNSETVNETLE = 0x800454dc constant UBI_IOCATT (line 518) | UBI_IOCATT = 0x80186f40 constant UBI_IOCDET (line 519) | UBI_IOCDET = 0x80046f41 constant UBI_IOCEBCH (line 520) | UBI_IOCEBCH = 0x80044f02 constant UBI_IOCEBER (line 521) | UBI_IOCEBER = 0x80044f01 constant UBI_IOCEBISMAP (line 522) | UBI_IOCEBISMAP = 0x40044f05 constant UBI_IOCEBMAP (line 523) | UBI_IOCEBMAP = 0x80084f03 constant UBI_IOCEBUNMAP (line 524) | UBI_IOCEBUNMAP = 0x80044f04 constant UBI_IOCMKVOL (line 525) | UBI_IOCMKVOL = 0x80986f00 constant UBI_IOCRMVOL (line 526) | UBI_IOCRMVOL = 0x80046f01 constant UBI_IOCRNVOL (line 527) | UBI_IOCRNVOL = 0x91106f03 constant UBI_IOCRPEB (line 528) | UBI_IOCRPEB = 0x80046f04 constant UBI_IOCRSVOL (line 529) | UBI_IOCRSVOL = 0x800c6f02 constant UBI_IOCSETVOLPROP (line 530) | UBI_IOCSETVOLPROP = 0x80104f06 constant UBI_IOCSPEB (line 531) | UBI_IOCSPEB = 0x80046f05 constant UBI_IOCVOLCRBLK (line 532) | UBI_IOCVOLCRBLK = 0x80804f07 constant UBI_IOCVOLRMBLK (line 533) | UBI_IOCVOLRMBLK = 0x20004f08 constant UBI_IOCVOLUP (line 534) | UBI_IOCVOLUP = 0x80084f00 constant VDISCARD (line 535) | VDISCARD = 0xd constant VEOF (line 536) | VEOF = 0x4 constant VEOL (line 537) | VEOL = 0xb constant VEOL2 (line 538) | VEOL2 = 0x10 constant VMIN (line 539) | VMIN = 0x6 constant VREPRINT (line 540) | VREPRINT = 0xc constant VSTART (line 541) | VSTART = 0x8 constant VSTOP (line 542) | VSTOP = 0x9 constant VSUSP (line 543) | VSUSP = 0xa constant VSWTC (line 544) | VSWTC = 0x7 constant VT1 (line 545) | VT1 = 0x4000 constant VTDLY (line 546) | VTDLY = 0x4000 constant VTIME (line 547) | VTIME = 0x5 constant VWERASE (line 548) | VWERASE = 0xe constant WDIOC_GETBOOTSTATUS (line 549) | WDIOC_GETBOOTSTATUS = 0x40045702 constant WDIOC_GETPRETIMEOUT (line 550) | WDIOC_GETPRETIMEOUT = 0x40045709 constant WDIOC_GETSTATUS (line 551) | WDIOC_GETSTATUS = 0x40045701 constant WDIOC_GETSUPPORT (line 552) | WDIOC_GETSUPPORT = 0x40285700 constant WDIOC_GETTEMP (line 553) | WDIOC_GETTEMP = 0x40045703 constant WDIOC_GETTIMELEFT (line 554) | WDIOC_GETTIMELEFT = 0x4004570a constant WDIOC_GETTIMEOUT (line 555) | WDIOC_GETTIMEOUT = 0x40045707 constant WDIOC_KEEPALIVE (line 556) | WDIOC_KEEPALIVE = 0x40045705 constant WDIOC_SETOPTIONS (line 557) | WDIOC_SETOPTIONS = 0x40045704 constant WORDSIZE (line 558) | WORDSIZE = 0x40 constant XCASE (line 559) | XCASE = 0x4 constant XTABS (line 560) | XTABS = 0x1800 constant _HIDIOCGRAWNAME (line 561) | _HIDIOCGRAWNAME = 0x40804804 constant _HIDIOCGRAWPHYS (line 562) | _HIDIOCGRAWPHYS = 0x40404805 constant _HIDIOCGRAWUNIQ (line 563) | _HIDIOCGRAWUNIQ = 0x40404808 constant __TIOCFLUSH (line 564) | __TIOCFLUSH = 0x80047410 constant EADDRINUSE (line 569) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 570) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EADV (line 571) | EADV = syscall.Errno(0x53) constant EAFNOSUPPORT (line 572) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EALREADY (line 573) | EALREADY = syscall.Errno(0x25) constant EBADE (line 574) | EBADE = syscall.Errno(0x66) constant EBADFD (line 575) | EBADFD = syscall.Errno(0x5d) constant EBADMSG (line 576) | EBADMSG = syscall.Errno(0x4c) constant EBADR (line 577) | EBADR = syscall.Errno(0x67) constant EBADRQC (line 578) | EBADRQC = syscall.Errno(0x6a) constant EBADSLT (line 579) | EBADSLT = syscall.Errno(0x6b) constant EBFONT (line 580) | EBFONT = syscall.Errno(0x6d) constant ECANCELED (line 581) | ECANCELED = syscall.Errno(0x7f) constant ECHRNG (line 582) | ECHRNG = syscall.Errno(0x5e) constant ECOMM (line 583) | ECOMM = syscall.Errno(0x55) constant ECONNABORTED (line 584) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 585) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 586) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 587) | EDEADLK = syscall.Errno(0x4e) constant EDEADLOCK (line 588) | EDEADLOCK = syscall.Errno(0x6c) constant EDESTADDRREQ (line 589) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOTDOT (line 590) | EDOTDOT = syscall.Errno(0x58) constant EDQUOT (line 591) | EDQUOT = syscall.Errno(0x45) constant EHOSTDOWN (line 592) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 593) | EHOSTUNREACH = syscall.Errno(0x41) constant EHWPOISON (line 594) | EHWPOISON = syscall.Errno(0x87) constant EIDRM (line 595) | EIDRM = syscall.Errno(0x4d) constant EILSEQ (line 596) | EILSEQ = syscall.Errno(0x7a) constant EINPROGRESS (line 597) | EINPROGRESS = syscall.Errno(0x24) constant EISCONN (line 598) | EISCONN = syscall.Errno(0x38) constant EISNAM (line 599) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 600) | EKEYEXPIRED = syscall.Errno(0x81) constant EKEYREJECTED (line 601) | EKEYREJECTED = syscall.Errno(0x83) constant EKEYREVOKED (line 602) | EKEYREVOKED = syscall.Errno(0x82) constant EL2HLT (line 603) | EL2HLT = syscall.Errno(0x65) constant EL2NSYNC (line 604) | EL2NSYNC = syscall.Errno(0x5f) constant EL3HLT (line 605) | EL3HLT = syscall.Errno(0x60) constant EL3RST (line 606) | EL3RST = syscall.Errno(0x61) constant ELIBACC (line 607) | ELIBACC = syscall.Errno(0x72) constant ELIBBAD (line 608) | ELIBBAD = syscall.Errno(0x70) constant ELIBEXEC (line 609) | ELIBEXEC = syscall.Errno(0x6e) constant ELIBMAX (line 610) | ELIBMAX = syscall.Errno(0x7b) constant ELIBSCN (line 611) | ELIBSCN = syscall.Errno(0x7c) constant ELNRNG (line 612) | ELNRNG = syscall.Errno(0x62) constant ELOOP (line 613) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 614) | EMEDIUMTYPE = syscall.Errno(0x7e) constant EMSGSIZE (line 615) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 616) | EMULTIHOP = syscall.Errno(0x57) constant ENAMETOOLONG (line 617) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENAVAIL (line 618) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 619) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 620) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 621) | ENETUNREACH = syscall.Errno(0x33) constant ENOANO (line 622) | ENOANO = syscall.Errno(0x69) constant ENOBUFS (line 623) | ENOBUFS = syscall.Errno(0x37) constant ENOCSI (line 624) | ENOCSI = syscall.Errno(0x64) constant ENODATA (line 625) | ENODATA = syscall.Errno(0x6f) constant ENOKEY (line 626) | ENOKEY = syscall.Errno(0x80) constant ENOLCK (line 627) | ENOLCK = syscall.Errno(0x4f) constant ENOLINK (line 628) | ENOLINK = syscall.Errno(0x52) constant ENOMEDIUM (line 629) | ENOMEDIUM = syscall.Errno(0x7d) constant ENOMSG (line 630) | ENOMSG = syscall.Errno(0x4b) constant ENONET (line 631) | ENONET = syscall.Errno(0x50) constant ENOPKG (line 632) | ENOPKG = syscall.Errno(0x71) constant ENOPROTOOPT (line 633) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSR (line 634) | ENOSR = syscall.Errno(0x4a) constant ENOSTR (line 635) | ENOSTR = syscall.Errno(0x48) constant ENOSYS (line 636) | ENOSYS = syscall.Errno(0x5a) constant ENOTCONN (line 637) | ENOTCONN = syscall.Errno(0x39) constant ENOTEMPTY (line 638) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTNAM (line 639) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 640) | ENOTRECOVERABLE = syscall.Errno(0x85) constant ENOTSOCK (line 641) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 642) | ENOTSUP = syscall.Errno(0x2d) constant ENOTUNIQ (line 643) | ENOTUNIQ = syscall.Errno(0x73) constant EOPNOTSUPP (line 644) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 645) | EOVERFLOW = syscall.Errno(0x5c) constant EOWNERDEAD (line 646) | EOWNERDEAD = syscall.Errno(0x84) constant EPFNOSUPPORT (line 647) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPROCLIM (line 648) | EPROCLIM = syscall.Errno(0x43) constant EPROTO (line 649) | EPROTO = syscall.Errno(0x56) constant EPROTONOSUPPORT (line 650) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 651) | EPROTOTYPE = syscall.Errno(0x29) constant EREMCHG (line 652) | EREMCHG = syscall.Errno(0x59) constant EREMOTE (line 653) | EREMOTE = syscall.Errno(0x47) constant EREMOTEIO (line 654) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 655) | ERESTART = syscall.Errno(0x74) constant ERFKILL (line 656) | ERFKILL = syscall.Errno(0x86) constant ERREMOTE (line 657) | ERREMOTE = syscall.Errno(0x51) constant ESHUTDOWN (line 658) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 659) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESRMNT (line 660) | ESRMNT = syscall.Errno(0x54) constant ESTALE (line 661) | ESTALE = syscall.Errno(0x46) constant ESTRPIPE (line 662) | ESTRPIPE = syscall.Errno(0x5b) constant ETIME (line 663) | ETIME = syscall.Errno(0x49) constant ETIMEDOUT (line 664) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 665) | ETOOMANYREFS = syscall.Errno(0x3b) constant EUCLEAN (line 666) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 667) | EUNATCH = syscall.Errno(0x63) constant EUSERS (line 668) | EUSERS = syscall.Errno(0x44) constant EXFULL (line 669) | EXFULL = syscall.Errno(0x68) constant SIGBUS (line 674) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 675) | SIGCHLD = syscall.Signal(0x14) constant SIGCLD (line 676) | SIGCLD = syscall.Signal(0x14) constant SIGCONT (line 677) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 678) | SIGEMT = syscall.Signal(0x7) constant SIGIO (line 679) | SIGIO = syscall.Signal(0x17) constant SIGLOST (line 680) | SIGLOST = syscall.Signal(0x1d) constant SIGPOLL (line 681) | SIGPOLL = syscall.Signal(0x17) constant SIGPROF (line 682) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 683) | SIGPWR = syscall.Signal(0x1d) constant SIGSTOP (line 684) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 685) | SIGSYS = syscall.Signal(0xc) constant SIGTSTP (line 686) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 687) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 688) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 689) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 690) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 691) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 692) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 693) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 694) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 695) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x1f 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 = 0x20 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x18 constant AF_IPX (line 32) | AF_IPX = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x1a constant AF_ISO (line 34) | AF_ISO = 0x7 constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x23 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 constant AF_OROUTE (line 42) | AF_OROUTE = 0x11 constant AF_OSI (line 43) | AF_OSI = 0x7 constant AF_PUP (line 44) | AF_PUP = 0x4 constant AF_ROUTE (line 45) | AF_ROUTE = 0x22 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 ARPHRD_ARCNET (line 49) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 54) | ARPHRD_STRIP = 0x17 constant B0 (line 55) | B0 = 0x0 constant B110 (line 56) | B110 = 0x6e constant B115200 (line 57) | B115200 = 0x1c200 constant B1200 (line 58) | B1200 = 0x4b0 constant B134 (line 59) | B134 = 0x86 constant B14400 (line 60) | B14400 = 0x3840 constant B150 (line 61) | B150 = 0x96 constant B1800 (line 62) | B1800 = 0x708 constant B19200 (line 63) | B19200 = 0x4b00 constant B200 (line 64) | B200 = 0xc8 constant B230400 (line 65) | B230400 = 0x38400 constant B2400 (line 66) | B2400 = 0x960 constant B28800 (line 67) | B28800 = 0x7080 constant B300 (line 68) | B300 = 0x12c constant B38400 (line 69) | B38400 = 0x9600 constant B460800 (line 70) | B460800 = 0x70800 constant B4800 (line 71) | B4800 = 0x12c0 constant B50 (line 72) | B50 = 0x32 constant B57600 (line 73) | B57600 = 0xe100 constant B600 (line 74) | B600 = 0x258 constant B7200 (line 75) | B7200 = 0x1c20 constant B75 (line 76) | B75 = 0x4b constant B76800 (line 77) | B76800 = 0x12c00 constant B921600 (line 78) | B921600 = 0xe1000 constant B9600 (line 79) | B9600 = 0x2580 constant BIOCFEEDBACK (line 80) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 81) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 82) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 83) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 84) | BIOCGDLTLIST = 0xc0084277 constant BIOCGETIF (line 85) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 86) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 87) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 88) | BIOCGRTIMEOUT = 0x400c427b constant BIOCGSEESENT (line 89) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 90) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 91) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 92) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 93) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 94) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 95) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 96) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 97) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 98) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 99) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x800c427a constant BIOCSSEESENT (line 101) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 102) | BIOCSTCPF = 0x80084272 constant BIOCSUDPF (line 103) | BIOCSUDPF = 0x80084273 constant BIOCVERSION (line 104) | BIOCVERSION = 0x40044271 constant BPF_A (line 105) | BPF_A = 0x10 constant BPF_ABS (line 106) | BPF_ABS = 0x20 constant BPF_ADD (line 107) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 108) | BPF_ALIGNMENT = 0x4 constant BPF_ALIGNMENT32 (line 109) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 110) | BPF_ALU = 0x4 constant BPF_AND (line 111) | BPF_AND = 0x50 constant BPF_B (line 112) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 113) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 114) | BPF_DIV = 0x30 constant BPF_H (line 115) | BPF_H = 0x8 constant BPF_IMM (line 116) | BPF_IMM = 0x0 constant BPF_IND (line 117) | BPF_IND = 0x40 constant BPF_JA (line 118) | BPF_JA = 0x0 constant BPF_JEQ (line 119) | BPF_JEQ = 0x10 constant BPF_JGE (line 120) | BPF_JGE = 0x30 constant BPF_JGT (line 121) | BPF_JGT = 0x20 constant BPF_JMP (line 122) | BPF_JMP = 0x5 constant BPF_JSET (line 123) | BPF_JSET = 0x40 constant BPF_K (line 124) | BPF_K = 0x0 constant BPF_LD (line 125) | BPF_LD = 0x0 constant BPF_LDX (line 126) | BPF_LDX = 0x1 constant BPF_LEN (line 127) | BPF_LEN = 0x80 constant BPF_LSH (line 128) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 129) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 130) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 131) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 132) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 133) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 134) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 135) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 136) | BPF_MISC = 0x7 constant BPF_MSH (line 137) | BPF_MSH = 0xa0 constant BPF_MUL (line 138) | BPF_MUL = 0x20 constant BPF_NEG (line 139) | BPF_NEG = 0x80 constant BPF_OR (line 140) | BPF_OR = 0x40 constant BPF_RELEASE (line 141) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 142) | BPF_RET = 0x6 constant BPF_RSH (line 143) | BPF_RSH = 0x70 constant BPF_ST (line 144) | BPF_ST = 0x2 constant BPF_STX (line 145) | BPF_STX = 0x3 constant BPF_SUB (line 146) | BPF_SUB = 0x10 constant BPF_TAX (line 147) | BPF_TAX = 0x0 constant BPF_TXA (line 148) | BPF_TXA = 0x80 constant BPF_W (line 149) | BPF_W = 0x0 constant BPF_X (line 150) | BPF_X = 0x8 constant BRKINT (line 151) | BRKINT = 0x2 constant CFLUSH (line 152) | CFLUSH = 0xf constant CLOCAL (line 153) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 154) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 155) | CLONE_FILES = 0x400 constant CLONE_FS (line 156) | CLONE_FS = 0x200 constant CLONE_PID (line 157) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 158) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 159) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 160) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 161) | CLONE_VM = 0x100 constant CPUSTATES (line 162) | CPUSTATES = 0x5 constant CP_IDLE (line 163) | CP_IDLE = 0x4 constant CP_INTR (line 164) | CP_INTR = 0x3 constant CP_NICE (line 165) | CP_NICE = 0x1 constant CP_SYS (line 166) | CP_SYS = 0x2 constant CP_USER (line 167) | CP_USER = 0x0 constant CREAD (line 168) | CREAD = 0x800 constant CRTSCTS (line 169) | CRTSCTS = 0x10000 constant CS5 (line 170) | CS5 = 0x0 constant CS6 (line 171) | CS6 = 0x100 constant CS7 (line 172) | CS7 = 0x200 constant CS8 (line 173) | CS8 = 0x300 constant CSIZE (line 174) | CSIZE = 0x300 constant CSTART (line 175) | CSTART = 0x11 constant CSTATUS (line 176) | CSTATUS = 0x14 constant CSTOP (line 177) | CSTOP = 0x13 constant CSTOPB (line 178) | CSTOPB = 0x400 constant CSUSP (line 179) | CSUSP = 0x1a constant CTL_HW (line 180) | CTL_HW = 0x6 constant CTL_KERN (line 181) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 182) | CTL_MAXNAME = 0xc constant CTL_NET (line 183) | CTL_NET = 0x4 constant CTL_QUERY (line 184) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 185) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 186) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 187) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 188) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 189) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 190) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 191) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 192) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 193) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 194) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 195) | DLT_AURORA = 0x7e constant DLT_AX25 (line 196) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 197) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 198) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 199) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 200) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 201) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 202) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 203) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 204) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 205) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 206) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 207) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 208) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 209) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 210) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 211) | DLT_EN3MB = 0x2 constant DLT_ENC (line 212) | DLT_ENC = 0x6d constant DLT_ERF (line 213) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 214) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 215) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 216) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 217) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 218) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 219) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 220) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 221) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 222) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 223) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 224) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 225) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 226) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 227) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 228) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 229) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 230) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 231) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 232) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 233) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 234) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 235) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 236) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 237) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 238) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 239) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 240) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 241) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 242) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 243) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 244) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 245) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 246) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 247) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 248) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 249) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 250) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 251) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 252) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 253) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 254) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 255) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 256) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 257) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 258) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 259) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 260) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 261) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 262) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 263) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 264) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 265) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 266) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 267) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 268) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 269) | DLT_LAPD = 0xcb constant DLT_LIN (line 270) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 271) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 272) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 273) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 274) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 275) | DLT_LOOP = 0x6c constant DLT_LTALK (line 276) | DLT_LTALK = 0x72 constant DLT_MFR (line 277) | DLT_MFR = 0xb6 constant DLT_MOST (line 278) | DLT_MOST = 0xd3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_NULL (line 283) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 284) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 285) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 286) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 287) | DLT_PPI = 0xc0 constant DLT_PPP (line 288) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 289) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 290) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 291) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 292) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 293) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 294) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 295) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 296) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 297) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 298) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 299) | DLT_RIO = 0x7c constant DLT_SCCP (line 300) | DLT_SCCP = 0x8e constant DLT_SITA (line 301) | DLT_SITA = 0xc4 constant DLT_SLIP (line 302) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 303) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 304) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 305) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 306) | DLT_TZSP = 0x80 constant DLT_USB (line 307) | DLT_USB = 0xba constant DLT_USB_LINUX (line 308) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 309) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 310) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 311) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 312) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 313) | DT_BLK = 0x6 constant DT_CHR (line 314) | DT_CHR = 0x2 constant DT_DIR (line 315) | DT_DIR = 0x4 constant DT_FIFO (line 316) | DT_FIFO = 0x1 constant DT_LNK (line 317) | DT_LNK = 0xa constant DT_REG (line 318) | DT_REG = 0x8 constant DT_SOCK (line 319) | DT_SOCK = 0xc constant DT_UNKNOWN (line 320) | DT_UNKNOWN = 0x0 constant DT_WHT (line 321) | DT_WHT = 0xe constant ECHO (line 322) | ECHO = 0x8 constant ECHOCTL (line 323) | ECHOCTL = 0x40 constant ECHOE (line 324) | ECHOE = 0x2 constant ECHOK (line 325) | ECHOK = 0x4 constant ECHOKE (line 326) | ECHOKE = 0x1 constant ECHONL (line 327) | ECHONL = 0x10 constant ECHOPRT (line 328) | ECHOPRT = 0x20 constant EMUL_LINUX (line 329) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 330) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 331) | EMUL_MAXID = 0x6 constant EN_SW_CTL_INF (line 332) | EN_SW_CTL_INF = 0x1000 constant EN_SW_CTL_PREC (line 333) | EN_SW_CTL_PREC = 0x300 constant EN_SW_CTL_ROUND (line 334) | EN_SW_CTL_ROUND = 0xc00 constant EN_SW_DATACHAIN (line 335) | EN_SW_DATACHAIN = 0x80 constant EN_SW_DENORM (line 336) | EN_SW_DENORM = 0x2 constant EN_SW_INVOP (line 337) | EN_SW_INVOP = 0x1 constant EN_SW_OVERFLOW (line 338) | EN_SW_OVERFLOW = 0x8 constant EN_SW_PRECLOSS (line 339) | EN_SW_PRECLOSS = 0x20 constant EN_SW_UNDERFLOW (line 340) | EN_SW_UNDERFLOW = 0x10 constant EN_SW_ZERODIV (line 341) | EN_SW_ZERODIV = 0x4 constant ETHERCAP_JUMBO_MTU (line 342) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 343) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 344) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 345) | ETHERMIN = 0x2e constant ETHERMTU (line 346) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 347) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 348) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 349) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 350) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 351) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 352) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 353) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 354) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 355) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 356) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 357) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 358) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 359) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 360) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 361) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 362) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 363) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 364) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 365) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 366) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 367) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 368) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 369) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 370) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 371) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 372) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 373) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 374) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 375) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 376) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 377) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 378) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 379) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 380) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 381) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 382) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 383) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 384) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 385) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 386) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 387) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 388) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 389) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 390) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 391) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 392) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 393) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 394) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 395) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 396) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 397) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 398) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 399) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 400) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 401) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 402) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 403) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 404) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 405) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 406) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 407) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 408) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 409) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 410) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 411) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 412) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 413) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 414) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 415) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 416) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 417) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 418) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 419) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 420) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 421) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 422) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 423) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 424) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 425) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 426) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 427) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 428) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 429) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 430) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 431) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 432) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 433) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 434) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 435) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 436) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 437) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 438) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 439) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 440) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 441) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 442) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 443) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 444) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 445) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 446) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 447) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 448) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 449) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 450) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 451) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 452) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 453) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 454) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 455) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 456) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 457) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 458) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 459) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 460) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 461) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 462) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 463) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 464) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 465) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 466) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 467) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 468) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 469) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 470) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 471) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 472) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 473) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 474) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 475) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 476) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 477) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 478) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 479) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 480) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 481) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 482) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 483) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 484) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 485) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 486) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 487) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 488) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 489) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 490) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 491) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 492) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 493) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 494) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 495) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 496) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 497) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 498) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 499) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 500) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 501) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 502) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 503) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 504) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 505) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 506) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 507) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 508) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 509) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 510) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 511) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 512) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 513) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 514) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 515) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 516) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 517) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 518) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 519) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 520) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 521) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 522) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 523) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 524) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 525) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 526) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 527) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 528) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 529) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 530) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 531) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 532) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 533) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 534) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 535) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 536) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 537) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 538) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 539) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 540) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 541) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 542) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 543) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 544) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 545) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 546) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 547) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 548) | EVFILT_WRITE = 0x1 constant EV_ADD (line 549) | EV_ADD = 0x1 constant EV_CLEAR (line 550) | EV_CLEAR = 0x20 constant EV_DELETE (line 551) | EV_DELETE = 0x2 constant EV_DISABLE (line 552) | EV_DISABLE = 0x8 constant EV_ENABLE (line 553) | EV_ENABLE = 0x4 constant EV_EOF (line 554) | EV_EOF = 0x8000 constant EV_ERROR (line 555) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 556) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 557) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 558) | EV_SYSFLAGS = 0xf000 constant EXTA (line 559) | EXTA = 0x4b00 constant EXTATTR_CMD_START (line 560) | EXTATTR_CMD_START = 0x1 constant EXTATTR_CMD_STOP (line 561) | EXTATTR_CMD_STOP = 0x2 constant EXTATTR_NAMESPACE_SYSTEM (line 562) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 563) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 564) | EXTB = 0x9600 constant EXTPROC (line 565) | EXTPROC = 0x800 constant FD_CLOEXEC (line 566) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 567) | FD_SETSIZE = 0x100 constant FLUSHO (line 568) | FLUSHO = 0x800000 constant F_CLOSEM (line 569) | F_CLOSEM = 0xa constant F_DUPFD (line 570) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 571) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 572) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 573) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 574) | F_FSIN = 0x10000000 constant F_FSINOUT (line 575) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 576) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 577) | F_FSPRIV = 0x8000 constant F_FSVOID (line 578) | F_FSVOID = 0x40000000 constant F_GETFD (line 579) | F_GETFD = 0x1 constant F_GETFL (line 580) | F_GETFL = 0x3 constant F_GETLK (line 581) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 582) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 583) | F_GETOWN = 0x5 constant F_MAXFD (line 584) | F_MAXFD = 0xb constant F_OK (line 585) | F_OK = 0x0 constant F_PARAM_MASK (line 586) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 587) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 588) | F_RDLCK = 0x1 constant F_SETFD (line 589) | F_SETFD = 0x2 constant F_SETFL (line 590) | F_SETFL = 0x4 constant F_SETLK (line 591) | F_SETLK = 0x8 constant F_SETLKW (line 592) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 593) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 594) | F_SETOWN = 0x6 constant F_UNLCK (line 595) | F_UNLCK = 0x2 constant F_WRLCK (line 596) | F_WRLCK = 0x3 constant HUPCL (line 597) | HUPCL = 0x4000 constant HW_MACHINE (line 598) | HW_MACHINE = 0x1 constant ICANON (line 599) | ICANON = 0x100 constant ICMP6_FILTER (line 600) | ICMP6_FILTER = 0x12 constant ICRNL (line 601) | ICRNL = 0x100 constant IEXTEN (line 602) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 603) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 604) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 605) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 606) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 607) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 608) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 609) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 610) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 611) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 612) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 613) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 614) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 615) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 616) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 617) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 618) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 619) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 620) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 621) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 622) | IFF_UP = 0x1 constant IFNAMSIZ (line 623) | IFNAMSIZ = 0x10 constant IFT_1822 (line 624) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 625) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 626) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 627) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 628) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 629) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 630) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 631) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 632) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 633) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 634) | IFT_ASYNC = 0x54 constant IFT_ATM (line 635) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 636) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 637) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 638) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 639) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 640) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 641) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 642) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 643) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 644) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 645) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 646) | IFT_BSC = 0x53 constant IFT_CARP (line 647) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 648) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 649) | IFT_CEPT = 0x13 constant IFT_CES (line 650) | IFT_CES = 0x85 constant IFT_CHANNEL (line 651) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 652) | IFT_CNR = 0x55 constant IFT_COFFEE (line 653) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 654) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 655) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 656) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 657) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 658) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 659) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 660) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 661) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 662) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 663) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 664) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 665) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 666) | IFT_DS3 = 0x1e constant IFT_DTM (line 667) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 668) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 669) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 670) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 671) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 672) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 673) | IFT_ECONET = 0xce constant IFT_EON (line 674) | IFT_EON = 0x19 constant IFT_EPLRS (line 675) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 676) | IFT_ESCON = 0x49 constant IFT_ETHER (line 677) | IFT_ETHER = 0x6 constant IFT_FAITH (line 678) | IFT_FAITH = 0xf2 constant IFT_FAST (line 679) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 680) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 681) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 682) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 683) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 684) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 685) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 686) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 687) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 688) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 689) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 690) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 691) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 692) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 693) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 694) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 695) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 696) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 697) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 698) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 699) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 700) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 701) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 702) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 703) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 704) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 705) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 706) | IFT_HSSI = 0x2e constant IFT_HY (line 707) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 708) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 709) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 710) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 711) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 712) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 713) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 714) | IFT_IFGSN = 0x91 constant IFT_IMT (line 715) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 716) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 717) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 718) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 719) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 720) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 721) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 722) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 723) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 724) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 725) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 726) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 727) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 728) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 729) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 730) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 731) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 732) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 733) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 734) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 735) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 736) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 737) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 738) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 739) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 740) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 741) | IFT_LAPB = 0x10 constant IFT_LAPD (line 742) | IFT_LAPD = 0x4d constant IFT_LAPF (line 743) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 744) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 745) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 746) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 747) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 748) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 749) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 750) | IFT_MODEM = 0x30 constant IFT_MPC (line 751) | IFT_MPC = 0x71 constant IFT_MPLS (line 752) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 753) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 754) | IFT_MSDSL = 0x8f constant IFT_MVL (line 755) | IFT_MVL = 0xbf constant IFT_MYRINET (line 756) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 757) | IFT_NFAS = 0xaf constant IFT_NSIP (line 758) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 759) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 760) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 761) | IFT_OTHER = 0x1 constant IFT_P10 (line 762) | IFT_P10 = 0xc constant IFT_P80 (line 763) | IFT_P80 = 0xd constant IFT_PARA (line 764) | IFT_PARA = 0x22 constant IFT_PFLOG (line 765) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 766) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 767) | IFT_PLC = 0xae constant IFT_PON155 (line 768) | IFT_PON155 = 0xcf constant IFT_PON622 (line 769) | IFT_PON622 = 0xd0 constant IFT_POS (line 770) | IFT_POS = 0xab constant IFT_PPP (line 771) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 772) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 773) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 774) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 775) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 776) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 777) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 778) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 779) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 780) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 781) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 782) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 783) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 784) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 785) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 786) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 787) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 788) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 789) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 790) | IFT_RS232 = 0x21 constant IFT_RSRB (line 791) | IFT_RSRB = 0x4f constant IFT_SDLC (line 792) | IFT_SDLC = 0x11 constant IFT_SDSL (line 793) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 794) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 795) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 796) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 797) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 798) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 799) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 800) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 801) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 802) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 803) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 804) | IFT_SONETVT = 0x33 constant IFT_SRP (line 805) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 806) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 807) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 808) | IFT_STARLAN = 0xb constant IFT_STF (line 809) | IFT_STF = 0xd7 constant IFT_T1 (line 810) | IFT_T1 = 0x12 constant IFT_TDLC (line 811) | IFT_TDLC = 0x74 constant IFT_TELINK (line 812) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 813) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 814) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 815) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 816) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 817) | IFT_ULTRA = 0x1d constant IFT_USB (line 818) | IFT_USB = 0xa0 constant IFT_V11 (line 819) | IFT_V11 = 0x40 constant IFT_V35 (line 820) | IFT_V35 = 0x2d constant IFT_V36 (line 821) | IFT_V36 = 0x41 constant IFT_V37 (line 822) | IFT_V37 = 0x78 constant IFT_VDSL (line 823) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 824) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 825) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 826) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 827) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 828) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 829) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 830) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 831) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 832) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 833) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 834) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 835) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 836) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 837) | IFT_X213 = 0x5d constant IFT_X25 (line 838) | IFT_X25 = 0x5 constant IFT_X25DDN (line 839) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 840) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 841) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 842) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 843) | IFT_XETHER = 0x1a constant IGNBRK (line 844) | IGNBRK = 0x1 constant IGNCR (line 845) | IGNCR = 0x80 constant IGNPAR (line 846) | IGNPAR = 0x4 constant IMAXBEL (line 847) | IMAXBEL = 0x2000 constant INLCR (line 848) | INLCR = 0x40 constant INPCK (line 849) | INPCK = 0x10 constant IN_CLASSA_HOST (line 850) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 851) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 852) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 853) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 854) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 855) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 856) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 857) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 858) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 859) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 860) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 861) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 862) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 863) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 864) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 865) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 866) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 867) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 868) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 869) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 870) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 871) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 872) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 873) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 874) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 875) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 876) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 877) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 878) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 879) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 880) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 881) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 882) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 883) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 884) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 885) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 886) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 887) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 888) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 889) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 890) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 891) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 892) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 893) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 894) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 895) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 896) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 897) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 898) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 899) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 900) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 901) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 902) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 903) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 904) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 905) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 906) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 907) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 908) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 909) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 910) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 911) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 912) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 913) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 914) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 915) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 916) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 917) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 918) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 919) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 920) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 921) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 922) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 923) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 924) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 925) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 926) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 927) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 928) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 929) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 930) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 931) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 932) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 933) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 934) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 935) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 936) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 937) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 938) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 939) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 940) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 941) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 942) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 943) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 944) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 945) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 946) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 947) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 948) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 949) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 950) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 951) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 952) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 953) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 954) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 955) | IP_EF = 0x8000 constant IP_ERRORMTU (line 956) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 957) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 958) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 959) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 960) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 961) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 962) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 963) | IP_MINTTL = 0x18 constant IP_MSS (line 964) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 965) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 966) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 967) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 968) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 969) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 970) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 971) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 972) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 973) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 974) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 975) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 976) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 977) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 978) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 979) | IP_RETOPTS = 0x8 constant IP_RF (line 980) | IP_RF = 0x8000 constant IP_TOS (line 981) | IP_TOS = 0x3 constant IP_TTL (line 982) | IP_TTL = 0x4 constant ISIG (line 983) | ISIG = 0x80 constant ISTRIP (line 984) | ISTRIP = 0x20 constant IXANY (line 985) | IXANY = 0x800 constant IXOFF (line 986) | IXOFF = 0x400 constant IXON (line 987) | IXON = 0x200 constant KERN_HOSTNAME (line 988) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 989) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 990) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 991) | KERN_VERSION = 0x4 constant LOCK_EX (line 992) | LOCK_EX = 0x2 constant LOCK_NB (line 993) | LOCK_NB = 0x4 constant LOCK_SH (line 994) | LOCK_SH = 0x1 constant LOCK_UN (line 995) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 996) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 997) | MADV_FREE = 0x6 constant MADV_NORMAL (line 998) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 999) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1000) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 1001) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 1002) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 1003) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 1004) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 1005) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 1006) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 1007) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 1008) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 1009) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1010) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1011) | MAP_ANON = 0x1000 constant MAP_FILE (line 1012) | MAP_FILE = 0x0 constant MAP_FIXED (line 1013) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 1014) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 1015) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 1016) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 1017) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 1018) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 1019) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1020) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 1021) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 1022) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1023) | MAP_RENAME = 0x20 constant MAP_SHARED (line 1024) | MAP_SHARED = 0x1 constant MAP_STACK (line 1025) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 1026) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 1027) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 1028) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1029) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 1030) | MNT_ASYNC = 0x40 constant MNT_BASIC_FLAGS (line 1031) | MNT_BASIC_FLAGS = 0xe782807f constant MNT_DEFEXPORTED (line 1032) | MNT_DEFEXPORTED = 0x200 constant MNT_DISCARD (line 1033) | MNT_DISCARD = 0x800000 constant MNT_EXKERB (line 1034) | MNT_EXKERB = 0x800 constant MNT_EXNORESPORT (line 1035) | MNT_EXNORESPORT = 0x8000000 constant MNT_EXPORTANON (line 1036) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1037) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1038) | MNT_EXPUBLIC = 0x10000000 constant MNT_EXRDONLY (line 1039) | MNT_EXRDONLY = 0x80 constant MNT_EXTATTR (line 1040) | MNT_EXTATTR = 0x1000000 constant MNT_FORCE (line 1041) | MNT_FORCE = 0x80000 constant MNT_GETARGS (line 1042) | MNT_GETARGS = 0x400000 constant MNT_IGNORE (line 1043) | MNT_IGNORE = 0x100000 constant MNT_LAZY (line 1044) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1045) | MNT_LOCAL = 0x1000 constant MNT_LOG (line 1046) | MNT_LOG = 0x2000000 constant MNT_NOATIME (line 1047) | MNT_NOATIME = 0x4000000 constant MNT_NOCOREDUMP (line 1048) | MNT_NOCOREDUMP = 0x8000 constant MNT_NODEV (line 1049) | MNT_NODEV = 0x10 constant MNT_NODEVMTIME (line 1050) | MNT_NODEVMTIME = 0x40000000 constant MNT_NOEXEC (line 1051) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 1052) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 1053) | MNT_NOWAIT = 0x2 constant MNT_OP_FLAGS (line 1054) | MNT_OP_FLAGS = 0x4d0000 constant MNT_QUOTA (line 1055) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1056) | MNT_RDONLY = 0x1 constant MNT_RELATIME (line 1057) | MNT_RELATIME = 0x20000 constant MNT_RELOAD (line 1058) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1059) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 1060) | MNT_SOFTDEP = 0x80000000 constant MNT_SYMPERM (line 1061) | MNT_SYMPERM = 0x20000000 constant MNT_SYNCHRONOUS (line 1062) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1063) | MNT_UNION = 0x20 constant MNT_UPDATE (line 1064) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1065) | MNT_VISFLAGMASK = 0xff90ffff constant MNT_WAIT (line 1066) | MNT_WAIT = 0x1 constant MSG_BCAST (line 1067) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1068) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1069) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1070) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1071) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1072) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1073) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1074) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1075) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1076) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1077) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1078) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1079) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1080) | MSG_OOB = 0x1 constant MSG_PEEK (line 1081) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1082) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1083) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1084) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1085) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1086) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1087) | MS_SYNC = 0x4 constant NAME_MAX (line 1088) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1089) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1090) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1091) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1092) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1093) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1094) | NET_RT_OOIFLIST = 0x3 constant NFDBITS (line 1095) | NFDBITS = 0x20 constant NOFLSH (line 1096) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1097) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1098) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1099) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1100) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1101) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1102) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1103) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1104) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1105) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1106) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1107) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1108) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1109) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1110) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1111) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1112) | NOTE_WRITE = 0x2 constant OCRNL (line 1113) | OCRNL = 0x10 constant OFIOGETBMAP (line 1114) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1115) | ONLCR = 0x2 constant ONLRET (line 1116) | ONLRET = 0x40 constant ONOCR (line 1117) | ONOCR = 0x20 constant ONOEOT (line 1118) | ONOEOT = 0x8 constant OPOST (line 1119) | OPOST = 0x1 constant O_ACCMODE (line 1120) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1121) | O_ALT_IO = 0x40000 constant O_APPEND (line 1122) | O_APPEND = 0x8 constant O_ASYNC (line 1123) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1124) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1125) | O_CREAT = 0x200 constant O_DIRECT (line 1126) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1127) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1128) | O_DSYNC = 0x10000 constant O_EXCL (line 1129) | O_EXCL = 0x800 constant O_EXLOCK (line 1130) | O_EXLOCK = 0x20 constant O_FSYNC (line 1131) | O_FSYNC = 0x80 constant O_NDELAY (line 1132) | O_NDELAY = 0x4 constant O_NOCTTY (line 1133) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1134) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1135) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1136) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1137) | O_RDONLY = 0x0 constant O_RDWR (line 1138) | O_RDWR = 0x2 constant O_RSYNC (line 1139) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1140) | O_SHLOCK = 0x10 constant O_SYNC (line 1141) | O_SYNC = 0x80 constant O_TRUNC (line 1142) | O_TRUNC = 0x400 constant O_WRONLY (line 1143) | O_WRONLY = 0x1 constant PARENB (line 1144) | PARENB = 0x1000 constant PARMRK (line 1145) | PARMRK = 0x8 constant PARODD (line 1146) | PARODD = 0x2000 constant PENDIN (line 1147) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1148) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1149) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1150) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1151) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1152) | PROT_EXEC = 0x4 constant PROT_NONE (line 1153) | PROT_NONE = 0x0 constant PROT_READ (line 1154) | PROT_READ = 0x1 constant PROT_WRITE (line 1155) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1156) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1157) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1158) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1159) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1160) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1161) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1162) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1163) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1164) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1165) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1166) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1167) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1168) | RTAX_BRD = 0x7 constant RTAX_DST (line 1169) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1170) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1171) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1172) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1173) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1174) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1175) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1176) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1177) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1178) | RTA_BRD = 0x80 constant RTA_DST (line 1179) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1180) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1181) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1182) | RTA_IFA = 0x20 constant RTA_IFP (line 1183) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1184) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1185) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1186) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1187) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1188) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1189) | RTF_CLONING = 0x100 constant RTF_DONE (line 1190) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1191) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1192) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1193) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1194) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1195) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1196) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1197) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1198) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1199) | RTF_REJECT = 0x8 constant RTF_SRC (line 1200) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1201) | RTF_STATIC = 0x800 constant RTF_UP (line 1202) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1203) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1204) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1205) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1206) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1207) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1208) | RTM_DELETE = 0x2 constant RTM_GET (line 1209) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1210) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1211) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1212) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1213) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1214) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1215) | RTM_LOSING = 0x5 constant RTM_MISS (line 1216) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1217) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1218) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1219) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1220) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1221) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1222) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1223) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1224) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1225) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1226) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1227) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1228) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1229) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1230) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1231) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1232) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1233) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1234) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1235) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1236) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1237) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1238) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1239) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1240) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1241) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1242) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1243) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1244) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1245) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1246) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1247) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1248) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1249) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1250) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1251) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1252) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1253) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETPFSYNC (line 1254) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1255) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1256) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGHIWAT (line 1257) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1258) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1259) | SIOCGIFADDRPREF = 0xc0946920 constant SIOCGIFALIAS (line 1260) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1261) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1262) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1263) | SIOCGIFCONF = 0xc0086926 constant SIOCGIFDATA (line 1264) | SIOCGIFDATA = 0xc0946985 constant SIOCGIFDLT (line 1265) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1266) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1267) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1268) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1269) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1270) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1271) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1272) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1273) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1274) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1275) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1276) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1277) | SIOCGLINKSTR = 0xc01c6987 constant SIOCGLOWAT (line 1278) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1279) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1280) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1281) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1282) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1283) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCINITIFADDR (line 1284) | SIOCINITIFADDR = 0xc0446984 constant SIOCSDRVSPEC (line 1285) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETPFSYNC (line 1286) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1287) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1288) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1289) | SIOCSIFADDRPREF = 0x8094691f constant SIOCSIFBRDADDR (line 1290) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1291) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1292) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1293) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1294) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1295) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1296) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1297) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1298) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1299) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1300) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1301) | SIOCSLINKSTR = 0x801c6988 constant SIOCSLOWAT (line 1302) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1303) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1304) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1305) | SIOCZIFDATA = 0xc0946986 constant SOCK_CLOEXEC (line 1306) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1307) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1308) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1309) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1310) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1311) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1312) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1313) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1314) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1315) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1316) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1317) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1318) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1319) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1320) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1321) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1322) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1323) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1324) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1325) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1326) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1327) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1328) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1329) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1330) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1331) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1332) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1333) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1334) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1335) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1336) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1337) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1338) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1339) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1340) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1341) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1342) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1343) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1344) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1345) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1346) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1347) | S_IEXEC = 0x40 constant S_IFBLK (line 1348) | S_IFBLK = 0x6000 constant S_IFCHR (line 1349) | S_IFCHR = 0x2000 constant S_IFDIR (line 1350) | S_IFDIR = 0x4000 constant S_IFIFO (line 1351) | S_IFIFO = 0x1000 constant S_IFLNK (line 1352) | S_IFLNK = 0xa000 constant S_IFMT (line 1353) | S_IFMT = 0xf000 constant S_IFREG (line 1354) | S_IFREG = 0x8000 constant S_IFSOCK (line 1355) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1356) | S_IFWHT = 0xe000 constant S_IREAD (line 1357) | S_IREAD = 0x100 constant S_IRGRP (line 1358) | S_IRGRP = 0x20 constant S_IROTH (line 1359) | S_IROTH = 0x4 constant S_IRUSR (line 1360) | S_IRUSR = 0x100 constant S_IRWXG (line 1361) | S_IRWXG = 0x38 constant S_IRWXO (line 1362) | S_IRWXO = 0x7 constant S_IRWXU (line 1363) | S_IRWXU = 0x1c0 constant S_ISGID (line 1364) | S_ISGID = 0x400 constant S_ISTXT (line 1365) | S_ISTXT = 0x200 constant S_ISUID (line 1366) | S_ISUID = 0x800 constant S_ISVTX (line 1367) | S_ISVTX = 0x200 constant S_IWGRP (line 1368) | S_IWGRP = 0x10 constant S_IWOTH (line 1369) | S_IWOTH = 0x2 constant S_IWRITE (line 1370) | S_IWRITE = 0x80 constant S_IWUSR (line 1371) | S_IWUSR = 0x80 constant S_IXGRP (line 1372) | S_IXGRP = 0x8 constant S_IXOTH (line 1373) | S_IXOTH = 0x1 constant S_IXUSR (line 1374) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1375) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1376) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1377) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1378) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1379) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1380) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1381) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1382) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1383) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1384) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1385) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1386) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1387) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1388) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1389) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1390) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1391) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1392) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1393) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1394) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1395) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1396) | TIOCDCDTIMESTAMP = 0x400c7458 constant TIOCDRAIN (line 1397) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1398) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1399) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1400) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1401) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1402) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1403) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1404) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1405) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1406) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1407) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1408) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1409) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1410) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1411) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1412) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1413) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1414) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1415) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1416) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1417) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1418) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1419) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1420) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1421) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1422) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1423) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1424) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1425) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1426) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1427) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1428) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1429) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1430) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1431) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1432) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1433) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1434) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1435) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1436) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1437) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1438) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1439) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1440) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1441) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1442) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1443) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1444) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1445) | TIOCRCVFRAME = 0x80047445 constant TIOCREMOTE (line 1446) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1447) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1448) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1449) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1450) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1451) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1452) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1453) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1454) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1455) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1456) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1457) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1458) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1459) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1460) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1461) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1462) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1463) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1464) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1465) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1466) | TIOCXMTFRAME = 0x80047444 constant TOSTOP (line 1467) | TOSTOP = 0x400000 constant VDISCARD (line 1468) | VDISCARD = 0xf constant VDSUSP (line 1469) | VDSUSP = 0xb constant VEOF (line 1470) | VEOF = 0x0 constant VEOL (line 1471) | VEOL = 0x1 constant VEOL2 (line 1472) | VEOL2 = 0x2 constant VERASE (line 1473) | VERASE = 0x3 constant VINTR (line 1474) | VINTR = 0x8 constant VKILL (line 1475) | VKILL = 0x5 constant VLNEXT (line 1476) | VLNEXT = 0xe constant VMIN (line 1477) | VMIN = 0x10 constant VQUIT (line 1478) | VQUIT = 0x9 constant VREPRINT (line 1479) | VREPRINT = 0x6 constant VSTART (line 1480) | VSTART = 0xc constant VSTATUS (line 1481) | VSTATUS = 0x12 constant VSTOP (line 1482) | VSTOP = 0xd constant VSUSP (line 1483) | VSUSP = 0xa constant VTIME (line 1484) | VTIME = 0x11 constant VWERASE (line 1485) | VWERASE = 0x4 constant WALL (line 1486) | WALL = 0x8 constant WALLSIG (line 1487) | WALLSIG = 0x8 constant WALTSIG (line 1488) | WALTSIG = 0x4 constant WCLONE (line 1489) | WCLONE = 0x4 constant WCOREFLAG (line 1490) | WCOREFLAG = 0x80 constant WNOHANG (line 1491) | WNOHANG = 0x1 constant WNOWAIT (line 1492) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1493) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1494) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1495) | WSTOPPED = 0x7f constant WUNTRACED (line 1496) | WUNTRACED = 0x2 constant E2BIG (line 1501) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1502) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1503) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1504) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1505) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1506) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1507) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1508) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1509) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1510) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1511) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1512) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1513) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1514) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1515) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1516) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1517) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1518) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1519) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1520) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1521) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1522) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1523) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1524) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1525) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1526) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1527) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1528) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1529) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1530) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1531) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1532) | EINVAL = syscall.Errno(0x16) constant EIO (line 1533) | EIO = syscall.Errno(0x5) constant EISCONN (line 1534) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1535) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1536) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1537) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1538) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1539) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1540) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1541) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1542) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1543) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1544) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1545) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1546) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1547) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1548) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1549) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1550) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1551) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1552) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1553) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1554) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1555) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1556) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1557) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1558) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1559) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1560) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1561) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1562) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1563) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1564) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1565) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1566) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1567) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1568) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1569) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1570) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1571) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1572) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1573) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1574) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1575) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1576) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1577) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1578) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1579) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1580) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1581) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1582) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1583) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1584) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1585) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1586) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1587) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1588) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1589) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1590) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1591) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1592) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1593) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1594) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1595) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1596) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1597) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1598) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1603) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1604) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1605) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1606) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1607) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1608) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1609) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1610) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1611) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1612) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1613) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1614) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1615) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1616) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1617) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1618) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1619) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1620) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1621) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1622) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1623) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1624) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1625) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1626) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1627) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1628) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1629) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1630) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1631) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1632) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1633) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1634) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1635) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x1f 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 = 0x20 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x18 constant AF_IPX (line 32) | AF_IPX = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x1a constant AF_ISO (line 34) | AF_ISO = 0x7 constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x23 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 constant AF_OROUTE (line 42) | AF_OROUTE = 0x11 constant AF_OSI (line 43) | AF_OSI = 0x7 constant AF_PUP (line 44) | AF_PUP = 0x4 constant AF_ROUTE (line 45) | AF_ROUTE = 0x22 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 ARPHRD_ARCNET (line 49) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 54) | ARPHRD_STRIP = 0x17 constant B0 (line 55) | B0 = 0x0 constant B110 (line 56) | B110 = 0x6e constant B115200 (line 57) | B115200 = 0x1c200 constant B1200 (line 58) | B1200 = 0x4b0 constant B134 (line 59) | B134 = 0x86 constant B14400 (line 60) | B14400 = 0x3840 constant B150 (line 61) | B150 = 0x96 constant B1800 (line 62) | B1800 = 0x708 constant B19200 (line 63) | B19200 = 0x4b00 constant B200 (line 64) | B200 = 0xc8 constant B230400 (line 65) | B230400 = 0x38400 constant B2400 (line 66) | B2400 = 0x960 constant B28800 (line 67) | B28800 = 0x7080 constant B300 (line 68) | B300 = 0x12c constant B38400 (line 69) | B38400 = 0x9600 constant B460800 (line 70) | B460800 = 0x70800 constant B4800 (line 71) | B4800 = 0x12c0 constant B50 (line 72) | B50 = 0x32 constant B57600 (line 73) | B57600 = 0xe100 constant B600 (line 74) | B600 = 0x258 constant B7200 (line 75) | B7200 = 0x1c20 constant B75 (line 76) | B75 = 0x4b constant B76800 (line 77) | B76800 = 0x12c00 constant B921600 (line 78) | B921600 = 0xe1000 constant B9600 (line 79) | B9600 = 0x2580 constant BIOCFEEDBACK (line 80) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 81) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 82) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 83) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 84) | BIOCGDLTLIST = 0xc0104277 constant BIOCGETIF (line 85) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 86) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 87) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 88) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGSEESENT (line 89) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 90) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 91) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 92) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 93) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 94) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 95) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 96) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 97) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 98) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 99) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x8010427a constant BIOCSSEESENT (line 101) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 102) | BIOCSTCPF = 0x80104272 constant BIOCSUDPF (line 103) | BIOCSUDPF = 0x80104273 constant BIOCVERSION (line 104) | BIOCVERSION = 0x40044271 constant BPF_A (line 105) | BPF_A = 0x10 constant BPF_ABS (line 106) | BPF_ABS = 0x20 constant BPF_ADD (line 107) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 108) | BPF_ALIGNMENT = 0x8 constant BPF_ALIGNMENT32 (line 109) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 110) | BPF_ALU = 0x4 constant BPF_AND (line 111) | BPF_AND = 0x50 constant BPF_B (line 112) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 113) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 114) | BPF_DIV = 0x30 constant BPF_H (line 115) | BPF_H = 0x8 constant BPF_IMM (line 116) | BPF_IMM = 0x0 constant BPF_IND (line 117) | BPF_IND = 0x40 constant BPF_JA (line 118) | BPF_JA = 0x0 constant BPF_JEQ (line 119) | BPF_JEQ = 0x10 constant BPF_JGE (line 120) | BPF_JGE = 0x30 constant BPF_JGT (line 121) | BPF_JGT = 0x20 constant BPF_JMP (line 122) | BPF_JMP = 0x5 constant BPF_JSET (line 123) | BPF_JSET = 0x40 constant BPF_K (line 124) | BPF_K = 0x0 constant BPF_LD (line 125) | BPF_LD = 0x0 constant BPF_LDX (line 126) | BPF_LDX = 0x1 constant BPF_LEN (line 127) | BPF_LEN = 0x80 constant BPF_LSH (line 128) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 129) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 130) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 131) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 132) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 133) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 134) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 135) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 136) | BPF_MISC = 0x7 constant BPF_MSH (line 137) | BPF_MSH = 0xa0 constant BPF_MUL (line 138) | BPF_MUL = 0x20 constant BPF_NEG (line 139) | BPF_NEG = 0x80 constant BPF_OR (line 140) | BPF_OR = 0x40 constant BPF_RELEASE (line 141) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 142) | BPF_RET = 0x6 constant BPF_RSH (line 143) | BPF_RSH = 0x70 constant BPF_ST (line 144) | BPF_ST = 0x2 constant BPF_STX (line 145) | BPF_STX = 0x3 constant BPF_SUB (line 146) | BPF_SUB = 0x10 constant BPF_TAX (line 147) | BPF_TAX = 0x0 constant BPF_TXA (line 148) | BPF_TXA = 0x80 constant BPF_W (line 149) | BPF_W = 0x0 constant BPF_X (line 150) | BPF_X = 0x8 constant BRKINT (line 151) | BRKINT = 0x2 constant CFLUSH (line 152) | CFLUSH = 0xf constant CLOCAL (line 153) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 154) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 155) | CLONE_FILES = 0x400 constant CLONE_FS (line 156) | CLONE_FS = 0x200 constant CLONE_PID (line 157) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 158) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 159) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 160) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 161) | CLONE_VM = 0x100 constant CPUSTATES (line 162) | CPUSTATES = 0x5 constant CP_IDLE (line 163) | CP_IDLE = 0x4 constant CP_INTR (line 164) | CP_INTR = 0x3 constant CP_NICE (line 165) | CP_NICE = 0x1 constant CP_SYS (line 166) | CP_SYS = 0x2 constant CP_USER (line 167) | CP_USER = 0x0 constant CREAD (line 168) | CREAD = 0x800 constant CRTSCTS (line 169) | CRTSCTS = 0x10000 constant CS5 (line 170) | CS5 = 0x0 constant CS6 (line 171) | CS6 = 0x100 constant CS7 (line 172) | CS7 = 0x200 constant CS8 (line 173) | CS8 = 0x300 constant CSIZE (line 174) | CSIZE = 0x300 constant CSTART (line 175) | CSTART = 0x11 constant CSTATUS (line 176) | CSTATUS = 0x14 constant CSTOP (line 177) | CSTOP = 0x13 constant CSTOPB (line 178) | CSTOPB = 0x400 constant CSUSP (line 179) | CSUSP = 0x1a constant CTL_HW (line 180) | CTL_HW = 0x6 constant CTL_KERN (line 181) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 182) | CTL_MAXNAME = 0xc constant CTL_NET (line 183) | CTL_NET = 0x4 constant CTL_QUERY (line 184) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 185) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 186) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 187) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 188) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 189) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 190) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 191) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 192) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 193) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 194) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 195) | DLT_AURORA = 0x7e constant DLT_AX25 (line 196) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 197) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 198) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 199) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 200) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 201) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 202) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 203) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 204) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 205) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 206) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 207) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 208) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 209) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 210) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 211) | DLT_EN3MB = 0x2 constant DLT_ENC (line 212) | DLT_ENC = 0x6d constant DLT_ERF (line 213) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 214) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 215) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 216) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 217) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 218) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 219) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 220) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 221) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 222) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 223) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 224) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 225) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 226) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 227) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 228) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 229) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 230) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 231) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 232) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 233) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 234) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 235) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 236) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 237) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 238) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 239) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 240) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 241) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 242) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 243) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 244) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 245) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 246) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 247) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 248) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 249) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 250) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 251) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 252) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 253) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 254) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 255) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 256) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 257) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 258) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 259) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 260) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 261) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 262) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 263) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 264) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 265) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 266) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 267) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 268) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 269) | DLT_LAPD = 0xcb constant DLT_LIN (line 270) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 271) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 272) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 273) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 274) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 275) | DLT_LOOP = 0x6c constant DLT_LTALK (line 276) | DLT_LTALK = 0x72 constant DLT_MFR (line 277) | DLT_MFR = 0xb6 constant DLT_MOST (line 278) | DLT_MOST = 0xd3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_NULL (line 283) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 284) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 285) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 286) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 287) | DLT_PPI = 0xc0 constant DLT_PPP (line 288) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 289) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 290) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 291) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 292) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 293) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 294) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 295) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 296) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 297) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 298) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 299) | DLT_RIO = 0x7c constant DLT_SCCP (line 300) | DLT_SCCP = 0x8e constant DLT_SITA (line 301) | DLT_SITA = 0xc4 constant DLT_SLIP (line 302) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 303) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 304) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 305) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 306) | DLT_TZSP = 0x80 constant DLT_USB (line 307) | DLT_USB = 0xba constant DLT_USB_LINUX (line 308) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 309) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 310) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 311) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 312) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 313) | DT_BLK = 0x6 constant DT_CHR (line 314) | DT_CHR = 0x2 constant DT_DIR (line 315) | DT_DIR = 0x4 constant DT_FIFO (line 316) | DT_FIFO = 0x1 constant DT_LNK (line 317) | DT_LNK = 0xa constant DT_REG (line 318) | DT_REG = 0x8 constant DT_SOCK (line 319) | DT_SOCK = 0xc constant DT_UNKNOWN (line 320) | DT_UNKNOWN = 0x0 constant DT_WHT (line 321) | DT_WHT = 0xe constant ECHO (line 322) | ECHO = 0x8 constant ECHOCTL (line 323) | ECHOCTL = 0x40 constant ECHOE (line 324) | ECHOE = 0x2 constant ECHOK (line 325) | ECHOK = 0x4 constant ECHOKE (line 326) | ECHOKE = 0x1 constant ECHONL (line 327) | ECHONL = 0x10 constant ECHOPRT (line 328) | ECHOPRT = 0x20 constant EMUL_LINUX (line 329) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 330) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 331) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 332) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 333) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 334) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 335) | ETHERMIN = 0x2e constant ETHERMTU (line 336) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 337) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 338) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 339) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 340) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 341) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 342) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 343) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 344) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 345) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 346) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 347) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 348) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 349) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 350) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 351) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 352) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 353) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 354) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 355) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 356) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 357) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 358) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 359) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 360) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 361) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 362) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 363) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 364) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 365) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 366) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 367) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 368) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 369) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 370) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 371) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 372) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 373) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 374) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 375) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 376) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 377) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 378) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 379) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 380) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 381) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 382) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 383) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 384) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 385) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 386) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 387) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 388) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 389) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 390) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 391) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 392) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 393) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 394) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 395) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 396) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 397) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 398) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 399) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 400) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 401) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 402) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 403) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 404) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 405) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 406) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 407) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 408) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 409) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 410) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 411) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 412) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 413) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 414) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 415) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 416) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 417) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 418) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 419) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 420) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 421) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 422) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 423) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 424) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 425) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 426) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 427) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 428) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 429) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 430) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 431) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 432) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 433) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 434) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 435) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 436) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 437) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 438) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 439) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 440) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 441) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 442) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 443) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 444) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 445) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 446) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 447) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 448) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 449) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 450) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 451) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 452) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 453) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 454) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 455) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 456) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 457) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 458) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 459) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 460) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 461) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 462) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 463) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 464) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 465) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 466) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 467) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 468) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 469) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 470) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 471) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 472) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 473) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 474) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 475) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 476) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 477) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 478) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 479) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 480) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 481) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 482) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 483) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 484) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 485) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 486) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 487) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 488) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 489) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 490) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 491) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 492) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 493) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 494) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 495) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 496) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 497) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 498) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 499) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 500) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 501) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 502) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 503) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 504) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 505) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 506) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 507) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 508) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 509) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 510) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 511) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 512) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 513) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 514) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 515) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 516) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 517) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 518) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 519) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 520) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 521) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 522) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 523) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 524) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 525) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 526) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 527) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 528) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 529) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 530) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 531) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 532) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 533) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 534) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 535) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 536) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 537) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 538) | EVFILT_WRITE = 0x1 constant EV_ADD (line 539) | EV_ADD = 0x1 constant EV_CLEAR (line 540) | EV_CLEAR = 0x20 constant EV_DELETE (line 541) | EV_DELETE = 0x2 constant EV_DISABLE (line 542) | EV_DISABLE = 0x8 constant EV_ENABLE (line 543) | EV_ENABLE = 0x4 constant EV_EOF (line 544) | EV_EOF = 0x8000 constant EV_ERROR (line 545) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 546) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 547) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 548) | EV_SYSFLAGS = 0xf000 constant EXTA (line 549) | EXTA = 0x4b00 constant EXTATTR_CMD_START (line 550) | EXTATTR_CMD_START = 0x1 constant EXTATTR_CMD_STOP (line 551) | EXTATTR_CMD_STOP = 0x2 constant EXTATTR_NAMESPACE_SYSTEM (line 552) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 553) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 554) | EXTB = 0x9600 constant EXTPROC (line 555) | EXTPROC = 0x800 constant FD_CLOEXEC (line 556) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 557) | FD_SETSIZE = 0x100 constant FLUSHO (line 558) | FLUSHO = 0x800000 constant F_CLOSEM (line 559) | F_CLOSEM = 0xa constant F_DUPFD (line 560) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 561) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 562) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 563) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 564) | F_FSIN = 0x10000000 constant F_FSINOUT (line 565) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 566) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 567) | F_FSPRIV = 0x8000 constant F_FSVOID (line 568) | F_FSVOID = 0x40000000 constant F_GETFD (line 569) | F_GETFD = 0x1 constant F_GETFL (line 570) | F_GETFL = 0x3 constant F_GETLK (line 571) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 572) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 573) | F_GETOWN = 0x5 constant F_MAXFD (line 574) | F_MAXFD = 0xb constant F_OK (line 575) | F_OK = 0x0 constant F_PARAM_MASK (line 576) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 577) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 578) | F_RDLCK = 0x1 constant F_SETFD (line 579) | F_SETFD = 0x2 constant F_SETFL (line 580) | F_SETFL = 0x4 constant F_SETLK (line 581) | F_SETLK = 0x8 constant F_SETLKW (line 582) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 583) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 584) | F_SETOWN = 0x6 constant F_UNLCK (line 585) | F_UNLCK = 0x2 constant F_WRLCK (line 586) | F_WRLCK = 0x3 constant HUPCL (line 587) | HUPCL = 0x4000 constant HW_MACHINE (line 588) | HW_MACHINE = 0x1 constant ICANON (line 589) | ICANON = 0x100 constant ICMP6_FILTER (line 590) | ICMP6_FILTER = 0x12 constant ICRNL (line 591) | ICRNL = 0x100 constant IEXTEN (line 592) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 593) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 594) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 595) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 596) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 597) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 598) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 599) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 600) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 601) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 602) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 603) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 604) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 605) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 606) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 607) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 608) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 609) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 610) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 611) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 612) | IFF_UP = 0x1 constant IFNAMSIZ (line 613) | IFNAMSIZ = 0x10 constant IFT_1822 (line 614) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 615) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 616) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 617) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 618) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 619) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 620) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 621) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 622) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 623) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 624) | IFT_ASYNC = 0x54 constant IFT_ATM (line 625) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 626) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 627) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 628) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 629) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 630) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 631) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 632) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 633) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 634) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 635) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 636) | IFT_BSC = 0x53 constant IFT_CARP (line 637) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 638) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 639) | IFT_CEPT = 0x13 constant IFT_CES (line 640) | IFT_CES = 0x85 constant IFT_CHANNEL (line 641) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 642) | IFT_CNR = 0x55 constant IFT_COFFEE (line 643) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 644) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 645) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 646) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 647) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 648) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 649) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 650) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 651) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 652) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 653) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 654) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 655) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 656) | IFT_DS3 = 0x1e constant IFT_DTM (line 657) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 658) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 659) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 660) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 661) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 662) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 663) | IFT_ECONET = 0xce constant IFT_EON (line 664) | IFT_EON = 0x19 constant IFT_EPLRS (line 665) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 666) | IFT_ESCON = 0x49 constant IFT_ETHER (line 667) | IFT_ETHER = 0x6 constant IFT_FAITH (line 668) | IFT_FAITH = 0xf2 constant IFT_FAST (line 669) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 670) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 671) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 672) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 673) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 674) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 675) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 676) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 677) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 678) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 679) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 680) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 681) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 682) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 683) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 684) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 685) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 686) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 687) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 688) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 689) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 690) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 691) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 692) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 693) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 694) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 695) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 696) | IFT_HSSI = 0x2e constant IFT_HY (line 697) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 698) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 699) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 700) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 701) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 702) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 703) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 704) | IFT_IFGSN = 0x91 constant IFT_IMT (line 705) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 706) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 707) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 708) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 709) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 710) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 711) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 712) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 713) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 714) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 715) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 716) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 717) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 718) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 719) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 720) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 721) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 722) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 723) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 724) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 725) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 726) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 727) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 728) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 729) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 730) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 731) | IFT_LAPB = 0x10 constant IFT_LAPD (line 732) | IFT_LAPD = 0x4d constant IFT_LAPF (line 733) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 734) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 735) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 736) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 737) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 738) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 739) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 740) | IFT_MODEM = 0x30 constant IFT_MPC (line 741) | IFT_MPC = 0x71 constant IFT_MPLS (line 742) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 743) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 744) | IFT_MSDSL = 0x8f constant IFT_MVL (line 745) | IFT_MVL = 0xbf constant IFT_MYRINET (line 746) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 747) | IFT_NFAS = 0xaf constant IFT_NSIP (line 748) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 749) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 750) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 751) | IFT_OTHER = 0x1 constant IFT_P10 (line 752) | IFT_P10 = 0xc constant IFT_P80 (line 753) | IFT_P80 = 0xd constant IFT_PARA (line 754) | IFT_PARA = 0x22 constant IFT_PFLOG (line 755) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 756) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 757) | IFT_PLC = 0xae constant IFT_PON155 (line 758) | IFT_PON155 = 0xcf constant IFT_PON622 (line 759) | IFT_PON622 = 0xd0 constant IFT_POS (line 760) | IFT_POS = 0xab constant IFT_PPP (line 761) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 762) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 763) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 764) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 765) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 766) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 767) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 768) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 769) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 770) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 771) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 772) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 773) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 774) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 775) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 776) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 777) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 778) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 779) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 780) | IFT_RS232 = 0x21 constant IFT_RSRB (line 781) | IFT_RSRB = 0x4f constant IFT_SDLC (line 782) | IFT_SDLC = 0x11 constant IFT_SDSL (line 783) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 784) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 785) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 786) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 787) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 788) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 789) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 790) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 791) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 792) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 793) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 794) | IFT_SONETVT = 0x33 constant IFT_SRP (line 795) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 796) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 797) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 798) | IFT_STARLAN = 0xb constant IFT_STF (line 799) | IFT_STF = 0xd7 constant IFT_T1 (line 800) | IFT_T1 = 0x12 constant IFT_TDLC (line 801) | IFT_TDLC = 0x74 constant IFT_TELINK (line 802) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 803) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 804) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 805) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 806) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 807) | IFT_ULTRA = 0x1d constant IFT_USB (line 808) | IFT_USB = 0xa0 constant IFT_V11 (line 809) | IFT_V11 = 0x40 constant IFT_V35 (line 810) | IFT_V35 = 0x2d constant IFT_V36 (line 811) | IFT_V36 = 0x41 constant IFT_V37 (line 812) | IFT_V37 = 0x78 constant IFT_VDSL (line 813) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 814) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 815) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 816) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 817) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 818) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 819) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 820) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 821) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 822) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 823) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 824) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 825) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 826) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 827) | IFT_X213 = 0x5d constant IFT_X25 (line 828) | IFT_X25 = 0x5 constant IFT_X25DDN (line 829) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 830) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 831) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 832) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 833) | IFT_XETHER = 0x1a constant IGNBRK (line 834) | IGNBRK = 0x1 constant IGNCR (line 835) | IGNCR = 0x80 constant IGNPAR (line 836) | IGNPAR = 0x4 constant IMAXBEL (line 837) | IMAXBEL = 0x2000 constant INLCR (line 838) | INLCR = 0x40 constant INPCK (line 839) | INPCK = 0x10 constant IN_CLASSA_HOST (line 840) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 841) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 842) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 843) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 844) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 845) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 846) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 847) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 848) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 849) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 850) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 851) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 852) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 853) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 854) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 855) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 856) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 857) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 858) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 859) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 860) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 861) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 862) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 863) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 864) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 865) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 866) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 867) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 868) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 869) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 870) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 871) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 872) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 873) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 874) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 875) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 876) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 877) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 878) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 879) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 880) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 881) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 882) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 883) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 884) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 885) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 886) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 887) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 888) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 889) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 890) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 891) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 892) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 893) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 894) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 895) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 896) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 897) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 898) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 899) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 900) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 901) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 902) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 903) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 904) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 905) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 906) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 907) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 908) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 909) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 910) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 911) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 912) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 913) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 914) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 915) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 916) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 917) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 918) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 919) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 920) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 921) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 922) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 923) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 924) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 925) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 926) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 927) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 928) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 929) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 930) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 931) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 932) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 933) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 934) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 935) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 936) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 937) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 938) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 939) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 940) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 941) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 942) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 943) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 944) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 945) | IP_EF = 0x8000 constant IP_ERRORMTU (line 946) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 947) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 948) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 949) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 950) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 951) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 952) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 953) | IP_MINTTL = 0x18 constant IP_MSS (line 954) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 955) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 956) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 957) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 958) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 959) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 960) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 961) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 962) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 963) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 964) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 965) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 966) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 967) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 968) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 969) | IP_RETOPTS = 0x8 constant IP_RF (line 970) | IP_RF = 0x8000 constant IP_TOS (line 971) | IP_TOS = 0x3 constant IP_TTL (line 972) | IP_TTL = 0x4 constant ISIG (line 973) | ISIG = 0x80 constant ISTRIP (line 974) | ISTRIP = 0x20 constant IXANY (line 975) | IXANY = 0x800 constant IXOFF (line 976) | IXOFF = 0x400 constant IXON (line 977) | IXON = 0x200 constant KERN_HOSTNAME (line 978) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 979) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 980) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 981) | KERN_VERSION = 0x4 constant LOCK_EX (line 982) | LOCK_EX = 0x2 constant LOCK_NB (line 983) | LOCK_NB = 0x4 constant LOCK_SH (line 984) | LOCK_SH = 0x1 constant LOCK_UN (line 985) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 986) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 987) | MADV_FREE = 0x6 constant MADV_NORMAL (line 988) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 989) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 990) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 991) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 992) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 993) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 994) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 995) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 996) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 997) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 998) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 999) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1000) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1001) | MAP_ANON = 0x1000 constant MAP_FILE (line 1002) | MAP_FILE = 0x0 constant MAP_FIXED (line 1003) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 1004) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 1005) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 1006) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 1007) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 1008) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 1009) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1010) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 1011) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 1012) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1013) | MAP_RENAME = 0x20 constant MAP_SHARED (line 1014) | MAP_SHARED = 0x1 constant MAP_STACK (line 1015) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 1016) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 1017) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 1018) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1019) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 1020) | MNT_ASYNC = 0x40 constant MNT_BASIC_FLAGS (line 1021) | MNT_BASIC_FLAGS = 0xe782807f constant MNT_DEFEXPORTED (line 1022) | MNT_DEFEXPORTED = 0x200 constant MNT_DISCARD (line 1023) | MNT_DISCARD = 0x800000 constant MNT_EXKERB (line 1024) | MNT_EXKERB = 0x800 constant MNT_EXNORESPORT (line 1025) | MNT_EXNORESPORT = 0x8000000 constant MNT_EXPORTANON (line 1026) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1027) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1028) | MNT_EXPUBLIC = 0x10000000 constant MNT_EXRDONLY (line 1029) | MNT_EXRDONLY = 0x80 constant MNT_EXTATTR (line 1030) | MNT_EXTATTR = 0x1000000 constant MNT_FORCE (line 1031) | MNT_FORCE = 0x80000 constant MNT_GETARGS (line 1032) | MNT_GETARGS = 0x400000 constant MNT_IGNORE (line 1033) | MNT_IGNORE = 0x100000 constant MNT_LAZY (line 1034) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1035) | MNT_LOCAL = 0x1000 constant MNT_LOG (line 1036) | MNT_LOG = 0x2000000 constant MNT_NOATIME (line 1037) | MNT_NOATIME = 0x4000000 constant MNT_NOCOREDUMP (line 1038) | MNT_NOCOREDUMP = 0x8000 constant MNT_NODEV (line 1039) | MNT_NODEV = 0x10 constant MNT_NODEVMTIME (line 1040) | MNT_NODEVMTIME = 0x40000000 constant MNT_NOEXEC (line 1041) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 1042) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 1043) | MNT_NOWAIT = 0x2 constant MNT_OP_FLAGS (line 1044) | MNT_OP_FLAGS = 0x4d0000 constant MNT_QUOTA (line 1045) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1046) | MNT_RDONLY = 0x1 constant MNT_RELATIME (line 1047) | MNT_RELATIME = 0x20000 constant MNT_RELOAD (line 1048) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1049) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 1050) | MNT_SOFTDEP = 0x80000000 constant MNT_SYMPERM (line 1051) | MNT_SYMPERM = 0x20000000 constant MNT_SYNCHRONOUS (line 1052) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1053) | MNT_UNION = 0x20 constant MNT_UPDATE (line 1054) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1055) | MNT_VISFLAGMASK = 0xff90ffff constant MNT_WAIT (line 1056) | MNT_WAIT = 0x1 constant MSG_BCAST (line 1057) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1058) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1059) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1060) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1061) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1062) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1063) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1064) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1065) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1066) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1067) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1068) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1069) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1070) | MSG_OOB = 0x1 constant MSG_PEEK (line 1071) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1072) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1073) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1074) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1075) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1076) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1077) | MS_SYNC = 0x4 constant NAME_MAX (line 1078) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1079) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1080) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1081) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1082) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1083) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1084) | NET_RT_OOIFLIST = 0x3 constant NFDBITS (line 1085) | NFDBITS = 0x20 constant NOFLSH (line 1086) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1087) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1088) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1089) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1090) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1091) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1092) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1093) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1094) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1095) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1096) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1097) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1098) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1099) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1100) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1101) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1102) | NOTE_WRITE = 0x2 constant OCRNL (line 1103) | OCRNL = 0x10 constant OFIOGETBMAP (line 1104) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1105) | ONLCR = 0x2 constant ONLRET (line 1106) | ONLRET = 0x40 constant ONOCR (line 1107) | ONOCR = 0x20 constant ONOEOT (line 1108) | ONOEOT = 0x8 constant OPOST (line 1109) | OPOST = 0x1 constant O_ACCMODE (line 1110) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1111) | O_ALT_IO = 0x40000 constant O_APPEND (line 1112) | O_APPEND = 0x8 constant O_ASYNC (line 1113) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1114) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1115) | O_CREAT = 0x200 constant O_DIRECT (line 1116) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1117) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1118) | O_DSYNC = 0x10000 constant O_EXCL (line 1119) | O_EXCL = 0x800 constant O_EXLOCK (line 1120) | O_EXLOCK = 0x20 constant O_FSYNC (line 1121) | O_FSYNC = 0x80 constant O_NDELAY (line 1122) | O_NDELAY = 0x4 constant O_NOCTTY (line 1123) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1124) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1125) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1126) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1127) | O_RDONLY = 0x0 constant O_RDWR (line 1128) | O_RDWR = 0x2 constant O_RSYNC (line 1129) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1130) | O_SHLOCK = 0x10 constant O_SYNC (line 1131) | O_SYNC = 0x80 constant O_TRUNC (line 1132) | O_TRUNC = 0x400 constant O_WRONLY (line 1133) | O_WRONLY = 0x1 constant PARENB (line 1134) | PARENB = 0x1000 constant PARMRK (line 1135) | PARMRK = 0x8 constant PARODD (line 1136) | PARODD = 0x2000 constant PENDIN (line 1137) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1138) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1139) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1140) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1141) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1142) | PROT_EXEC = 0x4 constant PROT_NONE (line 1143) | PROT_NONE = 0x0 constant PROT_READ (line 1144) | PROT_READ = 0x1 constant PROT_WRITE (line 1145) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1146) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1147) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1148) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1149) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1150) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1151) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1152) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1153) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1154) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1155) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1156) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1157) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1158) | RTAX_BRD = 0x7 constant RTAX_DST (line 1159) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1160) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1161) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1162) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1163) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1164) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1165) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1166) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1167) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1168) | RTA_BRD = 0x80 constant RTA_DST (line 1169) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1170) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1171) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1172) | RTA_IFA = 0x20 constant RTA_IFP (line 1173) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1174) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1175) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1176) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1177) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1178) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1179) | RTF_CLONING = 0x100 constant RTF_DONE (line 1180) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1181) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1182) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1183) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1184) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1185) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1186) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1187) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1188) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1189) | RTF_REJECT = 0x8 constant RTF_SRC (line 1190) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1191) | RTF_STATIC = 0x800 constant RTF_UP (line 1192) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1193) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1194) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1195) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1196) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1197) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1198) | RTM_DELETE = 0x2 constant RTM_GET (line 1199) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1200) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1201) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1202) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1203) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1204) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1205) | RTM_LOSING = 0x5 constant RTM_MISS (line 1206) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1207) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1208) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1209) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1210) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1211) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1212) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1213) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1214) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1215) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1216) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1217) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1218) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1219) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1220) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1221) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1222) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1223) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1224) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1225) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1226) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1227) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1228) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1229) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1230) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1231) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1232) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1233) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1234) | SIOCADDRT = 0x8038720a constant SIOCAIFADDR (line 1235) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1236) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1237) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1238) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1239) | SIOCDELRT = 0x8038720b constant SIOCDIFADDR (line 1240) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1241) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1242) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1243) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETPFSYNC (line 1244) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1245) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1246) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGHIWAT (line 1247) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1248) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1249) | SIOCGIFADDRPREF = 0xc0986920 constant SIOCGIFALIAS (line 1250) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1251) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1252) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1253) | SIOCGIFCONF = 0xc0106926 constant SIOCGIFDATA (line 1254) | SIOCGIFDATA = 0xc0986985 constant SIOCGIFDLT (line 1255) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1256) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1257) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1258) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1259) | SIOCGIFMEDIA = 0xc0306936 constant SIOCGIFMETRIC (line 1260) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1261) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1262) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1263) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1264) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1265) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1266) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1267) | SIOCGLINKSTR = 0xc0286987 constant SIOCGLOWAT (line 1268) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1269) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1270) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1271) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1272) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1273) | SIOCIFGCLONERS = 0xc0106978 constant SIOCINITIFADDR (line 1274) | SIOCINITIFADDR = 0xc0706984 constant SIOCSDRVSPEC (line 1275) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETPFSYNC (line 1276) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1277) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1278) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1279) | SIOCSIFADDRPREF = 0x8098691f constant SIOCSIFBRDADDR (line 1280) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1281) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1282) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1283) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1284) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1285) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1286) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1287) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1288) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1289) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1290) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1291) | SIOCSLINKSTR = 0x80286988 constant SIOCSLOWAT (line 1292) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1293) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1294) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1295) | SIOCZIFDATA = 0xc0986986 constant SOCK_CLOEXEC (line 1296) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1297) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1298) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1299) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1300) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1301) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1302) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1303) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1304) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1305) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1306) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1307) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1308) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1309) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1310) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1311) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1312) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1313) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1314) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1315) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1316) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1317) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1318) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1319) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1320) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1321) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1322) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1323) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1324) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1325) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1326) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1327) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1328) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1329) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1330) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1331) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1332) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1333) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1334) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1335) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1336) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1337) | S_IEXEC = 0x40 constant S_IFBLK (line 1338) | S_IFBLK = 0x6000 constant S_IFCHR (line 1339) | S_IFCHR = 0x2000 constant S_IFDIR (line 1340) | S_IFDIR = 0x4000 constant S_IFIFO (line 1341) | S_IFIFO = 0x1000 constant S_IFLNK (line 1342) | S_IFLNK = 0xa000 constant S_IFMT (line 1343) | S_IFMT = 0xf000 constant S_IFREG (line 1344) | S_IFREG = 0x8000 constant S_IFSOCK (line 1345) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1346) | S_IFWHT = 0xe000 constant S_IREAD (line 1347) | S_IREAD = 0x100 constant S_IRGRP (line 1348) | S_IRGRP = 0x20 constant S_IROTH (line 1349) | S_IROTH = 0x4 constant S_IRUSR (line 1350) | S_IRUSR = 0x100 constant S_IRWXG (line 1351) | S_IRWXG = 0x38 constant S_IRWXO (line 1352) | S_IRWXO = 0x7 constant S_IRWXU (line 1353) | S_IRWXU = 0x1c0 constant S_ISGID (line 1354) | S_ISGID = 0x400 constant S_ISTXT (line 1355) | S_ISTXT = 0x200 constant S_ISUID (line 1356) | S_ISUID = 0x800 constant S_ISVTX (line 1357) | S_ISVTX = 0x200 constant S_IWGRP (line 1358) | S_IWGRP = 0x10 constant S_IWOTH (line 1359) | S_IWOTH = 0x2 constant S_IWRITE (line 1360) | S_IWRITE = 0x80 constant S_IWUSR (line 1361) | S_IWUSR = 0x80 constant S_IXGRP (line 1362) | S_IXGRP = 0x8 constant S_IXOTH (line 1363) | S_IXOTH = 0x1 constant S_IXUSR (line 1364) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1365) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1366) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1367) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1368) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1369) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1370) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1371) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1372) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1373) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1374) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1375) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1376) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1377) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1378) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1379) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1380) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1381) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1382) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1383) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1384) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1385) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1386) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1387) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1388) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1389) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1390) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1391) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1392) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1393) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1394) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1395) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1396) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1397) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1398) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1399) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1400) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1401) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1402) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1403) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1404) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1405) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1406) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1407) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1408) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1409) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1410) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1411) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1412) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1413) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1414) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1415) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1416) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1417) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1418) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1419) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1420) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1421) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1422) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1423) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1424) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1425) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1426) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1427) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1428) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1429) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1430) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1431) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1432) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1433) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1434) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1435) | TIOCRCVFRAME = 0x80087445 constant TIOCREMOTE (line 1436) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1437) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1438) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1439) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1440) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1441) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1442) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1443) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1444) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1445) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1446) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1447) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1448) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1449) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1450) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1451) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1452) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1453) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1454) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1455) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1456) | TIOCXMTFRAME = 0x80087444 constant TOSTOP (line 1457) | TOSTOP = 0x400000 constant VDISCARD (line 1458) | VDISCARD = 0xf constant VDSUSP (line 1459) | VDSUSP = 0xb constant VEOF (line 1460) | VEOF = 0x0 constant VEOL (line 1461) | VEOL = 0x1 constant VEOL2 (line 1462) | VEOL2 = 0x2 constant VERASE (line 1463) | VERASE = 0x3 constant VINTR (line 1464) | VINTR = 0x8 constant VKILL (line 1465) | VKILL = 0x5 constant VLNEXT (line 1466) | VLNEXT = 0xe constant VMIN (line 1467) | VMIN = 0x10 constant VQUIT (line 1468) | VQUIT = 0x9 constant VREPRINT (line 1469) | VREPRINT = 0x6 constant VSTART (line 1470) | VSTART = 0xc constant VSTATUS (line 1471) | VSTATUS = 0x12 constant VSTOP (line 1472) | VSTOP = 0xd constant VSUSP (line 1473) | VSUSP = 0xa constant VTIME (line 1474) | VTIME = 0x11 constant VWERASE (line 1475) | VWERASE = 0x4 constant WALL (line 1476) | WALL = 0x8 constant WALLSIG (line 1477) | WALLSIG = 0x8 constant WALTSIG (line 1478) | WALTSIG = 0x4 constant WCLONE (line 1479) | WCLONE = 0x4 constant WCOREFLAG (line 1480) | WCOREFLAG = 0x80 constant WNOHANG (line 1481) | WNOHANG = 0x1 constant WNOWAIT (line 1482) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1483) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1484) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1485) | WSTOPPED = 0x7f constant WUNTRACED (line 1486) | WUNTRACED = 0x2 constant E2BIG (line 1491) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1492) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1493) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1494) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1495) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1496) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1497) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1498) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1499) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1500) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1501) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1502) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1503) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1504) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1505) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1506) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1507) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1508) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1509) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1510) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1511) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1512) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1513) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1514) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1515) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1516) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1517) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1518) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1519) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1520) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1521) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1522) | EINVAL = syscall.Errno(0x16) constant EIO (line 1523) | EIO = syscall.Errno(0x5) constant EISCONN (line 1524) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1525) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1526) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1527) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1528) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1529) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1530) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1531) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1532) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1533) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1534) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1535) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1536) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1537) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1538) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1539) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1540) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1541) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1542) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1543) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1544) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1545) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1546) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1547) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1548) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1549) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1550) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1551) | ENOSTR = syscall.Errno(0x5b) 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 ENOTSOCK (line 1557) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1558) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1559) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1560) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1561) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1562) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1563) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1564) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1565) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1566) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1567) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1568) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1569) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1570) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1571) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1572) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1573) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1574) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1575) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1576) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1577) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1578) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1579) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1580) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1581) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1582) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1583) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1584) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1585) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1586) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1587) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1588) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1593) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1594) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1595) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1596) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1597) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1598) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1599) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1600) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1601) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1602) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1603) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1604) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1605) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1606) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1607) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1608) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1609) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1610) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1611) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1612) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1613) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1614) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1615) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1616) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1617) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1618) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1619) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1620) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1621) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1622) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1623) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1624) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1625) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x1f 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 = 0x20 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x18 constant AF_IPX (line 32) | AF_IPX = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x1a constant AF_ISO (line 34) | AF_ISO = 0x7 constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x23 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 constant AF_OROUTE (line 42) | AF_OROUTE = 0x11 constant AF_OSI (line 43) | AF_OSI = 0x7 constant AF_PUP (line 44) | AF_PUP = 0x4 constant AF_ROUTE (line 45) | AF_ROUTE = 0x22 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 ARPHRD_ARCNET (line 49) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 54) | ARPHRD_STRIP = 0x17 constant B0 (line 55) | B0 = 0x0 constant B110 (line 56) | B110 = 0x6e constant B115200 (line 57) | B115200 = 0x1c200 constant B1200 (line 58) | B1200 = 0x4b0 constant B134 (line 59) | B134 = 0x86 constant B14400 (line 60) | B14400 = 0x3840 constant B150 (line 61) | B150 = 0x96 constant B1800 (line 62) | B1800 = 0x708 constant B19200 (line 63) | B19200 = 0x4b00 constant B200 (line 64) | B200 = 0xc8 constant B230400 (line 65) | B230400 = 0x38400 constant B2400 (line 66) | B2400 = 0x960 constant B28800 (line 67) | B28800 = 0x7080 constant B300 (line 68) | B300 = 0x12c constant B38400 (line 69) | B38400 = 0x9600 constant B460800 (line 70) | B460800 = 0x70800 constant B4800 (line 71) | B4800 = 0x12c0 constant B50 (line 72) | B50 = 0x32 constant B57600 (line 73) | B57600 = 0xe100 constant B600 (line 74) | B600 = 0x258 constant B7200 (line 75) | B7200 = 0x1c20 constant B75 (line 76) | B75 = 0x4b constant B76800 (line 77) | B76800 = 0x12c00 constant B921600 (line 78) | B921600 = 0xe1000 constant B9600 (line 79) | B9600 = 0x2580 constant BIOCFEEDBACK (line 80) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 81) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 82) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 83) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 84) | BIOCGDLTLIST = 0xc0084277 constant BIOCGETIF (line 85) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 86) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 87) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 88) | BIOCGRTIMEOUT = 0x400c427b constant BIOCGSEESENT (line 89) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 90) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 91) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 92) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 93) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 94) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 95) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 96) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 97) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 98) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 99) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x800c427a constant BIOCSSEESENT (line 101) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 102) | BIOCSTCPF = 0x80084272 constant BIOCSUDPF (line 103) | BIOCSUDPF = 0x80084273 constant BIOCVERSION (line 104) | BIOCVERSION = 0x40044271 constant BPF_A (line 105) | BPF_A = 0x10 constant BPF_ABS (line 106) | BPF_ABS = 0x20 constant BPF_ADD (line 107) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 108) | BPF_ALIGNMENT = 0x4 constant BPF_ALIGNMENT32 (line 109) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 110) | BPF_ALU = 0x4 constant BPF_AND (line 111) | BPF_AND = 0x50 constant BPF_B (line 112) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 113) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 114) | BPF_DIV = 0x30 constant BPF_H (line 115) | BPF_H = 0x8 constant BPF_IMM (line 116) | BPF_IMM = 0x0 constant BPF_IND (line 117) | BPF_IND = 0x40 constant BPF_JA (line 118) | BPF_JA = 0x0 constant BPF_JEQ (line 119) | BPF_JEQ = 0x10 constant BPF_JGE (line 120) | BPF_JGE = 0x30 constant BPF_JGT (line 121) | BPF_JGT = 0x20 constant BPF_JMP (line 122) | BPF_JMP = 0x5 constant BPF_JSET (line 123) | BPF_JSET = 0x40 constant BPF_K (line 124) | BPF_K = 0x0 constant BPF_LD (line 125) | BPF_LD = 0x0 constant BPF_LDX (line 126) | BPF_LDX = 0x1 constant BPF_LEN (line 127) | BPF_LEN = 0x80 constant BPF_LSH (line 128) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 129) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 130) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 131) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 132) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 133) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 134) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 135) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 136) | BPF_MISC = 0x7 constant BPF_MSH (line 137) | BPF_MSH = 0xa0 constant BPF_MUL (line 138) | BPF_MUL = 0x20 constant BPF_NEG (line 139) | BPF_NEG = 0x80 constant BPF_OR (line 140) | BPF_OR = 0x40 constant BPF_RELEASE (line 141) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 142) | BPF_RET = 0x6 constant BPF_RSH (line 143) | BPF_RSH = 0x70 constant BPF_ST (line 144) | BPF_ST = 0x2 constant BPF_STX (line 145) | BPF_STX = 0x3 constant BPF_SUB (line 146) | BPF_SUB = 0x10 constant BPF_TAX (line 147) | BPF_TAX = 0x0 constant BPF_TXA (line 148) | BPF_TXA = 0x80 constant BPF_W (line 149) | BPF_W = 0x0 constant BPF_X (line 150) | BPF_X = 0x8 constant BRKINT (line 151) | BRKINT = 0x2 constant CFLUSH (line 152) | CFLUSH = 0xf constant CLOCAL (line 153) | CLOCAL = 0x8000 constant CPUSTATES (line 154) | CPUSTATES = 0x5 constant CP_IDLE (line 155) | CP_IDLE = 0x4 constant CP_INTR (line 156) | CP_INTR = 0x3 constant CP_NICE (line 157) | CP_NICE = 0x1 constant CP_SYS (line 158) | CP_SYS = 0x2 constant CP_USER (line 159) | CP_USER = 0x0 constant CREAD (line 160) | CREAD = 0x800 constant CRTSCTS (line 161) | CRTSCTS = 0x10000 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_HW (line 172) | CTL_HW = 0x6 constant CTL_KERN (line 173) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 174) | CTL_MAXNAME = 0xc constant CTL_NET (line 175) | CTL_NET = 0x4 constant CTL_QUERY (line 176) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 177) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 178) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 179) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 180) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 181) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 182) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 183) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 184) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 185) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 186) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 187) | DLT_AURORA = 0x7e constant DLT_AX25 (line 188) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 189) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 190) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 191) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 192) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 193) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 194) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 195) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 196) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 197) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 198) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 199) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 200) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 201) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 202) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 203) | DLT_EN3MB = 0x2 constant DLT_ENC (line 204) | DLT_ENC = 0x6d constant DLT_ERF (line 205) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 206) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 207) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 208) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 209) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 210) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 211) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 212) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 213) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 214) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 215) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 216) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 217) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 218) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 219) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 220) | DLT_GSMTAP_UM = 0xd9 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_IEEE802_15_4 (line 230) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 231) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 232) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 233) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 234) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 235) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 236) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 237) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 238) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 239) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 240) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 241) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 242) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 243) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 244) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 245) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 246) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 247) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 248) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 249) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 250) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 251) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 252) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 253) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 254) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 255) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 256) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 257) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 258) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 259) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 260) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 261) | DLT_LAPD = 0xcb constant DLT_LIN (line 262) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 263) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 264) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 265) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 266) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 267) | DLT_LOOP = 0x6c constant DLT_LTALK (line 268) | DLT_LTALK = 0x72 constant DLT_MFR (line 269) | DLT_MFR = 0xb6 constant DLT_MOST (line 270) | DLT_MOST = 0xd3 constant DLT_MPLS (line 271) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 272) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 273) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 274) | DLT_MTP3 = 0x8d constant DLT_NULL (line 275) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 276) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 277) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 278) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 279) | DLT_PPI = 0xc0 constant DLT_PPP (line 280) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 281) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 282) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 283) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 284) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 285) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 286) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 287) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 288) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 289) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 290) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 291) | DLT_RIO = 0x7c constant DLT_SCCP (line 292) | DLT_SCCP = 0x8e constant DLT_SITA (line 293) | DLT_SITA = 0xc4 constant DLT_SLIP (line 294) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 295) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 296) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 297) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 298) | DLT_TZSP = 0x80 constant DLT_USB (line 299) | DLT_USB = 0xba constant DLT_USB_LINUX (line 300) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 301) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 302) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 303) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 304) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 305) | DT_BLK = 0x6 constant DT_CHR (line 306) | DT_CHR = 0x2 constant DT_DIR (line 307) | DT_DIR = 0x4 constant DT_FIFO (line 308) | DT_FIFO = 0x1 constant DT_LNK (line 309) | DT_LNK = 0xa constant DT_REG (line 310) | DT_REG = 0x8 constant DT_SOCK (line 311) | DT_SOCK = 0xc constant DT_UNKNOWN (line 312) | DT_UNKNOWN = 0x0 constant DT_WHT (line 313) | DT_WHT = 0xe constant ECHO (line 314) | ECHO = 0x8 constant ECHOCTL (line 315) | ECHOCTL = 0x40 constant ECHOE (line 316) | ECHOE = 0x2 constant ECHOK (line 317) | ECHOK = 0x4 constant ECHOKE (line 318) | ECHOKE = 0x1 constant ECHONL (line 319) | ECHONL = 0x10 constant ECHOPRT (line 320) | ECHOPRT = 0x20 constant EMUL_LINUX (line 321) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 322) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 323) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 324) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 325) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 326) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 327) | ETHERMIN = 0x2e constant ETHERMTU (line 328) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 329) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 330) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 331) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 332) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 333) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 334) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 335) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 336) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 337) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 338) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 339) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 340) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 341) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 342) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 343) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 344) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 345) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 346) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 347) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 348) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 349) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 350) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 351) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 352) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 353) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 354) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 355) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 356) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 357) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 358) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 359) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 360) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 361) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 362) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 363) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 364) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 365) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 366) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 367) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 368) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 369) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 370) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 371) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 372) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 373) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 374) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 375) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 376) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 377) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 378) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 379) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 380) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 381) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 382) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 383) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 384) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 385) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 386) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 387) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 388) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 389) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 390) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 391) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 392) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 393) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 394) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 395) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 396) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 397) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 398) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 399) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 400) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 401) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 402) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 403) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 404) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 405) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 406) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 407) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 408) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 409) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 410) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 411) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 412) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 413) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 414) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 415) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 416) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 417) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 418) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 419) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 420) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 421) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 422) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 423) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 424) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 425) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 426) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 427) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 428) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 429) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 430) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 431) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 432) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 433) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 434) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 435) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 436) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 437) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 438) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 439) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 440) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 441) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 442) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 443) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 444) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 445) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 446) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 447) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 448) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 449) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 450) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 451) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 452) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 453) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 454) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 455) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 456) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 457) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 458) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 459) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 460) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 461) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 462) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 463) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 464) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 465) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 466) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 467) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 468) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 469) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 470) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 471) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 472) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 473) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 474) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 475) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 476) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 477) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 478) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 479) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 480) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 481) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 482) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 483) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 484) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 485) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 486) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 487) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 488) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 489) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 490) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 491) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 492) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 493) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 494) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 495) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 496) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 497) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 498) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 499) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 500) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 501) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 502) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 503) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 504) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 505) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 506) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 507) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 508) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 509) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 510) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 511) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 512) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 513) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 514) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 515) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 516) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 517) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 518) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 519) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 520) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 521) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 522) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 523) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 524) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 525) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 526) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 527) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 528) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 529) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 530) | EVFILT_WRITE = 0x1 constant EV_ADD (line 531) | EV_ADD = 0x1 constant EV_CLEAR (line 532) | EV_CLEAR = 0x20 constant EV_DELETE (line 533) | EV_DELETE = 0x2 constant EV_DISABLE (line 534) | EV_DISABLE = 0x8 constant EV_ENABLE (line 535) | EV_ENABLE = 0x4 constant EV_EOF (line 536) | EV_EOF = 0x8000 constant EV_ERROR (line 537) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 538) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 539) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 540) | EV_SYSFLAGS = 0xf000 constant EXTA (line 541) | EXTA = 0x4b00 constant EXTATTR_CMD_START (line 542) | EXTATTR_CMD_START = 0x1 constant EXTATTR_CMD_STOP (line 543) | EXTATTR_CMD_STOP = 0x2 constant EXTATTR_NAMESPACE_SYSTEM (line 544) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 545) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 546) | EXTB = 0x9600 constant EXTPROC (line 547) | EXTPROC = 0x800 constant FD_CLOEXEC (line 548) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 549) | FD_SETSIZE = 0x100 constant FLUSHO (line 550) | FLUSHO = 0x800000 constant F_CLOSEM (line 551) | F_CLOSEM = 0xa constant F_DUPFD (line 552) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 553) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 554) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 555) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 556) | F_FSIN = 0x10000000 constant F_FSINOUT (line 557) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 558) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 559) | F_FSPRIV = 0x8000 constant F_FSVOID (line 560) | F_FSVOID = 0x40000000 constant F_GETFD (line 561) | F_GETFD = 0x1 constant F_GETFL (line 562) | F_GETFL = 0x3 constant F_GETLK (line 563) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 564) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 565) | F_GETOWN = 0x5 constant F_MAXFD (line 566) | F_MAXFD = 0xb constant F_OK (line 567) | F_OK = 0x0 constant F_PARAM_MASK (line 568) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 569) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 570) | F_RDLCK = 0x1 constant F_SETFD (line 571) | F_SETFD = 0x2 constant F_SETFL (line 572) | F_SETFL = 0x4 constant F_SETLK (line 573) | F_SETLK = 0x8 constant F_SETLKW (line 574) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 575) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 576) | F_SETOWN = 0x6 constant F_UNLCK (line 577) | F_UNLCK = 0x2 constant F_WRLCK (line 578) | F_WRLCK = 0x3 constant HUPCL (line 579) | HUPCL = 0x4000 constant HW_MACHINE (line 580) | HW_MACHINE = 0x1 constant ICANON (line 581) | ICANON = 0x100 constant ICMP6_FILTER (line 582) | ICMP6_FILTER = 0x12 constant ICRNL (line 583) | ICRNL = 0x100 constant IEXTEN (line 584) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 585) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 586) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 587) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 588) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 589) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 590) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 591) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 592) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 593) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 594) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 595) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 596) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 597) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 598) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 599) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 600) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 601) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 602) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 603) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 604) | IFF_UP = 0x1 constant IFNAMSIZ (line 605) | IFNAMSIZ = 0x10 constant IFT_1822 (line 606) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 607) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 608) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 609) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 610) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 611) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 612) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 613) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 614) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 615) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 616) | IFT_ASYNC = 0x54 constant IFT_ATM (line 617) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 618) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 619) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 620) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 621) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 622) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 623) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 624) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 625) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 626) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 627) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 628) | IFT_BSC = 0x53 constant IFT_CARP (line 629) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 630) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 631) | IFT_CEPT = 0x13 constant IFT_CES (line 632) | IFT_CES = 0x85 constant IFT_CHANNEL (line 633) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 634) | IFT_CNR = 0x55 constant IFT_COFFEE (line 635) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 636) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 637) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 638) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 639) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 640) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 641) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 642) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 643) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 644) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 645) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 646) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 647) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 648) | IFT_DS3 = 0x1e constant IFT_DTM (line 649) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 650) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 651) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 652) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 653) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 654) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 655) | IFT_ECONET = 0xce constant IFT_EON (line 656) | IFT_EON = 0x19 constant IFT_EPLRS (line 657) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 658) | IFT_ESCON = 0x49 constant IFT_ETHER (line 659) | IFT_ETHER = 0x6 constant IFT_FAITH (line 660) | IFT_FAITH = 0xf2 constant IFT_FAST (line 661) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 662) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 663) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 664) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 665) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 666) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 667) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 668) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 669) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 670) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 671) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 672) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 673) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 674) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 675) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 676) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 677) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 678) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 679) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 680) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 681) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 682) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 683) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 684) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 685) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 686) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 687) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 688) | IFT_HSSI = 0x2e constant IFT_HY (line 689) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 690) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 691) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 692) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 693) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 694) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 695) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 696) | IFT_IFGSN = 0x91 constant IFT_IMT (line 697) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 698) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 699) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 700) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 701) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 702) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 703) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 704) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 705) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 706) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 707) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 708) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 709) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 710) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 711) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 712) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 713) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 714) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 715) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 716) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 717) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 718) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 719) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 720) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 721) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 722) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 723) | IFT_LAPB = 0x10 constant IFT_LAPD (line 724) | IFT_LAPD = 0x4d constant IFT_LAPF (line 725) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 726) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 727) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 728) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 729) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 730) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 731) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 732) | IFT_MODEM = 0x30 constant IFT_MPC (line 733) | IFT_MPC = 0x71 constant IFT_MPLS (line 734) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 735) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 736) | IFT_MSDSL = 0x8f constant IFT_MVL (line 737) | IFT_MVL = 0xbf constant IFT_MYRINET (line 738) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 739) | IFT_NFAS = 0xaf constant IFT_NSIP (line 740) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 741) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 742) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 743) | IFT_OTHER = 0x1 constant IFT_P10 (line 744) | IFT_P10 = 0xc constant IFT_P80 (line 745) | IFT_P80 = 0xd constant IFT_PARA (line 746) | IFT_PARA = 0x22 constant IFT_PFLOG (line 747) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 748) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 749) | IFT_PLC = 0xae constant IFT_PON155 (line 750) | IFT_PON155 = 0xcf constant IFT_PON622 (line 751) | IFT_PON622 = 0xd0 constant IFT_POS (line 752) | IFT_POS = 0xab constant IFT_PPP (line 753) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 754) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 755) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 756) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 757) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 758) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 759) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 760) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 761) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 762) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 763) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 764) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 765) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 766) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 767) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 768) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 769) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 770) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 771) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 772) | IFT_RS232 = 0x21 constant IFT_RSRB (line 773) | IFT_RSRB = 0x4f constant IFT_SDLC (line 774) | IFT_SDLC = 0x11 constant IFT_SDSL (line 775) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 776) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 777) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 778) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 779) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 780) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 781) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 782) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 783) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 784) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 785) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 786) | IFT_SONETVT = 0x33 constant IFT_SRP (line 787) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 788) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 789) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 790) | IFT_STARLAN = 0xb constant IFT_STF (line 791) | IFT_STF = 0xd7 constant IFT_T1 (line 792) | IFT_T1 = 0x12 constant IFT_TDLC (line 793) | IFT_TDLC = 0x74 constant IFT_TELINK (line 794) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 795) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 796) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 797) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 798) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 799) | IFT_ULTRA = 0x1d constant IFT_USB (line 800) | IFT_USB = 0xa0 constant IFT_V11 (line 801) | IFT_V11 = 0x40 constant IFT_V35 (line 802) | IFT_V35 = 0x2d constant IFT_V36 (line 803) | IFT_V36 = 0x41 constant IFT_V37 (line 804) | IFT_V37 = 0x78 constant IFT_VDSL (line 805) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 806) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 807) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 808) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 809) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 810) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 811) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 812) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 813) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 814) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 815) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 816) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 817) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 818) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 819) | IFT_X213 = 0x5d constant IFT_X25 (line 820) | IFT_X25 = 0x5 constant IFT_X25DDN (line 821) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 822) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 823) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 824) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 825) | IFT_XETHER = 0x1a constant IGNBRK (line 826) | IGNBRK = 0x1 constant IGNCR (line 827) | IGNCR = 0x80 constant IGNPAR (line 828) | IGNPAR = 0x4 constant IMAXBEL (line 829) | IMAXBEL = 0x2000 constant INLCR (line 830) | INLCR = 0x40 constant INPCK (line 831) | INPCK = 0x10 constant IN_CLASSA_HOST (line 832) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 833) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 834) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 835) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 836) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 837) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 838) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 839) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 840) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 841) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 842) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 843) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 844) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 845) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 846) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 847) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 848) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 849) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 850) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 851) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 852) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 853) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 854) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 855) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 856) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 857) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 858) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 859) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 860) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 861) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 862) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 863) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 864) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 865) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 866) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 867) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 868) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 869) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 870) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 871) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 872) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 873) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 874) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 875) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 876) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 877) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 878) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 879) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 880) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 881) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 882) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 883) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 884) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 885) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 886) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 887) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 888) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 889) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 890) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 891) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 892) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 893) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 894) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 895) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 896) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 897) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 898) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 899) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 900) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 901) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 902) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 903) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 904) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 905) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 906) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 907) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 908) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 909) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 910) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 911) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 912) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 913) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 914) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 915) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 916) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 917) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 918) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 919) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 920) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 921) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 922) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 923) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 924) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 925) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 926) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 927) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 928) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 929) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 930) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 931) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 932) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 933) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 934) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 935) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 936) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 937) | IP_EF = 0x8000 constant IP_ERRORMTU (line 938) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 939) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 940) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 941) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 942) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 943) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 944) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 945) | IP_MINTTL = 0x18 constant IP_MSS (line 946) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 947) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 948) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 949) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 950) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 951) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 952) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 953) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 954) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 955) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 956) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 957) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 958) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 959) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 960) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 961) | IP_RETOPTS = 0x8 constant IP_RF (line 962) | IP_RF = 0x8000 constant IP_TOS (line 963) | IP_TOS = 0x3 constant IP_TTL (line 964) | IP_TTL = 0x4 constant ISIG (line 965) | ISIG = 0x80 constant ISTRIP (line 966) | ISTRIP = 0x20 constant IXANY (line 967) | IXANY = 0x800 constant IXOFF (line 968) | IXOFF = 0x400 constant IXON (line 969) | IXON = 0x200 constant KERN_HOSTNAME (line 970) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 971) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 972) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 973) | KERN_VERSION = 0x4 constant LOCK_EX (line 974) | LOCK_EX = 0x2 constant LOCK_NB (line 975) | LOCK_NB = 0x4 constant LOCK_SH (line 976) | LOCK_SH = 0x1 constant LOCK_UN (line 977) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 978) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 979) | MADV_FREE = 0x6 constant MADV_NORMAL (line 980) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 981) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 982) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 983) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 984) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 985) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 986) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 987) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 988) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 989) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 990) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 991) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 992) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 993) | MAP_ANON = 0x1000 constant MAP_FILE (line 994) | MAP_FILE = 0x0 constant MAP_FIXED (line 995) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 996) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 997) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 998) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 999) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 1000) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 1001) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1002) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 1003) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 1004) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1005) | MAP_RENAME = 0x20 constant MAP_SHARED (line 1006) | MAP_SHARED = 0x1 constant MAP_STACK (line 1007) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 1008) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 1009) | MAP_WIRED = 0x800 constant MNT_ASYNC (line 1010) | MNT_ASYNC = 0x40 constant MNT_BASIC_FLAGS (line 1011) | MNT_BASIC_FLAGS = 0xe782807f constant MNT_DEFEXPORTED (line 1012) | MNT_DEFEXPORTED = 0x200 constant MNT_DISCARD (line 1013) | MNT_DISCARD = 0x800000 constant MNT_EXKERB (line 1014) | MNT_EXKERB = 0x800 constant MNT_EXNORESPORT (line 1015) | MNT_EXNORESPORT = 0x8000000 constant MNT_EXPORTANON (line 1016) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1017) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1018) | MNT_EXPUBLIC = 0x10000000 constant MNT_EXRDONLY (line 1019) | MNT_EXRDONLY = 0x80 constant MNT_EXTATTR (line 1020) | MNT_EXTATTR = 0x1000000 constant MNT_FORCE (line 1021) | MNT_FORCE = 0x80000 constant MNT_GETARGS (line 1022) | MNT_GETARGS = 0x400000 constant MNT_IGNORE (line 1023) | MNT_IGNORE = 0x100000 constant MNT_LAZY (line 1024) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1025) | MNT_LOCAL = 0x1000 constant MNT_LOG (line 1026) | MNT_LOG = 0x2000000 constant MNT_NOATIME (line 1027) | MNT_NOATIME = 0x4000000 constant MNT_NOCOREDUMP (line 1028) | MNT_NOCOREDUMP = 0x8000 constant MNT_NODEV (line 1029) | MNT_NODEV = 0x10 constant MNT_NODEVMTIME (line 1030) | MNT_NODEVMTIME = 0x40000000 constant MNT_NOEXEC (line 1031) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 1032) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 1033) | MNT_NOWAIT = 0x2 constant MNT_OP_FLAGS (line 1034) | MNT_OP_FLAGS = 0x4d0000 constant MNT_QUOTA (line 1035) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1036) | MNT_RDONLY = 0x1 constant MNT_RELATIME (line 1037) | MNT_RELATIME = 0x20000 constant MNT_RELOAD (line 1038) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1039) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 1040) | MNT_SOFTDEP = 0x80000000 constant MNT_SYMPERM (line 1041) | MNT_SYMPERM = 0x20000000 constant MNT_SYNCHRONOUS (line 1042) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1043) | MNT_UNION = 0x20 constant MNT_UPDATE (line 1044) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1045) | MNT_VISFLAGMASK = 0xff90ffff constant MNT_WAIT (line 1046) | MNT_WAIT = 0x1 constant MSG_BCAST (line 1047) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1048) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1049) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1050) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1051) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1052) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1053) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1054) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1055) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1056) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1057) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1058) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1059) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1060) | MSG_OOB = 0x1 constant MSG_PEEK (line 1061) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1062) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1063) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1064) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1065) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1066) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1067) | MS_SYNC = 0x4 constant NAME_MAX (line 1068) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1069) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1070) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1071) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1072) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1073) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1074) | NET_RT_OOIFLIST = 0x3 constant NFDBITS (line 1075) | NFDBITS = 0x20 constant NOFLSH (line 1076) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1077) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1078) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1079) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1080) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1081) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1082) | NOTE_EXTEND = 0x4 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_PCTRLMASK (line 1086) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1087) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1088) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1089) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1090) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1091) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1092) | NOTE_WRITE = 0x2 constant OCRNL (line 1093) | OCRNL = 0x10 constant OFIOGETBMAP (line 1094) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1095) | ONLCR = 0x2 constant ONLRET (line 1096) | ONLRET = 0x40 constant ONOCR (line 1097) | ONOCR = 0x20 constant ONOEOT (line 1098) | ONOEOT = 0x8 constant OPOST (line 1099) | OPOST = 0x1 constant O_ACCMODE (line 1100) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1101) | O_ALT_IO = 0x40000 constant O_APPEND (line 1102) | O_APPEND = 0x8 constant O_ASYNC (line 1103) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1104) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1105) | O_CREAT = 0x200 constant O_DIRECT (line 1106) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1107) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1108) | O_DSYNC = 0x10000 constant O_EXCL (line 1109) | O_EXCL = 0x800 constant O_EXLOCK (line 1110) | O_EXLOCK = 0x20 constant O_FSYNC (line 1111) | O_FSYNC = 0x80 constant O_NDELAY (line 1112) | O_NDELAY = 0x4 constant O_NOCTTY (line 1113) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1114) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1115) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1116) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1117) | O_RDONLY = 0x0 constant O_RDWR (line 1118) | O_RDWR = 0x2 constant O_RSYNC (line 1119) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1120) | O_SHLOCK = 0x10 constant O_SYNC (line 1121) | O_SYNC = 0x80 constant O_TRUNC (line 1122) | O_TRUNC = 0x400 constant O_WRONLY (line 1123) | O_WRONLY = 0x1 constant PARENB (line 1124) | PARENB = 0x1000 constant PARMRK (line 1125) | PARMRK = 0x8 constant PARODD (line 1126) | PARODD = 0x2000 constant PENDIN (line 1127) | PENDIN = 0x20000000 constant PROT_EXEC (line 1128) | PROT_EXEC = 0x4 constant PROT_NONE (line 1129) | PROT_NONE = 0x0 constant PROT_READ (line 1130) | PROT_READ = 0x1 constant PROT_WRITE (line 1131) | PROT_WRITE = 0x2 constant PRI_IOFLUSH (line 1132) | PRI_IOFLUSH = 0x7c constant PRIO_PGRP (line 1133) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1134) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1135) | PRIO_USER = 0x2 constant RLIMIT_AS (line 1136) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1137) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1138) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1139) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1140) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1141) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1142) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1143) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1144) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1145) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1146) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1147) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1148) | RTAX_BRD = 0x7 constant RTAX_DST (line 1149) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1150) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1151) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1152) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1153) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1154) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1155) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1156) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1157) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1158) | RTA_BRD = 0x80 constant RTA_DST (line 1159) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1160) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1161) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1162) | RTA_IFA = 0x20 constant RTA_IFP (line 1163) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1164) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1165) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1166) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1167) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1168) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1169) | RTF_CLONING = 0x100 constant RTF_DONE (line 1170) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1171) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1172) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1173) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1174) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1175) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1176) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1177) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1178) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1179) | RTF_REJECT = 0x8 constant RTF_SRC (line 1180) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1181) | RTF_STATIC = 0x800 constant RTF_UP (line 1182) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1183) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1184) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1185) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1186) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1187) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1188) | RTM_DELETE = 0x2 constant RTM_GET (line 1189) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1190) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1191) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1192) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1193) | RTM_LLINFO_UPD = 0x13 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_OIFINFO (line 1198) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1199) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1200) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1201) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1202) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1203) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1204) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1205) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1206) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1207) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1208) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1209) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1210) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1211) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1212) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1213) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1214) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1215) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1216) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1217) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1218) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1219) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1220) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1221) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1222) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1223) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1224) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1225) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1226) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1227) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1228) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1229) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1230) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1231) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1232) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1233) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETPFSYNC (line 1234) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1235) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1236) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGHIWAT (line 1237) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1238) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1239) | SIOCGIFADDRPREF = 0xc0946920 constant SIOCGIFALIAS (line 1240) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1241) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1242) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1243) | SIOCGIFCONF = 0xc0086926 constant SIOCGIFDATA (line 1244) | SIOCGIFDATA = 0xc0946985 constant SIOCGIFDLT (line 1245) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1246) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1247) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1248) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1249) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1250) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1251) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1252) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1253) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1254) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1255) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1256) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1257) | SIOCGLINKSTR = 0xc01c6987 constant SIOCGLOWAT (line 1258) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1259) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1260) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1261) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1262) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1263) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCINITIFADDR (line 1264) | SIOCINITIFADDR = 0xc0446984 constant SIOCSDRVSPEC (line 1265) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETPFSYNC (line 1266) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1267) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1268) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1269) | SIOCSIFADDRPREF = 0x8094691f constant SIOCSIFBRDADDR (line 1270) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1271) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1272) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1273) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1274) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1275) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1276) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1277) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1278) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1279) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1280) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1281) | SIOCSLINKSTR = 0x801c6988 constant SIOCSLOWAT (line 1282) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1283) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1284) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1285) | SIOCZIFDATA = 0xc0946986 constant SOCK_CLOEXEC (line 1286) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1287) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1288) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1289) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1290) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1291) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1292) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1293) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1294) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1295) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1296) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1297) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1298) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1299) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1300) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1301) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1302) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1303) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1304) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1305) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1306) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1307) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1308) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1309) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1310) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1311) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1312) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1313) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1314) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1315) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1316) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1317) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1318) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1319) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1320) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1321) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1322) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1323) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1324) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1325) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1326) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1327) | S_IEXEC = 0x40 constant S_IFBLK (line 1328) | S_IFBLK = 0x6000 constant S_IFCHR (line 1329) | S_IFCHR = 0x2000 constant S_IFDIR (line 1330) | S_IFDIR = 0x4000 constant S_IFIFO (line 1331) | S_IFIFO = 0x1000 constant S_IFLNK (line 1332) | S_IFLNK = 0xa000 constant S_IFMT (line 1333) | S_IFMT = 0xf000 constant S_IFREG (line 1334) | S_IFREG = 0x8000 constant S_IFSOCK (line 1335) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1336) | S_IFWHT = 0xe000 constant S_IREAD (line 1337) | S_IREAD = 0x100 constant S_IRGRP (line 1338) | S_IRGRP = 0x20 constant S_IROTH (line 1339) | S_IROTH = 0x4 constant S_IRUSR (line 1340) | S_IRUSR = 0x100 constant S_IRWXG (line 1341) | S_IRWXG = 0x38 constant S_IRWXO (line 1342) | S_IRWXO = 0x7 constant S_IRWXU (line 1343) | S_IRWXU = 0x1c0 constant S_ISGID (line 1344) | S_ISGID = 0x400 constant S_ISTXT (line 1345) | S_ISTXT = 0x200 constant S_ISUID (line 1346) | S_ISUID = 0x800 constant S_ISVTX (line 1347) | S_ISVTX = 0x200 constant S_IWGRP (line 1348) | S_IWGRP = 0x10 constant S_IWOTH (line 1349) | S_IWOTH = 0x2 constant S_IWRITE (line 1350) | S_IWRITE = 0x80 constant S_IWUSR (line 1351) | S_IWUSR = 0x80 constant S_IXGRP (line 1352) | S_IXGRP = 0x8 constant S_IXOTH (line 1353) | S_IXOTH = 0x1 constant S_IXUSR (line 1354) | S_IXUSR = 0x40 constant TCIFLUSH (line 1355) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1356) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1357) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1358) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1359) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1360) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1361) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1362) | TCP_KEEPINTVL = 0x5 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_WINSHIFT (line 1366) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1367) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1368) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1369) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1370) | TCP_NODELAY = 0x1 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 = 0x400c7458 constant TIOCDRAIN (line 1376) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1377) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1378) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1379) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1380) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1381) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1382) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1383) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1384) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1385) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1386) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1387) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1388) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1389) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1390) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1391) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1392) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1393) | TIOCGSIZE = 0x40087468 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 TIOCMSET (line 1398) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1399) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1400) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1401) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1402) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1403) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1404) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1405) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1406) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1407) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1408) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1409) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1410) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1411) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1412) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1413) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1414) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1415) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1416) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1417) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1418) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1419) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1420) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1421) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1422) | TIOCPTMGET = 0x48087446 constant TIOCPTSNAME (line 1423) | TIOCPTSNAME = 0x48087448 constant TIOCRCVFRAME (line 1424) | TIOCRCVFRAME = 0x80047445 constant TIOCREMOTE (line 1425) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1426) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1427) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1428) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1429) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1430) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1431) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1432) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1433) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1434) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1435) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1436) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1437) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1438) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1439) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1440) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1441) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1442) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1443) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1444) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1445) | TIOCXMTFRAME = 0x80047444 constant TOSTOP (line 1446) | TOSTOP = 0x400000 constant VDISCARD (line 1447) | VDISCARD = 0xf constant VDSUSP (line 1448) | VDSUSP = 0xb constant VEOF (line 1449) | VEOF = 0x0 constant VEOL (line 1450) | VEOL = 0x1 constant VEOL2 (line 1451) | VEOL2 = 0x2 constant VERASE (line 1452) | VERASE = 0x3 constant VINTR (line 1453) | VINTR = 0x8 constant VKILL (line 1454) | VKILL = 0x5 constant VLNEXT (line 1455) | VLNEXT = 0xe constant VMIN (line 1456) | VMIN = 0x10 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 VTIME (line 1463) | VTIME = 0x11 constant VWERASE (line 1464) | VWERASE = 0x4 constant WALL (line 1465) | WALL = 0x8 constant WALLSIG (line 1466) | WALLSIG = 0x8 constant WALTSIG (line 1467) | WALTSIG = 0x4 constant WCLONE (line 1468) | WCLONE = 0x4 constant WCOREFLAG (line 1469) | WCOREFLAG = 0x80 constant WNOHANG (line 1470) | WNOHANG = 0x1 constant WNOWAIT (line 1471) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1472) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1473) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1474) | WSTOPPED = 0x7f constant WUNTRACED (line 1475) | WUNTRACED = 0x2 constant E2BIG (line 1480) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1481) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1482) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1483) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1484) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1485) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1486) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1487) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1488) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1489) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1490) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1491) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1492) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1493) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1494) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1495) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1496) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1497) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1498) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1499) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1500) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1501) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1502) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1503) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1504) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1505) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1506) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1507) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1508) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1509) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1510) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1511) | EINVAL = syscall.Errno(0x16) constant EIO (line 1512) | EIO = syscall.Errno(0x5) constant EISCONN (line 1513) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1514) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1515) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1516) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1517) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1518) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1519) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1520) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1521) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1522) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1523) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1524) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1525) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1526) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1527) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1528) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1529) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1530) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1531) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1532) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1533) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1534) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1535) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1536) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1537) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1538) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1539) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1540) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1541) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1542) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1543) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1544) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1545) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1546) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1547) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1548) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1549) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1550) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1551) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1552) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1553) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1554) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1555) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1556) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1557) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1558) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1559) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1560) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1561) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1562) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1563) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1564) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1565) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1566) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1567) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1568) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1569) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1570) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1571) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1572) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1573) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1574) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1575) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1576) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1577) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1582) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1583) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1584) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1585) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1586) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1587) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1588) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1589) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1590) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1591) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1592) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1593) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1594) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1595) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1596) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1597) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1598) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1599) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1600) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1601) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1602) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1603) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1604) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1605) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1606) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1607) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1608) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1609) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1610) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1611) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1612) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1613) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1614) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_ARP (line 16) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x1f 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 = 0x20 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x18 constant AF_IPX (line 32) | AF_IPX = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x1a constant AF_ISO (line 34) | AF_ISO = 0x7 constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x23 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 constant AF_OROUTE (line 42) | AF_OROUTE = 0x11 constant AF_OSI (line 43) | AF_OSI = 0x7 constant AF_PUP (line 44) | AF_PUP = 0x4 constant AF_ROUTE (line 45) | AF_ROUTE = 0x22 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 ARPHRD_ARCNET (line 49) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 54) | ARPHRD_STRIP = 0x17 constant B0 (line 55) | B0 = 0x0 constant B110 (line 56) | B110 = 0x6e constant B115200 (line 57) | B115200 = 0x1c200 constant B1200 (line 58) | B1200 = 0x4b0 constant B134 (line 59) | B134 = 0x86 constant B14400 (line 60) | B14400 = 0x3840 constant B150 (line 61) | B150 = 0x96 constant B1800 (line 62) | B1800 = 0x708 constant B19200 (line 63) | B19200 = 0x4b00 constant B200 (line 64) | B200 = 0xc8 constant B230400 (line 65) | B230400 = 0x38400 constant B2400 (line 66) | B2400 = 0x960 constant B28800 (line 67) | B28800 = 0x7080 constant B300 (line 68) | B300 = 0x12c constant B38400 (line 69) | B38400 = 0x9600 constant B460800 (line 70) | B460800 = 0x70800 constant B4800 (line 71) | B4800 = 0x12c0 constant B50 (line 72) | B50 = 0x32 constant B57600 (line 73) | B57600 = 0xe100 constant B600 (line 74) | B600 = 0x258 constant B7200 (line 75) | B7200 = 0x1c20 constant B75 (line 76) | B75 = 0x4b constant B76800 (line 77) | B76800 = 0x12c00 constant B921600 (line 78) | B921600 = 0xe1000 constant B9600 (line 79) | B9600 = 0x2580 constant BIOCFEEDBACK (line 80) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 81) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 82) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 83) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 84) | BIOCGDLTLIST = 0xc0104277 constant BIOCGETIF (line 85) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 86) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 87) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 88) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGSEESENT (line 89) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 90) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 91) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 92) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 93) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 94) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 95) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 96) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 97) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 98) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 99) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x8010427a constant BIOCSSEESENT (line 101) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 102) | BIOCSTCPF = 0x80104272 constant BIOCSUDPF (line 103) | BIOCSUDPF = 0x80104273 constant BIOCVERSION (line 104) | BIOCVERSION = 0x40044271 constant BPF_A (line 105) | BPF_A = 0x10 constant BPF_ABS (line 106) | BPF_ABS = 0x20 constant BPF_ADD (line 107) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 108) | BPF_ALIGNMENT = 0x8 constant BPF_ALIGNMENT32 (line 109) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 110) | BPF_ALU = 0x4 constant BPF_AND (line 111) | BPF_AND = 0x50 constant BPF_B (line 112) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 113) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 114) | BPF_DIV = 0x30 constant BPF_H (line 115) | BPF_H = 0x8 constant BPF_IMM (line 116) | BPF_IMM = 0x0 constant BPF_IND (line 117) | BPF_IND = 0x40 constant BPF_JA (line 118) | BPF_JA = 0x0 constant BPF_JEQ (line 119) | BPF_JEQ = 0x10 constant BPF_JGE (line 120) | BPF_JGE = 0x30 constant BPF_JGT (line 121) | BPF_JGT = 0x20 constant BPF_JMP (line 122) | BPF_JMP = 0x5 constant BPF_JSET (line 123) | BPF_JSET = 0x40 constant BPF_K (line 124) | BPF_K = 0x0 constant BPF_LD (line 125) | BPF_LD = 0x0 constant BPF_LDX (line 126) | BPF_LDX = 0x1 constant BPF_LEN (line 127) | BPF_LEN = 0x80 constant BPF_LSH (line 128) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 129) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 130) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 131) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 132) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 133) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 134) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 135) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 136) | BPF_MISC = 0x7 constant BPF_MSH (line 137) | BPF_MSH = 0xa0 constant BPF_MUL (line 138) | BPF_MUL = 0x20 constant BPF_NEG (line 139) | BPF_NEG = 0x80 constant BPF_OR (line 140) | BPF_OR = 0x40 constant BPF_RELEASE (line 141) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 142) | BPF_RET = 0x6 constant BPF_RSH (line 143) | BPF_RSH = 0x70 constant BPF_ST (line 144) | BPF_ST = 0x2 constant BPF_STX (line 145) | BPF_STX = 0x3 constant BPF_SUB (line 146) | BPF_SUB = 0x10 constant BPF_TAX (line 147) | BPF_TAX = 0x0 constant BPF_TXA (line 148) | BPF_TXA = 0x80 constant BPF_W (line 149) | BPF_W = 0x0 constant BPF_X (line 150) | BPF_X = 0x8 constant BRKINT (line 151) | BRKINT = 0x2 constant CFLUSH (line 152) | CFLUSH = 0xf constant CLOCAL (line 153) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 154) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 155) | CLONE_FILES = 0x400 constant CLONE_FS (line 156) | CLONE_FS = 0x200 constant CLONE_PID (line 157) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 158) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 159) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 160) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 161) | CLONE_VM = 0x100 constant CPUSTATES (line 162) | CPUSTATES = 0x5 constant CP_IDLE (line 163) | CP_IDLE = 0x4 constant CP_INTR (line 164) | CP_INTR = 0x3 constant CP_NICE (line 165) | CP_NICE = 0x1 constant CP_SYS (line 166) | CP_SYS = 0x2 constant CP_USER (line 167) | CP_USER = 0x0 constant CREAD (line 168) | CREAD = 0x800 constant CRTSCTS (line 169) | CRTSCTS = 0x10000 constant CS5 (line 170) | CS5 = 0x0 constant CS6 (line 171) | CS6 = 0x100 constant CS7 (line 172) | CS7 = 0x200 constant CS8 (line 173) | CS8 = 0x300 constant CSIZE (line 174) | CSIZE = 0x300 constant CSTART (line 175) | CSTART = 0x11 constant CSTATUS (line 176) | CSTATUS = 0x14 constant CSTOP (line 177) | CSTOP = 0x13 constant CSTOPB (line 178) | CSTOPB = 0x400 constant CSUSP (line 179) | CSUSP = 0x1a constant CTL_HW (line 180) | CTL_HW = 0x6 constant CTL_KERN (line 181) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 182) | CTL_MAXNAME = 0xc constant CTL_NET (line 183) | CTL_NET = 0x4 constant CTL_QUERY (line 184) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 185) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 186) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 187) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 188) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 189) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 190) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 191) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 192) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 193) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 194) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 195) | DLT_AURORA = 0x7e constant DLT_AX25 (line 196) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 197) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 198) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 199) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 200) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 201) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 202) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 203) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 204) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 205) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 206) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 207) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 208) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 209) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 210) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 211) | DLT_EN3MB = 0x2 constant DLT_ENC (line 212) | DLT_ENC = 0x6d constant DLT_ERF (line 213) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 214) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 215) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 216) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 217) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 218) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 219) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 220) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 221) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 222) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 223) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 224) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 225) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 226) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 227) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 228) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 229) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 230) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 231) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 232) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 233) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 234) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 235) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 236) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 237) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 238) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 239) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 240) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 241) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 242) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 243) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 244) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 245) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 246) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 247) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 248) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 249) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 250) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 251) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 252) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 253) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 254) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 255) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 256) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 257) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 258) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 259) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 260) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 261) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 262) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 263) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 264) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 265) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 266) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 267) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 268) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 269) | DLT_LAPD = 0xcb constant DLT_LIN (line 270) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 271) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 272) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 273) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 274) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 275) | DLT_LOOP = 0x6c constant DLT_LTALK (line 276) | DLT_LTALK = 0x72 constant DLT_MFR (line 277) | DLT_MFR = 0xb6 constant DLT_MOST (line 278) | DLT_MOST = 0xd3 constant DLT_MPLS (line 279) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 280) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 281) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 282) | DLT_MTP3 = 0x8d constant DLT_NULL (line 283) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 284) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 285) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 286) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 287) | DLT_PPI = 0xc0 constant DLT_PPP (line 288) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 289) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 290) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 291) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 292) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 293) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 294) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 295) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 296) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 297) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 298) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 299) | DLT_RIO = 0x7c constant DLT_SCCP (line 300) | DLT_SCCP = 0x8e constant DLT_SITA (line 301) | DLT_SITA = 0xc4 constant DLT_SLIP (line 302) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 303) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 304) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 305) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 306) | DLT_TZSP = 0x80 constant DLT_USB (line 307) | DLT_USB = 0xba constant DLT_USB_LINUX (line 308) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 309) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 310) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 311) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 312) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 313) | DT_BLK = 0x6 constant DT_CHR (line 314) | DT_CHR = 0x2 constant DT_DIR (line 315) | DT_DIR = 0x4 constant DT_FIFO (line 316) | DT_FIFO = 0x1 constant DT_LNK (line 317) | DT_LNK = 0xa constant DT_REG (line 318) | DT_REG = 0x8 constant DT_SOCK (line 319) | DT_SOCK = 0xc constant DT_UNKNOWN (line 320) | DT_UNKNOWN = 0x0 constant DT_WHT (line 321) | DT_WHT = 0xe constant ECHO (line 322) | ECHO = 0x8 constant ECHOCTL (line 323) | ECHOCTL = 0x40 constant ECHOE (line 324) | ECHOE = 0x2 constant ECHOK (line 325) | ECHOK = 0x4 constant ECHOKE (line 326) | ECHOKE = 0x1 constant ECHONL (line 327) | ECHONL = 0x10 constant ECHOPRT (line 328) | ECHOPRT = 0x20 constant EMUL_LINUX (line 329) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 330) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 331) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 332) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 333) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 334) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 335) | ETHERMIN = 0x2e constant ETHERMTU (line 336) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 337) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 338) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 339) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 340) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 341) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 342) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 343) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 344) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 345) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 346) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 347) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 348) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 349) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 350) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 351) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 352) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 353) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 354) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 355) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 356) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 357) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 358) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 359) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 360) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 361) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 362) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 363) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 364) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 365) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 366) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 367) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 368) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 369) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 370) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 371) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 372) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 373) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 374) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 375) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 376) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 377) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 378) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 379) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 380) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 381) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 382) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 383) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 384) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 385) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 386) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 387) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 388) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 389) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 390) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 391) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 392) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 393) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 394) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 395) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 396) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 397) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 398) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 399) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 400) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 401) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 402) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 403) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 404) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 405) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 406) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 407) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 408) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 409) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 410) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 411) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 412) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 413) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 414) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 415) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 416) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 417) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 418) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 419) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 420) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 421) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 422) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 423) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 424) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 425) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 426) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 427) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 428) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 429) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 430) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 431) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 432) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 433) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 434) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 435) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 436) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 437) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 438) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 439) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 440) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 441) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 442) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 443) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 444) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 445) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 446) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 447) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 448) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 449) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 450) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 451) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 452) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 453) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 454) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 455) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 456) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 457) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 458) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 459) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 460) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 461) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 462) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 463) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 464) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 465) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 466) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 467) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 468) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 469) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 470) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 471) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 472) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 473) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 474) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 475) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 476) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 477) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 478) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 479) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 480) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 481) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 482) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 483) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 484) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 485) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 486) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 487) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 488) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 489) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 490) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 491) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 492) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 493) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 494) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 495) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 496) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 497) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 498) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 499) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 500) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 501) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 502) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 503) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 504) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 505) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 506) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 507) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 508) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 509) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 510) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 511) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 512) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 513) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 514) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 515) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 516) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 517) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 518) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 519) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 520) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 521) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 522) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 523) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 524) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 525) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 526) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 527) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 528) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 529) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 530) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 531) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 532) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 533) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 534) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 535) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 536) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 537) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 538) | EVFILT_WRITE = 0x1 constant EV_ADD (line 539) | EV_ADD = 0x1 constant EV_CLEAR (line 540) | EV_CLEAR = 0x20 constant EV_DELETE (line 541) | EV_DELETE = 0x2 constant EV_DISABLE (line 542) | EV_DISABLE = 0x8 constant EV_ENABLE (line 543) | EV_ENABLE = 0x4 constant EV_EOF (line 544) | EV_EOF = 0x8000 constant EV_ERROR (line 545) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 546) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 547) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 548) | EV_SYSFLAGS = 0xf000 constant EXTA (line 549) | EXTA = 0x4b00 constant EXTATTR_CMD_START (line 550) | EXTATTR_CMD_START = 0x1 constant EXTATTR_CMD_STOP (line 551) | EXTATTR_CMD_STOP = 0x2 constant EXTATTR_NAMESPACE_SYSTEM (line 552) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 553) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 554) | EXTB = 0x9600 constant EXTPROC (line 555) | EXTPROC = 0x800 constant FD_CLOEXEC (line 556) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 557) | FD_SETSIZE = 0x100 constant FLUSHO (line 558) | FLUSHO = 0x800000 constant F_CLOSEM (line 559) | F_CLOSEM = 0xa constant F_DUPFD (line 560) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 561) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 562) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 563) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 564) | F_FSIN = 0x10000000 constant F_FSINOUT (line 565) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 566) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 567) | F_FSPRIV = 0x8000 constant F_FSVOID (line 568) | F_FSVOID = 0x40000000 constant F_GETFD (line 569) | F_GETFD = 0x1 constant F_GETFL (line 570) | F_GETFL = 0x3 constant F_GETLK (line 571) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 572) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 573) | F_GETOWN = 0x5 constant F_MAXFD (line 574) | F_MAXFD = 0xb constant F_OK (line 575) | F_OK = 0x0 constant F_PARAM_MASK (line 576) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 577) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 578) | F_RDLCK = 0x1 constant F_SETFD (line 579) | F_SETFD = 0x2 constant F_SETFL (line 580) | F_SETFL = 0x4 constant F_SETLK (line 581) | F_SETLK = 0x8 constant F_SETLKW (line 582) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 583) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 584) | F_SETOWN = 0x6 constant F_UNLCK (line 585) | F_UNLCK = 0x2 constant F_WRLCK (line 586) | F_WRLCK = 0x3 constant HUPCL (line 587) | HUPCL = 0x4000 constant HW_MACHINE (line 588) | HW_MACHINE = 0x1 constant ICANON (line 589) | ICANON = 0x100 constant ICMP6_FILTER (line 590) | ICMP6_FILTER = 0x12 constant ICRNL (line 591) | ICRNL = 0x100 constant IEXTEN (line 592) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 593) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 594) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 595) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 596) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 597) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 598) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 599) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 600) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 601) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 602) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 603) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 604) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 605) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 606) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 607) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 608) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 609) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 610) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 611) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 612) | IFF_UP = 0x1 constant IFNAMSIZ (line 613) | IFNAMSIZ = 0x10 constant IFT_1822 (line 614) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 615) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 616) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 617) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 618) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 619) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 620) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 621) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 622) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 623) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 624) | IFT_ASYNC = 0x54 constant IFT_ATM (line 625) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 626) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 627) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 628) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 629) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 630) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 631) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 632) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 633) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 634) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 635) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 636) | IFT_BSC = 0x53 constant IFT_CARP (line 637) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 638) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 639) | IFT_CEPT = 0x13 constant IFT_CES (line 640) | IFT_CES = 0x85 constant IFT_CHANNEL (line 641) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 642) | IFT_CNR = 0x55 constant IFT_COFFEE (line 643) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 644) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 645) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 646) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 647) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 648) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 649) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 650) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 651) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 652) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 653) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 654) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 655) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 656) | IFT_DS3 = 0x1e constant IFT_DTM (line 657) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 658) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 659) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 660) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 661) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 662) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 663) | IFT_ECONET = 0xce constant IFT_EON (line 664) | IFT_EON = 0x19 constant IFT_EPLRS (line 665) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 666) | IFT_ESCON = 0x49 constant IFT_ETHER (line 667) | IFT_ETHER = 0x6 constant IFT_FAITH (line 668) | IFT_FAITH = 0xf2 constant IFT_FAST (line 669) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 670) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 671) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 672) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 673) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 674) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 675) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 676) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 677) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 678) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 679) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 680) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 681) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 682) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 683) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 684) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 685) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 686) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 687) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 688) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 689) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 690) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 691) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 692) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 693) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 694) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 695) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 696) | IFT_HSSI = 0x2e constant IFT_HY (line 697) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 698) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 699) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 700) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 701) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 702) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 703) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 704) | IFT_IFGSN = 0x91 constant IFT_IMT (line 705) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 706) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 707) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 708) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 709) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 710) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 711) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 712) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 713) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 714) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 715) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 716) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 717) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 718) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 719) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 720) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 721) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 722) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 723) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 724) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 725) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 726) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 727) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 728) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 729) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 730) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 731) | IFT_LAPB = 0x10 constant IFT_LAPD (line 732) | IFT_LAPD = 0x4d constant IFT_LAPF (line 733) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 734) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 735) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 736) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 737) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 738) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 739) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 740) | IFT_MODEM = 0x30 constant IFT_MPC (line 741) | IFT_MPC = 0x71 constant IFT_MPLS (line 742) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 743) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 744) | IFT_MSDSL = 0x8f constant IFT_MVL (line 745) | IFT_MVL = 0xbf constant IFT_MYRINET (line 746) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 747) | IFT_NFAS = 0xaf constant IFT_NSIP (line 748) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 749) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 750) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 751) | IFT_OTHER = 0x1 constant IFT_P10 (line 752) | IFT_P10 = 0xc constant IFT_P80 (line 753) | IFT_P80 = 0xd constant IFT_PARA (line 754) | IFT_PARA = 0x22 constant IFT_PFLOG (line 755) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 756) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 757) | IFT_PLC = 0xae constant IFT_PON155 (line 758) | IFT_PON155 = 0xcf constant IFT_PON622 (line 759) | IFT_PON622 = 0xd0 constant IFT_POS (line 760) | IFT_POS = 0xab constant IFT_PPP (line 761) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 762) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 763) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 764) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 765) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 766) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 767) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 768) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 769) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 770) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 771) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 772) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 773) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 774) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 775) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 776) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 777) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 778) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 779) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 780) | IFT_RS232 = 0x21 constant IFT_RSRB (line 781) | IFT_RSRB = 0x4f constant IFT_SDLC (line 782) | IFT_SDLC = 0x11 constant IFT_SDSL (line 783) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 784) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 785) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 786) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 787) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 788) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 789) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 790) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 791) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 792) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 793) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 794) | IFT_SONETVT = 0x33 constant IFT_SRP (line 795) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 796) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 797) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 798) | IFT_STARLAN = 0xb constant IFT_STF (line 799) | IFT_STF = 0xd7 constant IFT_T1 (line 800) | IFT_T1 = 0x12 constant IFT_TDLC (line 801) | IFT_TDLC = 0x74 constant IFT_TELINK (line 802) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 803) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 804) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 805) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 806) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 807) | IFT_ULTRA = 0x1d constant IFT_USB (line 808) | IFT_USB = 0xa0 constant IFT_V11 (line 809) | IFT_V11 = 0x40 constant IFT_V35 (line 810) | IFT_V35 = 0x2d constant IFT_V36 (line 811) | IFT_V36 = 0x41 constant IFT_V37 (line 812) | IFT_V37 = 0x78 constant IFT_VDSL (line 813) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 814) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 815) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 816) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 817) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 818) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 819) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 820) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 821) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 822) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 823) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 824) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 825) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 826) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 827) | IFT_X213 = 0x5d constant IFT_X25 (line 828) | IFT_X25 = 0x5 constant IFT_X25DDN (line 829) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 830) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 831) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 832) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 833) | IFT_XETHER = 0x1a constant IGNBRK (line 834) | IGNBRK = 0x1 constant IGNCR (line 835) | IGNCR = 0x80 constant IGNPAR (line 836) | IGNPAR = 0x4 constant IMAXBEL (line 837) | IMAXBEL = 0x2000 constant INLCR (line 838) | INLCR = 0x40 constant INPCK (line 839) | INPCK = 0x10 constant IN_CLASSA_HOST (line 840) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 841) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 842) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 843) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 844) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 845) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 846) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 847) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 848) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 849) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 850) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 851) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 852) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 853) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 854) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 855) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 856) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 857) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 858) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 859) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 860) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 861) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 862) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 863) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 864) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 865) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 866) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 867) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 868) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 869) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 870) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 871) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 872) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 873) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 874) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 875) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 876) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 877) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 878) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 879) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 880) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 881) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 882) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 883) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 884) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 885) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 886) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 887) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 888) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 889) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 890) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 891) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 892) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 893) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 894) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 895) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 896) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 897) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 898) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 899) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 900) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 901) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 902) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 903) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 904) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 905) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 906) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 907) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 908) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 909) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 910) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 911) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 912) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 913) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 914) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 915) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 916) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 917) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 918) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 919) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 920) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 921) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 922) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 923) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 924) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 925) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 926) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 927) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 928) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 929) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 930) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 931) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 932) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 933) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 934) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 935) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 936) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 937) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 938) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 939) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 940) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 941) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 942) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 943) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 944) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 945) | IP_EF = 0x8000 constant IP_ERRORMTU (line 946) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 947) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 948) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 949) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 950) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 951) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 952) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 953) | IP_MINTTL = 0x18 constant IP_MSS (line 954) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 955) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 956) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 957) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 958) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 959) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 960) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 961) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 962) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 963) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 964) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 965) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 966) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 967) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 968) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 969) | IP_RETOPTS = 0x8 constant IP_RF (line 970) | IP_RF = 0x8000 constant IP_TOS (line 971) | IP_TOS = 0x3 constant IP_TTL (line 972) | IP_TTL = 0x4 constant ISIG (line 973) | ISIG = 0x80 constant ISTRIP (line 974) | ISTRIP = 0x20 constant IXANY (line 975) | IXANY = 0x800 constant IXOFF (line 976) | IXOFF = 0x400 constant IXON (line 977) | IXON = 0x200 constant KERN_HOSTNAME (line 978) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 979) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 980) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 981) | KERN_VERSION = 0x4 constant LOCK_EX (line 982) | LOCK_EX = 0x2 constant LOCK_NB (line 983) | LOCK_NB = 0x4 constant LOCK_SH (line 984) | LOCK_SH = 0x1 constant LOCK_UN (line 985) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 986) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 987) | MADV_FREE = 0x6 constant MADV_NORMAL (line 988) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 989) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 990) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 991) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 992) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 993) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 994) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 995) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 996) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 997) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 998) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 999) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1000) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1001) | MAP_ANON = 0x1000 constant MAP_FILE (line 1002) | MAP_FILE = 0x0 constant MAP_FIXED (line 1003) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 1004) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 1005) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 1006) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 1007) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 1008) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 1009) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1010) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 1011) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 1012) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1013) | MAP_RENAME = 0x20 constant MAP_SHARED (line 1014) | MAP_SHARED = 0x1 constant MAP_STACK (line 1015) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 1016) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 1017) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 1018) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1019) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 1020) | MNT_ASYNC = 0x40 constant MNT_BASIC_FLAGS (line 1021) | MNT_BASIC_FLAGS = 0xe782807f constant MNT_DEFEXPORTED (line 1022) | MNT_DEFEXPORTED = 0x200 constant MNT_DISCARD (line 1023) | MNT_DISCARD = 0x800000 constant MNT_EXKERB (line 1024) | MNT_EXKERB = 0x800 constant MNT_EXNORESPORT (line 1025) | MNT_EXNORESPORT = 0x8000000 constant MNT_EXPORTANON (line 1026) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1027) | MNT_EXPORTED = 0x100 constant MNT_EXPUBLIC (line 1028) | MNT_EXPUBLIC = 0x10000000 constant MNT_EXRDONLY (line 1029) | MNT_EXRDONLY = 0x80 constant MNT_EXTATTR (line 1030) | MNT_EXTATTR = 0x1000000 constant MNT_FORCE (line 1031) | MNT_FORCE = 0x80000 constant MNT_GETARGS (line 1032) | MNT_GETARGS = 0x400000 constant MNT_IGNORE (line 1033) | MNT_IGNORE = 0x100000 constant MNT_LAZY (line 1034) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1035) | MNT_LOCAL = 0x1000 constant MNT_LOG (line 1036) | MNT_LOG = 0x2000000 constant MNT_NOATIME (line 1037) | MNT_NOATIME = 0x4000000 constant MNT_NOCOREDUMP (line 1038) | MNT_NOCOREDUMP = 0x8000 constant MNT_NODEV (line 1039) | MNT_NODEV = 0x10 constant MNT_NODEVMTIME (line 1040) | MNT_NODEVMTIME = 0x40000000 constant MNT_NOEXEC (line 1041) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 1042) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 1043) | MNT_NOWAIT = 0x2 constant MNT_OP_FLAGS (line 1044) | MNT_OP_FLAGS = 0x4d0000 constant MNT_QUOTA (line 1045) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1046) | MNT_RDONLY = 0x1 constant MNT_RELATIME (line 1047) | MNT_RELATIME = 0x20000 constant MNT_RELOAD (line 1048) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1049) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 1050) | MNT_SOFTDEP = 0x80000000 constant MNT_SYMPERM (line 1051) | MNT_SYMPERM = 0x20000000 constant MNT_SYNCHRONOUS (line 1052) | MNT_SYNCHRONOUS = 0x2 constant MNT_UNION (line 1053) | MNT_UNION = 0x20 constant MNT_UPDATE (line 1054) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1055) | MNT_VISFLAGMASK = 0xff90ffff constant MNT_WAIT (line 1056) | MNT_WAIT = 0x1 constant MSG_BCAST (line 1057) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1058) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1059) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1060) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1061) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1062) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1063) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1064) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1065) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1066) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1067) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1068) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1069) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1070) | MSG_OOB = 0x1 constant MSG_PEEK (line 1071) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1072) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1073) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1074) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1075) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1076) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1077) | MS_SYNC = 0x4 constant NAME_MAX (line 1078) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1079) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1080) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1081) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1082) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1083) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1084) | NET_RT_OOIFLIST = 0x3 constant NFDBITS (line 1085) | NFDBITS = 0x20 constant NOFLSH (line 1086) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1087) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1088) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1089) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1090) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1091) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1092) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1093) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1094) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1095) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1096) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1097) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1098) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1099) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1100) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1101) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1102) | NOTE_WRITE = 0x2 constant OCRNL (line 1103) | OCRNL = 0x10 constant OFIOGETBMAP (line 1104) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1105) | ONLCR = 0x2 constant ONLRET (line 1106) | ONLRET = 0x40 constant ONOCR (line 1107) | ONOCR = 0x20 constant ONOEOT (line 1108) | ONOEOT = 0x8 constant OPOST (line 1109) | OPOST = 0x1 constant O_ACCMODE (line 1110) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1111) | O_ALT_IO = 0x40000 constant O_APPEND (line 1112) | O_APPEND = 0x8 constant O_ASYNC (line 1113) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1114) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1115) | O_CREAT = 0x200 constant O_DIRECT (line 1116) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1117) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1118) | O_DSYNC = 0x10000 constant O_EXCL (line 1119) | O_EXCL = 0x800 constant O_EXLOCK (line 1120) | O_EXLOCK = 0x20 constant O_FSYNC (line 1121) | O_FSYNC = 0x80 constant O_NDELAY (line 1122) | O_NDELAY = 0x4 constant O_NOCTTY (line 1123) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1124) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1125) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1126) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1127) | O_RDONLY = 0x0 constant O_RDWR (line 1128) | O_RDWR = 0x2 constant O_RSYNC (line 1129) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1130) | O_SHLOCK = 0x10 constant O_SYNC (line 1131) | O_SYNC = 0x80 constant O_TRUNC (line 1132) | O_TRUNC = 0x400 constant O_WRONLY (line 1133) | O_WRONLY = 0x1 constant PARENB (line 1134) | PARENB = 0x1000 constant PARMRK (line 1135) | PARMRK = 0x8 constant PARODD (line 1136) | PARODD = 0x2000 constant PENDIN (line 1137) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1138) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1139) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1140) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1141) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1142) | PROT_EXEC = 0x4 constant PROT_NONE (line 1143) | PROT_NONE = 0x0 constant PROT_READ (line 1144) | PROT_READ = 0x1 constant PROT_WRITE (line 1145) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1146) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1147) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1148) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1149) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1150) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1151) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1152) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1153) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1154) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1155) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1156) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1157) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1158) | RTAX_BRD = 0x7 constant RTAX_DST (line 1159) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1160) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1161) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1162) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1163) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1164) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1165) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1166) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1167) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1168) | RTA_BRD = 0x80 constant RTA_DST (line 1169) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1170) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1171) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1172) | RTA_IFA = 0x20 constant RTA_IFP (line 1173) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1174) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1175) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1176) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1177) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1178) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1179) | RTF_CLONING = 0x100 constant RTF_DONE (line 1180) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1181) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1182) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1183) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1184) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1185) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1186) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1187) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1188) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1189) | RTF_REJECT = 0x8 constant RTF_SRC (line 1190) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1191) | RTF_STATIC = 0x800 constant RTF_UP (line 1192) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1193) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1194) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1195) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1196) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1197) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1198) | RTM_DELETE = 0x2 constant RTM_GET (line 1199) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1200) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1201) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1202) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1203) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1204) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1205) | RTM_LOSING = 0x5 constant RTM_MISS (line 1206) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1207) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1208) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1209) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1210) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1211) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1212) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1213) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1214) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1215) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1216) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1217) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1218) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1219) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1220) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1221) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1222) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1223) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1224) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1225) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1226) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1227) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1228) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1229) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1230) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1231) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1232) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1233) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1234) | SIOCADDRT = 0x8038720a constant SIOCAIFADDR (line 1235) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1236) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1237) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1238) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1239) | SIOCDELRT = 0x8038720b constant SIOCDIFADDR (line 1240) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1241) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1242) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1243) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETPFSYNC (line 1244) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1245) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1246) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGHIWAT (line 1247) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1248) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1249) | SIOCGIFADDRPREF = 0xc0986920 constant SIOCGIFALIAS (line 1250) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1251) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1252) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1253) | SIOCGIFCONF = 0xc0106926 constant SIOCGIFDATA (line 1254) | SIOCGIFDATA = 0xc0986985 constant SIOCGIFDLT (line 1255) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1256) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1257) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1258) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1259) | SIOCGIFMEDIA = 0xc0306936 constant SIOCGIFMETRIC (line 1260) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1261) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1262) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1263) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1264) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1265) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1266) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1267) | SIOCGLINKSTR = 0xc0286987 constant SIOCGLOWAT (line 1268) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1269) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1270) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1271) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1272) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1273) | SIOCIFGCLONERS = 0xc0106978 constant SIOCINITIFADDR (line 1274) | SIOCINITIFADDR = 0xc0706984 constant SIOCSDRVSPEC (line 1275) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETPFSYNC (line 1276) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1277) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1278) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1279) | SIOCSIFADDRPREF = 0x8098691f constant SIOCSIFBRDADDR (line 1280) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1281) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1282) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1283) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1284) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1285) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1286) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1287) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1288) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1289) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1290) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1291) | SIOCSLINKSTR = 0x80286988 constant SIOCSLOWAT (line 1292) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1293) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1294) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1295) | SIOCZIFDATA = 0xc0986986 constant SOCK_CLOEXEC (line 1296) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1297) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1298) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1299) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1300) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1301) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1302) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1303) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1304) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1305) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1306) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1307) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1308) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1309) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1310) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1311) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1312) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1313) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1314) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1315) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1316) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1317) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1318) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1319) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1320) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1321) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1322) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1323) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1324) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1325) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1326) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1327) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1328) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1329) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1330) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1331) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1332) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1333) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1334) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1335) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1336) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1337) | S_IEXEC = 0x40 constant S_IFBLK (line 1338) | S_IFBLK = 0x6000 constant S_IFCHR (line 1339) | S_IFCHR = 0x2000 constant S_IFDIR (line 1340) | S_IFDIR = 0x4000 constant S_IFIFO (line 1341) | S_IFIFO = 0x1000 constant S_IFLNK (line 1342) | S_IFLNK = 0xa000 constant S_IFMT (line 1343) | S_IFMT = 0xf000 constant S_IFREG (line 1344) | S_IFREG = 0x8000 constant S_IFSOCK (line 1345) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1346) | S_IFWHT = 0xe000 constant S_IREAD (line 1347) | S_IREAD = 0x100 constant S_IRGRP (line 1348) | S_IRGRP = 0x20 constant S_IROTH (line 1349) | S_IROTH = 0x4 constant S_IRUSR (line 1350) | S_IRUSR = 0x100 constant S_IRWXG (line 1351) | S_IRWXG = 0x38 constant S_IRWXO (line 1352) | S_IRWXO = 0x7 constant S_IRWXU (line 1353) | S_IRWXU = 0x1c0 constant S_ISGID (line 1354) | S_ISGID = 0x400 constant S_ISTXT (line 1355) | S_ISTXT = 0x200 constant S_ISUID (line 1356) | S_ISUID = 0x800 constant S_ISVTX (line 1357) | S_ISVTX = 0x200 constant S_IWGRP (line 1358) | S_IWGRP = 0x10 constant S_IWOTH (line 1359) | S_IWOTH = 0x2 constant S_IWRITE (line 1360) | S_IWRITE = 0x80 constant S_IWUSR (line 1361) | S_IWUSR = 0x80 constant S_IXGRP (line 1362) | S_IXGRP = 0x8 constant S_IXOTH (line 1363) | S_IXOTH = 0x1 constant S_IXUSR (line 1364) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1365) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1366) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1367) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1368) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1369) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1370) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1371) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1372) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1373) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1374) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1375) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1376) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1377) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1378) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1379) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1380) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1381) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1382) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1383) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1384) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1385) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1386) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1387) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1388) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1389) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1390) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1391) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1392) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1393) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1394) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1395) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1396) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1397) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1398) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1399) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1400) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1401) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1402) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1403) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1404) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1405) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1406) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1407) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1408) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1409) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1410) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1411) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1412) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1413) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1414) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1415) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1416) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1417) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1418) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1419) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1420) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1421) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1422) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1423) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1424) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1425) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1426) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1427) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1428) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1429) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1430) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1431) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1432) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1433) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1434) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1435) | TIOCRCVFRAME = 0x80087445 constant TIOCREMOTE (line 1436) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1437) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1438) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1439) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1440) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1441) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1442) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1443) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1444) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1445) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1446) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1447) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1448) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1449) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1450) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1451) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1452) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1453) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1454) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1455) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1456) | TIOCXMTFRAME = 0x80087444 constant TOSTOP (line 1457) | TOSTOP = 0x400000 constant VDISCARD (line 1458) | VDISCARD = 0xf constant VDSUSP (line 1459) | VDSUSP = 0xb constant VEOF (line 1460) | VEOF = 0x0 constant VEOL (line 1461) | VEOL = 0x1 constant VEOL2 (line 1462) | VEOL2 = 0x2 constant VERASE (line 1463) | VERASE = 0x3 constant VINTR (line 1464) | VINTR = 0x8 constant VKILL (line 1465) | VKILL = 0x5 constant VLNEXT (line 1466) | VLNEXT = 0xe constant VMIN (line 1467) | VMIN = 0x10 constant VQUIT (line 1468) | VQUIT = 0x9 constant VREPRINT (line 1469) | VREPRINT = 0x6 constant VSTART (line 1470) | VSTART = 0xc constant VSTATUS (line 1471) | VSTATUS = 0x12 constant VSTOP (line 1472) | VSTOP = 0xd constant VSUSP (line 1473) | VSUSP = 0xa constant VTIME (line 1474) | VTIME = 0x11 constant VWERASE (line 1475) | VWERASE = 0x4 constant WALL (line 1476) | WALL = 0x8 constant WALLSIG (line 1477) | WALLSIG = 0x8 constant WALTSIG (line 1478) | WALTSIG = 0x4 constant WCLONE (line 1479) | WCLONE = 0x4 constant WCOREFLAG (line 1480) | WCOREFLAG = 0x80 constant WNOHANG (line 1481) | WNOHANG = 0x1 constant WNOWAIT (line 1482) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1483) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1484) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1485) | WSTOPPED = 0x7f constant WUNTRACED (line 1486) | WUNTRACED = 0x2 constant E2BIG (line 1491) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1492) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1493) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1494) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1495) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1496) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1497) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1498) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1499) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1500) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1501) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1502) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1503) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1504) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1505) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1506) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1507) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1508) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1509) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1510) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1511) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1512) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1513) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1514) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1515) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1516) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1517) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1518) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1519) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1520) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1521) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1522) | EINVAL = syscall.Errno(0x16) constant EIO (line 1523) | EIO = syscall.Errno(0x5) constant EISCONN (line 1524) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1525) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1526) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1527) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1528) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1529) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1530) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1531) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1532) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1533) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1534) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1535) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1536) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1537) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1538) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1539) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1540) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1541) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1542) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1543) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1544) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1545) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1546) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1547) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1548) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1549) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1550) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1551) | ENOSTR = syscall.Errno(0x5b) 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 ENOTSOCK (line 1557) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1558) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1559) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1560) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1561) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1562) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1563) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1564) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1565) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1566) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1567) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1568) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1569) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1570) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1571) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1572) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1573) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1574) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1575) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1576) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1577) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1578) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1579) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1580) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1581) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1582) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1583) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1584) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1585) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1586) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1587) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1588) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1593) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1594) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1595) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1596) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1597) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1598) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1599) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1600) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1601) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1602) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1603) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1604) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1605) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1606) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1607) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1608) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1609) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1610) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1611) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1612) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1613) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1614) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1615) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1616) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1617) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1618) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1619) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1620) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1621) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1622) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1623) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1624) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1625) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x20 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_ENCAP (line 26) | AF_ENCAP = 0x1c constant AF_HYLINK (line 27) | AF_HYLINK = 0xf 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_KEY (line 34) | AF_KEY = 0x1e constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x24 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 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 = 0x1d 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 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 = 0xc008427b 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 = 0x400c426e 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 = 0x80084267 constant BIOCSETIF (line 94) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 95) | BIOCSETWF = 0x80084277 constant BIOCSFILDROP (line 96) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 97) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 98) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x800c426d 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 CPUSTATES (line 150) | CPUSTATES = 0x6 constant CP_IDLE (line 151) | CP_IDLE = 0x5 constant CP_INTR (line 152) | CP_INTR = 0x4 constant CP_NICE (line 153) | CP_NICE = 0x1 constant CP_SPIN (line 154) | CP_SPIN = 0x3 constant CP_SYS (line 155) | CP_SYS = 0x2 constant CP_USER (line 156) | CP_USER = 0x0 constant CREAD (line 157) | CREAD = 0x800 constant CRTSCTS (line 158) | CRTSCTS = 0x10000 constant CS5 (line 159) | CS5 = 0x0 constant CS6 (line 160) | CS6 = 0x100 constant CS7 (line 161) | CS7 = 0x200 constant CS8 (line 162) | CS8 = 0x300 constant CSIZE (line 163) | CSIZE = 0x300 constant CSTART (line 164) | CSTART = 0x11 constant CSTATUS (line 165) | CSTATUS = 0xff constant CSTOP (line 166) | CSTOP = 0x13 constant CSTOPB (line 167) | CSTOPB = 0x400 constant CSUSP (line 168) | CSUSP = 0x1a constant CTL_HW (line 169) | CTL_HW = 0x6 constant CTL_KERN (line 170) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 171) | CTL_MAXNAME = 0xc constant CTL_NET (line 172) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 173) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 174) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 175) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 176) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 177) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 178) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 179) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 180) | DLT_EN3MB = 0x2 constant DLT_ENC (line 181) | DLT_ENC = 0xd constant DLT_FDDI (line 182) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 183) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 184) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 185) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 186) | DLT_LOOP = 0xc constant DLT_MPLS (line 187) | DLT_MPLS = 0xdb constant DLT_NULL (line 188) | DLT_NULL = 0x0 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 DT_BLK (line 199) | DT_BLK = 0x6 constant DT_CHR (line 200) | DT_CHR = 0x2 constant DT_DIR (line 201) | DT_DIR = 0x4 constant DT_FIFO (line 202) | DT_FIFO = 0x1 constant DT_LNK (line 203) | DT_LNK = 0xa constant DT_REG (line 204) | DT_REG = 0x8 constant DT_SOCK (line 205) | DT_SOCK = 0xc constant DT_UNKNOWN (line 206) | DT_UNKNOWN = 0x0 constant ECHO (line 207) | ECHO = 0x8 constant ECHOCTL (line 208) | ECHOCTL = 0x40 constant ECHOE (line 209) | ECHOE = 0x2 constant ECHOK (line 210) | ECHOK = 0x4 constant ECHOKE (line 211) | ECHOKE = 0x1 constant ECHONL (line 212) | ECHONL = 0x10 constant ECHOPRT (line 213) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 214) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 215) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 216) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 217) | ENDRUNDISC = 0x9 constant ETHERMIN (line 218) | ETHERMIN = 0x2e constant ETHERMTU (line 219) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 220) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 221) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 222) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 223) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 224) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 225) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 226) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 227) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 228) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 229) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 230) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 231) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 232) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 233) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 234) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 235) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 236) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 237) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 238) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 239) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 240) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 241) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 242) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 243) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 244) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 245) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 246) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 247) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 248) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 249) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 250) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 251) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 252) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 253) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 254) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 255) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 256) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 257) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 258) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 259) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 260) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 261) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 262) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 263) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 264) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 265) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 266) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 267) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 268) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 269) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 270) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 271) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 272) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 273) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 274) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 275) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 276) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 277) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 278) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 279) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 280) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 281) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 282) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 283) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 284) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 285) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 286) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 287) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 288) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 289) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 290) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 291) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 292) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 293) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 294) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 295) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 296) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 297) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 298) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 299) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 300) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 301) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 302) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 303) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 304) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 305) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 306) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 307) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 308) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 309) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 310) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 311) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 312) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 313) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 314) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 315) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 316) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 317) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 318) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 319) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 320) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 321) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 322) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 323) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 324) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 325) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 326) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 327) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 328) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 329) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 330) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 331) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 332) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 333) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 334) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 335) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 336) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 337) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 338) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 339) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 340) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 341) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 342) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 343) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 344) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 345) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 346) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 347) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 348) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 349) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 350) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 351) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 352) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 353) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 354) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 355) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 356) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 357) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 358) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 359) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 360) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 361) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 362) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 363) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 364) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 365) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 366) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 367) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 368) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 369) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 370) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 371) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 372) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 373) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 374) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 375) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 376) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 377) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 378) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 379) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 380) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 381) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 382) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 383) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 384) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 385) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 386) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 387) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 388) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 389) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 390) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 391) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 392) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 393) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 394) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 395) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 396) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 397) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 398) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 399) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 400) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 401) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 402) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 403) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 404) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 405) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 406) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 407) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 408) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 409) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 410) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 411) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 412) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 413) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 414) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 415) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 416) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 417) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 418) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 419) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 420) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 421) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 422) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 423) | EVFILT_WRITE = -0x2 constant EV_ADD (line 424) | EV_ADD = 0x1 constant EV_CLEAR (line 425) | EV_CLEAR = 0x20 constant EV_DELETE (line 426) | EV_DELETE = 0x2 constant EV_DISABLE (line 427) | EV_DISABLE = 0x8 constant EV_ENABLE (line 428) | EV_ENABLE = 0x4 constant EV_EOF (line 429) | EV_EOF = 0x8000 constant EV_ERROR (line 430) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 431) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 432) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 433) | EV_SYSFLAGS = 0xf000 constant EXTA (line 434) | EXTA = 0x4b00 constant EXTB (line 435) | EXTB = 0x9600 constant EXTPROC (line 436) | EXTPROC = 0x800 constant FD_CLOEXEC (line 437) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 438) | FD_SETSIZE = 0x400 constant FLUSHO (line 439) | FLUSHO = 0x800000 constant F_DUPFD (line 440) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 441) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 442) | F_GETFD = 0x1 constant F_GETFL (line 443) | F_GETFL = 0x3 constant F_GETLK (line 444) | F_GETLK = 0x7 constant F_GETOWN (line 445) | F_GETOWN = 0x5 constant F_OK (line 446) | F_OK = 0x0 constant F_RDLCK (line 447) | F_RDLCK = 0x1 constant F_SETFD (line 448) | F_SETFD = 0x2 constant F_SETFL (line 449) | F_SETFL = 0x4 constant F_SETLK (line 450) | F_SETLK = 0x8 constant F_SETLKW (line 451) | F_SETLKW = 0x9 constant F_SETOWN (line 452) | F_SETOWN = 0x6 constant F_UNLCK (line 453) | F_UNLCK = 0x2 constant F_WRLCK (line 454) | F_WRLCK = 0x3 constant HUPCL (line 455) | HUPCL = 0x4000 constant HW_MACHINE (line 456) | HW_MACHINE = 0x1 constant ICANON (line 457) | ICANON = 0x100 constant ICMP6_FILTER (line 458) | ICMP6_FILTER = 0x12 constant ICRNL (line 459) | ICRNL = 0x100 constant IEXTEN (line 460) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 461) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 462) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 463) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 464) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 465) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 466) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 467) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 468) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 469) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 470) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 471) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 472) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 473) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 474) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 475) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 476) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 477) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 478) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 479) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 480) | IFF_UP = 0x1 constant IFNAMSIZ (line 481) | IFNAMSIZ = 0x10 constant IFT_1822 (line 482) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 483) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 484) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 485) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 486) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 487) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 488) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 489) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 490) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 491) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 492) | IFT_ASYNC = 0x54 constant IFT_ATM (line 493) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 494) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 495) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 496) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 497) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 498) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 499) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 500) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 501) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 502) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 503) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 504) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 505) | IFT_BSC = 0x53 constant IFT_CARP (line 506) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 507) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 508) | IFT_CEPT = 0x13 constant IFT_CES (line 509) | IFT_CES = 0x85 constant IFT_CHANNEL (line 510) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 511) | IFT_CNR = 0x55 constant IFT_COFFEE (line 512) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 513) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 514) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 515) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 516) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 517) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 518) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 519) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 520) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 521) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 522) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 523) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 524) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 525) | IFT_DS3 = 0x1e constant IFT_DTM (line 526) | IFT_DTM = 0x8c constant IFT_DUMMY (line 527) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 528) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 529) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 530) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 531) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 532) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 533) | IFT_ECONET = 0xce constant IFT_ENC (line 534) | IFT_ENC = 0xf4 constant IFT_EON (line 535) | IFT_EON = 0x19 constant IFT_EPLRS (line 536) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 537) | IFT_ESCON = 0x49 constant IFT_ETHER (line 538) | IFT_ETHER = 0x6 constant IFT_FAITH (line 539) | IFT_FAITH = 0xf3 constant IFT_FAST (line 540) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 541) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 542) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 543) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 544) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 545) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 546) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 547) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 548) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 549) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 550) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 551) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 552) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 553) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 554) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 555) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 556) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 557) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 558) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 559) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 560) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 561) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 562) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 563) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 564) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 565) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 566) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 567) | IFT_HSSI = 0x2e constant IFT_HY (line 568) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 569) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 570) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 571) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 572) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 573) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 574) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 575) | IFT_IFGSN = 0x91 constant IFT_IMT (line 576) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 577) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 578) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 579) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 580) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 581) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 582) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 583) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 584) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 585) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 586) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 587) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 588) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 589) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 590) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 591) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 592) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 593) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 594) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 595) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 596) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 597) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 598) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 599) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 600) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 601) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 602) | IFT_LAPB = 0x10 constant IFT_LAPD (line 603) | IFT_LAPD = 0x4d constant IFT_LAPF (line 604) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 605) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 606) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 607) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 608) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 609) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 610) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 611) | IFT_MODEM = 0x30 constant IFT_MPC (line 612) | IFT_MPC = 0x71 constant IFT_MPLS (line 613) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 614) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 615) | IFT_MSDSL = 0x8f constant IFT_MVL (line 616) | IFT_MVL = 0xbf constant IFT_MYRINET (line 617) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 618) | IFT_NFAS = 0xaf constant IFT_NSIP (line 619) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 620) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 621) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 622) | IFT_OTHER = 0x1 constant IFT_P10 (line 623) | IFT_P10 = 0xc constant IFT_P80 (line 624) | IFT_P80 = 0xd constant IFT_PARA (line 625) | IFT_PARA = 0x22 constant IFT_PFLOG (line 626) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 627) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 628) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 629) | IFT_PLC = 0xae constant IFT_PON155 (line 630) | IFT_PON155 = 0xcf constant IFT_PON622 (line 631) | IFT_PON622 = 0xd0 constant IFT_POS (line 632) | IFT_POS = 0xab constant IFT_PPP (line 633) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 634) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 635) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 636) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 637) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 638) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 639) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 640) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 641) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 642) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 643) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 644) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 645) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 646) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 647) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 648) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 649) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 650) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 651) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 652) | IFT_RS232 = 0x21 constant IFT_RSRB (line 653) | IFT_RSRB = 0x4f constant IFT_SDLC (line 654) | IFT_SDLC = 0x11 constant IFT_SDSL (line 655) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 656) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 657) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 658) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 659) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 660) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 661) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 662) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 663) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 664) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 665) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 666) | IFT_SONETVT = 0x33 constant IFT_SRP (line 667) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 668) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 669) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 670) | IFT_STARLAN = 0xb constant IFT_T1 (line 671) | IFT_T1 = 0x12 constant IFT_TDLC (line 672) | IFT_TDLC = 0x74 constant IFT_TELINK (line 673) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 674) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 675) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 676) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 677) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 678) | IFT_ULTRA = 0x1d constant IFT_USB (line 679) | IFT_USB = 0xa0 constant IFT_V11 (line 680) | IFT_V11 = 0x40 constant IFT_V35 (line 681) | IFT_V35 = 0x2d constant IFT_V36 (line 682) | IFT_V36 = 0x41 constant IFT_V37 (line 683) | IFT_V37 = 0x78 constant IFT_VDSL (line 684) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 685) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 686) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 687) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 688) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 689) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 690) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 691) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 692) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 693) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 694) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 695) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 696) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 697) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 698) | IFT_X213 = 0x5d constant IFT_X25 (line 699) | IFT_X25 = 0x5 constant IFT_X25DDN (line 700) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 701) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 702) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 703) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 704) | IFT_XETHER = 0x1a constant IGNBRK (line 705) | IGNBRK = 0x1 constant IGNCR (line 706) | IGNCR = 0x80 constant IGNPAR (line 707) | IGNPAR = 0x4 constant IMAXBEL (line 708) | IMAXBEL = 0x2000 constant INLCR (line 709) | INLCR = 0x40 constant INPCK (line 710) | INPCK = 0x10 constant IN_CLASSA_HOST (line 711) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 712) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 713) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 714) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 715) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 716) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 717) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 718) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 719) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 720) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 721) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 722) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 723) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 724) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 725) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 726) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 727) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 728) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 729) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 730) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 731) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 732) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 733) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 734) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 735) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 736) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 737) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 738) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 739) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 740) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 741) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 742) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 743) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 744) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 745) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 746) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 747) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 748) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 749) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 750) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 751) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 752) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 753) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 754) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 755) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 756) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 757) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 758) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 759) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 760) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 761) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 762) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 763) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 764) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 765) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 766) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 767) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 768) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 769) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 770) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 771) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 772) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 773) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 774) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 775) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 776) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 777) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 778) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 779) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 780) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 781) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 782) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 783) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 784) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 785) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 786) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 787) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 788) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 789) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 790) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 791) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 792) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 793) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 794) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 795) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 796) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 797) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 798) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 799) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 800) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 801) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 802) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 803) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 804) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 805) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 806) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 807) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 808) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 809) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 810) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 811) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 812) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 813) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 814) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 815) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 816) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 817) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 818) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 819) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 820) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 821) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 822) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 823) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 824) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 825) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 826) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 827) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 828) | IP_DF = 0x4000 constant IP_DIVERTFL (line 829) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 830) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 831) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 832) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 833) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 834) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 835) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 836) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 837) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 838) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 839) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 840) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 841) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 842) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 843) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 844) | IP_MF = 0x2000 constant IP_MINTTL (line 845) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 846) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 847) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 848) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 849) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 850) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 851) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 852) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 853) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 854) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 855) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 856) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 857) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 858) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 859) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 860) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 861) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 862) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 863) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 864) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 865) | IP_RETOPTS = 0x8 constant IP_RF (line 866) | IP_RF = 0x8000 constant IP_RTABLE (line 867) | IP_RTABLE = 0x1021 constant IP_TOS (line 868) | IP_TOS = 0x3 constant IP_TTL (line 869) | IP_TTL = 0x4 constant ISIG (line 870) | ISIG = 0x80 constant ISTRIP (line 871) | ISTRIP = 0x20 constant IXANY (line 872) | IXANY = 0x800 constant IXOFF (line 873) | IXOFF = 0x400 constant IXON (line 874) | IXON = 0x200 constant KERN_HOSTNAME (line 875) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 876) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 877) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 878) | KERN_VERSION = 0x4 constant LCNT_OVERLOAD_FLUSH (line 879) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 880) | LOCK_EX = 0x2 constant LOCK_NB (line 881) | LOCK_NB = 0x4 constant LOCK_SH (line 882) | LOCK_SH = 0x1 constant LOCK_UN (line 883) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 884) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 885) | MADV_FREE = 0x6 constant MADV_NORMAL (line 886) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 887) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 888) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 889) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 890) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 891) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 892) | MAP_ANONYMOUS = 0x1000 constant MAP_CONCEAL (line 893) | MAP_CONCEAL = 0x8000 constant MAP_COPY (line 894) | MAP_COPY = 0x2 constant MAP_FILE (line 895) | MAP_FILE = 0x0 constant MAP_FIXED (line 896) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 897) | MAP_FLAGMASK = 0xfff7 constant MAP_HASSEMAPHORE (line 898) | MAP_HASSEMAPHORE = 0x0 constant MAP_INHERIT (line 899) | MAP_INHERIT = 0x0 constant MAP_INHERIT_COPY (line 900) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_NONE (line 901) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 902) | MAP_INHERIT_SHARE = 0x0 constant MAP_NOEXTEND (line 903) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 904) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 905) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 906) | MAP_RENAME = 0x20 constant MAP_SHARED (line 907) | MAP_SHARED = 0x1 constant MAP_STACK (line 908) | MAP_STACK = 0x4000 constant MAP_TRYFIXED (line 909) | MAP_TRYFIXED = 0x0 constant MCL_CURRENT (line 910) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 911) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 912) | MNT_ASYNC = 0x40 constant MNT_DEFEXPORTED (line 913) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 914) | MNT_DELEXPORT = 0x20000 constant MNT_DOOMED (line 915) | MNT_DOOMED = 0x8000000 constant MNT_EXPORTANON (line 916) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 917) | MNT_EXPORTED = 0x100 constant MNT_EXRDONLY (line 918) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 919) | MNT_FORCE = 0x80000 constant MNT_LAZY (line 920) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 921) | MNT_LOCAL = 0x1000 constant MNT_NOATIME (line 922) | MNT_NOATIME = 0x8000 constant MNT_NODEV (line 923) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 924) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 925) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 926) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 927) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 928) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 929) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 930) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 931) | MNT_SOFTDEP = 0x4000000 constant MNT_SYNCHRONOUS (line 932) | MNT_SYNCHRONOUS = 0x2 constant MNT_UPDATE (line 933) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 934) | MNT_VISFLAGMASK = 0x400ffff constant MNT_WAIT (line 935) | MNT_WAIT = 0x1 constant MNT_WANTRDWR (line 936) | MNT_WANTRDWR = 0x2000000 constant MNT_WXALLOWED (line 937) | MNT_WXALLOWED = 0x800 constant MSG_BCAST (line 938) | MSG_BCAST = 0x100 constant MSG_CTRUNC (line 939) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 940) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 941) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 942) | MSG_EOR = 0x8 constant MSG_MCAST (line 943) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 944) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 945) | MSG_OOB = 0x1 constant MSG_PEEK (line 946) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 947) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 948) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 949) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 950) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 951) | MS_SYNC = 0x2 constant NAME_MAX (line 952) | NAME_MAX = 0xff constant NET_RT_DUMP (line 953) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 954) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 955) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 956) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 957) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 958) | NET_RT_TABLE = 0x5 constant NFDBITS (line 959) | NFDBITS = 0x20 constant NOFLSH (line 960) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 961) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 962) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 963) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 964) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 965) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 966) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 967) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 968) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 969) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 970) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 971) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 972) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 973) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 974) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 975) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 976) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 977) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 978) | NOTE_WRITE = 0x2 constant OCRNL (line 979) | OCRNL = 0x10 constant ONLCR (line 980) | ONLCR = 0x2 constant ONLRET (line 981) | ONLRET = 0x80 constant ONOCR (line 982) | ONOCR = 0x40 constant ONOEOT (line 983) | ONOEOT = 0x8 constant OPOST (line 984) | OPOST = 0x1 constant O_ACCMODE (line 985) | O_ACCMODE = 0x3 constant O_APPEND (line 986) | O_APPEND = 0x8 constant O_ASYNC (line 987) | O_ASYNC = 0x40 constant O_CLOEXEC (line 988) | O_CLOEXEC = 0x10000 constant O_CREAT (line 989) | O_CREAT = 0x200 constant O_DIRECTORY (line 990) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 991) | O_DSYNC = 0x80 constant O_EXCL (line 992) | O_EXCL = 0x800 constant O_EXLOCK (line 993) | O_EXLOCK = 0x20 constant O_FSYNC (line 994) | O_FSYNC = 0x80 constant O_NDELAY (line 995) | O_NDELAY = 0x4 constant O_NOCTTY (line 996) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 997) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 998) | O_NONBLOCK = 0x4 constant O_RDONLY (line 999) | O_RDONLY = 0x0 constant O_RDWR (line 1000) | O_RDWR = 0x2 constant O_RSYNC (line 1001) | O_RSYNC = 0x80 constant O_SHLOCK (line 1002) | O_SHLOCK = 0x10 constant O_SYNC (line 1003) | O_SYNC = 0x80 constant O_TRUNC (line 1004) | O_TRUNC = 0x400 constant O_WRONLY (line 1005) | O_WRONLY = 0x1 constant PARENB (line 1006) | PARENB = 0x1000 constant PARMRK (line 1007) | PARMRK = 0x8 constant PARODD (line 1008) | PARODD = 0x2000 constant PENDIN (line 1009) | PENDIN = 0x20000000 constant PF_FLUSH (line 1010) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 1011) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1012) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1013) | PRIO_USER = 0x2 constant PROT_EXEC (line 1014) | PROT_EXEC = 0x4 constant PROT_NONE (line 1015) | PROT_NONE = 0x0 constant PROT_READ (line 1016) | PROT_READ = 0x1 constant PROT_WRITE (line 1017) | PROT_WRITE = 0x2 constant PT_MASK (line 1018) | PT_MASK = 0x3ff000 constant RLIMIT_CORE (line 1019) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1020) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1021) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1022) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1023) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1024) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1025) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1026) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1027) | RTAX_BRD = 0x7 constant RTAX_DST (line 1028) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1029) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1030) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1031) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1032) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 1033) | RTAX_LABEL = 0xa constant RTAX_MAX (line 1034) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 1035) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 1036) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 1037) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 1038) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1039) | RTA_BRD = 0x80 constant RTA_DST (line 1040) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1041) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1042) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1043) | RTA_IFA = 0x20 constant RTA_IFP (line 1044) | RTA_IFP = 0x10 constant RTA_LABEL (line 1045) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1046) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1047) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1048) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1049) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1050) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1051) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1052) | RTF_CLONING = 0x100 constant RTF_DONE (line 1053) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1054) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1055) | RTF_FMASK = 0x10f808 constant RTF_GATEWAY (line 1056) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1057) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1058) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1059) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1060) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1061) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1062) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1063) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1064) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1065) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1066) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1067) | RTF_REJECT = 0x8 constant RTF_SOURCE (line 1068) | RTF_SOURCE = 0x20000 constant RTF_STATIC (line 1069) | RTF_STATIC = 0x800 constant RTF_TUNNEL (line 1070) | RTF_TUNNEL = 0x100000 constant RTF_UP (line 1071) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1072) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1073) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1074) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1075) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1076) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1077) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1078) | RTM_DESYNC = 0x10 constant RTM_GET (line 1079) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1080) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1081) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1082) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1083) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1084) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1085) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1086) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1087) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1088) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1089) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1090) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1091) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1092) | RTV_HOPCOUNT = 0x2 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 RT_TABLEID_MAX (line 1099) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1100) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1101) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1102) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1103) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1104) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1105) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1106) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1107) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1108) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1109) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1110) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1111) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1112) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1113) | SIOCBRDGADD = 0x8054693c constant SIOCBRDGADDS (line 1114) | SIOCBRDGADDS = 0x80546941 constant SIOCBRDGARL (line 1115) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1116) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1117) | SIOCBRDGDEL = 0x8054693d constant SIOCBRDGDELS (line 1118) | SIOCBRDGDELS = 0x80546942 constant SIOCBRDGFLUSH (line 1119) | SIOCBRDGFLUSH = 0x80546948 constant SIOCBRDGFRL (line 1120) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1121) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1122) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1123) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1124) | SIOCBRDGGIFFLGS = 0xc054693e constant SIOCBRDGGMA (line 1125) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1126) | SIOCBRDGGPARAM = 0xc03c6958 constant SIOCBRDGGPRI (line 1127) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1128) | SIOCBRDGGRL = 0xc028694f constant SIOCBRDGGSIFS (line 1129) | SIOCBRDGGSIFS = 0xc054693c constant SIOCBRDGGTO (line 1130) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1131) | SIOCBRDGIFS = 0xc0546942 constant SIOCBRDGRTS (line 1132) | SIOCBRDGRTS = 0xc0186943 constant SIOCBRDGSADDR (line 1133) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1134) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1135) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1136) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1137) | SIOCBRDGSIFCOST = 0x80546955 constant SIOCBRDGSIFFLGS (line 1138) | SIOCBRDGSIFFLGS = 0x8054693f constant SIOCBRDGSIFPRIO (line 1139) | SIOCBRDGSIFPRIO = 0x80546954 constant SIOCBRDGSMA (line 1140) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1141) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1142) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1143) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1144) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1145) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1146) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1147) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1148) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1149) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1150) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1151) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1152) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1153) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1154) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1155) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGETVLAN (line 1156) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1157) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1158) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1159) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1160) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1161) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDATA (line 1162) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1163) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1164) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1165) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1166) | SIOCGIFGATTR = 0xc024698b constant SIOCGIFGENERIC (line 1167) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1168) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1169) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFHARDMTU (line 1170) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1171) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1172) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1173) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1174) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1175) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1176) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1177) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1178) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1179) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFTIMESLOT (line 1180) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1181) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1182) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1183) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1184) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1185) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1186) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1187) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1188) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1189) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1190) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1191) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1192) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1193) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSETKALIVE (line 1194) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1195) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1196) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1197) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1198) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1199) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1200) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1201) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1202) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1203) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1204) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1205) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1206) | SIOCSIFGATTR = 0x8024698c constant SIOCSIFGENERIC (line 1207) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1208) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1209) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1210) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1211) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1212) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1213) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1214) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1215) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1216) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1217) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1218) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1219) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1220) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1221) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1222) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1223) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1224) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1225) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1226) | SIOCSVNETID = 0x802069a6 constant SOCK_DGRAM (line 1227) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 1228) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1229) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1230) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1231) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1232) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1233) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1234) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1235) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1236) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1237) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1238) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1239) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1240) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1241) | SO_LINGER = 0x80 constant SO_NETPROC (line 1242) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1243) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1244) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1245) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1246) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1247) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1248) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1249) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1250) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1251) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1252) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1253) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1254) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1255) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1256) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1257) | SO_USELOOPBACK = 0x40 constant S_BLKSIZE (line 1258) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1259) | S_IEXEC = 0x40 constant S_IFBLK (line 1260) | S_IFBLK = 0x6000 constant S_IFCHR (line 1261) | S_IFCHR = 0x2000 constant S_IFDIR (line 1262) | S_IFDIR = 0x4000 constant S_IFIFO (line 1263) | S_IFIFO = 0x1000 constant S_IFLNK (line 1264) | S_IFLNK = 0xa000 constant S_IFMT (line 1265) | S_IFMT = 0xf000 constant S_IFREG (line 1266) | S_IFREG = 0x8000 constant S_IFSOCK (line 1267) | S_IFSOCK = 0xc000 constant S_IREAD (line 1268) | S_IREAD = 0x100 constant S_IRGRP (line 1269) | S_IRGRP = 0x20 constant S_IROTH (line 1270) | S_IROTH = 0x4 constant S_IRUSR (line 1271) | S_IRUSR = 0x100 constant S_IRWXG (line 1272) | S_IRWXG = 0x38 constant S_IRWXO (line 1273) | S_IRWXO = 0x7 constant S_IRWXU (line 1274) | S_IRWXU = 0x1c0 constant S_ISGID (line 1275) | S_ISGID = 0x400 constant S_ISTXT (line 1276) | S_ISTXT = 0x200 constant S_ISUID (line 1277) | S_ISUID = 0x800 constant S_ISVTX (line 1278) | S_ISVTX = 0x200 constant S_IWGRP (line 1279) | S_IWGRP = 0x10 constant S_IWOTH (line 1280) | S_IWOTH = 0x2 constant S_IWRITE (line 1281) | S_IWRITE = 0x80 constant S_IWUSR (line 1282) | S_IWUSR = 0x80 constant S_IXGRP (line 1283) | S_IXGRP = 0x8 constant S_IXOTH (line 1284) | S_IXOTH = 0x1 constant S_IXUSR (line 1285) | S_IXUSR = 0x40 constant TCIFLUSH (line 1286) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1287) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1288) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1289) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1290) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1291) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1292) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1293) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1294) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1295) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1296) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1297) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1298) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1299) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1300) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1301) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1302) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1303) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1304) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1305) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1306) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1307) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1308) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1309) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1310) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1311) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1312) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1313) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1314) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1315) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1316) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1317) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1318) | TIOCGTSTAMP = 0x400c745b constant TIOCGWINSZ (line 1319) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1320) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1321) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1322) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1323) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1324) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1325) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1326) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1327) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1328) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1329) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1330) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1331) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1332) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1333) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1334) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1335) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1336) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1337) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1338) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1339) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1340) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1341) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1342) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1343) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1344) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1345) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1346) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1347) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1348) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1349) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1350) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1351) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1352) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1353) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1354) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1355) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1356) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1357) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1358) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1359) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1360) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1361) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1362) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1363) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1364) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1365) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1366) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1367) | TOSTOP = 0x400000 constant VDISCARD (line 1368) | VDISCARD = 0xf constant VDSUSP (line 1369) | VDSUSP = 0xb constant VEOF (line 1370) | VEOF = 0x0 constant VEOL (line 1371) | VEOL = 0x1 constant VEOL2 (line 1372) | VEOL2 = 0x2 constant VERASE (line 1373) | VERASE = 0x3 constant VINTR (line 1374) | VINTR = 0x8 constant VKILL (line 1375) | VKILL = 0x5 constant VLNEXT (line 1376) | VLNEXT = 0xe constant VMIN (line 1377) | VMIN = 0x10 constant VQUIT (line 1378) | VQUIT = 0x9 constant VREPRINT (line 1379) | VREPRINT = 0x6 constant VSTART (line 1380) | VSTART = 0xc constant VSTATUS (line 1381) | VSTATUS = 0x12 constant VSTOP (line 1382) | VSTOP = 0xd constant VSUSP (line 1383) | VSUSP = 0xa constant VTIME (line 1384) | VTIME = 0x11 constant VWERASE (line 1385) | VWERASE = 0x4 constant WALTSIG (line 1386) | WALTSIG = 0x4 constant WCONTINUED (line 1387) | WCONTINUED = 0x8 constant WCOREFLAG (line 1388) | WCOREFLAG = 0x80 constant WNOHANG (line 1389) | WNOHANG = 0x1 constant WSTOPPED (line 1390) | WSTOPPED = 0x7f constant WUNTRACED (line 1391) | WUNTRACED = 0x2 constant E2BIG (line 1396) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1397) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1398) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1399) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1400) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1401) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1402) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1403) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1404) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1405) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1406) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1407) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1408) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1409) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1410) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1411) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1412) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1413) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1414) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1415) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1416) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1417) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1418) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1419) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1420) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1421) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1422) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1423) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1424) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1425) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1426) | EINVAL = syscall.Errno(0x16) constant EIO (line 1427) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1428) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1429) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1430) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1431) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1432) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1433) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1434) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1435) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1436) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1437) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1438) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1439) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1440) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1441) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1442) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1443) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1444) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1445) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1446) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1447) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1448) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1449) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1450) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1451) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1452) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1453) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1454) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1455) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1456) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1457) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1458) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1459) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1460) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1461) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1462) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1463) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1464) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1465) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1466) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1467) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1468) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1469) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1470) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1471) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1472) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1473) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1474) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1475) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1476) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1477) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1478) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1479) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1480) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1481) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1482) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1483) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1484) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1485) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1486) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1487) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1488) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1493) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1494) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1495) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1496) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1497) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1498) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1499) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1500) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1501) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1502) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1503) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1504) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1505) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1506) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1507) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1508) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1509) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1510) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1511) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1512) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1513) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1514) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1515) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1516) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1517) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1518) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1519) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1520) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1521) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1522) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1523) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1524) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1525) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x20 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_ENCAP (line 26) | AF_ENCAP = 0x1c constant AF_HYLINK (line 27) | AF_HYLINK = 0xf 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_KEY (line 34) | AF_KEY = 0x1e constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x24 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 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 = 0x1d 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 ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 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 B4800 (line 69) | B4800 = 0x12c0 constant B50 (line 70) | B50 = 0x32 constant B57600 (line 71) | B57600 = 0xe100 constant B600 (line 72) | B600 = 0x258 constant B7200 (line 73) | B7200 = 0x1c20 constant B75 (line 74) | B75 = 0x4b constant B76800 (line 75) | B76800 = 0x12c00 constant B9600 (line 76) | B9600 = 0x2580 constant BIOCFLUSH (line 77) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 78) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 79) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 80) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 81) | BIOCGDLTLIST = 0xc010427b constant BIOCGETIF (line 82) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 83) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 84) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 85) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 86) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSTATS (line 87) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 88) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 89) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 90) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 91) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 92) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 93) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 94) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 95) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 96) | BIOCSETWF = 0x80104277 constant BIOCSFILDROP (line 97) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 99) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x8010426d constant BIOCVERSION (line 101) | BIOCVERSION = 0x40044271 constant BPF_A (line 102) | BPF_A = 0x10 constant BPF_ABS (line 103) | BPF_ABS = 0x20 constant BPF_ADD (line 104) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 105) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 106) | BPF_ALU = 0x4 constant BPF_AND (line 107) | BPF_AND = 0x50 constant BPF_B (line 108) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 109) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 110) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 111) | BPF_DIV = 0x30 constant BPF_H (line 112) | BPF_H = 0x8 constant BPF_IMM (line 113) | BPF_IMM = 0x0 constant BPF_IND (line 114) | BPF_IND = 0x40 constant BPF_JA (line 115) | BPF_JA = 0x0 constant BPF_JEQ (line 116) | BPF_JEQ = 0x10 constant BPF_JGE (line 117) | BPF_JGE = 0x30 constant BPF_JGT (line 118) | BPF_JGT = 0x20 constant BPF_JMP (line 119) | BPF_JMP = 0x5 constant BPF_JSET (line 120) | BPF_JSET = 0x40 constant BPF_K (line 121) | BPF_K = 0x0 constant BPF_LD (line 122) | BPF_LD = 0x0 constant BPF_LDX (line 123) | BPF_LDX = 0x1 constant BPF_LEN (line 124) | BPF_LEN = 0x80 constant BPF_LSH (line 125) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 126) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 127) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 128) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 129) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 130) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 131) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 132) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 133) | BPF_MISC = 0x7 constant BPF_MSH (line 134) | BPF_MSH = 0xa0 constant BPF_MUL (line 135) | BPF_MUL = 0x20 constant BPF_NEG (line 136) | BPF_NEG = 0x80 constant BPF_OR (line 137) | BPF_OR = 0x40 constant BPF_RELEASE (line 138) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 139) | BPF_RET = 0x6 constant BPF_RSH (line 140) | BPF_RSH = 0x70 constant BPF_ST (line 141) | BPF_ST = 0x2 constant BPF_STX (line 142) | BPF_STX = 0x3 constant BPF_SUB (line 143) | BPF_SUB = 0x10 constant BPF_TAX (line 144) | BPF_TAX = 0x0 constant BPF_TXA (line 145) | BPF_TXA = 0x80 constant BPF_W (line 146) | BPF_W = 0x0 constant BPF_X (line 147) | BPF_X = 0x8 constant BRKINT (line 148) | BRKINT = 0x2 constant CFLUSH (line 149) | CFLUSH = 0xf constant CLOCAL (line 150) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 151) | CLOCK_BOOTTIME = 0x6 constant CLOCK_MONOTONIC (line 152) | CLOCK_MONOTONIC = 0x3 constant CLOCK_PROCESS_CPUTIME_ID (line 153) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 154) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 155) | CLOCK_THREAD_CPUTIME_ID = 0x4 constant CLOCK_UPTIME (line 156) | CLOCK_UPTIME = 0x5 constant CPUSTATES (line 157) | CPUSTATES = 0x6 constant CP_IDLE (line 158) | CP_IDLE = 0x5 constant CP_INTR (line 159) | CP_INTR = 0x4 constant CP_NICE (line 160) | CP_NICE = 0x1 constant CP_SPIN (line 161) | CP_SPIN = 0x3 constant CP_SYS (line 162) | CP_SYS = 0x2 constant CP_USER (line 163) | CP_USER = 0x0 constant CREAD (line 164) | CREAD = 0x800 constant CRTSCTS (line 165) | CRTSCTS = 0x10000 constant CS5 (line 166) | CS5 = 0x0 constant CS6 (line 167) | CS6 = 0x100 constant CS7 (line 168) | CS7 = 0x200 constant CS8 (line 169) | CS8 = 0x300 constant CSIZE (line 170) | CSIZE = 0x300 constant CSTART (line 171) | CSTART = 0x11 constant CSTATUS (line 172) | CSTATUS = 0xff constant CSTOP (line 173) | CSTOP = 0x13 constant CSTOPB (line 174) | CSTOPB = 0x400 constant CSUSP (line 175) | CSUSP = 0x1a constant CTL_HW (line 176) | CTL_HW = 0x6 constant CTL_KERN (line 177) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 178) | CTL_MAXNAME = 0xc constant CTL_NET (line 179) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 180) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 181) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 182) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 183) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 184) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 185) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 186) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 187) | DLT_EN3MB = 0x2 constant DLT_ENC (line 188) | DLT_ENC = 0xd constant DLT_FDDI (line 189) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 190) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 191) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 192) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 193) | DLT_LOOP = 0xc constant DLT_MPLS (line 194) | DLT_MPLS = 0xdb constant DLT_NULL (line 195) | DLT_NULL = 0x0 constant DLT_OPENFLOW (line 196) | DLT_OPENFLOW = 0x10b constant DLT_PFLOG (line 197) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 198) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 199) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 200) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 201) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 202) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 203) | DLT_PRONET = 0x4 constant DLT_RAW (line 204) | DLT_RAW = 0xe constant DLT_SLIP (line 205) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 206) | DLT_SLIP_BSDOS = 0xf constant DLT_USBPCAP (line 207) | DLT_USBPCAP = 0xf9 constant DLT_USER0 (line 208) | DLT_USER0 = 0x93 constant DLT_USER1 (line 209) | DLT_USER1 = 0x94 constant DLT_USER10 (line 210) | DLT_USER10 = 0x9d constant DLT_USER11 (line 211) | DLT_USER11 = 0x9e constant DLT_USER12 (line 212) | DLT_USER12 = 0x9f constant DLT_USER13 (line 213) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 214) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 215) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 216) | DLT_USER2 = 0x95 constant DLT_USER3 (line 217) | DLT_USER3 = 0x96 constant DLT_USER4 (line 218) | DLT_USER4 = 0x97 constant DLT_USER5 (line 219) | DLT_USER5 = 0x98 constant DLT_USER6 (line 220) | DLT_USER6 = 0x99 constant DLT_USER7 (line 221) | DLT_USER7 = 0x9a constant DLT_USER8 (line 222) | DLT_USER8 = 0x9b constant DLT_USER9 (line 223) | DLT_USER9 = 0x9c constant DT_BLK (line 224) | DT_BLK = 0x6 constant DT_CHR (line 225) | DT_CHR = 0x2 constant DT_DIR (line 226) | DT_DIR = 0x4 constant DT_FIFO (line 227) | DT_FIFO = 0x1 constant DT_LNK (line 228) | DT_LNK = 0xa constant DT_REG (line 229) | DT_REG = 0x8 constant DT_SOCK (line 230) | DT_SOCK = 0xc constant DT_UNKNOWN (line 231) | DT_UNKNOWN = 0x0 constant ECHO (line 232) | ECHO = 0x8 constant ECHOCTL (line 233) | ECHOCTL = 0x40 constant ECHOE (line 234) | ECHOE = 0x2 constant ECHOK (line 235) | ECHOK = 0x4 constant ECHOKE (line 236) | ECHOKE = 0x1 constant ECHONL (line 237) | ECHONL = 0x10 constant ECHOPRT (line 238) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 239) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 240) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 241) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 242) | ENDRUNDISC = 0x9 constant ETHERMIN (line 243) | ETHERMIN = 0x2e constant ETHERMTU (line 244) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 245) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 246) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 247) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 248) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 249) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 250) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 251) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 252) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 253) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 254) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 255) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 256) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 257) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 258) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 259) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 260) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 261) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 262) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 263) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 264) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 265) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 266) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 267) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 268) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 269) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 270) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 271) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 272) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 273) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 274) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 275) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 276) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 277) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 278) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 279) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 280) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 281) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 282) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 283) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 284) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 285) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 286) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 287) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 288) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 289) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 290) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 291) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 292) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 293) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 294) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 295) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 296) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 297) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 298) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 299) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 300) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 301) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 302) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 303) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 304) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 305) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 306) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 307) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 308) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 309) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 310) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 311) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 312) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 313) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 314) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 315) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 316) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 317) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 318) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 319) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 320) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 321) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 322) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 323) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 324) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 325) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 326) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 327) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 328) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 329) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 330) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 331) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 332) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 333) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 334) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 335) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 336) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 337) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 338) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 339) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 340) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 341) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 342) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 343) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 344) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 345) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 346) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 347) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 348) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 349) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 350) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 351) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 352) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 353) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 354) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 355) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 356) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 357) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 358) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 359) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 360) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 361) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 362) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 363) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 364) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 365) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 366) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 367) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 368) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 369) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 370) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 371) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 372) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 373) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 374) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 375) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 376) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 377) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 378) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 379) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 380) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 381) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 382) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 383) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 384) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 385) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 386) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 387) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 388) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 389) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 390) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 391) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 392) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 393) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 394) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 395) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 396) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 397) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 398) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 399) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 400) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 401) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 402) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 403) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 404) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 405) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 406) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 407) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 408) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 409) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 410) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 411) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 412) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 413) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 414) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 415) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 416) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 417) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 418) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 419) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 420) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 421) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 422) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 423) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 424) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 425) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 426) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 427) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 428) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 429) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 430) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 431) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 432) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 433) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 434) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 435) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 436) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_HARDMTU_LEN (line 437) | ETHER_MAX_HARDMTU_LEN = 0xff9b constant ETHER_MAX_LEN (line 438) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 439) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 440) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 441) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 442) | EVFILT_AIO = -0x3 constant EVFILT_DEVICE (line 443) | EVFILT_DEVICE = -0x8 constant EVFILT_PROC (line 444) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 445) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 446) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 447) | EVFILT_SYSCOUNT = 0x8 constant EVFILT_TIMER (line 448) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 449) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 450) | EVFILT_WRITE = -0x2 constant EVL_ENCAPLEN (line 451) | EVL_ENCAPLEN = 0x4 constant EVL_PRIO_BITS (line 452) | EVL_PRIO_BITS = 0xd constant EVL_PRIO_MAX (line 453) | EVL_PRIO_MAX = 0x7 constant EVL_VLID_MASK (line 454) | EVL_VLID_MASK = 0xfff constant EVL_VLID_MAX (line 455) | EVL_VLID_MAX = 0xffe constant EVL_VLID_MIN (line 456) | EVL_VLID_MIN = 0x1 constant EVL_VLID_NULL (line 457) | EVL_VLID_NULL = 0x0 constant EV_ADD (line 458) | EV_ADD = 0x1 constant EV_CLEAR (line 459) | EV_CLEAR = 0x20 constant EV_DELETE (line 460) | EV_DELETE = 0x2 constant EV_DISABLE (line 461) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 462) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 463) | EV_ENABLE = 0x4 constant EV_EOF (line 464) | EV_EOF = 0x8000 constant EV_ERROR (line 465) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 466) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 467) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 468) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 469) | EV_SYSFLAGS = 0xf000 constant EXTA (line 470) | EXTA = 0x4b00 constant EXTB (line 471) | EXTB = 0x9600 constant EXTPROC (line 472) | EXTPROC = 0x800 constant FD_CLOEXEC (line 473) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 474) | FD_SETSIZE = 0x400 constant FLUSHO (line 475) | FLUSHO = 0x800000 constant F_DUPFD (line 476) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 477) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 478) | F_GETFD = 0x1 constant F_GETFL (line 479) | F_GETFL = 0x3 constant F_GETLK (line 480) | F_GETLK = 0x7 constant F_GETOWN (line 481) | F_GETOWN = 0x5 constant F_ISATTY (line 482) | F_ISATTY = 0xb constant F_OK (line 483) | F_OK = 0x0 constant F_RDLCK (line 484) | F_RDLCK = 0x1 constant F_SETFD (line 485) | F_SETFD = 0x2 constant F_SETFL (line 486) | F_SETFL = 0x4 constant F_SETLK (line 487) | F_SETLK = 0x8 constant F_SETLKW (line 488) | F_SETLKW = 0x9 constant F_SETOWN (line 489) | F_SETOWN = 0x6 constant F_UNLCK (line 490) | F_UNLCK = 0x2 constant F_WRLCK (line 491) | F_WRLCK = 0x3 constant HUPCL (line 492) | HUPCL = 0x4000 constant HW_MACHINE (line 493) | HW_MACHINE = 0x1 constant ICANON (line 494) | ICANON = 0x100 constant ICMP6_FILTER (line 495) | ICMP6_FILTER = 0x12 constant ICRNL (line 496) | ICRNL = 0x100 constant IEXTEN (line 497) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 498) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 499) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 500) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 501) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 502) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 503) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 504) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 505) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 506) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 507) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 508) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 509) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 510) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 511) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 512) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 513) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 514) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 515) | IFF_STATICARP = 0x20 constant IFF_UP (line 516) | IFF_UP = 0x1 constant IFNAMSIZ (line 517) | IFNAMSIZ = 0x10 constant IFT_1822 (line 518) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 519) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 520) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 521) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 522) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 523) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 524) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 525) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 526) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 527) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 528) | IFT_ASYNC = 0x54 constant IFT_ATM (line 529) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 530) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 531) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 532) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 533) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 534) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 535) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 536) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 537) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 538) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 539) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 540) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 541) | IFT_BSC = 0x53 constant IFT_CARP (line 542) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 543) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 544) | IFT_CEPT = 0x13 constant IFT_CES (line 545) | IFT_CES = 0x85 constant IFT_CHANNEL (line 546) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 547) | IFT_CNR = 0x55 constant IFT_COFFEE (line 548) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 549) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 550) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 551) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 552) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 553) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 554) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 555) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 556) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 557) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 558) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 559) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 560) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 561) | IFT_DS3 = 0x1e constant IFT_DTM (line 562) | IFT_DTM = 0x8c constant IFT_DUMMY (line 563) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 564) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 565) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 566) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 567) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 568) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 569) | IFT_ECONET = 0xce constant IFT_ENC (line 570) | IFT_ENC = 0xf4 constant IFT_EON (line 571) | IFT_EON = 0x19 constant IFT_EPLRS (line 572) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 573) | IFT_ESCON = 0x49 constant IFT_ETHER (line 574) | IFT_ETHER = 0x6 constant IFT_FAITH (line 575) | IFT_FAITH = 0xf3 constant IFT_FAST (line 576) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 577) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 578) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 579) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 580) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 581) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 582) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 583) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 584) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 585) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 586) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 587) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 588) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 589) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 590) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 591) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 592) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 593) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 594) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 595) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 596) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 597) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 598) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 599) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 600) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 601) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 602) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 603) | IFT_HSSI = 0x2e constant IFT_HY (line 604) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 605) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 606) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 607) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 608) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 609) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 610) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 611) | IFT_IFGSN = 0x91 constant IFT_IMT (line 612) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 613) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 614) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 615) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 616) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 617) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 618) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 619) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 620) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 621) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 622) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 623) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 624) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 625) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 626) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 627) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 628) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 629) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 630) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 631) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 632) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 633) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 634) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 635) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 636) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 637) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 638) | IFT_LAPB = 0x10 constant IFT_LAPD (line 639) | IFT_LAPD = 0x4d constant IFT_LAPF (line 640) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 641) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 642) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 643) | IFT_LOOP = 0x18 constant IFT_MBIM (line 644) | IFT_MBIM = 0xfa constant IFT_MEDIAMAILOVERIP (line 645) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 646) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 647) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 648) | IFT_MODEM = 0x30 constant IFT_MPC (line 649) | IFT_MPC = 0x71 constant IFT_MPLS (line 650) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 651) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 652) | IFT_MSDSL = 0x8f constant IFT_MVL (line 653) | IFT_MVL = 0xbf constant IFT_MYRINET (line 654) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 655) | IFT_NFAS = 0xaf constant IFT_NSIP (line 656) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 657) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 658) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 659) | IFT_OTHER = 0x1 constant IFT_P10 (line 660) | IFT_P10 = 0xc constant IFT_P80 (line 661) | IFT_P80 = 0xd constant IFT_PARA (line 662) | IFT_PARA = 0x22 constant IFT_PFLOG (line 663) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 664) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 665) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 666) | IFT_PLC = 0xae constant IFT_PON155 (line 667) | IFT_PON155 = 0xcf constant IFT_PON622 (line 668) | IFT_PON622 = 0xd0 constant IFT_POS (line 669) | IFT_POS = 0xab constant IFT_PPP (line 670) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 671) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 672) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 673) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 674) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 675) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 676) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 677) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 678) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 679) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 680) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 681) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 682) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 683) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 684) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 685) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 686) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 687) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 688) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 689) | IFT_RS232 = 0x21 constant IFT_RSRB (line 690) | IFT_RSRB = 0x4f constant IFT_SDLC (line 691) | IFT_SDLC = 0x11 constant IFT_SDSL (line 692) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 693) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 694) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 695) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 696) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 697) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 698) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 699) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 700) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 701) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 702) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 703) | IFT_SONETVT = 0x33 constant IFT_SRP (line 704) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 705) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 706) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 707) | IFT_STARLAN = 0xb constant IFT_T1 (line 708) | IFT_T1 = 0x12 constant IFT_TDLC (line 709) | IFT_TDLC = 0x74 constant IFT_TELINK (line 710) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 711) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 712) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 713) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 714) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 715) | IFT_ULTRA = 0x1d constant IFT_USB (line 716) | IFT_USB = 0xa0 constant IFT_V11 (line 717) | IFT_V11 = 0x40 constant IFT_V35 (line 718) | IFT_V35 = 0x2d constant IFT_V36 (line 719) | IFT_V36 = 0x41 constant IFT_V37 (line 720) | IFT_V37 = 0x78 constant IFT_VDSL (line 721) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 722) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 723) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 724) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 725) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 726) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 727) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 728) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 729) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 730) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 731) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 732) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 733) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 734) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 735) | IFT_X213 = 0x5d constant IFT_X25 (line 736) | IFT_X25 = 0x5 constant IFT_X25DDN (line 737) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 738) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 739) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 740) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 741) | IFT_XETHER = 0x1a constant IGNBRK (line 742) | IGNBRK = 0x1 constant IGNCR (line 743) | IGNCR = 0x80 constant IGNPAR (line 744) | IGNPAR = 0x4 constant IMAXBEL (line 745) | IMAXBEL = 0x2000 constant INLCR (line 746) | INLCR = 0x40 constant INPCK (line 747) | INPCK = 0x10 constant IN_CLASSA_HOST (line 748) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 749) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 750) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 751) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 752) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 753) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 754) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 755) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 756) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 757) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 758) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 759) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 760) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 761) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 762) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 763) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 764) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 765) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 766) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 767) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 768) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 769) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 770) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 771) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 772) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 773) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 774) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 775) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 776) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 777) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 778) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 779) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 780) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 781) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 782) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 783) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 784) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 785) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 786) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 787) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 788) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 789) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 790) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 791) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 792) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 793) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 794) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 795) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 796) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 797) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 798) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 799) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 800) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 801) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 802) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 803) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 804) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 805) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 806) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 807) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 808) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 809) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 810) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 811) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 812) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 813) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 814) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 815) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 816) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 817) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 818) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 819) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 820) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 821) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 822) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 823) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 824) | IPV6_MAXPACKET = 0xffff constant IPV6_MINHOPCOUNT (line 825) | IPV6_MINHOPCOUNT = 0x41 constant IPV6_MMTU (line 826) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 827) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 828) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 829) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 830) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 831) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 832) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 833) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 834) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 835) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 836) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 837) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 838) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 839) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 840) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 841) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 842) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 843) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 844) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 845) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 846) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 847) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 848) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 849) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 850) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 851) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 852) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 853) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 854) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 855) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 856) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 857) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 858) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 859) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 860) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 861) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 862) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 863) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 864) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 865) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 866) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 867) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 868) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 869) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPDEFTTL (line 870) | IP_IPDEFTTL = 0x25 constant IP_IPSECFLOWINFO (line 871) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 872) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 873) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 874) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 875) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 876) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 877) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 878) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 879) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 880) | IP_MF = 0x2000 constant IP_MINTTL (line 881) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 882) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 883) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 884) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 885) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 886) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 887) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 888) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 889) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 890) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 891) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 892) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 893) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 894) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 895) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 896) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 897) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 898) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 899) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 900) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 901) | IP_RETOPTS = 0x8 constant IP_RF (line 902) | IP_RF = 0x8000 constant IP_RTABLE (line 903) | IP_RTABLE = 0x1021 constant IP_SENDSRCADDR (line 904) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 905) | IP_TOS = 0x3 constant IP_TTL (line 906) | IP_TTL = 0x4 constant ISIG (line 907) | ISIG = 0x80 constant ISTRIP (line 908) | ISTRIP = 0x20 constant IUCLC (line 909) | IUCLC = 0x1000 constant IXANY (line 910) | IXANY = 0x800 constant IXOFF (line 911) | IXOFF = 0x400 constant IXON (line 912) | IXON = 0x200 constant KERN_HOSTNAME (line 913) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 914) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 915) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 916) | KERN_VERSION = 0x4 constant LCNT_OVERLOAD_FLUSH (line 917) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 918) | LOCK_EX = 0x2 constant LOCK_NB (line 919) | LOCK_NB = 0x4 constant LOCK_SH (line 920) | LOCK_SH = 0x1 constant LOCK_UN (line 921) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 922) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 923) | MADV_FREE = 0x6 constant MADV_NORMAL (line 924) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 925) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 926) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 927) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 928) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 929) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 930) | MAP_ANONYMOUS = 0x1000 constant MAP_CONCEAL (line 931) | MAP_CONCEAL = 0x8000 constant MAP_COPY (line 932) | MAP_COPY = 0x2 constant MAP_FILE (line 933) | MAP_FILE = 0x0 constant MAP_FIXED (line 934) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 935) | MAP_FLAGMASK = 0xfff7 constant MAP_HASSEMAPHORE (line 936) | MAP_HASSEMAPHORE = 0x0 constant MAP_INHERIT (line 937) | MAP_INHERIT = 0x0 constant MAP_INHERIT_COPY (line 938) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_NONE (line 939) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 940) | MAP_INHERIT_SHARE = 0x0 constant MAP_INHERIT_ZERO (line 941) | MAP_INHERIT_ZERO = 0x3 constant MAP_NOEXTEND (line 942) | MAP_NOEXTEND = 0x0 constant MAP_NORESERVE (line 943) | MAP_NORESERVE = 0x0 constant MAP_PRIVATE (line 944) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 945) | MAP_RENAME = 0x0 constant MAP_SHARED (line 946) | MAP_SHARED = 0x1 constant MAP_STACK (line 947) | MAP_STACK = 0x4000 constant MAP_TRYFIXED (line 948) | MAP_TRYFIXED = 0x0 constant MCL_CURRENT (line 949) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 950) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 951) | MNT_ASYNC = 0x40 constant MNT_DEFEXPORTED (line 952) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 953) | MNT_DELEXPORT = 0x20000 constant MNT_DOOMED (line 954) | MNT_DOOMED = 0x8000000 constant MNT_EXPORTANON (line 955) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 956) | MNT_EXPORTED = 0x100 constant MNT_EXRDONLY (line 957) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 958) | MNT_FORCE = 0x80000 constant MNT_LAZY (line 959) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 960) | MNT_LOCAL = 0x1000 constant MNT_NOATIME (line 961) | MNT_NOATIME = 0x8000 constant MNT_NODEV (line 962) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 963) | MNT_NOEXEC = 0x4 constant MNT_NOPERM (line 964) | MNT_NOPERM = 0x20 constant MNT_NOSUID (line 965) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 966) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 967) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 968) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 969) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 970) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 971) | MNT_SOFTDEP = 0x4000000 constant MNT_STALLED (line 972) | MNT_STALLED = 0x100000 constant MNT_SYNCHRONOUS (line 973) | MNT_SYNCHRONOUS = 0x2 constant MNT_UPDATE (line 974) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 975) | MNT_VISFLAGMASK = 0x400ffff constant MNT_WAIT (line 976) | MNT_WAIT = 0x1 constant MNT_WANTRDWR (line 977) | MNT_WANTRDWR = 0x2000000 constant MNT_WXALLOWED (line 978) | MNT_WXALLOWED = 0x800 constant MSG_BCAST (line 979) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 980) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CTRUNC (line 981) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 982) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 983) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 984) | MSG_EOR = 0x8 constant MSG_MCAST (line 985) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 986) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 987) | MSG_OOB = 0x1 constant MSG_PEEK (line 988) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 989) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 990) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 991) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 992) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 993) | MS_SYNC = 0x2 constant NAME_MAX (line 994) | NAME_MAX = 0xff constant NET_RT_DUMP (line 995) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 996) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 997) | NET_RT_IFLIST = 0x3 constant NET_RT_IFNAMES (line 998) | NET_RT_IFNAMES = 0x6 constant NET_RT_MAXID (line 999) | NET_RT_MAXID = 0x7 constant NET_RT_STATS (line 1000) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 1001) | NET_RT_TABLE = 0x5 constant NFDBITS (line 1002) | NFDBITS = 0x20 constant NOFLSH (line 1003) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1004) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1005) | NOTE_ATTRIB = 0x8 constant NOTE_CHANGE (line 1006) | NOTE_CHANGE = 0x1 constant NOTE_CHILD (line 1007) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1008) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 1009) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 1010) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1011) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1012) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1013) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1014) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1015) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1016) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1017) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1018) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1019) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1020) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1021) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 1022) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 1023) | NOTE_WRITE = 0x2 constant OCRNL (line 1024) | OCRNL = 0x10 constant OLCUC (line 1025) | OLCUC = 0x20 constant ONLCR (line 1026) | ONLCR = 0x2 constant ONLRET (line 1027) | ONLRET = 0x80 constant ONOCR (line 1028) | ONOCR = 0x40 constant ONOEOT (line 1029) | ONOEOT = 0x8 constant OPOST (line 1030) | OPOST = 0x1 constant OXTABS (line 1031) | OXTABS = 0x4 constant O_ACCMODE (line 1032) | O_ACCMODE = 0x3 constant O_APPEND (line 1033) | O_APPEND = 0x8 constant O_ASYNC (line 1034) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1035) | O_CLOEXEC = 0x10000 constant O_CREAT (line 1036) | O_CREAT = 0x200 constant O_DIRECTORY (line 1037) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 1038) | O_DSYNC = 0x80 constant O_EXCL (line 1039) | O_EXCL = 0x800 constant O_EXLOCK (line 1040) | O_EXLOCK = 0x20 constant O_FSYNC (line 1041) | O_FSYNC = 0x80 constant O_NDELAY (line 1042) | O_NDELAY = 0x4 constant O_NOCTTY (line 1043) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1044) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1045) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1046) | O_RDONLY = 0x0 constant O_RDWR (line 1047) | O_RDWR = 0x2 constant O_RSYNC (line 1048) | O_RSYNC = 0x80 constant O_SHLOCK (line 1049) | O_SHLOCK = 0x10 constant O_SYNC (line 1050) | O_SYNC = 0x80 constant O_TRUNC (line 1051) | O_TRUNC = 0x400 constant O_WRONLY (line 1052) | O_WRONLY = 0x1 constant PARENB (line 1053) | PARENB = 0x1000 constant PARMRK (line 1054) | PARMRK = 0x8 constant PARODD (line 1055) | PARODD = 0x2000 constant PENDIN (line 1056) | PENDIN = 0x20000000 constant PF_FLUSH (line 1057) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 1058) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1059) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1060) | PRIO_USER = 0x2 constant PROT_EXEC (line 1061) | PROT_EXEC = 0x4 constant PROT_NONE (line 1062) | PROT_NONE = 0x0 constant PROT_READ (line 1063) | PROT_READ = 0x1 constant PROT_WRITE (line 1064) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 1065) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1066) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1067) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1068) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1069) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1070) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1071) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1072) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1073) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1074) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1075) | RTAX_AUTHOR = 0x6 constant RTAX_BFD (line 1076) | RTAX_BFD = 0xb constant RTAX_BRD (line 1077) | RTAX_BRD = 0x7 constant RTAX_DNS (line 1078) | RTAX_DNS = 0xc constant RTAX_DST (line 1079) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1080) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1081) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1082) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1083) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 1084) | RTAX_LABEL = 0xa constant RTAX_MAX (line 1085) | RTAX_MAX = 0xf constant RTAX_NETMASK (line 1086) | RTAX_NETMASK = 0x2 constant RTAX_SEARCH (line 1087) | RTAX_SEARCH = 0xe constant RTAX_SRC (line 1088) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 1089) | RTAX_SRCMASK = 0x9 constant RTAX_STATIC (line 1090) | RTAX_STATIC = 0xd constant RTA_AUTHOR (line 1091) | RTA_AUTHOR = 0x40 constant RTA_BFD (line 1092) | RTA_BFD = 0x800 constant RTA_BRD (line 1093) | RTA_BRD = 0x80 constant RTA_DNS (line 1094) | RTA_DNS = 0x1000 constant RTA_DST (line 1095) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1096) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1097) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1098) | RTA_IFA = 0x20 constant RTA_IFP (line 1099) | RTA_IFP = 0x10 constant RTA_LABEL (line 1100) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1101) | RTA_NETMASK = 0x4 constant RTA_SEARCH (line 1102) | RTA_SEARCH = 0x4000 constant RTA_SRC (line 1103) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1104) | RTA_SRCMASK = 0x200 constant RTA_STATIC (line 1105) | RTA_STATIC = 0x2000 constant RTF_ANNOUNCE (line 1106) | RTF_ANNOUNCE = 0x4000 constant RTF_BFD (line 1107) | RTF_BFD = 0x1000000 constant RTF_BLACKHOLE (line 1108) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1109) | RTF_BROADCAST = 0x400000 constant RTF_CACHED (line 1110) | RTF_CACHED = 0x20000 constant RTF_CLONED (line 1111) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1112) | RTF_CLONING = 0x100 constant RTF_CONNECTED (line 1113) | RTF_CONNECTED = 0x800000 constant RTF_DONE (line 1114) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1115) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1116) | RTF_FMASK = 0x110fc08 constant RTF_GATEWAY (line 1117) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1118) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1119) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1120) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1121) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1122) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1123) | RTF_MPLS = 0x100000 constant RTF_MULTICAST (line 1124) | RTF_MULTICAST = 0x200 constant RTF_PERMANENT_ARP (line 1125) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1126) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1127) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1128) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1129) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1130) | RTF_STATIC = 0x800 constant RTF_UP (line 1131) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1132) | RTF_USETRAILERS = 0x8000 constant RTM_ADD (line 1133) | RTM_ADD = 0x1 constant RTM_BFD (line 1134) | RTM_BFD = 0x12 constant RTM_CHANGE (line 1135) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1136) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1137) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1138) | RTM_DESYNC = 0x10 constant RTM_GET (line 1139) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1140) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1141) | RTM_IFINFO = 0xe constant RTM_INVALIDATE (line 1142) | RTM_INVALIDATE = 0x11 constant RTM_LOCK (line 1143) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1144) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1145) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1146) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1147) | RTM_NEWADDR = 0xc constant RTM_PROPOSAL (line 1148) | RTM_PROPOSAL = 0x13 constant RTM_REDIRECT (line 1149) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1150) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1151) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1152) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1153) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1154) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1155) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1156) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1157) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1158) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1159) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1160) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_BITS (line 1161) | RT_TABLEID_BITS = 0x8 constant RT_TABLEID_MASK (line 1162) | RT_TABLEID_MASK = 0xff constant RT_TABLEID_MAX (line 1163) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1164) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1165) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1166) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1167) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1168) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1169) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1170) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1171) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1172) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1173) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1174) | SIOCAIFGROUP = 0x80286987 constant SIOCATMARK (line 1175) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1176) | SIOCBRDGADD = 0x8060693c constant SIOCBRDGADDL (line 1177) | SIOCBRDGADDL = 0x80606949 constant SIOCBRDGADDS (line 1178) | SIOCBRDGADDS = 0x80606941 constant SIOCBRDGARL (line 1179) | SIOCBRDGARL = 0x808c694d constant SIOCBRDGDADDR (line 1180) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1181) | SIOCBRDGDEL = 0x8060693d constant SIOCBRDGDELS (line 1182) | SIOCBRDGDELS = 0x80606942 constant SIOCBRDGFLUSH (line 1183) | SIOCBRDGFLUSH = 0x80606948 constant SIOCBRDGFRL (line 1184) | SIOCBRDGFRL = 0x808c694e constant SIOCBRDGGCACHE (line 1185) | SIOCBRDGGCACHE = 0xc0186941 constant SIOCBRDGGFD (line 1186) | SIOCBRDGGFD = 0xc0186952 constant SIOCBRDGGHT (line 1187) | SIOCBRDGGHT = 0xc0186951 constant SIOCBRDGGIFFLGS (line 1188) | SIOCBRDGGIFFLGS = 0xc060693e constant SIOCBRDGGMA (line 1189) | SIOCBRDGGMA = 0xc0186953 constant SIOCBRDGGPARAM (line 1190) | SIOCBRDGGPARAM = 0xc0406958 constant SIOCBRDGGPRI (line 1191) | SIOCBRDGGPRI = 0xc0186950 constant SIOCBRDGGRL (line 1192) | SIOCBRDGGRL = 0xc030694f constant SIOCBRDGGTO (line 1193) | SIOCBRDGGTO = 0xc0186946 constant SIOCBRDGIFS (line 1194) | SIOCBRDGIFS = 0xc0606942 constant SIOCBRDGRTS (line 1195) | SIOCBRDGRTS = 0xc0206943 constant SIOCBRDGSADDR (line 1196) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1197) | SIOCBRDGSCACHE = 0x80186940 constant SIOCBRDGSFD (line 1198) | SIOCBRDGSFD = 0x80186952 constant SIOCBRDGSHT (line 1199) | SIOCBRDGSHT = 0x80186951 constant SIOCBRDGSIFCOST (line 1200) | SIOCBRDGSIFCOST = 0x80606955 constant SIOCBRDGSIFFLGS (line 1201) | SIOCBRDGSIFFLGS = 0x8060693f constant SIOCBRDGSIFPRIO (line 1202) | SIOCBRDGSIFPRIO = 0x80606954 constant SIOCBRDGSIFPROT (line 1203) | SIOCBRDGSIFPROT = 0x8060694a constant SIOCBRDGSMA (line 1204) | SIOCBRDGSMA = 0x80186953 constant SIOCBRDGSPRI (line 1205) | SIOCBRDGSPRI = 0x80186950 constant SIOCBRDGSPROTO (line 1206) | SIOCBRDGSPROTO = 0x8018695a constant SIOCBRDGSTO (line 1207) | SIOCBRDGSTO = 0x80186945 constant SIOCBRDGSTXHC (line 1208) | SIOCBRDGSTXHC = 0x80186959 constant SIOCDELMULTI (line 1209) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1210) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1211) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPARENT (line 1212) | SIOCDIFPARENT = 0x802069b4 constant SIOCDIFPHYADDR (line 1213) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDVNETID (line 1214) | SIOCDVNETID = 0x802069af constant SIOCGETKALIVE (line 1215) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1216) | SIOCGETLABEL = 0x8020699a constant SIOCGETMPWCFG (line 1217) | SIOCGETMPWCFG = 0xc02069ae constant SIOCGETPFLOW (line 1218) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1219) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1220) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1221) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGETVLAN (line 1222) | SIOCGETVLAN = 0xc0206990 constant SIOCGIFADDR (line 1223) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1224) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1225) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1226) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1227) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1228) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1229) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1230) | SIOCGIFGATTR = 0xc028698b constant SIOCGIFGENERIC (line 1231) | SIOCGIFGENERIC = 0xc020693a 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 SIOCGIFXFLAGS (line 1246) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFPHYADDR (line 1247) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYDF (line 1248) | SIOCGLIFPHYDF = 0xc02069c2 constant SIOCGLIFPHYRTABLE (line 1249) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1250) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGPGRP (line 1251) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1252) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGUMBINFO (line 1253) | SIOCGUMBINFO = 0xc02069be constant SIOCGUMBPARAM (line 1254) | SIOCGUMBPARAM = 0xc02069c0 constant SIOCGVH (line 1255) | SIOCGVH = 0xc02069f6 constant SIOCGVNETFLOWID (line 1256) | SIOCGVNETFLOWID = 0xc02069c4 constant SIOCGVNETID (line 1257) | SIOCGVNETID = 0xc02069a7 constant SIOCIFAFATTACH (line 1258) | SIOCIFAFATTACH = 0x801169ab constant SIOCIFAFDETACH (line 1259) | SIOCIFAFDETACH = 0x801169ac constant SIOCIFCREATE (line 1260) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1261) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1262) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSETKALIVE (line 1263) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1264) | SIOCSETLABEL = 0x80206999 constant SIOCSETMPWCFG (line 1265) | SIOCSETMPWCFG = 0x802069ad constant SIOCSETPFLOW (line 1266) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1267) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1268) | SIOCSETVLAN = 0x8020698f constant SIOCSIFADDR (line 1269) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1270) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1271) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1272) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1273) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1274) | SIOCSIFGATTR = 0x8028698c constant SIOCSIFGENERIC (line 1275) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1276) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFLLPRIO (line 1277) | SIOCSIFLLPRIO = 0x802069b5 constant SIOCSIFMEDIA (line 1278) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1279) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1280) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1281) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPAIR (line 1282) | SIOCSIFPAIR = 0x802069b0 constant SIOCSIFPARENT (line 1283) | SIOCSIFPARENT = 0x802069b2 constant SIOCSIFPRIORITY (line 1284) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1285) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1286) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFXFLAGS (line 1287) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1288) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYDF (line 1289) | SIOCSLIFPHYDF = 0x802069c1 constant SIOCSLIFPHYRTABLE (line 1290) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1291) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSPGRP (line 1292) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1293) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSUMBPARAM (line 1294) | SIOCSUMBPARAM = 0x802069bf constant SIOCSVH (line 1295) | SIOCSVH = 0xc02069f5 constant SIOCSVNETFLOWID (line 1296) | SIOCSVNETFLOWID = 0x802069c3 constant SIOCSVNETID (line 1297) | SIOCSVNETID = 0x802069a6 constant SIOCSWGDPID (line 1298) | SIOCSWGDPID = 0xc018695b constant SIOCSWGMAXFLOW (line 1299) | SIOCSWGMAXFLOW = 0xc0186960 constant SIOCSWGMAXGROUP (line 1300) | SIOCSWGMAXGROUP = 0xc018695d constant SIOCSWSDPID (line 1301) | SIOCSWSDPID = 0x8018695c constant SIOCSWSPORTNO (line 1302) | SIOCSWSPORTNO = 0xc060695f constant SOCK_CLOEXEC (line 1303) | SOCK_CLOEXEC = 0x8000 constant SOCK_DGRAM (line 1304) | SOCK_DGRAM = 0x2 constant SOCK_DNS (line 1305) | SOCK_DNS = 0x1000 constant SOCK_NONBLOCK (line 1306) | SOCK_NONBLOCK = 0x4000 constant SOCK_RAW (line 1307) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1308) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1309) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1310) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1311) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1312) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1313) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1314) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1315) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1316) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1317) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1318) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1319) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1320) | SO_LINGER = 0x80 constant SO_NETPROC (line 1321) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1322) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1323) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1324) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1325) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1326) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1327) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1328) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1329) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1330) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1331) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1332) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1333) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1334) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1335) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1336) | SO_USELOOPBACK = 0x40 constant SO_ZEROIZE (line 1337) | SO_ZEROIZE = 0x2000 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_IREAD (line 1348) | S_IREAD = 0x100 constant S_IRGRP (line 1349) | S_IRGRP = 0x20 constant S_IROTH (line 1350) | S_IROTH = 0x4 constant S_IRUSR (line 1351) | S_IRUSR = 0x100 constant S_IRWXG (line 1352) | S_IRWXG = 0x38 constant S_IRWXO (line 1353) | S_IRWXO = 0x7 constant S_IRWXU (line 1354) | S_IRWXU = 0x1c0 constant S_ISGID (line 1355) | S_ISGID = 0x400 constant S_ISTXT (line 1356) | S_ISTXT = 0x200 constant S_ISUID (line 1357) | S_ISUID = 0x800 constant S_ISVTX (line 1358) | S_ISVTX = 0x200 constant S_IWGRP (line 1359) | S_IWGRP = 0x10 constant S_IWOTH (line 1360) | S_IWOTH = 0x2 constant S_IWRITE (line 1361) | S_IWRITE = 0x80 constant S_IWUSR (line 1362) | S_IWUSR = 0x80 constant S_IXGRP (line 1363) | S_IXGRP = 0x8 constant S_IXOTH (line 1364) | S_IXOTH = 0x1 constant S_IXUSR (line 1365) | S_IXUSR = 0x40 constant TCIFLUSH (line 1366) | TCIFLUSH = 0x1 constant TCIOFF (line 1367) | TCIOFF = 0x3 constant TCIOFLUSH (line 1368) | TCIOFLUSH = 0x3 constant TCION (line 1369) | TCION = 0x4 constant TCOFLUSH (line 1370) | TCOFLUSH = 0x2 constant TCOOFF (line 1371) | TCOOFF = 0x1 constant TCOON (line 1372) | TCOON = 0x2 constant TCP_MAXBURST (line 1373) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1374) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1375) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1376) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1377) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1378) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1379) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1380) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1381) | TCP_NOPUSH = 0x10 constant TCP_SACK_ENABLE (line 1382) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1383) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1384) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1385) | TIOCCDTR = 0x20007478 constant TIOCCHKVERAUTH (line 1386) | TIOCCHKVERAUTH = 0x2000741e constant TIOCCLRVERAUTH (line 1387) | TIOCCLRVERAUTH = 0x2000741d constant TIOCCONS (line 1388) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1389) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1390) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1391) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1392) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1393) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1394) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1395) | TIOCFLAG_PPS = 0x10 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 TIOCGPGRP (line 1401) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1402) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1403) | TIOCGTSTAMP = 0x4010745b constant TIOCGWINSZ (line 1404) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1405) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1406) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1407) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1408) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1409) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1410) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1411) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1412) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1413) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1414) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1415) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1416) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1417) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1418) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1419) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1420) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1421) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1422) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1423) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1424) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1425) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1426) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1427) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1428) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1429) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1430) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1431) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1432) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1433) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1434) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1435) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1436) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1437) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1438) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1439) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1440) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1441) | TIOCSETD = 0x8004741b constant TIOCSETVERAUTH (line 1442) | TIOCSETVERAUTH = 0x8004741c constant TIOCSFLAGS (line 1443) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1444) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1445) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1446) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1447) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1448) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1449) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1450) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1451) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1452) | TIOCUCNTL = 0x80047466 constant TIOCUCNTL_CBRK (line 1453) | TIOCUCNTL_CBRK = 0x7a constant TIOCUCNTL_SBRK (line 1454) | TIOCUCNTL_SBRK = 0x7b constant TOSTOP (line 1455) | TOSTOP = 0x400000 constant UTIME_NOW (line 1456) | UTIME_NOW = -0x2 constant UTIME_OMIT (line 1457) | UTIME_OMIT = -0x1 constant VDISCARD (line 1458) | VDISCARD = 0xf constant VDSUSP (line 1459) | VDSUSP = 0xb constant VEOF (line 1460) | VEOF = 0x0 constant VEOL (line 1461) | VEOL = 0x1 constant VEOL2 (line 1462) | VEOL2 = 0x2 constant VERASE (line 1463) | VERASE = 0x3 constant VINTR (line 1464) | VINTR = 0x8 constant VKILL (line 1465) | VKILL = 0x5 constant VLNEXT (line 1466) | VLNEXT = 0xe constant VMIN (line 1467) | VMIN = 0x10 constant VM_ANONMIN (line 1468) | VM_ANONMIN = 0x7 constant VM_LOADAVG (line 1469) | VM_LOADAVG = 0x2 constant VM_MAXID (line 1470) | VM_MAXID = 0xc constant VM_MAXSLP (line 1471) | VM_MAXSLP = 0xa constant VM_METER (line 1472) | VM_METER = 0x1 constant VM_NKMEMPAGES (line 1473) | VM_NKMEMPAGES = 0x6 constant VM_PSSTRINGS (line 1474) | VM_PSSTRINGS = 0x3 constant VM_SWAPENCRYPT (line 1475) | VM_SWAPENCRYPT = 0x5 constant VM_USPACE (line 1476) | VM_USPACE = 0xb constant VM_UVMEXP (line 1477) | VM_UVMEXP = 0x4 constant VM_VNODEMIN (line 1478) | VM_VNODEMIN = 0x9 constant VM_VTEXTMIN (line 1479) | VM_VTEXTMIN = 0x8 constant VQUIT (line 1480) | VQUIT = 0x9 constant VREPRINT (line 1481) | VREPRINT = 0x6 constant VSTART (line 1482) | VSTART = 0xc constant VSTATUS (line 1483) | VSTATUS = 0x12 constant VSTOP (line 1484) | VSTOP = 0xd constant VSUSP (line 1485) | VSUSP = 0xa constant VTIME (line 1486) | VTIME = 0x11 constant VWERASE (line 1487) | VWERASE = 0x4 constant WALTSIG (line 1488) | WALTSIG = 0x4 constant WCONTINUED (line 1489) | WCONTINUED = 0x8 constant WCOREFLAG (line 1490) | WCOREFLAG = 0x80 constant WNOHANG (line 1491) | WNOHANG = 0x1 constant WUNTRACED (line 1492) | WUNTRACED = 0x2 constant XCASE (line 1493) | XCASE = 0x1000000 constant E2BIG (line 1498) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1499) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1500) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1501) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1502) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1503) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1504) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1505) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1506) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1507) | EBADMSG = syscall.Errno(0x5c) constant EBADRPC (line 1508) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1509) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1510) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1511) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1512) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1513) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1514) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1515) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1516) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1517) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1518) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1519) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1520) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1521) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1522) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1523) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1524) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1525) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1526) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1527) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1528) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1529) | EINVAL = syscall.Errno(0x16) constant EIO (line 1530) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1531) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1532) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1533) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1534) | ELAST = syscall.Errno(0x5f) constant ELOOP (line 1535) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1536) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1537) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1538) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1539) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1540) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1541) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1542) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1543) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1544) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1545) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1546) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1547) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1548) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1549) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1550) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1551) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1552) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1553) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1554) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1555) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1556) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1557) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1558) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1559) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1560) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1561) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1562) | ENOTRECOVERABLE = syscall.Errno(0x5d) constant ENOTSOCK (line 1563) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1564) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1565) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1566) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1567) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1568) | EOVERFLOW = syscall.Errno(0x57) constant EOWNERDEAD (line 1569) | EOWNERDEAD = syscall.Errno(0x5e) constant EPERM (line 1570) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1571) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1572) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1573) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1574) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1575) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1576) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1577) | EPROTO = syscall.Errno(0x5f) constant EPROTONOSUPPORT (line 1578) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1579) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1580) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1581) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1582) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1583) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1584) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1585) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1586) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1587) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1588) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1589) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1590) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1591) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1592) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1593) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1594) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1599) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1600) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1601) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1602) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1603) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1604) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1605) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1606) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1607) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1608) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1609) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1610) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1611) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1612) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1613) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1614) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1615) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1616) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1617) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1618) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1619) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1620) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1621) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1622) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1623) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1624) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1625) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1626) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1627) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1628) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1629) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1630) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1631) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x20 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_ENCAP (line 26) | AF_ENCAP = 0x1c constant AF_HYLINK (line 27) | AF_HYLINK = 0xf 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_KEY (line 34) | AF_KEY = 0x1e constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x24 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 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 = 0x1d 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 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 = 0xc008427b 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 = 0x400c426e 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 = 0x80084267 constant BIOCSETIF (line 94) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 95) | BIOCSETWF = 0x80084277 constant BIOCSFILDROP (line 96) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 97) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 98) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x800c426d 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 CPUSTATES (line 150) | CPUSTATES = 0x6 constant CP_IDLE (line 151) | CP_IDLE = 0x5 constant CP_INTR (line 152) | CP_INTR = 0x4 constant CP_NICE (line 153) | CP_NICE = 0x1 constant CP_SPIN (line 154) | CP_SPIN = 0x3 constant CP_SYS (line 155) | CP_SYS = 0x2 constant CP_USER (line 156) | CP_USER = 0x0 constant CREAD (line 157) | CREAD = 0x800 constant CRTSCTS (line 158) | CRTSCTS = 0x10000 constant CS5 (line 159) | CS5 = 0x0 constant CS6 (line 160) | CS6 = 0x100 constant CS7 (line 161) | CS7 = 0x200 constant CS8 (line 162) | CS8 = 0x300 constant CSIZE (line 163) | CSIZE = 0x300 constant CSTART (line 164) | CSTART = 0x11 constant CSTATUS (line 165) | CSTATUS = 0xff constant CSTOP (line 166) | CSTOP = 0x13 constant CSTOPB (line 167) | CSTOPB = 0x400 constant CSUSP (line 168) | CSUSP = 0x1a constant CTL_HW (line 169) | CTL_HW = 0x6 constant CTL_KERN (line 170) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 171) | CTL_MAXNAME = 0xc constant CTL_NET (line 172) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 173) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 174) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 175) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 176) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 177) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 178) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 179) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 180) | DLT_EN3MB = 0x2 constant DLT_ENC (line 181) | DLT_ENC = 0xd constant DLT_FDDI (line 182) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 183) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 184) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 185) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 186) | DLT_LOOP = 0xc constant DLT_MPLS (line 187) | DLT_MPLS = 0xdb constant DLT_NULL (line 188) | DLT_NULL = 0x0 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 DT_BLK (line 199) | DT_BLK = 0x6 constant DT_CHR (line 200) | DT_CHR = 0x2 constant DT_DIR (line 201) | DT_DIR = 0x4 constant DT_FIFO (line 202) | DT_FIFO = 0x1 constant DT_LNK (line 203) | DT_LNK = 0xa constant DT_REG (line 204) | DT_REG = 0x8 constant DT_SOCK (line 205) | DT_SOCK = 0xc constant DT_UNKNOWN (line 206) | DT_UNKNOWN = 0x0 constant ECHO (line 207) | ECHO = 0x8 constant ECHOCTL (line 208) | ECHOCTL = 0x40 constant ECHOE (line 209) | ECHOE = 0x2 constant ECHOK (line 210) | ECHOK = 0x4 constant ECHOKE (line 211) | ECHOKE = 0x1 constant ECHONL (line 212) | ECHONL = 0x10 constant ECHOPRT (line 213) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 214) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 215) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 216) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 217) | ENDRUNDISC = 0x9 constant ETHERMIN (line 218) | ETHERMIN = 0x2e constant ETHERMTU (line 219) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 220) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 221) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 222) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 223) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 224) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 225) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 226) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 227) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 228) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 229) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 230) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 231) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 232) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 233) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 234) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 235) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 236) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 237) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 238) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 239) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 240) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 241) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 242) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 243) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 244) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 245) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 246) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 247) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 248) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 249) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 250) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 251) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 252) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 253) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 254) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 255) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 256) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 257) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 258) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 259) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 260) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 261) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 262) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 263) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 264) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 265) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 266) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 267) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 268) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 269) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 270) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 271) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 272) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 273) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 274) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 275) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 276) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 277) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 278) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 279) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 280) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 281) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 282) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 283) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 284) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 285) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 286) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 287) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 288) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 289) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 290) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 291) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 292) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 293) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 294) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 295) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 296) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 297) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 298) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 299) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 300) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 301) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 302) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 303) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 304) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 305) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 306) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 307) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 308) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 309) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 310) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 311) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 312) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 313) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 314) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 315) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 316) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 317) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 318) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 319) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 320) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 321) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 322) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 323) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 324) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 325) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 326) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 327) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 328) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 329) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 330) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 331) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 332) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 333) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 334) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 335) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 336) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 337) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 338) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 339) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 340) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 341) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 342) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 343) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 344) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 345) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 346) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 347) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 348) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 349) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 350) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 351) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 352) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 353) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 354) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 355) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 356) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 357) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 358) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 359) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 360) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 361) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 362) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 363) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 364) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 365) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 366) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 367) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 368) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 369) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 370) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 371) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 372) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 373) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 374) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 375) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 376) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 377) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 378) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 379) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 380) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 381) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 382) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 383) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 384) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 385) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 386) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 387) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 388) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 389) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 390) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 391) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 392) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 393) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 394) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 395) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 396) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 397) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 398) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 399) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 400) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 401) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 402) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 403) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 404) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 405) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 406) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 407) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 408) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 409) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 410) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 411) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 412) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 413) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 414) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 415) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 416) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 417) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 418) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 419) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 420) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 421) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 422) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 423) | EVFILT_WRITE = -0x2 constant EV_ADD (line 424) | EV_ADD = 0x1 constant EV_CLEAR (line 425) | EV_CLEAR = 0x20 constant EV_DELETE (line 426) | EV_DELETE = 0x2 constant EV_DISABLE (line 427) | EV_DISABLE = 0x8 constant EV_ENABLE (line 428) | EV_ENABLE = 0x4 constant EV_EOF (line 429) | EV_EOF = 0x8000 constant EV_ERROR (line 430) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 431) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 432) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 433) | EV_SYSFLAGS = 0xf000 constant EXTA (line 434) | EXTA = 0x4b00 constant EXTB (line 435) | EXTB = 0x9600 constant EXTPROC (line 436) | EXTPROC = 0x800 constant FD_CLOEXEC (line 437) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 438) | FD_SETSIZE = 0x400 constant FLUSHO (line 439) | FLUSHO = 0x800000 constant F_DUPFD (line 440) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 441) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 442) | F_GETFD = 0x1 constant F_GETFL (line 443) | F_GETFL = 0x3 constant F_GETLK (line 444) | F_GETLK = 0x7 constant F_GETOWN (line 445) | F_GETOWN = 0x5 constant F_RDLCK (line 446) | F_RDLCK = 0x1 constant F_SETFD (line 447) | F_SETFD = 0x2 constant F_SETFL (line 448) | F_SETFL = 0x4 constant F_SETLK (line 449) | F_SETLK = 0x8 constant F_SETLKW (line 450) | F_SETLKW = 0x9 constant F_SETOWN (line 451) | F_SETOWN = 0x6 constant F_UNLCK (line 452) | F_UNLCK = 0x2 constant F_WRLCK (line 453) | F_WRLCK = 0x3 constant HUPCL (line 454) | HUPCL = 0x4000 constant HW_MACHINE (line 455) | HW_MACHINE = 0x1 constant ICANON (line 456) | ICANON = 0x100 constant ICMP6_FILTER (line 457) | ICMP6_FILTER = 0x12 constant ICRNL (line 458) | ICRNL = 0x100 constant IEXTEN (line 459) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 460) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 461) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 462) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 463) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 464) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 465) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 466) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 467) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 468) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 469) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 470) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 471) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 472) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 473) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 474) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 475) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 476) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 477) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 478) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 479) | IFF_UP = 0x1 constant IFNAMSIZ (line 480) | IFNAMSIZ = 0x10 constant IFT_1822 (line 481) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 482) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 483) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 484) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 485) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 486) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 487) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 488) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 489) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 490) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 491) | IFT_ASYNC = 0x54 constant IFT_ATM (line 492) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 493) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 494) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 495) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 496) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 497) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 498) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 499) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 500) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 501) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 502) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 503) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 504) | IFT_BSC = 0x53 constant IFT_CARP (line 505) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 506) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 507) | IFT_CEPT = 0x13 constant IFT_CES (line 508) | IFT_CES = 0x85 constant IFT_CHANNEL (line 509) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 510) | IFT_CNR = 0x55 constant IFT_COFFEE (line 511) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 512) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 513) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 514) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 515) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 516) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 517) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 518) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 519) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 520) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 521) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 522) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 523) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 524) | IFT_DS3 = 0x1e constant IFT_DTM (line 525) | IFT_DTM = 0x8c constant IFT_DUMMY (line 526) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 527) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 528) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 529) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 530) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 531) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 532) | IFT_ECONET = 0xce constant IFT_ENC (line 533) | IFT_ENC = 0xf4 constant IFT_EON (line 534) | IFT_EON = 0x19 constant IFT_EPLRS (line 535) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 536) | IFT_ESCON = 0x49 constant IFT_ETHER (line 537) | IFT_ETHER = 0x6 constant IFT_FAITH (line 538) | IFT_FAITH = 0xf3 constant IFT_FAST (line 539) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 540) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 541) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 542) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 543) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 544) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 545) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 546) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 547) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 548) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 549) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 550) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 551) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 552) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 553) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 554) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 555) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 556) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 557) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 558) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 559) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 560) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 561) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 562) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 563) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 564) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 565) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 566) | IFT_HSSI = 0x2e constant IFT_HY (line 567) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 568) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 569) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 570) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 571) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 572) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 573) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 574) | IFT_IFGSN = 0x91 constant IFT_IMT (line 575) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 576) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 577) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 578) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 579) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 580) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 581) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 582) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 583) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 584) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 585) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 586) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 587) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 588) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 589) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 590) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 591) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 592) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 593) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 594) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 595) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 596) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 597) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 598) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 599) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 600) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 601) | IFT_LAPB = 0x10 constant IFT_LAPD (line 602) | IFT_LAPD = 0x4d constant IFT_LAPF (line 603) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 604) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 605) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 606) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 607) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 608) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 609) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 610) | IFT_MODEM = 0x30 constant IFT_MPC (line 611) | IFT_MPC = 0x71 constant IFT_MPLS (line 612) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 613) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 614) | IFT_MSDSL = 0x8f constant IFT_MVL (line 615) | IFT_MVL = 0xbf constant IFT_MYRINET (line 616) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 617) | IFT_NFAS = 0xaf constant IFT_NSIP (line 618) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 619) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 620) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 621) | IFT_OTHER = 0x1 constant IFT_P10 (line 622) | IFT_P10 = 0xc constant IFT_P80 (line 623) | IFT_P80 = 0xd constant IFT_PARA (line 624) | IFT_PARA = 0x22 constant IFT_PFLOG (line 625) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 626) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 627) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 628) | IFT_PLC = 0xae constant IFT_PON155 (line 629) | IFT_PON155 = 0xcf constant IFT_PON622 (line 630) | IFT_PON622 = 0xd0 constant IFT_POS (line 631) | IFT_POS = 0xab constant IFT_PPP (line 632) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 633) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 634) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 635) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 636) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 637) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 638) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 639) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 640) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 641) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 642) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 643) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 644) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 645) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 646) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 647) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 648) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 649) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 650) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 651) | IFT_RS232 = 0x21 constant IFT_RSRB (line 652) | IFT_RSRB = 0x4f constant IFT_SDLC (line 653) | IFT_SDLC = 0x11 constant IFT_SDSL (line 654) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 655) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 656) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 657) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 658) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 659) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 660) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 661) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 662) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 663) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 664) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 665) | IFT_SONETVT = 0x33 constant IFT_SRP (line 666) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 667) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 668) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 669) | IFT_STARLAN = 0xb constant IFT_T1 (line 670) | IFT_T1 = 0x12 constant IFT_TDLC (line 671) | IFT_TDLC = 0x74 constant IFT_TELINK (line 672) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 673) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 674) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 675) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 676) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 677) | IFT_ULTRA = 0x1d constant IFT_USB (line 678) | IFT_USB = 0xa0 constant IFT_V11 (line 679) | IFT_V11 = 0x40 constant IFT_V35 (line 680) | IFT_V35 = 0x2d constant IFT_V36 (line 681) | IFT_V36 = 0x41 constant IFT_V37 (line 682) | IFT_V37 = 0x78 constant IFT_VDSL (line 683) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 684) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 685) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 686) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 687) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 688) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 689) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 690) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 691) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 692) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 693) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 694) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 695) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 696) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 697) | IFT_X213 = 0x5d constant IFT_X25 (line 698) | IFT_X25 = 0x5 constant IFT_X25DDN (line 699) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 700) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 701) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 702) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 703) | IFT_XETHER = 0x1a constant IGNBRK (line 704) | IGNBRK = 0x1 constant IGNCR (line 705) | IGNCR = 0x80 constant IGNPAR (line 706) | IGNPAR = 0x4 constant IMAXBEL (line 707) | IMAXBEL = 0x2000 constant INLCR (line 708) | INLCR = 0x40 constant INPCK (line 709) | INPCK = 0x10 constant IN_CLASSA_HOST (line 710) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 711) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 712) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 713) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 714) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 715) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 716) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 717) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 718) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 719) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 720) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 721) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 722) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 723) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 724) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 725) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 726) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 727) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 728) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 729) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 730) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 731) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 732) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 733) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 734) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 735) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 736) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 737) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 738) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 739) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 740) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 741) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 742) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 743) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 744) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 745) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 746) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 747) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 748) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 749) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 750) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 751) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 752) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 753) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 754) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 755) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 756) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 757) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 758) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 759) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 760) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 761) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 762) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 763) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 764) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 765) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 766) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 767) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 768) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 769) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 770) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 771) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 772) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 773) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 774) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 775) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 776) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 777) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 778) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 779) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 780) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 781) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 782) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 783) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 784) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 785) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 786) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 787) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 788) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 789) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 790) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 791) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 792) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 793) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 794) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 795) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 796) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 797) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 798) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 799) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 800) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 801) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 802) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 803) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 804) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 805) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 806) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 807) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 808) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 809) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 810) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 811) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 812) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 813) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 814) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 815) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 816) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 817) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 818) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 819) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 820) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 821) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 822) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 823) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 824) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 825) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 826) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 827) | IP_DF = 0x4000 constant IP_DIVERTFL (line 828) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 829) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 830) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 831) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 832) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 833) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 834) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 835) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 836) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 837) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 838) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 839) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 840) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 841) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 842) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 843) | IP_MF = 0x2000 constant IP_MINTTL (line 844) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 845) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 846) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 847) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 848) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 849) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 850) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 851) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 852) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 853) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 854) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 855) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 856) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 857) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 858) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 859) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 860) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 861) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 862) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 863) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 864) | IP_RETOPTS = 0x8 constant IP_RF (line 865) | IP_RF = 0x8000 constant IP_RTABLE (line 866) | IP_RTABLE = 0x1021 constant IP_TOS (line 867) | IP_TOS = 0x3 constant IP_TTL (line 868) | IP_TTL = 0x4 constant ISIG (line 869) | ISIG = 0x80 constant ISTRIP (line 870) | ISTRIP = 0x20 constant IXANY (line 871) | IXANY = 0x800 constant IXOFF (line 872) | IXOFF = 0x400 constant IXON (line 873) | IXON = 0x200 constant KERN_HOSTNAME (line 874) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 875) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 876) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 877) | KERN_VERSION = 0x4 constant LCNT_OVERLOAD_FLUSH (line 878) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 879) | LOCK_EX = 0x2 constant LOCK_NB (line 880) | LOCK_NB = 0x4 constant LOCK_SH (line 881) | LOCK_SH = 0x1 constant LOCK_UN (line 882) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 883) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 884) | MADV_FREE = 0x6 constant MADV_NORMAL (line 885) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 886) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 887) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 888) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 889) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 890) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 891) | MAP_ANONYMOUS = 0x1000 constant MAP_CONCEAL (line 892) | MAP_CONCEAL = 0x8000 constant MAP_COPY (line 893) | MAP_COPY = 0x2 constant MAP_FILE (line 894) | MAP_FILE = 0x0 constant MAP_FIXED (line 895) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 896) | MAP_FLAGMASK = 0xfff7 constant MAP_HASSEMAPHORE (line 897) | MAP_HASSEMAPHORE = 0x0 constant MAP_INHERIT (line 898) | MAP_INHERIT = 0x0 constant MAP_INHERIT_COPY (line 899) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_NONE (line 900) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 901) | MAP_INHERIT_SHARE = 0x0 constant MAP_INHERIT_ZERO (line 902) | MAP_INHERIT_ZERO = 0x3 constant MAP_NOEXTEND (line 903) | MAP_NOEXTEND = 0x0 constant MAP_NORESERVE (line 904) | MAP_NORESERVE = 0x0 constant MAP_PRIVATE (line 905) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 906) | MAP_RENAME = 0x0 constant MAP_SHARED (line 907) | MAP_SHARED = 0x1 constant MAP_STACK (line 908) | MAP_STACK = 0x4000 constant MAP_TRYFIXED (line 909) | MAP_TRYFIXED = 0x0 constant MCL_CURRENT (line 910) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 911) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 912) | MNT_ASYNC = 0x40 constant MNT_DEFEXPORTED (line 913) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 914) | MNT_DELEXPORT = 0x20000 constant MNT_DOOMED (line 915) | MNT_DOOMED = 0x8000000 constant MNT_EXPORTANON (line 916) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 917) | MNT_EXPORTED = 0x100 constant MNT_EXRDONLY (line 918) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 919) | MNT_FORCE = 0x80000 constant MNT_LAZY (line 920) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 921) | MNT_LOCAL = 0x1000 constant MNT_NOATIME (line 922) | MNT_NOATIME = 0x8000 constant MNT_NODEV (line 923) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 924) | MNT_NOEXEC = 0x4 constant MNT_NOSUID (line 925) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 926) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 927) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 928) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 929) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 930) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 931) | MNT_SOFTDEP = 0x4000000 constant MNT_SYNCHRONOUS (line 932) | MNT_SYNCHRONOUS = 0x2 constant MNT_UPDATE (line 933) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 934) | MNT_VISFLAGMASK = 0x400ffff constant MNT_WAIT (line 935) | MNT_WAIT = 0x1 constant MNT_WANTRDWR (line 936) | MNT_WANTRDWR = 0x2000000 constant MNT_WXALLOWED (line 937) | MNT_WXALLOWED = 0x800 constant MSG_BCAST (line 938) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 939) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CTRUNC (line 940) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 941) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 942) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 943) | MSG_EOR = 0x8 constant MSG_MCAST (line 944) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 945) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 946) | MSG_OOB = 0x1 constant MSG_PEEK (line 947) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 948) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 949) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 950) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 951) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 952) | MS_SYNC = 0x2 constant NAME_MAX (line 953) | NAME_MAX = 0xff constant NET_RT_DUMP (line 954) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 955) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 956) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 957) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 958) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 959) | NET_RT_TABLE = 0x5 constant NFDBITS (line 960) | NFDBITS = 0x20 constant NOFLSH (line 961) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 962) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 963) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 964) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 965) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 966) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 967) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 968) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 969) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 970) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 971) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 972) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 973) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 974) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 975) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 976) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 977) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 978) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 979) | NOTE_WRITE = 0x2 constant OCRNL (line 980) | OCRNL = 0x10 constant ONLCR (line 981) | ONLCR = 0x2 constant ONLRET (line 982) | ONLRET = 0x80 constant ONOCR (line 983) | ONOCR = 0x40 constant ONOEOT (line 984) | ONOEOT = 0x8 constant OPOST (line 985) | OPOST = 0x1 constant O_ACCMODE (line 986) | O_ACCMODE = 0x3 constant O_APPEND (line 987) | O_APPEND = 0x8 constant O_ASYNC (line 988) | O_ASYNC = 0x40 constant O_CLOEXEC (line 989) | O_CLOEXEC = 0x10000 constant O_CREAT (line 990) | O_CREAT = 0x200 constant O_DIRECTORY (line 991) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 992) | O_DSYNC = 0x80 constant O_EXCL (line 993) | O_EXCL = 0x800 constant O_EXLOCK (line 994) | O_EXLOCK = 0x20 constant O_FSYNC (line 995) | O_FSYNC = 0x80 constant O_NDELAY (line 996) | O_NDELAY = 0x4 constant O_NOCTTY (line 997) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 998) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 999) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1000) | O_RDONLY = 0x0 constant O_RDWR (line 1001) | O_RDWR = 0x2 constant O_RSYNC (line 1002) | O_RSYNC = 0x80 constant O_SHLOCK (line 1003) | O_SHLOCK = 0x10 constant O_SYNC (line 1004) | O_SYNC = 0x80 constant O_TRUNC (line 1005) | O_TRUNC = 0x400 constant O_WRONLY (line 1006) | O_WRONLY = 0x1 constant PARENB (line 1007) | PARENB = 0x1000 constant PARMRK (line 1008) | PARMRK = 0x8 constant PARODD (line 1009) | PARODD = 0x2000 constant PENDIN (line 1010) | PENDIN = 0x20000000 constant PF_FLUSH (line 1011) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 1012) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1013) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1014) | PRIO_USER = 0x2 constant PROT_EXEC (line 1015) | PROT_EXEC = 0x4 constant PROT_NONE (line 1016) | PROT_NONE = 0x0 constant PROT_READ (line 1017) | PROT_READ = 0x1 constant PROT_WRITE (line 1018) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 1019) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1020) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1021) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1022) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1023) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1024) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1025) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1026) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1027) | RTAX_BRD = 0x7 constant RTAX_DST (line 1028) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1029) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1030) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1031) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1032) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 1033) | RTAX_LABEL = 0xa constant RTAX_MAX (line 1034) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 1035) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 1036) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 1037) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 1038) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1039) | RTA_BRD = 0x80 constant RTA_DST (line 1040) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1041) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1042) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1043) | RTA_IFA = 0x20 constant RTA_IFP (line 1044) | RTA_IFP = 0x10 constant RTA_LABEL (line 1045) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1046) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1047) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1048) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1049) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1050) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1051) | RTF_BROADCAST = 0x400000 constant RTF_CLONED (line 1052) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1053) | RTF_CLONING = 0x100 constant RTF_DONE (line 1054) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1055) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1056) | RTF_FMASK = 0x70f808 constant RTF_GATEWAY (line 1057) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1058) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1059) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1060) | RTF_LOCAL = 0x200000 constant RTF_MASK (line 1061) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1062) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1063) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1064) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1065) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1066) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1067) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1068) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1069) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1070) | RTF_STATIC = 0x800 constant RTF_UP (line 1071) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1072) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1073) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1074) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1075) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1076) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1077) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1078) | RTM_DESYNC = 0x10 constant RTM_GET (line 1079) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1080) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1081) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1082) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1083) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1084) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1085) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1086) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1087) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1088) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1089) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1090) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1091) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1092) | RTV_HOPCOUNT = 0x2 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 RT_TABLEID_MAX (line 1099) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1100) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1101) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1102) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1103) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1104) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1105) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1106) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1107) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1108) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1109) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1110) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1111) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1112) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1113) | SIOCBRDGADD = 0x8054693c constant SIOCBRDGADDS (line 1114) | SIOCBRDGADDS = 0x80546941 constant SIOCBRDGARL (line 1115) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1116) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1117) | SIOCBRDGDEL = 0x8054693d constant SIOCBRDGDELS (line 1118) | SIOCBRDGDELS = 0x80546942 constant SIOCBRDGFLUSH (line 1119) | SIOCBRDGFLUSH = 0x80546948 constant SIOCBRDGFRL (line 1120) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1121) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1122) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1123) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1124) | SIOCBRDGGIFFLGS = 0xc054693e constant SIOCBRDGGMA (line 1125) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1126) | SIOCBRDGGPARAM = 0xc03c6958 constant SIOCBRDGGPRI (line 1127) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1128) | SIOCBRDGGRL = 0xc028694f constant SIOCBRDGGSIFS (line 1129) | SIOCBRDGGSIFS = 0xc054693c constant SIOCBRDGGTO (line 1130) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1131) | SIOCBRDGIFS = 0xc0546942 constant SIOCBRDGRTS (line 1132) | SIOCBRDGRTS = 0xc0186943 constant SIOCBRDGSADDR (line 1133) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1134) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1135) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1136) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1137) | SIOCBRDGSIFCOST = 0x80546955 constant SIOCBRDGSIFFLGS (line 1138) | SIOCBRDGSIFFLGS = 0x8054693f constant SIOCBRDGSIFPRIO (line 1139) | SIOCBRDGSIFPRIO = 0x80546954 constant SIOCBRDGSMA (line 1140) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1141) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1142) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1143) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1144) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1145) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1146) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1147) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1148) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1149) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1150) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1151) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1152) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1153) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1154) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1155) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGETVLAN (line 1156) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1157) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1158) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1159) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1160) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1161) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDATA (line 1162) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1163) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1164) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1165) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1166) | SIOCGIFGATTR = 0xc024698b constant SIOCGIFGENERIC (line 1167) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1168) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1169) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFHARDMTU (line 1170) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1171) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1172) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1173) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1174) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1175) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1176) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1177) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1178) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1179) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFRXR (line 1180) | SIOCGIFRXR = 0x802069aa constant SIOCGIFTIMESLOT (line 1181) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1182) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1183) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1184) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1185) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1186) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1187) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1188) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1189) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1190) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1191) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1192) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1193) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1194) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSETKALIVE (line 1195) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1196) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1197) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1198) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1199) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1200) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1201) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1202) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1203) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1204) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1205) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1206) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1207) | SIOCSIFGATTR = 0x8024698c constant SIOCSIFGENERIC (line 1208) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1209) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1210) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1211) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1212) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1213) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1214) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1215) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1216) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1217) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1218) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1219) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1220) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1221) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1222) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1223) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1224) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1225) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1226) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1227) | SIOCSVNETID = 0x802069a6 constant SOCK_CLOEXEC (line 1228) | SOCK_CLOEXEC = 0x8000 constant SOCK_DGRAM (line 1229) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1230) | SOCK_NONBLOCK = 0x4000 constant SOCK_RAW (line 1231) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1232) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1233) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1234) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1235) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1236) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1237) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1238) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1239) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1240) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1241) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1242) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1243) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1244) | SO_LINGER = 0x80 constant SO_NETPROC (line 1245) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1246) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1247) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1248) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1249) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1250) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1251) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1252) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1253) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1254) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1255) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1256) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1257) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1258) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1259) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1260) | SO_USELOOPBACK = 0x40 constant S_BLKSIZE (line 1261) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1262) | S_IEXEC = 0x40 constant S_IFBLK (line 1263) | S_IFBLK = 0x6000 constant S_IFCHR (line 1264) | S_IFCHR = 0x2000 constant S_IFDIR (line 1265) | S_IFDIR = 0x4000 constant S_IFIFO (line 1266) | S_IFIFO = 0x1000 constant S_IFLNK (line 1267) | S_IFLNK = 0xa000 constant S_IFMT (line 1268) | S_IFMT = 0xf000 constant S_IFREG (line 1269) | S_IFREG = 0x8000 constant S_IFSOCK (line 1270) | S_IFSOCK = 0xc000 constant S_IREAD (line 1271) | S_IREAD = 0x100 constant S_IRGRP (line 1272) | S_IRGRP = 0x20 constant S_IROTH (line 1273) | S_IROTH = 0x4 constant S_IRUSR (line 1274) | S_IRUSR = 0x100 constant S_IRWXG (line 1275) | S_IRWXG = 0x38 constant S_IRWXO (line 1276) | S_IRWXO = 0x7 constant S_IRWXU (line 1277) | S_IRWXU = 0x1c0 constant S_ISGID (line 1278) | S_ISGID = 0x400 constant S_ISTXT (line 1279) | S_ISTXT = 0x200 constant S_ISUID (line 1280) | S_ISUID = 0x800 constant S_ISVTX (line 1281) | S_ISVTX = 0x200 constant S_IWGRP (line 1282) | S_IWGRP = 0x10 constant S_IWOTH (line 1283) | S_IWOTH = 0x2 constant S_IWRITE (line 1284) | S_IWRITE = 0x80 constant S_IWUSR (line 1285) | S_IWUSR = 0x80 constant S_IXGRP (line 1286) | S_IXGRP = 0x8 constant S_IXOTH (line 1287) | S_IXOTH = 0x1 constant S_IXUSR (line 1288) | S_IXUSR = 0x40 constant TCIFLUSH (line 1289) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1290) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1291) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1292) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1293) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1294) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1295) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1296) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1297) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1298) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1299) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1300) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1301) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1302) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1303) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1304) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1305) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1306) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1307) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1308) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1309) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1310) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1311) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1312) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1313) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1314) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1315) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1316) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1317) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1318) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1319) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1320) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1321) | TIOCGTSTAMP = 0x400c745b constant TIOCGWINSZ (line 1322) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1323) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1324) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1325) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1326) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1327) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1328) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1329) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1330) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1331) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1332) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1333) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1334) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1335) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1336) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1337) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1338) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1339) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1340) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1341) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1342) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1343) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1344) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1345) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1346) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1347) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1348) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1349) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1350) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1351) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1352) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1353) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1354) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1355) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1356) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1357) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1358) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1359) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1360) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1361) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1362) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1363) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1364) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1365) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1366) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1367) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1368) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1369) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1370) | TOSTOP = 0x400000 constant VDISCARD (line 1371) | VDISCARD = 0xf constant VDSUSP (line 1372) | VDSUSP = 0xb constant VEOF (line 1373) | VEOF = 0x0 constant VEOL (line 1374) | VEOL = 0x1 constant VEOL2 (line 1375) | VEOL2 = 0x2 constant VERASE (line 1376) | VERASE = 0x3 constant VINTR (line 1377) | VINTR = 0x8 constant VKILL (line 1378) | VKILL = 0x5 constant VLNEXT (line 1379) | VLNEXT = 0xe constant VMIN (line 1380) | VMIN = 0x10 constant VQUIT (line 1381) | VQUIT = 0x9 constant VREPRINT (line 1382) | VREPRINT = 0x6 constant VSTART (line 1383) | VSTART = 0xc constant VSTATUS (line 1384) | VSTATUS = 0x12 constant VSTOP (line 1385) | VSTOP = 0xd constant VSUSP (line 1386) | VSUSP = 0xa constant VTIME (line 1387) | VTIME = 0x11 constant VWERASE (line 1388) | VWERASE = 0x4 constant WALTSIG (line 1389) | WALTSIG = 0x4 constant WCONTINUED (line 1390) | WCONTINUED = 0x8 constant WCOREFLAG (line 1391) | WCOREFLAG = 0x80 constant WNOHANG (line 1392) | WNOHANG = 0x1 constant WUNTRACED (line 1393) | WUNTRACED = 0x2 constant E2BIG (line 1398) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1399) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1400) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1401) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1402) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1403) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1404) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1405) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1406) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1407) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1408) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1409) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1410) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1411) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1412) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1413) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1414) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1415) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1416) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1417) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1418) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1419) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1420) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1421) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1422) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1423) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1424) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1425) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1426) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1427) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1428) | EINVAL = syscall.Errno(0x16) constant EIO (line 1429) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1430) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1431) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1432) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1433) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1434) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1435) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1436) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1437) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1438) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1439) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1440) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1441) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1442) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1443) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1444) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1445) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1446) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1447) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1448) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1449) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1450) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1451) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1452) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1453) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1454) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1455) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1456) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1457) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1458) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1459) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1460) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1461) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1462) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1463) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1464) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1465) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1466) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1467) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1468) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1469) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1470) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1471) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1472) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1473) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1474) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1475) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1476) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1477) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1478) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1479) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1480) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1481) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1482) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1483) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1484) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1485) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1486) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1487) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1488) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1489) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1490) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1495) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1496) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1497) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1498) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1499) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1500) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1501) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1502) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1503) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1504) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1505) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1506) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1507) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1508) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1509) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1510) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1511) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1512) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1513) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1514) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1515) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1516) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1517) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1518) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1519) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1520) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1521) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1522) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1523) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1524) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1525) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1526) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1527) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x20 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_ENCAP (line 26) | AF_ENCAP = 0x1c constant AF_HYLINK (line 27) | AF_HYLINK = 0xf 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_KEY (line 34) | AF_KEY = 0x1e constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x24 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 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 = 0x1d 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 ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 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 B4800 (line 69) | B4800 = 0x12c0 constant B50 (line 70) | B50 = 0x32 constant B57600 (line 71) | B57600 = 0xe100 constant B600 (line 72) | B600 = 0x258 constant B7200 (line 73) | B7200 = 0x1c20 constant B75 (line 74) | B75 = 0x4b constant B76800 (line 75) | B76800 = 0x12c00 constant B9600 (line 76) | B9600 = 0x2580 constant BIOCFLUSH (line 77) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 78) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 79) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 80) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 81) | BIOCGDLTLIST = 0xc010427b constant BIOCGETIF (line 82) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 83) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 84) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 85) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 86) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSTATS (line 87) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 88) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 89) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 90) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 91) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 92) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 93) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 94) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 95) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 96) | BIOCSETWF = 0x80104277 constant BIOCSFILDROP (line 97) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 99) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x8010426d constant BIOCVERSION (line 101) | BIOCVERSION = 0x40044271 constant BPF_A (line 102) | BPF_A = 0x10 constant BPF_ABS (line 103) | BPF_ABS = 0x20 constant BPF_ADD (line 104) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 105) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 106) | BPF_ALU = 0x4 constant BPF_AND (line 107) | BPF_AND = 0x50 constant BPF_B (line 108) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 109) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 110) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 111) | BPF_DIV = 0x30 constant BPF_FILDROP_CAPTURE (line 112) | BPF_FILDROP_CAPTURE = 0x1 constant BPF_FILDROP_DROP (line 113) | BPF_FILDROP_DROP = 0x2 constant BPF_FILDROP_PASS (line 114) | BPF_FILDROP_PASS = 0x0 constant BPF_H (line 115) | BPF_H = 0x8 constant BPF_IMM (line 116) | BPF_IMM = 0x0 constant BPF_IND (line 117) | BPF_IND = 0x40 constant BPF_JA (line 118) | BPF_JA = 0x0 constant BPF_JEQ (line 119) | BPF_JEQ = 0x10 constant BPF_JGE (line 120) | BPF_JGE = 0x30 constant BPF_JGT (line 121) | BPF_JGT = 0x20 constant BPF_JMP (line 122) | BPF_JMP = 0x5 constant BPF_JSET (line 123) | BPF_JSET = 0x40 constant BPF_K (line 124) | BPF_K = 0x0 constant BPF_LD (line 125) | BPF_LD = 0x0 constant BPF_LDX (line 126) | BPF_LDX = 0x1 constant BPF_LEN (line 127) | BPF_LEN = 0x80 constant BPF_LSH (line 128) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 129) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 130) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 131) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 132) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 133) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 134) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 135) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 136) | BPF_MISC = 0x7 constant BPF_MSH (line 137) | BPF_MSH = 0xa0 constant BPF_MUL (line 138) | BPF_MUL = 0x20 constant BPF_NEG (line 139) | BPF_NEG = 0x80 constant BPF_OR (line 140) | BPF_OR = 0x40 constant BPF_RELEASE (line 141) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 142) | BPF_RET = 0x6 constant BPF_RSH (line 143) | BPF_RSH = 0x70 constant BPF_ST (line 144) | BPF_ST = 0x2 constant BPF_STX (line 145) | BPF_STX = 0x3 constant BPF_SUB (line 146) | BPF_SUB = 0x10 constant BPF_TAX (line 147) | BPF_TAX = 0x0 constant BPF_TXA (line 148) | BPF_TXA = 0x80 constant BPF_W (line 149) | BPF_W = 0x0 constant BPF_X (line 150) | BPF_X = 0x8 constant BRKINT (line 151) | BRKINT = 0x2 constant CFLUSH (line 152) | CFLUSH = 0xf constant CLOCAL (line 153) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 154) | CLOCK_BOOTTIME = 0x6 constant CLOCK_MONOTONIC (line 155) | CLOCK_MONOTONIC = 0x3 constant CLOCK_PROCESS_CPUTIME_ID (line 156) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 157) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 158) | CLOCK_THREAD_CPUTIME_ID = 0x4 constant CLOCK_UPTIME (line 159) | CLOCK_UPTIME = 0x5 constant CPUSTATES (line 160) | CPUSTATES = 0x6 constant CP_IDLE (line 161) | CP_IDLE = 0x5 constant CP_INTR (line 162) | CP_INTR = 0x4 constant CP_NICE (line 163) | CP_NICE = 0x1 constant CP_SPIN (line 164) | CP_SPIN = 0x3 constant CP_SYS (line 165) | CP_SYS = 0x2 constant CP_USER (line 166) | CP_USER = 0x0 constant CREAD (line 167) | CREAD = 0x800 constant CRTSCTS (line 168) | CRTSCTS = 0x10000 constant CS5 (line 169) | CS5 = 0x0 constant CS6 (line 170) | CS6 = 0x100 constant CS7 (line 171) | CS7 = 0x200 constant CS8 (line 172) | CS8 = 0x300 constant CSIZE (line 173) | CSIZE = 0x300 constant CSTART (line 174) | CSTART = 0x11 constant CSTATUS (line 175) | CSTATUS = 0xff constant CSTOP (line 176) | CSTOP = 0x13 constant CSTOPB (line 177) | CSTOPB = 0x400 constant CSUSP (line 178) | CSUSP = 0x1a constant CTL_HW (line 179) | CTL_HW = 0x6 constant CTL_KERN (line 180) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 181) | CTL_MAXNAME = 0xc constant CTL_NET (line 182) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 183) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 184) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 185) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 186) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 187) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 188) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 189) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 190) | DLT_EN3MB = 0x2 constant DLT_ENC (line 191) | DLT_ENC = 0xd constant DLT_FDDI (line 192) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 193) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 194) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 195) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 196) | DLT_LOOP = 0xc constant DLT_MPLS (line 197) | DLT_MPLS = 0xdb constant DLT_NULL (line 198) | DLT_NULL = 0x0 constant DLT_OPENFLOW (line 199) | DLT_OPENFLOW = 0x10b constant DLT_PFLOG (line 200) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 201) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 202) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 203) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 204) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 205) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 206) | DLT_PRONET = 0x4 constant DLT_RAW (line 207) | DLT_RAW = 0xe constant DLT_SLIP (line 208) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 209) | DLT_SLIP_BSDOS = 0xf constant DLT_USBPCAP (line 210) | DLT_USBPCAP = 0xf9 constant DLT_USER0 (line 211) | DLT_USER0 = 0x93 constant DLT_USER1 (line 212) | DLT_USER1 = 0x94 constant DLT_USER10 (line 213) | DLT_USER10 = 0x9d constant DLT_USER11 (line 214) | DLT_USER11 = 0x9e constant DLT_USER12 (line 215) | DLT_USER12 = 0x9f constant DLT_USER13 (line 216) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 217) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 218) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 219) | DLT_USER2 = 0x95 constant DLT_USER3 (line 220) | DLT_USER3 = 0x96 constant DLT_USER4 (line 221) | DLT_USER4 = 0x97 constant DLT_USER5 (line 222) | DLT_USER5 = 0x98 constant DLT_USER6 (line 223) | DLT_USER6 = 0x99 constant DLT_USER7 (line 224) | DLT_USER7 = 0x9a constant DLT_USER8 (line 225) | DLT_USER8 = 0x9b constant DLT_USER9 (line 226) | DLT_USER9 = 0x9c constant DT_BLK (line 227) | DT_BLK = 0x6 constant DT_CHR (line 228) | DT_CHR = 0x2 constant DT_DIR (line 229) | DT_DIR = 0x4 constant DT_FIFO (line 230) | DT_FIFO = 0x1 constant DT_LNK (line 231) | DT_LNK = 0xa constant DT_REG (line 232) | DT_REG = 0x8 constant DT_SOCK (line 233) | DT_SOCK = 0xc constant DT_UNKNOWN (line 234) | DT_UNKNOWN = 0x0 constant ECHO (line 235) | ECHO = 0x8 constant ECHOCTL (line 236) | ECHOCTL = 0x40 constant ECHOE (line 237) | ECHOE = 0x2 constant ECHOK (line 238) | ECHOK = 0x4 constant ECHOKE (line 239) | ECHOKE = 0x1 constant ECHONL (line 240) | ECHONL = 0x10 constant ECHOPRT (line 241) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 242) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 243) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 244) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 245) | ENDRUNDISC = 0x9 constant ETHERMIN (line 246) | ETHERMIN = 0x2e constant ETHERMTU (line 247) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 248) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 249) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 250) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 251) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 252) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 253) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 254) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 255) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 256) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 257) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 258) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 259) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 260) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 261) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 262) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 263) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 264) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 265) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 266) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 267) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 268) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 269) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 270) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 271) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 272) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 273) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 274) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 275) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 276) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 277) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 278) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 279) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 280) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 281) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 282) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 283) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 284) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 285) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 286) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 287) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 288) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 289) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 290) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 291) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 292) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 293) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 294) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 295) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 296) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 297) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 298) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 299) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 300) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 301) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 302) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 303) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 304) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 305) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 306) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 307) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 308) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 309) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 310) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 311) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 312) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 313) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 314) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 315) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 316) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 317) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 318) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 319) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 320) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 321) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 322) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 323) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 324) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 325) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 326) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 327) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 328) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 329) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 330) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 331) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 332) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 333) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 334) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 335) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 336) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 337) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 338) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 339) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 340) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 341) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 342) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 343) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 344) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 345) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 346) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 347) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 348) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 349) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 350) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 351) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 352) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 353) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 354) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 355) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 356) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 357) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 358) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 359) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 360) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 361) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 362) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 363) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 364) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 365) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PBB (line 366) | ETHERTYPE_PBB = 0x88e7 constant ETHERTYPE_PCS (line 367) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 368) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 369) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 370) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 371) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 372) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 373) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 374) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 375) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 376) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 377) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 378) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 379) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 380) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 381) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 382) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 383) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 384) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 385) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 386) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 387) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 388) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 389) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 390) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 391) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 392) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 393) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 394) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 395) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 396) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 397) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 398) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 399) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 400) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 401) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 402) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 403) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 404) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 405) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 406) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 407) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 408) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 409) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 410) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 411) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 412) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 413) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 414) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 415) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 416) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 417) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 418) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 419) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 420) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 421) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 422) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 423) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 424) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 425) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 426) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 427) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 428) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 429) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 430) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 431) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 432) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 433) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 434) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 435) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 436) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 437) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 438) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 439) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 440) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_HARDMTU_LEN (line 441) | ETHER_MAX_HARDMTU_LEN = 0xff9b constant ETHER_MAX_LEN (line 442) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 443) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 444) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 445) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 446) | EVFILT_AIO = -0x3 constant EVFILT_DEVICE (line 447) | EVFILT_DEVICE = -0x8 constant EVFILT_PROC (line 448) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 449) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 450) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 451) | EVFILT_SYSCOUNT = 0x8 constant EVFILT_TIMER (line 452) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 453) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 454) | EVFILT_WRITE = -0x2 constant EVL_ENCAPLEN (line 455) | EVL_ENCAPLEN = 0x4 constant EVL_PRIO_BITS (line 456) | EVL_PRIO_BITS = 0xd constant EVL_PRIO_MAX (line 457) | EVL_PRIO_MAX = 0x7 constant EVL_VLID_MASK (line 458) | EVL_VLID_MASK = 0xfff constant EVL_VLID_MAX (line 459) | EVL_VLID_MAX = 0xffe constant EVL_VLID_MIN (line 460) | EVL_VLID_MIN = 0x1 constant EVL_VLID_NULL (line 461) | EVL_VLID_NULL = 0x0 constant EV_ADD (line 462) | EV_ADD = 0x1 constant EV_CLEAR (line 463) | EV_CLEAR = 0x20 constant EV_DELETE (line 464) | EV_DELETE = 0x2 constant EV_DISABLE (line 465) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 466) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 467) | EV_ENABLE = 0x4 constant EV_EOF (line 468) | EV_EOF = 0x8000 constant EV_ERROR (line 469) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 470) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 471) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 472) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 473) | EV_SYSFLAGS = 0xf000 constant EXTA (line 474) | EXTA = 0x4b00 constant EXTB (line 475) | EXTB = 0x9600 constant EXTPROC (line 476) | EXTPROC = 0x800 constant FD_CLOEXEC (line 477) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 478) | FD_SETSIZE = 0x400 constant FLUSHO (line 479) | FLUSHO = 0x800000 constant F_DUPFD (line 480) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 481) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 482) | F_GETFD = 0x1 constant F_GETFL (line 483) | F_GETFL = 0x3 constant F_GETLK (line 484) | F_GETLK = 0x7 constant F_GETOWN (line 485) | F_GETOWN = 0x5 constant F_ISATTY (line 486) | F_ISATTY = 0xb constant F_OK (line 487) | F_OK = 0x0 constant F_RDLCK (line 488) | F_RDLCK = 0x1 constant F_SETFD (line 489) | F_SETFD = 0x2 constant F_SETFL (line 490) | F_SETFL = 0x4 constant F_SETLK (line 491) | F_SETLK = 0x8 constant F_SETLKW (line 492) | F_SETLKW = 0x9 constant F_SETOWN (line 493) | F_SETOWN = 0x6 constant F_UNLCK (line 494) | F_UNLCK = 0x2 constant F_WRLCK (line 495) | F_WRLCK = 0x3 constant HUPCL (line 496) | HUPCL = 0x4000 constant HW_MACHINE (line 497) | HW_MACHINE = 0x1 constant ICANON (line 498) | ICANON = 0x100 constant ICMP6_FILTER (line 499) | ICMP6_FILTER = 0x12 constant ICRNL (line 500) | ICRNL = 0x100 constant IEXTEN (line 501) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 502) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 503) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 504) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 505) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 506) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 507) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 508) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 509) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 510) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 511) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 512) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 513) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 514) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 515) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 516) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 517) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 518) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 519) | IFF_STATICARP = 0x20 constant IFF_UP (line 520) | IFF_UP = 0x1 constant IFNAMSIZ (line 521) | IFNAMSIZ = 0x10 constant IFT_1822 (line 522) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 523) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 524) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 525) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 526) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 527) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 528) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 529) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 530) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 531) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 532) | IFT_ASYNC = 0x54 constant IFT_ATM (line 533) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 534) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 535) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 536) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 537) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 538) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 539) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 540) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 541) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 542) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 543) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 544) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 545) | IFT_BSC = 0x53 constant IFT_CARP (line 546) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 547) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 548) | IFT_CEPT = 0x13 constant IFT_CES (line 549) | IFT_CES = 0x85 constant IFT_CHANNEL (line 550) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 551) | IFT_CNR = 0x55 constant IFT_COFFEE (line 552) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 553) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 554) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 555) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 556) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 557) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 558) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 559) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 560) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 561) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 562) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 563) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 564) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 565) | IFT_DS3 = 0x1e constant IFT_DTM (line 566) | IFT_DTM = 0x8c constant IFT_DUMMY (line 567) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 568) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 569) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 570) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 571) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 572) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 573) | IFT_ECONET = 0xce constant IFT_ENC (line 574) | IFT_ENC = 0xf4 constant IFT_EON (line 575) | IFT_EON = 0x19 constant IFT_EPLRS (line 576) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 577) | IFT_ESCON = 0x49 constant IFT_ETHER (line 578) | IFT_ETHER = 0x6 constant IFT_FAITH (line 579) | IFT_FAITH = 0xf3 constant IFT_FAST (line 580) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 581) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 582) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 583) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 584) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 585) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 586) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 587) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 588) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 589) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 590) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 591) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 592) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 593) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 594) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 595) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 596) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 597) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 598) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 599) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 600) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 601) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 602) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 603) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 604) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 605) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 606) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 607) | IFT_HSSI = 0x2e constant IFT_HY (line 608) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 609) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 610) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 611) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 612) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 613) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 614) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 615) | IFT_IFGSN = 0x91 constant IFT_IMT (line 616) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 617) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 618) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 619) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 620) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 621) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 622) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 623) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 624) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 625) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 626) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 627) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 628) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 629) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 630) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 631) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 632) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 633) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 634) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 635) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 636) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 637) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 638) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 639) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 640) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 641) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 642) | IFT_LAPB = 0x10 constant IFT_LAPD (line 643) | IFT_LAPD = 0x4d constant IFT_LAPF (line 644) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 645) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 646) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 647) | IFT_LOOP = 0x18 constant IFT_MBIM (line 648) | IFT_MBIM = 0xfa constant IFT_MEDIAMAILOVERIP (line 649) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 650) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 651) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 652) | IFT_MODEM = 0x30 constant IFT_MPC (line 653) | IFT_MPC = 0x71 constant IFT_MPLS (line 654) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 655) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 656) | IFT_MSDSL = 0x8f constant IFT_MVL (line 657) | IFT_MVL = 0xbf constant IFT_MYRINET (line 658) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 659) | IFT_NFAS = 0xaf constant IFT_NSIP (line 660) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 661) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 662) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 663) | IFT_OTHER = 0x1 constant IFT_P10 (line 664) | IFT_P10 = 0xc constant IFT_P80 (line 665) | IFT_P80 = 0xd constant IFT_PARA (line 666) | IFT_PARA = 0x22 constant IFT_PFLOG (line 667) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 668) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 669) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 670) | IFT_PLC = 0xae constant IFT_PON155 (line 671) | IFT_PON155 = 0xcf constant IFT_PON622 (line 672) | IFT_PON622 = 0xd0 constant IFT_POS (line 673) | IFT_POS = 0xab constant IFT_PPP (line 674) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 675) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 676) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 677) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 678) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 679) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 680) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 681) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 682) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 683) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 684) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 685) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 686) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 687) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 688) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 689) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 690) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 691) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 692) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 693) | IFT_RS232 = 0x21 constant IFT_RSRB (line 694) | IFT_RSRB = 0x4f constant IFT_SDLC (line 695) | IFT_SDLC = 0x11 constant IFT_SDSL (line 696) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 697) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 698) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 699) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 700) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 701) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 702) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 703) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 704) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 705) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 706) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 707) | IFT_SONETVT = 0x33 constant IFT_SRP (line 708) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 709) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 710) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 711) | IFT_STARLAN = 0xb constant IFT_T1 (line 712) | IFT_T1 = 0x12 constant IFT_TDLC (line 713) | IFT_TDLC = 0x74 constant IFT_TELINK (line 714) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 715) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 716) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 717) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 718) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 719) | IFT_ULTRA = 0x1d constant IFT_USB (line 720) | IFT_USB = 0xa0 constant IFT_V11 (line 721) | IFT_V11 = 0x40 constant IFT_V35 (line 722) | IFT_V35 = 0x2d constant IFT_V36 (line 723) | IFT_V36 = 0x41 constant IFT_V37 (line 724) | IFT_V37 = 0x78 constant IFT_VDSL (line 725) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 726) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 727) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 728) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 729) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 730) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 731) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 732) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 733) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 734) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 735) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 736) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 737) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 738) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 739) | IFT_X213 = 0x5d constant IFT_X25 (line 740) | IFT_X25 = 0x5 constant IFT_X25DDN (line 741) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 742) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 743) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 744) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 745) | IFT_XETHER = 0x1a constant IGNBRK (line 746) | IGNBRK = 0x1 constant IGNCR (line 747) | IGNCR = 0x80 constant IGNPAR (line 748) | IGNPAR = 0x4 constant IMAXBEL (line 749) | IMAXBEL = 0x2000 constant INLCR (line 750) | INLCR = 0x40 constant INPCK (line 751) | INPCK = 0x10 constant IN_CLASSA_HOST (line 752) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 753) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 754) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 755) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 756) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 757) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 758) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 759) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 760) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 761) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 762) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 763) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 764) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 765) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 766) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 767) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 768) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 769) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 770) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 771) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 772) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 773) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 774) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 775) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 776) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 777) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 778) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 779) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 780) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 781) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 782) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 783) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 784) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 785) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 786) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 787) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 788) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 789) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 790) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 791) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 792) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 793) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 794) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 795) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 796) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 797) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 798) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 799) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 800) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 801) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 802) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 803) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 804) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 805) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 806) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 807) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 808) | IPV6_AUTOFLOWLABEL = 0x3b 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_ESP_NETWORK_LEVEL (line 815) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 816) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 817) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 818) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 819) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 820) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 821) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 822) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 823) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 824) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 825) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 826) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 827) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 828) | IPV6_MAXPACKET = 0xffff constant IPV6_MINHOPCOUNT (line 829) | IPV6_MINHOPCOUNT = 0x41 constant IPV6_MMTU (line 830) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 831) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 832) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 833) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 834) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 835) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 836) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 837) | IPV6_PIPEX = 0x3f 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_RECVDSTOPTS (line 843) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 844) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 845) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 846) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 847) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 848) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 849) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 850) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 851) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 852) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 853) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 854) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 855) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 856) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 857) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 858) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 859) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 860) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 861) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 862) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 863) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 864) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 865) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 866) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 867) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 868) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 869) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 870) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 871) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 872) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 873) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPDEFTTL (line 874) | IP_IPDEFTTL = 0x25 constant IP_IPSECFLOWINFO (line 875) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 876) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 877) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 878) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 879) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 880) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 881) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 882) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 883) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 884) | IP_MF = 0x2000 constant IP_MINTTL (line 885) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 886) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 887) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 888) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 889) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 890) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 891) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 892) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 893) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 894) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 895) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 896) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 897) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 898) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 899) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 900) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 901) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 902) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 903) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 904) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 905) | IP_RETOPTS = 0x8 constant IP_RF (line 906) | IP_RF = 0x8000 constant IP_RTABLE (line 907) | IP_RTABLE = 0x1021 constant IP_SENDSRCADDR (line 908) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 909) | IP_TOS = 0x3 constant IP_TTL (line 910) | IP_TTL = 0x4 constant ISIG (line 911) | ISIG = 0x80 constant ISTRIP (line 912) | ISTRIP = 0x20 constant IUCLC (line 913) | IUCLC = 0x1000 constant IXANY (line 914) | IXANY = 0x800 constant IXOFF (line 915) | IXOFF = 0x400 constant IXON (line 916) | IXON = 0x200 constant KERN_HOSTNAME (line 917) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 918) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 919) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 920) | KERN_VERSION = 0x4 constant LCNT_OVERLOAD_FLUSH (line 921) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 922) | LOCK_EX = 0x2 constant LOCK_NB (line 923) | LOCK_NB = 0x4 constant LOCK_SH (line 924) | LOCK_SH = 0x1 constant LOCK_UN (line 925) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 926) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 927) | MADV_FREE = 0x6 constant MADV_NORMAL (line 928) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 929) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 930) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 931) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 932) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 933) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 934) | MAP_ANONYMOUS = 0x1000 constant MAP_CONCEAL (line 935) | MAP_CONCEAL = 0x8000 constant MAP_COPY (line 936) | MAP_COPY = 0x2 constant MAP_FILE (line 937) | MAP_FILE = 0x0 constant MAP_FIXED (line 938) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 939) | MAP_FLAGMASK = 0xfff7 constant MAP_HASSEMAPHORE (line 940) | MAP_HASSEMAPHORE = 0x0 constant MAP_INHERIT (line 941) | MAP_INHERIT = 0x0 constant MAP_INHERIT_COPY (line 942) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_NONE (line 943) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 944) | MAP_INHERIT_SHARE = 0x0 constant MAP_INHERIT_ZERO (line 945) | MAP_INHERIT_ZERO = 0x3 constant MAP_NOEXTEND (line 946) | MAP_NOEXTEND = 0x0 constant MAP_NORESERVE (line 947) | MAP_NORESERVE = 0x0 constant MAP_PRIVATE (line 948) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 949) | MAP_RENAME = 0x0 constant MAP_SHARED (line 950) | MAP_SHARED = 0x1 constant MAP_STACK (line 951) | MAP_STACK = 0x4000 constant MAP_TRYFIXED (line 952) | MAP_TRYFIXED = 0x0 constant MCL_CURRENT (line 953) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 954) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 955) | MNT_ASYNC = 0x40 constant MNT_DEFEXPORTED (line 956) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 957) | MNT_DELEXPORT = 0x20000 constant MNT_DOOMED (line 958) | MNT_DOOMED = 0x8000000 constant MNT_EXPORTANON (line 959) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 960) | MNT_EXPORTED = 0x100 constant MNT_EXRDONLY (line 961) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 962) | MNT_FORCE = 0x80000 constant MNT_LAZY (line 963) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 964) | MNT_LOCAL = 0x1000 constant MNT_NOATIME (line 965) | MNT_NOATIME = 0x8000 constant MNT_NODEV (line 966) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 967) | MNT_NOEXEC = 0x4 constant MNT_NOPERM (line 968) | MNT_NOPERM = 0x20 constant MNT_NOSUID (line 969) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 970) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 971) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 972) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 973) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 974) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 975) | MNT_SOFTDEP = 0x4000000 constant MNT_STALLED (line 976) | MNT_STALLED = 0x100000 constant MNT_SWAPPABLE (line 977) | MNT_SWAPPABLE = 0x200000 constant MNT_SYNCHRONOUS (line 978) | MNT_SYNCHRONOUS = 0x2 constant MNT_UPDATE (line 979) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 980) | MNT_VISFLAGMASK = 0x400ffff constant MNT_WAIT (line 981) | MNT_WAIT = 0x1 constant MNT_WANTRDWR (line 982) | MNT_WANTRDWR = 0x2000000 constant MNT_WXALLOWED (line 983) | MNT_WXALLOWED = 0x800 constant MSG_BCAST (line 984) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 985) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CTRUNC (line 986) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 987) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 988) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 989) | MSG_EOR = 0x8 constant MSG_MCAST (line 990) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 991) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 992) | MSG_OOB = 0x1 constant MSG_PEEK (line 993) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 994) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 995) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 996) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 997) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 998) | MS_SYNC = 0x2 constant NAME_MAX (line 999) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1000) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1001) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1002) | NET_RT_IFLIST = 0x3 constant NET_RT_IFNAMES (line 1003) | NET_RT_IFNAMES = 0x6 constant NET_RT_MAXID (line 1004) | NET_RT_MAXID = 0x7 constant NET_RT_STATS (line 1005) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 1006) | NET_RT_TABLE = 0x5 constant NFDBITS (line 1007) | NFDBITS = 0x20 constant NOFLSH (line 1008) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1009) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1010) | NOTE_ATTRIB = 0x8 constant NOTE_CHANGE (line 1011) | NOTE_CHANGE = 0x1 constant NOTE_CHILD (line 1012) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1013) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 1014) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 1015) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1016) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1017) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1018) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1019) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1020) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1021) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1022) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1023) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1024) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1025) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1026) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 1027) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 1028) | NOTE_WRITE = 0x2 constant OCRNL (line 1029) | OCRNL = 0x10 constant OLCUC (line 1030) | OLCUC = 0x20 constant ONLCR (line 1031) | ONLCR = 0x2 constant ONLRET (line 1032) | ONLRET = 0x80 constant ONOCR (line 1033) | ONOCR = 0x40 constant ONOEOT (line 1034) | ONOEOT = 0x8 constant OPOST (line 1035) | OPOST = 0x1 constant OXTABS (line 1036) | OXTABS = 0x4 constant O_ACCMODE (line 1037) | O_ACCMODE = 0x3 constant O_APPEND (line 1038) | O_APPEND = 0x8 constant O_ASYNC (line 1039) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1040) | O_CLOEXEC = 0x10000 constant O_CREAT (line 1041) | O_CREAT = 0x200 constant O_DIRECTORY (line 1042) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 1043) | O_DSYNC = 0x80 constant O_EXCL (line 1044) | O_EXCL = 0x800 constant O_EXLOCK (line 1045) | O_EXLOCK = 0x20 constant O_FSYNC (line 1046) | O_FSYNC = 0x80 constant O_NDELAY (line 1047) | O_NDELAY = 0x4 constant O_NOCTTY (line 1048) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1049) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1050) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1051) | O_RDONLY = 0x0 constant O_RDWR (line 1052) | O_RDWR = 0x2 constant O_RSYNC (line 1053) | O_RSYNC = 0x80 constant O_SHLOCK (line 1054) | O_SHLOCK = 0x10 constant O_SYNC (line 1055) | O_SYNC = 0x80 constant O_TRUNC (line 1056) | O_TRUNC = 0x400 constant O_WRONLY (line 1057) | O_WRONLY = 0x1 constant PARENB (line 1058) | PARENB = 0x1000 constant PARMRK (line 1059) | PARMRK = 0x8 constant PARODD (line 1060) | PARODD = 0x2000 constant PENDIN (line 1061) | PENDIN = 0x20000000 constant PF_FLUSH (line 1062) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 1063) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1064) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1065) | PRIO_USER = 0x2 constant PROT_EXEC (line 1066) | PROT_EXEC = 0x4 constant PROT_NONE (line 1067) | PROT_NONE = 0x0 constant PROT_READ (line 1068) | PROT_READ = 0x1 constant PROT_WRITE (line 1069) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 1070) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1071) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1072) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1073) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1074) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1075) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1076) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1077) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1078) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1079) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1080) | RTAX_AUTHOR = 0x6 constant RTAX_BFD (line 1081) | RTAX_BFD = 0xb constant RTAX_BRD (line 1082) | RTAX_BRD = 0x7 constant RTAX_DNS (line 1083) | RTAX_DNS = 0xc constant RTAX_DST (line 1084) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1085) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1086) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1087) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1088) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 1089) | RTAX_LABEL = 0xa constant RTAX_MAX (line 1090) | RTAX_MAX = 0xf constant RTAX_NETMASK (line 1091) | RTAX_NETMASK = 0x2 constant RTAX_SEARCH (line 1092) | RTAX_SEARCH = 0xe constant RTAX_SRC (line 1093) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 1094) | RTAX_SRCMASK = 0x9 constant RTAX_STATIC (line 1095) | RTAX_STATIC = 0xd constant RTA_AUTHOR (line 1096) | RTA_AUTHOR = 0x40 constant RTA_BFD (line 1097) | RTA_BFD = 0x800 constant RTA_BRD (line 1098) | RTA_BRD = 0x80 constant RTA_DNS (line 1099) | RTA_DNS = 0x1000 constant RTA_DST (line 1100) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1101) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1102) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1103) | RTA_IFA = 0x20 constant RTA_IFP (line 1104) | RTA_IFP = 0x10 constant RTA_LABEL (line 1105) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1106) | RTA_NETMASK = 0x4 constant RTA_SEARCH (line 1107) | RTA_SEARCH = 0x4000 constant RTA_SRC (line 1108) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1109) | RTA_SRCMASK = 0x200 constant RTA_STATIC (line 1110) | RTA_STATIC = 0x2000 constant RTF_ANNOUNCE (line 1111) | RTF_ANNOUNCE = 0x4000 constant RTF_BFD (line 1112) | RTF_BFD = 0x1000000 constant RTF_BLACKHOLE (line 1113) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1114) | RTF_BROADCAST = 0x400000 constant RTF_CACHED (line 1115) | RTF_CACHED = 0x20000 constant RTF_CLONED (line 1116) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1117) | RTF_CLONING = 0x100 constant RTF_CONNECTED (line 1118) | RTF_CONNECTED = 0x800000 constant RTF_DONE (line 1119) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1120) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1121) | RTF_FMASK = 0x110fc08 constant RTF_GATEWAY (line 1122) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1123) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1124) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1125) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1126) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1127) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1128) | RTF_MPLS = 0x100000 constant RTF_MULTICAST (line 1129) | RTF_MULTICAST = 0x200 constant RTF_PERMANENT_ARP (line 1130) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1131) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1132) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1133) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1134) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1135) | RTF_STATIC = 0x800 constant RTF_UP (line 1136) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1137) | RTF_USETRAILERS = 0x8000 constant RTM_80211INFO (line 1138) | RTM_80211INFO = 0x15 constant RTM_ADD (line 1139) | RTM_ADD = 0x1 constant RTM_BFD (line 1140) | RTM_BFD = 0x12 constant RTM_CHANGE (line 1141) | RTM_CHANGE = 0x3 constant RTM_CHGADDRATTR (line 1142) | RTM_CHGADDRATTR = 0x14 constant RTM_DELADDR (line 1143) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1144) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1145) | RTM_DESYNC = 0x10 constant RTM_GET (line 1146) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1147) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1148) | RTM_IFINFO = 0xe constant RTM_INVALIDATE (line 1149) | RTM_INVALIDATE = 0x11 constant RTM_LOSING (line 1150) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1151) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1152) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1153) | RTM_NEWADDR = 0xc constant RTM_PROPOSAL (line 1154) | RTM_PROPOSAL = 0x13 constant RTM_REDIRECT (line 1155) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1156) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1157) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1158) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1159) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1160) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1161) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1162) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1163) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1164) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1165) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1166) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_BITS (line 1167) | RT_TABLEID_BITS = 0x8 constant RT_TABLEID_MASK (line 1168) | RT_TABLEID_MASK = 0xff constant RT_TABLEID_MAX (line 1169) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1170) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1171) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1172) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1173) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1174) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1175) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1176) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1177) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1178) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1179) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1180) | SIOCAIFGROUP = 0x80286987 constant SIOCATMARK (line 1181) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1182) | SIOCBRDGADD = 0x8060693c constant SIOCBRDGADDL (line 1183) | SIOCBRDGADDL = 0x80606949 constant SIOCBRDGADDS (line 1184) | SIOCBRDGADDS = 0x80606941 constant SIOCBRDGARL (line 1185) | SIOCBRDGARL = 0x808c694d constant SIOCBRDGDADDR (line 1186) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1187) | SIOCBRDGDEL = 0x8060693d constant SIOCBRDGDELS (line 1188) | SIOCBRDGDELS = 0x80606942 constant SIOCBRDGFLUSH (line 1189) | SIOCBRDGFLUSH = 0x80606948 constant SIOCBRDGFRL (line 1190) | SIOCBRDGFRL = 0x808c694e constant SIOCBRDGGCACHE (line 1191) | SIOCBRDGGCACHE = 0xc0186941 constant SIOCBRDGGFD (line 1192) | SIOCBRDGGFD = 0xc0186952 constant SIOCBRDGGHT (line 1193) | SIOCBRDGGHT = 0xc0186951 constant SIOCBRDGGIFFLGS (line 1194) | SIOCBRDGGIFFLGS = 0xc060693e constant SIOCBRDGGMA (line 1195) | SIOCBRDGGMA = 0xc0186953 constant SIOCBRDGGPARAM (line 1196) | SIOCBRDGGPARAM = 0xc0406958 constant SIOCBRDGGPRI (line 1197) | SIOCBRDGGPRI = 0xc0186950 constant SIOCBRDGGRL (line 1198) | SIOCBRDGGRL = 0xc030694f constant SIOCBRDGGTO (line 1199) | SIOCBRDGGTO = 0xc0186946 constant SIOCBRDGIFS (line 1200) | SIOCBRDGIFS = 0xc0606942 constant SIOCBRDGRTS (line 1201) | SIOCBRDGRTS = 0xc0206943 constant SIOCBRDGSADDR (line 1202) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1203) | SIOCBRDGSCACHE = 0x80186940 constant SIOCBRDGSFD (line 1204) | SIOCBRDGSFD = 0x80186952 constant SIOCBRDGSHT (line 1205) | SIOCBRDGSHT = 0x80186951 constant SIOCBRDGSIFCOST (line 1206) | SIOCBRDGSIFCOST = 0x80606955 constant SIOCBRDGSIFFLGS (line 1207) | SIOCBRDGSIFFLGS = 0x8060693f constant SIOCBRDGSIFPRIO (line 1208) | SIOCBRDGSIFPRIO = 0x80606954 constant SIOCBRDGSIFPROT (line 1209) | SIOCBRDGSIFPROT = 0x8060694a constant SIOCBRDGSMA (line 1210) | SIOCBRDGSMA = 0x80186953 constant SIOCBRDGSPRI (line 1211) | SIOCBRDGSPRI = 0x80186950 constant SIOCBRDGSPROTO (line 1212) | SIOCBRDGSPROTO = 0x8018695a constant SIOCBRDGSTO (line 1213) | SIOCBRDGSTO = 0x80186945 constant SIOCBRDGSTXHC (line 1214) | SIOCBRDGSTXHC = 0x80186959 constant SIOCDELLABEL (line 1215) | SIOCDELLABEL = 0x80206997 constant SIOCDELMULTI (line 1216) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1217) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1218) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPARENT (line 1219) | SIOCDIFPARENT = 0x802069b4 constant SIOCDIFPHYADDR (line 1220) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDPWE3NEIGHBOR (line 1221) | SIOCDPWE3NEIGHBOR = 0x802069de constant SIOCDVNETID (line 1222) | SIOCDVNETID = 0x802069af constant SIOCGETKALIVE (line 1223) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1224) | SIOCGETLABEL = 0x8020699a constant SIOCGETMPWCFG (line 1225) | SIOCGETMPWCFG = 0xc02069ae constant SIOCGETPFLOW (line 1226) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1227) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1228) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1229) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGETVLAN (line 1230) | SIOCGETVLAN = 0xc0206990 constant SIOCGIFADDR (line 1231) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1232) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1233) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1234) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1235) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1236) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1237) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1238) | SIOCGIFGATTR = 0xc028698b constant SIOCGIFGENERIC (line 1239) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGLIST (line 1240) | SIOCGIFGLIST = 0xc028698d constant SIOCGIFGMEMB (line 1241) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1242) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFHARDMTU (line 1243) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFLLPRIO (line 1244) | SIOCGIFLLPRIO = 0xc02069b6 constant SIOCGIFMEDIA (line 1245) | SIOCGIFMEDIA = 0xc0406938 constant SIOCGIFMETRIC (line 1246) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1247) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1248) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPAIR (line 1249) | SIOCGIFPAIR = 0xc02069b1 constant SIOCGIFPARENT (line 1250) | SIOCGIFPARENT = 0xc02069b3 constant SIOCGIFPRIORITY (line 1251) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFRDOMAIN (line 1252) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1253) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFRXR (line 1254) | SIOCGIFRXR = 0x802069aa constant SIOCGIFSFFPAGE (line 1255) | SIOCGIFSFFPAGE = 0xc1126939 constant SIOCGIFXFLAGS (line 1256) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFPHYADDR (line 1257) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYDF (line 1258) | SIOCGLIFPHYDF = 0xc02069c2 constant SIOCGLIFPHYECN (line 1259) | SIOCGLIFPHYECN = 0xc02069c8 constant SIOCGLIFPHYRTABLE (line 1260) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1261) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGPGRP (line 1262) | SIOCGPGRP = 0x40047309 constant SIOCGPWE3 (line 1263) | SIOCGPWE3 = 0xc0206998 constant SIOCGPWE3CTRLWORD (line 1264) | SIOCGPWE3CTRLWORD = 0xc02069dc constant SIOCGPWE3FAT (line 1265) | SIOCGPWE3FAT = 0xc02069dd constant SIOCGPWE3NEIGHBOR (line 1266) | SIOCGPWE3NEIGHBOR = 0xc21869de constant SIOCGSPPPPARAMS (line 1267) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGTXHPRIO (line 1268) | SIOCGTXHPRIO = 0xc02069c6 constant SIOCGUMBINFO (line 1269) | SIOCGUMBINFO = 0xc02069be constant SIOCGUMBPARAM (line 1270) | SIOCGUMBPARAM = 0xc02069c0 constant SIOCGVH (line 1271) | SIOCGVH = 0xc02069f6 constant SIOCGVNETFLOWID (line 1272) | SIOCGVNETFLOWID = 0xc02069c4 constant SIOCGVNETID (line 1273) | SIOCGVNETID = 0xc02069a7 constant SIOCIFAFATTACH (line 1274) | SIOCIFAFATTACH = 0x801169ab constant SIOCIFAFDETACH (line 1275) | SIOCIFAFDETACH = 0x801169ac constant SIOCIFCREATE (line 1276) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1277) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1278) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSETKALIVE (line 1279) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1280) | SIOCSETLABEL = 0x80206999 constant SIOCSETMPWCFG (line 1281) | SIOCSETMPWCFG = 0x802069ad constant SIOCSETPFLOW (line 1282) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1283) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1284) | SIOCSETVLAN = 0x8020698f constant SIOCSIFADDR (line 1285) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1286) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1287) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1288) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1289) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1290) | SIOCSIFGATTR = 0x8028698c constant SIOCSIFGENERIC (line 1291) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1292) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFLLPRIO (line 1293) | SIOCSIFLLPRIO = 0x802069b5 constant SIOCSIFMEDIA (line 1294) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1295) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1296) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1297) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPAIR (line 1298) | SIOCSIFPAIR = 0x802069b0 constant SIOCSIFPARENT (line 1299) | SIOCSIFPARENT = 0x802069b2 constant SIOCSIFPRIORITY (line 1300) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1301) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1302) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFXFLAGS (line 1303) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1304) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYDF (line 1305) | SIOCSLIFPHYDF = 0x802069c1 constant SIOCSLIFPHYECN (line 1306) | SIOCSLIFPHYECN = 0x802069c7 constant SIOCSLIFPHYRTABLE (line 1307) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1308) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSPGRP (line 1309) | SIOCSPGRP = 0x80047308 constant SIOCSPWE3CTRLWORD (line 1310) | SIOCSPWE3CTRLWORD = 0x802069dc constant SIOCSPWE3FAT (line 1311) | SIOCSPWE3FAT = 0x802069dd constant SIOCSPWE3NEIGHBOR (line 1312) | SIOCSPWE3NEIGHBOR = 0x821869de constant SIOCSSPPPPARAMS (line 1313) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSTXHPRIO (line 1314) | SIOCSTXHPRIO = 0x802069c5 constant SIOCSUMBPARAM (line 1315) | SIOCSUMBPARAM = 0x802069bf constant SIOCSVH (line 1316) | SIOCSVH = 0xc02069f5 constant SIOCSVNETFLOWID (line 1317) | SIOCSVNETFLOWID = 0x802069c3 constant SIOCSVNETID (line 1318) | SIOCSVNETID = 0x802069a6 constant SIOCSWGDPID (line 1319) | SIOCSWGDPID = 0xc018695b constant SIOCSWGMAXFLOW (line 1320) | SIOCSWGMAXFLOW = 0xc0186960 constant SIOCSWGMAXGROUP (line 1321) | SIOCSWGMAXGROUP = 0xc018695d constant SIOCSWSDPID (line 1322) | SIOCSWSDPID = 0x8018695c constant SIOCSWSPORTNO (line 1323) | SIOCSWSPORTNO = 0xc060695f constant SOCK_CLOEXEC (line 1324) | SOCK_CLOEXEC = 0x8000 constant SOCK_DGRAM (line 1325) | SOCK_DGRAM = 0x2 constant SOCK_DNS (line 1326) | SOCK_DNS = 0x1000 constant SOCK_NONBLOCK (line 1327) | SOCK_NONBLOCK = 0x4000 constant SOCK_RAW (line 1328) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1329) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1330) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1331) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1332) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1333) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1334) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1335) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1336) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1337) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1338) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1339) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1340) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1341) | SO_LINGER = 0x80 constant SO_NETPROC (line 1342) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1343) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1344) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1345) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1346) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1347) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1348) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1349) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1350) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1351) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1352) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1353) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1354) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1355) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1356) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1357) | SO_USELOOPBACK = 0x40 constant SO_ZEROIZE (line 1358) | SO_ZEROIZE = 0x2000 constant S_BLKSIZE (line 1359) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1360) | S_IEXEC = 0x40 constant S_IFBLK (line 1361) | S_IFBLK = 0x6000 constant S_IFCHR (line 1362) | S_IFCHR = 0x2000 constant S_IFDIR (line 1363) | S_IFDIR = 0x4000 constant S_IFIFO (line 1364) | S_IFIFO = 0x1000 constant S_IFLNK (line 1365) | S_IFLNK = 0xa000 constant S_IFMT (line 1366) | S_IFMT = 0xf000 constant S_IFREG (line 1367) | S_IFREG = 0x8000 constant S_IFSOCK (line 1368) | S_IFSOCK = 0xc000 constant S_IREAD (line 1369) | S_IREAD = 0x100 constant S_IRGRP (line 1370) | S_IRGRP = 0x20 constant S_IROTH (line 1371) | S_IROTH = 0x4 constant S_IRUSR (line 1372) | S_IRUSR = 0x100 constant S_IRWXG (line 1373) | S_IRWXG = 0x38 constant S_IRWXO (line 1374) | S_IRWXO = 0x7 constant S_IRWXU (line 1375) | S_IRWXU = 0x1c0 constant S_ISGID (line 1376) | S_ISGID = 0x400 constant S_ISTXT (line 1377) | S_ISTXT = 0x200 constant S_ISUID (line 1378) | S_ISUID = 0x800 constant S_ISVTX (line 1379) | S_ISVTX = 0x200 constant S_IWGRP (line 1380) | S_IWGRP = 0x10 constant S_IWOTH (line 1381) | S_IWOTH = 0x2 constant S_IWRITE (line 1382) | S_IWRITE = 0x80 constant S_IWUSR (line 1383) | S_IWUSR = 0x80 constant S_IXGRP (line 1384) | S_IXGRP = 0x8 constant S_IXOTH (line 1385) | S_IXOTH = 0x1 constant S_IXUSR (line 1386) | S_IXUSR = 0x40 constant TCIFLUSH (line 1387) | TCIFLUSH = 0x1 constant TCIOFF (line 1388) | TCIOFF = 0x3 constant TCIOFLUSH (line 1389) | TCIOFLUSH = 0x3 constant TCION (line 1390) | TCION = 0x4 constant TCOFLUSH (line 1391) | TCOFLUSH = 0x2 constant TCOOFF (line 1392) | TCOOFF = 0x1 constant TCOON (line 1393) | TCOON = 0x2 constant TCP_MAXBURST (line 1394) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1395) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1396) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1397) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1398) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1399) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1400) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1401) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1402) | TCP_NOPUSH = 0x10 constant TCP_SACK_ENABLE (line 1403) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1404) | TCSAFLUSH = 0x2 constant TIMER_ABSTIME (line 1405) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1406) | TIMER_RELTIME = 0x0 constant TIOCCBRK (line 1407) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1408) | TIOCCDTR = 0x20007478 constant TIOCCHKVERAUTH (line 1409) | TIOCCHKVERAUTH = 0x2000741e constant TIOCCLRVERAUTH (line 1410) | TIOCCLRVERAUTH = 0x2000741d constant TIOCCONS (line 1411) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1412) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1413) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1414) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1415) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1416) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1417) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1418) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1419) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1420) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1421) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1422) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1423) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1424) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1425) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1426) | TIOCGTSTAMP = 0x4010745b constant TIOCGWINSZ (line 1427) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1428) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1429) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1430) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1431) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1432) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1433) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1434) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1435) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1436) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1437) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1438) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1439) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1440) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1441) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1442) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1443) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1444) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1445) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1446) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1447) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1448) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1449) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1450) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1451) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1452) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1453) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1454) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1455) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1456) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1457) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1458) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1459) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1460) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1461) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1462) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1463) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1464) | TIOCSETD = 0x8004741b constant TIOCSETVERAUTH (line 1465) | TIOCSETVERAUTH = 0x8004741c constant TIOCSFLAGS (line 1466) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1467) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1468) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1469) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1470) | TIOCSTAT = 0x20007465 constant TIOCSTOP (line 1471) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1472) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1473) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1474) | TIOCUCNTL = 0x80047466 constant TIOCUCNTL_CBRK (line 1475) | TIOCUCNTL_CBRK = 0x7a constant TIOCUCNTL_SBRK (line 1476) | TIOCUCNTL_SBRK = 0x7b constant TOSTOP (line 1477) | TOSTOP = 0x400000 constant UTIME_NOW (line 1478) | UTIME_NOW = -0x2 constant UTIME_OMIT (line 1479) | UTIME_OMIT = -0x1 constant VDISCARD (line 1480) | VDISCARD = 0xf constant VDSUSP (line 1481) | VDSUSP = 0xb constant VEOF (line 1482) | VEOF = 0x0 constant VEOL (line 1483) | VEOL = 0x1 constant VEOL2 (line 1484) | VEOL2 = 0x2 constant VERASE (line 1485) | VERASE = 0x3 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 VM_ANONMIN (line 1490) | VM_ANONMIN = 0x7 constant VM_LOADAVG (line 1491) | VM_LOADAVG = 0x2 constant VM_MALLOC_CONF (line 1492) | VM_MALLOC_CONF = 0xc constant VM_MAXID (line 1493) | VM_MAXID = 0xd constant VM_MAXSLP (line 1494) | VM_MAXSLP = 0xa constant VM_METER (line 1495) | VM_METER = 0x1 constant VM_NKMEMPAGES (line 1496) | VM_NKMEMPAGES = 0x6 constant VM_PSSTRINGS (line 1497) | VM_PSSTRINGS = 0x3 constant VM_SWAPENCRYPT (line 1498) | VM_SWAPENCRYPT = 0x5 constant VM_USPACE (line 1499) | VM_USPACE = 0xb constant VM_UVMEXP (line 1500) | VM_UVMEXP = 0x4 constant VM_VNODEMIN (line 1501) | VM_VNODEMIN = 0x9 constant VM_VTEXTMIN (line 1502) | VM_VTEXTMIN = 0x8 constant VQUIT (line 1503) | VQUIT = 0x9 constant VREPRINT (line 1504) | VREPRINT = 0x6 constant VSTART (line 1505) | VSTART = 0xc constant VSTATUS (line 1506) | VSTATUS = 0x12 constant VSTOP (line 1507) | VSTOP = 0xd constant VSUSP (line 1508) | VSUSP = 0xa constant VTIME (line 1509) | VTIME = 0x11 constant VWERASE (line 1510) | VWERASE = 0x4 constant WALTSIG (line 1511) | WALTSIG = 0x4 constant WCONTINUED (line 1512) | WCONTINUED = 0x8 constant WCOREFLAG (line 1513) | WCOREFLAG = 0x80 constant WNOHANG (line 1514) | WNOHANG = 0x1 constant WUNTRACED (line 1515) | WUNTRACED = 0x2 constant XCASE (line 1516) | XCASE = 0x1000000 constant E2BIG (line 1521) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1522) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1523) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1524) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1525) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1526) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1527) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1528) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1529) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1530) | EBADMSG = syscall.Errno(0x5c) constant EBADRPC (line 1531) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1532) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1533) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1534) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1535) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1536) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1537) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1538) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1539) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1540) | EDOM = syscall.Errno(0x21) 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(0x59) constant EILSEQ (line 1549) | EILSEQ = syscall.Errno(0x54) 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 EIPSEC (line 1554) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1555) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1556) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1557) | ELAST = syscall.Errno(0x5f) constant ELOOP (line 1558) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1559) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1560) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1561) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1562) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1563) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1564) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1565) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1566) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1567) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1568) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1569) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1570) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1571) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1572) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1573) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1574) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1575) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1576) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1577) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1578) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1579) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1580) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1581) | ENOTBLK = syscall.Errno(0xf) 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(0x5d) constant ENOTSOCK (line 1586) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1587) | ENOTSUP = syscall.Errno(0x5b) 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(0x57) constant EOWNERDEAD (line 1592) | EOWNERDEAD = syscall.Errno(0x5e) 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(0x5f) 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 SIGPIPE (line 1636) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1637) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1638) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1639) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1640) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1641) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1642) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1643) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1644) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1645) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1646) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1647) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1648) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1649) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1650) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1651) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1652) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1653) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1654) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x20 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_ENCAP (line 26) | AF_ENCAP = 0x1c constant AF_HYLINK (line 27) | AF_HYLINK = 0xf 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_KEY (line 34) | AF_KEY = 0x1e constant AF_LAT (line 35) | AF_LAT = 0xe constant AF_LINK (line 36) | AF_LINK = 0x12 constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x24 constant AF_MPLS (line 39) | AF_MPLS = 0x21 constant AF_NATM (line 40) | AF_NATM = 0x1b constant AF_NS (line 41) | AF_NS = 0x6 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 = 0x1d 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 ARPHRD_ETHER (line 50) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 51) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 52) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 53) | ARPHRD_IEEE802 = 0x6 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 B4800 (line 69) | B4800 = 0x12c0 constant B50 (line 70) | B50 = 0x32 constant B57600 (line 71) | B57600 = 0xe100 constant B600 (line 72) | B600 = 0x258 constant B7200 (line 73) | B7200 = 0x1c20 constant B75 (line 74) | B75 = 0x4b constant B76800 (line 75) | B76800 = 0x12c00 constant B9600 (line 76) | B9600 = 0x2580 constant BIOCFLUSH (line 77) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 78) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 79) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 80) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 81) | BIOCGDLTLIST = 0xc010427b constant BIOCGETIF (line 82) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 83) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 84) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 85) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 86) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSTATS (line 87) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 88) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 89) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 90) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 91) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 92) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 93) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 94) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 95) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 96) | BIOCSETWF = 0x80104277 constant BIOCSFILDROP (line 97) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 99) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 100) | BIOCSRTIMEOUT = 0x8010426d constant BIOCVERSION (line 101) | BIOCVERSION = 0x40044271 constant BPF_A (line 102) | BPF_A = 0x10 constant BPF_ABS (line 103) | BPF_ABS = 0x20 constant BPF_ADD (line 104) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 105) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 106) | BPF_ALU = 0x4 constant BPF_AND (line 107) | BPF_AND = 0x50 constant BPF_B (line 108) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 109) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 110) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 111) | BPF_DIV = 0x30 constant BPF_FILDROP_CAPTURE (line 112) | BPF_FILDROP_CAPTURE = 0x1 constant BPF_FILDROP_DROP (line 113) | BPF_FILDROP_DROP = 0x2 constant BPF_FILDROP_PASS (line 114) | BPF_FILDROP_PASS = 0x0 constant BPF_H (line 115) | BPF_H = 0x8 constant BPF_IMM (line 116) | BPF_IMM = 0x0 constant BPF_IND (line 117) | BPF_IND = 0x40 constant BPF_JA (line 118) | BPF_JA = 0x0 constant BPF_JEQ (line 119) | BPF_JEQ = 0x10 constant BPF_JGE (line 120) | BPF_JGE = 0x30 constant BPF_JGT (line 121) | BPF_JGT = 0x20 constant BPF_JMP (line 122) | BPF_JMP = 0x5 constant BPF_JSET (line 123) | BPF_JSET = 0x40 constant BPF_K (line 124) | BPF_K = 0x0 constant BPF_LD (line 125) | BPF_LD = 0x0 constant BPF_LDX (line 126) | BPF_LDX = 0x1 constant BPF_LEN (line 127) | BPF_LEN = 0x80 constant BPF_LSH (line 128) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 129) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 130) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 131) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 132) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 133) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 134) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 135) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 136) | BPF_MISC = 0x7 constant BPF_MSH (line 137) | BPF_MSH = 0xa0 constant BPF_MUL (line 138) | BPF_MUL = 0x20 constant BPF_NEG (line 139) | BPF_NEG = 0x80 constant BPF_OR (line 140) | BPF_OR = 0x40 constant BPF_RELEASE (line 141) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 142) | BPF_RET = 0x6 constant BPF_RSH (line 143) | BPF_RSH = 0x70 constant BPF_ST (line 144) | BPF_ST = 0x2 constant BPF_STX (line 145) | BPF_STX = 0x3 constant BPF_SUB (line 146) | BPF_SUB = 0x10 constant BPF_TAX (line 147) | BPF_TAX = 0x0 constant BPF_TXA (line 148) | BPF_TXA = 0x80 constant BPF_W (line 149) | BPF_W = 0x0 constant BPF_X (line 150) | BPF_X = 0x8 constant BRKINT (line 151) | BRKINT = 0x2 constant CFLUSH (line 152) | CFLUSH = 0xf constant CLOCAL (line 153) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 154) | CLOCK_BOOTTIME = 0x6 constant CLOCK_MONOTONIC (line 155) | CLOCK_MONOTONIC = 0x3 constant CLOCK_PROCESS_CPUTIME_ID (line 156) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 157) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 158) | CLOCK_THREAD_CPUTIME_ID = 0x4 constant CLOCK_UPTIME (line 159) | CLOCK_UPTIME = 0x5 constant CPUSTATES (line 160) | CPUSTATES = 0x6 constant CP_IDLE (line 161) | CP_IDLE = 0x5 constant CP_INTR (line 162) | CP_INTR = 0x4 constant CP_NICE (line 163) | CP_NICE = 0x1 constant CP_SPIN (line 164) | CP_SPIN = 0x3 constant CP_SYS (line 165) | CP_SYS = 0x2 constant CP_USER (line 166) | CP_USER = 0x0 constant CREAD (line 167) | CREAD = 0x800 constant CRTSCTS (line 168) | CRTSCTS = 0x10000 constant CS5 (line 169) | CS5 = 0x0 constant CS6 (line 170) | CS6 = 0x100 constant CS7 (line 171) | CS7 = 0x200 constant CS8 (line 172) | CS8 = 0x300 constant CSIZE (line 173) | CSIZE = 0x300 constant CSTART (line 174) | CSTART = 0x11 constant CSTATUS (line 175) | CSTATUS = 0xff constant CSTOP (line 176) | CSTOP = 0x13 constant CSTOPB (line 177) | CSTOPB = 0x400 constant CSUSP (line 178) | CSUSP = 0x1a constant CTL_HW (line 179) | CTL_HW = 0x6 constant CTL_KERN (line 180) | CTL_KERN = 0x1 constant CTL_MAXNAME (line 181) | CTL_MAXNAME = 0xc constant CTL_NET (line 182) | CTL_NET = 0x4 constant DIOCADDQUEUE (line 183) | DIOCADDQUEUE = 0xc110445d constant DIOCADDRULE (line 184) | DIOCADDRULE = 0xcd604404 constant DIOCADDSTATE (line 185) | DIOCADDSTATE = 0xc1084425 constant DIOCCHANGERULE (line 186) | DIOCCHANGERULE = 0xcd60441a constant DIOCCLRIFFLAG (line 187) | DIOCCLRIFFLAG = 0xc028445a constant DIOCCLRSRCNODES (line 188) | DIOCCLRSRCNODES = 0x20004455 constant DIOCCLRSTATES (line 189) | DIOCCLRSTATES = 0xc0e04412 constant DIOCCLRSTATUS (line 190) | DIOCCLRSTATUS = 0xc0284416 constant DIOCGETLIMIT (line 191) | DIOCGETLIMIT = 0xc0084427 constant DIOCGETQSTATS (line 192) | DIOCGETQSTATS = 0xc1204460 constant DIOCGETQUEUE (line 193) | DIOCGETQUEUE = 0xc110445f constant DIOCGETQUEUES (line 194) | DIOCGETQUEUES = 0xc110445e constant DIOCGETRULE (line 195) | DIOCGETRULE = 0xcd604407 constant DIOCGETRULES (line 196) | DIOCGETRULES = 0xcd604406 constant DIOCGETRULESET (line 197) | DIOCGETRULESET = 0xc444443b constant DIOCGETRULESETS (line 198) | DIOCGETRULESETS = 0xc444443a constant DIOCGETSRCNODES (line 199) | DIOCGETSRCNODES = 0xc0104454 constant DIOCGETSTATE (line 200) | DIOCGETSTATE = 0xc1084413 constant DIOCGETSTATES (line 201) | DIOCGETSTATES = 0xc0104419 constant DIOCGETSTATUS (line 202) | DIOCGETSTATUS = 0xc1e84415 constant DIOCGETSYNFLWATS (line 203) | DIOCGETSYNFLWATS = 0xc0084463 constant DIOCGETTIMEOUT (line 204) | DIOCGETTIMEOUT = 0xc008441e constant DIOCIGETIFACES (line 205) | DIOCIGETIFACES = 0xc0284457 constant DIOCKILLSRCNODES (line 206) | DIOCKILLSRCNODES = 0xc080445b constant DIOCKILLSTATES (line 207) | DIOCKILLSTATES = 0xc0e04429 constant DIOCNATLOOK (line 208) | DIOCNATLOOK = 0xc0504417 constant DIOCOSFPADD (line 209) | DIOCOSFPADD = 0xc088444f constant DIOCOSFPFLUSH (line 210) | DIOCOSFPFLUSH = 0x2000444e constant DIOCOSFPGET (line 211) | DIOCOSFPGET = 0xc0884450 constant DIOCRADDADDRS (line 212) | DIOCRADDADDRS = 0xc4504443 constant DIOCRADDTABLES (line 213) | DIOCRADDTABLES = 0xc450443d constant DIOCRCLRADDRS (line 214) | DIOCRCLRADDRS = 0xc4504442 constant DIOCRCLRASTATS (line 215) | DIOCRCLRASTATS = 0xc4504448 constant DIOCRCLRTABLES (line 216) | DIOCRCLRTABLES = 0xc450443c constant DIOCRCLRTSTATS (line 217) | DIOCRCLRTSTATS = 0xc4504441 constant DIOCRDELADDRS (line 218) | DIOCRDELADDRS = 0xc4504444 constant DIOCRDELTABLES (line 219) | DIOCRDELTABLES = 0xc450443e constant DIOCRGETADDRS (line 220) | DIOCRGETADDRS = 0xc4504446 constant DIOCRGETASTATS (line 221) | DIOCRGETASTATS = 0xc4504447 constant DIOCRGETTABLES (line 222) | DIOCRGETTABLES = 0xc450443f constant DIOCRGETTSTATS (line 223) | DIOCRGETTSTATS = 0xc4504440 constant DIOCRINADEFINE (line 224) | DIOCRINADEFINE = 0xc450444d constant DIOCRSETADDRS (line 225) | DIOCRSETADDRS = 0xc4504445 constant DIOCRSETTFLAGS (line 226) | DIOCRSETTFLAGS = 0xc450444a constant DIOCRTSTADDRS (line 227) | DIOCRTSTADDRS = 0xc4504449 constant DIOCSETDEBUG (line 228) | DIOCSETDEBUG = 0xc0044418 constant DIOCSETHOSTID (line 229) | DIOCSETHOSTID = 0xc0044456 constant DIOCSETIFFLAG (line 230) | DIOCSETIFFLAG = 0xc0284459 constant DIOCSETLIMIT (line 231) | DIOCSETLIMIT = 0xc0084428 constant DIOCSETREASS (line 232) | DIOCSETREASS = 0xc004445c constant DIOCSETSTATUSIF (line 233) | DIOCSETSTATUSIF = 0xc0284414 constant DIOCSETSYNCOOKIES (line 234) | DIOCSETSYNCOOKIES = 0xc0014462 constant DIOCSETSYNFLWATS (line 235) | DIOCSETSYNFLWATS = 0xc0084461 constant DIOCSETTIMEOUT (line 236) | DIOCSETTIMEOUT = 0xc008441d constant DIOCSTART (line 237) | DIOCSTART = 0x20004401 constant DIOCSTOP (line 238) | DIOCSTOP = 0x20004402 constant DIOCXBEGIN (line 239) | DIOCXBEGIN = 0xc0104451 constant DIOCXCOMMIT (line 240) | DIOCXCOMMIT = 0xc0104452 constant DIOCXROLLBACK (line 241) | DIOCXROLLBACK = 0xc0104453 constant DLT_ARCNET (line 242) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 243) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 244) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 245) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 246) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 247) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 248) | DLT_EN3MB = 0x2 constant DLT_ENC (line 249) | DLT_ENC = 0xd constant DLT_FDDI (line 250) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 251) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 252) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 253) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 254) | DLT_LOOP = 0xc constant DLT_MPLS (line 255) | DLT_MPLS = 0xdb constant DLT_NULL (line 256) | DLT_NULL = 0x0 constant DLT_OPENFLOW (line 257) | DLT_OPENFLOW = 0x10b constant DLT_PFLOG (line 258) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 259) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 260) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 261) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 262) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 263) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 264) | DLT_PRONET = 0x4 constant DLT_RAW (line 265) | DLT_RAW = 0xe constant DLT_SLIP (line 266) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 267) | DLT_SLIP_BSDOS = 0xf constant DLT_USBPCAP (line 268) | DLT_USBPCAP = 0xf9 constant DLT_USER0 (line 269) | DLT_USER0 = 0x93 constant DLT_USER1 (line 270) | DLT_USER1 = 0x94 constant DLT_USER10 (line 271) | DLT_USER10 = 0x9d constant DLT_USER11 (line 272) | DLT_USER11 = 0x9e constant DLT_USER12 (line 273) | DLT_USER12 = 0x9f constant DLT_USER13 (line 274) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 275) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 276) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 277) | DLT_USER2 = 0x95 constant DLT_USER3 (line 278) | DLT_USER3 = 0x96 constant DLT_USER4 (line 279) | DLT_USER4 = 0x97 constant DLT_USER5 (line 280) | DLT_USER5 = 0x98 constant DLT_USER6 (line 281) | DLT_USER6 = 0x99 constant DLT_USER7 (line 282) | DLT_USER7 = 0x9a constant DLT_USER8 (line 283) | DLT_USER8 = 0x9b constant DLT_USER9 (line 284) | DLT_USER9 = 0x9c constant DT_BLK (line 285) | DT_BLK = 0x6 constant DT_CHR (line 286) | DT_CHR = 0x2 constant DT_DIR (line 287) | DT_DIR = 0x4 constant DT_FIFO (line 288) | DT_FIFO = 0x1 constant DT_LNK (line 289) | DT_LNK = 0xa constant DT_REG (line 290) | DT_REG = 0x8 constant DT_SOCK (line 291) | DT_SOCK = 0xc constant DT_UNKNOWN (line 292) | DT_UNKNOWN = 0x0 constant ECHO (line 293) | ECHO = 0x8 constant ECHOCTL (line 294) | ECHOCTL = 0x40 constant ECHOE (line 295) | ECHOE = 0x2 constant ECHOK (line 296) | ECHOK = 0x4 constant ECHOKE (line 297) | ECHOKE = 0x1 constant ECHONL (line 298) | ECHONL = 0x10 constant ECHOPRT (line 299) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 300) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 301) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 302) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 303) | ENDRUNDISC = 0x9 constant ETHERMIN (line 304) | ETHERMIN = 0x2e constant ETHERMTU (line 305) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 306) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 307) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 308) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 309) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 310) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 311) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 312) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 313) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 314) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 315) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 316) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 317) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 318) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 319) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 320) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 321) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 322) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 323) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 324) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 325) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 326) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 327) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 328) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 329) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 330) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 331) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 332) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 333) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 334) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 335) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 336) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 337) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 338) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 339) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 340) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 341) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 342) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 343) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 344) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 345) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 346) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 347) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 348) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 349) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 350) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 351) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 352) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 353) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 354) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 355) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 356) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 357) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 358) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 359) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 360) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 361) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 362) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 363) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 364) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 365) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 366) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 367) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 368) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 369) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 370) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 371) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 372) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 373) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 374) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 375) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 376) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 377) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 378) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 379) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 380) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 381) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 382) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 383) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 384) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 385) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 386) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MACSEC (line 387) | ETHERTYPE_MACSEC = 0x88e5 constant ETHERTYPE_MATRA (line 388) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 389) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 390) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 391) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 392) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 393) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 394) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 395) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 396) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 397) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 398) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 399) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 400) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 401) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 402) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 403) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 404) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 405) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 406) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 407) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 408) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 409) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 410) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 411) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 412) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 413) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 414) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 415) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 416) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 417) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 418) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 419) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 420) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 421) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 422) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 423) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 424) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PBB (line 425) | ETHERTYPE_PBB = 0x88e7 constant ETHERTYPE_PCS (line 426) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 427) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 428) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 429) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 430) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 431) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 432) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 433) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 434) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 435) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 436) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 437) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 438) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 439) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 440) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 441) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 442) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 443) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 444) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 445) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 446) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 447) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 448) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 449) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 450) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 451) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 452) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 453) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 454) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 455) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 456) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 457) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 458) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 459) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 460) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 461) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 462) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 463) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 464) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 465) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 466) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 467) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 468) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 469) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 470) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 471) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 472) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 473) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 474) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 475) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 476) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 477) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 478) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 479) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 480) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 481) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 482) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 483) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 484) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 485) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 486) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 487) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 488) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 489) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 490) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 491) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 492) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 493) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 494) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 495) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 496) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 497) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 498) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 499) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_HARDMTU_LEN (line 500) | ETHER_MAX_HARDMTU_LEN = 0xff9b constant ETHER_MAX_LEN (line 501) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 502) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 503) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 504) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 505) | EVFILT_AIO = -0x3 constant EVFILT_DEVICE (line 506) | EVFILT_DEVICE = -0x8 constant EVFILT_PROC (line 507) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 508) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 509) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 510) | EVFILT_SYSCOUNT = 0x8 constant EVFILT_TIMER (line 511) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 512) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 513) | EVFILT_WRITE = -0x2 constant EVL_ENCAPLEN (line 514) | EVL_ENCAPLEN = 0x4 constant EVL_PRIO_BITS (line 515) | EVL_PRIO_BITS = 0xd constant EVL_PRIO_MAX (line 516) | EVL_PRIO_MAX = 0x7 constant EVL_VLID_MASK (line 517) | EVL_VLID_MASK = 0xfff constant EVL_VLID_MAX (line 518) | EVL_VLID_MAX = 0xffe constant EVL_VLID_MIN (line 519) | EVL_VLID_MIN = 0x1 constant EVL_VLID_NULL (line 520) | EVL_VLID_NULL = 0x0 constant EV_ADD (line 521) | EV_ADD = 0x1 constant EV_CLEAR (line 522) | EV_CLEAR = 0x20 constant EV_DELETE (line 523) | EV_DELETE = 0x2 constant EV_DISABLE (line 524) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 525) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 526) | EV_ENABLE = 0x4 constant EV_EOF (line 527) | EV_EOF = 0x8000 constant EV_ERROR (line 528) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 529) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 530) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 531) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 532) | EV_SYSFLAGS = 0xf000 constant EXTA (line 533) | EXTA = 0x4b00 constant EXTB (line 534) | EXTB = 0x9600 constant EXTPROC (line 535) | EXTPROC = 0x800 constant FD_CLOEXEC (line 536) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 537) | FD_SETSIZE = 0x400 constant FLUSHO (line 538) | FLUSHO = 0x800000 constant F_DUPFD (line 539) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 540) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 541) | F_GETFD = 0x1 constant F_GETFL (line 542) | F_GETFL = 0x3 constant F_GETLK (line 543) | F_GETLK = 0x7 constant F_GETOWN (line 544) | F_GETOWN = 0x5 constant F_ISATTY (line 545) | F_ISATTY = 0xb constant F_OK (line 546) | F_OK = 0x0 constant F_RDLCK (line 547) | F_RDLCK = 0x1 constant F_SETFD (line 548) | F_SETFD = 0x2 constant F_SETFL (line 549) | F_SETFL = 0x4 constant F_SETLK (line 550) | F_SETLK = 0x8 constant F_SETLKW (line 551) | F_SETLKW = 0x9 constant F_SETOWN (line 552) | F_SETOWN = 0x6 constant F_UNLCK (line 553) | F_UNLCK = 0x2 constant F_WRLCK (line 554) | F_WRLCK = 0x3 constant HUPCL (line 555) | HUPCL = 0x4000 constant HW_MACHINE (line 556) | HW_MACHINE = 0x1 constant ICANON (line 557) | ICANON = 0x100 constant ICMP6_FILTER (line 558) | ICMP6_FILTER = 0x12 constant ICRNL (line 559) | ICRNL = 0x100 constant IEXTEN (line 560) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 561) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 562) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 563) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 564) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 565) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 566) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 567) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 568) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 569) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 570) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 571) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 572) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 573) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 574) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 575) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 576) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 577) | IFF_SIMPLEX = 0x800 constant IFF_STATICARP (line 578) | IFF_STATICARP = 0x20 constant IFF_UP (line 579) | IFF_UP = 0x1 constant IFNAMSIZ (line 580) | IFNAMSIZ = 0x10 constant IFT_1822 (line 581) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 582) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 583) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 584) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 585) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 586) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 587) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 588) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 589) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 590) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 591) | IFT_ASYNC = 0x54 constant IFT_ATM (line 592) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 593) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 594) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 595) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 596) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 597) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 598) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 599) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 600) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 601) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 602) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 603) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 604) | IFT_BSC = 0x53 constant IFT_CARP (line 605) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 606) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 607) | IFT_CEPT = 0x13 constant IFT_CES (line 608) | IFT_CES = 0x85 constant IFT_CHANNEL (line 609) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 610) | IFT_CNR = 0x55 constant IFT_COFFEE (line 611) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 612) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 613) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 614) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 615) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 616) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 617) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 618) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 619) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 620) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 621) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 622) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 623) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 624) | IFT_DS3 = 0x1e constant IFT_DTM (line 625) | IFT_DTM = 0x8c constant IFT_DUMMY (line 626) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 627) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 628) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 629) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 630) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 631) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 632) | IFT_ECONET = 0xce constant IFT_ENC (line 633) | IFT_ENC = 0xf4 constant IFT_EON (line 634) | IFT_EON = 0x19 constant IFT_EPLRS (line 635) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 636) | IFT_ESCON = 0x49 constant IFT_ETHER (line 637) | IFT_ETHER = 0x6 constant IFT_FAITH (line 638) | IFT_FAITH = 0xf3 constant IFT_FAST (line 639) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 640) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 641) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 642) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 643) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 644) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 645) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 646) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 647) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 648) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 649) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 650) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 651) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 652) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 653) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 654) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 655) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 656) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 657) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 658) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 659) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 660) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 661) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 662) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 663) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 664) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 665) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 666) | IFT_HSSI = 0x2e constant IFT_HY (line 667) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 668) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 669) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 670) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 671) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 672) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 673) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 674) | IFT_IFGSN = 0x91 constant IFT_IMT (line 675) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 676) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 677) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 678) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 679) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 680) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 681) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 682) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 683) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 684) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 685) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 686) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 687) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 688) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 689) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 690) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 691) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 692) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 693) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 694) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 695) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 696) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 697) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 698) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 699) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 700) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 701) | IFT_LAPB = 0x10 constant IFT_LAPD (line 702) | IFT_LAPD = 0x4d constant IFT_LAPF (line 703) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 704) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 705) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 706) | IFT_LOOP = 0x18 constant IFT_MBIM (line 707) | IFT_MBIM = 0xfa constant IFT_MEDIAMAILOVERIP (line 708) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 709) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 710) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 711) | IFT_MODEM = 0x30 constant IFT_MPC (line 712) | IFT_MPC = 0x71 constant IFT_MPLS (line 713) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 714) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 715) | IFT_MSDSL = 0x8f constant IFT_MVL (line 716) | IFT_MVL = 0xbf constant IFT_MYRINET (line 717) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 718) | IFT_NFAS = 0xaf constant IFT_NSIP (line 719) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 720) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 721) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 722) | IFT_OTHER = 0x1 constant IFT_P10 (line 723) | IFT_P10 = 0xc constant IFT_P80 (line 724) | IFT_P80 = 0xd constant IFT_PARA (line 725) | IFT_PARA = 0x22 constant IFT_PFLOG (line 726) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 727) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 728) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 729) | IFT_PLC = 0xae constant IFT_PON155 (line 730) | IFT_PON155 = 0xcf constant IFT_PON622 (line 731) | IFT_PON622 = 0xd0 constant IFT_POS (line 732) | IFT_POS = 0xab constant IFT_PPP (line 733) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 734) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 735) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 736) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 737) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 738) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 739) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 740) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 741) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 742) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 743) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 744) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 745) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 746) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 747) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 748) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 749) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 750) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 751) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 752) | IFT_RS232 = 0x21 constant IFT_RSRB (line 753) | IFT_RSRB = 0x4f constant IFT_SDLC (line 754) | IFT_SDLC = 0x11 constant IFT_SDSL (line 755) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 756) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 757) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 758) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 759) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 760) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 761) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 762) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 763) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 764) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 765) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 766) | IFT_SONETVT = 0x33 constant IFT_SRP (line 767) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 768) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 769) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 770) | IFT_STARLAN = 0xb constant IFT_T1 (line 771) | IFT_T1 = 0x12 constant IFT_TDLC (line 772) | IFT_TDLC = 0x74 constant IFT_TELINK (line 773) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 774) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 775) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 776) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 777) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 778) | IFT_ULTRA = 0x1d constant IFT_USB (line 779) | IFT_USB = 0xa0 constant IFT_V11 (line 780) | IFT_V11 = 0x40 constant IFT_V35 (line 781) | IFT_V35 = 0x2d constant IFT_V36 (line 782) | IFT_V36 = 0x41 constant IFT_V37 (line 783) | IFT_V37 = 0x78 constant IFT_VDSL (line 784) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 785) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 786) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 787) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 788) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 789) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 790) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 791) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 792) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 793) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 794) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 795) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 796) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 797) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 798) | IFT_X213 = 0x5d constant IFT_X25 (line 799) | IFT_X25 = 0x5 constant IFT_X25DDN (line 800) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 801) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 802) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 803) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 804) | IFT_XETHER = 0x1a constant IGNBRK (line 805) | IGNBRK = 0x1 constant IGNCR (line 806) | IGNCR = 0x80 constant IGNPAR (line 807) | IGNPAR = 0x4 constant IMAXBEL (line 808) | IMAXBEL = 0x2000 constant INLCR (line 809) | INLCR = 0x40 constant INPCK (line 810) | INPCK = 0x10 constant IN_CLASSA_HOST (line 811) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 812) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 813) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 814) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 815) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 816) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 817) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 818) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 819) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 820) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 821) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 822) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 823) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 824) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 825) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 826) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 827) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 828) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 829) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 830) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 831) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 832) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 833) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 834) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 835) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 836) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 837) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 838) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 839) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 840) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 841) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 842) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 843) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 844) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 845) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 846) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 847) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 848) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 849) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 850) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 851) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 852) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 853) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 854) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 855) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 856) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 857) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 858) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 859) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 860) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 861) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 862) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 863) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 864) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 865) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 866) | IPPROTO_UDPLITE = 0x88 constant IPV6_AUTH_LEVEL (line 867) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 868) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 869) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 870) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 871) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 872) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 873) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 874) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 875) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 876) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 877) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 878) | IPV6_FLOWINFO_MASK = 0xfffffff constant IPV6_FLOWLABEL_MASK (line 879) | IPV6_FLOWLABEL_MASK = 0xfffff constant IPV6_FRAGTTL (line 880) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 881) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 882) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 883) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 884) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 885) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 886) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 887) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 888) | IPV6_MAXPACKET = 0xffff constant IPV6_MINHOPCOUNT (line 889) | IPV6_MINHOPCOUNT = 0x41 constant IPV6_MMTU (line 890) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 891) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 892) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 893) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 894) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 895) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 896) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 897) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 898) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 899) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 900) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 901) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 902) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 903) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 904) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 905) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 906) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 907) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 908) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 909) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 910) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 911) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 912) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 913) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 914) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 915) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 916) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 917) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 918) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 919) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 920) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 921) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 922) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 923) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 924) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 925) | IP_AUTH_LEVEL = 0x14 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_ESP_NETWORK_LEVEL (line 930) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 931) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 932) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 933) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPDEFTTL (line 934) | IP_IPDEFTTL = 0x25 constant IP_IPSECFLOWINFO (line 935) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 936) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 937) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 938) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 939) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 940) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 941) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 942) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 943) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 944) | IP_MF = 0x2000 constant IP_MINTTL (line 945) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 946) | IP_MIN_MEMBERSHIPS = 0xf 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_PIPEX (line 953) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 954) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 955) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 956) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 957) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 958) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 959) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 960) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 961) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 962) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 963) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 964) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 965) | IP_RETOPTS = 0x8 constant IP_RF (line 966) | IP_RF = 0x8000 constant IP_RTABLE (line 967) | IP_RTABLE = 0x1021 constant IP_SENDSRCADDR (line 968) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 969) | IP_TOS = 0x3 constant IP_TTL (line 970) | IP_TTL = 0x4 constant ISIG (line 971) | ISIG = 0x80 constant ISTRIP (line 972) | ISTRIP = 0x20 constant IUCLC (line 973) | IUCLC = 0x1000 constant IXANY (line 974) | IXANY = 0x800 constant IXOFF (line 975) | IXOFF = 0x400 constant IXON (line 976) | IXON = 0x200 constant KERN_HOSTNAME (line 977) | KERN_HOSTNAME = 0xa constant KERN_OSRELEASE (line 978) | KERN_OSRELEASE = 0x2 constant KERN_OSTYPE (line 979) | KERN_OSTYPE = 0x1 constant KERN_VERSION (line 980) | KERN_VERSION = 0x4 constant LCNT_OVERLOAD_FLUSH (line 981) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 982) | LOCK_EX = 0x2 constant LOCK_NB (line 983) | LOCK_NB = 0x4 constant LOCK_SH (line 984) | LOCK_SH = 0x1 constant LOCK_UN (line 985) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 986) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 987) | MADV_FREE = 0x6 constant MADV_NORMAL (line 988) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 989) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 990) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 991) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 992) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 993) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 994) | MAP_ANONYMOUS = 0x1000 constant MAP_CONCEAL (line 995) | MAP_CONCEAL = 0x8000 constant MAP_COPY (line 996) | MAP_COPY = 0x2 constant MAP_FILE (line 997) | MAP_FILE = 0x0 constant MAP_FIXED (line 998) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 999) | MAP_FLAGMASK = 0xfff7 constant MAP_HASSEMAPHORE (line 1000) | MAP_HASSEMAPHORE = 0x0 constant MAP_INHERIT (line 1001) | MAP_INHERIT = 0x0 constant MAP_INHERIT_COPY (line 1002) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_NONE (line 1003) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1004) | MAP_INHERIT_SHARE = 0x0 constant MAP_INHERIT_ZERO (line 1005) | MAP_INHERIT_ZERO = 0x3 constant MAP_NOEXTEND (line 1006) | MAP_NOEXTEND = 0x0 constant MAP_NORESERVE (line 1007) | MAP_NORESERVE = 0x0 constant MAP_PRIVATE (line 1008) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1009) | MAP_RENAME = 0x0 constant MAP_SHARED (line 1010) | MAP_SHARED = 0x1 constant MAP_STACK (line 1011) | MAP_STACK = 0x4000 constant MAP_TRYFIXED (line 1012) | MAP_TRYFIXED = 0x0 constant MCL_CURRENT (line 1013) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1014) | MCL_FUTURE = 0x2 constant MNT_ASYNC (line 1015) | MNT_ASYNC = 0x40 constant MNT_DEFEXPORTED (line 1016) | MNT_DEFEXPORTED = 0x200 constant MNT_DELEXPORT (line 1017) | MNT_DELEXPORT = 0x20000 constant MNT_DOOMED (line 1018) | MNT_DOOMED = 0x8000000 constant MNT_EXPORTANON (line 1019) | MNT_EXPORTANON = 0x400 constant MNT_EXPORTED (line 1020) | MNT_EXPORTED = 0x100 constant MNT_EXRDONLY (line 1021) | MNT_EXRDONLY = 0x80 constant MNT_FORCE (line 1022) | MNT_FORCE = 0x80000 constant MNT_LAZY (line 1023) | MNT_LAZY = 0x3 constant MNT_LOCAL (line 1024) | MNT_LOCAL = 0x1000 constant MNT_NOATIME (line 1025) | MNT_NOATIME = 0x8000 constant MNT_NODEV (line 1026) | MNT_NODEV = 0x10 constant MNT_NOEXEC (line 1027) | MNT_NOEXEC = 0x4 constant MNT_NOPERM (line 1028) | MNT_NOPERM = 0x20 constant MNT_NOSUID (line 1029) | MNT_NOSUID = 0x8 constant MNT_NOWAIT (line 1030) | MNT_NOWAIT = 0x2 constant MNT_QUOTA (line 1031) | MNT_QUOTA = 0x2000 constant MNT_RDONLY (line 1032) | MNT_RDONLY = 0x1 constant MNT_RELOAD (line 1033) | MNT_RELOAD = 0x40000 constant MNT_ROOTFS (line 1034) | MNT_ROOTFS = 0x4000 constant MNT_SOFTDEP (line 1035) | MNT_SOFTDEP = 0x4000000 constant MNT_STALLED (line 1036) | MNT_STALLED = 0x100000 constant MNT_SWAPPABLE (line 1037) | MNT_SWAPPABLE = 0x200000 constant MNT_SYNCHRONOUS (line 1038) | MNT_SYNCHRONOUS = 0x2 constant MNT_UPDATE (line 1039) | MNT_UPDATE = 0x10000 constant MNT_VISFLAGMASK (line 1040) | MNT_VISFLAGMASK = 0x400ffff constant MNT_WAIT (line 1041) | MNT_WAIT = 0x1 constant MNT_WANTRDWR (line 1042) | MNT_WANTRDWR = 0x2000000 constant MNT_WXALLOWED (line 1043) | MNT_WXALLOWED = 0x800 constant MSG_BCAST (line 1044) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1045) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CTRUNC (line 1046) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1047) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1048) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1049) | MSG_EOR = 0x8 constant MSG_MCAST (line 1050) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 1051) | MSG_NOSIGNAL = 0x400 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 MS_ASYNC (line 1056) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1057) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 1058) | MS_SYNC = 0x2 constant NAME_MAX (line 1059) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1060) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1061) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1062) | NET_RT_IFLIST = 0x3 constant NET_RT_IFNAMES (line 1063) | NET_RT_IFNAMES = 0x6 constant NET_RT_MAXID (line 1064) | NET_RT_MAXID = 0x7 constant NET_RT_STATS (line 1065) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 1066) | NET_RT_TABLE = 0x5 constant NFDBITS (line 1067) | NFDBITS = 0x20 constant NOFLSH (line 1068) | NOFLSH = 0x80000000 constant NOKERNINFO (line 1069) | NOKERNINFO = 0x2000000 constant NOTE_ATTRIB (line 1070) | NOTE_ATTRIB = 0x8 constant NOTE_CHANGE (line 1071) | NOTE_CHANGE = 0x1 constant NOTE_CHILD (line 1072) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1073) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 1074) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 1075) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1076) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1077) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1078) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1079) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1080) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1081) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1082) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1083) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1084) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1085) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1086) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 1087) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 1088) | NOTE_WRITE = 0x2 constant OCRNL (line 1089) | OCRNL = 0x10 constant OLCUC (line 1090) | OLCUC = 0x20 constant ONLCR (line 1091) | ONLCR = 0x2 constant ONLRET (line 1092) | ONLRET = 0x80 constant ONOCR (line 1093) | ONOCR = 0x40 constant ONOEOT (line 1094) | ONOEOT = 0x8 constant OPOST (line 1095) | OPOST = 0x1 constant OXTABS (line 1096) | OXTABS = 0x4 constant O_ACCMODE (line 1097) | O_ACCMODE = 0x3 constant O_APPEND (line 1098) | O_APPEND = 0x8 constant O_ASYNC (line 1099) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1100) | O_CLOEXEC = 0x10000 constant O_CREAT (line 1101) | O_CREAT = 0x200 constant O_DIRECTORY (line 1102) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 1103) | O_DSYNC = 0x80 constant O_EXCL (line 1104) | O_EXCL = 0x800 constant O_EXLOCK (line 1105) | O_EXLOCK = 0x20 constant O_FSYNC (line 1106) | O_FSYNC = 0x80 constant O_NDELAY (line 1107) | O_NDELAY = 0x4 constant O_NOCTTY (line 1108) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1109) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1110) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1111) | O_RDONLY = 0x0 constant O_RDWR (line 1112) | O_RDWR = 0x2 constant O_RSYNC (line 1113) | O_RSYNC = 0x80 constant O_SHLOCK (line 1114) | O_SHLOCK = 0x10 constant O_SYNC (line 1115) | O_SYNC = 0x80 constant O_TRUNC (line 1116) | O_TRUNC = 0x400 constant O_WRONLY (line 1117) | O_WRONLY = 0x1 constant PARENB (line 1118) | PARENB = 0x1000 constant PARMRK (line 1119) | PARMRK = 0x8 constant PARODD (line 1120) | PARODD = 0x2000 constant PENDIN (line 1121) | PENDIN = 0x20000000 constant PF_FLUSH (line 1122) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 1123) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1124) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1125) | PRIO_USER = 0x2 constant PROT_EXEC (line 1126) | PROT_EXEC = 0x4 constant PROT_NONE (line 1127) | PROT_NONE = 0x0 constant PROT_READ (line 1128) | PROT_READ = 0x1 constant PROT_WRITE (line 1129) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 1130) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1131) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1132) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1133) | RLIMIT_FSIZE = 0x1 constant RLIMIT_MEMLOCK (line 1134) | RLIMIT_MEMLOCK = 0x6 constant RLIMIT_NOFILE (line 1135) | RLIMIT_NOFILE = 0x8 constant RLIMIT_NPROC (line 1136) | RLIMIT_NPROC = 0x7 constant RLIMIT_RSS (line 1137) | RLIMIT_RSS = 0x5 constant RLIMIT_STACK (line 1138) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1139) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1140) | RTAX_AUTHOR = 0x6 constant RTAX_BFD (line 1141) | RTAX_BFD = 0xb constant RTAX_BRD (line 1142) | RTAX_BRD = 0x7 constant RTAX_DNS (line 1143) | RTAX_DNS = 0xc constant RTAX_DST (line 1144) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1145) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1146) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1147) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1148) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 1149) | RTAX_LABEL = 0xa constant RTAX_MAX (line 1150) | RTAX_MAX = 0xf constant RTAX_NETMASK (line 1151) | RTAX_NETMASK = 0x2 constant RTAX_SEARCH (line 1152) | RTAX_SEARCH = 0xe constant RTAX_SRC (line 1153) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 1154) | RTAX_SRCMASK = 0x9 constant RTAX_STATIC (line 1155) | RTAX_STATIC = 0xd constant RTA_AUTHOR (line 1156) | RTA_AUTHOR = 0x40 constant RTA_BFD (line 1157) | RTA_BFD = 0x800 constant RTA_BRD (line 1158) | RTA_BRD = 0x80 constant RTA_DNS (line 1159) | RTA_DNS = 0x1000 constant RTA_DST (line 1160) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1161) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1162) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1163) | RTA_IFA = 0x20 constant RTA_IFP (line 1164) | RTA_IFP = 0x10 constant RTA_LABEL (line 1165) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1166) | RTA_NETMASK = 0x4 constant RTA_SEARCH (line 1167) | RTA_SEARCH = 0x4000 constant RTA_SRC (line 1168) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1169) | RTA_SRCMASK = 0x200 constant RTA_STATIC (line 1170) | RTA_STATIC = 0x2000 constant RTF_ANNOUNCE (line 1171) | RTF_ANNOUNCE = 0x4000 constant RTF_BFD (line 1172) | RTF_BFD = 0x1000000 constant RTF_BLACKHOLE (line 1173) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1174) | RTF_BROADCAST = 0x400000 constant RTF_CACHED (line 1175) | RTF_CACHED = 0x20000 constant RTF_CLONED (line 1176) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1177) | RTF_CLONING = 0x100 constant RTF_CONNECTED (line 1178) | RTF_CONNECTED = 0x800000 constant RTF_DONE (line 1179) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1180) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1181) | RTF_FMASK = 0x110fc08 constant RTF_GATEWAY (line 1182) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1183) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1184) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1185) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1186) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1187) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1188) | RTF_MPLS = 0x100000 constant RTF_MULTICAST (line 1189) | RTF_MULTICAST = 0x200 constant RTF_PERMANENT_ARP (line 1190) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1191) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1192) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1193) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1194) | RTF_REJECT = 0x8 constant RTF_STATIC (line 1195) | RTF_STATIC = 0x800 constant RTF_UP (line 1196) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1197) | RTF_USETRAILERS = 0x8000 constant RTM_80211INFO (line 1198) | RTM_80211INFO = 0x15 constant RTM_ADD (line 1199) | RTM_ADD = 0x1 constant RTM_BFD (line 1200) | RTM_BFD = 0x12 constant RTM_CHANGE (line 1201) | RTM_CHANGE = 0x3 constant RTM_CHGADDRATTR (line 1202) | RTM_CHGADDRATTR = 0x14 constant RTM_DELADDR (line 1203) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1204) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1205) | RTM_DESYNC = 0x10 constant RTM_GET (line 1206) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1207) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1208) | RTM_IFINFO = 0xe constant RTM_INVALIDATE (line 1209) | RTM_INVALIDATE = 0x11 constant RTM_LOSING (line 1210) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1211) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1212) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1213) | RTM_NEWADDR = 0xc constant RTM_PROPOSAL (line 1214) | RTM_PROPOSAL = 0x13 constant RTM_REDIRECT (line 1215) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1216) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1217) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1218) | RTM_VERSION = 0x5 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 RT_TABLEID_BITS (line 1227) | RT_TABLEID_BITS = 0x8 constant RT_TABLEID_MASK (line 1228) | RT_TABLEID_MASK = 0xff constant RT_TABLEID_MAX (line 1229) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1230) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1231) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1232) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1233) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1234) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1235) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1236) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1237) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1238) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1239) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1240) | SIOCAIFGROUP = 0x80286987 constant SIOCATMARK (line 1241) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1242) | SIOCBRDGADD = 0x8060693c constant SIOCBRDGADDL (line 1243) | SIOCBRDGADDL = 0x80606949 constant SIOCBRDGADDS (line 1244) | SIOCBRDGADDS = 0x80606941 constant SIOCBRDGARL (line 1245) | SIOCBRDGARL = 0x808c694d constant SIOCBRDGDADDR (line 1246) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1247) | SIOCBRDGDEL = 0x8060693d constant SIOCBRDGDELS (line 1248) | SIOCBRDGDELS = 0x80606942 constant SIOCBRDGFLUSH (line 1249) | SIOCBRDGFLUSH = 0x80606948 constant SIOCBRDGFRL (line 1250) | SIOCBRDGFRL = 0x808c694e constant SIOCBRDGGCACHE (line 1251) | SIOCBRDGGCACHE = 0xc0186941 constant SIOCBRDGGFD (line 1252) | SIOCBRDGGFD = 0xc0186952 constant SIOCBRDGGHT (line 1253) | SIOCBRDGGHT = 0xc0186951 constant SIOCBRDGGIFFLGS (line 1254) | SIOCBRDGGIFFLGS = 0xc060693e constant SIOCBRDGGMA (line 1255) | SIOCBRDGGMA = 0xc0186953 constant SIOCBRDGGPARAM (line 1256) | SIOCBRDGGPARAM = 0xc0406958 constant SIOCBRDGGPRI (line 1257) | SIOCBRDGGPRI = 0xc0186950 constant SIOCBRDGGRL (line 1258) | SIOCBRDGGRL = 0xc030694f constant SIOCBRDGGTO (line 1259) | SIOCBRDGGTO = 0xc0186946 constant SIOCBRDGIFS (line 1260) | SIOCBRDGIFS = 0xc0606942 constant SIOCBRDGRTS (line 1261) | SIOCBRDGRTS = 0xc0206943 constant SIOCBRDGSADDR (line 1262) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1263) | SIOCBRDGSCACHE = 0x80186940 constant SIOCBRDGSFD (line 1264) | SIOCBRDGSFD = 0x80186952 constant SIOCBRDGSHT (line 1265) | SIOCBRDGSHT = 0x80186951 constant SIOCBRDGSIFCOST (line 1266) | SIOCBRDGSIFCOST = 0x80606955 constant SIOCBRDGSIFFLGS (line 1267) | SIOCBRDGSIFFLGS = 0x8060693f constant SIOCBRDGSIFPRIO (line 1268) | SIOCBRDGSIFPRIO = 0x80606954 constant SIOCBRDGSIFPROT (line 1269) | SIOCBRDGSIFPROT = 0x8060694a constant SIOCBRDGSMA (line 1270) | SIOCBRDGSMA = 0x80186953 constant SIOCBRDGSPRI (line 1271) | SIOCBRDGSPRI = 0x80186950 constant SIOCBRDGSPROTO (line 1272) | SIOCBRDGSPROTO = 0x8018695a constant SIOCBRDGSTO (line 1273) | SIOCBRDGSTO = 0x80186945 constant SIOCBRDGSTXHC (line 1274) | SIOCBRDGSTXHC = 0x80186959 constant SIOCDELLABEL (line 1275) | SIOCDELLABEL = 0x80206997 constant SIOCDELMULTI (line 1276) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1277) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1278) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPARENT (line 1279) | SIOCDIFPARENT = 0x802069b4 constant SIOCDIFPHYADDR (line 1280) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDPWE3NEIGHBOR (line 1281) | SIOCDPWE3NEIGHBOR = 0x802069de constant SIOCDVNETID (line 1282) | SIOCDVNETID = 0x802069af constant SIOCGETKALIVE (line 1283) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1284) | SIOCGETLABEL = 0x8020699a constant SIOCGETMPWCFG (line 1285) | SIOCGETMPWCFG = 0xc02069ae constant SIOCGETPFLOW (line 1286) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1287) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1288) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1289) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGETVLAN (line 1290) | SIOCGETVLAN = 0xc0206990 constant SIOCGIFADDR (line 1291) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1292) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1293) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1294) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1295) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1296) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1297) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1298) | SIOCGIFGATTR = 0xc028698b constant SIOCGIFGENERIC (line 1299) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGLIST (line 1300) | SIOCGIFGLIST = 0xc028698d constant SIOCGIFGMEMB (line 1301) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1302) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFHARDMTU (line 1303) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFLLPRIO (line 1304) | SIOCGIFLLPRIO = 0xc02069b6 constant SIOCGIFMEDIA (line 1305) | SIOCGIFMEDIA = 0xc0406938 constant SIOCGIFMETRIC (line 1306) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1307) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1308) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPAIR (line 1309) | SIOCGIFPAIR = 0xc02069b1 constant SIOCGIFPARENT (line 1310) | SIOCGIFPARENT = 0xc02069b3 constant SIOCGIFPRIORITY (line 1311) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFRDOMAIN (line 1312) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1313) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFRXR (line 1314) | SIOCGIFRXR = 0x802069aa constant SIOCGIFSFFPAGE (line 1315) | SIOCGIFSFFPAGE = 0xc1126939 constant SIOCGIFXFLAGS (line 1316) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFPHYADDR (line 1317) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYDF (line 1318) | SIOCGLIFPHYDF = 0xc02069c2 constant SIOCGLIFPHYECN (line 1319) | SIOCGLIFPHYECN = 0xc02069c8 constant SIOCGLIFPHYRTABLE (line 1320) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1321) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGPGRP (line 1322) | SIOCGPGRP = 0x40047309 constant SIOCGPWE3 (line 1323) | SIOCGPWE3 = 0xc0206998 constant SIOCGPWE3CTRLWORD (line 1324) | SIOCGPWE3CTRLWORD = 0xc02069dc constant SIOCGPWE3FAT (line 1325) | SIOCGPWE3FAT = 0xc02069dd constant SIOCGPWE3NEIGHBOR (line 1326) | SIOCGPWE3NEIGHBOR = 0xc21869de constant SIOCGRXHPRIO (line 1327) | SIOCGRXHPRIO = 0xc02069db constant SIOCGSPPPPARAMS (line 1328) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGTXHPRIO (line 1329) | SIOCGTXHPRIO = 0xc02069c6 constant SIOCGUMBINFO (line 1330) | SIOCGUMBINFO = 0xc02069be constant SIOCGUMBPARAM (line 1331) | SIOCGUMBPARAM = 0xc02069c0 constant SIOCGVH (line 1332) | SIOCGVH = 0xc02069f6 constant SIOCGVNETFLOWID (line 1333) | SIOCGVNETFLOWID = 0xc02069c4 constant SIOCGVNETID (line 1334) | SIOCGVNETID = 0xc02069a7 constant SIOCIFAFATTACH (line 1335) | SIOCIFAFATTACH = 0x801169ab constant SIOCIFAFDETACH (line 1336) | SIOCIFAFDETACH = 0x801169ac constant SIOCIFCREATE (line 1337) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1338) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1339) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSETKALIVE (line 1340) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1341) | SIOCSETLABEL = 0x80206999 constant SIOCSETMPWCFG (line 1342) | SIOCSETMPWCFG = 0x802069ad constant SIOCSETPFLOW (line 1343) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1344) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1345) | SIOCSETVLAN = 0x8020698f constant SIOCSIFADDR (line 1346) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1347) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1348) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1349) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1350) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1351) | SIOCSIFGATTR = 0x8028698c constant SIOCSIFGENERIC (line 1352) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1353) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFLLPRIO (line 1354) | SIOCSIFLLPRIO = 0x802069b5 constant SIOCSIFMEDIA (line 1355) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1356) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1357) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1358) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPAIR (line 1359) | SIOCSIFPAIR = 0x802069b0 constant SIOCSIFPARENT (line 1360) | SIOCSIFPARENT = 0x802069b2 constant SIOCSIFPRIORITY (line 1361) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1362) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1363) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFXFLAGS (line 1364) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1365) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYDF (line 1366) | SIOCSLIFPHYDF = 0x802069c1 constant SIOCSLIFPHYECN (line 1367) | SIOCSLIFPHYECN = 0x802069c7 constant SIOCSLIFPHYRTABLE (line 1368) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1369) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSPGRP (line 1370) | SIOCSPGRP = 0x80047308 constant SIOCSPWE3CTRLWORD (line 1371) | SIOCSPWE3CTRLWORD = 0x802069dc constant SIOCSPWE3FAT (line 1372) | SIOCSPWE3FAT = 0x802069dd constant SIOCSPWE3NEIGHBOR (line 1373) | SIOCSPWE3NEIGHBOR = 0x821869de constant SIOCSRXHPRIO (line 1374) | SIOCSRXHPRIO = 0x802069db constant SIOCSSPPPPARAMS (line 1375) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSTXHPRIO (line 1376) | SIOCSTXHPRIO = 0x802069c5 constant SIOCSUMBPARAM (line 1377) | SIOCSUMBPARAM = 0x802069bf constant SIOCSVH (line 1378) | SIOCSVH = 0xc02069f5 constant SIOCSVNETFLOWID (line 1379) | SIOCSVNETFLOWID = 0x802069c3 constant SIOCSVNETID (line 1380) | SIOCSVNETID = 0x802069a6 constant SIOCSWGDPID (line 1381) | SIOCSWGDPID = 0xc018695b constant SIOCSWGMAXFLOW (line 1382) | SIOCSWGMAXFLOW = 0xc0186960 constant SIOCSWGMAXGROUP (line 1383) | SIOCSWGMAXGROUP = 0xc018695d constant SIOCSWSDPID (line 1384) | SIOCSWSDPID = 0x8018695c constant SIOCSWSPORTNO (line 1385) | SIOCSWSPORTNO = 0xc060695f constant SOCK_CLOEXEC (line 1386) | SOCK_CLOEXEC = 0x8000 constant SOCK_DGRAM (line 1387) | SOCK_DGRAM = 0x2 constant SOCK_DNS (line 1388) | SOCK_DNS = 0x1000 constant SOCK_NONBLOCK (line 1389) | SOCK_NONBLOCK = 0x4000 constant SOCK_RAW (line 1390) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1391) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1392) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1393) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1394) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1395) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1396) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1397) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1398) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1399) | SO_DEBUG = 0x1 constant SO_DOMAIN (line 1400) | SO_DOMAIN = 0x1024 constant SO_DONTROUTE (line 1401) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1402) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1403) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1404) | SO_LINGER = 0x80 constant SO_NETPROC (line 1405) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1406) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1407) | SO_PEERCRED = 0x1022 constant SO_PROTOCOL (line 1408) | SO_PROTOCOL = 0x1025 constant SO_RCVBUF (line 1409) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1410) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1411) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1412) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1413) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1414) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1415) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1416) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1417) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1418) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1419) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1420) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1421) | SO_USELOOPBACK = 0x40 constant SO_ZEROIZE (line 1422) | SO_ZEROIZE = 0x2000 constant S_BLKSIZE (line 1423) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1424) | S_IEXEC = 0x40 constant S_IFBLK (line 1425) | S_IFBLK = 0x6000 constant S_IFCHR (line 1426) | S_IFCHR = 0x2000 constant S_IFDIR (line 1427) | S_IFDIR = 0x4000 constant S_IFIFO (line 1428) | S_IFIFO = 0x1000 constant S_IFLNK (line 1429) | S_IFLNK = 0xa000 constant S_IFMT (line 1430) | S_IFMT = 0xf000 constant S_IFREG (line 1431) | S_IFREG = 0x8000 constant S_IFSOCK (line 1432) | S_IFSOCK = 0xc000 constant S_IREAD (line 1433) | S_IREAD = 0x100 constant S_IRGRP (line 1434) | S_IRGRP = 0x20 constant S_IROTH (line 1435) | S_IROTH = 0x4 constant S_IRUSR (line 1436) | S_IRUSR = 0x100 constant S_IRWXG (line 1437) | S_IRWXG = 0x38 constant S_IRWXO (line 1438) | S_IRWXO = 0x7 constant S_IRWXU (line 1439) | S_IRWXU = 0x1c0 constant S_ISGID (line 1440) | S_ISGID = 0x400 constant S_ISTXT (line 1441) | S_ISTXT = 0x200 constant S_ISUID (line 1442) | S_ISUID = 0x800 constant S_ISVTX (line 1443) | S_ISVTX = 0x200 constant S_IWGRP (line 1444) | S_IWGRP = 0x10 constant S_IWOTH (line 1445) | S_IWOTH = 0x2 constant S_IWRITE (line 1446) | S_IWRITE = 0x80 constant S_IWUSR (line 1447) | S_IWUSR = 0x80 constant S_IXGRP (line 1448) | S_IXGRP = 0x8 constant S_IXOTH (line 1449) | S_IXOTH = 0x1 constant S_IXUSR (line 1450) | S_IXUSR = 0x40 constant TCIFLUSH (line 1451) | TCIFLUSH = 0x1 constant TCIOFF (line 1452) | TCIOFF = 0x3 constant TCIOFLUSH (line 1453) | TCIOFLUSH = 0x3 constant TCION (line 1454) | TCION = 0x4 constant TCOFLUSH (line 1455) | TCOFLUSH = 0x2 constant TCOOFF (line 1456) | TCOOFF = 0x1 constant TCOON (line 1457) | TCOON = 0x2 constant TCP_MAXBURST (line 1458) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1459) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1460) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1461) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1462) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1463) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1464) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1465) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1466) | TCP_NOPUSH = 0x10 constant TCP_SACKHOLE_LIMIT (line 1467) | TCP_SACKHOLE_LIMIT = 0x80 constant TCP_SACK_ENABLE (line 1468) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1469) | TCSAFLUSH = 0x2 constant TIMER_ABSTIME (line 1470) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1471) | TIMER_RELTIME = 0x0 constant TIOCCBRK (line 1472) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1473) | TIOCCDTR = 0x20007478 constant TIOCCHKVERAUTH (line 1474) | TIOCCHKVERAUTH = 0x2000741e constant TIOCCLRVERAUTH (line 1475) | TIOCCLRVERAUTH = 0x2000741d constant TIOCCONS (line 1476) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1477) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1478) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1479) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1480) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1481) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1482) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1483) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1484) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1485) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1486) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1487) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1488) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1489) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1490) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1491) | TIOCGTSTAMP = 0x4010745b constant TIOCGWINSZ (line 1492) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1493) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1494) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1495) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1496) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1497) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1498) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1499) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1500) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1501) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1502) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1503) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1504) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1505) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1506) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1507) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1508) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1509) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1510) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1511) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1512) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1513) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1514) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1515) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1516) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1517) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1518) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1519) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1520) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1521) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1522) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1523) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1524) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1525) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1526) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1527) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1528) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1529) | TIOCSETD = 0x8004741b constant TIOCSETVERAUTH (line 1530) | TIOCSETVERAUTH = 0x8004741c constant TIOCSFLAGS (line 1531) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1532) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1533) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1534) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1535) | TIOCSTAT = 0x20007465 constant TIOCSTOP (line 1536) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1537) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1538) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1539) | TIOCUCNTL = 0x80047466 constant TIOCUCNTL_CBRK (line 1540) | TIOCUCNTL_CBRK = 0x7a constant TIOCUCNTL_SBRK (line 1541) | TIOCUCNTL_SBRK = 0x7b constant TOSTOP (line 1542) | TOSTOP = 0x400000 constant UTIME_NOW (line 1543) | UTIME_NOW = -0x2 constant UTIME_OMIT (line 1544) | UTIME_OMIT = -0x1 constant VDISCARD (line 1545) | VDISCARD = 0xf constant VDSUSP (line 1546) | VDSUSP = 0xb constant VEOF (line 1547) | VEOF = 0x0 constant VEOL (line 1548) | VEOL = 0x1 constant VEOL2 (line 1549) | VEOL2 = 0x2 constant VERASE (line 1550) | VERASE = 0x3 constant VINTR (line 1551) | VINTR = 0x8 constant VKILL (line 1552) | VKILL = 0x5 constant VLNEXT (line 1553) | VLNEXT = 0xe constant VMIN (line 1554) | VMIN = 0x10 constant VM_ANONMIN (line 1555) | VM_ANONMIN = 0x7 constant VM_LOADAVG (line 1556) | VM_LOADAVG = 0x2 constant VM_MALLOC_CONF (line 1557) | VM_MALLOC_CONF = 0xc constant VM_MAXID (line 1558) | VM_MAXID = 0xd constant VM_MAXSLP (line 1559) | VM_MAXSLP = 0xa constant VM_METER (line 1560) | VM_METER = 0x1 constant VM_NKMEMPAGES (line 1561) | VM_NKMEMPAGES = 0x6 constant VM_PSSTRINGS (line 1562) | VM_PSSTRINGS = 0x3 constant VM_SWAPENCRYPT (line 1563) | VM_SWAPENCRYPT = 0x5 constant VM_USPACE (line 1564) | VM_USPACE = 0xb constant VM_UVMEXP (line 1565) | VM_UVMEXP = 0x4 constant VM_VNODEMIN (line 1566) | VM_VNODEMIN = 0x9 constant VM_VTEXTMIN (line 1567) | VM_VTEXTMIN = 0x8 constant VQUIT (line 1568) | VQUIT = 0x9 constant VREPRINT (line 1569) | VREPRINT = 0x6 constant VSTART (line 1570) | VSTART = 0xc constant VSTATUS (line 1571) | VSTATUS = 0x12 constant VSTOP (line 1572) | VSTOP = 0xd constant VSUSP (line 1573) | VSUSP = 0xa constant VTIME (line 1574) | VTIME = 0x11 constant VWERASE (line 1575) | VWERASE = 0x4 constant WALTSIG (line 1576) | WALTSIG = 0x4 constant WCONTINUED (line 1577) | WCONTINUED = 0x8 constant WCOREFLAG (line 1578) | WCOREFLAG = 0x80 constant WNOHANG (line 1579) | WNOHANG = 0x1 constant WUNTRACED (line 1580) | WUNTRACED = 0x2 constant XCASE (line 1581) | XCASE = 0x1000000 constant E2BIG (line 1586) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1587) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1588) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1589) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1590) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1591) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1592) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1593) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1594) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1595) | EBADMSG = syscall.Errno(0x5c) constant EBADRPC (line 1596) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1597) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1598) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1599) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1600) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1601) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1602) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1603) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1604) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1605) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1606) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1607) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1608) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1609) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1610) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1611) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1612) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1613) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1614) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1615) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1616) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1617) | EINVAL = syscall.Errno(0x16) constant EIO (line 1618) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1619) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1620) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1621) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1622) | ELAST = syscall.Errno(0x5f) constant ELOOP (line 1623) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1624) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1625) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1626) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1627) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1628) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1629) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1630) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1631) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1632) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1633) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1634) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1635) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1636) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1637) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1638) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1639) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1640) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1641) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1642) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1643) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1644) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1645) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1646) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1647) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1648) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1649) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1650) | ENOTRECOVERABLE = syscall.Errno(0x5d) constant ENOTSOCK (line 1651) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1652) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1653) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1654) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1655) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1656) | EOVERFLOW = syscall.Errno(0x57) constant EOWNERDEAD (line 1657) | EOWNERDEAD = syscall.Errno(0x5e) constant EPERM (line 1658) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1659) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1660) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1661) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1662) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1663) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1664) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1665) | EPROTO = syscall.Errno(0x5f) constant EPROTONOSUPPORT (line 1666) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1667) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1668) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1669) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1670) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1671) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1672) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1673) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1674) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1675) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1676) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1677) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1678) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1679) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1680) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1681) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1682) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1687) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1688) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1689) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1690) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1691) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1692) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1693) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1694) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1695) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1696) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1697) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1698) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1699) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1700) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1701) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1702) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1703) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1704) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1705) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1706) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1707) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1708) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1709) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1710) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1711) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1712) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1713) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1714) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1715) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1716) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1717) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1718) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1719) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go constant AF_802 (line 15) | AF_802 = 0x12 constant AF_APPLETALK (line 16) | AF_APPLETALK = 0x10 constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 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_ECMA (line 22) | AF_ECMA = 0x8 constant AF_FILE (line 23) | AF_FILE = 0x1 constant AF_GOSIP (line 24) | AF_GOSIP = 0x16 constant AF_HYLINK (line 25) | AF_HYLINK = 0xf constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1a constant AF_INET_OFFLOAD (line 29) | AF_INET_OFFLOAD = 0x1e constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_KEY (line 31) | AF_KEY = 0x1b constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x19 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x20 constant AF_NBS (line 36) | AF_NBS = 0x7 constant AF_NCA (line 37) | AF_NCA = 0x1c constant AF_NIT (line 38) | AF_NIT = 0x11 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x13 constant AF_OSINET (line 41) | AF_OSINET = 0x15 constant AF_PACKET (line 42) | AF_PACKET = 0x20 constant AF_POLICY (line 43) | AF_POLICY = 0x1d constant AF_PUP (line 44) | AF_PUP = 0x4 constant AF_ROUTE (line 45) | AF_ROUTE = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_TRILL (line 47) | AF_TRILL = 0x1f constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_X25 (line 50) | AF_X25 = 0x14 constant ARPHRD_ARCNET (line 51) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ATM (line 52) | ARPHRD_ATM = 0x10 constant ARPHRD_AX25 (line 53) | ARPHRD_AX25 = 0x3 constant ARPHRD_CHAOS (line 54) | ARPHRD_CHAOS = 0x5 constant ARPHRD_EETHER (line 55) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 56) | ARPHRD_ETHER = 0x1 constant ARPHRD_FC (line 57) | ARPHRD_FC = 0x12 constant ARPHRD_FRAME (line 58) | ARPHRD_FRAME = 0xf constant ARPHRD_HDLC (line 59) | ARPHRD_HDLC = 0x11 constant ARPHRD_IB (line 60) | ARPHRD_IB = 0x20 constant ARPHRD_IEEE802 (line 61) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IPATM (line 62) | ARPHRD_IPATM = 0x13 constant ARPHRD_METRICOM (line 63) | ARPHRD_METRICOM = 0x17 constant ARPHRD_TUNNEL (line 64) | ARPHRD_TUNNEL = 0x1f constant B0 (line 65) | B0 = 0x0 constant B110 (line 66) | B110 = 0x3 constant B115200 (line 67) | B115200 = 0x12 constant B1200 (line 68) | B1200 = 0x9 constant B134 (line 69) | B134 = 0x4 constant B150 (line 70) | B150 = 0x5 constant B153600 (line 71) | B153600 = 0x13 constant B1800 (line 72) | B1800 = 0xa constant B19200 (line 73) | B19200 = 0xe constant B200 (line 74) | B200 = 0x6 constant B230400 (line 75) | B230400 = 0x14 constant B2400 (line 76) | B2400 = 0xb constant B300 (line 77) | B300 = 0x7 constant B307200 (line 78) | B307200 = 0x15 constant B38400 (line 79) | B38400 = 0xf constant B460800 (line 80) | B460800 = 0x16 constant B4800 (line 81) | B4800 = 0xc constant B50 (line 82) | B50 = 0x1 constant B57600 (line 83) | B57600 = 0x10 constant B600 (line 84) | B600 = 0x8 constant B75 (line 85) | B75 = 0x2 constant B76800 (line 86) | B76800 = 0x11 constant B921600 (line 87) | B921600 = 0x17 constant B9600 (line 88) | B9600 = 0xd constant BIOCFLUSH (line 89) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 90) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 91) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 92) | BIOCGDLTLIST = -0x3fefbd89 constant BIOCGDLTLIST32 (line 93) | BIOCGDLTLIST32 = -0x3ff7bd89 constant BIOCGETIF (line 94) | BIOCGETIF = 0x4020426b constant BIOCGETLIF (line 95) | BIOCGETLIF = 0x4078426b constant BIOCGHDRCMPLT (line 96) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 97) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGRTIMEOUT32 (line 98) | BIOCGRTIMEOUT32 = 0x4008427b constant BIOCGSEESENT (line 99) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 100) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 101) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 102) | BIOCIMMEDIATE = -0x7ffbbd90 constant BIOCPROMISC (line 103) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 104) | BIOCSBLEN = -0x3ffbbd9a constant BIOCSDLT (line 105) | BIOCSDLT = -0x7ffbbd8a constant BIOCSETF (line 106) | BIOCSETF = -0x7fefbd99 constant BIOCSETF32 (line 107) | BIOCSETF32 = -0x7ff7bd99 constant BIOCSETIF (line 108) | BIOCSETIF = -0x7fdfbd94 constant BIOCSETLIF (line 109) | BIOCSETLIF = -0x7f87bd94 constant BIOCSHDRCMPLT (line 110) | BIOCSHDRCMPLT = -0x7ffbbd8b constant BIOCSRTIMEOUT (line 111) | BIOCSRTIMEOUT = -0x7fefbd86 constant BIOCSRTIMEOUT32 (line 112) | BIOCSRTIMEOUT32 = -0x7ff7bd86 constant BIOCSSEESENT (line 113) | BIOCSSEESENT = -0x7ffbbd87 constant BIOCSTCPF (line 114) | BIOCSTCPF = -0x7fefbd8e constant BIOCSUDPF (line 115) | BIOCSUDPF = -0x7fefbd8d constant BIOCVERSION (line 116) | BIOCVERSION = 0x40044271 constant BPF_A (line 117) | BPF_A = 0x10 constant BPF_ABS (line 118) | BPF_ABS = 0x20 constant BPF_ADD (line 119) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 120) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 121) | BPF_ALU = 0x4 constant BPF_AND (line 122) | BPF_AND = 0x50 constant BPF_B (line 123) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 124) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 125) | BPF_DIV = 0x30 constant BPF_H (line 126) | BPF_H = 0x8 constant BPF_IMM (line 127) | BPF_IMM = 0x0 constant BPF_IND (line 128) | BPF_IND = 0x40 constant BPF_JA (line 129) | BPF_JA = 0x0 constant BPF_JEQ (line 130) | BPF_JEQ = 0x10 constant BPF_JGE (line 131) | BPF_JGE = 0x30 constant BPF_JGT (line 132) | BPF_JGT = 0x20 constant BPF_JMP (line 133) | BPF_JMP = 0x5 constant BPF_JSET (line 134) | BPF_JSET = 0x40 constant BPF_K (line 135) | BPF_K = 0x0 constant BPF_LD (line 136) | BPF_LD = 0x0 constant BPF_LDX (line 137) | BPF_LDX = 0x1 constant BPF_LEN (line 138) | BPF_LEN = 0x80 constant BPF_LSH (line 139) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 140) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 141) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 142) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 143) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 144) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 145) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 146) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 147) | BPF_MISC = 0x7 constant BPF_MSH (line 148) | BPF_MSH = 0xa0 constant BPF_MUL (line 149) | BPF_MUL = 0x20 constant BPF_NEG (line 150) | BPF_NEG = 0x80 constant BPF_OR (line 151) | BPF_OR = 0x40 constant BPF_RELEASE (line 152) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 153) | BPF_RET = 0x6 constant BPF_RSH (line 154) | BPF_RSH = 0x70 constant BPF_ST (line 155) | BPF_ST = 0x2 constant BPF_STX (line 156) | BPF_STX = 0x3 constant BPF_SUB (line 157) | BPF_SUB = 0x10 constant BPF_TAX (line 158) | BPF_TAX = 0x0 constant BPF_TXA (line 159) | BPF_TXA = 0x80 constant BPF_W (line 160) | BPF_W = 0x0 constant BPF_X (line 161) | BPF_X = 0x8 constant BRKINT (line 162) | BRKINT = 0x2 constant BS0 (line 163) | BS0 = 0x0 constant BS1 (line 164) | BS1 = 0x2000 constant BSDLY (line 165) | BSDLY = 0x2000 constant CBAUD (line 166) | CBAUD = 0xf constant CFLUSH (line 167) | CFLUSH = 0xf constant CIBAUD (line 168) | CIBAUD = 0xf0000 constant CLOCAL (line 169) | CLOCAL = 0x800 constant CLOCK_HIGHRES (line 170) | CLOCK_HIGHRES = 0x4 constant CLOCK_LEVEL (line 171) | CLOCK_LEVEL = 0xa constant CLOCK_MONOTONIC (line 172) | CLOCK_MONOTONIC = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 173) | CLOCK_PROCESS_CPUTIME_ID = 0x5 constant CLOCK_PROF (line 174) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 175) | CLOCK_REALTIME = 0x3 constant CLOCK_THREAD_CPUTIME_ID (line 176) | CLOCK_THREAD_CPUTIME_ID = 0x2 constant CLOCK_VIRTUAL (line 177) | CLOCK_VIRTUAL = 0x1 constant CR0 (line 178) | CR0 = 0x0 constant CR1 (line 179) | CR1 = 0x200 constant CR2 (line 180) | CR2 = 0x400 constant CR3 (line 181) | CR3 = 0x600 constant CRDLY (line 182) | CRDLY = 0x600 constant CREAD (line 183) | CREAD = 0x80 constant CRTSCTS (line 184) | CRTSCTS = 0x80000000 constant CS5 (line 185) | CS5 = 0x0 constant CS6 (line 186) | CS6 = 0x10 constant CS7 (line 187) | CS7 = 0x20 constant CS8 (line 188) | CS8 = 0x30 constant CSIZE (line 189) | CSIZE = 0x30 constant CSTART (line 190) | CSTART = 0x11 constant CSTATUS (line 191) | CSTATUS = 0x14 constant CSTOP (line 192) | CSTOP = 0x13 constant CSTOPB (line 193) | CSTOPB = 0x40 constant CSUSP (line 194) | CSUSP = 0x1a constant CSWTCH (line 195) | CSWTCH = 0x1a constant DIOC (line 196) | DIOC = 0x6400 constant DIOCGETB (line 197) | DIOCGETB = 0x6402 constant DIOCGETC (line 198) | DIOCGETC = 0x6401 constant DIOCGETP (line 199) | DIOCGETP = 0x6408 constant DIOCSETE (line 200) | DIOCSETE = 0x6403 constant DIOCSETP (line 201) | DIOCSETP = 0x6409 constant DLT_AIRONET_HEADER (line 202) | DLT_AIRONET_HEADER = 0x78 constant DLT_APPLE_IP_OVER_IEEE1394 (line 203) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 204) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 205) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 206) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 207) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 208) | DLT_AURORA = 0x7e constant DLT_AX25 (line 209) | DLT_AX25 = 0x3 constant DLT_BACNET_MS_TP (line 210) | DLT_BACNET_MS_TP = 0xa5 constant DLT_CHAOS (line 211) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 212) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 213) | DLT_C_HDLC = 0x68 constant DLT_DOCSIS (line 214) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 215) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 216) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 217) | DLT_EN3MB = 0x2 constant DLT_ENC (line 218) | DLT_ENC = 0x6d constant DLT_ERF_ETH (line 219) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 220) | DLT_ERF_POS = 0xb0 constant DLT_FDDI (line 221) | DLT_FDDI = 0xa constant DLT_FRELAY (line 222) | DLT_FRELAY = 0x6b constant DLT_GCOM_SERIAL (line 223) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 224) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 225) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 226) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 227) | DLT_GPRS_LLC = 0xa9 constant DLT_HDLC (line 228) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 229) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 230) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 231) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 232) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 233) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 234) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 235) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 236) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IPNET (line 237) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 238) | DLT_IPOIB = 0xa2 constant DLT_IP_OVER_FC (line 239) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 240) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 241) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 242) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 243) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 244) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 245) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 246) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_MFR (line 247) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 248) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 249) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 250) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 251) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 252) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 253) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 254) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 255) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_LINUX_IRDA (line 256) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 257) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 258) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 259) | DLT_LOOP = 0x6c constant DLT_LTALK (line 260) | DLT_LTALK = 0x72 constant DLT_MTP2 (line 261) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 262) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 263) | DLT_MTP3 = 0x8d constant DLT_NULL (line 264) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 265) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 266) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 267) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 268) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 269) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_PPPD (line 270) | DLT_PPP_PPPD = 0xa6 constant DLT_PRISM_HEADER (line 271) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 272) | DLT_PRONET = 0x4 constant DLT_RAW (line 273) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 274) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 275) | DLT_RIO = 0x7c constant DLT_SCCP (line 276) | DLT_SCCP = 0x8e constant DLT_SLIP (line 277) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 278) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 279) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 280) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 281) | DLT_TZSP = 0x80 constant ECHO (line 282) | ECHO = 0x8 constant ECHOCTL (line 283) | ECHOCTL = 0x200 constant ECHOE (line 284) | ECHOE = 0x10 constant ECHOK (line 285) | ECHOK = 0x20 constant ECHOKE (line 286) | ECHOKE = 0x800 constant ECHONL (line 287) | ECHONL = 0x40 constant ECHOPRT (line 288) | ECHOPRT = 0x400 constant EMPTY_SET (line 289) | EMPTY_SET = 0x0 constant EMT_CPCOVF (line 290) | EMT_CPCOVF = 0x1 constant EQUALITY_CHECK (line 291) | EQUALITY_CHECK = 0x0 constant EXTA (line 292) | EXTA = 0xe constant EXTB (line 293) | EXTB = 0xf constant FD_CLOEXEC (line 294) | FD_CLOEXEC = 0x1 constant FD_NFDBITS (line 295) | FD_NFDBITS = 0x40 constant FD_SETSIZE (line 296) | FD_SETSIZE = 0x10000 constant FF0 (line 297) | FF0 = 0x0 constant FF1 (line 298) | FF1 = 0x8000 constant FFDLY (line 299) | FFDLY = 0x8000 constant FIORDCHK (line 300) | FIORDCHK = 0x6603 constant FLUSHALL (line 301) | FLUSHALL = 0x1 constant FLUSHDATA (line 302) | FLUSHDATA = 0x0 constant FLUSHO (line 303) | FLUSHO = 0x2000 constant F_ALLOCSP (line 304) | F_ALLOCSP = 0xa constant F_ALLOCSP64 (line 305) | F_ALLOCSP64 = 0xa constant F_BADFD (line 306) | F_BADFD = 0x2e constant F_BLKSIZE (line 307) | F_BLKSIZE = 0x13 constant F_BLOCKS (line 308) | F_BLOCKS = 0x12 constant F_CHKFL (line 309) | F_CHKFL = 0x8 constant F_COMPAT (line 310) | F_COMPAT = 0x8 constant F_DUP2FD (line 311) | F_DUP2FD = 0x9 constant F_DUP2FD_CLOEXEC (line 312) | F_DUP2FD_CLOEXEC = 0x24 constant F_DUPFD (line 313) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 314) | F_DUPFD_CLOEXEC = 0x25 constant F_FLOCK (line 315) | F_FLOCK = 0x35 constant F_FLOCK64 (line 316) | F_FLOCK64 = 0x35 constant F_FLOCKW (line 317) | F_FLOCKW = 0x36 constant F_FLOCKW64 (line 318) | F_FLOCKW64 = 0x36 constant F_FREESP (line 319) | F_FREESP = 0xb constant F_FREESP64 (line 320) | F_FREESP64 = 0xb constant F_GETFD (line 321) | F_GETFD = 0x1 constant F_GETFL (line 322) | F_GETFL = 0x3 constant F_GETLK (line 323) | F_GETLK = 0xe constant F_GETLK64 (line 324) | F_GETLK64 = 0xe constant F_GETOWN (line 325) | F_GETOWN = 0x17 constant F_GETXFL (line 326) | F_GETXFL = 0x2d constant F_HASREMOTELOCKS (line 327) | F_HASREMOTELOCKS = 0x1a constant F_ISSTREAM (line 328) | F_ISSTREAM = 0xd constant F_MANDDNY (line 329) | F_MANDDNY = 0x10 constant F_MDACC (line 330) | F_MDACC = 0x20 constant F_NODNY (line 331) | F_NODNY = 0x0 constant F_NPRIV (line 332) | F_NPRIV = 0x10 constant F_OFD_GETLK (line 333) | F_OFD_GETLK = 0x2f constant F_OFD_GETLK64 (line 334) | F_OFD_GETLK64 = 0x2f constant F_OFD_SETLK (line 335) | F_OFD_SETLK = 0x30 constant F_OFD_SETLK64 (line 336) | F_OFD_SETLK64 = 0x30 constant F_OFD_SETLKW (line 337) | F_OFD_SETLKW = 0x31 constant F_OFD_SETLKW64 (line 338) | F_OFD_SETLKW64 = 0x31 constant F_PRIV (line 339) | F_PRIV = 0xf constant F_QUOTACTL (line 340) | F_QUOTACTL = 0x11 constant F_RDACC (line 341) | F_RDACC = 0x1 constant F_RDDNY (line 342) | F_RDDNY = 0x1 constant F_RDLCK (line 343) | F_RDLCK = 0x1 constant F_REVOKE (line 344) | F_REVOKE = 0x19 constant F_RMACC (line 345) | F_RMACC = 0x4 constant F_RMDNY (line 346) | F_RMDNY = 0x4 constant F_RWACC (line 347) | F_RWACC = 0x3 constant F_RWDNY (line 348) | F_RWDNY = 0x3 constant F_SETFD (line 349) | F_SETFD = 0x2 constant F_SETFL (line 350) | F_SETFL = 0x4 constant F_SETLK (line 351) | F_SETLK = 0x6 constant F_SETLK64 (line 352) | F_SETLK64 = 0x6 constant F_SETLK64_NBMAND (line 353) | F_SETLK64_NBMAND = 0x2a constant F_SETLKW (line 354) | F_SETLKW = 0x7 constant F_SETLKW64 (line 355) | F_SETLKW64 = 0x7 constant F_SETLK_NBMAND (line 356) | F_SETLK_NBMAND = 0x2a constant F_SETOWN (line 357) | F_SETOWN = 0x18 constant F_SHARE (line 358) | F_SHARE = 0x28 constant F_SHARE_NBMAND (line 359) | F_SHARE_NBMAND = 0x2b constant F_UNLCK (line 360) | F_UNLCK = 0x3 constant F_UNLKSYS (line 361) | F_UNLKSYS = 0x4 constant F_UNSHARE (line 362) | F_UNSHARE = 0x29 constant F_WRACC (line 363) | F_WRACC = 0x2 constant F_WRDNY (line 364) | F_WRDNY = 0x2 constant F_WRLCK (line 365) | F_WRLCK = 0x2 constant HUPCL (line 366) | HUPCL = 0x400 constant IBSHIFT (line 367) | IBSHIFT = 0x10 constant ICANON (line 368) | ICANON = 0x2 constant ICMP6_FILTER (line 369) | ICMP6_FILTER = 0x1 constant ICRNL (line 370) | ICRNL = 0x100 constant IEXTEN (line 371) | IEXTEN = 0x8000 constant IFF_ADDRCONF (line 372) | IFF_ADDRCONF = 0x80000 constant IFF_ALLMULTI (line 373) | IFF_ALLMULTI = 0x200 constant IFF_ANYCAST (line 374) | IFF_ANYCAST = 0x400000 constant IFF_BROADCAST (line 375) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 376) | IFF_CANTCHANGE = 0x7f203003b5a constant IFF_COS_ENABLED (line 377) | IFF_COS_ENABLED = 0x200000000 constant IFF_DEBUG (line 378) | IFF_DEBUG = 0x4 constant IFF_DEPRECATED (line 379) | IFF_DEPRECATED = 0x40000 constant IFF_DHCPRUNNING (line 380) | IFF_DHCPRUNNING = 0x4000 constant IFF_DUPLICATE (line 381) | IFF_DUPLICATE = 0x4000000000 constant IFF_FAILED (line 382) | IFF_FAILED = 0x10000000 constant IFF_FIXEDMTU (line 383) | IFF_FIXEDMTU = 0x1000000000 constant IFF_INACTIVE (line 384) | IFF_INACTIVE = 0x40000000 constant IFF_INTELLIGENT (line 385) | IFF_INTELLIGENT = 0x400 constant IFF_IPMP (line 386) | IFF_IPMP = 0x8000000000 constant IFF_IPMP_CANTCHANGE (line 387) | IFF_IPMP_CANTCHANGE = 0x10000000 constant IFF_IPMP_INVALID (line 388) | IFF_IPMP_INVALID = 0x1ec200080 constant IFF_IPV4 (line 389) | IFF_IPV4 = 0x1000000 constant IFF_IPV6 (line 390) | IFF_IPV6 = 0x2000000 constant IFF_L3PROTECT (line 391) | IFF_L3PROTECT = 0x40000000000 constant IFF_LOOPBACK (line 392) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 393) | IFF_MULTICAST = 0x800 constant IFF_MULTI_BCAST (line 394) | IFF_MULTI_BCAST = 0x1000 constant IFF_NOACCEPT (line 395) | IFF_NOACCEPT = 0x4000000 constant IFF_NOARP (line 396) | IFF_NOARP = 0x80 constant IFF_NOFAILOVER (line 397) | IFF_NOFAILOVER = 0x8000000 constant IFF_NOLINKLOCAL (line 398) | IFF_NOLINKLOCAL = 0x20000000000 constant IFF_NOLOCAL (line 399) | IFF_NOLOCAL = 0x20000 constant IFF_NONUD (line 400) | IFF_NONUD = 0x200000 constant IFF_NORTEXCH (line 401) | IFF_NORTEXCH = 0x800000 constant IFF_NOTRAILERS (line 402) | IFF_NOTRAILERS = 0x20 constant IFF_NOXMIT (line 403) | IFF_NOXMIT = 0x10000 constant IFF_OFFLINE (line 404) | IFF_OFFLINE = 0x80000000 constant IFF_POINTOPOINT (line 405) | IFF_POINTOPOINT = 0x10 constant IFF_PREFERRED (line 406) | IFF_PREFERRED = 0x400000000 constant IFF_PRIVATE (line 407) | IFF_PRIVATE = 0x8000 constant IFF_PROMISC (line 408) | IFF_PROMISC = 0x100 constant IFF_ROUTER (line 409) | IFF_ROUTER = 0x100000 constant IFF_RUNNING (line 410) | IFF_RUNNING = 0x40 constant IFF_STANDBY (line 411) | IFF_STANDBY = 0x20000000 constant IFF_TEMPORARY (line 412) | IFF_TEMPORARY = 0x800000000 constant IFF_UNNUMBERED (line 413) | IFF_UNNUMBERED = 0x2000 constant IFF_UP (line 414) | IFF_UP = 0x1 constant IFF_VIRTUAL (line 415) | IFF_VIRTUAL = 0x2000000000 constant IFF_VRRP (line 416) | IFF_VRRP = 0x10000000000 constant IFF_XRESOLV (line 417) | IFF_XRESOLV = 0x100000000 constant IFNAMSIZ (line 418) | IFNAMSIZ = 0x10 constant IFT_1822 (line 419) | IFT_1822 = 0x2 constant IFT_6TO4 (line 420) | IFT_6TO4 = 0xca constant IFT_AAL5 (line 421) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 422) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 423) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 424) | IFT_ATM = 0x25 constant IFT_CEPT (line 425) | IFT_CEPT = 0x13 constant IFT_DS3 (line 426) | IFT_DS3 = 0x1e constant IFT_EON (line 427) | IFT_EON = 0x19 constant IFT_ETHER (line 428) | IFT_ETHER = 0x6 constant IFT_FDDI (line 429) | IFT_FDDI = 0xf constant IFT_FRELAY (line 430) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 431) | IFT_FRELAYDCE = 0x2c constant IFT_HDH1822 (line 432) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 433) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 434) | IFT_HSSI = 0x2e constant IFT_HY (line 435) | IFT_HY = 0xe constant IFT_IB (line 436) | IFT_IB = 0xc7 constant IFT_IPV4 (line 437) | IFT_IPV4 = 0xc8 constant IFT_IPV6 (line 438) | IFT_IPV6 = 0xc9 constant IFT_ISDNBASIC (line 439) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 440) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 441) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 442) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 443) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 444) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 445) | IFT_ISO88026 = 0xa constant IFT_LAPB (line 446) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 447) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 448) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 449) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 450) | IFT_MODEM = 0x30 constant IFT_NSIP (line 451) | IFT_NSIP = 0x1b constant IFT_OTHER (line 452) | IFT_OTHER = 0x1 constant IFT_P10 (line 453) | IFT_P10 = 0xc constant IFT_P80 (line 454) | IFT_P80 = 0xd constant IFT_PARA (line 455) | IFT_PARA = 0x22 constant IFT_PPP (line 456) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 457) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 458) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 459) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 460) | IFT_RS232 = 0x21 constant IFT_SDLC (line 461) | IFT_SDLC = 0x11 constant IFT_SIP (line 462) | IFT_SIP = 0x1f constant IFT_SLIP (line 463) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 464) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 465) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 466) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 467) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 468) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 469) | IFT_STARLAN = 0xb constant IFT_T1 (line 470) | IFT_T1 = 0x12 constant IFT_ULTRA (line 471) | IFT_ULTRA = 0x1d constant IFT_V35 (line 472) | IFT_V35 = 0x2d constant IFT_X25 (line 473) | IFT_X25 = 0x5 constant IFT_X25DDN (line 474) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 475) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 476) | IFT_XETHER = 0x1a constant IGNBRK (line 477) | IGNBRK = 0x1 constant IGNCR (line 478) | IGNCR = 0x80 constant IGNPAR (line 479) | IGNPAR = 0x4 constant IMAXBEL (line 480) | IMAXBEL = 0x2000 constant INLCR (line 481) | INLCR = 0x40 constant INPCK (line 482) | INPCK = 0x10 constant IN_AUTOCONF_MASK (line 483) | IN_AUTOCONF_MASK = 0xffff0000 constant IN_AUTOCONF_NET (line 484) | IN_AUTOCONF_NET = 0xa9fe0000 constant IN_CLASSA_HOST (line 485) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 486) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 487) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 488) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 489) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 490) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 491) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 492) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 493) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 494) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 495) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 496) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 497) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 498) | IN_CLASSD_NSHIFT = 0x1c constant IN_CLASSE_NET (line 499) | IN_CLASSE_NET = 0xffffffff constant IN_LOOPBACKNET (line 500) | IN_LOOPBACKNET = 0x7f constant IN_PRIVATE12_MASK (line 501) | IN_PRIVATE12_MASK = 0xfff00000 constant IN_PRIVATE12_NET (line 502) | IN_PRIVATE12_NET = 0xac100000 constant IN_PRIVATE16_MASK (line 503) | IN_PRIVATE16_MASK = 0xffff0000 constant IN_PRIVATE16_NET (line 504) | IN_PRIVATE16_NET = 0xc0a80000 constant IN_PRIVATE8_MASK (line 505) | IN_PRIVATE8_MASK = 0xff000000 constant IN_PRIVATE8_NET (line 506) | IN_PRIVATE8_NET = 0xa000000 constant IPPROTO_AH (line 507) | IPPROTO_AH = 0x33 constant IPPROTO_DSTOPTS (line 508) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 509) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 510) | IPPROTO_ENCAP = 0x4 constant IPPROTO_EON (line 511) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 512) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 513) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 514) | IPPROTO_GGP = 0x3 constant IPPROTO_HELLO (line 515) | IPPROTO_HELLO = 0x3f constant IPPROTO_HOPOPTS (line 516) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 517) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 518) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 519) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 520) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 521) | IPPROTO_IP = 0x0 constant IPPROTO_IPV6 (line 522) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 523) | IPPROTO_MAX = 0x100 constant IPPROTO_ND (line 524) | IPPROTO_ND = 0x4d constant IPPROTO_NONE (line 525) | IPPROTO_NONE = 0x3b constant IPPROTO_OSPF (line 526) | IPPROTO_OSPF = 0x59 constant IPPROTO_PIM (line 527) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 528) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 529) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 530) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 531) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 532) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 533) | IPPROTO_TCP = 0x6 constant IPPROTO_UDP (line 534) | IPPROTO_UDP = 0x11 constant IPV6_ADD_MEMBERSHIP (line 535) | IPV6_ADD_MEMBERSHIP = 0x9 constant IPV6_BOUND_IF (line 536) | IPV6_BOUND_IF = 0x41 constant IPV6_CHECKSUM (line 537) | IPV6_CHECKSUM = 0x18 constant IPV6_DONTFRAG (line 538) | IPV6_DONTFRAG = 0x21 constant IPV6_DROP_MEMBERSHIP (line 539) | IPV6_DROP_MEMBERSHIP = 0xa constant IPV6_DSTOPTS (line 540) | IPV6_DSTOPTS = 0xf constant IPV6_FLOWINFO_FLOWLABEL (line 541) | IPV6_FLOWINFO_FLOWLABEL = 0xffff0f00 constant IPV6_FLOWINFO_TCLASS (line 542) | IPV6_FLOWINFO_TCLASS = 0xf00f constant IPV6_HOPLIMIT (line 543) | IPV6_HOPLIMIT = 0xc constant IPV6_HOPOPTS (line 544) | IPV6_HOPOPTS = 0xe constant IPV6_JOIN_GROUP (line 545) | IPV6_JOIN_GROUP = 0x9 constant IPV6_LEAVE_GROUP (line 546) | IPV6_LEAVE_GROUP = 0xa constant IPV6_MULTICAST_HOPS (line 547) | IPV6_MULTICAST_HOPS = 0x7 constant IPV6_MULTICAST_IF (line 548) | IPV6_MULTICAST_IF = 0x6 constant IPV6_MULTICAST_LOOP (line 549) | IPV6_MULTICAST_LOOP = 0x8 constant IPV6_NEXTHOP (line 550) | IPV6_NEXTHOP = 0xd constant IPV6_PAD1_OPT (line 551) | IPV6_PAD1_OPT = 0x0 constant IPV6_PATHMTU (line 552) | IPV6_PATHMTU = 0x25 constant IPV6_PKTINFO (line 553) | IPV6_PKTINFO = 0xb constant IPV6_PREFER_SRC_CGA (line 554) | IPV6_PREFER_SRC_CGA = 0x20 constant IPV6_PREFER_SRC_CGADEFAULT (line 555) | IPV6_PREFER_SRC_CGADEFAULT = 0x10 constant IPV6_PREFER_SRC_CGAMASK (line 556) | IPV6_PREFER_SRC_CGAMASK = 0x30 constant IPV6_PREFER_SRC_COA (line 557) | IPV6_PREFER_SRC_COA = 0x2 constant IPV6_PREFER_SRC_DEFAULT (line 558) | IPV6_PREFER_SRC_DEFAULT = 0x15 constant IPV6_PREFER_SRC_HOME (line 559) | IPV6_PREFER_SRC_HOME = 0x1 constant IPV6_PREFER_SRC_MASK (line 560) | IPV6_PREFER_SRC_MASK = 0x3f constant IPV6_PREFER_SRC_MIPDEFAULT (line 561) | IPV6_PREFER_SRC_MIPDEFAULT = 0x1 constant IPV6_PREFER_SRC_MIPMASK (line 562) | IPV6_PREFER_SRC_MIPMASK = 0x3 constant IPV6_PREFER_SRC_NONCGA (line 563) | IPV6_PREFER_SRC_NONCGA = 0x10 constant IPV6_PREFER_SRC_PUBLIC (line 564) | IPV6_PREFER_SRC_PUBLIC = 0x4 constant IPV6_PREFER_SRC_TMP (line 565) | IPV6_PREFER_SRC_TMP = 0x8 constant IPV6_PREFER_SRC_TMPDEFAULT (line 566) | IPV6_PREFER_SRC_TMPDEFAULT = 0x4 constant IPV6_PREFER_SRC_TMPMASK (line 567) | IPV6_PREFER_SRC_TMPMASK = 0xc constant IPV6_RECVDSTOPTS (line 568) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 569) | IPV6_RECVHOPLIMIT = 0x13 constant IPV6_RECVHOPOPTS (line 570) | IPV6_RECVHOPOPTS = 0x14 constant IPV6_RECVPATHMTU (line 571) | IPV6_RECVPATHMTU = 0x24 constant IPV6_RECVPKTINFO (line 572) | IPV6_RECVPKTINFO = 0x12 constant IPV6_RECVRTHDR (line 573) | IPV6_RECVRTHDR = 0x16 constant IPV6_RECVRTHDRDSTOPTS (line 574) | IPV6_RECVRTHDRDSTOPTS = 0x17 constant IPV6_RECVTCLASS (line 575) | IPV6_RECVTCLASS = 0x19 constant IPV6_RTHDR (line 576) | IPV6_RTHDR = 0x10 constant IPV6_RTHDRDSTOPTS (line 577) | IPV6_RTHDRDSTOPTS = 0x11 constant IPV6_RTHDR_TYPE_0 (line 578) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SEC_OPT (line 579) | IPV6_SEC_OPT = 0x22 constant IPV6_SRC_PREFERENCES (line 580) | IPV6_SRC_PREFERENCES = 0x23 constant IPV6_TCLASS (line 581) | IPV6_TCLASS = 0x26 constant IPV6_UNICAST_HOPS (line 582) | IPV6_UNICAST_HOPS = 0x5 constant IPV6_UNSPEC_SRC (line 583) | IPV6_UNSPEC_SRC = 0x42 constant IPV6_USE_MIN_MTU (line 584) | IPV6_USE_MIN_MTU = 0x20 constant IPV6_V6ONLY (line 585) | IPV6_V6ONLY = 0x27 constant IP_ADD_MEMBERSHIP (line 586) | IP_ADD_MEMBERSHIP = 0x13 constant IP_ADD_SOURCE_MEMBERSHIP (line 587) | IP_ADD_SOURCE_MEMBERSHIP = 0x17 constant IP_BLOCK_SOURCE (line 588) | IP_BLOCK_SOURCE = 0x15 constant IP_BOUND_IF (line 589) | IP_BOUND_IF = 0x41 constant IP_BROADCAST (line 590) | IP_BROADCAST = 0x106 constant IP_BROADCAST_TTL (line 591) | IP_BROADCAST_TTL = 0x43 constant IP_DEFAULT_MULTICAST_LOOP (line 592) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 593) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 594) | IP_DF = 0x4000 constant IP_DHCPINIT_IF (line 595) | IP_DHCPINIT_IF = 0x45 constant IP_DONTFRAG (line 596) | IP_DONTFRAG = 0x1b constant IP_DONTROUTE (line 597) | IP_DONTROUTE = 0x105 constant IP_DROP_MEMBERSHIP (line 598) | IP_DROP_MEMBERSHIP = 0x14 constant IP_DROP_SOURCE_MEMBERSHIP (line 599) | IP_DROP_SOURCE_MEMBERSHIP = 0x18 constant IP_HDRINCL (line 600) | IP_HDRINCL = 0x2 constant IP_MAXPACKET (line 601) | IP_MAXPACKET = 0xffff constant IP_MF (line 602) | IP_MF = 0x2000 constant IP_MSS (line 603) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 604) | IP_MULTICAST_IF = 0x10 constant IP_MULTICAST_LOOP (line 605) | IP_MULTICAST_LOOP = 0x12 constant IP_MULTICAST_TTL (line 606) | IP_MULTICAST_TTL = 0x11 constant IP_NEXTHOP (line 607) | IP_NEXTHOP = 0x19 constant IP_OPTIONS (line 608) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 609) | IP_PKTINFO = 0x1a constant IP_RECVDSTADDR (line 610) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 611) | IP_RECVIF = 0x9 constant IP_RECVOPTS (line 612) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 613) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 614) | IP_RECVRETOPTS = 0x6 constant IP_RECVSLLA (line 615) | IP_RECVSLLA = 0xa constant IP_RECVTOS (line 616) | IP_RECVTOS = 0xc constant IP_RECVTTL (line 617) | IP_RECVTTL = 0xb constant IP_RETOPTS (line 618) | IP_RETOPTS = 0x8 constant IP_REUSEADDR (line 619) | IP_REUSEADDR = 0x104 constant IP_SEC_OPT (line 620) | IP_SEC_OPT = 0x22 constant IP_TOS (line 621) | IP_TOS = 0x3 constant IP_TTL (line 622) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 623) | IP_UNBLOCK_SOURCE = 0x16 constant IP_UNSPEC_SRC (line 624) | IP_UNSPEC_SRC = 0x42 constant ISIG (line 625) | ISIG = 0x1 constant ISTRIP (line 626) | ISTRIP = 0x20 constant IUCLC (line 627) | IUCLC = 0x200 constant IXANY (line 628) | IXANY = 0x800 constant IXOFF (line 629) | IXOFF = 0x1000 constant IXON (line 630) | IXON = 0x400 constant LOCK_EX (line 631) | LOCK_EX = 0x2 constant LOCK_NB (line 632) | LOCK_NB = 0x4 constant LOCK_SH (line 633) | LOCK_SH = 0x1 constant LOCK_UN (line 634) | LOCK_UN = 0x8 constant MADV_ACCESS_DEFAULT (line 635) | MADV_ACCESS_DEFAULT = 0x6 constant MADV_ACCESS_LWP (line 636) | MADV_ACCESS_LWP = 0x7 constant MADV_ACCESS_MANY (line 637) | MADV_ACCESS_MANY = 0x8 constant MADV_DONTNEED (line 638) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 639) | MADV_FREE = 0x5 constant MADV_NORMAL (line 640) | MADV_NORMAL = 0x0 constant MADV_PURGE (line 641) | MADV_PURGE = 0x9 constant MADV_RANDOM (line 642) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 643) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 644) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 645) | MAP_32BIT = 0x80 constant MAP_ALIGN (line 646) | MAP_ALIGN = 0x200 constant MAP_ANON (line 647) | MAP_ANON = 0x100 constant MAP_ANONYMOUS (line 648) | MAP_ANONYMOUS = 0x100 constant MAP_FILE (line 649) | MAP_FILE = 0x0 constant MAP_FIXED (line 650) | MAP_FIXED = 0x10 constant MAP_INITDATA (line 651) | MAP_INITDATA = 0x800 constant MAP_NORESERVE (line 652) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 653) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 654) | MAP_RENAME = 0x20 constant MAP_SHARED (line 655) | MAP_SHARED = 0x1 constant MAP_TEXT (line 656) | MAP_TEXT = 0x400 constant MAP_TYPE (line 657) | MAP_TYPE = 0xf constant MCAST_BLOCK_SOURCE (line 658) | MCAST_BLOCK_SOURCE = 0x2b constant MCAST_EXCLUDE (line 659) | MCAST_EXCLUDE = 0x2 constant MCAST_INCLUDE (line 660) | MCAST_INCLUDE = 0x1 constant MCAST_JOIN_GROUP (line 661) | MCAST_JOIN_GROUP = 0x29 constant MCAST_JOIN_SOURCE_GROUP (line 662) | MCAST_JOIN_SOURCE_GROUP = 0x2d constant MCAST_LEAVE_GROUP (line 663) | MCAST_LEAVE_GROUP = 0x2a constant MCAST_LEAVE_SOURCE_GROUP (line 664) | MCAST_LEAVE_SOURCE_GROUP = 0x2e constant MCAST_UNBLOCK_SOURCE (line 665) | MCAST_UNBLOCK_SOURCE = 0x2c constant MCL_CURRENT (line 666) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 667) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 668) | MSG_CTRUNC = 0x10 constant MSG_DONTROUTE (line 669) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 670) | MSG_DONTWAIT = 0x80 constant MSG_DUPCTRL (line 671) | MSG_DUPCTRL = 0x800 constant MSG_EOR (line 672) | MSG_EOR = 0x8 constant MSG_MAXIOVLEN (line 673) | MSG_MAXIOVLEN = 0x10 constant MSG_NOSIGNAL (line 674) | MSG_NOSIGNAL = 0x200 constant MSG_NOTIFICATION (line 675) | MSG_NOTIFICATION = 0x100 constant MSG_OOB (line 676) | MSG_OOB = 0x1 constant MSG_PEEK (line 677) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 678) | MSG_TRUNC = 0x20 constant MSG_WAITALL (line 679) | MSG_WAITALL = 0x40 constant MSG_XPG4_2 (line 680) | MSG_XPG4_2 = 0x8000 constant MS_ASYNC (line 681) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 682) | MS_INVALIDATE = 0x2 constant MS_OLDSYNC (line 683) | MS_OLDSYNC = 0x0 constant MS_SYNC (line 684) | MS_SYNC = 0x4 constant M_FLUSH (line 685) | M_FLUSH = 0x86 constant NAME_MAX (line 686) | NAME_MAX = 0xff constant NEWDEV (line 687) | NEWDEV = 0x1 constant NFDBITS (line 688) | NFDBITS = 0x40 constant NL0 (line 689) | NL0 = 0x0 constant NL1 (line 690) | NL1 = 0x100 constant NLDLY (line 691) | NLDLY = 0x100 constant NOFLSH (line 692) | NOFLSH = 0x80 constant OCRNL (line 693) | OCRNL = 0x8 constant OFDEL (line 694) | OFDEL = 0x80 constant OFILL (line 695) | OFILL = 0x40 constant OLCUC (line 696) | OLCUC = 0x2 constant OLDDEV (line 697) | OLDDEV = 0x0 constant ONBITSMAJOR (line 698) | ONBITSMAJOR = 0x7 constant ONBITSMINOR (line 699) | ONBITSMINOR = 0x8 constant ONLCR (line 700) | ONLCR = 0x4 constant ONLRET (line 701) | ONLRET = 0x20 constant ONOCR (line 702) | ONOCR = 0x10 constant OPENFAIL (line 703) | OPENFAIL = -0x1 constant OPOST (line 704) | OPOST = 0x1 constant O_ACCMODE (line 705) | O_ACCMODE = 0x600003 constant O_APPEND (line 706) | O_APPEND = 0x8 constant O_CLOEXEC (line 707) | O_CLOEXEC = 0x800000 constant O_CREAT (line 708) | O_CREAT = 0x100 constant O_DIRECT (line 709) | O_DIRECT = 0x2000000 constant O_DIRECTORY (line 710) | O_DIRECTORY = 0x1000000 constant O_DSYNC (line 711) | O_DSYNC = 0x40 constant O_EXCL (line 712) | O_EXCL = 0x400 constant O_EXEC (line 713) | O_EXEC = 0x400000 constant O_LARGEFILE (line 714) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 715) | O_NDELAY = 0x4 constant O_NOCTTY (line 716) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 717) | O_NOFOLLOW = 0x20000 constant O_NOLINKS (line 718) | O_NOLINKS = 0x40000 constant O_NONBLOCK (line 719) | O_NONBLOCK = 0x80 constant O_RDONLY (line 720) | O_RDONLY = 0x0 constant O_RDWR (line 721) | O_RDWR = 0x2 constant O_RSYNC (line 722) | O_RSYNC = 0x8000 constant O_SEARCH (line 723) | O_SEARCH = 0x200000 constant O_SIOCGIFCONF (line 724) | O_SIOCGIFCONF = -0x3ff796ec constant O_SIOCGLIFCONF (line 725) | O_SIOCGLIFCONF = -0x3fef9688 constant O_SYNC (line 726) | O_SYNC = 0x10 constant O_TRUNC (line 727) | O_TRUNC = 0x200 constant O_WRONLY (line 728) | O_WRONLY = 0x1 constant O_XATTR (line 729) | O_XATTR = 0x4000 constant PARENB (line 730) | PARENB = 0x100 constant PAREXT (line 731) | PAREXT = 0x100000 constant PARMRK (line 732) | PARMRK = 0x8 constant PARODD (line 733) | PARODD = 0x200 constant PENDIN (line 734) | PENDIN = 0x4000 constant PRIO_PGRP (line 735) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 736) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 737) | PRIO_USER = 0x2 constant PROT_EXEC (line 738) | PROT_EXEC = 0x4 constant PROT_NONE (line 739) | PROT_NONE = 0x0 constant PROT_READ (line 740) | PROT_READ = 0x1 constant PROT_WRITE (line 741) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 742) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 743) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 744) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 745) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 746) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 747) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 748) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 749) | RLIM_INFINITY = 0xfffffffffffffffd constant RTAX_AUTHOR (line 750) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 751) | RTAX_BRD = 0x7 constant RTAX_DST (line 752) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 753) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 754) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 755) | RTAX_IFA = 0x5 constant RTAX_IFP (line 756) | RTAX_IFP = 0x4 constant RTAX_MAX (line 757) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 758) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 759) | RTAX_SRC = 0x8 constant RTA_AUTHOR (line 760) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 761) | RTA_BRD = 0x80 constant RTA_DST (line 762) | RTA_DST = 0x1 constant RTA_GATEWAY (line 763) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 764) | RTA_GENMASK = 0x8 constant RTA_IFA (line 765) | RTA_IFA = 0x20 constant RTA_IFP (line 766) | RTA_IFP = 0x10 constant RTA_NETMASK (line 767) | RTA_NETMASK = 0x4 constant RTA_NUMBITS (line 768) | RTA_NUMBITS = 0x9 constant RTA_SRC (line 769) | RTA_SRC = 0x100 constant RTF_BLACKHOLE (line 770) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONING (line 771) | RTF_CLONING = 0x100 constant RTF_DONE (line 772) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 773) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 774) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 775) | RTF_HOST = 0x4 constant RTF_INDIRECT (line 776) | RTF_INDIRECT = 0x40000 constant RTF_KERNEL (line 777) | RTF_KERNEL = 0x80000 constant RTF_LLINFO (line 778) | RTF_LLINFO = 0x400 constant RTF_MASK (line 779) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 780) | RTF_MODIFIED = 0x20 constant RTF_MULTIRT (line 781) | RTF_MULTIRT = 0x10000 constant RTF_PRIVATE (line 782) | RTF_PRIVATE = 0x2000 constant RTF_PROTO1 (line 783) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 784) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 785) | RTF_REJECT = 0x8 constant RTF_SETSRC (line 786) | RTF_SETSRC = 0x20000 constant RTF_STATIC (line 787) | RTF_STATIC = 0x800 constant RTF_UP (line 788) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 789) | RTF_XRESOLVE = 0x200 constant RTF_ZONE (line 790) | RTF_ZONE = 0x100000 constant RTM_ADD (line 791) | RTM_ADD = 0x1 constant RTM_CHANGE (line 792) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 793) | RTM_CHGADDR = 0xf constant RTM_DELADDR (line 794) | RTM_DELADDR = 0xd constant RTM_DELETE (line 795) | RTM_DELETE = 0x2 constant RTM_FREEADDR (line 796) | RTM_FREEADDR = 0x10 constant RTM_GET (line 797) | RTM_GET = 0x4 constant RTM_IFINFO (line 798) | RTM_IFINFO = 0xe constant RTM_LOCK (line 799) | RTM_LOCK = 0x8 constant RTM_LOSING (line 800) | RTM_LOSING = 0x5 constant RTM_MISS (line 801) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 802) | RTM_NEWADDR = 0xc constant RTM_OLDADD (line 803) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 804) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 805) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 806) | RTM_RESOLVE = 0xb constant RTM_VERSION (line 807) | RTM_VERSION = 0x3 constant RTV_EXPIRE (line 808) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 809) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 810) | RTV_MTU = 0x1 constant RTV_RPIPE (line 811) | RTV_RPIPE = 0x8 constant RTV_RTT (line 812) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 813) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 814) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 815) | RTV_SSTHRESH = 0x20 constant RT_AWARE (line 816) | RT_AWARE = 0x1 constant RUSAGE_CHILDREN (line 817) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 818) | RUSAGE_SELF = 0x0 constant SCM_RIGHTS (line 819) | SCM_RIGHTS = 0x1010 constant SCM_TIMESTAMP (line 820) | SCM_TIMESTAMP = 0x1013 constant SCM_UCRED (line 821) | SCM_UCRED = 0x1012 constant SHUT_RD (line 822) | SHUT_RD = 0x0 constant SHUT_RDWR (line 823) | SHUT_RDWR = 0x2 constant SHUT_WR (line 824) | SHUT_WR = 0x1 constant SIG2STR_MAX (line 825) | SIG2STR_MAX = 0x20 constant SIOCADDMULTI (line 826) | SIOCADDMULTI = -0x7fdf96cf constant SIOCADDRT (line 827) | SIOCADDRT = -0x7fcf8df6 constant SIOCATMARK (line 828) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 829) | SIOCDARP = -0x7fdb96e0 constant SIOCDELMULTI (line 830) | SIOCDELMULTI = -0x7fdf96ce constant SIOCDELRT (line 831) | SIOCDELRT = -0x7fcf8df5 constant SIOCDXARP (line 832) | SIOCDXARP = -0x7fff9658 constant SIOCGARP (line 833) | SIOCGARP = -0x3fdb96e1 constant SIOCGDSTINFO (line 834) | SIOCGDSTINFO = -0x3fff965c constant SIOCGENADDR (line 835) | SIOCGENADDR = -0x3fdf96ab constant SIOCGENPSTATS (line 836) | SIOCGENPSTATS = -0x3fdf96c7 constant SIOCGETLSGCNT (line 837) | SIOCGETLSGCNT = -0x3fef8deb constant SIOCGETNAME (line 838) | SIOCGETNAME = 0x40107334 constant SIOCGETPEER (line 839) | SIOCGETPEER = 0x40107335 constant SIOCGETPROP (line 840) | SIOCGETPROP = -0x3fff8f44 constant SIOCGETSGCNT (line 841) | SIOCGETSGCNT = -0x3feb8deb constant SIOCGETSYNC (line 842) | SIOCGETSYNC = -0x3fdf96d3 constant SIOCGETVIFCNT (line 843) | SIOCGETVIFCNT = -0x3feb8dec constant SIOCGHIWAT (line 844) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 845) | SIOCGIFADDR = -0x3fdf96f3 constant SIOCGIFBRDADDR (line 846) | SIOCGIFBRDADDR = -0x3fdf96e9 constant SIOCGIFCONF (line 847) | SIOCGIFCONF = -0x3ff796a4 constant SIOCGIFDSTADDR (line 848) | SIOCGIFDSTADDR = -0x3fdf96f1 constant SIOCGIFFLAGS (line 849) | SIOCGIFFLAGS = -0x3fdf96ef constant SIOCGIFHWADDR (line 850) | SIOCGIFHWADDR = -0x3fdf9647 constant SIOCGIFINDEX (line 851) | SIOCGIFINDEX = -0x3fdf96a6 constant SIOCGIFMEM (line 852) | SIOCGIFMEM = -0x3fdf96ed constant SIOCGIFMETRIC (line 853) | SIOCGIFMETRIC = -0x3fdf96e5 constant SIOCGIFMTU (line 854) | SIOCGIFMTU = -0x3fdf96ea constant SIOCGIFMUXID (line 855) | SIOCGIFMUXID = -0x3fdf96a8 constant SIOCGIFNETMASK (line 856) | SIOCGIFNETMASK = -0x3fdf96e7 constant SIOCGIFNUM (line 857) | SIOCGIFNUM = 0x40046957 constant SIOCGIP6ADDRPOLICY (line 858) | SIOCGIP6ADDRPOLICY = -0x3fff965e constant SIOCGIPMSFILTER (line 859) | SIOCGIPMSFILTER = -0x3ffb964c constant SIOCGLIFADDR (line 860) | SIOCGLIFADDR = -0x3f87968f constant SIOCGLIFBINDING (line 861) | SIOCGLIFBINDING = -0x3f879666 constant SIOCGLIFBRDADDR (line 862) | SIOCGLIFBRDADDR = -0x3f879685 constant SIOCGLIFCONF (line 863) | SIOCGLIFCONF = -0x3fef965b constant SIOCGLIFDADSTATE (line 864) | SIOCGLIFDADSTATE = -0x3f879642 constant SIOCGLIFDSTADDR (line 865) | SIOCGLIFDSTADDR = -0x3f87968d constant SIOCGLIFFLAGS (line 866) | SIOCGLIFFLAGS = -0x3f87968b constant SIOCGLIFGROUPINFO (line 867) | SIOCGLIFGROUPINFO = -0x3f4b9663 constant SIOCGLIFGROUPNAME (line 868) | SIOCGLIFGROUPNAME = -0x3f879664 constant SIOCGLIFHWADDR (line 869) | SIOCGLIFHWADDR = -0x3f879640 constant SIOCGLIFINDEX (line 870) | SIOCGLIFINDEX = -0x3f87967b constant SIOCGLIFLNKINFO (line 871) | SIOCGLIFLNKINFO = -0x3f879674 constant SIOCGLIFMETRIC (line 872) | SIOCGLIFMETRIC = -0x3f879681 constant SIOCGLIFMTU (line 873) | SIOCGLIFMTU = -0x3f879686 constant SIOCGLIFMUXID (line 874) | SIOCGLIFMUXID = -0x3f87967d constant SIOCGLIFNETMASK (line 875) | SIOCGLIFNETMASK = -0x3f879683 constant SIOCGLIFNUM (line 876) | SIOCGLIFNUM = -0x3ff3967e constant SIOCGLIFSRCOF (line 877) | SIOCGLIFSRCOF = -0x3fef964f constant SIOCGLIFSUBNET (line 878) | SIOCGLIFSUBNET = -0x3f879676 constant SIOCGLIFTOKEN (line 879) | SIOCGLIFTOKEN = -0x3f879678 constant SIOCGLIFUSESRC (line 880) | SIOCGLIFUSESRC = -0x3f879651 constant SIOCGLIFZONE (line 881) | SIOCGLIFZONE = -0x3f879656 constant SIOCGLOWAT (line 882) | SIOCGLOWAT = 0x40047303 constant SIOCGMSFILTER (line 883) | SIOCGMSFILTER = -0x3ffb964e constant SIOCGPGRP (line 884) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMP (line 885) | SIOCGSTAMP = -0x3fef9646 constant SIOCGXARP (line 886) | SIOCGXARP = -0x3fff9659 constant SIOCIFDETACH (line 887) | SIOCIFDETACH = -0x7fdf96c8 constant SIOCILB (line 888) | SIOCILB = -0x3ffb9645 constant SIOCLIFADDIF (line 889) | SIOCLIFADDIF = -0x3f879691 constant SIOCLIFDELND (line 890) | SIOCLIFDELND = -0x7f879673 constant SIOCLIFGETND (line 891) | SIOCLIFGETND = -0x3f879672 constant SIOCLIFREMOVEIF (line 892) | SIOCLIFREMOVEIF = -0x7f879692 constant SIOCLIFSETND (line 893) | SIOCLIFSETND = -0x7f879671 constant SIOCLOWER (line 894) | SIOCLOWER = -0x7fdf96d7 constant SIOCSARP (line 895) | SIOCSARP = -0x7fdb96e2 constant SIOCSCTPGOPT (line 896) | SIOCSCTPGOPT = -0x3fef9653 constant SIOCSCTPPEELOFF (line 897) | SIOCSCTPPEELOFF = -0x3ffb9652 constant SIOCSCTPSOPT (line 898) | SIOCSCTPSOPT = -0x7fef9654 constant SIOCSENABLESDP (line 899) | SIOCSENABLESDP = -0x3ffb9649 constant SIOCSETPROP (line 900) | SIOCSETPROP = -0x7ffb8f43 constant SIOCSETSYNC (line 901) | SIOCSETSYNC = -0x7fdf96d4 constant SIOCSHIWAT (line 902) | SIOCSHIWAT = -0x7ffb8d00 constant SIOCSIFADDR (line 903) | SIOCSIFADDR = -0x7fdf96f4 constant SIOCSIFBRDADDR (line 904) | SIOCSIFBRDADDR = -0x7fdf96e8 constant SIOCSIFDSTADDR (line 905) | SIOCSIFDSTADDR = -0x7fdf96f2 constant SIOCSIFFLAGS (line 906) | SIOCSIFFLAGS = -0x7fdf96f0 constant SIOCSIFINDEX (line 907) | SIOCSIFINDEX = -0x7fdf96a5 constant SIOCSIFMEM (line 908) | SIOCSIFMEM = -0x7fdf96ee constant SIOCSIFMETRIC (line 909) | SIOCSIFMETRIC = -0x7fdf96e4 constant SIOCSIFMTU (line 910) | SIOCSIFMTU = -0x7fdf96eb constant SIOCSIFMUXID (line 911) | SIOCSIFMUXID = -0x7fdf96a7 constant SIOCSIFNAME (line 912) | SIOCSIFNAME = -0x7fdf96b7 constant SIOCSIFNETMASK (line 913) | SIOCSIFNETMASK = -0x7fdf96e6 constant SIOCSIP6ADDRPOLICY (line 914) | SIOCSIP6ADDRPOLICY = -0x7fff965d constant SIOCSIPMSFILTER (line 915) | SIOCSIPMSFILTER = -0x7ffb964b constant SIOCSLGETREQ (line 916) | SIOCSLGETREQ = -0x3fdf96b9 constant SIOCSLIFADDR (line 917) | SIOCSLIFADDR = -0x7f879690 constant SIOCSLIFBRDADDR (line 918) | SIOCSLIFBRDADDR = -0x7f879684 constant SIOCSLIFDSTADDR (line 919) | SIOCSLIFDSTADDR = -0x7f87968e constant SIOCSLIFFLAGS (line 920) | SIOCSLIFFLAGS = -0x7f87968c constant SIOCSLIFGROUPNAME (line 921) | SIOCSLIFGROUPNAME = -0x7f879665 constant SIOCSLIFINDEX (line 922) | SIOCSLIFINDEX = -0x7f87967a constant SIOCSLIFLNKINFO (line 923) | SIOCSLIFLNKINFO = -0x7f879675 constant SIOCSLIFMETRIC (line 924) | SIOCSLIFMETRIC = -0x7f879680 constant SIOCSLIFMTU (line 925) | SIOCSLIFMTU = -0x7f879687 constant SIOCSLIFMUXID (line 926) | SIOCSLIFMUXID = -0x7f87967c constant SIOCSLIFNAME (line 927) | SIOCSLIFNAME = -0x3f87967f constant SIOCSLIFNETMASK (line 928) | SIOCSLIFNETMASK = -0x7f879682 constant SIOCSLIFPREFIX (line 929) | SIOCSLIFPREFIX = -0x3f879641 constant SIOCSLIFSUBNET (line 930) | SIOCSLIFSUBNET = -0x7f879677 constant SIOCSLIFTOKEN (line 931) | SIOCSLIFTOKEN = -0x7f879679 constant SIOCSLIFUSESRC (line 932) | SIOCSLIFUSESRC = -0x7f879650 constant SIOCSLIFZONE (line 933) | SIOCSLIFZONE = -0x7f879655 constant SIOCSLOWAT (line 934) | SIOCSLOWAT = -0x7ffb8cfe constant SIOCSLSTAT (line 935) | SIOCSLSTAT = -0x7fdf96b8 constant SIOCSMSFILTER (line 936) | SIOCSMSFILTER = -0x7ffb964d constant SIOCSPGRP (line 937) | SIOCSPGRP = -0x7ffb8cf8 constant SIOCSPROMISC (line 938) | SIOCSPROMISC = -0x7ffb96d0 constant SIOCSQPTR (line 939) | SIOCSQPTR = -0x3ffb9648 constant SIOCSSDSTATS (line 940) | SIOCSSDSTATS = -0x3fdf96d2 constant SIOCSSESTATS (line 941) | SIOCSSESTATS = -0x3fdf96d1 constant SIOCSXARP (line 942) | SIOCSXARP = -0x7fff965a constant SIOCTMYADDR (line 943) | SIOCTMYADDR = -0x3ff79670 constant SIOCTMYSITE (line 944) | SIOCTMYSITE = -0x3ff7966e constant SIOCTONLINK (line 945) | SIOCTONLINK = -0x3ff7966f constant SIOCUPPER (line 946) | SIOCUPPER = -0x7fdf96d8 constant SIOCX25RCV (line 947) | SIOCX25RCV = -0x3fdf96c4 constant SIOCX25TBL (line 948) | SIOCX25TBL = -0x3fdf96c3 constant SIOCX25XMT (line 949) | SIOCX25XMT = -0x3fdf96c5 constant SIOCXPROTO (line 950) | SIOCXPROTO = 0x20007337 constant SOCK_CLOEXEC (line 951) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 952) | SOCK_DGRAM = 0x1 constant SOCK_NDELAY (line 953) | SOCK_NDELAY = 0x200000 constant SOCK_NONBLOCK (line 954) | SOCK_NONBLOCK = 0x100000 constant SOCK_RAW (line 955) | SOCK_RAW = 0x4 constant SOCK_RDM (line 956) | SOCK_RDM = 0x5 constant SOCK_SEQPACKET (line 957) | SOCK_SEQPACKET = 0x6 constant SOCK_STREAM (line 958) | SOCK_STREAM = 0x2 constant SOCK_TYPE_MASK (line 959) | SOCK_TYPE_MASK = 0xffff constant SOL_FILTER (line 960) | SOL_FILTER = 0xfffc constant SOL_PACKET (line 961) | SOL_PACKET = 0xfffd constant SOL_ROUTE (line 962) | SOL_ROUTE = 0xfffe constant SOL_SOCKET (line 963) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 964) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 965) | SO_ACCEPTCONN = 0x2 constant SO_ALL (line 966) | SO_ALL = 0x3f constant SO_ALLZONES (line 967) | SO_ALLZONES = 0x1014 constant SO_ANON_MLP (line 968) | SO_ANON_MLP = 0x100a constant SO_ATTACH_FILTER (line 969) | SO_ATTACH_FILTER = 0x40000001 constant SO_BAND (line 970) | SO_BAND = 0x4000 constant SO_BROADCAST (line 971) | SO_BROADCAST = 0x20 constant SO_COPYOPT (line 972) | SO_COPYOPT = 0x80000 constant SO_DEBUG (line 973) | SO_DEBUG = 0x1 constant SO_DELIM (line 974) | SO_DELIM = 0x8000 constant SO_DETACH_FILTER (line 975) | SO_DETACH_FILTER = 0x40000002 constant SO_DGRAM_ERRIND (line 976) | SO_DGRAM_ERRIND = 0x200 constant SO_DOMAIN (line 977) | SO_DOMAIN = 0x100c constant SO_DONTLINGER (line 978) | SO_DONTLINGER = -0x81 constant SO_DONTROUTE (line 979) | SO_DONTROUTE = 0x10 constant SO_ERROPT (line 980) | SO_ERROPT = 0x40000 constant SO_ERROR (line 981) | SO_ERROR = 0x1007 constant SO_EXCLBIND (line 982) | SO_EXCLBIND = 0x1015 constant SO_HIWAT (line 983) | SO_HIWAT = 0x10 constant SO_ISNTTY (line 984) | SO_ISNTTY = 0x800 constant SO_ISTTY (line 985) | SO_ISTTY = 0x400 constant SO_KEEPALIVE (line 986) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 987) | SO_LINGER = 0x80 constant SO_LOWAT (line 988) | SO_LOWAT = 0x20 constant SO_MAC_EXEMPT (line 989) | SO_MAC_EXEMPT = 0x100b constant SO_MAC_IMPLICIT (line 990) | SO_MAC_IMPLICIT = 0x1016 constant SO_MAXBLK (line 991) | SO_MAXBLK = 0x100000 constant SO_MAXPSZ (line 992) | SO_MAXPSZ = 0x8 constant SO_MINPSZ (line 993) | SO_MINPSZ = 0x4 constant SO_MREADOFF (line 994) | SO_MREADOFF = 0x80 constant SO_MREADON (line 995) | SO_MREADON = 0x40 constant SO_NDELOFF (line 996) | SO_NDELOFF = 0x200 constant SO_NDELON (line 997) | SO_NDELON = 0x100 constant SO_NODELIM (line 998) | SO_NODELIM = 0x10000 constant SO_OOBINLINE (line 999) | SO_OOBINLINE = 0x100 constant SO_PROTOTYPE (line 1000) | SO_PROTOTYPE = 0x1009 constant SO_RCVBUF (line 1001) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1002) | SO_RCVLOWAT = 0x1004 constant SO_RCVPSH (line 1003) | SO_RCVPSH = 0x100d constant SO_RCVTIMEO (line 1004) | SO_RCVTIMEO = 0x1006 constant SO_READOPT (line 1005) | SO_READOPT = 0x1 constant SO_RECVUCRED (line 1006) | SO_RECVUCRED = 0x400 constant SO_REUSEADDR (line 1007) | SO_REUSEADDR = 0x4 constant SO_SECATTR (line 1008) | SO_SECATTR = 0x1011 constant SO_SNDBUF (line 1009) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1010) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1011) | SO_SNDTIMEO = 0x1005 constant SO_STRHOLD (line 1012) | SO_STRHOLD = 0x20000 constant SO_TAIL (line 1013) | SO_TAIL = 0x200000 constant SO_TIMESTAMP (line 1014) | SO_TIMESTAMP = 0x1013 constant SO_TONSTOP (line 1015) | SO_TONSTOP = 0x2000 constant SO_TOSTOP (line 1016) | SO_TOSTOP = 0x1000 constant SO_TYPE (line 1017) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1018) | SO_USELOOPBACK = 0x40 constant SO_VRRP (line 1019) | SO_VRRP = 0x1017 constant SO_WROFF (line 1020) | SO_WROFF = 0x2 constant S_ENFMT (line 1021) | S_ENFMT = 0x400 constant S_IAMB (line 1022) | S_IAMB = 0x1ff constant S_IEXEC (line 1023) | S_IEXEC = 0x40 constant S_IFBLK (line 1024) | S_IFBLK = 0x6000 constant S_IFCHR (line 1025) | S_IFCHR = 0x2000 constant S_IFDIR (line 1026) | S_IFDIR = 0x4000 constant S_IFDOOR (line 1027) | S_IFDOOR = 0xd000 constant S_IFIFO (line 1028) | S_IFIFO = 0x1000 constant S_IFLNK (line 1029) | S_IFLNK = 0xa000 constant S_IFMT (line 1030) | S_IFMT = 0xf000 constant S_IFNAM (line 1031) | S_IFNAM = 0x5000 constant S_IFPORT (line 1032) | S_IFPORT = 0xe000 constant S_IFREG (line 1033) | S_IFREG = 0x8000 constant S_IFSOCK (line 1034) | S_IFSOCK = 0xc000 constant S_INSEM (line 1035) | S_INSEM = 0x1 constant S_INSHD (line 1036) | S_INSHD = 0x2 constant S_IREAD (line 1037) | S_IREAD = 0x100 constant S_IRGRP (line 1038) | S_IRGRP = 0x20 constant S_IROTH (line 1039) | S_IROTH = 0x4 constant S_IRUSR (line 1040) | S_IRUSR = 0x100 constant S_IRWXG (line 1041) | S_IRWXG = 0x38 constant S_IRWXO (line 1042) | S_IRWXO = 0x7 constant S_IRWXU (line 1043) | S_IRWXU = 0x1c0 constant S_ISGID (line 1044) | S_ISGID = 0x400 constant S_ISUID (line 1045) | S_ISUID = 0x800 constant S_ISVTX (line 1046) | S_ISVTX = 0x200 constant S_IWGRP (line 1047) | S_IWGRP = 0x10 constant S_IWOTH (line 1048) | S_IWOTH = 0x2 constant S_IWRITE (line 1049) | S_IWRITE = 0x80 constant S_IWUSR (line 1050) | S_IWUSR = 0x80 constant S_IXGRP (line 1051) | S_IXGRP = 0x8 constant S_IXOTH (line 1052) | S_IXOTH = 0x1 constant S_IXUSR (line 1053) | S_IXUSR = 0x40 constant TAB0 (line 1054) | TAB0 = 0x0 constant TAB1 (line 1055) | TAB1 = 0x800 constant TAB2 (line 1056) | TAB2 = 0x1000 constant TAB3 (line 1057) | TAB3 = 0x1800 constant TABDLY (line 1058) | TABDLY = 0x1800 constant TCFLSH (line 1059) | TCFLSH = 0x5407 constant TCGETA (line 1060) | TCGETA = 0x5401 constant TCGETS (line 1061) | TCGETS = 0x540d constant TCIFLUSH (line 1062) | TCIFLUSH = 0x0 constant TCIOFF (line 1063) | TCIOFF = 0x2 constant TCIOFLUSH (line 1064) | TCIOFLUSH = 0x2 constant TCION (line 1065) | TCION = 0x3 constant TCOFLUSH (line 1066) | TCOFLUSH = 0x1 constant TCOOFF (line 1067) | TCOOFF = 0x0 constant TCOON (line 1068) | TCOON = 0x1 constant TCP_ABORT_THRESHOLD (line 1069) | TCP_ABORT_THRESHOLD = 0x11 constant TCP_ANONPRIVBIND (line 1070) | TCP_ANONPRIVBIND = 0x20 constant TCP_CONGESTION (line 1071) | TCP_CONGESTION = 0x25 constant TCP_CONN_ABORT_THRESHOLD (line 1072) | TCP_CONN_ABORT_THRESHOLD = 0x13 constant TCP_CONN_NOTIFY_THRESHOLD (line 1073) | TCP_CONN_NOTIFY_THRESHOLD = 0x12 constant TCP_CORK (line 1074) | TCP_CORK = 0x18 constant TCP_EXCLBIND (line 1075) | TCP_EXCLBIND = 0x21 constant TCP_INIT_CWND (line 1076) | TCP_INIT_CWND = 0x15 constant TCP_KEEPALIVE (line 1077) | TCP_KEEPALIVE = 0x8 constant TCP_KEEPALIVE_ABORT_THRESHOLD (line 1078) | TCP_KEEPALIVE_ABORT_THRESHOLD = 0x17 constant TCP_KEEPALIVE_THRESHOLD (line 1079) | TCP_KEEPALIVE_THRESHOLD = 0x16 constant TCP_KEEPCNT (line 1080) | TCP_KEEPCNT = 0x23 constant TCP_KEEPIDLE (line 1081) | TCP_KEEPIDLE = 0x22 constant TCP_KEEPINTVL (line 1082) | TCP_KEEPINTVL = 0x24 constant TCP_LINGER2 (line 1083) | TCP_LINGER2 = 0x1c constant TCP_MAXSEG (line 1084) | TCP_MAXSEG = 0x2 constant TCP_MSS (line 1085) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1086) | TCP_NODELAY = 0x1 constant TCP_NOTIFY_THRESHOLD (line 1087) | TCP_NOTIFY_THRESHOLD = 0x10 constant TCP_RECVDSTADDR (line 1088) | TCP_RECVDSTADDR = 0x14 constant TCP_RTO_INITIAL (line 1089) | TCP_RTO_INITIAL = 0x19 constant TCP_RTO_MAX (line 1090) | TCP_RTO_MAX = 0x1b constant TCP_RTO_MIN (line 1091) | TCP_RTO_MIN = 0x1a constant TCSAFLUSH (line 1092) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1093) | TCSBRK = 0x5405 constant TCSETA (line 1094) | TCSETA = 0x5402 constant TCSETAF (line 1095) | TCSETAF = 0x5404 constant TCSETAW (line 1096) | TCSETAW = 0x5403 constant TCSETS (line 1097) | TCSETS = 0x540e constant TCSETSF (line 1098) | TCSETSF = 0x5410 constant TCSETSW (line 1099) | TCSETSW = 0x540f constant TCXONC (line 1100) | TCXONC = 0x5406 constant TIMER_ABSTIME (line 1101) | TIMER_ABSTIME = 0x1 constant TIMER_RELTIME (line 1102) | TIMER_RELTIME = 0x0 constant TIOC (line 1103) | TIOC = 0x5400 constant TIOCCBRK (line 1104) | TIOCCBRK = 0x747a constant TIOCCDTR (line 1105) | TIOCCDTR = 0x7478 constant TIOCCILOOP (line 1106) | TIOCCILOOP = 0x746c constant TIOCEXCL (line 1107) | TIOCEXCL = 0x740d constant TIOCFLUSH (line 1108) | TIOCFLUSH = 0x7410 constant TIOCGETC (line 1109) | TIOCGETC = 0x7412 constant TIOCGETD (line 1110) | TIOCGETD = 0x7400 constant TIOCGETP (line 1111) | TIOCGETP = 0x7408 constant TIOCGLTC (line 1112) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1113) | TIOCGPGRP = 0x7414 constant TIOCGPPS (line 1114) | TIOCGPPS = 0x547d constant TIOCGPPSEV (line 1115) | TIOCGPPSEV = 0x547f constant TIOCGSID (line 1116) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1117) | TIOCGSOFTCAR = 0x5469 constant TIOCGWINSZ (line 1118) | TIOCGWINSZ = 0x5468 constant TIOCHPCL (line 1119) | TIOCHPCL = 0x7402 constant TIOCKBOF (line 1120) | TIOCKBOF = 0x5409 constant TIOCKBON (line 1121) | TIOCKBON = 0x5408 constant TIOCLBIC (line 1122) | TIOCLBIC = 0x747e constant TIOCLBIS (line 1123) | TIOCLBIS = 0x747f constant TIOCLGET (line 1124) | TIOCLGET = 0x747c constant TIOCLSET (line 1125) | TIOCLSET = 0x747d constant TIOCMBIC (line 1126) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1127) | TIOCMBIS = 0x741b constant TIOCMGET (line 1128) | TIOCMGET = 0x741d constant TIOCMSET (line 1129) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1130) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1131) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1132) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1133) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1134) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1135) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1136) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1137) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1138) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1139) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1140) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1141) | TIOCNOTTY = 0x7471 constant TIOCNXCL (line 1142) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1143) | TIOCOUTQ = 0x7473 constant TIOCREMOTE (line 1144) | TIOCREMOTE = 0x741e constant TIOCSBRK (line 1145) | TIOCSBRK = 0x747b constant TIOCSCTTY (line 1146) | TIOCSCTTY = 0x7484 constant TIOCSDTR (line 1147) | TIOCSDTR = 0x7479 constant TIOCSETC (line 1148) | TIOCSETC = 0x7411 constant TIOCSETD (line 1149) | TIOCSETD = 0x7401 constant TIOCSETN (line 1150) | TIOCSETN = 0x740a constant TIOCSETP (line 1151) | TIOCSETP = 0x7409 constant TIOCSIGNAL (line 1152) | TIOCSIGNAL = 0x741f constant TIOCSILOOP (line 1153) | TIOCSILOOP = 0x746d constant TIOCSLTC (line 1154) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1155) | TIOCSPGRP = 0x7415 constant TIOCSPPS (line 1156) | TIOCSPPS = 0x547e constant TIOCSSOFTCAR (line 1157) | TIOCSSOFTCAR = 0x546a constant TIOCSTART (line 1158) | TIOCSTART = 0x746e constant TIOCSTI (line 1159) | TIOCSTI = 0x7417 constant TIOCSTOP (line 1160) | TIOCSTOP = 0x746f constant TIOCSWINSZ (line 1161) | TIOCSWINSZ = 0x5467 constant TOSTOP (line 1162) | TOSTOP = 0x100 constant UTIME_NOW (line 1163) | UTIME_NOW = -0x1 constant UTIME_OMIT (line 1164) | UTIME_OMIT = -0x2 constant VCEOF (line 1165) | VCEOF = 0x8 constant VCEOL (line 1166) | VCEOL = 0x9 constant VDISCARD (line 1167) | VDISCARD = 0xd constant VDSUSP (line 1168) | VDSUSP = 0xb constant VEOF (line 1169) | VEOF = 0x4 constant VEOL (line 1170) | VEOL = 0x5 constant VEOL2 (line 1171) | VEOL2 = 0x6 constant VERASE (line 1172) | VERASE = 0x2 constant VERASE2 (line 1173) | VERASE2 = 0x11 constant VINTR (line 1174) | VINTR = 0x0 constant VKILL (line 1175) | VKILL = 0x3 constant VLNEXT (line 1176) | VLNEXT = 0xf constant VMIN (line 1177) | VMIN = 0x4 constant VQUIT (line 1178) | VQUIT = 0x1 constant VREPRINT (line 1179) | VREPRINT = 0xc constant VSTART (line 1180) | VSTART = 0x8 constant VSTATUS (line 1181) | VSTATUS = 0x10 constant VSTOP (line 1182) | VSTOP = 0x9 constant VSUSP (line 1183) | VSUSP = 0xa constant VSWTCH (line 1184) | VSWTCH = 0x7 constant VT0 (line 1185) | VT0 = 0x0 constant VT1 (line 1186) | VT1 = 0x4000 constant VTDLY (line 1187) | VTDLY = 0x4000 constant VTIME (line 1188) | VTIME = 0x5 constant VWERASE (line 1189) | VWERASE = 0xe constant WCONTFLG (line 1190) | WCONTFLG = 0xffff constant WCONTINUED (line 1191) | WCONTINUED = 0x8 constant WCOREFLG (line 1192) | WCOREFLG = 0x80 constant WEXITED (line 1193) | WEXITED = 0x1 constant WNOHANG (line 1194) | WNOHANG = 0x40 constant WNOWAIT (line 1195) | WNOWAIT = 0x80 constant WOPTMASK (line 1196) | WOPTMASK = 0xcf constant WRAP (line 1197) | WRAP = 0x20000 constant WSIGMASK (line 1198) | WSIGMASK = 0x7f constant WSTOPFLG (line 1199) | WSTOPFLG = 0x7f constant WSTOPPED (line 1200) | WSTOPPED = 0x4 constant WTRAPPED (line 1201) | WTRAPPED = 0x2 constant WUNTRACED (line 1202) | WUNTRACED = 0x4 constant XCASE (line 1203) | XCASE = 0x4 constant XTABS (line 1204) | XTABS = 0x1800 constant E2BIG (line 1209) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1210) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1211) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1212) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1213) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1214) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1215) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1216) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1217) | EBADE = syscall.Errno(0x32) constant EBADF (line 1218) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1219) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1220) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1221) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1222) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1223) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1224) | EBFONT = syscall.Errno(0x39) constant EBUSY (line 1225) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1226) | ECANCELED = syscall.Errno(0x2f) constant ECHILD (line 1227) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1228) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1229) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1230) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1231) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1232) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1233) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1234) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1235) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1236) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1237) | EDQUOT = syscall.Errno(0x31) constant EEXIST (line 1238) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1239) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1240) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1241) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1242) | EHOSTUNREACH = syscall.Errno(0x94) constant EIDRM (line 1243) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1244) | EILSEQ = syscall.Errno(0x58) constant EINPROGRESS (line 1245) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1246) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1247) | EINVAL = syscall.Errno(0x16) constant EIO (line 1248) | EIO = syscall.Errno(0x5) constant EISCONN (line 1249) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1250) | EISDIR = syscall.Errno(0x15) constant EL2HLT (line 1251) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1252) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1253) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1254) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1255) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1256) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1257) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1258) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1259) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1260) | ELNRNG = syscall.Errno(0x29) constant ELOCKUNMAPPED (line 1261) | ELOCKUNMAPPED = syscall.Errno(0x48) constant ELOOP (line 1262) | ELOOP = syscall.Errno(0x5a) constant EMFILE (line 1263) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1264) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1265) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1266) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1267) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENETDOWN (line 1268) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1269) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1270) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1271) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1272) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1273) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1274) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1275) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1276) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1277) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1278) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1279) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1280) | ENOLINK = syscall.Errno(0x43) constant ENOMEM (line 1281) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1282) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1283) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1284) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1285) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1286) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1287) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1288) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1289) | ENOSYS = syscall.Errno(0x59) constant ENOTACTIVE (line 1290) | ENOTACTIVE = syscall.Errno(0x49) constant ENOTBLK (line 1291) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1292) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1293) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1294) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTRECOVERABLE (line 1295) | ENOTRECOVERABLE = syscall.Errno(0x3b) constant ENOTSOCK (line 1296) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1297) | ENOTSUP = syscall.Errno(0x30) constant ENOTTY (line 1298) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1299) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1300) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1301) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1302) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1303) | EOWNERDEAD = syscall.Errno(0x3a) constant EPERM (line 1304) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1305) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1306) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1307) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1308) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1309) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1310) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1311) | EREMCHG = syscall.Errno(0x52) constant EREMOTE (line 1312) | EREMOTE = syscall.Errno(0x42) constant ERESTART (line 1313) | ERESTART = syscall.Errno(0x5b) constant EROFS (line 1314) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1315) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1316) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1317) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1318) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1319) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1320) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1321) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1322) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1323) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1324) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1325) | ETXTBSY = syscall.Errno(0x1a) constant EUNATCH (line 1326) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1327) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1328) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1329) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1330) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1335) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1336) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1337) | SIGBUS = syscall.Signal(0xa) constant SIGCANCEL (line 1338) | SIGCANCEL = syscall.Signal(0x24) constant SIGCHLD (line 1339) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1340) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1341) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1342) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1343) | SIGFPE = syscall.Signal(0x8) constant SIGFREEZE (line 1344) | SIGFREEZE = syscall.Signal(0x22) constant SIGHUP (line 1345) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1346) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1347) | SIGINFO = syscall.Signal(0x29) constant SIGINT (line 1348) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1349) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1350) | SIGIOT = syscall.Signal(0x6) constant SIGJVM1 (line 1351) | SIGJVM1 = syscall.Signal(0x27) constant SIGJVM2 (line 1352) | SIGJVM2 = syscall.Signal(0x28) constant SIGKILL (line 1353) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1354) | SIGLOST = syscall.Signal(0x25) constant SIGLWP (line 1355) | SIGLWP = syscall.Signal(0x21) constant SIGPIPE (line 1356) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1357) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1358) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1359) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1360) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1361) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1362) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1363) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1364) | SIGTERM = syscall.Signal(0xf) constant SIGTHAW (line 1365) | SIGTHAW = syscall.Signal(0x23) constant SIGTRAP (line 1366) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1367) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1368) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1369) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1370) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1371) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1372) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1373) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWAITING (line 1374) | SIGWAITING = syscall.Signal(0x20) constant SIGWINCH (line 1375) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1376) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1377) | SIGXFSZ = syscall.Signal(0x1f) constant SIGXRES (line 1378) | SIGXRES = syscall.Signal(0x26) FILE: vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go constant BRKINT (line 14) | BRKINT = 0x0001 constant CLOCK_MONOTONIC (line 15) | CLOCK_MONOTONIC = 0x1 constant CLOCK_PROCESS_CPUTIME_ID (line 16) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 17) | CLOCK_REALTIME = 0x0 constant CLOCK_THREAD_CPUTIME_ID (line 18) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CS8 (line 19) | CS8 = 0x0030 constant CSIZE (line 20) | CSIZE = 0x0030 constant ECHO (line 21) | ECHO = 0x00000008 constant ECHONL (line 22) | ECHONL = 0x00000001 constant FD_CLOEXEC (line 23) | FD_CLOEXEC = 0x01 constant FD_CLOFORK (line 24) | FD_CLOFORK = 0x02 constant FNDELAY (line 25) | FNDELAY = 0x04 constant F_CLOSFD (line 26) | F_CLOSFD = 9 constant F_CONTROL_CVT (line 27) | F_CONTROL_CVT = 13 constant F_DUPFD (line 28) | F_DUPFD = 0 constant F_DUPFD2 (line 29) | F_DUPFD2 = 8 constant F_GETFD (line 30) | F_GETFD = 1 constant F_GETFL (line 31) | F_GETFL = 259 constant F_GETLK (line 32) | F_GETLK = 5 constant F_GETOWN (line 33) | F_GETOWN = 10 constant F_OK (line 34) | F_OK = 0x0 constant F_RDLCK (line 35) | F_RDLCK = 1 constant F_SETFD (line 36) | F_SETFD = 2 constant F_SETFL (line 37) | F_SETFL = 4 constant F_SETLK (line 38) | F_SETLK = 6 constant F_SETLKW (line 39) | F_SETLKW = 7 constant F_SETOWN (line 40) | F_SETOWN = 11 constant F_SETTAG (line 41) | F_SETTAG = 12 constant F_UNLCK (line 42) | F_UNLCK = 3 constant F_WRLCK (line 43) | F_WRLCK = 2 constant FSTYPE_ZFS (line 44) | FSTYPE_ZFS = 0xe9 constant FSTYPE_HFS (line 45) | FSTYPE_HFS = 0xc8 constant FSTYPE_NFS (line 46) | FSTYPE_NFS = 0xd5 constant FSTYPE_TFS (line 47) | FSTYPE_TFS = 0xe3 constant FSTYPE_AUTOMOUNT (line 48) | FSTYPE_AUTOMOUNT = 0xc1 constant IP6F_MORE_FRAG (line 49) | IP6F_MORE_FRAG = 0x0001 constant IP6F_OFF_MASK (line 50) | IP6F_OFF_MASK = 0xfff8 constant IP6F_RESERVED_MASK (line 51) | IP6F_RESERVED_MASK = 0x0006 constant IP6OPT_JUMBO (line 52) | IP6OPT_JUMBO = 0xc2 constant IP6OPT_JUMBO_LEN (line 53) | IP6OPT_JUMBO_LEN = 6 constant IP6OPT_MUTABLE (line 54) | IP6OPT_MUTABLE = 0x20 constant IP6OPT_NSAP_ADDR (line 55) | IP6OPT_NSAP_ADDR = 0xc3 constant IP6OPT_PAD1 (line 56) | IP6OPT_PAD1 = 0x00 constant IP6OPT_PADN (line 57) | IP6OPT_PADN = 0x01 constant IP6OPT_ROUTER_ALERT (line 58) | IP6OPT_ROUTER_ALERT = 0x05 constant IP6OPT_TUNNEL_LIMIT (line 59) | IP6OPT_TUNNEL_LIMIT = 0x04 constant IP6OPT_TYPE_DISCARD (line 60) | IP6OPT_TYPE_DISCARD = 0x40 constant IP6OPT_TYPE_FORCEICMP (line 61) | IP6OPT_TYPE_FORCEICMP = 0x80 constant IP6OPT_TYPE_ICMP (line 62) | IP6OPT_TYPE_ICMP = 0xc0 constant IP6OPT_TYPE_SKIP (line 63) | IP6OPT_TYPE_SKIP = 0x00 constant IP6_ALERT_AN (line 64) | IP6_ALERT_AN = 0x0002 constant IP6_ALERT_MLD (line 65) | IP6_ALERT_MLD = 0x0000 constant IP6_ALERT_RSVP (line 66) | IP6_ALERT_RSVP = 0x0001 constant IPPORT_RESERVED (line 67) | IPPORT_RESERVED = 1024 constant IPPORT_USERRESERVED (line 68) | IPPORT_USERRESERVED = 5000 constant IPPROTO_AH (line 69) | IPPROTO_AH = 51 constant SOL_AH (line 70) | SOL_AH = 51 constant IPPROTO_DSTOPTS (line 71) | IPPROTO_DSTOPTS = 60 constant SOL_DSTOPTS (line 72) | SOL_DSTOPTS = 60 constant IPPROTO_EGP (line 73) | IPPROTO_EGP = 8 constant SOL_EGP (line 74) | SOL_EGP = 8 constant IPPROTO_ESP (line 75) | IPPROTO_ESP = 50 constant SOL_ESP (line 76) | SOL_ESP = 50 constant IPPROTO_FRAGMENT (line 77) | IPPROTO_FRAGMENT = 44 constant SOL_FRAGMENT (line 78) | SOL_FRAGMENT = 44 constant IPPROTO_GGP (line 79) | IPPROTO_GGP = 2 constant SOL_GGP (line 80) | SOL_GGP = 2 constant IPPROTO_HOPOPTS (line 81) | IPPROTO_HOPOPTS = 0 constant SOL_HOPOPTS (line 82) | SOL_HOPOPTS = 0 constant IPPROTO_ICMP (line 83) | IPPROTO_ICMP = 1 constant SOL_ICMP (line 84) | SOL_ICMP = 1 constant IPPROTO_ICMPV6 (line 85) | IPPROTO_ICMPV6 = 58 constant SOL_ICMPV6 (line 86) | SOL_ICMPV6 = 58 constant IPPROTO_IDP (line 87) | IPPROTO_IDP = 22 constant SOL_IDP (line 88) | SOL_IDP = 22 constant IPPROTO_IP (line 89) | IPPROTO_IP = 0 constant SOL_IP (line 90) | SOL_IP = 0 constant IPPROTO_IPV6 (line 91) | IPPROTO_IPV6 = 41 constant SOL_IPV6 (line 92) | SOL_IPV6 = 41 constant IPPROTO_MAX (line 93) | IPPROTO_MAX = 256 constant SOL_MAX (line 94) | SOL_MAX = 256 constant IPPROTO_NONE (line 95) | IPPROTO_NONE = 59 constant SOL_NONE (line 96) | SOL_NONE = 59 constant IPPROTO_PUP (line 97) | IPPROTO_PUP = 12 constant SOL_PUP (line 98) | SOL_PUP = 12 constant IPPROTO_RAW (line 99) | IPPROTO_RAW = 255 constant SOL_RAW (line 100) | SOL_RAW = 255 constant IPPROTO_ROUTING (line 101) | IPPROTO_ROUTING = 43 constant SOL_ROUTING (line 102) | SOL_ROUTING = 43 constant IPPROTO_TCP (line 103) | IPPROTO_TCP = 6 constant SOL_TCP (line 104) | SOL_TCP = 6 constant IPPROTO_UDP (line 105) | IPPROTO_UDP = 17 constant SOL_UDP (line 106) | SOL_UDP = 17 constant IPV6_ADDR_PREFERENCES (line 107) | IPV6_ADDR_PREFERENCES = 32 constant IPV6_CHECKSUM (line 108) | IPV6_CHECKSUM = 19 constant IPV6_DONTFRAG (line 109) | IPV6_DONTFRAG = 29 constant IPV6_DSTOPTS (line 110) | IPV6_DSTOPTS = 23 constant IPV6_HOPLIMIT (line 111) | IPV6_HOPLIMIT = 11 constant IPV6_HOPOPTS (line 112) | IPV6_HOPOPTS = 22 constant IPV6_JOIN_GROUP (line 113) | IPV6_JOIN_GROUP = 5 constant IPV6_LEAVE_GROUP (line 114) | IPV6_LEAVE_GROUP = 6 constant IPV6_MULTICAST_HOPS (line 115) | IPV6_MULTICAST_HOPS = 9 constant IPV6_MULTICAST_IF (line 116) | IPV6_MULTICAST_IF = 7 constant IPV6_MULTICAST_LOOP (line 117) | IPV6_MULTICAST_LOOP = 4 constant IPV6_NEXTHOP (line 118) | IPV6_NEXTHOP = 20 constant IPV6_PATHMTU (line 119) | IPV6_PATHMTU = 12 constant IPV6_PKTINFO (line 120) | IPV6_PKTINFO = 13 constant IPV6_PREFER_SRC_CGA (line 121) | IPV6_PREFER_SRC_CGA = 0x10 constant IPV6_PREFER_SRC_COA (line 122) | IPV6_PREFER_SRC_COA = 0x02 constant IPV6_PREFER_SRC_HOME (line 123) | IPV6_PREFER_SRC_HOME = 0x01 constant IPV6_PREFER_SRC_NONCGA (line 124) | IPV6_PREFER_SRC_NONCGA = 0x20 constant IPV6_PREFER_SRC_PUBLIC (line 125) | IPV6_PREFER_SRC_PUBLIC = 0x08 constant IPV6_PREFER_SRC_TMP (line 126) | IPV6_PREFER_SRC_TMP = 0x04 constant IPV6_RECVDSTOPTS (line 127) | IPV6_RECVDSTOPTS = 28 constant IPV6_RECVHOPLIMIT (line 128) | IPV6_RECVHOPLIMIT = 14 constant IPV6_RECVHOPOPTS (line 129) | IPV6_RECVHOPOPTS = 26 constant IPV6_RECVPATHMTU (line 130) | IPV6_RECVPATHMTU = 16 constant IPV6_RECVPKTINFO (line 131) | IPV6_RECVPKTINFO = 15 constant IPV6_RECVRTHDR (line 132) | IPV6_RECVRTHDR = 25 constant IPV6_RECVTCLASS (line 133) | IPV6_RECVTCLASS = 31 constant IPV6_RTHDR (line 134) | IPV6_RTHDR = 21 constant IPV6_RTHDRDSTOPTS (line 135) | IPV6_RTHDRDSTOPTS = 24 constant IPV6_RTHDR_TYPE_0 (line 136) | IPV6_RTHDR_TYPE_0 = 0 constant IPV6_TCLASS (line 137) | IPV6_TCLASS = 30 constant IPV6_UNICAST_HOPS (line 138) | IPV6_UNICAST_HOPS = 3 constant IPV6_USE_MIN_MTU (line 139) | IPV6_USE_MIN_MTU = 18 constant IPV6_V6ONLY (line 140) | IPV6_V6ONLY = 10 constant IP_ADD_MEMBERSHIP (line 141) | IP_ADD_MEMBERSHIP = 5 constant IP_ADD_SOURCE_MEMBERSHIP (line 142) | IP_ADD_SOURCE_MEMBERSHIP = 12 constant IP_BLOCK_SOURCE (line 143) | IP_BLOCK_SOURCE = 10 constant IP_DEFAULT_MULTICAST_LOOP (line 144) | IP_DEFAULT_MULTICAST_LOOP = 1 constant IP_DEFAULT_MULTICAST_TTL (line 145) | IP_DEFAULT_MULTICAST_TTL = 1 constant IP_DROP_MEMBERSHIP (line 146) | IP_DROP_MEMBERSHIP = 6 constant IP_DROP_SOURCE_MEMBERSHIP (line 147) | IP_DROP_SOURCE_MEMBERSHIP = 13 constant IP_MAX_MEMBERSHIPS (line 148) | IP_MAX_MEMBERSHIPS = 20 constant IP_MULTICAST_IF (line 149) | IP_MULTICAST_IF = 7 constant IP_MULTICAST_LOOP (line 150) | IP_MULTICAST_LOOP = 4 constant IP_MULTICAST_TTL (line 151) | IP_MULTICAST_TTL = 3 constant IP_OPTIONS (line 152) | IP_OPTIONS = 1 constant IP_PKTINFO (line 153) | IP_PKTINFO = 101 constant IP_RECVPKTINFO (line 154) | IP_RECVPKTINFO = 102 constant IP_TOS (line 155) | IP_TOS = 2 constant IP_TTL (line 156) | IP_TTL = 3 constant IP_UNBLOCK_SOURCE (line 157) | IP_UNBLOCK_SOURCE = 11 constant ICANON (line 158) | ICANON = 0x0010 constant ICMP6_FILTER (line 159) | ICMP6_FILTER = 0x26 constant ICRNL (line 160) | ICRNL = 0x0002 constant IEXTEN (line 161) | IEXTEN = 0x0020 constant IGNBRK (line 162) | IGNBRK = 0x0004 constant IGNCR (line 163) | IGNCR = 0x0008 constant INLCR (line 164) | INLCR = 0x0020 constant ISIG (line 165) | ISIG = 0x0040 constant ISTRIP (line 166) | ISTRIP = 0x0080 constant IXON (line 167) | IXON = 0x0200 constant IXOFF (line 168) | IXOFF = 0x0100 constant LOCK_SH (line 169) | LOCK_SH = 0x1 constant LOCK_EX (line 170) | LOCK_EX = 0x2 constant LOCK_NB (line 171) | LOCK_NB = 0x4 constant LOCK_UN (line 172) | LOCK_UN = 0x8 constant POLLIN (line 173) | POLLIN = 0x0003 constant POLLOUT (line 174) | POLLOUT = 0x0004 constant POLLPRI (line 175) | POLLPRI = 0x0010 constant POLLERR (line 176) | POLLERR = 0x0020 constant POLLHUP (line 177) | POLLHUP = 0x0040 constant POLLNVAL (line 178) | POLLNVAL = 0x0080 constant PROT_READ (line 179) | PROT_READ = 0x1 constant PROT_WRITE (line 180) | PROT_WRITE = 0x2 constant PROT_NONE (line 181) | PROT_NONE = 0x4 constant PROT_EXEC (line 182) | PROT_EXEC = 0x8 constant MAP_PRIVATE (line 183) | MAP_PRIVATE = 0x1 constant MAP_SHARED (line 184) | MAP_SHARED = 0x2 constant MAP_FIXED (line 185) | MAP_FIXED = 0x4 constant MCAST_JOIN_GROUP (line 186) | MCAST_JOIN_GROUP = 40 constant MCAST_LEAVE_GROUP (line 187) | MCAST_LEAVE_GROUP = 41 constant MCAST_JOIN_SOURCE_GROUP (line 188) | MCAST_JOIN_SOURCE_GROUP = 42 constant MCAST_LEAVE_SOURCE_GROUP (line 189) | MCAST_LEAVE_SOURCE_GROUP = 43 constant MCAST_BLOCK_SOURCE (line 190) | MCAST_BLOCK_SOURCE = 44 constant MCAST_UNBLOCK_SOURCE (line 191) | MCAST_UNBLOCK_SOURCE = 45 constant MS_SYNC (line 192) | MS_SYNC = 0x1 constant MS_ASYNC (line 193) | MS_ASYNC = 0x2 constant MS_INVALIDATE (line 194) | MS_INVALIDATE = 0x4 constant MTM_RDONLY (line 195) | MTM_RDONLY = 0x80000000 constant MTM_RDWR (line 196) | MTM_RDWR = 0x40000000 constant MTM_UMOUNT (line 197) | MTM_UMOUNT = 0x10000000 constant MTM_IMMED (line 198) | MTM_IMMED = 0x08000000 constant MTM_FORCE (line 199) | MTM_FORCE = 0x04000000 constant MTM_DRAIN (line 200) | MTM_DRAIN = 0x02000000 constant MTM_RESET (line 201) | MTM_RESET = 0x01000000 constant MTM_SAMEMODE (line 202) | MTM_SAMEMODE = 0x00100000 constant MTM_UNQSEFORCE (line 203) | MTM_UNQSEFORCE = 0x00040000 constant MTM_NOSUID (line 204) | MTM_NOSUID = 0x00000400 constant MTM_SYNCHONLY (line 205) | MTM_SYNCHONLY = 0x00000200 constant MTM_REMOUNT (line 206) | MTM_REMOUNT = 0x00000100 constant MTM_NOSECURITY (line 207) | MTM_NOSECURITY = 0x00000080 constant NFDBITS (line 208) | NFDBITS = 0x20 constant O_ACCMODE (line 209) | O_ACCMODE = 0x03 constant O_APPEND (line 210) | O_APPEND = 0x08 constant O_ASYNCSIG (line 211) | O_ASYNCSIG = 0x0200 constant O_CREAT (line 212) | O_CREAT = 0x80 constant O_EXCL (line 213) | O_EXCL = 0x40 constant O_GETFL (line 214) | O_GETFL = 0x0F constant O_LARGEFILE (line 215) | O_LARGEFILE = 0x0400 constant O_NONBLOCK (line 216) | O_NONBLOCK = 0x04 constant O_RDONLY (line 217) | O_RDONLY = 0x02 constant O_RDWR (line 218) | O_RDWR = 0x03 constant O_SYNC (line 219) | O_SYNC = 0x0100 constant O_TRUNC (line 220) | O_TRUNC = 0x10 constant O_WRONLY (line 221) | O_WRONLY = 0x01 constant O_NOCTTY (line 222) | O_NOCTTY = 0x20 constant OPOST (line 223) | OPOST = 0x0001 constant ONLCR (line 224) | ONLCR = 0x0004 constant PARENB (line 225) | PARENB = 0x0200 constant PARMRK (line 226) | PARMRK = 0x0400 constant QUERYCVT (line 227) | QUERYCVT = 3 constant RUSAGE_CHILDREN (line 228) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 229) | RUSAGE_SELF = 0x0 constant SEEK_CUR (line 230) | SEEK_CUR = 1 constant SEEK_END (line 231) | SEEK_END = 2 constant SEEK_SET (line 232) | SEEK_SET = 0 constant SETAUTOCVTALL (line 233) | SETAUTOCVTALL = 5 constant SETAUTOCVTON (line 234) | SETAUTOCVTON = 2 constant SETCVTALL (line 235) | SETCVTALL = 4 constant SETCVTOFF (line 236) | SETCVTOFF = 0 constant SETCVTON (line 237) | SETCVTON = 1 constant AF_APPLETALK (line 238) | AF_APPLETALK = 16 constant AF_CCITT (line 239) | AF_CCITT = 10 constant AF_CHAOS (line 240) | AF_CHAOS = 5 constant AF_DATAKIT (line 241) | AF_DATAKIT = 9 constant AF_DLI (line 242) | AF_DLI = 13 constant AF_ECMA (line 243) | AF_ECMA = 8 constant AF_HYLINK (line 244) | AF_HYLINK = 15 constant AF_IMPLINK (line 245) | AF_IMPLINK = 3 constant AF_INET (line 246) | AF_INET = 2 constant AF_INET6 (line 247) | AF_INET6 = 19 constant AF_INTF (line 248) | AF_INTF = 20 constant AF_IUCV (line 249) | AF_IUCV = 17 constant AF_LAT (line 250) | AF_LAT = 14 constant AF_LINK (line 251) | AF_LINK = 18 constant AF_MAX (line 252) | AF_MAX = 30 constant AF_NBS (line 253) | AF_NBS = 7 constant AF_NDD (line 254) | AF_NDD = 23 constant AF_NETWARE (line 255) | AF_NETWARE = 22 constant AF_NS (line 256) | AF_NS = 6 constant AF_PUP (line 257) | AF_PUP = 4 constant AF_RIF (line 258) | AF_RIF = 21 constant AF_ROUTE (line 259) | AF_ROUTE = 20 constant AF_SNA (line 260) | AF_SNA = 11 constant AF_UNIX (line 261) | AF_UNIX = 1 constant AF_UNSPEC (line 262) | AF_UNSPEC = 0 constant IBMTCP_IMAGE (line 263) | IBMTCP_IMAGE = 1 constant MSG_ACK_EXPECTED (line 264) | MSG_ACK_EXPECTED = 0x10 constant MSG_ACK_GEN (line 265) | MSG_ACK_GEN = 0x40 constant MSG_ACK_TIMEOUT (line 266) | MSG_ACK_TIMEOUT = 0x20 constant MSG_CONNTERM (line 267) | MSG_CONNTERM = 0x80 constant MSG_CTRUNC (line 268) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 269) | MSG_DONTROUTE = 0x4 constant MSG_EOF (line 270) | MSG_EOF = 0x8000 constant MSG_EOR (line 271) | MSG_EOR = 0x8 constant MSG_MAXIOVLEN (line 272) | MSG_MAXIOVLEN = 16 constant MSG_NONBLOCK (line 273) | MSG_NONBLOCK = 0x4000 constant MSG_OOB (line 274) | MSG_OOB = 0x1 constant MSG_PEEK (line 275) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 276) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 277) | MSG_WAITALL = 0x40 constant PRIO_PROCESS (line 278) | PRIO_PROCESS = 1 constant PRIO_PGRP (line 279) | PRIO_PGRP = 2 constant PRIO_USER (line 280) | PRIO_USER = 3 constant RLIMIT_CPU (line 281) | RLIMIT_CPU = 0 constant RLIMIT_FSIZE (line 282) | RLIMIT_FSIZE = 1 constant RLIMIT_DATA (line 283) | RLIMIT_DATA = 2 constant RLIMIT_STACK (line 284) | RLIMIT_STACK = 3 constant RLIMIT_CORE (line 285) | RLIMIT_CORE = 4 constant RLIMIT_AS (line 286) | RLIMIT_AS = 5 constant RLIMIT_NOFILE (line 287) | RLIMIT_NOFILE = 6 constant RLIMIT_MEMLIMIT (line 288) | RLIMIT_MEMLIMIT = 7 constant RLIM_INFINITY (line 289) | RLIM_INFINITY = 2147483647 constant SCM_RIGHTS (line 290) | SCM_RIGHTS = 0x01 constant SF_CLOSE (line 291) | SF_CLOSE = 0x00000002 constant SF_REUSE (line 292) | SF_REUSE = 0x00000001 constant SHUT_RD (line 293) | SHUT_RD = 0 constant SHUT_RDWR (line 294) | SHUT_RDWR = 2 constant SHUT_WR (line 295) | SHUT_WR = 1 constant SOCK_CONN_DGRAM (line 296) | SOCK_CONN_DGRAM = 6 constant SOCK_DGRAM (line 297) | SOCK_DGRAM = 2 constant SOCK_RAW (line 298) | SOCK_RAW = 3 constant SOCK_RDM (line 299) | SOCK_RDM = 4 constant SOCK_SEQPACKET (line 300) | SOCK_SEQPACKET = 5 constant SOCK_STREAM (line 301) | SOCK_STREAM = 1 constant SOL_SOCKET (line 302) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 303) | SOMAXCONN = 10 constant SO_ACCEPTCONN (line 304) | SO_ACCEPTCONN = 0x0002 constant SO_ACCEPTECONNABORTED (line 305) | SO_ACCEPTECONNABORTED = 0x0006 constant SO_ACKNOW (line 306) | SO_ACKNOW = 0x7700 constant SO_BROADCAST (line 307) | SO_BROADCAST = 0x0020 constant SO_BULKMODE (line 308) | SO_BULKMODE = 0x8000 constant SO_CKSUMRECV (line 309) | SO_CKSUMRECV = 0x0800 constant SO_CLOSE (line 310) | SO_CLOSE = 0x01 constant SO_CLUSTERCONNTYPE (line 311) | SO_CLUSTERCONNTYPE = 0x00004001 constant SO_CLUSTERCONNTYPE_INTERNAL (line 312) | SO_CLUSTERCONNTYPE_INTERNAL = 8 constant SO_CLUSTERCONNTYPE_NOCONN (line 313) | SO_CLUSTERCONNTYPE_NOCONN = 0 constant SO_CLUSTERCONNTYPE_NONE (line 314) | SO_CLUSTERCONNTYPE_NONE = 1 constant SO_CLUSTERCONNTYPE_SAME_CLUSTER (line 315) | SO_CLUSTERCONNTYPE_SAME_CLUSTER = 2 constant SO_CLUSTERCONNTYPE_SAME_IMAGE (line 316) | SO_CLUSTERCONNTYPE_SAME_IMAGE = 4 constant SO_DEBUG (line 317) | SO_DEBUG = 0x0001 constant SO_DONTROUTE (line 318) | SO_DONTROUTE = 0x0010 constant SO_ERROR (line 319) | SO_ERROR = 0x1007 constant SO_IGNOREINCOMINGPUSH (line 320) | SO_IGNOREINCOMINGPUSH = 0x1 constant SO_IGNORESOURCEVIPA (line 321) | SO_IGNORESOURCEVIPA = 0x0002 constant SO_KEEPALIVE (line 322) | SO_KEEPALIVE = 0x0008 constant SO_LINGER (line 323) | SO_LINGER = 0x0080 constant SO_NONBLOCKLOCAL (line 324) | SO_NONBLOCKLOCAL = 0x8001 constant SO_NOREUSEADDR (line 325) | SO_NOREUSEADDR = 0x1000 constant SO_OOBINLINE (line 326) | SO_OOBINLINE = 0x0100 constant SO_OPTACK (line 327) | SO_OPTACK = 0x8004 constant SO_OPTMSS (line 328) | SO_OPTMSS = 0x8003 constant SO_RCVBUF (line 329) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 330) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 331) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 332) | SO_REUSEADDR = 0x0004 constant SO_REUSEPORT (line 333) | SO_REUSEPORT = 0x0200 constant SO_SECINFO (line 334) | SO_SECINFO = 0x00004002 constant SO_SET (line 335) | SO_SET = 0x0200 constant SO_SNDBUF (line 336) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 337) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 338) | SO_SNDTIMEO = 0x1005 constant SO_TYPE (line 339) | SO_TYPE = 0x1008 constant SO_UNSET (line 340) | SO_UNSET = 0x0400 constant SO_USELOOPBACK (line 341) | SO_USELOOPBACK = 0x0040 constant SO_USE_IFBUFS (line 342) | SO_USE_IFBUFS = 0x0400 constant S_ISUID (line 343) | S_ISUID = 0x0800 constant S_ISGID (line 344) | S_ISGID = 0x0400 constant S_ISVTX (line 345) | S_ISVTX = 0x0200 constant S_IRUSR (line 346) | S_IRUSR = 0x0100 constant S_IWUSR (line 347) | S_IWUSR = 0x0080 constant S_IXUSR (line 348) | S_IXUSR = 0x0040 constant S_IRWXU (line 349) | S_IRWXU = 0x01C0 constant S_IRGRP (line 350) | S_IRGRP = 0x0020 constant S_IWGRP (line 351) | S_IWGRP = 0x0010 constant S_IXGRP (line 352) | S_IXGRP = 0x0008 constant S_IRWXG (line 353) | S_IRWXG = 0x0038 constant S_IROTH (line 354) | S_IROTH = 0x0004 constant S_IWOTH (line 355) | S_IWOTH = 0x0002 constant S_IXOTH (line 356) | S_IXOTH = 0x0001 constant S_IRWXO (line 357) | S_IRWXO = 0x0007 constant S_IREAD (line 358) | S_IREAD = S_IRUSR constant S_IWRITE (line 359) | S_IWRITE = S_IWUSR constant S_IEXEC (line 360) | S_IEXEC = S_IXUSR constant S_IFDIR (line 361) | S_IFDIR = 0x01000000 constant S_IFCHR (line 362) | S_IFCHR = 0x02000000 constant S_IFREG (line 363) | S_IFREG = 0x03000000 constant S_IFFIFO (line 364) | S_IFFIFO = 0x04000000 constant S_IFIFO (line 365) | S_IFIFO = 0x04000000 constant S_IFLNK (line 366) | S_IFLNK = 0x05000000 constant S_IFBLK (line 367) | S_IFBLK = 0x06000000 constant S_IFSOCK (line 368) | S_IFSOCK = 0x07000000 constant S_IFVMEXTL (line 369) | S_IFVMEXTL = 0xFE000000 constant S_IFVMEXTL_EXEC (line 370) | S_IFVMEXTL_EXEC = 0x00010000 constant S_IFVMEXTL_DATA (line 371) | S_IFVMEXTL_DATA = 0x00020000 constant S_IFVMEXTL_MEL (line 372) | S_IFVMEXTL_MEL = 0x00030000 constant S_IFEXTL (line 373) | S_IFEXTL = 0x00000001 constant S_IFPROGCTL (line 374) | S_IFPROGCTL = 0x00000002 constant S_IFAPFCTL (line 375) | S_IFAPFCTL = 0x00000004 constant S_IFNOSHARE (line 376) | S_IFNOSHARE = 0x00000008 constant S_IFSHARELIB (line 377) | S_IFSHARELIB = 0x00000010 constant S_IFMT (line 378) | S_IFMT = 0xFF000000 constant S_IFMST (line 379) | S_IFMST = 0x00FF0000 constant TCP_KEEPALIVE (line 380) | TCP_KEEPALIVE = 0x8 constant TCP_NODELAY (line 381) | TCP_NODELAY = 0x1 constant TCP_INFO (line 382) | TCP_INFO = 0xb constant TCP_USER_TIMEOUT (line 383) | TCP_USER_TIMEOUT = 0x1 constant TIOCGWINSZ (line 384) | TIOCGWINSZ = 0x4008a368 constant TIOCSWINSZ (line 385) | TIOCSWINSZ = 0x8008a367 constant TIOCSBRK (line 386) | TIOCSBRK = 0x2000a77b constant TIOCCBRK (line 387) | TIOCCBRK = 0x2000a77a constant TIOCSTI (line 388) | TIOCSTI = 0x8001a772 constant TIOCGPGRP (line 389) | TIOCGPGRP = 0x4004a777 constant TCSANOW (line 390) | TCSANOW = 0 constant TCSETS (line 391) | TCSETS = 0 constant TCSADRAIN (line 392) | TCSADRAIN = 1 constant TCSETSW (line 393) | TCSETSW = 1 constant TCSAFLUSH (line 394) | TCSAFLUSH = 2 constant TCSETSF (line 395) | TCSETSF = 2 constant TCGETS (line 396) | TCGETS = 3 constant TCIFLUSH (line 397) | TCIFLUSH = 0 constant TCOFLUSH (line 398) | TCOFLUSH = 1 constant TCIOFLUSH (line 399) | TCIOFLUSH = 2 constant TCOOFF (line 400) | TCOOFF = 0 constant TCOON (line 401) | TCOON = 1 constant TCIOFF (line 402) | TCIOFF = 2 constant TCION (line 403) | TCION = 3 constant TIOCSPGRP (line 404) | TIOCSPGRP = 0x8004a776 constant TIOCNOTTY (line 405) | TIOCNOTTY = 0x2000a771 constant TIOCEXCL (line 406) | TIOCEXCL = 0x2000a70d constant TIOCNXCL (line 407) | TIOCNXCL = 0x2000a70e constant TIOCGETD (line 408) | TIOCGETD = 0x4004a700 constant TIOCSETD (line 409) | TIOCSETD = 0x8004a701 constant TIOCPKT (line 410) | TIOCPKT = 0x8004a770 constant TIOCSTOP (line 411) | TIOCSTOP = 0x2000a76f constant TIOCSTART (line 412) | TIOCSTART = 0x2000a76e constant TIOCUCNTL (line 413) | TIOCUCNTL = 0x8004a766 constant TIOCREMOTE (line 414) | TIOCREMOTE = 0x8004a769 constant TIOCMGET (line 415) | TIOCMGET = 0x4004a76a constant TIOCMSET (line 416) | TIOCMSET = 0x8004a76d constant TIOCMBIC (line 417) | TIOCMBIC = 0x8004a76b constant TIOCMBIS (line 418) | TIOCMBIS = 0x8004a76c constant VINTR (line 419) | VINTR = 0 constant VQUIT (line 420) | VQUIT = 1 constant VERASE (line 421) | VERASE = 2 constant VKILL (line 422) | VKILL = 3 constant VEOF (line 423) | VEOF = 4 constant VEOL (line 424) | VEOL = 5 constant VMIN (line 425) | VMIN = 6 constant VSTART (line 426) | VSTART = 7 constant VSTOP (line 427) | VSTOP = 8 constant VSUSP (line 428) | VSUSP = 9 constant VTIME (line 429) | VTIME = 10 constant WCONTINUED (line 430) | WCONTINUED = 0x4 constant WNOHANG (line 431) | WNOHANG = 0x1 constant WUNTRACED (line 432) | WUNTRACED = 0x2 constant _BPX_SWAP (line 433) | _BPX_SWAP = 1 constant _BPX_NONSWAP (line 434) | _BPX_NONSWAP = 2 constant MCL_CURRENT (line 435) | MCL_CURRENT = 1 constant MCL_FUTURE (line 436) | MCL_FUTURE = 2 constant MCL_ONFAULT (line 437) | MCL_ONFAULT = 3 constant MADV_NORMAL (line 438) | MADV_NORMAL = 0 constant MADV_RANDOM (line 439) | MADV_RANDOM = 1 constant MADV_SEQUENTIAL (line 440) | MADV_SEQUENTIAL = 2 constant MADV_WILLNEED (line 441) | MADV_WILLNEED = 3 constant MADV_REMOVE (line 442) | MADV_REMOVE = 4 constant MADV_DONTFORK (line 443) | MADV_DONTFORK = 5 constant MADV_DOFORK (line 444) | MADV_DOFORK = 6 constant MADV_HWPOISON (line 445) | MADV_HWPOISON = 7 constant MADV_MERGEABLE (line 446) | MADV_MERGEABLE = 8 constant MADV_UNMERGEABLE (line 447) | MADV_UNMERGEABLE = 9 constant MADV_SOFT_OFFLINE (line 448) | MADV_SOFT_OFFLINE = 10 constant MADV_HUGEPAGE (line 449) | MADV_HUGEPAGE = 11 constant MADV_NOHUGEPAGE (line 450) | MADV_NOHUGEPAGE = 12 constant MADV_DONTDUMP (line 451) | MADV_DONTDUMP = 13 constant MADV_DODUMP (line 452) | MADV_DODUMP = 14 constant MADV_FREE (line 453) | MADV_FREE = 15 constant MADV_WIPEONFORK (line 454) | MADV_WIPEONFORK = 16 constant MADV_KEEPONFORK (line 455) | MADV_KEEPONFORK = 17 constant AT_SYMLINK_NOFOLLOW (line 456) | AT_SYMLINK_NOFOLLOW = 1 constant AT_FDCWD (line 457) | AT_FDCWD = 2 constant EDOM (line 461) | EDOM = Errno(1) constant ERANGE (line 462) | ERANGE = Errno(2) constant EACCES (line 463) | EACCES = Errno(111) constant EAGAIN (line 464) | EAGAIN = Errno(112) constant EBADF (line 465) | EBADF = Errno(113) constant EBUSY (line 466) | EBUSY = Errno(114) constant ECHILD (line 467) | ECHILD = Errno(115) constant EDEADLK (line 468) | EDEADLK = Errno(116) constant EEXIST (line 469) | EEXIST = Errno(117) constant EFAULT (line 470) | EFAULT = Errno(118) constant EFBIG (line 471) | EFBIG = Errno(119) constant EINTR (line 472) | EINTR = Errno(120) constant EINVAL (line 473) | EINVAL = Errno(121) constant EIO (line 474) | EIO = Errno(122) constant EISDIR (line 475) | EISDIR = Errno(123) constant EMFILE (line 476) | EMFILE = Errno(124) constant EMLINK (line 477) | EMLINK = Errno(125) constant ENAMETOOLONG (line 478) | ENAMETOOLONG = Errno(126) constant ENFILE (line 479) | ENFILE = Errno(127) constant ENODEV (line 480) | ENODEV = Errno(128) constant ENOENT (line 481) | ENOENT = Errno(129) constant ENOEXEC (line 482) | ENOEXEC = Errno(130) constant ENOLCK (line 483) | ENOLCK = Errno(131) constant ENOMEM (line 484) | ENOMEM = Errno(132) constant ENOSPC (line 485) | ENOSPC = Errno(133) constant ENOSYS (line 486) | ENOSYS = Errno(134) constant ENOTDIR (line 487) | ENOTDIR = Errno(135) constant ENOTEMPTY (line 488) | ENOTEMPTY = Errno(136) constant ENOTTY (line 489) | ENOTTY = Errno(137) constant ENXIO (line 490) | ENXIO = Errno(138) constant EPERM (line 491) | EPERM = Errno(139) constant EPIPE (line 492) | EPIPE = Errno(140) constant EROFS (line 493) | EROFS = Errno(141) constant ESPIPE (line 494) | ESPIPE = Errno(142) constant ESRCH (line 495) | ESRCH = Errno(143) constant EXDEV (line 496) | EXDEV = Errno(144) constant E2BIG (line 497) | E2BIG = Errno(145) constant ELOOP (line 498) | ELOOP = Errno(146) constant EILSEQ (line 499) | EILSEQ = Errno(147) constant ENODATA (line 500) | ENODATA = Errno(148) constant EOVERFLOW (line 501) | EOVERFLOW = Errno(149) constant EMVSNOTUP (line 502) | EMVSNOTUP = Errno(150) constant ECMSSTORAGE (line 503) | ECMSSTORAGE = Errno(151) constant EMVSDYNALC (line 504) | EMVSDYNALC = Errno(151) constant EMVSCVAF (line 505) | EMVSCVAF = Errno(152) constant EMVSCATLG (line 506) | EMVSCATLG = Errno(153) constant ECMSINITIAL (line 507) | ECMSINITIAL = Errno(156) constant EMVSINITIAL (line 508) | EMVSINITIAL = Errno(156) constant ECMSERR (line 509) | ECMSERR = Errno(157) constant EMVSERR (line 510) | EMVSERR = Errno(157) constant EMVSPARM (line 511) | EMVSPARM = Errno(158) constant ECMSPFSFILE (line 512) | ECMSPFSFILE = Errno(159) constant EMVSPFSFILE (line 513) | EMVSPFSFILE = Errno(159) constant EMVSBADCHAR (line 514) | EMVSBADCHAR = Errno(160) constant ECMSPFSPERM (line 515) | ECMSPFSPERM = Errno(162) constant EMVSPFSPERM (line 516) | EMVSPFSPERM = Errno(162) constant EMVSSAFEXTRERR (line 517) | EMVSSAFEXTRERR = Errno(163) constant EMVSSAF2ERR (line 518) | EMVSSAF2ERR = Errno(164) constant EMVSTODNOTSET (line 519) | EMVSTODNOTSET = Errno(165) constant EMVSPATHOPTS (line 520) | EMVSPATHOPTS = Errno(166) constant EMVSNORTL (line 521) | EMVSNORTL = Errno(167) constant EMVSEXPIRE (line 522) | EMVSEXPIRE = Errno(168) constant EMVSPASSWORD (line 523) | EMVSPASSWORD = Errno(169) constant EMVSWLMERROR (line 524) | EMVSWLMERROR = Errno(170) constant EMVSCPLERROR (line 525) | EMVSCPLERROR = Errno(171) constant EMVSARMERROR (line 526) | EMVSARMERROR = Errno(172) constant ELENOFORK (line 527) | ELENOFORK = Errno(200) constant ELEMSGERR (line 528) | ELEMSGERR = Errno(201) constant EFPMASKINV (line 529) | EFPMASKINV = Errno(202) constant EFPMODEINV (line 530) | EFPMODEINV = Errno(203) constant EBUFLEN (line 531) | EBUFLEN = Errno(227) constant EEXTLINK (line 532) | EEXTLINK = Errno(228) constant ENODD (line 533) | ENODD = Errno(229) constant ECMSESMERR (line 534) | ECMSESMERR = Errno(230) constant ECPERR (line 535) | ECPERR = Errno(231) constant ELEMULTITHREAD (line 536) | ELEMULTITHREAD = Errno(232) constant ELEFENCE (line 537) | ELEFENCE = Errno(244) constant EBADDATA (line 538) | EBADDATA = Errno(245) constant EUNKNOWN (line 539) | EUNKNOWN = Errno(246) constant ENOTSUP (line 540) | ENOTSUP = Errno(247) constant EBADNAME (line 541) | EBADNAME = Errno(248) constant ENOTSAFE (line 542) | ENOTSAFE = Errno(249) constant ELEMULTITHREADFORK (line 543) | ELEMULTITHREADFORK = Errno(257) constant ECUNNOENV (line 544) | ECUNNOENV = Errno(258) constant ECUNNOCONV (line 545) | ECUNNOCONV = Errno(259) constant ECUNNOTALIGNED (line 546) | ECUNNOTALIGNED = Errno(260) constant ECUNERR (line 547) | ECUNERR = Errno(262) constant EIBMBADCALL (line 548) | EIBMBADCALL = Errno(1000) constant EIBMBADPARM (line 549) | EIBMBADPARM = Errno(1001) constant EIBMSOCKOUTOFRANGE (line 550) | EIBMSOCKOUTOFRANGE = Errno(1002) constant EIBMSOCKINUSE (line 551) | EIBMSOCKINUSE = Errno(1003) constant EIBMIUCVERR (line 552) | EIBMIUCVERR = Errno(1004) constant EOFFLOADboxERROR (line 553) | EOFFLOADboxERROR = Errno(1005) constant EOFFLOADboxRESTART (line 554) | EOFFLOADboxRESTART = Errno(1006) constant EOFFLOADboxDOWN (line 555) | EOFFLOADboxDOWN = Errno(1007) constant EIBMCONFLICT (line 556) | EIBMCONFLICT = Errno(1008) constant EIBMCANCELLED (line 557) | EIBMCANCELLED = Errno(1009) constant EIBMBADTCPNAME (line 558) | EIBMBADTCPNAME = Errno(1011) constant ENOTBLK (line 559) | ENOTBLK = Errno(1100) constant ETXTBSY (line 560) | ETXTBSY = Errno(1101) constant EWOULDBLOCK (line 561) | EWOULDBLOCK = Errno(1102) constant EINPROGRESS (line 562) | EINPROGRESS = Errno(1103) constant EALREADY (line 563) | EALREADY = Errno(1104) constant ENOTSOCK (line 564) | ENOTSOCK = Errno(1105) constant EDESTADDRREQ (line 565) | EDESTADDRREQ = Errno(1106) constant EMSGSIZE (line 566) | EMSGSIZE = Errno(1107) constant EPROTOTYPE (line 567) | EPROTOTYPE = Errno(1108) constant ENOPROTOOPT (line 568) | ENOPROTOOPT = Errno(1109) constant EPROTONOSUPPORT (line 569) | EPROTONOSUPPORT = Errno(1110) constant ESOCKTNOSUPPORT (line 570) | ESOCKTNOSUPPORT = Errno(1111) constant EOPNOTSUPP (line 571) | EOPNOTSUPP = Errno(1112) constant EPFNOSUPPORT (line 572) | EPFNOSUPPORT = Errno(1113) constant EAFNOSUPPORT (line 573) | EAFNOSUPPORT = Errno(1114) constant EADDRINUSE (line 574) | EADDRINUSE = Errno(1115) constant EADDRNOTAVAIL (line 575) | EADDRNOTAVAIL = Errno(1116) constant ENETDOWN (line 576) | ENETDOWN = Errno(1117) constant ENETUNREACH (line 577) | ENETUNREACH = Errno(1118) constant ENETRESET (line 578) | ENETRESET = Errno(1119) constant ECONNABORTED (line 579) | ECONNABORTED = Errno(1120) constant ECONNRESET (line 580) | ECONNRESET = Errno(1121) constant ENOBUFS (line 581) | ENOBUFS = Errno(1122) constant EISCONN (line 582) | EISCONN = Errno(1123) constant ENOTCONN (line 583) | ENOTCONN = Errno(1124) constant ESHUTDOWN (line 584) | ESHUTDOWN = Errno(1125) constant ETOOMANYREFS (line 585) | ETOOMANYREFS = Errno(1126) constant ETIMEDOUT (line 586) | ETIMEDOUT = Errno(1127) constant ECONNREFUSED (line 587) | ECONNREFUSED = Errno(1128) constant EHOSTDOWN (line 588) | EHOSTDOWN = Errno(1129) constant EHOSTUNREACH (line 589) | EHOSTUNREACH = Errno(1130) constant EPROCLIM (line 590) | EPROCLIM = Errno(1131) constant EUSERS (line 591) | EUSERS = Errno(1132) constant EDQUOT (line 592) | EDQUOT = Errno(1133) constant ESTALE (line 593) | ESTALE = Errno(1134) constant EREMOTE (line 594) | EREMOTE = Errno(1135) constant ENOSTR (line 595) | ENOSTR = Errno(1136) constant ETIME (line 596) | ETIME = Errno(1137) constant ENOSR (line 597) | ENOSR = Errno(1138) constant ENOMSG (line 598) | ENOMSG = Errno(1139) constant EBADMSG (line 599) | EBADMSG = Errno(1140) constant EIDRM (line 600) | EIDRM = Errno(1141) constant ENONET (line 601) | ENONET = Errno(1142) constant ERREMOTE (line 602) | ERREMOTE = Errno(1143) constant ENOLINK (line 603) | ENOLINK = Errno(1144) constant EADV (line 604) | EADV = Errno(1145) constant ESRMNT (line 605) | ESRMNT = Errno(1146) constant ECOMM (line 606) | ECOMM = Errno(1147) constant EPROTO (line 607) | EPROTO = Errno(1148) constant EMULTIHOP (line 608) | EMULTIHOP = Errno(1149) constant EDOTDOT (line 609) | EDOTDOT = Errno(1150) constant EREMCHG (line 610) | EREMCHG = Errno(1151) constant ECANCELED (line 611) | ECANCELED = Errno(1152) constant EINTRNODATA (line 612) | EINTRNODATA = Errno(1159) constant ENOREUSE (line 613) | ENOREUSE = Errno(1160) constant ENOMOVE (line 614) | ENOMOVE = Errno(1161) constant SIGHUP (line 619) | SIGHUP = Signal(1) constant SIGINT (line 620) | SIGINT = Signal(2) constant SIGABRT (line 621) | SIGABRT = Signal(3) constant SIGILL (line 622) | SIGILL = Signal(4) constant SIGPOLL (line 623) | SIGPOLL = Signal(5) constant SIGURG (line 624) | SIGURG = Signal(6) constant SIGSTOP (line 625) | SIGSTOP = Signal(7) constant SIGFPE (line 626) | SIGFPE = Signal(8) constant SIGKILL (line 627) | SIGKILL = Signal(9) constant SIGBUS (line 628) | SIGBUS = Signal(10) constant SIGSEGV (line 629) | SIGSEGV = Signal(11) constant SIGSYS (line 630) | SIGSYS = Signal(12) constant SIGPIPE (line 631) | SIGPIPE = Signal(13) constant SIGALRM (line 632) | SIGALRM = Signal(14) constant SIGTERM (line 633) | SIGTERM = Signal(15) constant SIGUSR1 (line 634) | SIGUSR1 = Signal(16) constant SIGUSR2 (line 635) | SIGUSR2 = Signal(17) constant SIGABND (line 636) | SIGABND = Signal(18) constant SIGCONT (line 637) | SIGCONT = Signal(19) constant SIGCHLD (line 638) | SIGCHLD = Signal(20) constant SIGTTIN (line 639) | SIGTTIN = Signal(21) constant SIGTTOU (line 640) | SIGTTOU = Signal(22) constant SIGIO (line 641) | SIGIO = Signal(23) constant SIGQUIT (line 642) | SIGQUIT = Signal(24) constant SIGTSTP (line 643) | SIGTSTP = Signal(25) constant SIGTRAP (line 644) | SIGTRAP = Signal(26) constant SIGIOERR (line 645) | SIGIOERR = Signal(27) constant SIGWINCH (line 646) | SIGWINCH = Signal(28) constant SIGXCPU (line 647) | SIGXCPU = Signal(29) constant SIGXFSZ (line 648) | SIGXFSZ = Signal(30) constant SIGVTALRM (line 649) | SIGVTALRM = Signal(31) constant SIGPROF (line 650) | SIGPROF = Signal(32) constant SIGDANGER (line 651) | SIGDANGER = Signal(33) constant SIGTHSTOP (line 652) | SIGTHSTOP = Signal(34) constant SIGTHCONT (line 653) | SIGTHCONT = Signal(35) constant SIGTRACE (line 654) | SIGTRACE = Signal(37) constant SIGDCE (line 655) | SIGDCE = Signal(38) constant SIGDUMP (line 656) | SIGDUMP = Signal(39) FILE: vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go type PtraceRegsArm (line 12) | type PtraceRegsArm struct function PtraceGetRegsArm (line 17) | func PtraceGetRegsArm(pid int, regsout *PtraceRegsArm) error { function PtraceSetRegsArm (line 22) | func PtraceSetRegsArm(pid int, regs *PtraceRegsArm) error { type PtraceRegsArm64 (line 27) | type PtraceRegsArm64 struct function PtraceGetRegsArm64 (line 35) | func PtraceGetRegsArm64(pid int, regsout *PtraceRegsArm64) error { function PtraceSetRegsArm64 (line 40) | func PtraceSetRegsArm64(pid int, regs *PtraceRegsArm64) error { FILE: vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go function PtraceGetRegSetArm64 (line 8) | func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error { function PtraceSetRegSetArm64 (line 14) | func PtraceSetRegSetArm64(pid, addr int, regs *PtraceRegsArm64) error { FILE: vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go type PtraceRegsMips (line 12) | type PtraceRegsMips struct function PtraceGetRegsMips (line 23) | func PtraceGetRegsMips(pid int, regsout *PtraceRegsMips) error { function PtraceSetRegsMips (line 28) | func PtraceSetRegsMips(pid int, regs *PtraceRegsMips) error { type PtraceRegsMips64 (line 33) | type PtraceRegsMips64 struct function PtraceGetRegsMips64 (line 44) | func PtraceGetRegsMips64(pid int, regsout *PtraceRegsMips64) error { function PtraceSetRegsMips64 (line 49) | func PtraceSetRegsMips64(pid int, regs *PtraceRegsMips64) error { FILE: vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go type PtraceRegsMipsle (line 12) | type PtraceRegsMipsle struct function PtraceGetRegsMipsle (line 23) | func PtraceGetRegsMipsle(pid int, regsout *PtraceRegsMipsle) error { function PtraceSetRegsMipsle (line 28) | func PtraceSetRegsMipsle(pid int, regs *PtraceRegsMipsle) error { type PtraceRegsMips64le (line 33) | type PtraceRegsMips64le struct function PtraceGetRegsMips64le (line 44) | func PtraceGetRegsMips64le(pid int, regsout *PtraceRegsMips64le) error { function PtraceSetRegsMips64le (line 49) | func PtraceSetRegsMips64le(pid int, regs *PtraceRegsMips64le) error { FILE: vendor/golang.org/x/sys/unix/zptrace_x86_linux.go type PtraceRegs386 (line 12) | type PtraceRegs386 struct function PtraceGetRegs386 (line 33) | func PtraceGetRegs386(pid int, regsout *PtraceRegs386) error { function PtraceSetRegs386 (line 38) | func PtraceSetRegs386(pid int, regs *PtraceRegs386) error { type PtraceRegsAmd64 (line 43) | type PtraceRegsAmd64 struct function PtraceGetRegsAmd64 (line 74) | func PtraceGetRegsAmd64(pid int, regsout *PtraceRegsAmd64) error { function PtraceSetRegsAmd64 (line 79) | func PtraceSetRegsAmd64(pid int, regs *PtraceRegsAmd64) error { FILE: vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go function utimes (line 139) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 150) | func utimensat(dirfd int, path string, times *[2]Timespec, flag int) (er... function getcwd (line 161) | func getcwd(buf []byte) (err error) { function accept (line 177) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function getdirent (line 188) | func getdirent(fd int, buf []byte) (n int, err error) { function wait4 (line 205) | func wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid... function ioctl (line 216) | func ioctl(fd int, req uint, arg uintptr) (err error) { function FcntlInt (line 226) | func FcntlInt(fd uintptr, cmd int, arg int) (r int, err error) { function FcntlFlock (line 237) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) { function fcntl (line 247) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Acct (line 258) | func Acct(path string) (err error) { function Chdir (line 269) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function Close (line 291) | func Close(fd int) (err error) { function Dup (line 301) | func Dup(oldfd int) (fd int, err error) { function Exit (line 312) | func Exit(code int) { function Faccessat (line 319) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 330) | func Fchdir(fd int) (err error) { function Fchmod (line 340) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 350) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 361) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fdatasync (line 372) | func Fdatasync(fd int) (err error) { function Fsync (line 382) | func Fsync(fd int) (err error) { function Getpgid (line 392) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 403) | func Getpgrp() (pid int) { function Getpid (line 411) | func Getpid() (pid int) { function Getppid (line 419) | func Getppid() (ppid int) { function Getpriority (line 427) | func Getpriority(which int, who int) (prio int, err error) { function Getrusage (line 438) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 448) | func Getsid(pid int) (sid int, err error) { function Kill (line 459) | func Kill(pid int, sig Signal) (err error) { function Klogctl (line 469) | func Klogctl(typ int, buf []byte) (n int, err error) { function Mkdir (line 486) | func Mkdir(dirfd int, path string, mode uint32) (err error) { function Mkdirat (line 497) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 508) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 519) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 530) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 541) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 551) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 563) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function read (line 575) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 592) | func Readlink(path string, buf []byte) (n int, err error) { function Renameat (line 610) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 622) | func Setdomainname(p []byte) (err error) { function Sethostname (line 638) | func Sethostname(p []byte) (err error) { function Setpgid (line 654) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 664) | func Setsid() (pid int, err error) { function Settimeofday (line 675) | func Settimeofday(tv *Timeval) (err error) { function Setuid (line 685) | func Setuid(uid int) (err error) { function Setgid (line 695) | func Setgid(uid int) (err error) { function Setpriority (line 705) | func Setpriority(which int, who int, prio int) (err error) { function Statx (line 715) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (... function Sync (line 726) | func Sync() { function Times (line 733) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 744) | func Umask(mask int) (oldmask int) { function Uname (line 752) | func Uname(buf *Utsname) (err error) { function Unlink (line 762) | func Unlink(path string) (err error) { function Unlinkat (line 773) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Ustat (line 784) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 794) | func write(fd int, p []byte) (n int, err error) { function readlen (line 811) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 822) | func writelen(fd int, p *byte, np int) (n int, err error) { function Dup2 (line 833) | func Dup2(oldfd int, newfd int) (err error) { function Fadvise (line 843) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 853) | func Fchown(fd int, uid int, gid int) (err error) { function fstat (line 863) | func fstat(fd int, stat *Stat_t) (err error) { function fstatat (line 873) | func fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 884) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 894) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 904) | func Getegid() (egid int) { function Geteuid (line 912) | func Geteuid() (euid int) { function Getgid (line 920) | func Getgid() (gid int) { function Getuid (line 928) | func Getuid() (uid int) { function Lchown (line 936) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 947) | func Listen(s int, n int) (err error) { function lstat (line 957) | func lstat(path string, stat *Stat_t) (err error) { function Pause (line 968) | func Pause() (err error) { function Pread (line 978) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 995) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Select (line 1012) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Pselect (line 1023) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s... function Setregid (line 1034) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1044) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1054) | func Shutdown(fd int, how int) (err error) { function Splice (line 1064) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function stat (line 1075) | func stat(path string, statptr *Stat_t) (err error) { function Statfs (line 1086) | func Statfs(path string, buf *Statfs_t) (err error) { function Truncate (line 1097) | func Truncate(path string, length int64) (err error) { function bind (line 1108) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1118) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1128) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1139) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1149) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1159) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1169) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1180) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1190) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1200) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1210) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1227) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1243) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1254) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function munmap (line 1265) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1275) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1291) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1307) | func Mlock(b []byte) (err error) { function Mlockall (line 1323) | func Mlockall(flags int) (err error) { function Msync (line 1333) | func Msync(b []byte, flags int) (err error) { function Munlock (line 1349) | func Munlock(b []byte) (err error) { function Munlockall (line 1365) | func Munlockall() (err error) { function pipe (line 1375) | func pipe(p *[2]_C_int) (err error) { function poll (line 1385) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function gettimeofday (line 1396) | func gettimeofday(tv *Timeval, tzp *Timezone) (err error) { function Time (line 1406) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 1417) | func Utime(path string, buf *Utimbuf) (err error) { function Getsystemcfg (line 1428) | func Getsystemcfg(label int) (n uint64) { function umount (line 1436) | func umount(target string) (err error) { function Getrlimit (line 1447) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 1457) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Seek (line 1467) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function mmap (line 1478) | 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 15) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 30) | func utimensat(dirfd int, path string, times *[2]Timespec, flag int) (er... function getcwd (line 45) | func getcwd(buf []byte) (err error) { function accept (line 59) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function getdirent (line 70) | func getdirent(fd int, buf []byte) (n int, err error) { function wait4 (line 85) | func wait4(pid Pid_t, status *_C_int, options int, rusage *Rusage) (wpid... function ioctl (line 96) | func ioctl(fd int, req uint, arg uintptr) (err error) { function FcntlInt (line 106) | func FcntlInt(fd uintptr, cmd int, arg int) (r int, err error) { function FcntlFlock (line 117) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) (err error) { function fcntl (line 127) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Acct (line 138) | func Acct(path string) (err error) { function Chdir (line 153) | func Chdir(path string) (err error) { function Chroot (line 168) | func Chroot(path string) (err error) { function Close (line 183) | func Close(fd int) (err error) { function Dup (line 193) | func Dup(oldfd int) (fd int, err error) { function Exit (line 204) | func Exit(code int) { function Faccessat (line 211) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 226) | func Fchdir(fd int) (err error) { function Fchmod (line 236) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 246) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 261) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fdatasync (line 276) | func Fdatasync(fd int) (err error) { function Fsync (line 286) | func Fsync(fd int) (err error) { function Getpgid (line 296) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 307) | func Getpgrp() (pid int) { function Getpid (line 315) | func Getpid() (pid int) { function Getppid (line 323) | func Getppid() (ppid int) { function Getpriority (line 331) | func Getpriority(which int, who int) (prio int, err error) { function Getrusage (line 342) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 352) | func Getsid(pid int) (sid int, err error) { function Kill (line 363) | func Kill(pid int, sig Signal) (err error) { function Klogctl (line 373) | func Klogctl(typ int, buf []byte) (n int, err error) { function Mkdir (line 388) | func Mkdir(dirfd int, path string, mode uint32) (err error) { function Mkdirat (line 403) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 418) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 433) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 448) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 463) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 473) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 489) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function read (line 505) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 520) | func Readlink(path string, buf []byte) (n int, err error) { function Renameat (line 540) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 560) | func Setdomainname(p []byte) (err error) { function Sethostname (line 574) | func Sethostname(p []byte) (err error) { function Setpgid (line 588) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 598) | func Setsid() (pid int, err error) { function Settimeofday (line 609) | func Settimeofday(tv *Timeval) (err error) { function Setuid (line 619) | func Setuid(uid int) (err error) { function Setgid (line 629) | func Setgid(uid int) (err error) { function Setpriority (line 639) | func Setpriority(which int, who int, prio int) (err error) { function Statx (line 649) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (... function Sync (line 664) | func Sync() { function Times (line 671) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 682) | func Umask(mask int) (oldmask int) { function Uname (line 690) | func Uname(buf *Utsname) (err error) { function Unlink (line 700) | func Unlink(path string) (err error) { function Unlinkat (line 715) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Ustat (line 730) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 740) | func write(fd int, p []byte) (n int, err error) { function readlen (line 755) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 766) | func writelen(fd int, p *byte, np int) (n int, err error) { function Dup2 (line 777) | func Dup2(oldfd int, newfd int) (err error) { function Fadvise (line 787) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 797) | func Fchown(fd int, uid int, gid int) (err error) { function fstat (line 807) | func fstat(fd int, stat *Stat_t) (err error) { function fstatat (line 817) | func fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 832) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 842) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 852) | func Getegid() (egid int) { function Geteuid (line 860) | func Geteuid() (euid int) { function Getgid (line 868) | func Getgid() (gid int) { function Getuid (line 876) | func Getuid() (uid int) { function Lchown (line 884) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 899) | func Listen(s int, n int) (err error) { function lstat (line 909) | func lstat(path string, stat *Stat_t) (err error) { function Pause (line 924) | func Pause() (err error) { function Pread (line 934) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 949) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Select (line 964) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Pselect (line 975) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s... function Setregid (line 986) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 996) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1006) | func Shutdown(fd int, how int) (err error) { function Splice (line 1016) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function stat (line 1027) | func stat(path string, statptr *Stat_t) (err error) { function Statfs (line 1042) | func Statfs(path string, buf *Statfs_t) (err error) { function Truncate (line 1057) | func Truncate(path string, length int64) (err error) { function bind (line 1072) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1082) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1092) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1103) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1113) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1123) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1133) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1144) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1154) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1164) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1174) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1189) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1203) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1214) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function munmap (line 1225) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1235) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1249) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1263) | func Mlock(b []byte) (err error) { function Mlockall (line 1277) | func Mlockall(flags int) (err error) { function Msync (line 1287) | func Msync(b []byte, flags int) (err error) { function Munlock (line 1301) | func Munlock(b []byte) (err error) { function Munlockall (line 1315) | func Munlockall() (err error) { function pipe (line 1325) | func pipe(p *[2]_C_int) (err error) { function poll (line 1335) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function gettimeofday (line 1346) | func gettimeofday(tv *Timeval, tzp *Timezone) (err error) { function Time (line 1356) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 1367) | func Utime(path string, buf *Utimbuf) (err error) { function Getsystemcfg (line 1382) | func Getsystemcfg(label int) (n uint64) { function umount (line 1390) | func umount(target string) (err error) { function Getrlimit (line 1405) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 1415) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Seek (line 1425) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function mmap (line 1436) | 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_amd64.1_13.go function closedir (line 18) | func closedir(dir uintptr) (err error) { function readdir_r (line 32) | func readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go function getgroups (line 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 33) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 47) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 62) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 77) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 91) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 105) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 120) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 134) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 148) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 162) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 176) | func Shutdown(s int, how int) (err error) { function socketpair (line 190) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 204) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 225) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 245) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 260) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 275) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 290) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 309) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 323) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 338) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 358) | func Mlock(b []byte) (err error) { function Mlockall (line 378) | func Mlockall(flags int) (err error) { function Mprotect (line 392) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 412) | func Msync(b []byte, flags int) (err error) { function Munlock (line 432) | func Munlock(b []byte) (err error) { function Munlockall (line 452) | func Munlockall() (err error) { function pipe (line 466) | func pipe(p *[2]int32) (err error) { function getxattr (line 480) | func getxattr(path string, attr string, dest *byte, size int, position u... function fgetxattr (line 505) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3... function setxattr (line 525) | func setxattr(path string, attr string, data *byte, size int, position u... function fsetxattr (line 549) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3... function removexattr (line 568) | func removexattr(path string, attr string, options int) (err error) { function fremovexattr (line 592) | func fremovexattr(fd int, attr string, options int) (err error) { function listxattr (line 611) | func listxattr(path string, dest *byte, size int, options int) (sz int, ... function flistxattr (line 631) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ... function setattrlist (line 646) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si... function fcntl (line 660) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function kill (line 675) | func kill(pid int, signum int, posix int) (err error) { function ioctl (line 689) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 703) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function sendfile (line 723) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe... function Access (line 737) | func Access(path string, mode uint32) (err error) { function Adjtime (line 756) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 770) | func Chdir(path string) (err error) { function Chflags (line 789) | func Chflags(path string, flags int) (err error) { function Chmod (line 808) | func Chmod(path string, mode uint32) (err error) { function Chown (line 827) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 846) | func Chroot(path string) (err error) { function ClockGettime (line 865) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 879) | func Close(fd int) (err error) { function Clonefile (line 893) | func Clonefile(src string, dst string, flags int) (err error) { function Clonefileat (line 917) | func Clonefileat(srcDirfd int, src string, dstDirfd int, dst string, fla... function Dup (line 941) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 956) | func Dup2(from int, to int) (err error) { function Exchangedata (line 970) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 994) | func Exit(code int) { function Faccessat (line 1005) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 1024) | func Fchdir(fd int) (err error) { function Fchflags (line 1038) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 1052) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 1066) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 1085) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 1099) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fclonefileat (line 1118) | func Fclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (er... function Flock (line 1137) | func Flock(fd int, how int) (err error) { function Fpathconf (line 1151) | func Fpathconf(fd int, name int) (val int, err error) { function Fsync (line 1166) | func Fsync(fd int) (err error) { function Ftruncate (line 1180) | func Ftruncate(fd int, length int64) (err error) { function Getcwd (line 1194) | func Getcwd(buf []byte) (n int, err error) { function Getdtablesize (line 1215) | func Getdtablesize() (size int) { function Getegid (line 1227) | func Getegid() (egid int) { function Geteuid (line 1239) | func Geteuid() (uid int) { function Getgid (line 1251) | func Getgid() (gid int) { function Getpgid (line 1263) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1278) | func Getpgrp() (pgrp int) { function Getpid (line 1290) | func Getpid() (pid int) { function Getppid (line 1302) | func Getppid() (ppid int) { function Getpriority (line 1314) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1329) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1343) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1357) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1372) | func Gettimeofday(tp *Timeval) (err error) { function Getuid (line 1386) | func Getuid() (uid int) { function Issetugid (line 1398) | func Issetugid() (tainted bool) { function Kqueue (line 1410) | func Kqueue() (fd int, err error) { function Lchown (line 1425) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1444) | func Link(path string, link string) (err error) { function Linkat (line 1468) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1492) | func Listen(s int, backlog int) (err error) { function Mkdir (line 1506) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1525) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1544) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1563) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 1582) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1602) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1622) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1642) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1663) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1684) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1705) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1731) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1757) | func Rename(from string, to string) (err error) { function Renameat (line 1781) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1805) | func Revoke(path string) (err error) { function Rmdir (line 1824) | func Rmdir(path string) (err error) { function Seek (line 1843) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1858) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1873) | func Setegid(egid int) (err error) { function Seteuid (line 1887) | func Seteuid(euid int) (err error) { function Setgid (line 1901) | func Setgid(gid int) (err error) { function Setlogin (line 1915) | func Setlogin(name string) (err error) { function Setpgid (line 1934) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1948) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1962) | func Setprivexec(flag int) (err error) { function Setregid (line 1976) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1990) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 2004) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 2018) | func Setsid() (pid int, err error) { function Settimeofday (line 2033) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 2047) | func Setuid(uid int) (err error) { function Symlink (line 2061) | func Symlink(path string, link string) (err error) { function Symlinkat (line 2085) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 2109) | func Sync() (err error) { function Truncate (line 2123) | func Truncate(path string, length int64) (err error) { function Umask (line 2142) | func Umask(newmask int) (oldmask int) { function Undelete (line 2154) | func Undelete(path string) (err error) { function Unlink (line 2173) | func Unlink(path string) (err error) { function Unlinkat (line 2192) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 2211) | func Unmount(path string, flags int) (err error) { function write (line 2230) | func write(fd int, p []byte) (n int, err error) { function mmap (line 2251) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 2266) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 2280) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 2291) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function Fstat (line 2302) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 2316) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 2335) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function getfsstat (line 2349) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ... function Lstat (line 2364) | func Lstat(path string, stat *Stat_t) (err error) { function ptrace1 (line 2383) | func ptrace1(request int, pid int, addr uintptr, data uintptr) (err erro... function Stat (line 2397) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 2416) | func Statfs(path string, stat *Statfs_t) (err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.1_13.go function closedir (line 18) | func closedir(dir uintptr) (err error) { function readdir_r (line 32) | func readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go function getgroups (line 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 33) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 47) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 62) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 77) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 91) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 105) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 120) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 134) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 148) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 162) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 176) | func Shutdown(s int, how int) (err error) { function socketpair (line 190) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 204) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 225) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 245) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 260) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 275) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 290) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 309) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 323) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 338) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 358) | func Mlock(b []byte) (err error) { function Mlockall (line 378) | func Mlockall(flags int) (err error) { function Mprotect (line 392) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 412) | func Msync(b []byte, flags int) (err error) { function Munlock (line 432) | func Munlock(b []byte) (err error) { function Munlockall (line 452) | func Munlockall() (err error) { function pipe (line 466) | func pipe(p *[2]int32) (err error) { function getxattr (line 480) | func getxattr(path string, attr string, dest *byte, size int, position u... function fgetxattr (line 505) | func fgetxattr(fd int, attr string, dest *byte, size int, position uint3... function setxattr (line 525) | func setxattr(path string, attr string, data *byte, size int, position u... function fsetxattr (line 549) | func fsetxattr(fd int, attr string, data *byte, size int, position uint3... function removexattr (line 568) | func removexattr(path string, attr string, options int) (err error) { function fremovexattr (line 592) | func fremovexattr(fd int, attr string, options int) (err error) { function listxattr (line 611) | func listxattr(path string, dest *byte, size int, options int) (sz int, ... function flistxattr (line 631) | func flistxattr(fd int, dest *byte, size int, options int) (sz int, err ... function setattrlist (line 646) | func setattrlist(path *byte, list unsafe.Pointer, buf unsafe.Pointer, si... function fcntl (line 660) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function kill (line 675) | func kill(pid int, signum int, posix int) (err error) { function ioctl (line 689) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 703) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function sendfile (line 723) | func sendfile(infd int, outfd int, offset int64, len *int64, hdtr unsafe... function Access (line 737) | func Access(path string, mode uint32) (err error) { function Adjtime (line 756) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 770) | func Chdir(path string) (err error) { function Chflags (line 789) | func Chflags(path string, flags int) (err error) { function Chmod (line 808) | func Chmod(path string, mode uint32) (err error) { function Chown (line 827) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 846) | func Chroot(path string) (err error) { function ClockGettime (line 865) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 879) | func Close(fd int) (err error) { function Clonefile (line 893) | func Clonefile(src string, dst string, flags int) (err error) { function Clonefileat (line 917) | func Clonefileat(srcDirfd int, src string, dstDirfd int, dst string, fla... function Dup (line 941) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 956) | func Dup2(from int, to int) (err error) { function Exchangedata (line 970) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 994) | func Exit(code int) { function Faccessat (line 1005) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 1024) | func Fchdir(fd int) (err error) { function Fchflags (line 1038) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 1052) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 1066) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 1085) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 1099) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fclonefileat (line 1118) | func Fclonefileat(srcDirfd int, dstDirfd int, dst string, flags int) (er... function Flock (line 1137) | func Flock(fd int, how int) (err error) { function Fpathconf (line 1151) | func Fpathconf(fd int, name int) (val int, err error) { function Fsync (line 1166) | func Fsync(fd int) (err error) { function Ftruncate (line 1180) | func Ftruncate(fd int, length int64) (err error) { function Getcwd (line 1194) | func Getcwd(buf []byte) (n int, err error) { function Getdtablesize (line 1215) | func Getdtablesize() (size int) { function Getegid (line 1227) | func Getegid() (egid int) { function Geteuid (line 1239) | func Geteuid() (uid int) { function Getgid (line 1251) | func Getgid() (gid int) { function Getpgid (line 1263) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1278) | func Getpgrp() (pgrp int) { function Getpid (line 1290) | func Getpid() (pid int) { function Getppid (line 1302) | func Getppid() (ppid int) { function Getpriority (line 1314) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1329) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1343) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1357) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1372) | func Gettimeofday(tp *Timeval) (err error) { function Getuid (line 1386) | func Getuid() (uid int) { function Issetugid (line 1398) | func Issetugid() (tainted bool) { function Kqueue (line 1410) | func Kqueue() (fd int, err error) { function Lchown (line 1425) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1444) | func Link(path string, link string) (err error) { function Linkat (line 1468) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1492) | func Listen(s int, backlog int) (err error) { function Mkdir (line 1506) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1525) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1544) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1563) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 1582) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1602) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1622) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1642) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1663) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1684) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1705) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1731) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1757) | func Rename(from string, to string) (err error) { function Renameat (line 1781) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1805) | func Revoke(path string) (err error) { function Rmdir (line 1824) | func Rmdir(path string) (err error) { function Seek (line 1843) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1858) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1873) | func Setegid(egid int) (err error) { function Seteuid (line 1887) | func Seteuid(euid int) (err error) { function Setgid (line 1901) | func Setgid(gid int) (err error) { function Setlogin (line 1915) | func Setlogin(name string) (err error) { function Setpgid (line 1934) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1948) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1962) | func Setprivexec(flag int) (err error) { function Setregid (line 1976) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1990) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 2004) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 2018) | func Setsid() (pid int, err error) { function Settimeofday (line 2033) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 2047) | func Setuid(uid int) (err error) { function Symlink (line 2061) | func Symlink(path string, link string) (err error) { function Symlinkat (line 2085) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 2109) | func Sync() (err error) { function Truncate (line 2123) | func Truncate(path string, length int64) (err error) { function Umask (line 2142) | func Umask(newmask int) (oldmask int) { function Undelete (line 2154) | func Undelete(path string) (err error) { function Unlink (line 2173) | func Unlink(path string) (err error) { function Unlinkat (line 2192) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 2211) | func Unmount(path string, flags int) (err error) { function write (line 2230) | func write(fd int, p []byte) (n int, err error) { function mmap (line 2251) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 2266) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 2280) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 2291) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function Fstat (line 2302) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 2316) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 2335) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function getfsstat (line 2349) | func getfsstat(buf unsafe.Pointer, size uintptr, flags int) (n int, err ... function Lstat (line 2364) | func Lstat(path string, stat *Stat_t) (err error) { function ptrace1 (line 2383) | func ptrace1(request int, pid int, addr uintptr, data uintptr) (err erro... function Stat (line 2397) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 2416) | func Statfs(path string, stat *Statfs_t) (err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go function getgroups (line 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe (line 354) | func pipe() (r int, w int, err error) { function pipe2 (line 366) | func pipe2(p *[2]_C_int, flags int) (r int, w int, err error) { function extpread (line 378) | func extpread(fd int, p []byte, flags int, offset int64) (n int, err err... function extpwrite (line 395) | func extpwrite(fd int, p []byte, flags int, offset int64) (n int, err er... function Getcwd (line 412) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 429) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 439) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function Access (line 455) | func Access(path string, mode uint32) (err error) { function Adjtime (line 470) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 480) | func Chdir(path string) (err error) { function Chflags (line 495) | func Chflags(path string, flags int) (err error) { function Chmod (line 510) | func Chmod(path string, mode uint32) (err error) { function Chown (line 525) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 540) | func Chroot(path string) (err error) { function Close (line 555) | func Close(fd int) (err error) { function Dup (line 565) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 576) | func Dup2(from int, to int) (err error) { function Exit (line 586) | func Exit(code int) { function Faccessat (line 593) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 608) | func Fchdir(fd int) (err error) { function Fchflags (line 618) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 628) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 638) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 653) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 663) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 678) | func Flock(fd int, how int) (err error) { function Fpathconf (line 688) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 699) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 709) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 724) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 734) | func Fsync(fd int) (err error) { function Ftruncate (line 744) | func Ftruncate(fd int, length int64) (err error) { function Getdents (line 754) | func Getdents(fd int, buf []byte) (n int, err error) { function Getdirentries (line 771) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 788) | func Getdtablesize() (size int) { function Getegid (line 796) | func Getegid() (egid int) { function Geteuid (line 804) | func Geteuid() (uid int) { function Getgid (line 812) | func Getgid() (gid int) { function Getpgid (line 820) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 831) | func Getpgrp() (pgrp int) { function Getpid (line 839) | func Getpid() (pid int) { function Getppid (line 847) | func Getppid() (ppid int) { function Getpriority (line 855) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 866) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 876) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 886) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 897) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 907) | func Getuid() (uid int) { function Issetugid (line 915) | func Issetugid() (tainted bool) { function Kill (line 923) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 933) | func Kqueue() (fd int, err error) { function Lchown (line 944) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 959) | func Link(path string, link string) (err error) { function Linkat (line 979) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 999) | func Listen(s int, backlog int) (err error) { function Lstat (line 1009) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1024) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1039) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1054) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1069) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 1084) | func Mknodat(fd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 1099) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1109) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1125) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1141) | func Pathconf(path string, name int) (val int, err error) { function read (line 1157) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1174) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1196) | func Rename(from string, to string) (err error) { function Renameat (line 1216) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1236) | func Revoke(path string) (err error) { function Rmdir (line 1251) | func Rmdir(path string) (err error) { function Seek (line 1266) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1277) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1288) | func Setegid(egid int) (err error) { function Seteuid (line 1298) | func Seteuid(euid int) (err error) { function Setgid (line 1308) | func Setgid(gid int) (err error) { function Setlogin (line 1318) | func Setlogin(name string) (err error) { function Setpgid (line 1333) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1343) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1353) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1363) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1373) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1383) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1393) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1403) | func Setsid() (pid int, err error) { function Settimeofday (line 1414) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1424) | func Setuid(uid int) (err error) { function Stat (line 1434) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1449) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1464) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1484) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1504) | func Sync() (err error) { function Truncate (line 1514) | func Truncate(path string, length int64) (err error) { function Umask (line 1529) | func Umask(newmask int) (oldmask int) { function Undelete (line 1537) | func Undelete(path string) (err error) { function Unlink (line 1552) | func Unlink(path string) (err error) { function Unlinkat (line 1567) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1582) | func Unmount(path string, flags int) (err error) { function write (line 1597) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1614) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1625) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1635) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1646) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1657) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 1668) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getcwd (line 364) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 381) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 391) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ptrace (line 407) | func ptrace(request int, pid int, addr uintptr, data int) (err error) { function Access (line 417) | func Access(path string, mode uint32) (err error) { function Adjtime (line 432) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 442) | func CapEnter() (err error) { function capRightsGet (line 452) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 462) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 472) | func Chdir(path string) (err error) { function Chflags (line 487) | func Chflags(path string, flags int) (err error) { function Chmod (line 502) | func Chmod(path string, mode uint32) (err error) { function Chown (line 517) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 532) | func Chroot(path string) (err error) { function Close (line 547) | func Close(fd int) (err error) { function Dup (line 557) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 568) | func Dup2(from int, to int) (err error) { function Exit (line 578) | func Exit(code int) { function ExtattrGetFd (line 585) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 601) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 617) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 632) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 643) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 664) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 685) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 705) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 721) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 742) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 763) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 783) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 799) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 809) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 824) | func Fchdir(fd int) (err error) { function Fchflags (line 834) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 844) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 854) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 869) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 879) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 894) | func Flock(fd int, how int) (err error) { function Fpathconf (line 904) | func Fpathconf(fd int, name int) (val int, err error) { function fstat (line 915) | func fstat(fd int, stat *stat_freebsd11_t) (err error) { function fstat_freebsd12 (line 925) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) { function fstatat (line 935) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er... function fstatat_freebsd12 (line 950) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er... function fstatfs (line 965) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) { function fstatfs_freebsd12 (line 975) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) { function Fsync (line 985) | func Fsync(fd int) (err error) { function Ftruncate (line 995) | func Ftruncate(fd int, length int64) (err error) { function getdirentries (line 1005) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function getdirentries_freebsd12 (line 1022) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ... function Getdtablesize (line 1039) | func Getdtablesize() (size int) { function Getegid (line 1047) | func Getegid() (egid int) { function Geteuid (line 1055) | func Geteuid() (uid int) { function Getgid (line 1063) | func Getgid() (gid int) { function Getpgid (line 1071) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1082) | func Getpgrp() (pgrp int) { function Getpid (line 1090) | func Getpid() (pid int) { function Getppid (line 1098) | func Getppid() (ppid int) { function Getpriority (line 1106) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1117) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1127) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1137) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1148) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1158) | func Getuid() (uid int) { function Issetugid (line 1166) | func Issetugid() (tainted bool) { function Kill (line 1174) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1184) | func Kqueue() (fd int, err error) { function Lchown (line 1195) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1210) | func Link(path string, link string) (err error) { function Linkat (line 1230) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1250) | func Listen(s int, backlog int) (err error) { function lstat (line 1260) | func lstat(path string, stat *stat_freebsd11_t) (err error) { function Mkdir (line 1275) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1290) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1305) | func Mkfifo(path string, mode uint32) (err error) { function mknod (line 1320) | func mknod(path string, mode uint32, dev int) (err error) { function mknodat (line 1335) | func mknodat(fd int, path string, mode uint32, dev int) (err error) { function mknodat_freebsd12 (line 1350) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er... function Nanosleep (line 1365) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1375) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1391) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1407) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1423) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1440) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1457) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1474) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1496) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1518) | func Rename(from string, to string) (err error) { function Renameat (line 1538) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1558) | func Revoke(path string) (err error) { function Rmdir (line 1573) | func Rmdir(path string) (err error) { function Seek (line 1588) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1599) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1610) | func Setegid(egid int) (err error) { function Seteuid (line 1620) | func Seteuid(euid int) (err error) { function Setgid (line 1630) | func Setgid(gid int) (err error) { function Setlogin (line 1640) | func Setlogin(name string) (err error) { function Setpgid (line 1655) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1665) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1675) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1685) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1695) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1705) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1715) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1725) | func Setsid() (pid int, err error) { function Settimeofday (line 1736) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1746) | func Setuid(uid int) (err error) { function stat (line 1756) | func stat(path string, stat *stat_freebsd11_t) (err error) { function statfs (line 1771) | func statfs(path string, stat *statfs_freebsd11_t) (err error) { function statfs_freebsd12 (line 1786) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) { function Symlink (line 1801) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1821) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1841) | func Sync() (err error) { function Truncate (line 1851) | func Truncate(path string, length int64) (err error) { function Umask (line 1866) | func Umask(newmask int) (oldmask int) { function Undelete (line 1874) | func Undelete(path string) (err error) { function Unlink (line 1889) | func Unlink(path string) (err error) { function Unlinkat (line 1904) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1919) | func Unmount(path string, flags int) (err error) { function write (line 1934) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1951) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1962) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1972) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1983) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1994) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 2005) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getcwd (line 364) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 381) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 391) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ptrace (line 407) | func ptrace(request int, pid int, addr uintptr, data int) (err error) { function Access (line 417) | func Access(path string, mode uint32) (err error) { function Adjtime (line 432) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 442) | func CapEnter() (err error) { function capRightsGet (line 452) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 462) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 472) | func Chdir(path string) (err error) { function Chflags (line 487) | func Chflags(path string, flags int) (err error) { function Chmod (line 502) | func Chmod(path string, mode uint32) (err error) { function Chown (line 517) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 532) | func Chroot(path string) (err error) { function Close (line 547) | func Close(fd int) (err error) { function Dup (line 557) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 568) | func Dup2(from int, to int) (err error) { function Exit (line 578) | func Exit(code int) { function ExtattrGetFd (line 585) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 601) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 617) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 632) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 643) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 664) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 685) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 705) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 721) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 742) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 763) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 783) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 799) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 809) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 824) | func Fchdir(fd int) (err error) { function Fchflags (line 834) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 844) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 854) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 869) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 879) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 894) | func Flock(fd int, how int) (err error) { function Fpathconf (line 904) | func Fpathconf(fd int, name int) (val int, err error) { function fstat (line 915) | func fstat(fd int, stat *stat_freebsd11_t) (err error) { function fstat_freebsd12 (line 925) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) { function fstatat (line 935) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er... function fstatat_freebsd12 (line 950) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er... function fstatfs (line 965) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) { function fstatfs_freebsd12 (line 975) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) { function Fsync (line 985) | func Fsync(fd int) (err error) { function Ftruncate (line 995) | func Ftruncate(fd int, length int64) (err error) { function getdirentries (line 1005) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function getdirentries_freebsd12 (line 1022) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ... function Getdtablesize (line 1039) | func Getdtablesize() (size int) { function Getegid (line 1047) | func Getegid() (egid int) { function Geteuid (line 1055) | func Geteuid() (uid int) { function Getgid (line 1063) | func Getgid() (gid int) { function Getpgid (line 1071) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1082) | func Getpgrp() (pgrp int) { function Getpid (line 1090) | func Getpid() (pid int) { function Getppid (line 1098) | func Getppid() (ppid int) { function Getpriority (line 1106) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1117) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1127) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1137) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1148) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1158) | func Getuid() (uid int) { function Issetugid (line 1166) | func Issetugid() (tainted bool) { function Kill (line 1174) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1184) | func Kqueue() (fd int, err error) { function Lchown (line 1195) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1210) | func Link(path string, link string) (err error) { function Linkat (line 1230) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1250) | func Listen(s int, backlog int) (err error) { function lstat (line 1260) | func lstat(path string, stat *stat_freebsd11_t) (err error) { function Mkdir (line 1275) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1290) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1305) | func Mkfifo(path string, mode uint32) (err error) { function mknod (line 1320) | func mknod(path string, mode uint32, dev int) (err error) { function mknodat (line 1335) | func mknodat(fd int, path string, mode uint32, dev int) (err error) { function mknodat_freebsd12 (line 1350) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er... function Nanosleep (line 1365) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1375) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1391) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1407) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1423) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1440) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1457) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1474) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1496) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1518) | func Rename(from string, to string) (err error) { function Renameat (line 1538) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1558) | func Revoke(path string) (err error) { function Rmdir (line 1573) | func Rmdir(path string) (err error) { function Seek (line 1588) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1599) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1610) | func Setegid(egid int) (err error) { function Seteuid (line 1620) | func Seteuid(euid int) (err error) { function Setgid (line 1630) | func Setgid(gid int) (err error) { function Setlogin (line 1640) | func Setlogin(name string) (err error) { function Setpgid (line 1655) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1665) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1675) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1685) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1695) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1705) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1715) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1725) | func Setsid() (pid int, err error) { function Settimeofday (line 1736) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1746) | func Setuid(uid int) (err error) { function stat (line 1756) | func stat(path string, stat *stat_freebsd11_t) (err error) { function statfs (line 1771) | func statfs(path string, stat *statfs_freebsd11_t) (err error) { function statfs_freebsd12 (line 1786) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) { function Symlink (line 1801) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1821) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1841) | func Sync() (err error) { function Truncate (line 1851) | func Truncate(path string, length int64) (err error) { function Umask (line 1866) | func Umask(newmask int) (oldmask int) { function Undelete (line 1874) | func Undelete(path string) (err error) { function Unlink (line 1889) | func Unlink(path string) (err error) { function Unlinkat (line 1904) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1919) | func Unmount(path string, flags int) (err error) { function write (line 1934) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1951) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1962) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1972) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1983) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1994) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 2005) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function sysctl (line 354) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function pipe2 (line 370) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getcwd (line 380) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 397) | func ioctl(fd int, req uint, arg uintptr) (err error) { function ptrace (line 407) | func ptrace(request int, pid int, addr uintptr, data int) (err error) { function Access (line 417) | func Access(path string, mode uint32) (err error) { function Adjtime (line 432) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 442) | func CapEnter() (err error) { function capRightsGet (line 452) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 462) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 472) | func Chdir(path string) (err error) { function Chflags (line 487) | func Chflags(path string, flags int) (err error) { function Chmod (line 502) | func Chmod(path string, mode uint32) (err error) { function Chown (line 517) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 532) | func Chroot(path string) (err error) { function Close (line 547) | func Close(fd int) (err error) { function Dup (line 557) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 568) | func Dup2(from int, to int) (err error) { function Exit (line 578) | func Exit(code int) { function ExtattrGetFd (line 585) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 601) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 617) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 632) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 643) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 664) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 685) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 705) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 721) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 742) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 763) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 783) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 799) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 809) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 824) | func Fchdir(fd int) (err error) { function Fchflags (line 834) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 844) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 854) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 869) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 879) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 894) | func Flock(fd int, how int) (err error) { function Fpathconf (line 904) | func Fpathconf(fd int, name int) (val int, err error) { function fstat (line 915) | func fstat(fd int, stat *stat_freebsd11_t) (err error) { function fstat_freebsd12 (line 925) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) { function fstatat (line 935) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er... function fstatat_freebsd12 (line 950) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er... function fstatfs (line 965) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) { function fstatfs_freebsd12 (line 975) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) { function Fsync (line 985) | func Fsync(fd int) (err error) { function Ftruncate (line 995) | func Ftruncate(fd int, length int64) (err error) { function getdirentries (line 1005) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function getdirentries_freebsd12 (line 1022) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ... function Getdtablesize (line 1039) | func Getdtablesize() (size int) { function Getegid (line 1047) | func Getegid() (egid int) { function Geteuid (line 1055) | func Geteuid() (uid int) { function Getgid (line 1063) | func Getgid() (gid int) { function Getpgid (line 1071) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1082) | func Getpgrp() (pgrp int) { function Getpid (line 1090) | func Getpid() (pid int) { function Getppid (line 1098) | func Getppid() (ppid int) { function Getpriority (line 1106) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1117) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1127) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1137) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1148) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1158) | func Getuid() (uid int) { function Issetugid (line 1166) | func Issetugid() (tainted bool) { function Kill (line 1174) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1184) | func Kqueue() (fd int, err error) { function Lchown (line 1195) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1210) | func Link(path string, link string) (err error) { function Linkat (line 1230) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1250) | func Listen(s int, backlog int) (err error) { function lstat (line 1260) | func lstat(path string, stat *stat_freebsd11_t) (err error) { function Mkdir (line 1275) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1290) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1305) | func Mkfifo(path string, mode uint32) (err error) { function mknod (line 1320) | func mknod(path string, mode uint32, dev int) (err error) { function mknodat (line 1335) | func mknodat(fd int, path string, mode uint32, dev int) (err error) { function mknodat_freebsd12 (line 1350) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er... function Nanosleep (line 1365) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1375) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1391) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1407) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1423) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1440) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1457) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1474) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1496) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1518) | func Rename(from string, to string) (err error) { function Renameat (line 1538) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1558) | func Revoke(path string) (err error) { function Rmdir (line 1573) | func Rmdir(path string) (err error) { function Seek (line 1588) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1599) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1610) | func Setegid(egid int) (err error) { function Seteuid (line 1620) | func Seteuid(euid int) (err error) { function Setgid (line 1630) | func Setgid(gid int) (err error) { function Setlogin (line 1640) | func Setlogin(name string) (err error) { function Setpgid (line 1655) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1665) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1675) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1685) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1695) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1705) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1715) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1725) | func Setsid() (pid int, err error) { function Settimeofday (line 1736) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1746) | func Setuid(uid int) (err error) { function stat (line 1756) | func stat(path string, stat *stat_freebsd11_t) (err error) { function statfs (line 1771) | func statfs(path string, stat *statfs_freebsd11_t) (err error) { function statfs_freebsd12 (line 1786) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) { function Symlink (line 1801) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1821) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1841) | func Sync() (err error) { function Truncate (line 1851) | func Truncate(path string, length int64) (err error) { function Umask (line 1866) | func Umask(newmask int) (oldmask int) { function Undelete (line 1874) | func Undelete(path string) (err error) { function Unlink (line 1889) | func Unlink(path string) (err error) { function Unlinkat (line 1904) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1919) | func Unmount(path string, flags int) (err error) { function write (line 1934) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1951) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1962) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1972) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1983) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1994) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 2005) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getcwd (line 364) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 381) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 391) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ptrace (line 407) | func ptrace(request int, pid int, addr uintptr, data int) (err error) { function Access (line 417) | func Access(path string, mode uint32) (err error) { function Adjtime (line 432) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function CapEnter (line 442) | func CapEnter() (err error) { function capRightsGet (line 452) | func capRightsGet(version int, fd int, rightsp *CapRights) (err error) { function capRightsLimit (line 462) | func capRightsLimit(fd int, rightsp *CapRights) (err error) { function Chdir (line 472) | func Chdir(path string) (err error) { function Chflags (line 487) | func Chflags(path string, flags int) (err error) { function Chmod (line 502) | func Chmod(path string, mode uint32) (err error) { function Chown (line 517) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 532) | func Chroot(path string) (err error) { function Close (line 547) | func Close(fd int) (err error) { function Dup (line 557) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 568) | func Dup2(from int, to int) (err error) { function Exit (line 578) | func Exit(code int) { function ExtattrGetFd (line 585) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 601) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 617) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 632) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 643) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 664) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 685) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 705) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 721) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 742) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 763) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 783) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 799) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Faccessat (line 809) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 824) | func Fchdir(fd int) (err error) { function Fchflags (line 834) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 844) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 854) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 869) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 879) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 894) | func Flock(fd int, how int) (err error) { function Fpathconf (line 904) | func Fpathconf(fd int, name int) (val int, err error) { function fstat (line 915) | func fstat(fd int, stat *stat_freebsd11_t) (err error) { function fstat_freebsd12 (line 925) | func fstat_freebsd12(fd int, stat *Stat_t) (err error) { function fstatat (line 935) | func fstatat(fd int, path string, stat *stat_freebsd11_t, flags int) (er... function fstatat_freebsd12 (line 950) | func fstatat_freebsd12(fd int, path string, stat *Stat_t, flags int) (er... function fstatfs (line 965) | func fstatfs(fd int, stat *statfs_freebsd11_t) (err error) { function fstatfs_freebsd12 (line 975) | func fstatfs_freebsd12(fd int, stat *Statfs_t) (err error) { function Fsync (line 985) | func Fsync(fd int) (err error) { function Ftruncate (line 995) | func Ftruncate(fd int, length int64) (err error) { function getdirentries (line 1005) | func getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function getdirentries_freebsd12 (line 1022) | func getdirentries_freebsd12(fd int, buf []byte, basep *uint64) (n int, ... function Getdtablesize (line 1039) | func Getdtablesize() (size int) { function Getegid (line 1047) | func Getegid() (egid int) { function Geteuid (line 1055) | func Geteuid() (uid int) { function Getgid (line 1063) | func Getgid() (gid int) { function Getpgid (line 1071) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1082) | func Getpgrp() (pgrp int) { function Getpid (line 1090) | func Getpid() (pid int) { function Getppid (line 1098) | func Getppid() (ppid int) { function Getpriority (line 1106) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1117) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1127) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1137) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1148) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1158) | func Getuid() (uid int) { function Issetugid (line 1166) | func Issetugid() (tainted bool) { function Kill (line 1174) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1184) | func Kqueue() (fd int, err error) { function Lchown (line 1195) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1210) | func Link(path string, link string) (err error) { function Linkat (line 1230) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1250) | func Listen(s int, backlog int) (err error) { function lstat (line 1260) | func lstat(path string, stat *stat_freebsd11_t) (err error) { function Mkdir (line 1275) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1290) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1305) | func Mkfifo(path string, mode uint32) (err error) { function mknod (line 1320) | func mknod(path string, mode uint32, dev int) (err error) { function mknodat (line 1335) | func mknodat(fd int, path string, mode uint32, dev int) (err error) { function mknodat_freebsd12 (line 1350) | func mknodat_freebsd12(fd int, path string, mode uint32, dev uint64) (er... function Nanosleep (line 1365) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1375) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1391) | func Openat(fdat int, path string, mode int, perm uint32) (fd int, err e... function Pathconf (line 1407) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1423) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1440) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1457) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1474) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1496) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1518) | func Rename(from string, to string) (err error) { function Renameat (line 1538) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1558) | func Revoke(path string) (err error) { function Rmdir (line 1573) | func Rmdir(path string) (err error) { function Seek (line 1588) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1599) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1610) | func Setegid(egid int) (err error) { function Seteuid (line 1620) | func Seteuid(euid int) (err error) { function Setgid (line 1630) | func Setgid(gid int) (err error) { function Setlogin (line 1640) | func Setlogin(name string) (err error) { function Setpgid (line 1655) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1665) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1675) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1685) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1695) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1705) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1715) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1725) | func Setsid() (pid int, err error) { function Settimeofday (line 1736) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1746) | func Setuid(uid int) (err error) { function stat (line 1756) | func stat(path string, stat *stat_freebsd11_t) (err error) { function statfs (line 1771) | func statfs(path string, stat *statfs_freebsd11_t) (err error) { function statfs_freebsd12 (line 1786) | func statfs_freebsd12(path string, stat *Statfs_t) (err error) { function Symlink (line 1801) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1821) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1841) | func Sync() (err error) { function Truncate (line 1851) | func Truncate(path string, length int64) (err error) { function Umask (line 1866) | func Umask(newmask int) (oldmask int) { function Undelete (line 1874) | func Undelete(path string) (err error) { function Unlink (line 1889) | func Unlink(path string) (err error) { function Unlinkat (line 1904) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1919) | func Unmount(path string, flags int) (err error) { function write (line 1934) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1951) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1962) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1972) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1983) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1994) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... function utimensat (line 2005) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go function readv (line 41) | func readv(fd int, iovs []Iovec) (n int, err error) { function preadv (line 56) | func preadv(fd int, iovs []Iovec, off int64) (n int, err error) { function writev (line 71) | func writev(fd int, iovs []Iovec) (n int, err error) { function pwritev (line 86) | func pwritev(fd int, iovs []Iovec, off int64) (n int, err error) { function accept4 (line 101) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function putmsg (line 112) | func putmsg(fd int, clptr *strbuf, dataptr *strbuf, flags int) (err erro... function getmsg (line 122) | func getmsg(fd int, clptr *strbuf, dataptr *strbuf, flags *int) (err err... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux.go function FanotifyInit (line 15) | func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) { function fchmodat (line 26) | func fchmodat(dirfd int, path string, mode uint32) (err error) { function ioctl (line 41) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Linkat (line 51) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 71) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function openat2 (line 87) | func openat2(dirfd int, path string, open_how *OpenHow, size int) (fd in... function ppoll (line 103) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 114) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 136) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 156) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimensat (line 171) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function Getcwd (line 186) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 203) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function KeyctlInt (line 214) | func KeyctlInt(cmd int, arg2 int, arg3 int, arg4 int, arg5 int) (ret int... function KeyctlBuffer (line 225) | func KeyctlBuffer(cmd int, arg2 int, buf []byte, arg5 int) (ret int, err... function keyctlJoin (line 242) | func keyctlJoin(cmd int, arg2 string) (ret int, err error) { function keyctlSearch (line 258) | func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int)... function keyctlIOV (line 279) | func keyctlIOV(cmd int, arg2 int, payload []Iovec, arg5 int) (err error) { function keyctlDH (line 295) | func keyctlDH(cmd int, arg2 *KeyctlDHParams, buf []byte) (ret int, err e... function keyctlRestrictKeyringByType (line 312) | func keyctlRestrictKeyringByType(cmd int, arg2 int, keyType string, rest... function keyctlRestrictKeyring (line 332) | func keyctlRestrictKeyring(cmd int, arg2 int) (err error) { function ptrace (line 342) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 352) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 367) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 392) | func Acct(path string) (err error) { function AddKey (line 407) | func AddKey(keyType string, description string, payload []byte, ringid i... function Adjtimex (line 434) | func Adjtimex(buf *Timex) (state int, err error) { function Capget (line 445) | func Capget(hdr *CapUserHeader, data *CapUserData) (err error) { function Capset (line 455) | func Capset(hdr *CapUserHeader, data *CapUserData) (err error) { function Chdir (line 465) | func Chdir(path string) (err error) { function Chroot (line 480) | func Chroot(path string) (err error) { function ClockGetres (line 495) | func ClockGetres(clockid int32, res *Timespec) (err error) { function ClockGettime (line 505) | func ClockGettime(clockid int32, time *Timespec) (err error) { function ClockNanosleep (line 515) | func ClockNanosleep(clockid int32, flags int, request *Timespec, remain ... function Close (line 525) | func Close(fd int) (err error) { function CloseRange (line 535) | func CloseRange(first uint, last uint, flags uint) (err error) { function CopyFileRange (line 545) | func CopyFileRange(rfd int, roff *int64, wfd int, woff *int64, len int, ... function DeleteModule (line 556) | func DeleteModule(name string, flags int) (err error) { function Dup (line 571) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 582) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate1 (line 592) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 603) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Eventfd (line 613) | func Eventfd(initval uint, flags int) (fd int, err error) { function Exit (line 624) | func Exit(code int) { function Fchdir (line 631) | func Fchdir(fd int) (err error) { function Fchmod (line 641) | func Fchmod(fd int, mode uint32) (err error) { function Fchownat (line 651) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fdatasync (line 666) | func Fdatasync(fd int) (err error) { function Fgetxattr (line 676) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) { function FinitModule (line 698) | func FinitModule(fd int, params string, flags int) (err error) { function Flistxattr (line 713) | func Flistxattr(fd int, dest []byte) (sz int, err error) { function Flock (line 730) | func Flock(fd int, how int) (err error) { function Fremovexattr (line 740) | func Fremovexattr(fd int, attr string) (err error) { function Fsetxattr (line 755) | func Fsetxattr(fd int, attr string, dest []byte, flags int) (err error) { function Fsync (line 776) | func Fsync(fd int) (err error) { function Getdents (line 786) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 803) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 814) | func Getpid() (pid int) { function Getppid (line 822) | func Getppid() (ppid int) { function Getpriority (line 830) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 841) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 858) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 868) | func Getsid(pid int) (sid int, err error) { function Gettid (line 879) | func Gettid() (tid int) { function Getxattr (line 887) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InitModule (line 914) | func InitModule(moduleImage []byte, params string) (err error) { function InotifyAddWatch (line 935) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 951) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 962) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 973) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 983) | func Klogctl(typ int, buf []byte) (n int, err error) { function Lgetxattr (line 1000) | func Lgetxattr(path string, attr string, dest []byte) (sz int, err error) { function Listxattr (line 1027) | func Listxattr(path string, dest []byte) (sz int, err error) { function Llistxattr (line 1049) | func Llistxattr(path string, dest []byte) (sz int, err error) { function Lremovexattr (line 1071) | func Lremovexattr(path string, attr string) (err error) { function Lsetxattr (line 1091) | func Lsetxattr(path string, attr string, data []byte, flags int) (err er... function MemfdCreate (line 1117) | func MemfdCreate(name string, flags int) (fd int, err error) { function Mkdirat (line 1133) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 1148) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 1163) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PerfEventOpen (line 1173) | func PerfEventOpen(attr *PerfEventAttr, pid int, cpu int, groupFd int, f... function PivotRoot (line 1184) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 1204) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 1214) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function Pselect (line 1224) | func Pselect(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timespec, s... function read (line 1235) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 1252) | func Removexattr(path string, attr string) (err error) { function Renameat2 (line 1272) | func Renameat2(olddirfd int, oldpath string, newdirfd int, newpath strin... function RequestKey (line 1292) | func RequestKey(keyType string, description string, callback string, des... function Setdomainname (line 1318) | func Setdomainname(p []byte) (err error) { function Sethostname (line 1334) | func Sethostname(p []byte) (err error) { function Setpgid (line 1350) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 1360) | func Setsid() (pid int, err error) { function Settimeofday (line 1371) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 1381) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 1391) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 1401) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function signalfd (line 1427) | func signalfd(fd int, sigmask *Sigset_t, maskSize uintptr, flags int) (n... function Statx (line 1438) | func Statx(dirfd int, path string, flags int, mask int, stat *Statx_t) (... function Sync (line 1453) | func Sync() { function Syncfs (line 1460) | func Syncfs(fd int) (err error) { function Sysinfo (line 1470) | func Sysinfo(info *Sysinfo_t) (err error) { function TimerfdCreate (line 1480) | func TimerfdCreate(clockid int, flags int) (fd int, err error) { function TimerfdGettime (line 1491) | func TimerfdGettime(fd int, currValue *ItimerSpec) (err error) { function TimerfdSettime (line 1501) | func TimerfdSettime(fd int, flags int, newValue *ItimerSpec, oldValue *I... function Tgkill (line 1511) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 1521) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1532) | func Umask(mask int) (oldmask int) { function Uname (line 1540) | func Uname(buf *Utsname) (err error) { function Unmount (line 1550) | func Unmount(target string, flags int) (err error) { function Unshare (line 1565) | func Unshare(flags int) (err error) { function write (line 1575) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1592) | func exitThread(code int) (err error) { function readlen (line 1602) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1613) | func writelen(fd int, p *byte, np int) (n int, err error) { function readv (line 1624) | func readv(fd int, iovs []Iovec) (n int, err error) { function writev (line 1641) | func writev(fd int, iovs []Iovec) (n int, err error) { function preadv (line 1658) | func preadv(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr) (n int... function pwritev (line 1675) | func pwritev(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr) (n in... function preadv2 (line 1692) | func preadv2(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr, flags... function pwritev2 (line 1709) | func pwritev2(fd int, iovs []Iovec, offs_l uintptr, offs_h uintptr, flag... function munmap (line 1726) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1736) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1752) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1768) | func Mlock(b []byte) (err error) { function Mlockall (line 1784) | func Mlockall(flags int) (err error) { function Msync (line 1794) | func Msync(b []byte, flags int) (err error) { function Munlock (line 1810) | func Munlock(b []byte) (err error) { function Munlockall (line 1826) | func Munlockall() (err error) { function faccessat (line 1836) | func faccessat(dirfd int, path string, mode uint32) (err error) { function Faccessat2 (line 1851) | func Faccessat2(dirfd int, path string, mode uint32, flags int) (err err... function nameToHandleAt (line 1866) | func nameToHandleAt(dirFD int, pathname string, fh *fileHandle, mountID ... function openByHandleAt (line 1881) | func openByHandleAt(mountFD int, fh *fileHandle, flags int) (fd int, err... function ProcessVMReadv (line 1892) | func ProcessVMReadv(pid int, localIov []Iovec, remoteIov []RemoteIovec, ... function ProcessVMWritev (line 1915) | func ProcessVMWritev(pid int, localIov []Iovec, remoteIov []RemoteIovec,... function pipe2 (line 1938) | func pipe2(p *[2]_C_int, flags int) (err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function pipe (line 49) | func pipe(p *[2]_C_int) (err error) { function dup2 (line 59) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 69) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 80) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 97) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 107) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 117) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 127) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Ftruncate (line 142) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 152) | func Getegid() (egid int) { function Geteuid (line 160) | func Geteuid() (euid int) { function Getgid (line 168) | func Getgid() (gid int) { function Getuid (line 176) | func Getuid() (uid int) { function InotifyInit (line 184) | func InotifyInit() (fd int, err error) { function Ioperm (line 195) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 205) | func Iopl(level int) (err error) { function Lchown (line 215) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 230) | func Lstat(path string, stat *Stat_t) (err error) { function Pread (line 245) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 262) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 279) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function sendfile (line 299) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 310) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 321) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 332) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 342) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 352) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 362) | func Setreuid(ruid int, euid int) (err error) { function Splice (line 372) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 383) | func Stat(path string, stat *Stat_t) (err error) { function SyncFileRange (line 398) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 408) | func Truncate(path string, length int64) (err error) { function Ustat (line 423) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function getgroups (line 433) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 444) | func setgroups(n int, list *_Gid_t) (err error) { function Select (line 454) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function mmap2 (line 465) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function Pause (line 476) | func Pause() (err error) { function getrlimit (line 486) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 496) | func setrlimit(resource int, rlim *rlimit32) (err error) { function futimesat (line 506) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 521) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 531) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 542) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 557) | func utimes(path string, times *[2]Timeval) (err error) { function poll (line 572) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 107) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 117) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 132) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 142) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 152) | func Getegid() (egid int) { function Geteuid (line 160) | func Geteuid() (euid int) { function Getgid (line 168) | func Getgid() (gid int) { function Getrlimit (line 176) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 186) | func Getuid() (uid int) { function inotifyInit (line 194) | func inotifyInit() (fd int, err error) { function Ioperm (line 205) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 215) | func Iopl(level int) (err error) { function Lchown (line 225) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 240) | func Listen(s int, n int) (err error) { function Pause (line 250) | func Pause() (err error) { function Pread (line 260) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 277) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 294) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 314) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function sendfile (line 325) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 336) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 347) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 358) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 368) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 378) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 388) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 398) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 408) | func Shutdown(fd int, how int) (err error) { function Splice (line 418) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 429) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 444) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 454) | func Truncate(path string, length int64) (err error) { function Ustat (line 469) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 479) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 490) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 501) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 511) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 521) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 532) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 542) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 552) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 562) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 573) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 583) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 593) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 603) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 620) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 636) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 647) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 658) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function futimesat (line 669) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Utime (line 684) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 699) | func utimes(path string, times *[2]Timeval) (err error) { function pipe (line 714) | func pipe(p *[2]_C_int) (err error) { function poll (line 724) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function kexecFileLoad (line 735) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function pipe (line 49) | func pipe(p *[2]_C_int) (err error) { function accept (line 59) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 70) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 81) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 91) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 101) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 112) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 122) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 132) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 142) | func socket(domain int, typ int, proto int) (fd int, err error) { function getpeername (line 153) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 163) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 173) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 190) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function socketpair (line 206) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { function recvmsg (line 216) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 227) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function dup2 (line 238) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 248) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 259) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 276) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 286) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 296) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Getegid (line 311) | func Getegid() (egid int) { function Geteuid (line 319) | func Geteuid() (euid int) { function Getgid (line 327) | func Getgid() (gid int) { function Getuid (line 335) | func Getuid() (uid int) { function InotifyInit (line 343) | func InotifyInit() (fd int, err error) { function Lchown (line 354) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 369) | func Listen(s int, n int) (err error) { function Lstat (line 379) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 394) | func Pause() (err error) { function Renameat (line 404) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function sendfile (line 424) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Select (line 435) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function setfsgid (line 446) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 457) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 468) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 478) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 488) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 498) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 508) | func Shutdown(fd int, how int) (err error) { function Splice (line 518) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 529) | func Stat(path string, stat *Stat_t) (err error) { function Ustat (line 544) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function futimesat (line 554) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 569) | func Gettimeofday(tv *Timeval) (err error) { function utimes (line 579) | func utimes(path string, times *[2]Timeval) (err error) { function Pread (line 594) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 611) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Truncate (line 628) | func Truncate(path string, length int64) (err error) { function Ftruncate (line 643) | func Ftruncate(fd int, length int64) (err error) { function mmap2 (line 653) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 664) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 674) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 684) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function armSyncFileRange (line 695) | func armSyncFileRange(fd int, flags int, off int64, n int64) (err error) { function kexecFileLoad (line 705) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function EpollWait (line 49) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 66) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 76) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 86) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 96) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 111) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 121) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 131) | func Getegid() (egid int) { function Geteuid (line 139) | func Geteuid() (euid int) { function Getgid (line 147) | func Getgid() (gid int) { function getrlimit (line 155) | func getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 165) | func Getuid() (uid int) { function Listen (line 173) | func Listen(s int, n int) (err error) { function Pread (line 183) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 200) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 217) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 237) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function sendfile (line 248) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 259) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 270) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 281) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 291) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 301) | func Setresuid(ruid int, euid int, suid int) (err error) { function setrlimit (line 311) | func setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 321) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 331) | func Shutdown(fd int, how int) (err error) { function Splice (line 341) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 352) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 367) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 377) | func Truncate(path string, length int64) (err error) { function accept (line 392) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 403) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 414) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 424) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 434) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 445) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 455) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 465) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 475) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 486) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 496) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 506) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 516) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 533) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... 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 mmap (line 571) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 582) | func Gettimeofday(tv *Timeval) (err error) { function kexecFileLoad (line 592) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Ftruncate (line 107) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 117) | func Getegid() (egid int) { function Geteuid (line 125) | func Geteuid() (euid int) { function Getgid (line 133) | func Getgid() (gid int) { function Getuid (line 141) | func Getuid() (uid int) { function Lchown (line 149) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 164) | func Listen(s int, n int) (err error) { function Pread (line 174) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 191) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 208) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Select (line 228) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 239) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 250) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 261) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 272) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 282) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 292) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 302) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 312) | func Shutdown(fd int, how int) (err error) { function Splice (line 322) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function SyncFileRange (line 333) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 343) | func Truncate(path string, length int64) (err error) { function Ustat (line 358) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 368) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 379) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 390) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 400) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 410) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 421) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 431) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 441) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 451) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 462) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 472) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 482) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 492) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 509) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 525) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 536) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function InotifyInit (line 547) | func InotifyInit() (fd int, err error) { function Ioperm (line 558) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 568) | func Iopl(level int) (err error) { function futimesat (line 578) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 593) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 603) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 614) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 629) | func utimes(path string, times *[2]Timeval) (err error) { function Lstat (line 644) | func Lstat(path string, stat *Stat_t) (err error) { function Fstat (line 659) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 669) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Stat (line 684) | func Stat(path string, stat *Stat_t) (err error) { function Pause (line 699) | func Pause() (err error) { function pipe (line 709) | func pipe() (p1 int, p2 int, err error) { function mmap2 (line 721) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 732) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 742) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 752) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Fstatfs (line 107) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 117) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 127) | func Getegid() (egid int) { function Geteuid (line 135) | func Geteuid() (euid int) { function Getgid (line 143) | func Getgid() (gid int) { function Getrlimit (line 151) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 161) | func Getuid() (uid int) { function Lchown (line 169) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 184) | func Listen(s int, n int) (err error) { function Pause (line 194) | func Pause() (err error) { function Pread (line 204) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 221) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 238) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 258) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function sendfile (line 269) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 280) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 291) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 302) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 312) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 322) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 332) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 342) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 352) | func Shutdown(fd int, how int) (err error) { function Splice (line 362) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 373) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 388) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 398) | func Truncate(path string, length int64) (err error) { function Ustat (line 413) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 423) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 434) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 445) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 455) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 465) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 476) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 486) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 496) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 506) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 517) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 527) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 537) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 547) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 564) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 580) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 591) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 602) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function futimesat (line 613) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 628) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 638) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 653) | func utimes(path string, times *[2]Timeval) (err error) { function fstat (line 668) | func fstat(fd int, st *stat_t) (err error) { function fstatat (line 678) | func fstatat(dirfd int, path string, st *stat_t, flags int) (err error) { function lstat (line 693) | func lstat(path string, st *stat_t) (err error) { function stat (line 708) | func stat(path string, st *stat_t) (err error) { function poll (line 723) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Fstatfs (line 107) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 117) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 127) | func Getegid() (egid int) { function Geteuid (line 135) | func Geteuid() (euid int) { function Getgid (line 143) | func Getgid() (gid int) { function Getrlimit (line 151) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 161) | func Getuid() (uid int) { function Lchown (line 169) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 184) | func Listen(s int, n int) (err error) { function Pause (line 194) | func Pause() (err error) { function Pread (line 204) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 221) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 238) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 258) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function sendfile (line 269) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 280) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 291) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 302) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 312) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 322) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 332) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 342) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 352) | func Shutdown(fd int, how int) (err error) { function Splice (line 362) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 373) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 388) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 398) | func Truncate(path string, length int64) (err error) { function Ustat (line 413) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 423) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 434) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 445) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 455) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 465) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 476) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 486) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 496) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 506) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 517) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 527) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 537) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 547) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 564) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 580) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 591) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 602) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function futimesat (line 613) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 628) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 638) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 653) | func utimes(path string, times *[2]Timeval) (err error) { function fstat (line 668) | func fstat(fd int, st *stat_t) (err error) { function fstatat (line 678) | func fstatat(dirfd int, path string, st *stat_t, flags int) (err error) { function lstat (line 693) | func lstat(path string, st *stat_t) (err error) { function stat (line 708) | func stat(path string, st *stat_t) (err error) { function poll (line 723) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Ftruncate (line 107) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 117) | func Getegid() (egid int) { function Geteuid (line 125) | func Geteuid() (euid int) { function Getgid (line 133) | func Getgid() (gid int) { function Getuid (line 141) | func Getuid() (uid int) { function Lchown (line 149) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 164) | func Listen(s int, n int) (err error) { function Pread (line 174) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 191) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 208) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Select (line 228) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 239) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 250) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 261) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 272) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 282) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 292) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 302) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 312) | func Shutdown(fd int, how int) (err error) { function Splice (line 322) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function SyncFileRange (line 333) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 343) | func Truncate(path string, length int64) (err error) { function Ustat (line 358) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 368) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 379) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 390) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 400) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 410) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 421) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 431) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 441) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 451) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 462) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 472) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 482) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 492) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 509) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 525) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 536) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function InotifyInit (line 547) | func InotifyInit() (fd int, err error) { function Ioperm (line 558) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 568) | func Iopl(level int) (err error) { function futimesat (line 578) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 593) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 603) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 614) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 629) | func utimes(path string, times *[2]Timeval) (err error) { function Lstat (line 644) | func Lstat(path string, stat *Stat_t) (err error) { function Fstat (line 659) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 669) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Stat (line 684) | func Stat(path string, stat *Stat_t) (err error) { function Pause (line 699) | func Pause() (err error) { function pipe (line 709) | func pipe() (p1 int, p2 int, err error) { function mmap2 (line 721) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 732) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 742) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 752) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 87) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 97) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 107) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Ftruncate (line 122) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 132) | func Getegid() (egid int) { function Geteuid (line 140) | func Geteuid() (euid int) { function Getgid (line 148) | func Getgid() (gid int) { function Getuid (line 156) | func Getuid() (uid int) { function InotifyInit (line 164) | func InotifyInit() (fd int, err error) { function Ioperm (line 175) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 185) | func Iopl(level int) (err error) { function Lchown (line 195) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 210) | func Listen(s int, n int) (err error) { function Lstat (line 220) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 235) | func Pause() (err error) { function Pread (line 245) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 262) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 279) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Select (line 299) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 310) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 321) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 332) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 343) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 353) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 363) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 373) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 383) | func Shutdown(fd int, how int) (err error) { function Splice (line 393) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 404) | func Stat(path string, stat *Stat_t) (err error) { function Truncate (line 419) | func Truncate(path string, length int64) (err error) { function Ustat (line 434) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 444) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 455) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 466) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 476) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 486) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 497) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 507) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 517) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 527) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 538) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 548) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 558) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 568) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 585) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 601) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 612) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function futimesat (line 623) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 638) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 648) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 659) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 674) | func utimes(path string, times *[2]Timeval) (err error) { function mmap2 (line 689) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 700) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 710) | func setrlimit(resource int, rlim *rlimit32) (err error) { function pipe (line 720) | func pipe(p *[2]_C_int) (err error) { function poll (line 730) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function syncFileRange2 (line 741) | func syncFileRange2(fd int, flags int, off int64, n int64) (err error) { function kexecFileLoad (line 751) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 107) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 117) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 132) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 142) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 152) | func Getegid() (egid int) { function Geteuid (line 160) | func Geteuid() (euid int) { function Getgid (line 168) | func Getgid() (gid int) { function Getrlimit (line 176) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 186) | func Getuid() (uid int) { function InotifyInit (line 194) | func InotifyInit() (fd int, err error) { function Ioperm (line 205) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 215) | func Iopl(level int) (err error) { function Lchown (line 225) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 240) | func Listen(s int, n int) (err error) { function Lstat (line 250) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 265) | func Pause() (err error) { function Pread (line 275) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 292) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 309) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 329) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 340) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 351) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 362) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 373) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 384) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 394) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 404) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 414) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 424) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 434) | func Shutdown(fd int, how int) (err error) { function Splice (line 444) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 455) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 470) | func Statfs(path string, buf *Statfs_t) (err error) { function Truncate (line 485) | func Truncate(path string, length int64) (err error) { function Ustat (line 500) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 510) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 521) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 532) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 542) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 552) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 563) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 573) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 583) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 593) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 604) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 614) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 624) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 634) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 651) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 667) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 678) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 689) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function futimesat (line 700) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 715) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 725) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 736) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 751) | func utimes(path string, times *[2]Timeval) (err error) { function pipe (line 766) | func pipe(p *[2]_C_int) (err error) { function poll (line 776) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function syncFileRange2 (line 787) | func syncFileRange2(fd int, flags int, off int64, n int64) (err error) { function kexecFileLoad (line 797) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 107) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 117) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 132) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 142) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 152) | func Getegid() (egid int) { function Geteuid (line 160) | func Geteuid() (euid int) { function Getgid (line 168) | func Getgid() (gid int) { function Getrlimit (line 176) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 186) | func Getuid() (uid int) { function InotifyInit (line 194) | func InotifyInit() (fd int, err error) { function Ioperm (line 205) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 215) | func Iopl(level int) (err error) { function Lchown (line 225) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 240) | func Listen(s int, n int) (err error) { function Lstat (line 250) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 265) | func Pause() (err error) { function Pread (line 275) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 292) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 309) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 329) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 340) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 351) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 362) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 373) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 384) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 394) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 404) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 414) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 424) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 434) | func Shutdown(fd int, how int) (err error) { function Splice (line 444) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 455) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 470) | func Statfs(path string, buf *Statfs_t) (err error) { function Truncate (line 485) | func Truncate(path string, length int64) (err error) { function Ustat (line 500) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function accept (line 510) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 521) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 532) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 542) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 552) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 563) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 573) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 583) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 593) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 604) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 614) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 624) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 634) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 651) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 667) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 678) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 689) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function futimesat (line 700) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 715) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 725) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 736) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 751) | func utimes(path string, times *[2]Timeval) (err error) { function pipe (line 766) | func pipe(p *[2]_C_int) (err error) { function poll (line 776) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function syncFileRange2 (line 787) | func syncFileRange2(fd int, flags int, off int64, n int64) (err error) { function kexecFileLoad (line 797) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function EpollWait (line 49) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 66) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 76) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 86) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 96) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 111) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 121) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 131) | func Getegid() (egid int) { function Geteuid (line 139) | func Geteuid() (euid int) { function Getgid (line 147) | func Getgid() (gid int) { function Getrlimit (line 155) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 165) | func Getuid() (uid int) { function Listen (line 173) | func Listen(s int, n int) (err error) { function Pread (line 183) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 200) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 217) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function sendfile (line 228) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 239) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 250) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 261) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 271) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 281) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 291) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 301) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 311) | func Shutdown(fd int, how int) (err error) { function Splice (line 321) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 332) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 347) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 357) | func Truncate(path string, length int64) (err error) { function accept (line 372) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 383) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 394) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 404) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 414) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 425) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 435) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 445) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 455) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 466) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 476) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 486) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 496) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 513) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 529) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 540) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 551) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 562) | func Gettimeofday(tv *Timeval) (err error) { function kexecFileLoad (line 572) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function dup2 (line 49) | func dup2(oldfd int, newfd int) (err error) { function EpollCreate (line 59) | func EpollCreate(size int) (fd int, err error) { function EpollWait (line 70) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 87) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 97) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 107) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 117) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 132) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 142) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 152) | func Getegid() (egid int) { function Geteuid (line 160) | func Geteuid() (euid int) { function Getgid (line 168) | func Getgid() (gid int) { function Getrlimit (line 176) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 186) | func Getuid() (uid int) { function InotifyInit (line 194) | func InotifyInit() (fd int, err error) { function Lchown (line 205) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 220) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 235) | func Pause() (err error) { function Pread (line 245) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 262) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 279) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 299) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 310) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 321) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 332) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 343) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 354) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 364) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 374) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 384) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 394) | func Setreuid(ruid int, euid int) (err error) { function Splice (line 404) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 415) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 430) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 445) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 455) | func Truncate(path string, length int64) (err error) { function Ustat (line 470) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function getgroups (line 480) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 491) | func setgroups(n int, list *_Gid_t) (err error) { function futimesat (line 501) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 516) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 526) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 541) | func utimes(path string, times *[2]Timeval) (err error) { function poll (line 556) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function kexecFileLoad (line 567) | func kexecFileLoad(kernelFd int, initrdFd int, cmdlineLen int, cmdline s... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go function fanotifyMark (line 18) | func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *... function Fallocate (line 28) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Tee (line 38) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function EpollWait (line 49) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 66) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function dup2 (line 76) | func dup2(oldfd int, newfd int) (err error) { function Fchown (line 86) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 96) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 106) | func Fstatat(dirfd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 121) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 131) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 141) | func Getegid() (egid int) { function Geteuid (line 149) | func Geteuid() (euid int) { function Getgid (line 157) | func Getgid() (gid int) { function Getrlimit (line 165) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 175) | func Getuid() (uid int) { function InotifyInit (line 183) | func InotifyInit() (fd int, err error) { function Lchown (line 194) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 209) | func Listen(s int, n int) (err error) { function Lstat (line 219) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 234) | func Pause() (err error) { function Pread (line 244) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 261) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Renameat (line 278) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Seek (line 298) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 309) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 320) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function setfsgid (line 331) | func setfsgid(gid int) (prev int, err error) { function setfsuid (line 342) | func setfsuid(uid int) (prev int, err error) { function Setregid (line 353) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 363) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 373) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 383) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 393) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 403) | func Shutdown(fd int, how int) (err error) { function Splice (line 413) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 424) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 439) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 454) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 464) | func Truncate(path string, length int64) (err error) { function accept (line 479) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 490) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 501) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 511) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 521) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 532) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 542) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 552) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 562) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 573) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 583) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 593) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 603) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 620) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 636) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 647) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 658) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function futimesat (line 669) | func futimesat(dirfd int, path string, times *[2]Timeval) (err error) { function Gettimeofday (line 684) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 694) | func Utime(path string, buf *Utimbuf) (err error) { function utimes (line 709) | func utimes(path string, times *[2]Timeval) (err error) { function pipe (line 724) | func pipe(p *[2]_C_int) (err error) { function poll (line 734) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe (line 354) | func pipe() (fd1 int, fd2 int, err error) { function pipe2 (line 366) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 376) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 393) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 410) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 420) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... 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 Dup3 (line 567) | func Dup3(from int, to int, flags int) (err error) { function Exit (line 577) | func Exit(code int) { function ExtattrGetFd (line 584) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 600) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 616) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 631) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 642) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 663) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 684) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 704) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 720) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 741) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 762) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 782) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Faccessat (line 798) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fadvise (line 813) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 823) | func Fchdir(fd int) (err error) { function Fchflags (line 833) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 843) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 853) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 868) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 878) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 893) | func Flock(fd int, how int) (err error) { function Fpathconf (line 903) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 914) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 924) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatvfs1 (line 939) | func Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) { function Fsync (line 949) | func Fsync(fd int) (err error) { function Ftruncate (line 959) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 969) | func Getegid() (egid int) { function Geteuid (line 977) | func Geteuid() (uid int) { function Getgid (line 985) | func Getgid() (gid int) { function Getpgid (line 993) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1004) | func Getpgrp() (pgrp int) { function Getpid (line 1012) | func Getpid() (pid int) { function Getppid (line 1020) | func Getppid() (ppid int) { function Getpriority (line 1028) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1039) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1049) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1059) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1070) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1080) | func Getuid() (uid int) { function Issetugid (line 1088) | func Issetugid() (tainted bool) { function Kill (line 1096) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1106) | func Kqueue() (fd int, err error) { function Lchown (line 1117) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1132) | func Link(path string, link string) (err error) { function Linkat (line 1152) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1172) | func Listen(s int, backlog int) (err error) { function Lstat (line 1182) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1197) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1212) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1227) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 1242) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 1257) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 1272) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 1287) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1297) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1313) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1329) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1345) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1362) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1379) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1396) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1418) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1440) | func Rename(from string, to string) (err error) { function Renameat (line 1460) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1480) | func Revoke(path string) (err error) { function Rmdir (line 1495) | func Rmdir(path string) (err error) { function Seek (line 1510) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1521) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1532) | func Setegid(egid int) (err error) { function Seteuid (line 1542) | func Seteuid(euid int) (err error) { function Setgid (line 1552) | func Setgid(gid int) (err error) { function Setpgid (line 1562) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1572) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1582) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1592) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1602) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1612) | func Setsid() (pid int, err error) { function Settimeofday (line 1623) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1633) | func Setuid(uid int) (err error) { function Stat (line 1643) | func Stat(path string, stat *Stat_t) (err error) { function Statvfs1 (line 1658) | func Statvfs1(path string, buf *Statvfs_t, flags int) (err error) { function Symlink (line 1673) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1693) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1713) | func Sync() (err error) { function Truncate (line 1723) | func Truncate(path string, length int64) (err error) { function Umask (line 1738) | func Umask(newmask int) (oldmask int) { function Unlink (line 1746) | func Unlink(path string) (err error) { function Unlinkat (line 1761) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1776) | func Unmount(path string, flags int) (err error) { function write (line 1791) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1808) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1819) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1829) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1840) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1851) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe (line 354) | func pipe() (fd1 int, fd2 int, err error) { function pipe2 (line 366) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 376) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 393) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 410) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 420) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... 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 Dup3 (line 567) | func Dup3(from int, to int, flags int) (err error) { function Exit (line 577) | func Exit(code int) { function ExtattrGetFd (line 584) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 600) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 616) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 631) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 642) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 663) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 684) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 704) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 720) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 741) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 762) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 782) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Faccessat (line 798) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fadvise (line 813) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 823) | func Fchdir(fd int) (err error) { function Fchflags (line 833) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 843) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 853) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 868) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 878) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 893) | func Flock(fd int, how int) (err error) { function Fpathconf (line 903) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 914) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 924) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatvfs1 (line 939) | func Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) { function Fsync (line 949) | func Fsync(fd int) (err error) { function Ftruncate (line 959) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 969) | func Getegid() (egid int) { function Geteuid (line 977) | func Geteuid() (uid int) { function Getgid (line 985) | func Getgid() (gid int) { function Getpgid (line 993) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1004) | func Getpgrp() (pgrp int) { function Getpid (line 1012) | func Getpid() (pid int) { function Getppid (line 1020) | func Getppid() (ppid int) { function Getpriority (line 1028) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1039) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1049) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1059) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1070) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1080) | func Getuid() (uid int) { function Issetugid (line 1088) | func Issetugid() (tainted bool) { function Kill (line 1096) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1106) | func Kqueue() (fd int, err error) { function Lchown (line 1117) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1132) | func Link(path string, link string) (err error) { function Linkat (line 1152) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1172) | func Listen(s int, backlog int) (err error) { function Lstat (line 1182) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1197) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1212) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1227) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 1242) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 1257) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 1272) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 1287) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1297) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1313) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1329) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1345) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1362) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1379) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1396) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1418) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1440) | func Rename(from string, to string) (err error) { function Renameat (line 1460) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1480) | func Revoke(path string) (err error) { function Rmdir (line 1495) | func Rmdir(path string) (err error) { function Seek (line 1510) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1521) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1532) | func Setegid(egid int) (err error) { function Seteuid (line 1542) | func Seteuid(euid int) (err error) { function Setgid (line 1552) | func Setgid(gid int) (err error) { function Setpgid (line 1562) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1572) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1582) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1592) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1602) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1612) | func Setsid() (pid int, err error) { function Settimeofday (line 1623) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1633) | func Setuid(uid int) (err error) { function Stat (line 1643) | func Stat(path string, stat *Stat_t) (err error) { function Statvfs1 (line 1658) | func Statvfs1(path string, buf *Statvfs_t, flags int) (err error) { function Symlink (line 1673) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1693) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1713) | func Sync() (err error) { function Truncate (line 1723) | func Truncate(path string, length int64) (err error) { function Umask (line 1738) | func Umask(newmask int) (oldmask int) { function Unlink (line 1746) | func Unlink(path string) (err error) { function Unlinkat (line 1761) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1776) | func Unmount(path string, flags int) (err error) { function write (line 1791) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1808) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1819) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1829) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1840) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1851) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe (line 354) | func pipe() (fd1 int, fd2 int, err error) { function pipe2 (line 366) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 376) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 393) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 410) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 420) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... 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 Dup3 (line 567) | func Dup3(from int, to int, flags int) (err error) { function Exit (line 577) | func Exit(code int) { function ExtattrGetFd (line 584) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 600) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 616) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 631) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 642) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 663) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 684) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 704) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 720) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 741) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 762) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 782) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Faccessat (line 798) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fadvise (line 813) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 823) | func Fchdir(fd int) (err error) { function Fchflags (line 833) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 843) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 853) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 868) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 878) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 893) | func Flock(fd int, how int) (err error) { function Fpathconf (line 903) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 914) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 924) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatvfs1 (line 939) | func Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) { function Fsync (line 949) | func Fsync(fd int) (err error) { function Ftruncate (line 959) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 969) | func Getegid() (egid int) { function Geteuid (line 977) | func Geteuid() (uid int) { function Getgid (line 985) | func Getgid() (gid int) { function Getpgid (line 993) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1004) | func Getpgrp() (pgrp int) { function Getpid (line 1012) | func Getpid() (pid int) { function Getppid (line 1020) | func Getppid() (ppid int) { function Getpriority (line 1028) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1039) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1049) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1059) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1070) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1080) | func Getuid() (uid int) { function Issetugid (line 1088) | func Issetugid() (tainted bool) { function Kill (line 1096) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1106) | func Kqueue() (fd int, err error) { function Lchown (line 1117) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1132) | func Link(path string, link string) (err error) { function Linkat (line 1152) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1172) | func Listen(s int, backlog int) (err error) { function Lstat (line 1182) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1197) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1212) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1227) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 1242) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 1257) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 1272) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 1287) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1297) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1313) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1329) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1345) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1362) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1379) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1396) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1418) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1440) | func Rename(from string, to string) (err error) { function Renameat (line 1460) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1480) | func Revoke(path string) (err error) { function Rmdir (line 1495) | func Rmdir(path string) (err error) { function Seek (line 1510) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1521) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1532) | func Setegid(egid int) (err error) { function Seteuid (line 1542) | func Seteuid(euid int) (err error) { function Setgid (line 1552) | func Setgid(gid int) (err error) { function Setpgid (line 1562) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1572) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1582) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1592) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1602) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1612) | func Setsid() (pid int, err error) { function Settimeofday (line 1623) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1633) | func Setuid(uid int) (err error) { function Stat (line 1643) | func Stat(path string, stat *Stat_t) (err error) { function Statvfs1 (line 1658) | func Statvfs1(path string, buf *Statvfs_t, flags int) (err error) { function Symlink (line 1673) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1693) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1713) | func Sync() (err error) { function Truncate (line 1723) | func Truncate(path string, length int64) (err error) { function Umask (line 1738) | func Umask(newmask int) (oldmask int) { function Unlink (line 1746) | func Unlink(path string) (err error) { function Unlinkat (line 1761) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1776) | func Unmount(path string, flags int) (err error) { function write (line 1791) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1808) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1819) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1829) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1840) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1851) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe (line 354) | func pipe() (fd1 int, fd2 int, err error) { function pipe2 (line 366) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 376) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 393) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 410) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 420) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... 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 Dup3 (line 567) | func Dup3(from int, to int, flags int) (err error) { function Exit (line 577) | func Exit(code int) { function ExtattrGetFd (line 584) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 600) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 616) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 631) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 642) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 663) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 684) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 704) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 720) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 741) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 762) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 782) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Faccessat (line 798) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fadvise (line 813) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 823) | func Fchdir(fd int) (err error) { function Fchflags (line 833) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 843) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 853) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 868) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 878) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Flock (line 893) | func Flock(fd int, how int) (err error) { function Fpathconf (line 903) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 914) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 924) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatvfs1 (line 939) | func Fstatvfs1(fd int, buf *Statvfs_t, flags int) (err error) { function Fsync (line 949) | func Fsync(fd int) (err error) { function Ftruncate (line 959) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 969) | func Getegid() (egid int) { function Geteuid (line 977) | func Geteuid() (uid int) { function Getgid (line 985) | func Getgid() (gid int) { function Getpgid (line 993) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 1004) | func Getpgrp() (pgrp int) { function Getpid (line 1012) | func Getpid() (pid int) { function Getppid (line 1020) | func Getppid() (ppid int) { function Getpriority (line 1028) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 1039) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1049) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 1059) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 1070) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1080) | func Getuid() (uid int) { function Issetugid (line 1088) | func Issetugid() (tainted bool) { function Kill (line 1096) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 1106) | func Kqueue() (fd int, err error) { function Lchown (line 1117) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1132) | func Link(path string, link string) (err error) { function Linkat (line 1152) | func Linkat(pathfd int, path string, linkfd int, link string, flags int)... function Listen (line 1172) | func Listen(s int, backlog int) (err error) { function Lstat (line 1182) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 1197) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1212) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1227) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 1242) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 1257) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 1272) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 1287) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1297) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1313) | func Openat(dirfd int, path string, mode int, perm uint32) (fd int, err ... function Pathconf (line 1329) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1345) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1362) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1379) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1396) | func Readlink(path string, buf []byte) (n int, err error) { function Readlinkat (line 1418) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Rename (line 1440) | func Rename(from string, to string) (err error) { function Renameat (line 1460) | func Renameat(fromfd int, from string, tofd int, to string) (err error) { function Revoke (line 1480) | func Revoke(path string) (err error) { function Rmdir (line 1495) | func Rmdir(path string) (err error) { function Seek (line 1510) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1521) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1532) | func Setegid(egid int) (err error) { function Seteuid (line 1542) | func Seteuid(euid int) (err error) { function Setgid (line 1552) | func Setgid(gid int) (err error) { function Setpgid (line 1562) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1572) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1582) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1592) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1602) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1612) | func Setsid() (pid int, err error) { function Settimeofday (line 1623) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1633) | func Setuid(uid int) (err error) { function Stat (line 1643) | func Stat(path string, stat *Stat_t) (err error) { function Statvfs1 (line 1658) | func Statvfs1(path string, buf *Statvfs_t, flags int) (err error) { function Symlink (line 1673) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1693) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1713) | func Sync() (err error) { function Truncate (line 1723) | func Truncate(path string, length int64) (err error) { function Umask (line 1738) | func Umask(newmask int) (oldmask int) { function Unlink (line 1746) | func Unlink(path string) (err error) { function Unlinkat (line 1761) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1776) | func Unmount(path string, flags int) (err error) { function write (line 1791) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1808) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1819) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1829) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1840) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1851) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 364) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 381) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 398) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 408) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ppoll (line 424) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Access (line 435) | func Access(path string, mode uint32) (err error) { function Adjtime (line 450) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 460) | func Chdir(path string) (err error) { function Chflags (line 475) | func Chflags(path string, flags int) (err error) { function Chmod (line 490) | func Chmod(path string, mode uint32) (err error) { function Chown (line 505) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 520) | func Chroot(path string) (err error) { function Close (line 535) | func Close(fd int) (err error) { function Dup (line 545) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 556) | func Dup2(from int, to int) (err error) { function Dup3 (line 566) | func Dup3(from int, to int, flags 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(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1318) | func Setegid(egid int) (err error) { function Seteuid (line 1328) | func Seteuid(euid int) (err error) { function Setgid (line 1338) | func Setgid(gid int) (err error) { function Setlogin (line 1348) | func Setlogin(name string) (err error) { function Setpgid (line 1363) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1373) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1383) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1393) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1403) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1413) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1423) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setrtable (line 1433) | func Setrtable(rtable int) (err error) { function Setsid (line 1443) | func Setsid() (pid int, err error) { function Settimeofday (line 1454) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1464) | func Setuid(uid int) (err error) { function Stat (line 1474) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1489) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1504) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1524) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1544) | func Sync() (err error) { function Truncate (line 1554) | func Truncate(path string, length int64) (err error) { function Umask (line 1569) | func Umask(newmask int) (oldmask int) { function Unlink (line 1577) | func Unlink(path string) (err error) { function Unlinkat (line 1592) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1607) | func Unmount(path string, flags int) (err error) { function write (line 1622) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1639) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1650) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1660) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1671) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1682) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 364) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 381) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 398) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 408) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ppoll (line 424) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Access (line 435) | func Access(path string, mode uint32) (err error) { function Adjtime (line 450) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 460) | func Chdir(path string) (err error) { function Chflags (line 475) | func Chflags(path string, flags int) (err error) { function Chmod (line 490) | func Chmod(path string, mode uint32) (err error) { function Chown (line 505) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 520) | func Chroot(path string) (err error) { function Close (line 535) | func Close(fd int) (err error) { function Dup (line 545) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 556) | func Dup2(from int, to int) (err error) { function Dup3 (line 566) | func Dup3(from int, to int, flags 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(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1318) | func Setegid(egid int) (err error) { function Seteuid (line 1328) | func Seteuid(euid int) (err error) { function Setgid (line 1338) | func Setgid(gid int) (err error) { function Setlogin (line 1348) | func Setlogin(name string) (err error) { function Setpgid (line 1363) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1373) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1383) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1393) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1403) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1413) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1423) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setrtable (line 1433) | func Setrtable(rtable int) (err error) { function Setsid (line 1443) | func Setsid() (pid int, err error) { function Settimeofday (line 1454) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1464) | func Setuid(uid int) (err error) { function Stat (line 1474) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1489) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1504) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1524) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1544) | func Sync() (err error) { function Truncate (line 1554) | func Truncate(path string, length int64) (err error) { function Umask (line 1569) | func Umask(newmask int) (oldmask int) { function Unlink (line 1577) | func Unlink(path string) (err error) { function Unlinkat (line 1592) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1607) | func Unmount(path string, flags int) (err error) { function write (line 1622) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1639) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1650) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1660) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1671) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1682) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 364) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 381) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 398) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 408) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ppoll (line 424) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Access (line 435) | func Access(path string, mode uint32) (err error) { function Adjtime (line 450) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 460) | func Chdir(path string) (err error) { function Chflags (line 475) | func Chflags(path string, flags int) (err error) { function Chmod (line 490) | func Chmod(path string, mode uint32) (err error) { function Chown (line 505) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 520) | func Chroot(path string) (err error) { function Close (line 535) | func Close(fd int) (err error) { function Dup (line 545) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 556) | func Dup2(from int, to int) (err error) { function Dup3 (line 566) | func Dup3(from int, to int, flags 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(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1318) | func Setegid(egid int) (err error) { function Seteuid (line 1328) | func Seteuid(euid int) (err error) { function Setgid (line 1338) | func Setgid(gid int) (err error) { function Setlogin (line 1348) | func Setlogin(name string) (err error) { function Setpgid (line 1363) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1373) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1383) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1393) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1403) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1413) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1423) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setrtable (line 1433) | func Setrtable(rtable int) (err error) { function Setsid (line 1443) | func Setsid() (pid int, err error) { function Settimeofday (line 1454) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1464) | func Setuid(uid int) (err error) { function Stat (line 1474) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1489) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1504) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1524) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1544) | func Sync() (err error) { function Truncate (line 1554) | func Truncate(path string, length int64) (err error) { function Umask (line 1569) | func Umask(newmask int) (oldmask int) { function Unlink (line 1577) | func Unlink(path string) (err error) { function Unlinkat (line 1592) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1607) | func Unmount(path string, flags int) (err error) { function write (line 1622) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1639) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1650) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1660) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1671) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1682) | 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 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 364) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 381) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 398) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 408) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ppoll (line 424) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Access (line 435) | func Access(path string, mode uint32) (err error) { function Adjtime (line 450) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 460) | func Chdir(path string) (err error) { function Chflags (line 475) | func Chflags(path string, flags int) (err error) { function Chmod (line 490) | func Chmod(path string, mode uint32) (err error) { function Chown (line 505) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 520) | func Chroot(path string) (err error) { function Close (line 535) | func Close(fd int) (err error) { function Dup (line 545) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 556) | func Dup2(from int, to int) (err error) { function Dup3 (line 566) | func Dup3(from int, to int, flags 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(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1318) | func Setegid(egid int) (err error) { function Seteuid (line 1328) | func Seteuid(euid int) (err error) { function Setgid (line 1338) | func Setgid(gid int) (err error) { function Setlogin (line 1348) | func Setlogin(name string) (err error) { function Setpgid (line 1363) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1373) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1383) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1393) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1403) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1413) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1423) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setrtable (line 1433) | func Setrtable(rtable int) (err error) { function Setsid (line 1443) | func Setsid() (pid int, err error) { function Settimeofday (line 1454) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1464) | func Setuid(uid int) (err error) { function Stat (line 1474) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1489) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1504) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1524) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1544) | func Sync() (err error) { function Truncate (line 1554) | func Truncate(path string, length int64) (err error) { function Umask (line 1569) | func Umask(newmask int) (oldmask int) { function Unlink (line 1577) | func Unlink(path string) (err error) { function Unlinkat (line 1592) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1607) | func Unmount(path string, flags int) (err error) { function write (line 1622) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1639) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1650) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1660) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1671) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1682) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go function getgroups (line 18) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 29) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 39) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 50) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 61) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 71) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 81) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 92) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 102) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 112) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 122) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 132) | func Shutdown(s int, how int) (err error) { function socketpair (line 142) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 152) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 169) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 185) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 196) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 207) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function utimes (line 218) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 233) | func futimes(fd int, timeval *[2]Timeval) (err error) { function poll (line 243) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Madvise (line 254) | func Madvise(b []byte, behav int) (err error) { function Mlock (line 270) | func Mlock(b []byte) (err error) { function Mlockall (line 286) | func Mlockall(flags int) (err error) { function Mprotect (line 296) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 312) | func Msync(b []byte, flags int) (err error) { function Munlock (line 328) | func Munlock(b []byte) (err error) { function Munlockall (line 344) | func Munlockall() (err error) { function pipe2 (line 354) | func pipe2(p *[2]_C_int, flags int) (err error) { function Getdents (line 364) | func Getdents(fd int, buf []byte) (n int, err error) { function Getcwd (line 381) | func Getcwd(buf []byte) (n int, err error) { function ioctl (line 398) | func ioctl(fd int, req uint, arg uintptr) (err error) { function sysctl (line 408) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function ppoll (line 424) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Access (line 435) | func Access(path string, mode uint32) (err error) { function Adjtime (line 450) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 460) | func Chdir(path string) (err error) { function Chflags (line 475) | func Chflags(path string, flags int) (err error) { function Chmod (line 490) | func Chmod(path string, mode uint32) (err error) { function Chown (line 505) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 520) | func Chroot(path string) (err error) { function Close (line 535) | func Close(fd int) (err error) { function Dup (line 545) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 556) | func Dup2(from int, to int) (err error) { function Dup3 (line 566) | func Dup3(from int, to int, flags 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(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1318) | func Setegid(egid int) (err error) { function Seteuid (line 1328) | func Seteuid(euid int) (err error) { function Setgid (line 1338) | func Setgid(gid int) (err error) { function Setlogin (line 1348) | func Setlogin(name string) (err error) { function Setpgid (line 1363) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1373) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1383) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1393) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1403) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1413) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1423) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setrtable (line 1433) | func Setrtable(rtable int) (err error) { function Setsid (line 1443) | func Setsid() (pid int, err error) { function Settimeofday (line 1454) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1464) | func Setuid(uid int) (err error) { function Stat (line 1474) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1489) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1504) | func Symlink(path string, link string) (err error) { function Symlinkat (line 1524) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Sync (line 1544) | func Sync() (err error) { function Truncate (line 1554) | func Truncate(path string, length int64) (err error) { function Umask (line 1569) | func Umask(newmask int) (oldmask int) { function Unlink (line 1577) | func Unlink(path string) (err error) { function Unlinkat (line 1592) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Unmount (line 1607) | func Unmount(path string, flags int) (err error) { function write (line 1622) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1639) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1650) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1660) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1671) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function utimensat (line 1682) | 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 411) | func pipe(p *[2]_C_int) (n int, err error) { function pipe2 (line 422) | func pipe2(p *[2]_C_int, flags int) (err error) { function getsockname (line 432) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Getcwd (line 442) | func Getcwd(buf []byte) (n int, err error) { function getgroups (line 457) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 468) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 478) | func wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpi... function gethostname (line 489) | func gethostname(buf []byte) (n int, err error) { function utimes (line 504) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 519) | func utimensat(fd int, path string, times *[2]Timespec, flag int) (err e... function fcntl (line 534) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function futimesat (line 545) | func futimesat(fildes int, path *byte, times *[2]Timeval) (err error) { function accept (line 555) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function recvmsg (line 566) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 577) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function acct (line 588) | func acct(path *byte) (err error) { function __makedev (line 598) | func __makedev(version int, major uint, minor uint) (val uint64) { function __major (line 606) | func __major(version int, dev uint64) (val uint) { function __minor (line 614) | func __minor(version int, dev uint64) (val uint) { function ioctlRet (line 622) | func ioctlRet(fd int, req uint, arg uintptr) (ret int, err error) { function poll (line 633) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { function Access (line 644) | func Access(path string, mode uint32) (err error) { function Adjtime (line 659) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 669) | func Chdir(path string) (err error) { function Chmod (line 684) | func Chmod(path string, mode uint32) (err error) { function Chown (line 699) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 714) | func Chroot(path string) (err error) { function Close (line 729) | func Close(fd int) (err error) { function Creat (line 739) | func Creat(path string, mode uint32) (fd int, err error) { function Dup (line 755) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 766) | func Dup2(oldfd int, newfd int) (err error) { function Exit (line 776) | func Exit(code int) { function Faccessat (line 783) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fchdir (line 798) | func Fchdir(fd int) (err error) { function Fchmod (line 808) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 818) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 833) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 843) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fdatasync (line 858) | func Fdatasync(fd int) (err error) { function Flock (line 868) | func Flock(fd int, how int) (err error) { function Fpathconf (line 878) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 889) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 899) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatvfs (line 914) | func Fstatvfs(fd int, vfsstat *Statvfs_t) (err error) { function Getdents (line 924) | func Getdents(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getgid (line 939) | func Getgid() (gid int) { function Getpid (line 947) | func Getpid() (pid int) { function Getpgid (line 955) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 966) | func Getpgrp() (pgid int, err error) { function Geteuid (line 977) | func Geteuid() (euid int) { function Getegid (line 985) | func Getegid() (egid int) { function Getppid (line 993) | func Getppid() (ppid int) { function Getpriority (line 1001) | func Getpriority(which int, who int) (n int, err error) { function Getrlimit (line 1012) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 1022) | func Getrusage(who int, rusage *Rusage) (err error) { function Gettimeofday (line 1032) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 1042) | func Getuid() (uid int) { function Kill (line 1050) | func Kill(pid int, signum syscall.Signal) (err error) { function Lchown (line 1060) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 1075) | func Link(path string, link string) (err error) { function Listen (line 1095) | func Listen(s int, backlog int) (err error) { function Lstat (line 1105) | func Lstat(path string, stat *Stat_t) (err error) { function Madvise (line 1120) | func Madvise(b []byte, advice int) (err error) { function Mkdir (line 1134) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 1149) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 1164) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 1179) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 1194) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 1209) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Mlock (line 1224) | func Mlock(b []byte) (err error) { function Mlockall (line 1238) | func Mlockall(flags int) (err error) { function Mprotect (line 1248) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 1262) | func Msync(b []byte, flags int) (err error) { function Munlock (line 1276) | func Munlock(b []byte) (err error) { function Munlockall (line 1290) | func Munlockall() (err error) { function Nanosleep (line 1300) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1310) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1326) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function Pathconf (line 1342) | func Pathconf(path string, name int) (val int, err error) { function Pause (line 1358) | func Pause() (err error) { function Pread (line 1368) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1383) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1398) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1413) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1433) | func Rename(from string, to string) (err error) { function Renameat (line 1453) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Rmdir (line 1473) | func Rmdir(path string) (err error) { function Seek (line 1488) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1499) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setegid (line 1510) | func Setegid(egid int) (err error) { function Seteuid (line 1520) | func Seteuid(euid int) (err error) { function Setgid (line 1530) | func Setgid(gid int) (err error) { function Sethostname (line 1540) | func Sethostname(p []byte) (err error) { function Setpgid (line 1554) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1564) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1574) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1584) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1594) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1604) | func Setsid() (pid int, err error) { function Setuid (line 1615) | func Setuid(uid int) (err error) { function Shutdown (line 1625) | func Shutdown(s int, how int) (err error) { function Stat (line 1635) | func Stat(path string, stat *Stat_t) (err error) { function Statvfs (line 1650) | func Statvfs(path string, vfsstat *Statvfs_t) (err error) { function Symlink (line 1665) | func Symlink(path string, link string) (err error) { function Sync (line 1685) | func Sync() (err error) { function Sysconf (line 1695) | func Sysconf(which int) (n int64, err error) { function Times (line 1706) | func Times(tms *Tms) (ticks uintptr, err error) { function Truncate (line 1717) | func Truncate(path string, length int64) (err error) { function Fsync (line 1732) | func Fsync(fd int) (err error) { function Ftruncate (line 1742) | func Ftruncate(fd int, length int64) (err error) { function Umask (line 1752) | func Umask(mask int) (oldmask int) { function Uname (line 1760) | func Uname(buf *Utsname) (err error) { function Unmount (line 1770) | func Unmount(target string, flags int) (err error) { function Unlink (line 1785) | func Unlink(path string) (err error) { function Unlinkat (line 1800) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Ustat (line 1815) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function Utime (line 1825) | func Utime(path string, buf *Utimbuf) (err error) { function bind (line 1840) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1850) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function mmap (line 1860) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1871) | func munmap(addr uintptr, length uintptr) (err error) { function sendfile (line 1881) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function sendto (line 1892) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function socket (line 1906) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1917) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function write (line 1927) | func write(fd int, p []byte) (n int, err error) { function getsockopt (line 1942) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function getpeername (line 1952) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function setsockopt (line 1962) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 1972) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... FILE: vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go function fcntl (line 15) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function read (line 26) | func read(fd int, p []byte) (n int, err error) { function readlen (line 43) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function write (line 54) | func write(fd int, p []byte) (n int, err error) { function accept (line 71) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 82) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 92) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 102) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 113) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 123) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 133) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 143) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 154) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 164) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 174) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 184) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 201) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 217) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 228) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 239) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 250) | func munmap(addr uintptr, length uintptr) (err error) { function ioctl (line 260) | func ioctl(fd int, req uint, arg uintptr) (err error) { function Access (line 270) | func Access(path string, mode uint32) (err error) { function Chdir (line 285) | func Chdir(path string) (err error) { function Chown (line 300) | func Chown(path string, uid int, gid int) (err error) { function Chmod (line 315) | func Chmod(path string, mode uint32) (err error) { function Creat (line 330) | func Creat(path string, mode uint32) (fd int, err error) { function Dup (line 346) | func Dup(oldfd int) (fd int, err error) { function Dup2 (line 357) | func Dup2(oldfd int, newfd int) (err error) { function Errno2 (line 367) | func Errno2() (er2 int) { function Err2ad (line 375) | func Err2ad() (eadd *int) { function Exit (line 383) | func Exit(code int) { function Fchdir (line 390) | func Fchdir(fd int) (err error) { function Fchmod (line 400) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 410) | func Fchown(fd int, uid int, gid int) (err error) { function FcntlInt (line 420) | func FcntlInt(fd uintptr, cmd int, arg int) (retval int, err error) { function fstat (line 431) | func fstat(fd int, stat *Stat_LE_t) (err error) { function Fstatvfs (line 441) | func Fstatvfs(fd int, stat *Statvfs_t) (err error) { function Fsync (line 451) | func Fsync(fd int) (err error) { function Ftruncate (line 461) | func Ftruncate(fd int, length int64) (err error) { function Getpagesize (line 471) | func Getpagesize() (pgsize int) { function Mprotect (line 479) | func Mprotect(b []byte, prot int) (err error) { function Msync (line 495) | func Msync(b []byte, flags int) (err error) { function Poll (line 511) | func Poll(fds []PollFd, timeout int) (n int, err error) { function Times (line 528) | func Times(tms *Tms) (ticks uintptr, err error) { function W_Getmntent (line 539) | func W_Getmntent(buff *byte, size int) (lastsys int, err error) { function W_Getmntent_A (line 550) | func W_Getmntent_A(buff *byte, size int) (lastsys int, err error) { function mount_LE (line 561) | func mount_LE(path string, filesystem string, fstype string, mtm uint32,... function unmount (line 591) | func unmount(filesystem string, mtm int) (err error) { function Chroot (line 606) | func Chroot(path string) (err error) { function Uname (line 621) | func Uname(buf *Utsname) (err error) { function Gethostname (line 631) | func Gethostname(buf []byte) (err error) { function Getegid (line 647) | func Getegid() (egid int) { function Geteuid (line 655) | func Geteuid() (uid int) { function Getgid (line 663) | func Getgid() (gid int) { function Getpid (line 671) | func Getpid() (pid int) { function Getpgid (line 679) | func Getpgid(pid int) (pgid int, err error) { function Getppid (line 690) | func Getppid() (pid int) { function Getpriority (line 698) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 709) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function getrusage (line 719) | func getrusage(who int, rusage *rusage_zos) (err error) { function Getsid (line 729) | func Getsid(pid int) (sid int, err error) { function Getuid (line 740) | func Getuid() (uid int) { function Kill (line 748) | func Kill(pid int, sig Signal) (err error) { function Lchown (line 758) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 773) | func Link(path string, link string) (err error) { function Listen (line 793) | func Listen(s int, n int) (err error) { function lstat (line 803) | func lstat(path string, stat *Stat_LE_t) (err error) { function Mkdir (line 818) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 833) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 848) | func Mknod(path string, mode uint32, dev int) (err error) { function Pread (line 863) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 880) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Readlink (line 897) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 919) | func Rename(from string, to string) (err error) { function Rmdir (line 939) | func Rmdir(path string) (err error) { function Seek (line 954) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Setpriority (line 965) | func Setpriority(which int, who int, prio int) (err error) { function Setpgid (line 975) | func Setpgid(pid int, pgid int) (err error) { function Setrlimit (line 985) | func Setrlimit(resource int, lim *Rlimit) (err error) { function Setregid (line 995) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1005) | func Setreuid(ruid int, euid int) (err error) { function Setsid (line 1015) | func Setsid() (pid int, err error) { function Setuid (line 1026) | func Setuid(uid int) (err error) { function Setgid (line 1036) | func Setgid(uid int) (err error) { function Shutdown (line 1046) | func Shutdown(fd int, how int) (err error) { function stat (line 1056) | func stat(path string, statLE *Stat_LE_t) (err error) { function Symlink (line 1071) | func Symlink(path string, link string) (err error) { function Sync (line 1091) | func Sync() { function Truncate (line 1098) | func Truncate(path string, length int64) (err error) { function Tcgetattr (line 1113) | func Tcgetattr(fildes int, termptr *Termios) (err error) { function Tcsetattr (line 1123) | func Tcsetattr(fildes int, when int, termptr *Termios) (err error) { function Umask (line 1133) | func Umask(mask int) (oldmask int) { function Unlink (line 1141) | func Unlink(path string) (err error) { function Utime (line 1156) | func Utime(path string, utim *Utimbuf) (err error) { function open (line 1171) | func open(path string, mode int, perm uint32) (fd int, err error) { function remove (line 1187) | func remove(path string) (err error) { function waitpid (line 1202) | func waitpid(pid int, wstatus *_C_int, options int) (wpid int, err error) { function gettimeofday (line 1213) | func gettimeofday(tv *timeval_zos) (err error) { function pipe (line 1223) | func pipe(p *[2]_C_int) (err error) { function utimes (line 1233) | func utimes(path string, timeval *[2]Timeval) (err error) { function Select (line 1248) | func Select(nmsgsfds int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval... FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go type mibentry (line 9) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go type mibentry (line 9) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go type mibentry (line 9) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go type mibentry (line 9) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go type mibentry (line 9) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go constant SYS_SYSCALL (line 11) | SYS_SYSCALL = 0 constant SYS_EXIT (line 12) | SYS_EXIT = 1 constant SYS_FORK (line 13) | SYS_FORK = 2 constant SYS_READ (line 14) | SYS_READ = 3 constant SYS_WRITE (line 15) | SYS_WRITE = 4 constant SYS_OPEN (line 16) | SYS_OPEN = 5 constant SYS_CLOSE (line 17) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 18) | SYS_WAIT4 = 7 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 26) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 27) | SYS_GETPID = 20 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_SIGACTION (line 47) | SYS_SIGACTION = 46 constant SYS_GETGID (line 48) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 49) | SYS_SIGPROCMASK = 48 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_SIGPENDING (line 53) | SYS_SIGPENDING = 52 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_MUNMAP (line 65) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 66) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 67) | SYS_MADVISE = 75 constant SYS_MINCORE (line 68) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 69) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 70) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 71) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 72) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 73) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 74) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 75) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 76) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 77) | SYS_DUP2 = 90 constant SYS_FCNTL (line 78) | SYS_FCNTL = 92 constant SYS_SELECT (line 79) | SYS_SELECT = 93 constant SYS_FSYNC (line 80) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 81) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 82) | SYS_SOCKET = 97 constant SYS_CONNECT (line 83) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 84) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 85) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 86) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 87) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 88) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 89) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 90) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 91) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 92) | SYS_READV = 120 constant SYS_WRITEV (line 93) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 94) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 95) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 96) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 97) | SYS_SETREUID = 126 constant SYS_SETREGID (line 98) | SYS_SETREGID = 127 constant SYS_RENAME (line 99) | SYS_RENAME = 128 constant SYS_FLOCK (line 100) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 101) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 102) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 103) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 104) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 105) | SYS_MKDIR = 136 constant SYS_RMDIR (line 106) | SYS_RMDIR = 137 constant SYS_UTIMES (line 107) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 108) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 110) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_GETPGID (line 112) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 113) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 114) | SYS_PREAD = 153 constant SYS_PWRITE (line 115) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 116) | SYS_NFSSVC = 155 constant SYS_STATFS (line 117) | SYS_STATFS = 157 constant SYS_FSTATFS (line 118) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 119) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 120) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 121) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 122) | SYS_MOUNT = 167 constant SYS_CSOPS (line 123) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 124) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 125) | SYS_WAITID = 173 constant SYS_KDEBUG_TYPEFILTER (line 126) | SYS_KDEBUG_TYPEFILTER = 177 constant SYS_KDEBUG_TRACE_STRING (line 127) | SYS_KDEBUG_TRACE_STRING = 178 constant SYS_KDEBUG_TRACE64 (line 128) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 129) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 130) | SYS_SETGID = 181 constant SYS_SETEGID (line 131) | SYS_SETEGID = 182 constant SYS_SETEUID (line 132) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 133) | SYS_SIGRETURN = 184 constant SYS_THREAD_SELFCOUNTS (line 134) | SYS_THREAD_SELFCOUNTS = 186 constant SYS_FDATASYNC (line 135) | SYS_FDATASYNC = 187 constant SYS_STAT (line 136) | SYS_STAT = 188 constant SYS_FSTAT (line 137) | SYS_FSTAT = 189 constant SYS_LSTAT (line 138) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 139) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 140) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 141) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 142) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 143) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 144) | SYS_MMAP = 197 constant SYS_LSEEK (line 145) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 146) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 147) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 148) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 149) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 150) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 151) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 152) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 153) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 154) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 155) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 156) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 157) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 158) | SYS_DELETE = 226 constant SYS_COPYFILE (line 159) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 160) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 161) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 162) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 163) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 164) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 165) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 166) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 167) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 168) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 169) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 170) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 171) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 172) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 173) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 174) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 175) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 176) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 177) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 178) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 179) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 180) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 181) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 182) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 183) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 184) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 185) | SYS_SEMGET = 255 constant SYS_SEMOP (line 186) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 187) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 188) | SYS_MSGGET = 259 constant SYS_MSGSND (line 189) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 190) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 191) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 192) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 193) | SYS_SHMDT = 264 constant SYS_SHMGET (line 194) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 195) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 196) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 197) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 198) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 199) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 200) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 201) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 202) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 203) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 204) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 205) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 206) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 207) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 208) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 209) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 210) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 211) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 212) | SYS_SETTID = 285 constant SYS_GETTID (line 213) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 214) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 215) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 216) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 217) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 218) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 219) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 220) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 221) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 222) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 223) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 224) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 225) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 226) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 227) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 228) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 229) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 230) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 231) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 232) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 233) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 234) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 235) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 236) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 237) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 238) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 239) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 240) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 241) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 242) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 243) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 244) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 245) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 246) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 247) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 248) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 249) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 250) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 251) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 252) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 253) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 254) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 255) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 256) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 257) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 258) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 259) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 260) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 261) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 262) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 263) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 264) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 265) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 266) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 267) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 268) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 269) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 270) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 271) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 272) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 273) | SYS_AUDIT = 350 constant SYS_AUDITON (line 274) | SYS_AUDITON = 351 constant SYS_GETAUID (line 275) | SYS_GETAUID = 353 constant SYS_SETAUID (line 276) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 277) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 278) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 279) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 280) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 281) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 282) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 283) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 284) | SYS_LCHOWN = 364 constant SYS_BSDTHREAD_REGISTER (line 285) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 286) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 287) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 288) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 289) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 290) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 291) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 292) | SYS_LEDGER = 373 constant SYS_KEVENT_QOS (line 293) | SYS_KEVENT_QOS = 374 constant SYS_KEVENT_ID (line 294) | SYS_KEVENT_ID = 375 constant SYS___MAC_EXECVE (line 295) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 296) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 297) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 298) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 299) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 300) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 301) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 302) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 303) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 304) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 305) | SYS___MAC_GET_PID = 390 constant SYS_PSELECT (line 306) | SYS_PSELECT = 394 constant SYS_PSELECT_NOCANCEL (line 307) | SYS_PSELECT_NOCANCEL = 395 constant SYS_READ_NOCANCEL (line 308) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 309) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 310) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 311) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 312) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 313) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 314) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 315) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 316) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 317) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 318) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 319) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 320) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 321) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 322) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 323) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 324) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 325) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 326) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 327) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 328) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 329) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 330) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 331) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 332) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 333) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 334) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 335) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 336) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 337) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 338) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 339) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 340) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 341) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 342) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 343) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 344) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 345) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 346) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 347) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 348) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 349) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 350) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 351) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 352) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 353) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 354) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 355) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_USRCTL (line 356) | SYS_USRCTL = 445 constant SYS_PROC_RLIMIT_CONTROL (line 357) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 358) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 359) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 360) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 361) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 362) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 363) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 364) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 365) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 366) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 367) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 368) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 369) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 370) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 371) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 372) | SYS_GETATTRLISTBULK = 461 constant SYS_CLONEFILEAT (line 373) | SYS_CLONEFILEAT = 462 constant SYS_OPENAT (line 374) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 375) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 376) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 377) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 378) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 379) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 380) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 381) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 382) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 383) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 384) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 385) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 386) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 387) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 388) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 389) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 390) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 391) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 392) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 393) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 394) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 395) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 396) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 397) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 398) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAMEATX_NP (line 399) | SYS_RENAMEATX_NP = 488 constant SYS_MREMAP_ENCRYPTED (line 400) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_NETAGENT_TRIGGER (line 401) | SYS_NETAGENT_TRIGGER = 490 constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 402) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491 constant SYS_MICROSTACKSHOT (line 403) | SYS_MICROSTACKSHOT = 492 constant SYS_GRAB_PGO_DATA (line 404) | SYS_GRAB_PGO_DATA = 493 constant SYS_PERSONA (line 405) | SYS_PERSONA = 494 constant SYS_WORK_INTERVAL_CTL (line 406) | SYS_WORK_INTERVAL_CTL = 499 constant SYS_GETENTROPY (line 407) | SYS_GETENTROPY = 500 constant SYS_NECP_OPEN (line 408) | SYS_NECP_OPEN = 501 constant SYS_NECP_CLIENT_ACTION (line 409) | SYS_NECP_CLIENT_ACTION = 502 constant SYS___NEXUS_OPEN (line 410) | SYS___NEXUS_OPEN = 503 constant SYS___NEXUS_REGISTER (line 411) | SYS___NEXUS_REGISTER = 504 constant SYS___NEXUS_DEREGISTER (line 412) | SYS___NEXUS_DEREGISTER = 505 constant SYS___NEXUS_CREATE (line 413) | SYS___NEXUS_CREATE = 506 constant SYS___NEXUS_DESTROY (line 414) | SYS___NEXUS_DESTROY = 507 constant SYS___NEXUS_GET_OPT (line 415) | SYS___NEXUS_GET_OPT = 508 constant SYS___NEXUS_SET_OPT (line 416) | SYS___NEXUS_SET_OPT = 509 constant SYS___CHANNEL_OPEN (line 417) | SYS___CHANNEL_OPEN = 510 constant SYS___CHANNEL_GET_INFO (line 418) | SYS___CHANNEL_GET_INFO = 511 constant SYS___CHANNEL_SYNC (line 419) | SYS___CHANNEL_SYNC = 512 constant SYS___CHANNEL_GET_OPT (line 420) | SYS___CHANNEL_GET_OPT = 513 constant SYS___CHANNEL_SET_OPT (line 421) | SYS___CHANNEL_SET_OPT = 514 constant SYS_ULOCK_WAIT (line 422) | SYS_ULOCK_WAIT = 515 constant SYS_ULOCK_WAKE (line 423) | SYS_ULOCK_WAKE = 516 constant SYS_FCLONEFILEAT (line 424) | SYS_FCLONEFILEAT = 517 constant SYS_FS_SNAPSHOT (line 425) | SYS_FS_SNAPSHOT = 518 constant SYS_TERMINATE_WITH_PAYLOAD (line 426) | SYS_TERMINATE_WITH_PAYLOAD = 520 constant SYS_ABORT_WITH_PAYLOAD (line 427) | SYS_ABORT_WITH_PAYLOAD = 521 constant SYS_NECP_SESSION_OPEN (line 428) | SYS_NECP_SESSION_OPEN = 522 constant SYS_NECP_SESSION_ACTION (line 429) | SYS_NECP_SESSION_ACTION = 523 constant SYS_SETATTRLISTAT (line 430) | SYS_SETATTRLISTAT = 524 constant SYS_NET_QOS_GUIDELINE (line 431) | SYS_NET_QOS_GUIDELINE = 525 constant SYS_FMOUNT (line 432) | SYS_FMOUNT = 526 constant SYS_NTP_ADJTIME (line 433) | SYS_NTP_ADJTIME = 527 constant SYS_NTP_GETTIME (line 434) | SYS_NTP_GETTIME = 528 constant SYS_OS_FAULT_WITH_PAYLOAD (line 435) | SYS_OS_FAULT_WITH_PAYLOAD = 529 constant SYS_KQUEUE_WORKLOOP_CTL (line 436) | SYS_KQUEUE_WORKLOOP_CTL = 530 constant SYS___MACH_BRIDGE_REMOTE_TIME (line 437) | SYS___MACH_BRIDGE_REMOTE_TIME = 531 constant SYS_MAXSYSCALL (line 438) | SYS_MAXSYSCALL = 532 constant SYS_INVALID (line 439) | SYS_INVALID = 63 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go constant SYS_SYSCALL (line 11) | SYS_SYSCALL = 0 constant SYS_EXIT (line 12) | SYS_EXIT = 1 constant SYS_FORK (line 13) | SYS_FORK = 2 constant SYS_READ (line 14) | SYS_READ = 3 constant SYS_WRITE (line 15) | SYS_WRITE = 4 constant SYS_OPEN (line 16) | SYS_OPEN = 5 constant SYS_CLOSE (line 17) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 18) | SYS_WAIT4 = 7 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 26) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 27) | SYS_GETPID = 20 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_SIGACTION (line 47) | SYS_SIGACTION = 46 constant SYS_GETGID (line 48) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 49) | SYS_SIGPROCMASK = 48 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_SIGPENDING (line 53) | SYS_SIGPENDING = 52 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_MUNMAP (line 65) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 66) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 67) | SYS_MADVISE = 75 constant SYS_MINCORE (line 68) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 69) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 70) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 71) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 72) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 73) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 74) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 75) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 76) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 77) | SYS_DUP2 = 90 constant SYS_FCNTL (line 78) | SYS_FCNTL = 92 constant SYS_SELECT (line 79) | SYS_SELECT = 93 constant SYS_FSYNC (line 80) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 81) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 82) | SYS_SOCKET = 97 constant SYS_CONNECT (line 83) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 84) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 85) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 86) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 87) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 88) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 89) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 90) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 91) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 92) | SYS_READV = 120 constant SYS_WRITEV (line 93) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 94) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 95) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 96) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 97) | SYS_SETREUID = 126 constant SYS_SETREGID (line 98) | SYS_SETREGID = 127 constant SYS_RENAME (line 99) | SYS_RENAME = 128 constant SYS_FLOCK (line 100) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 101) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 102) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 103) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 104) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 105) | SYS_MKDIR = 136 constant SYS_RMDIR (line 106) | SYS_RMDIR = 137 constant SYS_UTIMES (line 107) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 108) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 110) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_GETPGID (line 112) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 113) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 114) | SYS_PREAD = 153 constant SYS_PWRITE (line 115) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 116) | SYS_NFSSVC = 155 constant SYS_STATFS (line 117) | SYS_STATFS = 157 constant SYS_FSTATFS (line 118) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 119) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 120) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 121) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 122) | SYS_MOUNT = 167 constant SYS_CSOPS (line 123) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 124) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 125) | SYS_WAITID = 173 constant SYS_KDEBUG_TYPEFILTER (line 126) | SYS_KDEBUG_TYPEFILTER = 177 constant SYS_KDEBUG_TRACE_STRING (line 127) | SYS_KDEBUG_TRACE_STRING = 178 constant SYS_KDEBUG_TRACE64 (line 128) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 129) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 130) | SYS_SETGID = 181 constant SYS_SETEGID (line 131) | SYS_SETEGID = 182 constant SYS_SETEUID (line 132) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 133) | SYS_SIGRETURN = 184 constant SYS_THREAD_SELFCOUNTS (line 134) | SYS_THREAD_SELFCOUNTS = 186 constant SYS_FDATASYNC (line 135) | SYS_FDATASYNC = 187 constant SYS_STAT (line 136) | SYS_STAT = 188 constant SYS_FSTAT (line 137) | SYS_FSTAT = 189 constant SYS_LSTAT (line 138) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 139) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 140) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 141) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 142) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 143) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 144) | SYS_MMAP = 197 constant SYS_LSEEK (line 145) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 146) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 147) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 148) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 149) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 150) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 151) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 152) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 153) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 154) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 155) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 156) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 157) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 158) | SYS_DELETE = 226 constant SYS_COPYFILE (line 159) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 160) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 161) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 162) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 163) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 164) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 165) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 166) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 167) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 168) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 169) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 170) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 171) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 172) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 173) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 174) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 175) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 176) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 177) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 178) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 179) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 180) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 181) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 182) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 183) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 184) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 185) | SYS_SEMGET = 255 constant SYS_SEMOP (line 186) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 187) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 188) | SYS_MSGGET = 259 constant SYS_MSGSND (line 189) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 190) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 191) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 192) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 193) | SYS_SHMDT = 264 constant SYS_SHMGET (line 194) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 195) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 196) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 197) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 198) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 199) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 200) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 201) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 202) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 203) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 204) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 205) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 206) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 207) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 208) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 209) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 210) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 211) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 212) | SYS_SETTID = 285 constant SYS_GETTID (line 213) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 214) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 215) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 216) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 217) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 218) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 219) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 220) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 221) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 222) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 223) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 224) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 225) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 226) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 227) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 228) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 229) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 230) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 231) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 232) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 233) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 234) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 235) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 236) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 237) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 238) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 239) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 240) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 241) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 242) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 243) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 244) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 245) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 246) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 247) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 248) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 249) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 250) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 251) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 252) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 253) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 254) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 255) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 256) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 257) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 258) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 259) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 260) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 261) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 262) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 263) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 264) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 265) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 266) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 267) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 268) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 269) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 270) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 271) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 272) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 273) | SYS_AUDIT = 350 constant SYS_AUDITON (line 274) | SYS_AUDITON = 351 constant SYS_GETAUID (line 275) | SYS_GETAUID = 353 constant SYS_SETAUID (line 276) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 277) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 278) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 279) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 280) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 281) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 282) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 283) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 284) | SYS_LCHOWN = 364 constant SYS_BSDTHREAD_REGISTER (line 285) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 286) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 287) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 288) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 289) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 290) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 291) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 292) | SYS_LEDGER = 373 constant SYS_KEVENT_QOS (line 293) | SYS_KEVENT_QOS = 374 constant SYS_KEVENT_ID (line 294) | SYS_KEVENT_ID = 375 constant SYS___MAC_EXECVE (line 295) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 296) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 297) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 298) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 299) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 300) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 301) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 302) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 303) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 304) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 305) | SYS___MAC_GET_PID = 390 constant SYS_PSELECT (line 306) | SYS_PSELECT = 394 constant SYS_PSELECT_NOCANCEL (line 307) | SYS_PSELECT_NOCANCEL = 395 constant SYS_READ_NOCANCEL (line 308) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 309) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 310) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 311) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 312) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 313) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 314) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 315) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 316) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 317) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 318) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 319) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 320) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 321) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 322) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 323) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 324) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 325) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 326) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 327) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 328) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 329) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 330) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 331) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 332) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 333) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 334) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 335) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 336) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 337) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 338) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 339) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 340) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 341) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 342) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 343) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 344) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 345) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 346) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 347) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 348) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 349) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 350) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 351) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 352) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 353) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 354) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 355) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_USRCTL (line 356) | SYS_USRCTL = 445 constant SYS_PROC_RLIMIT_CONTROL (line 357) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 358) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 359) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 360) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 361) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 362) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 363) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 364) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 365) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 366) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 367) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 368) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 369) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 370) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 371) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 372) | SYS_GETATTRLISTBULK = 461 constant SYS_CLONEFILEAT (line 373) | SYS_CLONEFILEAT = 462 constant SYS_OPENAT (line 374) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 375) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 376) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 377) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 378) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 379) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 380) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 381) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 382) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 383) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 384) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 385) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 386) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 387) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 388) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 389) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 390) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 391) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 392) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 393) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 394) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 395) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 396) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 397) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 398) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAMEATX_NP (line 399) | SYS_RENAMEATX_NP = 488 constant SYS_MREMAP_ENCRYPTED (line 400) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_NETAGENT_TRIGGER (line 401) | SYS_NETAGENT_TRIGGER = 490 constant SYS_STACK_SNAPSHOT_WITH_CONFIG (line 402) | SYS_STACK_SNAPSHOT_WITH_CONFIG = 491 constant SYS_MICROSTACKSHOT (line 403) | SYS_MICROSTACKSHOT = 492 constant SYS_GRAB_PGO_DATA (line 404) | SYS_GRAB_PGO_DATA = 493 constant SYS_PERSONA (line 405) | SYS_PERSONA = 494 constant SYS_WORK_INTERVAL_CTL (line 406) | SYS_WORK_INTERVAL_CTL = 499 constant SYS_GETENTROPY (line 407) | SYS_GETENTROPY = 500 constant SYS_NECP_OPEN (line 408) | SYS_NECP_OPEN = 501 constant SYS_NECP_CLIENT_ACTION (line 409) | SYS_NECP_CLIENT_ACTION = 502 constant SYS___NEXUS_OPEN (line 410) | SYS___NEXUS_OPEN = 503 constant SYS___NEXUS_REGISTER (line 411) | SYS___NEXUS_REGISTER = 504 constant SYS___NEXUS_DEREGISTER (line 412) | SYS___NEXUS_DEREGISTER = 505 constant SYS___NEXUS_CREATE (line 413) | SYS___NEXUS_CREATE = 506 constant SYS___NEXUS_DESTROY (line 414) | SYS___NEXUS_DESTROY = 507 constant SYS___NEXUS_GET_OPT (line 415) | SYS___NEXUS_GET_OPT = 508 constant SYS___NEXUS_SET_OPT (line 416) | SYS___NEXUS_SET_OPT = 509 constant SYS___CHANNEL_OPEN (line 417) | SYS___CHANNEL_OPEN = 510 constant SYS___CHANNEL_GET_INFO (line 418) | SYS___CHANNEL_GET_INFO = 511 constant SYS___CHANNEL_SYNC (line 419) | SYS___CHANNEL_SYNC = 512 constant SYS___CHANNEL_GET_OPT (line 420) | SYS___CHANNEL_GET_OPT = 513 constant SYS___CHANNEL_SET_OPT (line 421) | SYS___CHANNEL_SET_OPT = 514 constant SYS_ULOCK_WAIT (line 422) | SYS_ULOCK_WAIT = 515 constant SYS_ULOCK_WAKE (line 423) | SYS_ULOCK_WAKE = 516 constant SYS_FCLONEFILEAT (line 424) | SYS_FCLONEFILEAT = 517 constant SYS_FS_SNAPSHOT (line 425) | SYS_FS_SNAPSHOT = 518 constant SYS_TERMINATE_WITH_PAYLOAD (line 426) | SYS_TERMINATE_WITH_PAYLOAD = 520 constant SYS_ABORT_WITH_PAYLOAD (line 427) | SYS_ABORT_WITH_PAYLOAD = 521 constant SYS_NECP_SESSION_OPEN (line 428) | SYS_NECP_SESSION_OPEN = 522 constant SYS_NECP_SESSION_ACTION (line 429) | SYS_NECP_SESSION_ACTION = 523 constant SYS_SETATTRLISTAT (line 430) | SYS_SETATTRLISTAT = 524 constant SYS_NET_QOS_GUIDELINE (line 431) | SYS_NET_QOS_GUIDELINE = 525 constant SYS_FMOUNT (line 432) | SYS_FMOUNT = 526 constant SYS_NTP_ADJTIME (line 433) | SYS_NTP_ADJTIME = 527 constant SYS_NTP_GETTIME (line 434) | SYS_NTP_GETTIME = 528 constant SYS_OS_FAULT_WITH_PAYLOAD (line 435) | SYS_OS_FAULT_WITH_PAYLOAD = 529 constant SYS_MAXSYSCALL (line 436) | SYS_MAXSYSCALL = 530 constant SYS_INVALID (line 437) | 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 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 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_GETFSSTAT (line 26) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 27) | SYS_GETPID = 20 constant SYS_MOUNT (line 28) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 29) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 30) | SYS_SETUID = 23 constant SYS_GETUID (line 31) | SYS_GETUID = 24 constant SYS_GETEUID (line 32) | SYS_GETEUID = 25 constant SYS_PTRACE (line 33) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 34) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 35) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 36) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 37) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 38) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 39) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 41) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 42) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 43) | SYS_SYNC = 36 constant SYS_KILL (line 44) | SYS_KILL = 37 constant SYS_GETPPID (line 45) | SYS_GETPPID = 39 constant SYS_DUP (line 46) | SYS_DUP = 41 constant SYS_PIPE (line 47) | SYS_PIPE = 42 constant SYS_GETEGID (line 48) | SYS_GETEGID = 43 constant SYS_PROFIL (line 49) | SYS_PROFIL = 44 constant SYS_KTRACE (line 50) | SYS_KTRACE = 45 constant SYS_GETGID (line 51) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 52) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 53) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 54) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 55) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 56) | SYS_IOCTL = 54 constant SYS_REBOOT (line 57) | SYS_REBOOT = 55 constant SYS_REVOKE (line 58) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 59) | SYS_SYMLINK = 57 constant SYS_READLINK (line 60) | SYS_READLINK = 58 constant SYS_EXECVE (line 61) | SYS_EXECVE = 59 constant SYS_UMASK (line 62) | SYS_UMASK = 60 constant SYS_CHROOT (line 63) | SYS_CHROOT = 61 constant SYS_MSYNC (line 64) | SYS_MSYNC = 65 constant SYS_VFORK (line 65) | SYS_VFORK = 66 constant SYS_SBRK (line 66) | SYS_SBRK = 69 constant SYS_SSTK (line 67) | SYS_SSTK = 70 constant SYS_MUNMAP (line 68) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 69) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 70) | SYS_MADVISE = 75 constant SYS_MINCORE (line 71) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 72) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 73) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 75) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 77) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 78) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 79) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 80) | SYS_DUP2 = 90 constant SYS_FCNTL (line 81) | SYS_FCNTL = 92 constant SYS_SELECT (line 82) | SYS_SELECT = 93 constant SYS_FSYNC (line 83) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 84) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 85) | SYS_SOCKET = 97 constant SYS_CONNECT (line 86) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 87) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 88) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 89) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 90) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 91) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 92) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 93) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 94) | SYS_READV = 120 constant SYS_WRITEV (line 95) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 96) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 97) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 99) | SYS_SETREUID = 126 constant SYS_SETREGID (line 100) | SYS_SETREGID = 127 constant SYS_RENAME (line 101) | SYS_RENAME = 128 constant SYS_FLOCK (line 102) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 103) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 104) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 105) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 106) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 107) | SYS_MKDIR = 136 constant SYS_RMDIR (line 108) | SYS_RMDIR = 137 constant SYS_UTIMES (line 109) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 110) | SYS_ADJTIME = 140 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 112) | SYS_QUOTACTL = 148 constant SYS_STATFS (line 113) | SYS_STATFS = 157 constant SYS_FSTATFS (line 114) | SYS_FSTATFS = 158 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_EXTPREAD (line 118) | SYS_EXTPREAD = 173 constant SYS_EXTPWRITE (line 119) | SYS_EXTPWRITE = 174 constant SYS_NTP_ADJTIME (line 120) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 121) | SYS_SETGID = 181 constant SYS_SETEGID (line 122) | SYS_SETEGID = 182 constant SYS_SETEUID (line 123) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 124) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 125) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 126) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 127) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 128) | SYS_MMAP = 197 constant SYS_LSEEK (line 129) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 130) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 131) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 132) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 133) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 134) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 135) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 136) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 137) | SYS_GETPGID = 207 constant SYS_POLL (line 138) | SYS_POLL = 209 constant SYS___SEMCTL (line 139) | SYS___SEMCTL = 220 constant SYS_SEMGET (line 140) | SYS_SEMGET = 221 constant SYS_SEMOP (line 141) | SYS_SEMOP = 222 constant SYS_MSGCTL (line 142) | SYS_MSGCTL = 224 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_SHMCTL (line 147) | SYS_SHMCTL = 229 constant SYS_SHMDT (line 148) | SYS_SHMDT = 230 constant SYS_SHMGET (line 149) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 150) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 151) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 152) | SYS_CLOCK_GETRES = 234 constant SYS_NANOSLEEP (line 153) | SYS_NANOSLEEP = 240 constant SYS_MINHERIT (line 154) | SYS_MINHERIT = 250 constant SYS_RFORK (line 155) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 156) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 157) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 158) | SYS_LCHOWN = 254 constant SYS_LCHMOD (line 159) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 160) | SYS_LUTIMES = 276 constant SYS_EXTPREADV (line 161) | SYS_EXTPREADV = 289 constant SYS_EXTPWRITEV (line 162) | SYS_EXTPWRITEV = 290 constant SYS_FHSTATFS (line 163) | SYS_FHSTATFS = 297 constant SYS_FHOPEN (line 164) | SYS_FHOPEN = 298 constant SYS_MODNEXT (line 165) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 166) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 167) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 168) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 169) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 170) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 171) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 172) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 173) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 174) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 175) | SYS_GETSID = 310 constant SYS_SETRESUID (line 176) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 177) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 178) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 179) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 180) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 181) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 182) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 183) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 184) | SYS_LIO_LISTIO = 320 constant SYS_YIELD (line 185) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 186) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 187) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 188) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 189) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 190) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 191) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 192) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 193) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 194) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 195) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 196) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 197) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 198) | SYS_KLDSYM = 337 constant SYS_JAIL (line 199) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 200) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 201) | SYS_SIGSUSPEND = 341 constant SYS_SIGACTION (line 202) | SYS_SIGACTION = 342 constant SYS_SIGPENDING (line 203) | SYS_SIGPENDING = 343 constant SYS_SIGRETURN (line 204) | SYS_SIGRETURN = 344 constant SYS_SIGTIMEDWAIT (line 205) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 206) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 207) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 208) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 209) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 210) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 211) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 212) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 213) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 214) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 215) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 216) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 217) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 218) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 219) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 220) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 221) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 222) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 223) | SYS_KEVENT = 363 constant SYS_KENV (line 224) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 225) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 226) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 227) | SYS_SENDFILE = 393 constant SYS_VARSYM_SET (line 228) | SYS_VARSYM_SET = 450 constant SYS_VARSYM_GET (line 229) | SYS_VARSYM_GET = 451 constant SYS_VARSYM_LIST (line 230) | SYS_VARSYM_LIST = 452 constant SYS_EXEC_SYS_REGISTER (line 231) | SYS_EXEC_SYS_REGISTER = 465 constant SYS_EXEC_SYS_UNREGISTER (line 232) | SYS_EXEC_SYS_UNREGISTER = 466 constant SYS_SYS_CHECKPOINT (line 233) | SYS_SYS_CHECKPOINT = 467 constant SYS_MOUNTCTL (line 234) | SYS_MOUNTCTL = 468 constant SYS_UMTX_SLEEP (line 235) | SYS_UMTX_SLEEP = 469 constant SYS_UMTX_WAKEUP (line 236) | SYS_UMTX_WAKEUP = 470 constant SYS_JAIL_ATTACH (line 237) | SYS_JAIL_ATTACH = 471 constant SYS_SET_TLS_AREA (line 238) | SYS_SET_TLS_AREA = 472 constant SYS_GET_TLS_AREA (line 239) | SYS_GET_TLS_AREA = 473 constant SYS_CLOSEFROM (line 240) | SYS_CLOSEFROM = 474 constant SYS_STAT (line 241) | SYS_STAT = 475 constant SYS_FSTAT (line 242) | SYS_FSTAT = 476 constant SYS_LSTAT (line 243) | SYS_LSTAT = 477 constant SYS_FHSTAT (line 244) | SYS_FHSTAT = 478 constant SYS_GETDIRENTRIES (line 245) | SYS_GETDIRENTRIES = 479 constant SYS_GETDENTS (line 246) | SYS_GETDENTS = 480 constant SYS_USCHED_SET (line 247) | SYS_USCHED_SET = 481 constant SYS_EXTACCEPT (line 248) | SYS_EXTACCEPT = 482 constant SYS_EXTCONNECT (line 249) | SYS_EXTCONNECT = 483 constant SYS_MCONTROL (line 250) | SYS_MCONTROL = 485 constant SYS_VMSPACE_CREATE (line 251) | SYS_VMSPACE_CREATE = 486 constant SYS_VMSPACE_DESTROY (line 252) | SYS_VMSPACE_DESTROY = 487 constant SYS_VMSPACE_CTL (line 253) | SYS_VMSPACE_CTL = 488 constant SYS_VMSPACE_MMAP (line 254) | SYS_VMSPACE_MMAP = 489 constant SYS_VMSPACE_MUNMAP (line 255) | SYS_VMSPACE_MUNMAP = 490 constant SYS_VMSPACE_MCONTROL (line 256) | SYS_VMSPACE_MCONTROL = 491 constant SYS_VMSPACE_PREAD (line 257) | SYS_VMSPACE_PREAD = 492 constant SYS_VMSPACE_PWRITE (line 258) | SYS_VMSPACE_PWRITE = 493 constant SYS_EXTEXIT (line 259) | SYS_EXTEXIT = 494 constant SYS_LWP_CREATE (line 260) | SYS_LWP_CREATE = 495 constant SYS_LWP_GETTID (line 261) | SYS_LWP_GETTID = 496 constant SYS_LWP_KILL (line 262) | SYS_LWP_KILL = 497 constant SYS_LWP_RTPRIO (line 263) | SYS_LWP_RTPRIO = 498 constant SYS_PSELECT (line 264) | SYS_PSELECT = 499 constant SYS_STATVFS (line 265) | SYS_STATVFS = 500 constant SYS_FSTATVFS (line 266) | SYS_FSTATVFS = 501 constant SYS_FHSTATVFS (line 267) | SYS_FHSTATVFS = 502 constant SYS_GETVFSSTAT (line 268) | SYS_GETVFSSTAT = 503 constant SYS_OPENAT (line 269) | SYS_OPENAT = 504 constant SYS_FSTATAT (line 270) | SYS_FSTATAT = 505 constant SYS_FCHMODAT (line 271) | SYS_FCHMODAT = 506 constant SYS_FCHOWNAT (line 272) | SYS_FCHOWNAT = 507 constant SYS_UNLINKAT (line 273) | SYS_UNLINKAT = 508 constant SYS_FACCESSAT (line 274) | SYS_FACCESSAT = 509 constant SYS_MQ_OPEN (line 275) | SYS_MQ_OPEN = 510 constant SYS_MQ_CLOSE (line 276) | SYS_MQ_CLOSE = 511 constant SYS_MQ_UNLINK (line 277) | SYS_MQ_UNLINK = 512 constant SYS_MQ_GETATTR (line 278) | SYS_MQ_GETATTR = 513 constant SYS_MQ_SETATTR (line 279) | SYS_MQ_SETATTR = 514 constant SYS_MQ_NOTIFY (line 280) | SYS_MQ_NOTIFY = 515 constant SYS_MQ_SEND (line 281) | SYS_MQ_SEND = 516 constant SYS_MQ_RECEIVE (line 282) | SYS_MQ_RECEIVE = 517 constant SYS_MQ_TIMEDSEND (line 283) | SYS_MQ_TIMEDSEND = 518 constant SYS_MQ_TIMEDRECEIVE (line 284) | SYS_MQ_TIMEDRECEIVE = 519 constant SYS_IOPRIO_SET (line 285) | SYS_IOPRIO_SET = 520 constant SYS_IOPRIO_GET (line 286) | SYS_IOPRIO_GET = 521 constant SYS_CHROOT_KERNEL (line 287) | SYS_CHROOT_KERNEL = 522 constant SYS_RENAMEAT (line 288) | SYS_RENAMEAT = 523 constant SYS_MKDIRAT (line 289) | SYS_MKDIRAT = 524 constant SYS_MKFIFOAT (line 290) | SYS_MKFIFOAT = 525 constant SYS_MKNODAT (line 291) | SYS_MKNODAT = 526 constant SYS_READLINKAT (line 292) | SYS_READLINKAT = 527 constant SYS_SYMLINKAT (line 293) | SYS_SYMLINKAT = 528 constant SYS_SWAPOFF (line 294) | SYS_SWAPOFF = 529 constant SYS_VQUOTACTL (line 295) | SYS_VQUOTACTL = 530 constant SYS_LINKAT (line 296) | SYS_LINKAT = 531 constant SYS_EACCESS (line 297) | SYS_EACCESS = 532 constant SYS_LPATHCONF (line 298) | SYS_LPATHCONF = 533 constant SYS_VMM_GUEST_CTL (line 299) | SYS_VMM_GUEST_CTL = 534 constant SYS_VMM_GUEST_SYNC_ADDR (line 300) | SYS_VMM_GUEST_SYNC_ADDR = 535 constant SYS_PROCCTL (line 301) | SYS_PROCCTL = 536 constant SYS_CHFLAGSAT (line 302) | SYS_CHFLAGSAT = 537 constant SYS_PIPE2 (line 303) | SYS_PIPE2 = 538 constant SYS_UTIMENSAT (line 304) | SYS_UTIMENSAT = 539 constant SYS_FUTIMENS (line 305) | SYS_FUTIMENS = 540 constant SYS_ACCEPT4 (line 306) | SYS_ACCEPT4 = 541 constant SYS_LWP_SETNAME (line 307) | SYS_LWP_SETNAME = 542 constant SYS_PPOLL (line 308) | SYS_PPOLL = 543 constant SYS_LWP_SETAFFINITY (line 309) | SYS_LWP_SETAFFINITY = 544 constant SYS_LWP_GETAFFINITY (line 310) | SYS_LWP_GETAFFINITY = 545 constant SYS_LWP_CREATE2 (line 311) | SYS_LWP_CREATE2 = 546 constant SYS_GETCPUCLOCKID (line 312) | SYS_GETCPUCLOCKID = 547 constant SYS_WAIT6 (line 313) | SYS_WAIT6 = 548 constant SYS_LWP_GETNAME (line 314) | SYS_LWP_GETNAME = 549 constant SYS_GETRANDOM (line 315) | SYS_GETRANDOM = 550 constant SYS___REALPATH (line 316) | SYS___REALPATH = 551 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 17) | SYS_WAIT4 = 7 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 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_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_OVADVISE (line 67) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 68) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 69) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 70) | SYS_MADVISE = 75 constant SYS_MINCORE (line 71) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 72) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 73) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 75) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 77) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 78) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 79) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 80) | SYS_DUP2 = 90 constant SYS_FCNTL (line 81) | SYS_FCNTL = 92 constant SYS_SELECT (line 82) | SYS_SELECT = 93 constant SYS_FSYNC (line 83) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 84) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 85) | SYS_SOCKET = 97 constant SYS_CONNECT (line 86) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 87) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 88) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 89) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 90) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 91) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 92) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 93) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 94) | SYS_READV = 120 constant SYS_WRITEV (line 95) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 96) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 97) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 99) | SYS_SETREUID = 126 constant SYS_SETREGID (line 100) | SYS_SETREGID = 127 constant SYS_RENAME (line 101) | SYS_RENAME = 128 constant SYS_FLOCK (line 102) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 103) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 104) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 105) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 106) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 107) | SYS_MKDIR = 136 constant SYS_RMDIR (line 108) | SYS_RMDIR = 137 constant SYS_UTIMES (line 109) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 110) | SYS_ADJTIME = 140 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 112) | SYS_QUOTACTL = 148 constant SYS_NLM_SYSCALL (line 113) | SYS_NLM_SYSCALL = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_LGETFH (line 115) | SYS_LGETFH = 160 constant SYS_GETFH (line 116) | SYS_GETFH = 161 constant SYS_SYSARCH (line 117) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 118) | SYS_RTPRIO = 166 constant SYS_SEMSYS (line 119) | SYS_SEMSYS = 169 constant SYS_MSGSYS (line 120) | SYS_MSGSYS = 170 constant SYS_SHMSYS (line 121) | SYS_SHMSYS = 171 constant SYS_SETFIB (line 122) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 123) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 124) | SYS_SETGID = 181 constant SYS_SETEGID (line 125) | SYS_SETEGID = 182 constant SYS_SETEUID (line 126) | SYS_SETEUID = 183 constant SYS_STAT (line 127) | SYS_STAT = 188 constant SYS_FSTAT (line 128) | SYS_FSTAT = 189 constant SYS_LSTAT (line 129) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 130) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 131) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 132) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 133) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 134) | SYS_GETDIRENTRIES = 196 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_SEMGET (line 142) | SYS_SEMGET = 221 constant SYS_SEMOP (line 143) | SYS_SEMOP = 222 constant SYS_MSGGET (line 144) | SYS_MSGGET = 225 constant SYS_MSGSND (line 145) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 146) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 147) | SYS_SHMAT = 228 constant SYS_SHMDT (line 148) | SYS_SHMDT = 230 constant SYS_SHMGET (line 149) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 150) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 151) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 152) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 153) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 154) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 155) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 156) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 157) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 158) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 159) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 160) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 161) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_NANOSLEEP (line 162) | SYS_CLOCK_NANOSLEEP = 244 constant SYS_CLOCK_GETCPUCLOCKID2 (line 163) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 164) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 165) | SYS_MINHERIT = 250 constant SYS_RFORK (line 166) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 167) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 168) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 169) | SYS_LCHOWN = 254 constant SYS_AIO_READ (line 170) | SYS_AIO_READ = 255 constant SYS_AIO_WRITE (line 171) | SYS_AIO_WRITE = 256 constant SYS_LIO_LISTIO (line 172) | SYS_LIO_LISTIO = 257 constant SYS_GETDENTS (line 173) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 174) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 175) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 176) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 177) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 178) | SYS_NLSTAT = 280 constant SYS_PREADV (line 179) | SYS_PREADV = 289 constant SYS_PWRITEV (line 180) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 181) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 182) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 183) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 184) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 185) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 186) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 187) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 188) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 189) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 190) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 191) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 192) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 193) | SYS_GETSID = 310 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 195) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 196) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 197) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 198) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 199) | SYS_AIO_ERROR = 317 constant SYS_YIELD (line 200) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 201) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 202) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 203) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 204) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 205) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 206) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 207) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 208) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 209) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 210) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 211) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 212) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 213) | SYS_KLDSYM = 337 constant SYS_JAIL (line 214) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 215) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 216) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 217) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 218) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 219) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 220) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 221) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 222) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 223) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 224) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 225) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 226) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 227) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 228) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 229) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 230) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 231) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 232) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 233) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 234) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 235) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 236) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 237) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 238) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 239) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 240) | SYS___SETUGID = 374 constant SYS_EACCESS (line 241) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 242) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 243) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 244) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 245) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 246) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 247) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 248) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 249) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 250) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 251) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 252) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 253) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 254) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 255) | SYS_STATFS = 396 constant SYS_FSTATFS (line 256) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 257) | SYS_FHSTATFS = 398 constant SYS_KSEM_CLOSE (line 258) | SYS_KSEM_CLOSE = 400 constant SYS_KSEM_POST (line 259) | SYS_KSEM_POST = 401 constant SYS_KSEM_WAIT (line 260) | SYS_KSEM_WAIT = 402 constant SYS_KSEM_TRYWAIT (line 261) | SYS_KSEM_TRYWAIT = 403 constant SYS_KSEM_INIT (line 262) | SYS_KSEM_INIT = 404 constant SYS_KSEM_OPEN (line 263) | SYS_KSEM_OPEN = 405 constant SYS_KSEM_UNLINK (line 264) | SYS_KSEM_UNLINK = 406 constant SYS_KSEM_GETVALUE (line 265) | SYS_KSEM_GETVALUE = 407 constant SYS_KSEM_DESTROY (line 266) | SYS_KSEM_DESTROY = 408 constant SYS___MAC_GET_PID (line 267) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 268) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 269) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 270) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 271) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 272) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 273) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 274) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 275) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 276) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 277) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 278) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 279) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 280) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 281) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 282) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 283) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 284) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 285) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 286) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 287) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 288) | SYS_THR_KILL = 433 constant SYS_JAIL_ATTACH (line 289) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 290) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 291) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 292) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_KSEM_TIMEDWAIT (line 293) | SYS_KSEM_TIMEDWAIT = 441 constant SYS_THR_SUSPEND (line 294) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 295) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 296) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 297) | SYS_AUDIT = 445 constant SYS_AUDITON (line 298) | SYS_AUDITON = 446 constant SYS_GETAUID (line 299) | SYS_GETAUID = 447 constant SYS_SETAUID (line 300) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 301) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 302) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 303) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 304) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 305) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 306) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 307) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 308) | SYS_SIGQUEUE = 456 constant SYS_KMQ_OPEN (line 309) | SYS_KMQ_OPEN = 457 constant SYS_KMQ_SETATTR (line 310) | SYS_KMQ_SETATTR = 458 constant SYS_KMQ_TIMEDRECEIVE (line 311) | SYS_KMQ_TIMEDRECEIVE = 459 constant SYS_KMQ_TIMEDSEND (line 312) | SYS_KMQ_TIMEDSEND = 460 constant SYS_KMQ_NOTIFY (line 313) | SYS_KMQ_NOTIFY = 461 constant SYS_KMQ_UNLINK (line 314) | SYS_KMQ_UNLINK = 462 constant SYS_ABORT2 (line 315) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 316) | SYS_THR_SET_NAME = 464 constant SYS_AIO_FSYNC (line 317) | SYS_AIO_FSYNC = 465 constant SYS_RTPRIO_THREAD (line 318) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 319) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 320) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 321) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 322) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 323) | SYS_PREAD = 475 constant SYS_PWRITE (line 324) | SYS_PWRITE = 476 constant SYS_MMAP (line 325) | SYS_MMAP = 477 constant SYS_LSEEK (line 326) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 327) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 328) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 329) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 330) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 331) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 332) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 333) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 334) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 335) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 336) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 337) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 338) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 339) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 340) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 341) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 342) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 343) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 344) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 345) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 346) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 347) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 348) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 349) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 350) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 351) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 352) | SYS_POSIX_OPENPT = 504 constant SYS_GSSD_SYSCALL (line 353) | SYS_GSSD_SYSCALL = 505 constant SYS_JAIL_GET (line 354) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 355) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 356) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 357) | SYS_CLOSEFROM = 509 constant SYS___SEMCTL (line 358) | SYS___SEMCTL = 510 constant SYS_MSGCTL (line 359) | SYS_MSGCTL = 511 constant SYS_SHMCTL (line 360) | SYS_SHMCTL = 512 constant SYS_LPATHCONF (line 361) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 362) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 363) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 364) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 365) | SYS_PDFORK = 518 constant SYS_PDKILL (line 366) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 367) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 368) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 369) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 370) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 371) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 372) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 373) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 374) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 375) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 376) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 377) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 378) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 379) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 380) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 381) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 382) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 383) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 384) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 385) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 386) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 387) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 388) | SYS_PIPE2 = 542 constant SYS_AIO_MLOCK (line 389) | SYS_AIO_MLOCK = 543 constant SYS_PROCCTL (line 390) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 391) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 392) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 393) | SYS_UTIMENSAT = 547 constant SYS_NUMA_GETAFFINITY (line 394) | SYS_NUMA_GETAFFINITY = 548 constant SYS_NUMA_SETAFFINITY (line 395) | SYS_NUMA_SETAFFINITY = 549 constant SYS_FDATASYNC (line 396) | SYS_FDATASYNC = 550 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 17) | SYS_WAIT4 = 7 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 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_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_OVADVISE (line 67) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 68) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 69) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 70) | SYS_MADVISE = 75 constant SYS_MINCORE (line 71) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 72) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 73) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 75) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 77) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 78) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 79) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 80) | SYS_DUP2 = 90 constant SYS_FCNTL (line 81) | SYS_FCNTL = 92 constant SYS_SELECT (line 82) | SYS_SELECT = 93 constant SYS_FSYNC (line 83) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 84) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 85) | SYS_SOCKET = 97 constant SYS_CONNECT (line 86) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 87) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 88) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 89) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 90) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 91) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 92) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 93) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 94) | SYS_READV = 120 constant SYS_WRITEV (line 95) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 96) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 97) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 99) | SYS_SETREUID = 126 constant SYS_SETREGID (line 100) | SYS_SETREGID = 127 constant SYS_RENAME (line 101) | SYS_RENAME = 128 constant SYS_FLOCK (line 102) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 103) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 104) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 105) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 106) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 107) | SYS_MKDIR = 136 constant SYS_RMDIR (line 108) | SYS_RMDIR = 137 constant SYS_UTIMES (line 109) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 110) | SYS_ADJTIME = 140 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 112) | SYS_QUOTACTL = 148 constant SYS_NLM_SYSCALL (line 113) | SYS_NLM_SYSCALL = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_LGETFH (line 115) | SYS_LGETFH = 160 constant SYS_GETFH (line 116) | SYS_GETFH = 161 constant SYS_SYSARCH (line 117) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 118) | SYS_RTPRIO = 166 constant SYS_SEMSYS (line 119) | SYS_SEMSYS = 169 constant SYS_MSGSYS (line 120) | SYS_MSGSYS = 170 constant SYS_SHMSYS (line 121) | SYS_SHMSYS = 171 constant SYS_SETFIB (line 122) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 123) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 124) | SYS_SETGID = 181 constant SYS_SETEGID (line 125) | SYS_SETEGID = 182 constant SYS_SETEUID (line 126) | SYS_SETEUID = 183 constant SYS_STAT (line 127) | SYS_STAT = 188 constant SYS_FSTAT (line 128) | SYS_FSTAT = 189 constant SYS_LSTAT (line 129) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 130) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 131) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 132) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 133) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 134) | SYS_GETDIRENTRIES = 196 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_SEMGET (line 142) | SYS_SEMGET = 221 constant SYS_SEMOP (line 143) | SYS_SEMOP = 222 constant SYS_MSGGET (line 144) | SYS_MSGGET = 225 constant SYS_MSGSND (line 145) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 146) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 147) | SYS_SHMAT = 228 constant SYS_SHMDT (line 148) | SYS_SHMDT = 230 constant SYS_SHMGET (line 149) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 150) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 151) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 152) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 153) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 154) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 155) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 156) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 157) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 158) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 159) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 160) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 161) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_NANOSLEEP (line 162) | SYS_CLOCK_NANOSLEEP = 244 constant SYS_CLOCK_GETCPUCLOCKID2 (line 163) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 164) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 165) | SYS_MINHERIT = 250 constant SYS_RFORK (line 166) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 167) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 168) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 169) | SYS_LCHOWN = 254 constant SYS_AIO_READ (line 170) | SYS_AIO_READ = 255 constant SYS_AIO_WRITE (line 171) | SYS_AIO_WRITE = 256 constant SYS_LIO_LISTIO (line 172) | SYS_LIO_LISTIO = 257 constant SYS_GETDENTS (line 173) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 174) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 175) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 176) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 177) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 178) | SYS_NLSTAT = 280 constant SYS_PREADV (line 179) | SYS_PREADV = 289 constant SYS_PWRITEV (line 180) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 181) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 182) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 183) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 184) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 185) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 186) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 187) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 188) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 189) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 190) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 191) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 192) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 193) | SYS_GETSID = 310 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 195) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 196) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 197) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 198) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 199) | SYS_AIO_ERROR = 317 constant SYS_YIELD (line 200) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 201) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 202) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 203) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 204) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 205) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 206) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 207) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 208) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 209) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 210) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 211) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 212) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 213) | SYS_KLDSYM = 337 constant SYS_JAIL (line 214) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 215) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 216) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 217) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 218) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 219) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 220) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 221) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 222) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 223) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 224) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 225) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 226) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 227) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 228) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 229) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 230) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 231) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 232) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 233) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 234) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 235) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 236) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 237) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 238) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 239) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 240) | SYS___SETUGID = 374 constant SYS_EACCESS (line 241) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 242) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 243) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 244) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 245) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 246) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 247) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 248) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 249) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 250) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 251) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 252) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 253) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 254) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 255) | SYS_STATFS = 396 constant SYS_FSTATFS (line 256) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 257) | SYS_FHSTATFS = 398 constant SYS_KSEM_CLOSE (line 258) | SYS_KSEM_CLOSE = 400 constant SYS_KSEM_POST (line 259) | SYS_KSEM_POST = 401 constant SYS_KSEM_WAIT (line 260) | SYS_KSEM_WAIT = 402 constant SYS_KSEM_TRYWAIT (line 261) | SYS_KSEM_TRYWAIT = 403 constant SYS_KSEM_INIT (line 262) | SYS_KSEM_INIT = 404 constant SYS_KSEM_OPEN (line 263) | SYS_KSEM_OPEN = 405 constant SYS_KSEM_UNLINK (line 264) | SYS_KSEM_UNLINK = 406 constant SYS_KSEM_GETVALUE (line 265) | SYS_KSEM_GETVALUE = 407 constant SYS_KSEM_DESTROY (line 266) | SYS_KSEM_DESTROY = 408 constant SYS___MAC_GET_PID (line 267) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 268) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 269) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 270) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 271) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 272) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 273) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 274) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 275) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 276) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 277) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 278) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 279) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 280) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 281) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 282) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 283) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 284) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 285) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 286) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 287) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 288) | SYS_THR_KILL = 433 constant SYS_JAIL_ATTACH (line 289) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 290) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 291) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 292) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_KSEM_TIMEDWAIT (line 293) | SYS_KSEM_TIMEDWAIT = 441 constant SYS_THR_SUSPEND (line 294) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 295) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 296) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 297) | SYS_AUDIT = 445 constant SYS_AUDITON (line 298) | SYS_AUDITON = 446 constant SYS_GETAUID (line 299) | SYS_GETAUID = 447 constant SYS_SETAUID (line 300) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 301) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 302) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 303) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 304) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 305) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 306) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 307) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 308) | SYS_SIGQUEUE = 456 constant SYS_KMQ_OPEN (line 309) | SYS_KMQ_OPEN = 457 constant SYS_KMQ_SETATTR (line 310) | SYS_KMQ_SETATTR = 458 constant SYS_KMQ_TIMEDRECEIVE (line 311) | SYS_KMQ_TIMEDRECEIVE = 459 constant SYS_KMQ_TIMEDSEND (line 312) | SYS_KMQ_TIMEDSEND = 460 constant SYS_KMQ_NOTIFY (line 313) | SYS_KMQ_NOTIFY = 461 constant SYS_KMQ_UNLINK (line 314) | SYS_KMQ_UNLINK = 462 constant SYS_ABORT2 (line 315) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 316) | SYS_THR_SET_NAME = 464 constant SYS_AIO_FSYNC (line 317) | SYS_AIO_FSYNC = 465 constant SYS_RTPRIO_THREAD (line 318) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 319) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 320) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 321) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 322) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 323) | SYS_PREAD = 475 constant SYS_PWRITE (line 324) | SYS_PWRITE = 476 constant SYS_MMAP (line 325) | SYS_MMAP = 477 constant SYS_LSEEK (line 326) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 327) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 328) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 329) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 330) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 331) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 332) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 333) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 334) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 335) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 336) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 337) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 338) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 339) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 340) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 341) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 342) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 343) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 344) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 345) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 346) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 347) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 348) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 349) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 350) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 351) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 352) | SYS_POSIX_OPENPT = 504 constant SYS_GSSD_SYSCALL (line 353) | SYS_GSSD_SYSCALL = 505 constant SYS_JAIL_GET (line 354) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 355) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 356) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 357) | SYS_CLOSEFROM = 509 constant SYS___SEMCTL (line 358) | SYS___SEMCTL = 510 constant SYS_MSGCTL (line 359) | SYS_MSGCTL = 511 constant SYS_SHMCTL (line 360) | SYS_SHMCTL = 512 constant SYS_LPATHCONF (line 361) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 362) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 363) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 364) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 365) | SYS_PDFORK = 518 constant SYS_PDKILL (line 366) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 367) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 368) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 369) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 370) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 371) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 372) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 373) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 374) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 375) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 376) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 377) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 378) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 379) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 380) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 381) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 382) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 383) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 384) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 385) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 386) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 387) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 388) | SYS_PIPE2 = 542 constant SYS_AIO_MLOCK (line 389) | SYS_AIO_MLOCK = 543 constant SYS_PROCCTL (line 390) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 391) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 392) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 393) | SYS_UTIMENSAT = 547 constant SYS_NUMA_GETAFFINITY (line 394) | SYS_NUMA_GETAFFINITY = 548 constant SYS_NUMA_SETAFFINITY (line 395) | SYS_NUMA_SETAFFINITY = 549 constant SYS_FDATASYNC (line 396) | SYS_FDATASYNC = 550 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 17) | SYS_WAIT4 = 7 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 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_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_OVADVISE (line 67) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 68) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 69) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 70) | SYS_MADVISE = 75 constant SYS_MINCORE (line 71) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 72) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 73) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 75) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 77) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 78) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 79) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 80) | SYS_DUP2 = 90 constant SYS_FCNTL (line 81) | SYS_FCNTL = 92 constant SYS_SELECT (line 82) | SYS_SELECT = 93 constant SYS_FSYNC (line 83) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 84) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 85) | SYS_SOCKET = 97 constant SYS_CONNECT (line 86) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 87) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 88) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 89) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 90) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 91) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 92) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 93) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 94) | SYS_READV = 120 constant SYS_WRITEV (line 95) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 96) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 97) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 99) | SYS_SETREUID = 126 constant SYS_SETREGID (line 100) | SYS_SETREGID = 127 constant SYS_RENAME (line 101) | SYS_RENAME = 128 constant SYS_FLOCK (line 102) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 103) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 104) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 105) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 106) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 107) | SYS_MKDIR = 136 constant SYS_RMDIR (line 108) | SYS_RMDIR = 137 constant SYS_UTIMES (line 109) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 110) | SYS_ADJTIME = 140 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 112) | SYS_QUOTACTL = 148 constant SYS_NLM_SYSCALL (line 113) | SYS_NLM_SYSCALL = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_LGETFH (line 115) | SYS_LGETFH = 160 constant SYS_GETFH (line 116) | SYS_GETFH = 161 constant SYS_SYSARCH (line 117) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 118) | SYS_RTPRIO = 166 constant SYS_SEMSYS (line 119) | SYS_SEMSYS = 169 constant SYS_MSGSYS (line 120) | SYS_MSGSYS = 170 constant SYS_SHMSYS (line 121) | SYS_SHMSYS = 171 constant SYS_SETFIB (line 122) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 123) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 124) | SYS_SETGID = 181 constant SYS_SETEGID (line 125) | SYS_SETEGID = 182 constant SYS_SETEUID (line 126) | SYS_SETEUID = 183 constant SYS_STAT (line 127) | SYS_STAT = 188 constant SYS_FSTAT (line 128) | SYS_FSTAT = 189 constant SYS_LSTAT (line 129) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 130) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 131) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 132) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 133) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 134) | SYS_GETDIRENTRIES = 196 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_SEMGET (line 142) | SYS_SEMGET = 221 constant SYS_SEMOP (line 143) | SYS_SEMOP = 222 constant SYS_MSGGET (line 144) | SYS_MSGGET = 225 constant SYS_MSGSND (line 145) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 146) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 147) | SYS_SHMAT = 228 constant SYS_SHMDT (line 148) | SYS_SHMDT = 230 constant SYS_SHMGET (line 149) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 150) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 151) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 152) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 153) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 154) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 155) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 156) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 157) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 158) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 159) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 160) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 161) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_NANOSLEEP (line 162) | SYS_CLOCK_NANOSLEEP = 244 constant SYS_CLOCK_GETCPUCLOCKID2 (line 163) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 164) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 165) | SYS_MINHERIT = 250 constant SYS_RFORK (line 166) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 167) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 168) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 169) | SYS_LCHOWN = 254 constant SYS_AIO_READ (line 170) | SYS_AIO_READ = 255 constant SYS_AIO_WRITE (line 171) | SYS_AIO_WRITE = 256 constant SYS_LIO_LISTIO (line 172) | SYS_LIO_LISTIO = 257 constant SYS_GETDENTS (line 173) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 174) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 175) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 176) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 177) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 178) | SYS_NLSTAT = 280 constant SYS_PREADV (line 179) | SYS_PREADV = 289 constant SYS_PWRITEV (line 180) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 181) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 182) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 183) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 184) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 185) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 186) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 187) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 188) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 189) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 190) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 191) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 192) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 193) | SYS_GETSID = 310 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 195) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 196) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 197) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 198) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 199) | SYS_AIO_ERROR = 317 constant SYS_YIELD (line 200) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 201) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 202) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 203) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 204) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 205) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 206) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 207) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 208) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 209) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 210) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 211) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 212) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 213) | SYS_KLDSYM = 337 constant SYS_JAIL (line 214) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 215) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 216) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 217) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 218) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 219) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 220) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 221) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 222) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 223) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 224) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 225) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 226) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 227) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 228) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 229) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 230) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 231) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 232) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 233) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 234) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 235) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 236) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 237) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 238) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 239) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 240) | SYS___SETUGID = 374 constant SYS_EACCESS (line 241) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 242) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 243) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 244) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 245) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 246) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 247) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 248) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 249) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 250) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 251) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 252) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 253) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 254) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 255) | SYS_STATFS = 396 constant SYS_FSTATFS (line 256) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 257) | SYS_FHSTATFS = 398 constant SYS_KSEM_CLOSE (line 258) | SYS_KSEM_CLOSE = 400 constant SYS_KSEM_POST (line 259) | SYS_KSEM_POST = 401 constant SYS_KSEM_WAIT (line 260) | SYS_KSEM_WAIT = 402 constant SYS_KSEM_TRYWAIT (line 261) | SYS_KSEM_TRYWAIT = 403 constant SYS_KSEM_INIT (line 262) | SYS_KSEM_INIT = 404 constant SYS_KSEM_OPEN (line 263) | SYS_KSEM_OPEN = 405 constant SYS_KSEM_UNLINK (line 264) | SYS_KSEM_UNLINK = 406 constant SYS_KSEM_GETVALUE (line 265) | SYS_KSEM_GETVALUE = 407 constant SYS_KSEM_DESTROY (line 266) | SYS_KSEM_DESTROY = 408 constant SYS___MAC_GET_PID (line 267) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 268) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 269) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 270) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 271) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 272) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 273) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 274) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 275) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 276) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 277) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 278) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 279) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 280) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 281) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 282) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 283) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 284) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 285) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 286) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 287) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 288) | SYS_THR_KILL = 433 constant SYS_JAIL_ATTACH (line 289) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 290) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 291) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 292) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_KSEM_TIMEDWAIT (line 293) | SYS_KSEM_TIMEDWAIT = 441 constant SYS_THR_SUSPEND (line 294) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 295) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 296) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 297) | SYS_AUDIT = 445 constant SYS_AUDITON (line 298) | SYS_AUDITON = 446 constant SYS_GETAUID (line 299) | SYS_GETAUID = 447 constant SYS_SETAUID (line 300) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 301) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 302) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 303) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 304) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 305) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 306) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 307) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 308) | SYS_SIGQUEUE = 456 constant SYS_KMQ_OPEN (line 309) | SYS_KMQ_OPEN = 457 constant SYS_KMQ_SETATTR (line 310) | SYS_KMQ_SETATTR = 458 constant SYS_KMQ_TIMEDRECEIVE (line 311) | SYS_KMQ_TIMEDRECEIVE = 459 constant SYS_KMQ_TIMEDSEND (line 312) | SYS_KMQ_TIMEDSEND = 460 constant SYS_KMQ_NOTIFY (line 313) | SYS_KMQ_NOTIFY = 461 constant SYS_KMQ_UNLINK (line 314) | SYS_KMQ_UNLINK = 462 constant SYS_ABORT2 (line 315) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 316) | SYS_THR_SET_NAME = 464 constant SYS_AIO_FSYNC (line 317) | SYS_AIO_FSYNC = 465 constant SYS_RTPRIO_THREAD (line 318) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 319) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 320) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 321) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 322) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 323) | SYS_PREAD = 475 constant SYS_PWRITE (line 324) | SYS_PWRITE = 476 constant SYS_MMAP (line 325) | SYS_MMAP = 477 constant SYS_LSEEK (line 326) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 327) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 328) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 329) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 330) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 331) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 332) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 333) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 334) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 335) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 336) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 337) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 338) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 339) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 340) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 341) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 342) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 343) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 344) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 345) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 346) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 347) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 348) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 349) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 350) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 351) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 352) | SYS_POSIX_OPENPT = 504 constant SYS_GSSD_SYSCALL (line 353) | SYS_GSSD_SYSCALL = 505 constant SYS_JAIL_GET (line 354) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 355) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 356) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 357) | SYS_CLOSEFROM = 509 constant SYS___SEMCTL (line 358) | SYS___SEMCTL = 510 constant SYS_MSGCTL (line 359) | SYS_MSGCTL = 511 constant SYS_SHMCTL (line 360) | SYS_SHMCTL = 512 constant SYS_LPATHCONF (line 361) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 362) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 363) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 364) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 365) | SYS_PDFORK = 518 constant SYS_PDKILL (line 366) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 367) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 368) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 369) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 370) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 371) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 372) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 373) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 374) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 375) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 376) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 377) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 378) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 379) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 380) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 381) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 382) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 383) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 384) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 385) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 386) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 387) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 388) | SYS_PIPE2 = 542 constant SYS_AIO_MLOCK (line 389) | SYS_AIO_MLOCK = 543 constant SYS_PROCCTL (line 390) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 391) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 392) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 393) | SYS_UTIMENSAT = 547 constant SYS_NUMA_GETAFFINITY (line 394) | SYS_NUMA_GETAFFINITY = 548 constant SYS_NUMA_SETAFFINITY (line 395) | SYS_NUMA_SETAFFINITY = 549 constant SYS_FDATASYNC (line 396) | SYS_FDATASYNC = 550 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 17) | SYS_WAIT4 = 7 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 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_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_OVADVISE (line 67) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 68) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 69) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 70) | SYS_MADVISE = 75 constant SYS_MINCORE (line 71) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 72) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 73) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 75) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 77) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 78) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 79) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 80) | SYS_DUP2 = 90 constant SYS_FCNTL (line 81) | SYS_FCNTL = 92 constant SYS_SELECT (line 82) | SYS_SELECT = 93 constant SYS_FSYNC (line 83) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 84) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 85) | SYS_SOCKET = 97 constant SYS_CONNECT (line 86) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 87) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 88) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 89) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 90) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 91) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 92) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 93) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 94) | SYS_READV = 120 constant SYS_WRITEV (line 95) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 96) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 97) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 99) | SYS_SETREUID = 126 constant SYS_SETREGID (line 100) | SYS_SETREGID = 127 constant SYS_RENAME (line 101) | SYS_RENAME = 128 constant SYS_FLOCK (line 102) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 103) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 104) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 105) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 106) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 107) | SYS_MKDIR = 136 constant SYS_RMDIR (line 108) | SYS_RMDIR = 137 constant SYS_UTIMES (line 109) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 110) | SYS_ADJTIME = 140 constant SYS_SETSID (line 111) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 112) | SYS_QUOTACTL = 148 constant SYS_NLM_SYSCALL (line 113) | SYS_NLM_SYSCALL = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_LGETFH (line 115) | SYS_LGETFH = 160 constant SYS_GETFH (line 116) | SYS_GETFH = 161 constant SYS_SYSARCH (line 117) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 118) | SYS_RTPRIO = 166 constant SYS_SEMSYS (line 119) | SYS_SEMSYS = 169 constant SYS_MSGSYS (line 120) | SYS_MSGSYS = 170 constant SYS_SHMSYS (line 121) | SYS_SHMSYS = 171 constant SYS_SETFIB (line 122) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 123) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 124) | SYS_SETGID = 181 constant SYS_SETEGID (line 125) | SYS_SETEGID = 182 constant SYS_SETEUID (line 126) | SYS_SETEUID = 183 constant SYS_STAT (line 127) | SYS_STAT = 188 constant SYS_FSTAT (line 128) | SYS_FSTAT = 189 constant SYS_LSTAT (line 129) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 130) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 131) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 132) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 133) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 134) | SYS_GETDIRENTRIES = 196 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_SEMGET (line 142) | SYS_SEMGET = 221 constant SYS_SEMOP (line 143) | SYS_SEMOP = 222 constant SYS_MSGGET (line 144) | SYS_MSGGET = 225 constant SYS_MSGSND (line 145) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 146) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 147) | SYS_SHMAT = 228 constant SYS_SHMDT (line 148) | SYS_SHMDT = 230 constant SYS_SHMGET (line 149) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 150) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 151) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 152) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 153) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 154) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 155) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 156) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 157) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 158) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 159) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 160) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 161) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_NANOSLEEP (line 162) | SYS_CLOCK_NANOSLEEP = 244 constant SYS_CLOCK_GETCPUCLOCKID2 (line 163) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 164) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 165) | SYS_MINHERIT = 250 constant SYS_RFORK (line 166) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 167) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 168) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 169) | SYS_LCHOWN = 254 constant SYS_AIO_READ (line 170) | SYS_AIO_READ = 255 constant SYS_AIO_WRITE (line 171) | SYS_AIO_WRITE = 256 constant SYS_LIO_LISTIO (line 172) | SYS_LIO_LISTIO = 257 constant SYS_GETDENTS (line 173) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 174) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 175) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 176) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 177) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 178) | SYS_NLSTAT = 280 constant SYS_PREADV (line 179) | SYS_PREADV = 289 constant SYS_PWRITEV (line 180) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 181) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 182) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 183) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 184) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 185) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 186) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 187) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 188) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 189) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 190) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 191) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 192) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 193) | SYS_GETSID = 310 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 195) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 196) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 197) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 198) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 199) | SYS_AIO_ERROR = 317 constant SYS_YIELD (line 200) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 201) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 202) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 203) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 204) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 205) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 206) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 207) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 208) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 209) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 210) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 211) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 212) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 213) | SYS_KLDSYM = 337 constant SYS_JAIL (line 214) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 215) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 216) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 217) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 218) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 219) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 220) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 221) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 222) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 223) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 224) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 225) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 226) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 227) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 228) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 229) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 230) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 231) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 232) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 233) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 234) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 235) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 236) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 237) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 238) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 239) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 240) | SYS___SETUGID = 374 constant SYS_EACCESS (line 241) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 242) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 243) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 244) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 245) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 246) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 247) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 248) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 249) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 250) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 251) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 252) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 253) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 254) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 255) | SYS_STATFS = 396 constant SYS_FSTATFS (line 256) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 257) | SYS_FHSTATFS = 398 constant SYS_KSEM_CLOSE (line 258) | SYS_KSEM_CLOSE = 400 constant SYS_KSEM_POST (line 259) | SYS_KSEM_POST = 401 constant SYS_KSEM_WAIT (line 260) | SYS_KSEM_WAIT = 402 constant SYS_KSEM_TRYWAIT (line 261) | SYS_KSEM_TRYWAIT = 403 constant SYS_KSEM_INIT (line 262) | SYS_KSEM_INIT = 404 constant SYS_KSEM_OPEN (line 263) | SYS_KSEM_OPEN = 405 constant SYS_KSEM_UNLINK (line 264) | SYS_KSEM_UNLINK = 406 constant SYS_KSEM_GETVALUE (line 265) | SYS_KSEM_GETVALUE = 407 constant SYS_KSEM_DESTROY (line 266) | SYS_KSEM_DESTROY = 408 constant SYS___MAC_GET_PID (line 267) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 268) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 269) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 270) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 271) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 272) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 273) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 274) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 275) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 276) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 277) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 278) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 279) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 280) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 281) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 282) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 283) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 284) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 285) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 286) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 287) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 288) | SYS_THR_KILL = 433 constant SYS_JAIL_ATTACH (line 289) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 290) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 291) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 292) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_KSEM_TIMEDWAIT (line 293) | SYS_KSEM_TIMEDWAIT = 441 constant SYS_THR_SUSPEND (line 294) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 295) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 296) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 297) | SYS_AUDIT = 445 constant SYS_AUDITON (line 298) | SYS_AUDITON = 446 constant SYS_GETAUID (line 299) | SYS_GETAUID = 447 constant SYS_SETAUID (line 300) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 301) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 302) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 303) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 304) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 305) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 306) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 307) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 308) | SYS_SIGQUEUE = 456 constant SYS_KMQ_OPEN (line 309) | SYS_KMQ_OPEN = 457 constant SYS_KMQ_SETATTR (line 310) | SYS_KMQ_SETATTR = 458 constant SYS_KMQ_TIMEDRECEIVE (line 311) | SYS_KMQ_TIMEDRECEIVE = 459 constant SYS_KMQ_TIMEDSEND (line 312) | SYS_KMQ_TIMEDSEND = 460 constant SYS_KMQ_NOTIFY (line 313) | SYS_KMQ_NOTIFY = 461 constant SYS_KMQ_UNLINK (line 314) | SYS_KMQ_UNLINK = 462 constant SYS_ABORT2 (line 315) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 316) | SYS_THR_SET_NAME = 464 constant SYS_AIO_FSYNC (line 317) | SYS_AIO_FSYNC = 465 constant SYS_RTPRIO_THREAD (line 318) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 319) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 320) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 321) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 322) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 323) | SYS_PREAD = 475 constant SYS_PWRITE (line 324) | SYS_PWRITE = 476 constant SYS_MMAP (line 325) | SYS_MMAP = 477 constant SYS_LSEEK (line 326) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 327) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 328) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 329) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 330) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 331) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 332) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 333) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 334) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 335) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 336) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 337) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 338) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 339) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 340) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 341) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 342) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 343) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 344) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 345) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 346) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 347) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 348) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 349) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 350) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 351) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 352) | SYS_POSIX_OPENPT = 504 constant SYS_GSSD_SYSCALL (line 353) | SYS_GSSD_SYSCALL = 505 constant SYS_JAIL_GET (line 354) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 355) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 356) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 357) | SYS_CLOSEFROM = 509 constant SYS___SEMCTL (line 358) | SYS___SEMCTL = 510 constant SYS_MSGCTL (line 359) | SYS_MSGCTL = 511 constant SYS_SHMCTL (line 360) | SYS_SHMCTL = 512 constant SYS_LPATHCONF (line 361) | SYS_LPATHCONF = 513 constant SYS___CAP_RIGHTS_GET (line 362) | SYS___CAP_RIGHTS_GET = 515 constant SYS_CAP_ENTER (line 363) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 364) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 365) | SYS_PDFORK = 518 constant SYS_PDKILL (line 366) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 367) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 368) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 369) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 370) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 371) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 372) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 373) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 374) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 375) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 376) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 377) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 378) | SYS_WAIT6 = 532 constant SYS_CAP_RIGHTS_LIMIT (line 379) | SYS_CAP_RIGHTS_LIMIT = 533 constant SYS_CAP_IOCTLS_LIMIT (line 380) | SYS_CAP_IOCTLS_LIMIT = 534 constant SYS_CAP_IOCTLS_GET (line 381) | SYS_CAP_IOCTLS_GET = 535 constant SYS_CAP_FCNTLS_LIMIT (line 382) | SYS_CAP_FCNTLS_LIMIT = 536 constant SYS_CAP_FCNTLS_GET (line 383) | SYS_CAP_FCNTLS_GET = 537 constant SYS_BINDAT (line 384) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 385) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 386) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 387) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 388) | SYS_PIPE2 = 542 constant SYS_AIO_MLOCK (line 389) | SYS_AIO_MLOCK = 543 constant SYS_PROCCTL (line 390) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 391) | SYS_PPOLL = 545 constant SYS_FUTIMENS (line 392) | SYS_FUTIMENS = 546 constant SYS_UTIMENSAT (line 393) | SYS_UTIMENSAT = 547 constant SYS_NUMA_GETAFFINITY (line 394) | SYS_NUMA_GETAFFINITY = 548 constant SYS_NUMA_SETAFFINITY (line 395) | SYS_NUMA_SETAFFINITY = 549 constant SYS_FDATASYNC (line 396) | SYS_FDATASYNC = 550 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_386.go constant SYS_RESTART_SYSCALL (line 10) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAITPID (line 17) | SYS_WAITPID = 7 constant SYS_CREAT (line 18) | SYS_CREAT = 8 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_EXECVE (line 21) | SYS_EXECVE = 11 constant SYS_CHDIR (line 22) | SYS_CHDIR = 12 constant SYS_TIME (line 23) | SYS_TIME = 13 constant SYS_MKNOD (line 24) | SYS_MKNOD = 14 constant SYS_CHMOD (line 25) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 16 constant SYS_BREAK (line 27) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 28) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 29) | SYS_LSEEK = 19 constant SYS_GETPID (line 30) | SYS_GETPID = 20 constant SYS_MOUNT (line 31) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 32) | SYS_UMOUNT = 22 constant SYS_SETUID (line 33) | SYS_SETUID = 23 constant SYS_GETUID (line 34) | SYS_GETUID = 24 constant SYS_STIME (line 35) | SYS_STIME = 25 constant SYS_PTRACE (line 36) | SYS_PTRACE = 26 constant SYS_ALARM (line 37) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 38) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 39) | SYS_PAUSE = 29 constant SYS_UTIME (line 40) | SYS_UTIME = 30 constant SYS_STTY (line 41) | SYS_STTY = 31 constant SYS_GTTY (line 42) | SYS_GTTY = 32 constant SYS_ACCESS (line 43) | SYS_ACCESS = 33 constant SYS_NICE (line 44) | SYS_NICE = 34 constant SYS_FTIME (line 45) | SYS_FTIME = 35 constant SYS_SYNC (line 46) | SYS_SYNC = 36 constant SYS_KILL (line 47) | SYS_KILL = 37 constant SYS_RENAME (line 48) | SYS_RENAME = 38 constant SYS_MKDIR (line 49) | SYS_MKDIR = 39 constant SYS_RMDIR (line 50) | SYS_RMDIR = 40 constant SYS_DUP (line 51) | SYS_DUP = 41 constant SYS_PIPE (line 52) | SYS_PIPE = 42 constant SYS_TIMES (line 53) | SYS_TIMES = 43 constant SYS_PROF (line 54) | SYS_PROF = 44 constant SYS_BRK (line 55) | SYS_BRK = 45 constant SYS_SETGID (line 56) | SYS_SETGID = 46 constant SYS_GETGID (line 57) | SYS_GETGID = 47 constant SYS_SIGNAL (line 58) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 59) | SYS_GETEUID = 49 constant SYS_GETEGID (line 60) | SYS_GETEGID = 50 constant SYS_ACCT (line 61) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 62) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 63) | SYS_LOCK = 53 constant SYS_IOCTL (line 64) | SYS_IOCTL = 54 constant SYS_FCNTL (line 65) | SYS_FCNTL = 55 constant SYS_MPX (line 66) | SYS_MPX = 56 constant SYS_SETPGID (line 67) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 68) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 69) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 70) | SYS_UMASK = 60 constant SYS_CHROOT (line 71) | SYS_CHROOT = 61 constant SYS_USTAT (line 72) | SYS_USTAT = 62 constant SYS_DUP2 (line 73) | SYS_DUP2 = 63 constant SYS_GETPPID (line 74) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 75) | SYS_GETPGRP = 65 constant SYS_SETSID (line 76) | SYS_SETSID = 66 constant SYS_SIGACTION (line 77) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 78) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 79) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 80) | SYS_SETREUID = 70 constant SYS_SETREGID (line 81) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 82) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 83) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 85) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 86) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 87) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 88) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 89) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 90) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 91) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 92) | SYS_SELECT = 82 constant SYS_SYMLINK (line 93) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 94) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 95) | SYS_READLINK = 85 constant SYS_USELIB (line 96) | SYS_USELIB = 86 constant SYS_SWAPON (line 97) | SYS_SWAPON = 87 constant SYS_REBOOT (line 98) | SYS_REBOOT = 88 constant SYS_READDIR (line 99) | SYS_READDIR = 89 constant SYS_MMAP (line 100) | SYS_MMAP = 90 constant SYS_MUNMAP (line 101) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 102) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 103) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 104) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 105) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 107) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 108) | SYS_PROFIL = 98 constant SYS_STATFS (line 109) | SYS_STATFS = 99 constant SYS_FSTATFS (line 110) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 111) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 112) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 114) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 115) | SYS_GETITIMER = 105 constant SYS_STAT (line 116) | SYS_STAT = 106 constant SYS_LSTAT (line 117) | SYS_LSTAT = 107 constant SYS_FSTAT (line 118) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 119) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 120) | SYS_IOPL = 110 constant SYS_VHANGUP (line 121) | SYS_VHANGUP = 111 constant SYS_IDLE (line 122) | SYS_IDLE = 112 constant SYS_VM86OLD (line 123) | SYS_VM86OLD = 113 constant SYS_WAIT4 (line 124) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 125) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 126) | SYS_SYSINFO = 116 constant SYS_IPC (line 127) | SYS_IPC = 117 constant SYS_FSYNC (line 128) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 130) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 131) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 132) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 133) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 134) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 135) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 136) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 137) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 138) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 139) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 140) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 142) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 143) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 144) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 145) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 146) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 147) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 148) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 149) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 150) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 151) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 152) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 153) | SYS_FLOCK = 143 constant SYS_MSYNC (line 154) | SYS_MSYNC = 144 constant SYS_READV (line 155) | SYS_READV = 145 constant SYS_WRITEV (line 156) | SYS_WRITEV = 146 constant SYS_GETSID (line 157) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 158) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 159) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 160) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 162) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 163) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 164) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 165) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 166) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 167) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 168) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 169) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 170) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 171) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 172) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 173) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 174) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 175) | SYS_GETRESUID = 165 constant SYS_VM86 (line 176) | SYS_VM86 = 166 constant SYS_QUERY_MODULE (line 177) | SYS_QUERY_MODULE = 167 constant SYS_POLL (line 178) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 179) | SYS_NFSSERVCTL = 169 constant SYS_SETRESGID (line 180) | SYS_SETRESGID = 170 constant SYS_GETRESGID (line 181) | SYS_GETRESGID = 171 constant SYS_PRCTL (line 182) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 183) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 184) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 185) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 186) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 187) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 188) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 189) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 190) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 191) | SYS_PWRITE64 = 181 constant SYS_CHOWN (line 192) | SYS_CHOWN = 182 constant SYS_GETCWD (line 193) | SYS_GETCWD = 183 constant SYS_CAPGET (line 194) | SYS_CAPGET = 184 constant SYS_CAPSET (line 195) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 196) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 197) | SYS_SENDFILE = 187 constant SYS_GETPMSG (line 198) | SYS_GETPMSG = 188 constant SYS_PUTPMSG (line 199) | SYS_PUTPMSG = 189 constant SYS_VFORK (line 200) | SYS_VFORK = 190 constant SYS_UGETRLIMIT (line 201) | SYS_UGETRLIMIT = 191 constant SYS_MMAP2 (line 202) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 203) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 204) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 205) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 206) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 207) | SYS_FSTAT64 = 197 constant SYS_LCHOWN32 (line 208) | SYS_LCHOWN32 = 198 constant SYS_GETUID32 (line 209) | SYS_GETUID32 = 199 constant SYS_GETGID32 (line 210) | SYS_GETGID32 = 200 constant SYS_GETEUID32 (line 211) | SYS_GETEUID32 = 201 constant SYS_GETEGID32 (line 212) | SYS_GETEGID32 = 202 constant SYS_SETREUID32 (line 213) | SYS_SETREUID32 = 203 constant SYS_SETREGID32 (line 214) | SYS_SETREGID32 = 204 constant SYS_GETGROUPS32 (line 215) | SYS_GETGROUPS32 = 205 constant SYS_SETGROUPS32 (line 216) | SYS_SETGROUPS32 = 206 constant SYS_FCHOWN32 (line 217) | SYS_FCHOWN32 = 207 constant SYS_SETRESUID32 (line 218) | SYS_SETRESUID32 = 208 constant SYS_GETRESUID32 (line 219) | SYS_GETRESUID32 = 209 constant SYS_SETRESGID32 (line 220) | SYS_SETRESGID32 = 210 constant SYS_GETRESGID32 (line 221) | SYS_GETRESGID32 = 211 constant SYS_CHOWN32 (line 222) | SYS_CHOWN32 = 212 constant SYS_SETUID32 (line 223) | SYS_SETUID32 = 213 constant SYS_SETGID32 (line 224) | SYS_SETGID32 = 214 constant SYS_SETFSUID32 (line 225) | SYS_SETFSUID32 = 215 constant SYS_SETFSGID32 (line 226) | SYS_SETFSGID32 = 216 constant SYS_PIVOT_ROOT (line 227) | SYS_PIVOT_ROOT = 217 constant SYS_MINCORE (line 228) | SYS_MINCORE = 218 constant SYS_MADVISE (line 229) | SYS_MADVISE = 219 constant SYS_GETDENTS64 (line 230) | SYS_GETDENTS64 = 220 constant SYS_FCNTL64 (line 231) | SYS_FCNTL64 = 221 constant SYS_GETTID (line 232) | SYS_GETTID = 224 constant SYS_READAHEAD (line 233) | SYS_READAHEAD = 225 constant SYS_SETXATTR (line 234) | SYS_SETXATTR = 226 constant SYS_LSETXATTR (line 235) | SYS_LSETXATTR = 227 constant SYS_FSETXATTR (line 236) | SYS_FSETXATTR = 228 constant SYS_GETXATTR (line 237) | SYS_GETXATTR = 229 constant SYS_LGETXATTR (line 238) | SYS_LGETXATTR = 230 constant SYS_FGETXATTR (line 239) | SYS_FGETXATTR = 231 constant SYS_LISTXATTR (line 240) | SYS_LISTXATTR = 232 constant SYS_LLISTXATTR (line 241) | SYS_LLISTXATTR = 233 constant SYS_FLISTXATTR (line 242) | SYS_FLISTXATTR = 234 constant SYS_REMOVEXATTR (line 243) | SYS_REMOVEXATTR = 235 constant SYS_LREMOVEXATTR (line 244) | SYS_LREMOVEXATTR = 236 constant SYS_FREMOVEXATTR (line 245) | SYS_FREMOVEXATTR = 237 constant SYS_TKILL (line 246) | SYS_TKILL = 238 constant SYS_SENDFILE64 (line 247) | SYS_SENDFILE64 = 239 constant SYS_FUTEX (line 248) | SYS_FUTEX = 240 constant SYS_SCHED_SETAFFINITY (line 249) | SYS_SCHED_SETAFFINITY = 241 constant SYS_SCHED_GETAFFINITY (line 250) | SYS_SCHED_GETAFFINITY = 242 constant SYS_SET_THREAD_AREA (line 251) | SYS_SET_THREAD_AREA = 243 constant SYS_GET_THREAD_AREA (line 252) | SYS_GET_THREAD_AREA = 244 constant SYS_IO_SETUP (line 253) | SYS_IO_SETUP = 245 constant SYS_IO_DESTROY (line 254) | SYS_IO_DESTROY = 246 constant SYS_IO_GETEVENTS (line 255) | SYS_IO_GETEVENTS = 247 constant SYS_IO_SUBMIT (line 256) | SYS_IO_SUBMIT = 248 constant SYS_IO_CANCEL (line 257) | SYS_IO_CANCEL = 249 constant SYS_FADVISE64 (line 258) | SYS_FADVISE64 = 250 constant SYS_EXIT_GROUP (line 259) | SYS_EXIT_GROUP = 252 constant SYS_LOOKUP_DCOOKIE (line 260) | SYS_LOOKUP_DCOOKIE = 253 constant SYS_EPOLL_CREATE (line 261) | SYS_EPOLL_CREATE = 254 constant SYS_EPOLL_CTL (line 262) | SYS_EPOLL_CTL = 255 constant SYS_EPOLL_WAIT (line 263) | SYS_EPOLL_WAIT = 256 constant SYS_REMAP_FILE_PAGES (line 264) | SYS_REMAP_FILE_PAGES = 257 constant SYS_SET_TID_ADDRESS (line 265) | SYS_SET_TID_ADDRESS = 258 constant SYS_TIMER_CREATE (line 266) | SYS_TIMER_CREATE = 259 constant SYS_TIMER_SETTIME (line 267) | SYS_TIMER_SETTIME = 260 constant SYS_TIMER_GETTIME (line 268) | SYS_TIMER_GETTIME = 261 constant SYS_TIMER_GETOVERRUN (line 269) | SYS_TIMER_GETOVERRUN = 262 constant SYS_TIMER_DELETE (line 270) | SYS_TIMER_DELETE = 263 constant SYS_CLOCK_SETTIME (line 271) | SYS_CLOCK_SETTIME = 264 constant SYS_CLOCK_GETTIME (line 272) | SYS_CLOCK_GETTIME = 265 constant SYS_CLOCK_GETRES (line 273) | SYS_CLOCK_GETRES = 266 constant SYS_CLOCK_NANOSLEEP (line 274) | SYS_CLOCK_NANOSLEEP = 267 constant SYS_STATFS64 (line 275) | SYS_STATFS64 = 268 constant SYS_FSTATFS64 (line 276) | SYS_FSTATFS64 = 269 constant SYS_TGKILL (line 277) | SYS_TGKILL = 270 constant SYS_UTIMES (line 278) | SYS_UTIMES = 271 constant SYS_FADVISE64_64 (line 279) | SYS_FADVISE64_64 = 272 constant SYS_VSERVER (line 280) | SYS_VSERVER = 273 constant SYS_MBIND (line 281) | SYS_MBIND = 274 constant SYS_GET_MEMPOLICY (line 282) | SYS_GET_MEMPOLICY = 275 constant SYS_SET_MEMPOLICY (line 283) | SYS_SET_MEMPOLICY = 276 constant SYS_MQ_OPEN (line 284) | SYS_MQ_OPEN = 277 constant SYS_MQ_UNLINK (line 285) | SYS_MQ_UNLINK = 278 constant SYS_MQ_TIMEDSEND (line 286) | SYS_MQ_TIMEDSEND = 279 constant SYS_MQ_TIMEDRECEIVE (line 287) | SYS_MQ_TIMEDRECEIVE = 280 constant SYS_MQ_NOTIFY (line 288) | SYS_MQ_NOTIFY = 281 constant SYS_MQ_GETSETATTR (line 289) | SYS_MQ_GETSETATTR = 282 constant SYS_KEXEC_LOAD (line 290) | SYS_KEXEC_LOAD = 283 constant SYS_WAITID (line 291) | SYS_WAITID = 284 constant SYS_ADD_KEY (line 292) | SYS_ADD_KEY = 286 constant SYS_REQUEST_KEY (line 293) | SYS_REQUEST_KEY = 287 constant SYS_KEYCTL (line 294) | SYS_KEYCTL = 288 constant SYS_IOPRIO_SET (line 295) | SYS_IOPRIO_SET = 289 constant SYS_IOPRIO_GET (line 296) | SYS_IOPRIO_GET = 290 constant SYS_INOTIFY_INIT (line 297) | SYS_INOTIFY_INIT = 291 constant SYS_INOTIFY_ADD_WATCH (line 298) | SYS_INOTIFY_ADD_WATCH = 292 constant SYS_INOTIFY_RM_WATCH (line 299) | SYS_INOTIFY_RM_WATCH = 293 constant SYS_MIGRATE_PAGES (line 300) | SYS_MIGRATE_PAGES = 294 constant SYS_OPENAT (line 301) | SYS_OPENAT = 295 constant SYS_MKDIRAT (line 302) | SYS_MKDIRAT = 296 constant SYS_MKNODAT (line 303) | SYS_MKNODAT = 297 constant SYS_FCHOWNAT (line 304) | SYS_FCHOWNAT = 298 constant SYS_FUTIMESAT (line 305) | SYS_FUTIMESAT = 299 constant SYS_FSTATAT64 (line 306) | SYS_FSTATAT64 = 300 constant SYS_UNLINKAT (line 307) | SYS_UNLINKAT = 301 constant SYS_RENAMEAT (line 308) | SYS_RENAMEAT = 302 constant SYS_LINKAT (line 309) | SYS_LINKAT = 303 constant SYS_SYMLINKAT (line 310) | SYS_SYMLINKAT = 304 constant SYS_READLINKAT (line 311) | SYS_READLINKAT = 305 constant SYS_FCHMODAT (line 312) | SYS_FCHMODAT = 306 constant SYS_FACCESSAT (line 313) | SYS_FACCESSAT = 307 constant SYS_PSELECT6 (line 314) | SYS_PSELECT6 = 308 constant SYS_PPOLL (line 315) | SYS_PPOLL = 309 constant SYS_UNSHARE (line 316) | SYS_UNSHARE = 310 constant SYS_SET_ROBUST_LIST (line 317) | SYS_SET_ROBUST_LIST = 311 constant SYS_GET_ROBUST_LIST (line 318) | SYS_GET_ROBUST_LIST = 312 constant SYS_SPLICE (line 319) | SYS_SPLICE = 313 constant SYS_SYNC_FILE_RANGE (line 320) | SYS_SYNC_FILE_RANGE = 314 constant SYS_TEE (line 321) | SYS_TEE = 315 constant SYS_VMSPLICE (line 322) | SYS_VMSPLICE = 316 constant SYS_MOVE_PAGES (line 323) | SYS_MOVE_PAGES = 317 constant SYS_GETCPU (line 324) | SYS_GETCPU = 318 constant SYS_EPOLL_PWAIT (line 325) | SYS_EPOLL_PWAIT = 319 constant SYS_UTIMENSAT (line 326) | SYS_UTIMENSAT = 320 constant SYS_SIGNALFD (line 327) | SYS_SIGNALFD = 321 constant SYS_TIMERFD_CREATE (line 328) | SYS_TIMERFD_CREATE = 322 constant SYS_EVENTFD (line 329) | SYS_EVENTFD = 323 constant SYS_FALLOCATE (line 330) | SYS_FALLOCATE = 324 constant SYS_TIMERFD_SETTIME (line 331) | SYS_TIMERFD_SETTIME = 325 constant SYS_TIMERFD_GETTIME (line 332) | SYS_TIMERFD_GETTIME = 326 constant SYS_SIGNALFD4 (line 333) | SYS_SIGNALFD4 = 327 constant SYS_EVENTFD2 (line 334) | SYS_EVENTFD2 = 328 constant SYS_EPOLL_CREATE1 (line 335) | SYS_EPOLL_CREATE1 = 329 constant SYS_DUP3 (line 336) | SYS_DUP3 = 330 constant SYS_PIPE2 (line 337) | SYS_PIPE2 = 331 constant SYS_INOTIFY_INIT1 (line 338) | SYS_INOTIFY_INIT1 = 332 constant SYS_PREADV (line 339) | SYS_PREADV = 333 constant SYS_PWRITEV (line 340) | SYS_PWRITEV = 334 constant SYS_RT_TGSIGQUEUEINFO (line 341) | SYS_RT_TGSIGQUEUEINFO = 335 constant SYS_PERF_EVENT_OPEN (line 342) | SYS_PERF_EVENT_OPEN = 336 constant SYS_RECVMMSG (line 343) | SYS_RECVMMSG = 337 constant SYS_FANOTIFY_INIT (line 344) | SYS_FANOTIFY_INIT = 338 constant SYS_FANOTIFY_MARK (line 345) | SYS_FANOTIFY_MARK = 339 constant SYS_PRLIMIT64 (line 346) | SYS_PRLIMIT64 = 340 constant SYS_NAME_TO_HANDLE_AT (line 347) | SYS_NAME_TO_HANDLE_AT = 341 constant SYS_OPEN_BY_HANDLE_AT (line 348) | SYS_OPEN_BY_HANDLE_AT = 342 constant SYS_CLOCK_ADJTIME (line 349) | SYS_CLOCK_ADJTIME = 343 constant SYS_SYNCFS (line 350) | SYS_SYNCFS = 344 constant SYS_SENDMMSG (line 351) | SYS_SENDMMSG = 345 constant SYS_SETNS (line 352) | SYS_SETNS = 346 constant SYS_PROCESS_VM_READV (line 353) | SYS_PROCESS_VM_READV = 347 constant SYS_PROCESS_VM_WRITEV (line 354) | SYS_PROCESS_VM_WRITEV = 348 constant SYS_KCMP (line 355) | SYS_KCMP = 349 constant SYS_FINIT_MODULE (line 356) | SYS_FINIT_MODULE = 350 constant SYS_SCHED_SETATTR (line 357) | SYS_SCHED_SETATTR = 351 constant SYS_SCHED_GETATTR (line 358) | SYS_SCHED_GETATTR = 352 constant SYS_RENAMEAT2 (line 359) | SYS_RENAMEAT2 = 353 constant SYS_SECCOMP (line 360) | SYS_SECCOMP = 354 constant SYS_GETRANDOM (line 361) | SYS_GETRANDOM = 355 constant SYS_MEMFD_CREATE (line 362) | SYS_MEMFD_CREATE = 356 constant SYS_BPF (line 363) | SYS_BPF = 357 constant SYS_EXECVEAT (line 364) | SYS_EXECVEAT = 358 constant SYS_SOCKET (line 365) | SYS_SOCKET = 359 constant SYS_SOCKETPAIR (line 366) | SYS_SOCKETPAIR = 360 constant SYS_BIND (line 367) | SYS_BIND = 361 constant SYS_CONNECT (line 368) | SYS_CONNECT = 362 constant SYS_LISTEN (line 369) | SYS_LISTEN = 363 constant SYS_ACCEPT4 (line 370) | SYS_ACCEPT4 = 364 constant SYS_GETSOCKOPT (line 371) | SYS_GETSOCKOPT = 365 constant SYS_SETSOCKOPT (line 372) | SYS_SETSOCKOPT = 366 constant SYS_GETSOCKNAME (line 373) | SYS_GETSOCKNAME = 367 constant SYS_GETPEERNAME (line 374) | SYS_GETPEERNAME = 368 constant SYS_SENDTO (line 375) | SYS_SENDTO = 369 constant SYS_SENDMSG (line 376) | SYS_SENDMSG = 370 constant SYS_RECVFROM (line 377) | SYS_RECVFROM = 371 constant SYS_RECVMSG (line 378) | SYS_RECVMSG = 372 constant SYS_SHUTDOWN (line 379) | SYS_SHUTDOWN = 373 constant SYS_USERFAULTFD (line 380) | SYS_USERFAULTFD = 374 constant SYS_MEMBARRIER (line 381) | SYS_MEMBARRIER = 375 constant SYS_MLOCK2 (line 382) | SYS_MLOCK2 = 376 constant SYS_COPY_FILE_RANGE (line 383) | SYS_COPY_FILE_RANGE = 377 constant SYS_PREADV2 (line 384) | SYS_PREADV2 = 378 constant SYS_PWRITEV2 (line 385) | SYS_PWRITEV2 = 379 constant SYS_PKEY_MPROTECT (line 386) | SYS_PKEY_MPROTECT = 380 constant SYS_PKEY_ALLOC (line 387) | SYS_PKEY_ALLOC = 381 constant SYS_PKEY_FREE (line 388) | SYS_PKEY_FREE = 382 constant SYS_STATX (line 389) | SYS_STATX = 383 constant SYS_ARCH_PRCTL (line 390) | SYS_ARCH_PRCTL = 384 constant SYS_IO_PGETEVENTS (line 391) | SYS_IO_PGETEVENTS = 385 constant SYS_RSEQ (line 392) | SYS_RSEQ = 386 constant SYS_SEMGET (line 393) | SYS_SEMGET = 393 constant SYS_SEMCTL (line 394) | SYS_SEMCTL = 394 constant SYS_SHMGET (line 395) | SYS_SHMGET = 395 constant SYS_SHMCTL (line 396) | SYS_SHMCTL = 396 constant SYS_SHMAT (line 397) | SYS_SHMAT = 397 constant SYS_SHMDT (line 398) | SYS_SHMDT = 398 constant SYS_MSGGET (line 399) | SYS_MSGGET = 399 constant SYS_MSGSND (line 400) | SYS_MSGSND = 400 constant SYS_MSGRCV (line 401) | SYS_MSGRCV = 401 constant SYS_MSGCTL (line 402) | SYS_MSGCTL = 402 constant SYS_CLOCK_GETTIME64 (line 403) | SYS_CLOCK_GETTIME64 = 403 constant SYS_CLOCK_SETTIME64 (line 404) | SYS_CLOCK_SETTIME64 = 404 constant SYS_CLOCK_ADJTIME64 (line 405) | SYS_CLOCK_ADJTIME64 = 405 constant SYS_CLOCK_GETRES_TIME64 (line 406) | SYS_CLOCK_GETRES_TIME64 = 406 constant SYS_CLOCK_NANOSLEEP_TIME64 (line 407) | SYS_CLOCK_NANOSLEEP_TIME64 = 407 constant SYS_TIMER_GETTIME64 (line 408) | SYS_TIMER_GETTIME64 = 408 constant SYS_TIMER_SETTIME64 (line 409) | SYS_TIMER_SETTIME64 = 409 constant SYS_TIMERFD_GETTIME64 (line 410) | SYS_TIMERFD_GETTIME64 = 410 constant SYS_TIMERFD_SETTIME64 (line 411) | SYS_TIMERFD_SETTIME64 = 411 constant SYS_UTIMENSAT_TIME64 (line 412) | SYS_UTIMENSAT_TIME64 = 412 constant SYS_PSELECT6_TIME64 (line 413) | SYS_PSELECT6_TIME64 = 413 constant SYS_PPOLL_TIME64 (line 414) | SYS_PPOLL_TIME64 = 414 constant SYS_IO_PGETEVENTS_TIME64 (line 415) | SYS_IO_PGETEVENTS_TIME64 = 416 constant SYS_RECVMMSG_TIME64 (line 416) | SYS_RECVMMSG_TIME64 = 417 constant SYS_MQ_TIMEDSEND_TIME64 (line 417) | SYS_MQ_TIMEDSEND_TIME64 = 418 constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 418) | SYS_MQ_TIMEDRECEIVE_TIME64 = 419 constant SYS_SEMTIMEDOP_TIME64 (line 419) | SYS_SEMTIMEDOP_TIME64 = 420 constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 420) | SYS_RT_SIGTIMEDWAIT_TIME64 = 421 constant SYS_FUTEX_TIME64 (line 421) | SYS_FUTEX_TIME64 = 422 constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 422) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 423 constant SYS_PIDFD_SEND_SIGNAL (line 423) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 424) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 425) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 426) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 427) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 428) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 429) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 430) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 431) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 432) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 433) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 434) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 435) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 436) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 437) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 438) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 439) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 440) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 441) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go constant SYS_READ (line 10) | SYS_READ = 0 constant SYS_WRITE (line 11) | SYS_WRITE = 1 constant SYS_OPEN (line 12) | SYS_OPEN = 2 constant SYS_CLOSE (line 13) | SYS_CLOSE = 3 constant SYS_STAT (line 14) | SYS_STAT = 4 constant SYS_FSTAT (line 15) | SYS_FSTAT = 5 constant SYS_LSTAT (line 16) | SYS_LSTAT = 6 constant SYS_POLL (line 17) | SYS_POLL = 7 constant SYS_LSEEK (line 18) | SYS_LSEEK = 8 constant SYS_MMAP (line 19) | SYS_MMAP = 9 constant SYS_MPROTECT (line 20) | SYS_MPROTECT = 10 constant SYS_MUNMAP (line 21) | SYS_MUNMAP = 11 constant SYS_BRK (line 22) | SYS_BRK = 12 constant SYS_RT_SIGACTION (line 23) | SYS_RT_SIGACTION = 13 constant SYS_RT_SIGPROCMASK (line 24) | SYS_RT_SIGPROCMASK = 14 constant SYS_RT_SIGRETURN (line 25) | SYS_RT_SIGRETURN = 15 constant SYS_IOCTL (line 26) | SYS_IOCTL = 16 constant SYS_PREAD64 (line 27) | SYS_PREAD64 = 17 constant SYS_PWRITE64 (line 28) | SYS_PWRITE64 = 18 constant SYS_READV (line 29) | SYS_READV = 19 constant SYS_WRITEV (line 30) | SYS_WRITEV = 20 constant SYS_ACCESS (line 31) | SYS_ACCESS = 21 constant SYS_PIPE (line 32) | SYS_PIPE = 22 constant SYS_SELECT (line 33) | SYS_SELECT = 23 constant SYS_SCHED_YIELD (line 34) | SYS_SCHED_YIELD = 24 constant SYS_MREMAP (line 35) | SYS_MREMAP = 25 constant SYS_MSYNC (line 36) | SYS_MSYNC = 26 constant SYS_MINCORE (line 37) | SYS_MINCORE = 27 constant SYS_MADVISE (line 38) | SYS_MADVISE = 28 constant SYS_SHMGET (line 39) | SYS_SHMGET = 29 constant SYS_SHMAT (line 40) | SYS_SHMAT = 30 constant SYS_SHMCTL (line 41) | SYS_SHMCTL = 31 constant SYS_DUP (line 42) | SYS_DUP = 32 constant SYS_DUP2 (line 43) | SYS_DUP2 = 33 constant SYS_PAUSE (line 44) | SYS_PAUSE = 34 constant SYS_NANOSLEEP (line 45) | SYS_NANOSLEEP = 35 constant SYS_GETITIMER (line 46) | SYS_GETITIMER = 36 constant SYS_ALARM (line 47) | SYS_ALARM = 37 constant SYS_SETITIMER (line 48) | SYS_SETITIMER = 38 constant SYS_GETPID (line 49) | SYS_GETPID = 39 constant SYS_SENDFILE (line 50) | SYS_SENDFILE = 40 constant SYS_SOCKET (line 51) | SYS_SOCKET = 41 constant SYS_CONNECT (line 52) | SYS_CONNECT = 42 constant SYS_ACCEPT (line 53) | SYS_ACCEPT = 43 constant SYS_SENDTO (line 54) | SYS_SENDTO = 44 constant SYS_RECVFROM (line 55) | SYS_RECVFROM = 45 constant SYS_SENDMSG (line 56) | SYS_SENDMSG = 46 constant SYS_RECVMSG (line 57) | SYS_RECVMSG = 47 constant SYS_SHUTDOWN (line 58) | SYS_SHUTDOWN = 48 constant SYS_BIND (line 59) | SYS_BIND = 49 constant SYS_LISTEN (line 60) | SYS_LISTEN = 50 constant SYS_GETSOCKNAME (line 61) | SYS_GETSOCKNAME = 51 constant SYS_GETPEERNAME (line 62) | SYS_GETPEERNAME = 52 constant SYS_SOCKETPAIR (line 63) | SYS_SOCKETPAIR = 53 constant SYS_SETSOCKOPT (line 64) | SYS_SETSOCKOPT = 54 constant SYS_GETSOCKOPT (line 65) | SYS_GETSOCKOPT = 55 constant SYS_CLONE (line 66) | SYS_CLONE = 56 constant SYS_FORK (line 67) | SYS_FORK = 57 constant SYS_VFORK (line 68) | SYS_VFORK = 58 constant SYS_EXECVE (line 69) | SYS_EXECVE = 59 constant SYS_EXIT (line 70) | SYS_EXIT = 60 constant SYS_WAIT4 (line 71) | SYS_WAIT4 = 61 constant SYS_KILL (line 72) | SYS_KILL = 62 constant SYS_UNAME (line 73) | SYS_UNAME = 63 constant SYS_SEMGET (line 74) | SYS_SEMGET = 64 constant SYS_SEMOP (line 75) | SYS_SEMOP = 65 constant SYS_SEMCTL (line 76) | SYS_SEMCTL = 66 constant SYS_SHMDT (line 77) | SYS_SHMDT = 67 constant SYS_MSGGET (line 78) | SYS_MSGGET = 68 constant SYS_MSGSND (line 79) | SYS_MSGSND = 69 constant SYS_MSGRCV (line 80) | SYS_MSGRCV = 70 constant SYS_MSGCTL (line 81) | SYS_MSGCTL = 71 constant SYS_FCNTL (line 82) | SYS_FCNTL = 72 constant SYS_FLOCK (line 83) | SYS_FLOCK = 73 constant SYS_FSYNC (line 84) | SYS_FSYNC = 74 constant SYS_FDATASYNC (line 85) | SYS_FDATASYNC = 75 constant SYS_TRUNCATE (line 86) | SYS_TRUNCATE = 76 constant SYS_FTRUNCATE (line 87) | SYS_FTRUNCATE = 77 constant SYS_GETDENTS (line 88) | SYS_GETDENTS = 78 constant SYS_GETCWD (line 89) | SYS_GETCWD = 79 constant SYS_CHDIR (line 90) | SYS_CHDIR = 80 constant SYS_FCHDIR (line 91) | SYS_FCHDIR = 81 constant SYS_RENAME (line 92) | SYS_RENAME = 82 constant SYS_MKDIR (line 93) | SYS_MKDIR = 83 constant SYS_RMDIR (line 94) | SYS_RMDIR = 84 constant SYS_CREAT (line 95) | SYS_CREAT = 85 constant SYS_LINK (line 96) | SYS_LINK = 86 constant SYS_UNLINK (line 97) | SYS_UNLINK = 87 constant SYS_SYMLINK (line 98) | SYS_SYMLINK = 88 constant SYS_READLINK (line 99) | SYS_READLINK = 89 constant SYS_CHMOD (line 100) | SYS_CHMOD = 90 constant SYS_FCHMOD (line 101) | SYS_FCHMOD = 91 constant SYS_CHOWN (line 102) | SYS_CHOWN = 92 constant SYS_FCHOWN (line 103) | SYS_FCHOWN = 93 constant SYS_LCHOWN (line 104) | SYS_LCHOWN = 94 constant SYS_UMASK (line 105) | SYS_UMASK = 95 constant SYS_GETTIMEOFDAY (line 106) | SYS_GETTIMEOFDAY = 96 constant SYS_GETRLIMIT (line 107) | SYS_GETRLIMIT = 97 constant SYS_GETRUSAGE (line 108) | SYS_GETRUSAGE = 98 constant SYS_SYSINFO (line 109) | SYS_SYSINFO = 99 constant SYS_TIMES (line 110) | SYS_TIMES = 100 constant SYS_PTRACE (line 111) | SYS_PTRACE = 101 constant SYS_GETUID (line 112) | SYS_GETUID = 102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 103 constant SYS_GETGID (line 114) | SYS_GETGID = 104 constant SYS_SETUID (line 115) | SYS_SETUID = 105 constant SYS_SETGID (line 116) | SYS_SETGID = 106 constant SYS_GETEUID (line 117) | SYS_GETEUID = 107 constant SYS_GETEGID (line 118) | SYS_GETEGID = 108 constant SYS_SETPGID (line 119) | SYS_SETPGID = 109 constant SYS_GETPPID (line 120) | SYS_GETPPID = 110 constant SYS_GETPGRP (line 121) | SYS_GETPGRP = 111 constant SYS_SETSID (line 122) | SYS_SETSID = 112 constant SYS_SETREUID (line 123) | SYS_SETREUID = 113 constant SYS_SETREGID (line 124) | SYS_SETREGID = 114 constant SYS_GETGROUPS (line 125) | SYS_GETGROUPS = 115 constant SYS_SETGROUPS (line 126) | SYS_SETGROUPS = 116 constant SYS_SETRESUID (line 127) | SYS_SETRESUID = 117 constant SYS_GETRESUID (line 128) | SYS_GETRESUID = 118 constant SYS_SETRESGID (line 129) | SYS_SETRESGID = 119 constant SYS_GETRESGID (line 130) | SYS_GETRESGID = 120 constant SYS_GETPGID (line 131) | SYS_GETPGID = 121 constant SYS_SETFSUID (line 132) | SYS_SETFSUID = 122 constant SYS_SETFSGID (line 133) | SYS_SETFSGID = 123 constant SYS_GETSID (line 134) | SYS_GETSID = 124 constant SYS_CAPGET (line 135) | SYS_CAPGET = 125 constant SYS_CAPSET (line 136) | SYS_CAPSET = 126 constant SYS_RT_SIGPENDING (line 137) | SYS_RT_SIGPENDING = 127 constant SYS_RT_SIGTIMEDWAIT (line 138) | SYS_RT_SIGTIMEDWAIT = 128 constant SYS_RT_SIGQUEUEINFO (line 139) | SYS_RT_SIGQUEUEINFO = 129 constant SYS_RT_SIGSUSPEND (line 140) | SYS_RT_SIGSUSPEND = 130 constant SYS_SIGALTSTACK (line 141) | SYS_SIGALTSTACK = 131 constant SYS_UTIME (line 142) | SYS_UTIME = 132 constant SYS_MKNOD (line 143) | SYS_MKNOD = 133 constant SYS_USELIB (line 144) | SYS_USELIB = 134 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 135 constant SYS_USTAT (line 146) | SYS_USTAT = 136 constant SYS_STATFS (line 147) | SYS_STATFS = 137 constant SYS_FSTATFS (line 148) | SYS_FSTATFS = 138 constant SYS_SYSFS (line 149) | SYS_SYSFS = 139 constant SYS_GETPRIORITY (line 150) | SYS_GETPRIORITY = 140 constant SYS_SETPRIORITY (line 151) | SYS_SETPRIORITY = 141 constant SYS_SCHED_SETPARAM (line 152) | SYS_SCHED_SETPARAM = 142 constant SYS_SCHED_GETPARAM (line 153) | SYS_SCHED_GETPARAM = 143 constant SYS_SCHED_SETSCHEDULER (line 154) | SYS_SCHED_SETSCHEDULER = 144 constant SYS_SCHED_GETSCHEDULER (line 155) | SYS_SCHED_GETSCHEDULER = 145 constant SYS_SCHED_GET_PRIORITY_MAX (line 156) | SYS_SCHED_GET_PRIORITY_MAX = 146 constant SYS_SCHED_GET_PRIORITY_MIN (line 157) | SYS_SCHED_GET_PRIORITY_MIN = 147 constant SYS_SCHED_RR_GET_INTERVAL (line 158) | SYS_SCHED_RR_GET_INTERVAL = 148 constant SYS_MLOCK (line 159) | SYS_MLOCK = 149 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 150 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 151 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 152 constant SYS_VHANGUP (line 163) | SYS_VHANGUP = 153 constant SYS_MODIFY_LDT (line 164) | SYS_MODIFY_LDT = 154 constant SYS_PIVOT_ROOT (line 165) | SYS_PIVOT_ROOT = 155 constant SYS__SYSCTL (line 166) | SYS__SYSCTL = 156 constant SYS_PRCTL (line 167) | SYS_PRCTL = 157 constant SYS_ARCH_PRCTL (line 168) | SYS_ARCH_PRCTL = 158 constant SYS_ADJTIMEX (line 169) | SYS_ADJTIMEX = 159 constant SYS_SETRLIMIT (line 170) | SYS_SETRLIMIT = 160 constant SYS_CHROOT (line 171) | SYS_CHROOT = 161 constant SYS_SYNC (line 172) | SYS_SYNC = 162 constant SYS_ACCT (line 173) | SYS_ACCT = 163 constant SYS_SETTIMEOFDAY (line 174) | SYS_SETTIMEOFDAY = 164 constant SYS_MOUNT (line 175) | SYS_MOUNT = 165 constant SYS_UMOUNT2 (line 176) | SYS_UMOUNT2 = 166 constant SYS_SWAPON (line 177) | SYS_SWAPON = 167 constant SYS_SWAPOFF (line 178) | SYS_SWAPOFF = 168 constant SYS_REBOOT (line 179) | SYS_REBOOT = 169 constant SYS_SETHOSTNAME (line 180) | SYS_SETHOSTNAME = 170 constant SYS_SETDOMAINNAME (line 181) | SYS_SETDOMAINNAME = 171 constant SYS_IOPL (line 182) | SYS_IOPL = 172 constant SYS_IOPERM (line 183) | SYS_IOPERM = 173 constant SYS_CREATE_MODULE (line 184) | SYS_CREATE_MODULE = 174 constant SYS_INIT_MODULE (line 185) | SYS_INIT_MODULE = 175 constant SYS_DELETE_MODULE (line 186) | SYS_DELETE_MODULE = 176 constant SYS_GET_KERNEL_SYMS (line 187) | SYS_GET_KERNEL_SYMS = 177 constant SYS_QUERY_MODULE (line 188) | SYS_QUERY_MODULE = 178 constant SYS_QUOTACTL (line 189) | SYS_QUOTACTL = 179 constant SYS_NFSSERVCTL (line 190) | SYS_NFSSERVCTL = 180 constant SYS_GETPMSG (line 191) | SYS_GETPMSG = 181 constant SYS_PUTPMSG (line 192) | SYS_PUTPMSG = 182 constant SYS_AFS_SYSCALL (line 193) | SYS_AFS_SYSCALL = 183 constant SYS_TUXCALL (line 194) | SYS_TUXCALL = 184 constant SYS_SECURITY (line 195) | SYS_SECURITY = 185 constant SYS_GETTID (line 196) | SYS_GETTID = 186 constant SYS_READAHEAD (line 197) | SYS_READAHEAD = 187 constant SYS_SETXATTR (line 198) | SYS_SETXATTR = 188 constant SYS_LSETXATTR (line 199) | SYS_LSETXATTR = 189 constant SYS_FSETXATTR (line 200) | SYS_FSETXATTR = 190 constant SYS_GETXATTR (line 201) | SYS_GETXATTR = 191 constant SYS_LGETXATTR (line 202) | SYS_LGETXATTR = 192 constant SYS_FGETXATTR (line 203) | SYS_FGETXATTR = 193 constant SYS_LISTXATTR (line 204) | SYS_LISTXATTR = 194 constant SYS_LLISTXATTR (line 205) | SYS_LLISTXATTR = 195 constant SYS_FLISTXATTR (line 206) | SYS_FLISTXATTR = 196 constant SYS_REMOVEXATTR (line 207) | SYS_REMOVEXATTR = 197 constant SYS_LREMOVEXATTR (line 208) | SYS_LREMOVEXATTR = 198 constant SYS_FREMOVEXATTR (line 209) | SYS_FREMOVEXATTR = 199 constant SYS_TKILL (line 210) | SYS_TKILL = 200 constant SYS_TIME (line 211) | SYS_TIME = 201 constant SYS_FUTEX (line 212) | SYS_FUTEX = 202 constant SYS_SCHED_SETAFFINITY (line 213) | SYS_SCHED_SETAFFINITY = 203 constant SYS_SCHED_GETAFFINITY (line 214) | SYS_SCHED_GETAFFINITY = 204 constant SYS_SET_THREAD_AREA (line 215) | SYS_SET_THREAD_AREA = 205 constant SYS_IO_SETUP (line 216) | SYS_IO_SETUP = 206 constant SYS_IO_DESTROY (line 217) | SYS_IO_DESTROY = 207 constant SYS_IO_GETEVENTS (line 218) | SYS_IO_GETEVENTS = 208 constant SYS_IO_SUBMIT (line 219) | SYS_IO_SUBMIT = 209 constant SYS_IO_CANCEL (line 220) | SYS_IO_CANCEL = 210 constant SYS_GET_THREAD_AREA (line 221) | SYS_GET_THREAD_AREA = 211 constant SYS_LOOKUP_DCOOKIE (line 222) | SYS_LOOKUP_DCOOKIE = 212 constant SYS_EPOLL_CREATE (line 223) | SYS_EPOLL_CREATE = 213 constant SYS_EPOLL_CTL_OLD (line 224) | SYS_EPOLL_CTL_OLD = 214 constant SYS_EPOLL_WAIT_OLD (line 225) | SYS_EPOLL_WAIT_OLD = 215 constant SYS_REMAP_FILE_PAGES (line 226) | SYS_REMAP_FILE_PAGES = 216 constant SYS_GETDENTS64 (line 227) | SYS_GETDENTS64 = 217 constant SYS_SET_TID_ADDRESS (line 228) | SYS_SET_TID_ADDRESS = 218 constant SYS_RESTART_SYSCALL (line 229) | SYS_RESTART_SYSCALL = 219 constant SYS_SEMTIMEDOP (line 230) | SYS_SEMTIMEDOP = 220 constant SYS_FADVISE64 (line 231) | SYS_FADVISE64 = 221 constant SYS_TIMER_CREATE (line 232) | SYS_TIMER_CREATE = 222 constant SYS_TIMER_SETTIME (line 233) | SYS_TIMER_SETTIME = 223 constant SYS_TIMER_GETTIME (line 234) | SYS_TIMER_GETTIME = 224 constant SYS_TIMER_GETOVERRUN (line 235) | SYS_TIMER_GETOVERRUN = 225 constant SYS_TIMER_DELETE (line 236) | SYS_TIMER_DELETE = 226 constant SYS_CLOCK_SETTIME (line 237) | SYS_CLOCK_SETTIME = 227 constant SYS_CLOCK_GETTIME (line 238) | SYS_CLOCK_GETTIME = 228 constant SYS_CLOCK_GETRES (line 239) | SYS_CLOCK_GETRES = 229 constant SYS_CLOCK_NANOSLEEP (line 240) | SYS_CLOCK_NANOSLEEP = 230 constant SYS_EXIT_GROUP (line 241) | SYS_EXIT_GROUP = 231 constant SYS_EPOLL_WAIT (line 242) | SYS_EPOLL_WAIT = 232 constant SYS_EPOLL_CTL (line 243) | SYS_EPOLL_CTL = 233 constant SYS_TGKILL (line 244) | SYS_TGKILL = 234 constant SYS_UTIMES (line 245) | SYS_UTIMES = 235 constant SYS_VSERVER (line 246) | SYS_VSERVER = 236 constant SYS_MBIND (line 247) | SYS_MBIND = 237 constant SYS_SET_MEMPOLICY (line 248) | SYS_SET_MEMPOLICY = 238 constant SYS_GET_MEMPOLICY (line 249) | SYS_GET_MEMPOLICY = 239 constant SYS_MQ_OPEN (line 250) | SYS_MQ_OPEN = 240 constant SYS_MQ_UNLINK (line 251) | SYS_MQ_UNLINK = 241 constant SYS_MQ_TIMEDSEND (line 252) | SYS_MQ_TIMEDSEND = 242 constant SYS_MQ_TIMEDRECEIVE (line 253) | SYS_MQ_TIMEDRECEIVE = 243 constant SYS_MQ_NOTIFY (line 254) | SYS_MQ_NOTIFY = 244 constant SYS_MQ_GETSETATTR (line 255) | SYS_MQ_GETSETATTR = 245 constant SYS_KEXEC_LOAD (line 256) | SYS_KEXEC_LOAD = 246 constant SYS_WAITID (line 257) | SYS_WAITID = 247 constant SYS_ADD_KEY (line 258) | SYS_ADD_KEY = 248 constant SYS_REQUEST_KEY (line 259) | SYS_REQUEST_KEY = 249 constant SYS_KEYCTL (line 260) | SYS_KEYCTL = 250 constant SYS_IOPRIO_SET (line 261) | SYS_IOPRIO_SET = 251 constant SYS_IOPRIO_GET (line 262) | SYS_IOPRIO_GET = 252 constant SYS_INOTIFY_INIT (line 263) | SYS_INOTIFY_INIT = 253 constant SYS_INOTIFY_ADD_WATCH (line 264) | SYS_INOTIFY_ADD_WATCH = 254 constant SYS_INOTIFY_RM_WATCH (line 265) | SYS_INOTIFY_RM_WATCH = 255 constant SYS_MIGRATE_PAGES (line 266) | SYS_MIGRATE_PAGES = 256 constant SYS_OPENAT (line 267) | SYS_OPENAT = 257 constant SYS_MKDIRAT (line 268) | SYS_MKDIRAT = 258 constant SYS_MKNODAT (line 269) | SYS_MKNODAT = 259 constant SYS_FCHOWNAT (line 270) | SYS_FCHOWNAT = 260 constant SYS_FUTIMESAT (line 271) | SYS_FUTIMESAT = 261 constant SYS_NEWFSTATAT (line 272) | SYS_NEWFSTATAT = 262 constant SYS_UNLINKAT (line 273) | SYS_UNLINKAT = 263 constant SYS_RENAMEAT (line 274) | SYS_RENAMEAT = 264 constant SYS_LINKAT (line 275) | SYS_LINKAT = 265 constant SYS_SYMLINKAT (line 276) | SYS_SYMLINKAT = 266 constant SYS_READLINKAT (line 277) | SYS_READLINKAT = 267 constant SYS_FCHMODAT (line 278) | SYS_FCHMODAT = 268 constant SYS_FACCESSAT (line 279) | SYS_FACCESSAT = 269 constant SYS_PSELECT6 (line 280) | SYS_PSELECT6 = 270 constant SYS_PPOLL (line 281) | SYS_PPOLL = 271 constant SYS_UNSHARE (line 282) | SYS_UNSHARE = 272 constant SYS_SET_ROBUST_LIST (line 283) | SYS_SET_ROBUST_LIST = 273 constant SYS_GET_ROBUST_LIST (line 284) | SYS_GET_ROBUST_LIST = 274 constant SYS_SPLICE (line 285) | SYS_SPLICE = 275 constant SYS_TEE (line 286) | SYS_TEE = 276 constant SYS_SYNC_FILE_RANGE (line 287) | SYS_SYNC_FILE_RANGE = 277 constant SYS_VMSPLICE (line 288) | SYS_VMSPLICE = 278 constant SYS_MOVE_PAGES (line 289) | SYS_MOVE_PAGES = 279 constant SYS_UTIMENSAT (line 290) | SYS_UTIMENSAT = 280 constant SYS_EPOLL_PWAIT (line 291) | SYS_EPOLL_PWAIT = 281 constant SYS_SIGNALFD (line 292) | SYS_SIGNALFD = 282 constant SYS_TIMERFD_CREATE (line 293) | SYS_TIMERFD_CREATE = 283 constant SYS_EVENTFD (line 294) | SYS_EVENTFD = 284 constant SYS_FALLOCATE (line 295) | SYS_FALLOCATE = 285 constant SYS_TIMERFD_SETTIME (line 296) | SYS_TIMERFD_SETTIME = 286 constant SYS_TIMERFD_GETTIME (line 297) | SYS_TIMERFD_GETTIME = 287 constant SYS_ACCEPT4 (line 298) | SYS_ACCEPT4 = 288 constant SYS_SIGNALFD4 (line 299) | SYS_SIGNALFD4 = 289 constant SYS_EVENTFD2 (line 300) | SYS_EVENTFD2 = 290 constant SYS_EPOLL_CREATE1 (line 301) | SYS_EPOLL_CREATE1 = 291 constant SYS_DUP3 (line 302) | SYS_DUP3 = 292 constant SYS_PIPE2 (line 303) | SYS_PIPE2 = 293 constant SYS_INOTIFY_INIT1 (line 304) | SYS_INOTIFY_INIT1 = 294 constant SYS_PREADV (line 305) | SYS_PREADV = 295 constant SYS_PWRITEV (line 306) | SYS_PWRITEV = 296 constant SYS_RT_TGSIGQUEUEINFO (line 307) | SYS_RT_TGSIGQUEUEINFO = 297 constant SYS_PERF_EVENT_OPEN (line 308) | SYS_PERF_EVENT_OPEN = 298 constant SYS_RECVMMSG (line 309) | SYS_RECVMMSG = 299 constant SYS_FANOTIFY_INIT (line 310) | SYS_FANOTIFY_INIT = 300 constant SYS_FANOTIFY_MARK (line 311) | SYS_FANOTIFY_MARK = 301 constant SYS_PRLIMIT64 (line 312) | SYS_PRLIMIT64 = 302 constant SYS_NAME_TO_HANDLE_AT (line 313) | SYS_NAME_TO_HANDLE_AT = 303 constant SYS_OPEN_BY_HANDLE_AT (line 314) | SYS_OPEN_BY_HANDLE_AT = 304 constant SYS_CLOCK_ADJTIME (line 315) | SYS_CLOCK_ADJTIME = 305 constant SYS_SYNCFS (line 316) | SYS_SYNCFS = 306 constant SYS_SENDMMSG (line 317) | SYS_SENDMMSG = 307 constant SYS_SETNS (line 318) | SYS_SETNS = 308 constant SYS_GETCPU (line 319) | SYS_GETCPU = 309 constant SYS_PROCESS_VM_READV (line 320) | SYS_PROCESS_VM_READV = 310 constant SYS_PROCESS_VM_WRITEV (line 321) | SYS_PROCESS_VM_WRITEV = 311 constant SYS_KCMP (line 322) | SYS_KCMP = 312 constant SYS_FINIT_MODULE (line 323) | SYS_FINIT_MODULE = 313 constant SYS_SCHED_SETATTR (line 324) | SYS_SCHED_SETATTR = 314 constant SYS_SCHED_GETATTR (line 325) | SYS_SCHED_GETATTR = 315 constant SYS_RENAMEAT2 (line 326) | SYS_RENAMEAT2 = 316 constant SYS_SECCOMP (line 327) | SYS_SECCOMP = 317 constant SYS_GETRANDOM (line 328) | SYS_GETRANDOM = 318 constant SYS_MEMFD_CREATE (line 329) | SYS_MEMFD_CREATE = 319 constant SYS_KEXEC_FILE_LOAD (line 330) | SYS_KEXEC_FILE_LOAD = 320 constant SYS_BPF (line 331) | SYS_BPF = 321 constant SYS_EXECVEAT (line 332) | SYS_EXECVEAT = 322 constant SYS_USERFAULTFD (line 333) | SYS_USERFAULTFD = 323 constant SYS_MEMBARRIER (line 334) | SYS_MEMBARRIER = 324 constant SYS_MLOCK2 (line 335) | SYS_MLOCK2 = 325 constant SYS_COPY_FILE_RANGE (line 336) | SYS_COPY_FILE_RANGE = 326 constant SYS_PREADV2 (line 337) | SYS_PREADV2 = 327 constant SYS_PWRITEV2 (line 338) | SYS_PWRITEV2 = 328 constant SYS_PKEY_MPROTECT (line 339) | SYS_PKEY_MPROTECT = 329 constant SYS_PKEY_ALLOC (line 340) | SYS_PKEY_ALLOC = 330 constant SYS_PKEY_FREE (line 341) | SYS_PKEY_FREE = 331 constant SYS_STATX (line 342) | SYS_STATX = 332 constant SYS_IO_PGETEVENTS (line 343) | SYS_IO_PGETEVENTS = 333 constant SYS_RSEQ (line 344) | SYS_RSEQ = 334 constant SYS_PIDFD_SEND_SIGNAL (line 345) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 346) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 347) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 348) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 349) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 350) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 351) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 352) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 353) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 354) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 355) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 356) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 357) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 358) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 359) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 360) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 361) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 362) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 363) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go constant SYS_RESTART_SYSCALL (line 10) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 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_MKNOD (line 22) | SYS_MKNOD = 14 constant SYS_CHMOD (line 23) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 24) | SYS_LCHOWN = 16 constant SYS_LSEEK (line 25) | SYS_LSEEK = 19 constant SYS_GETPID (line 26) | SYS_GETPID = 20 constant SYS_MOUNT (line 27) | SYS_MOUNT = 21 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_PTRACE (line 30) | SYS_PTRACE = 26 constant SYS_PAUSE (line 31) | SYS_PAUSE = 29 constant SYS_ACCESS (line 32) | SYS_ACCESS = 33 constant SYS_NICE (line 33) | SYS_NICE = 34 constant SYS_SYNC (line 34) | SYS_SYNC = 36 constant SYS_KILL (line 35) | SYS_KILL = 37 constant SYS_RENAME (line 36) | SYS_RENAME = 38 constant SYS_MKDIR (line 37) | SYS_MKDIR = 39 constant SYS_RMDIR (line 38) | SYS_RMDIR = 40 constant SYS_DUP (line 39) | SYS_DUP = 41 constant SYS_PIPE (line 40) | SYS_PIPE = 42 constant SYS_TIMES (line 41) | SYS_TIMES = 43 constant SYS_BRK (line 42) | SYS_BRK = 45 constant SYS_SETGID (line 43) | SYS_SETGID = 46 constant SYS_GETGID (line 44) | SYS_GETGID = 47 constant SYS_GETEUID (line 45) | SYS_GETEUID = 49 constant SYS_GETEGID (line 46) | SYS_GETEGID = 50 constant SYS_ACCT (line 47) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 48) | SYS_UMOUNT2 = 52 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_FCNTL (line 50) | SYS_FCNTL = 55 constant SYS_SETPGID (line 51) | SYS_SETPGID = 57 constant SYS_UMASK (line 52) | SYS_UMASK = 60 constant SYS_CHROOT (line 53) | SYS_CHROOT = 61 constant SYS_USTAT (line 54) | SYS_USTAT = 62 constant SYS_DUP2 (line 55) | SYS_DUP2 = 63 constant SYS_GETPPID (line 56) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 57) | SYS_GETPGRP = 65 constant SYS_SETSID (line 58) | SYS_SETSID = 66 constant SYS_SIGACTION (line 59) | SYS_SIGACTION = 67 constant SYS_SETREUID (line 60) | SYS_SETREUID = 70 constant SYS_SETREGID (line 61) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 62) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 63) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 64) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 65) | SYS_SETRLIMIT = 75 constant SYS_GETRUSAGE (line 66) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 67) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 68) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 69) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 70) | SYS_SETGROUPS = 81 constant SYS_SYMLINK (line 71) | SYS_SYMLINK = 83 constant SYS_READLINK (line 72) | SYS_READLINK = 85 constant SYS_USELIB (line 73) | SYS_USELIB = 86 constant SYS_SWAPON (line 74) | SYS_SWAPON = 87 constant SYS_REBOOT (line 75) | SYS_REBOOT = 88 constant SYS_MUNMAP (line 76) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 77) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 78) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 79) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 81) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 82) | SYS_SETPRIORITY = 97 constant SYS_STATFS (line 83) | SYS_STATFS = 99 constant SYS_FSTATFS (line 84) | SYS_FSTATFS = 100 constant SYS_SYSLOG (line 85) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 86) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 87) | SYS_GETITIMER = 105 constant SYS_STAT (line 88) | SYS_STAT = 106 constant SYS_LSTAT (line 89) | SYS_LSTAT = 107 constant SYS_FSTAT (line 90) | SYS_FSTAT = 108 constant SYS_VHANGUP (line 91) | SYS_VHANGUP = 111 constant SYS_WAIT4 (line 92) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 93) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 94) | SYS_SYSINFO = 116 constant SYS_FSYNC (line 95) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 96) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 97) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 98) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 99) | SYS_UNAME = 122 constant SYS_ADJTIMEX (line 100) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 101) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 102) | SYS_SIGPROCMASK = 126 constant SYS_INIT_MODULE (line 103) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 104) | SYS_DELETE_MODULE = 129 constant SYS_QUOTACTL (line 105) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 106) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 107) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 108) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 109) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 110) | SYS_PERSONALITY = 136 constant SYS_SETFSUID (line 111) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 112) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 113) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 114) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 115) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 116) | SYS_FLOCK = 143 constant SYS_MSYNC (line 117) | SYS_MSYNC = 144 constant SYS_READV (line 118) | SYS_READV = 145 constant SYS_WRITEV (line 119) | SYS_WRITEV = 146 constant SYS_GETSID (line 120) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 121) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 122) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 123) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 124) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 125) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 126) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 127) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 128) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 129) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 130) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 131) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 132) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 133) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 134) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 135) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 136) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 137) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 138) | SYS_GETRESUID = 165 constant SYS_POLL (line 139) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 140) | SYS_NFSSERVCTL = 169 constant SYS_SETRESGID (line 141) | SYS_SETRESGID = 170 constant SYS_GETRESGID (line 142) | SYS_GETRESGID = 171 constant SYS_PRCTL (line 143) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 144) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 145) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 146) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 147) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 148) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 149) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 150) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 151) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 152) | SYS_PWRITE64 = 181 constant SYS_CHOWN (line 153) | SYS_CHOWN = 182 constant SYS_GETCWD (line 154) | SYS_GETCWD = 183 constant SYS_CAPGET (line 155) | SYS_CAPGET = 184 constant SYS_CAPSET (line 156) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 157) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 158) | SYS_SENDFILE = 187 constant SYS_VFORK (line 159) | SYS_VFORK = 190 constant SYS_UGETRLIMIT (line 160) | SYS_UGETRLIMIT = 191 constant SYS_MMAP2 (line 161) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 162) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 163) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 164) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 165) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 166) | SYS_FSTAT64 = 197 constant SYS_LCHOWN32 (line 167) | SYS_LCHOWN32 = 198 constant SYS_GETUID32 (line 168) | SYS_GETUID32 = 199 constant SYS_GETGID32 (line 169) | SYS_GETGID32 = 200 constant SYS_GETEUID32 (line 170) | SYS_GETEUID32 = 201 constant SYS_GETEGID32 (line 171) | SYS_GETEGID32 = 202 constant SYS_SETREUID32 (line 172) | SYS_SETREUID32 = 203 constant SYS_SETREGID32 (line 173) | SYS_SETREGID32 = 204 constant SYS_GETGROUPS32 (line 174) | SYS_GETGROUPS32 = 205 constant SYS_SETGROUPS32 (line 175) | SYS_SETGROUPS32 = 206 constant SYS_FCHOWN32 (line 176) | SYS_FCHOWN32 = 207 constant SYS_SETRESUID32 (line 177) | SYS_SETRESUID32 = 208 constant SYS_GETRESUID32 (line 178) | SYS_GETRESUID32 = 209 constant SYS_SETRESGID32 (line 179) | SYS_SETRESGID32 = 210 constant SYS_GETRESGID32 (line 180) | SYS_GETRESGID32 = 211 constant SYS_CHOWN32 (line 181) | SYS_CHOWN32 = 212 constant SYS_SETUID32 (line 182) | SYS_SETUID32 = 213 constant SYS_SETGID32 (line 183) | SYS_SETGID32 = 214 constant SYS_SETFSUID32 (line 184) | SYS_SETFSUID32 = 215 constant SYS_SETFSGID32 (line 185) | SYS_SETFSGID32 = 216 constant SYS_GETDENTS64 (line 186) | SYS_GETDENTS64 = 217 constant SYS_PIVOT_ROOT (line 187) | SYS_PIVOT_ROOT = 218 constant SYS_MINCORE (line 188) | SYS_MINCORE = 219 constant SYS_MADVISE (line 189) | SYS_MADVISE = 220 constant SYS_FCNTL64 (line 190) | SYS_FCNTL64 = 221 constant SYS_GETTID (line 191) | SYS_GETTID = 224 constant SYS_READAHEAD (line 192) | SYS_READAHEAD = 225 constant SYS_SETXATTR (line 193) | SYS_SETXATTR = 226 constant SYS_LSETXATTR (line 194) | SYS_LSETXATTR = 227 constant SYS_FSETXATTR (line 195) | SYS_FSETXATTR = 228 constant SYS_GETXATTR (line 196) | SYS_GETXATTR = 229 constant SYS_LGETXATTR (line 197) | SYS_LGETXATTR = 230 constant SYS_FGETXATTR (line 198) | SYS_FGETXATTR = 231 constant SYS_LISTXATTR (line 199) | SYS_LISTXATTR = 232 constant SYS_LLISTXATTR (line 200) | SYS_LLISTXATTR = 233 constant SYS_FLISTXATTR (line 201) | SYS_FLISTXATTR = 234 constant SYS_REMOVEXATTR (line 202) | SYS_REMOVEXATTR = 235 constant SYS_LREMOVEXATTR (line 203) | SYS_LREMOVEXATTR = 236 constant SYS_FREMOVEXATTR (line 204) | SYS_FREMOVEXATTR = 237 constant SYS_TKILL (line 205) | SYS_TKILL = 238 constant SYS_SENDFILE64 (line 206) | SYS_SENDFILE64 = 239 constant SYS_FUTEX (line 207) | SYS_FUTEX = 240 constant SYS_SCHED_SETAFFINITY (line 208) | SYS_SCHED_SETAFFINITY = 241 constant SYS_SCHED_GETAFFINITY (line 209) | SYS_SCHED_GETAFFINITY = 242 constant SYS_IO_SETUP (line 210) | SYS_IO_SETUP = 243 constant SYS_IO_DESTROY (line 211) | SYS_IO_DESTROY = 244 constant SYS_IO_GETEVENTS (line 212) | SYS_IO_GETEVENTS = 245 constant SYS_IO_SUBMIT (line 213) | SYS_IO_SUBMIT = 246 constant SYS_IO_CANCEL (line 214) | SYS_IO_CANCEL = 247 constant SYS_EXIT_GROUP (line 215) | SYS_EXIT_GROUP = 248 constant SYS_LOOKUP_DCOOKIE (line 216) | SYS_LOOKUP_DCOOKIE = 249 constant SYS_EPOLL_CREATE (line 217) | SYS_EPOLL_CREATE = 250 constant SYS_EPOLL_CTL (line 218) | SYS_EPOLL_CTL = 251 constant SYS_EPOLL_WAIT (line 219) | SYS_EPOLL_WAIT = 252 constant SYS_REMAP_FILE_PAGES (line 220) | SYS_REMAP_FILE_PAGES = 253 constant SYS_SET_TID_ADDRESS (line 221) | SYS_SET_TID_ADDRESS = 256 constant SYS_TIMER_CREATE (line 222) | SYS_TIMER_CREATE = 257 constant SYS_TIMER_SETTIME (line 223) | SYS_TIMER_SETTIME = 258 constant SYS_TIMER_GETTIME (line 224) | SYS_TIMER_GETTIME = 259 constant SYS_TIMER_GETOVERRUN (line 225) | SYS_TIMER_GETOVERRUN = 260 constant SYS_TIMER_DELETE (line 226) | SYS_TIMER_DELETE = 261 constant SYS_CLOCK_SETTIME (line 227) | SYS_CLOCK_SETTIME = 262 constant SYS_CLOCK_GETTIME (line 228) | SYS_CLOCK_GETTIME = 263 constant SYS_CLOCK_GETRES (line 229) | SYS_CLOCK_GETRES = 264 constant SYS_CLOCK_NANOSLEEP (line 230) | SYS_CLOCK_NANOSLEEP = 265 constant SYS_STATFS64 (line 231) | SYS_STATFS64 = 266 constant SYS_FSTATFS64 (line 232) | SYS_FSTATFS64 = 267 constant SYS_TGKILL (line 233) | SYS_TGKILL = 268 constant SYS_UTIMES (line 234) | SYS_UTIMES = 269 constant SYS_ARM_FADVISE64_64 (line 235) | SYS_ARM_FADVISE64_64 = 270 constant SYS_PCICONFIG_IOBASE (line 236) | SYS_PCICONFIG_IOBASE = 271 constant SYS_PCICONFIG_READ (line 237) | SYS_PCICONFIG_READ = 272 constant SYS_PCICONFIG_WRITE (line 238) | SYS_PCICONFIG_WRITE = 273 constant SYS_MQ_OPEN (line 239) | SYS_MQ_OPEN = 274 constant SYS_MQ_UNLINK (line 240) | SYS_MQ_UNLINK = 275 constant SYS_MQ_TIMEDSEND (line 241) | SYS_MQ_TIMEDSEND = 276 constant SYS_MQ_TIMEDRECEIVE (line 242) | SYS_MQ_TIMEDRECEIVE = 277 constant SYS_MQ_NOTIFY (line 243) | SYS_MQ_NOTIFY = 278 constant SYS_MQ_GETSETATTR (line 244) | SYS_MQ_GETSETATTR = 279 constant SYS_WAITID (line 245) | SYS_WAITID = 280 constant SYS_SOCKET (line 246) | SYS_SOCKET = 281 constant SYS_BIND (line 247) | SYS_BIND = 282 constant SYS_CONNECT (line 248) | SYS_CONNECT = 283 constant SYS_LISTEN (line 249) | SYS_LISTEN = 284 constant SYS_ACCEPT (line 250) | SYS_ACCEPT = 285 constant SYS_GETSOCKNAME (line 251) | SYS_GETSOCKNAME = 286 constant SYS_GETPEERNAME (line 252) | SYS_GETPEERNAME = 287 constant SYS_SOCKETPAIR (line 253) | SYS_SOCKETPAIR = 288 constant SYS_SEND (line 254) | SYS_SEND = 289 constant SYS_SENDTO (line 255) | SYS_SENDTO = 290 constant SYS_RECV (line 256) | SYS_RECV = 291 constant SYS_RECVFROM (line 257) | SYS_RECVFROM = 292 constant SYS_SHUTDOWN (line 258) | SYS_SHUTDOWN = 293 constant SYS_SETSOCKOPT (line 259) | SYS_SETSOCKOPT = 294 constant SYS_GETSOCKOPT (line 260) | SYS_GETSOCKOPT = 295 constant SYS_SENDMSG (line 261) | SYS_SENDMSG = 296 constant SYS_RECVMSG (line 262) | SYS_RECVMSG = 297 constant SYS_SEMOP (line 263) | SYS_SEMOP = 298 constant SYS_SEMGET (line 264) | SYS_SEMGET = 299 constant SYS_SEMCTL (line 265) | SYS_SEMCTL = 300 constant SYS_MSGSND (line 266) | SYS_MSGSND = 301 constant SYS_MSGRCV (line 267) | SYS_MSGRCV = 302 constant SYS_MSGGET (line 268) | SYS_MSGGET = 303 constant SYS_MSGCTL (line 269) | SYS_MSGCTL = 304 constant SYS_SHMAT (line 270) | SYS_SHMAT = 305 constant SYS_SHMDT (line 271) | SYS_SHMDT = 306 constant SYS_SHMGET (line 272) | SYS_SHMGET = 307 constant SYS_SHMCTL (line 273) | SYS_SHMCTL = 308 constant SYS_ADD_KEY (line 274) | SYS_ADD_KEY = 309 constant SYS_REQUEST_KEY (line 275) | SYS_REQUEST_KEY = 310 constant SYS_KEYCTL (line 276) | SYS_KEYCTL = 311 constant SYS_SEMTIMEDOP (line 277) | SYS_SEMTIMEDOP = 312 constant SYS_VSERVER (line 278) | SYS_VSERVER = 313 constant SYS_IOPRIO_SET (line 279) | SYS_IOPRIO_SET = 314 constant SYS_IOPRIO_GET (line 280) | SYS_IOPRIO_GET = 315 constant SYS_INOTIFY_INIT (line 281) | SYS_INOTIFY_INIT = 316 constant SYS_INOTIFY_ADD_WATCH (line 282) | SYS_INOTIFY_ADD_WATCH = 317 constant SYS_INOTIFY_RM_WATCH (line 283) | SYS_INOTIFY_RM_WATCH = 318 constant SYS_MBIND (line 284) | SYS_MBIND = 319 constant SYS_GET_MEMPOLICY (line 285) | SYS_GET_MEMPOLICY = 320 constant SYS_SET_MEMPOLICY (line 286) | SYS_SET_MEMPOLICY = 321 constant SYS_OPENAT (line 287) | SYS_OPENAT = 322 constant SYS_MKDIRAT (line 288) | SYS_MKDIRAT = 323 constant SYS_MKNODAT (line 289) | SYS_MKNODAT = 324 constant SYS_FCHOWNAT (line 290) | SYS_FCHOWNAT = 325 constant SYS_FUTIMESAT (line 291) | SYS_FUTIMESAT = 326 constant SYS_FSTATAT64 (line 292) | SYS_FSTATAT64 = 327 constant SYS_UNLINKAT (line 293) | SYS_UNLINKAT = 328 constant SYS_RENAMEAT (line 294) | SYS_RENAMEAT = 329 constant SYS_LINKAT (line 295) | SYS_LINKAT = 330 constant SYS_SYMLINKAT (line 296) | SYS_SYMLINKAT = 331 constant SYS_READLINKAT (line 297) | SYS_READLINKAT = 332 constant SYS_FCHMODAT (line 298) | SYS_FCHMODAT = 333 constant SYS_FACCESSAT (line 299) | SYS_FACCESSAT = 334 constant SYS_PSELECT6 (line 300) | SYS_PSELECT6 = 335 constant SYS_PPOLL (line 301) | SYS_PPOLL = 336 constant SYS_UNSHARE (line 302) | SYS_UNSHARE = 337 constant SYS_SET_ROBUST_LIST (line 303) | SYS_SET_ROBUST_LIST = 338 constant SYS_GET_ROBUST_LIST (line 304) | SYS_GET_ROBUST_LIST = 339 constant SYS_SPLICE (line 305) | SYS_SPLICE = 340 constant SYS_ARM_SYNC_FILE_RANGE (line 306) | SYS_ARM_SYNC_FILE_RANGE = 341 constant SYS_TEE (line 307) | SYS_TEE = 342 constant SYS_VMSPLICE (line 308) | SYS_VMSPLICE = 343 constant SYS_MOVE_PAGES (line 309) | SYS_MOVE_PAGES = 344 constant SYS_GETCPU (line 310) | SYS_GETCPU = 345 constant SYS_EPOLL_PWAIT (line 311) | SYS_EPOLL_PWAIT = 346 constant SYS_KEXEC_LOAD (line 312) | SYS_KEXEC_LOAD = 347 constant SYS_UTIMENSAT (line 313) | SYS_UTIMENSAT = 348 constant SYS_SIGNALFD (line 314) | SYS_SIGNALFD = 349 constant SYS_TIMERFD_CREATE (line 315) | SYS_TIMERFD_CREATE = 350 constant SYS_EVENTFD (line 316) | SYS_EVENTFD = 351 constant SYS_FALLOCATE (line 317) | SYS_FALLOCATE = 352 constant SYS_TIMERFD_SETTIME (line 318) | SYS_TIMERFD_SETTIME = 353 constant SYS_TIMERFD_GETTIME (line 319) | SYS_TIMERFD_GETTIME = 354 constant SYS_SIGNALFD4 (line 320) | SYS_SIGNALFD4 = 355 constant SYS_EVENTFD2 (line 321) | SYS_EVENTFD2 = 356 constant SYS_EPOLL_CREATE1 (line 322) | SYS_EPOLL_CREATE1 = 357 constant SYS_DUP3 (line 323) | SYS_DUP3 = 358 constant SYS_PIPE2 (line 324) | SYS_PIPE2 = 359 constant SYS_INOTIFY_INIT1 (line 325) | SYS_INOTIFY_INIT1 = 360 constant SYS_PREADV (line 326) | SYS_PREADV = 361 constant SYS_PWRITEV (line 327) | SYS_PWRITEV = 362 constant SYS_RT_TGSIGQUEUEINFO (line 328) | SYS_RT_TGSIGQUEUEINFO = 363 constant SYS_PERF_EVENT_OPEN (line 329) | SYS_PERF_EVENT_OPEN = 364 constant SYS_RECVMMSG (line 330) | SYS_RECVMMSG = 365 constant SYS_ACCEPT4 (line 331) | SYS_ACCEPT4 = 366 constant SYS_FANOTIFY_INIT (line 332) | SYS_FANOTIFY_INIT = 367 constant SYS_FANOTIFY_MARK (line 333) | SYS_FANOTIFY_MARK = 368 constant SYS_PRLIMIT64 (line 334) | SYS_PRLIMIT64 = 369 constant SYS_NAME_TO_HANDLE_AT (line 335) | SYS_NAME_TO_HANDLE_AT = 370 constant SYS_OPEN_BY_HANDLE_AT (line 336) | SYS_OPEN_BY_HANDLE_AT = 371 constant SYS_CLOCK_ADJTIME (line 337) | SYS_CLOCK_ADJTIME = 372 constant SYS_SYNCFS (line 338) | SYS_SYNCFS = 373 constant SYS_SENDMMSG (line 339) | SYS_SENDMMSG = 374 constant SYS_SETNS (line 340) | SYS_SETNS = 375 constant SYS_PROCESS_VM_READV (line 341) | SYS_PROCESS_VM_READV = 376 constant SYS_PROCESS_VM_WRITEV (line 342) | SYS_PROCESS_VM_WRITEV = 377 constant SYS_KCMP (line 343) | SYS_KCMP = 378 constant SYS_FINIT_MODULE (line 344) | SYS_FINIT_MODULE = 379 constant SYS_SCHED_SETATTR (line 345) | SYS_SCHED_SETATTR = 380 constant SYS_SCHED_GETATTR (line 346) | SYS_SCHED_GETATTR = 381 constant SYS_RENAMEAT2 (line 347) | SYS_RENAMEAT2 = 382 constant SYS_SECCOMP (line 348) | SYS_SECCOMP = 383 constant SYS_GETRANDOM (line 349) | SYS_GETRANDOM = 384 constant SYS_MEMFD_CREATE (line 350) | SYS_MEMFD_CREATE = 385 constant SYS_BPF (line 351) | SYS_BPF = 386 constant SYS_EXECVEAT (line 352) | SYS_EXECVEAT = 387 constant SYS_USERFAULTFD (line 353) | SYS_USERFAULTFD = 388 constant SYS_MEMBARRIER (line 354) | SYS_MEMBARRIER = 389 constant SYS_MLOCK2 (line 355) | SYS_MLOCK2 = 390 constant SYS_COPY_FILE_RANGE (line 356) | SYS_COPY_FILE_RANGE = 391 constant SYS_PREADV2 (line 357) | SYS_PREADV2 = 392 constant SYS_PWRITEV2 (line 358) | SYS_PWRITEV2 = 393 constant SYS_PKEY_MPROTECT (line 359) | SYS_PKEY_MPROTECT = 394 constant SYS_PKEY_ALLOC (line 360) | SYS_PKEY_ALLOC = 395 constant SYS_PKEY_FREE (line 361) | SYS_PKEY_FREE = 396 constant SYS_STATX (line 362) | SYS_STATX = 397 constant SYS_RSEQ (line 363) | SYS_RSEQ = 398 constant SYS_IO_PGETEVENTS (line 364) | SYS_IO_PGETEVENTS = 399 constant SYS_MIGRATE_PAGES (line 365) | SYS_MIGRATE_PAGES = 400 constant SYS_KEXEC_FILE_LOAD (line 366) | SYS_KEXEC_FILE_LOAD = 401 constant SYS_CLOCK_GETTIME64 (line 367) | SYS_CLOCK_GETTIME64 = 403 constant SYS_CLOCK_SETTIME64 (line 368) | SYS_CLOCK_SETTIME64 = 404 constant SYS_CLOCK_ADJTIME64 (line 369) | SYS_CLOCK_ADJTIME64 = 405 constant SYS_CLOCK_GETRES_TIME64 (line 370) | SYS_CLOCK_GETRES_TIME64 = 406 constant SYS_CLOCK_NANOSLEEP_TIME64 (line 371) | SYS_CLOCK_NANOSLEEP_TIME64 = 407 constant SYS_TIMER_GETTIME64 (line 372) | SYS_TIMER_GETTIME64 = 408 constant SYS_TIMER_SETTIME64 (line 373) | SYS_TIMER_SETTIME64 = 409 constant SYS_TIMERFD_GETTIME64 (line 374) | SYS_TIMERFD_GETTIME64 = 410 constant SYS_TIMERFD_SETTIME64 (line 375) | SYS_TIMERFD_SETTIME64 = 411 constant SYS_UTIMENSAT_TIME64 (line 376) | SYS_UTIMENSAT_TIME64 = 412 constant SYS_PSELECT6_TIME64 (line 377) | SYS_PSELECT6_TIME64 = 413 constant SYS_PPOLL_TIME64 (line 378) | SYS_PPOLL_TIME64 = 414 constant SYS_IO_PGETEVENTS_TIME64 (line 379) | SYS_IO_PGETEVENTS_TIME64 = 416 constant SYS_RECVMMSG_TIME64 (line 380) | SYS_RECVMMSG_TIME64 = 417 constant SYS_MQ_TIMEDSEND_TIME64 (line 381) | SYS_MQ_TIMEDSEND_TIME64 = 418 constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 382) | SYS_MQ_TIMEDRECEIVE_TIME64 = 419 constant SYS_SEMTIMEDOP_TIME64 (line 383) | SYS_SEMTIMEDOP_TIME64 = 420 constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 384) | SYS_RT_SIGTIMEDWAIT_TIME64 = 421 constant SYS_FUTEX_TIME64 (line 385) | SYS_FUTEX_TIME64 = 422 constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 386) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 423 constant SYS_PIDFD_SEND_SIGNAL (line 387) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 388) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 389) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 390) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 391) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 392) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 393) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 394) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 395) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 396) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 397) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 398) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 399) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 400) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 401) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 402) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 403) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 404) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 405) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go constant SYS_IO_SETUP (line 10) | SYS_IO_SETUP = 0 constant SYS_IO_DESTROY (line 11) | SYS_IO_DESTROY = 1 constant SYS_IO_SUBMIT (line 12) | SYS_IO_SUBMIT = 2 constant SYS_IO_CANCEL (line 13) | SYS_IO_CANCEL = 3 constant SYS_IO_GETEVENTS (line 14) | SYS_IO_GETEVENTS = 4 constant SYS_SETXATTR (line 15) | SYS_SETXATTR = 5 constant SYS_LSETXATTR (line 16) | SYS_LSETXATTR = 6 constant SYS_FSETXATTR (line 17) | SYS_FSETXATTR = 7 constant SYS_GETXATTR (line 18) | SYS_GETXATTR = 8 constant SYS_LGETXATTR (line 19) | SYS_LGETXATTR = 9 constant SYS_FGETXATTR (line 20) | SYS_FGETXATTR = 10 constant SYS_LISTXATTR (line 21) | SYS_LISTXATTR = 11 constant SYS_LLISTXATTR (line 22) | SYS_LLISTXATTR = 12 constant SYS_FLISTXATTR (line 23) | SYS_FLISTXATTR = 13 constant SYS_REMOVEXATTR (line 24) | SYS_REMOVEXATTR = 14 constant SYS_LREMOVEXATTR (line 25) | SYS_LREMOVEXATTR = 15 constant SYS_FREMOVEXATTR (line 26) | SYS_FREMOVEXATTR = 16 constant SYS_GETCWD (line 27) | SYS_GETCWD = 17 constant SYS_LOOKUP_DCOOKIE (line 28) | SYS_LOOKUP_DCOOKIE = 18 constant SYS_EVENTFD2 (line 29) | SYS_EVENTFD2 = 19 constant SYS_EPOLL_CREATE1 (line 30) | SYS_EPOLL_CREATE1 = 20 constant SYS_EPOLL_CTL (line 31) | SYS_EPOLL_CTL = 21 constant SYS_EPOLL_PWAIT (line 32) | SYS_EPOLL_PWAIT = 22 constant SYS_DUP (line 33) | SYS_DUP = 23 constant SYS_DUP3 (line 34) | SYS_DUP3 = 24 constant SYS_FCNTL (line 35) | SYS_FCNTL = 25 constant SYS_INOTIFY_INIT1 (line 36) | SYS_INOTIFY_INIT1 = 26 constant SYS_INOTIFY_ADD_WATCH (line 37) | SYS_INOTIFY_ADD_WATCH = 27 constant SYS_INOTIFY_RM_WATCH (line 38) | SYS_INOTIFY_RM_WATCH = 28 constant SYS_IOCTL (line 39) | SYS_IOCTL = 29 constant SYS_IOPRIO_SET (line 40) | SYS_IOPRIO_SET = 30 constant SYS_IOPRIO_GET (line 41) | SYS_IOPRIO_GET = 31 constant SYS_FLOCK (line 42) | SYS_FLOCK = 32 constant SYS_MKNODAT (line 43) | SYS_MKNODAT = 33 constant SYS_MKDIRAT (line 44) | SYS_MKDIRAT = 34 constant SYS_UNLINKAT (line 45) | SYS_UNLINKAT = 35 constant SYS_SYMLINKAT (line 46) | SYS_SYMLINKAT = 36 constant SYS_LINKAT (line 47) | SYS_LINKAT = 37 constant SYS_RENAMEAT (line 48) | SYS_RENAMEAT = 38 constant SYS_UMOUNT2 (line 49) | SYS_UMOUNT2 = 39 constant SYS_MOUNT (line 50) | SYS_MOUNT = 40 constant SYS_PIVOT_ROOT (line 51) | SYS_PIVOT_ROOT = 41 constant SYS_NFSSERVCTL (line 52) | SYS_NFSSERVCTL = 42 constant SYS_STATFS (line 53) | SYS_STATFS = 43 constant SYS_FSTATFS (line 54) | SYS_FSTATFS = 44 constant SYS_TRUNCATE (line 55) | SYS_TRUNCATE = 45 constant SYS_FTRUNCATE (line 56) | SYS_FTRUNCATE = 46 constant SYS_FALLOCATE (line 57) | SYS_FALLOCATE = 47 constant SYS_FACCESSAT (line 58) | SYS_FACCESSAT = 48 constant SYS_CHDIR (line 59) | SYS_CHDIR = 49 constant SYS_FCHDIR (line 60) | SYS_FCHDIR = 50 constant SYS_CHROOT (line 61) | SYS_CHROOT = 51 constant SYS_FCHMOD (line 62) | SYS_FCHMOD = 52 constant SYS_FCHMODAT (line 63) | SYS_FCHMODAT = 53 constant SYS_FCHOWNAT (line 64) | SYS_FCHOWNAT = 54 constant SYS_FCHOWN (line 65) | SYS_FCHOWN = 55 constant SYS_OPENAT (line 66) | SYS_OPENAT = 56 constant SYS_CLOSE (line 67) | SYS_CLOSE = 57 constant SYS_VHANGUP (line 68) | SYS_VHANGUP = 58 constant SYS_PIPE2 (line 69) | SYS_PIPE2 = 59 constant SYS_QUOTACTL (line 70) | SYS_QUOTACTL = 60 constant SYS_GETDENTS64 (line 71) | SYS_GETDENTS64 = 61 constant SYS_LSEEK (line 72) | SYS_LSEEK = 62 constant SYS_READ (line 73) | SYS_READ = 63 constant SYS_WRITE (line 74) | SYS_WRITE = 64 constant SYS_READV (line 75) | SYS_READV = 65 constant SYS_WRITEV (line 76) | SYS_WRITEV = 66 constant SYS_PREAD64 (line 77) | SYS_PREAD64 = 67 constant SYS_PWRITE64 (line 78) | SYS_PWRITE64 = 68 constant SYS_PREADV (line 79) | SYS_PREADV = 69 constant SYS_PWRITEV (line 80) | SYS_PWRITEV = 70 constant SYS_SENDFILE (line 81) | SYS_SENDFILE = 71 constant SYS_PSELECT6 (line 82) | SYS_PSELECT6 = 72 constant SYS_PPOLL (line 83) | SYS_PPOLL = 73 constant SYS_SIGNALFD4 (line 84) | SYS_SIGNALFD4 = 74 constant SYS_VMSPLICE (line 85) | SYS_VMSPLICE = 75 constant SYS_SPLICE (line 86) | SYS_SPLICE = 76 constant SYS_TEE (line 87) | SYS_TEE = 77 constant SYS_READLINKAT (line 88) | SYS_READLINKAT = 78 constant SYS_FSTATAT (line 89) | SYS_FSTATAT = 79 constant SYS_FSTAT (line 90) | SYS_FSTAT = 80 constant SYS_SYNC (line 91) | SYS_SYNC = 81 constant SYS_FSYNC (line 92) | SYS_FSYNC = 82 constant SYS_FDATASYNC (line 93) | SYS_FDATASYNC = 83 constant SYS_SYNC_FILE_RANGE (line 94) | SYS_SYNC_FILE_RANGE = 84 constant SYS_TIMERFD_CREATE (line 95) | SYS_TIMERFD_CREATE = 85 constant SYS_TIMERFD_SETTIME (line 96) | SYS_TIMERFD_SETTIME = 86 constant SYS_TIMERFD_GETTIME (line 97) | SYS_TIMERFD_GETTIME = 87 constant SYS_UTIMENSAT (line 98) | SYS_UTIMENSAT = 88 constant SYS_ACCT (line 99) | SYS_ACCT = 89 constant SYS_CAPGET (line 100) | SYS_CAPGET = 90 constant SYS_CAPSET (line 101) | SYS_CAPSET = 91 constant SYS_PERSONALITY (line 102) | SYS_PERSONALITY = 92 constant SYS_EXIT (line 103) | SYS_EXIT = 93 constant SYS_EXIT_GROUP (line 104) | SYS_EXIT_GROUP = 94 constant SYS_WAITID (line 105) | SYS_WAITID = 95 constant SYS_SET_TID_ADDRESS (line 106) | SYS_SET_TID_ADDRESS = 96 constant SYS_UNSHARE (line 107) | SYS_UNSHARE = 97 constant SYS_FUTEX (line 108) | SYS_FUTEX = 98 constant SYS_SET_ROBUST_LIST (line 109) | SYS_SET_ROBUST_LIST = 99 constant SYS_GET_ROBUST_LIST (line 110) | SYS_GET_ROBUST_LIST = 100 constant SYS_NANOSLEEP (line 111) | SYS_NANOSLEEP = 101 constant SYS_GETITIMER (line 112) | SYS_GETITIMER = 102 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 103 constant SYS_KEXEC_LOAD (line 114) | SYS_KEXEC_LOAD = 104 constant SYS_INIT_MODULE (line 115) | SYS_INIT_MODULE = 105 constant SYS_DELETE_MODULE (line 116) | SYS_DELETE_MODULE = 106 constant SYS_TIMER_CREATE (line 117) | SYS_TIMER_CREATE = 107 constant SYS_TIMER_GETTIME (line 118) | SYS_TIMER_GETTIME = 108 constant SYS_TIMER_GETOVERRUN (line 119) | SYS_TIMER_GETOVERRUN = 109 constant SYS_TIMER_SETTIME (line 120) | SYS_TIMER_SETTIME = 110 constant SYS_TIMER_DELETE (line 121) | SYS_TIMER_DELETE = 111 constant SYS_CLOCK_SETTIME (line 122) | SYS_CLOCK_SETTIME = 112 constant SYS_CLOCK_GETTIME (line 123) | SYS_CLOCK_GETTIME = 113 constant SYS_CLOCK_GETRES (line 124) | SYS_CLOCK_GETRES = 114 constant SYS_CLOCK_NANOSLEEP (line 125) | SYS_CLOCK_NANOSLEEP = 115 constant SYS_SYSLOG (line 126) | SYS_SYSLOG = 116 constant SYS_PTRACE (line 127) | SYS_PTRACE = 117 constant SYS_SCHED_SETPARAM (line 128) | SYS_SCHED_SETPARAM = 118 constant SYS_SCHED_SETSCHEDULER (line 129) | SYS_SCHED_SETSCHEDULER = 119 constant SYS_SCHED_GETSCHEDULER (line 130) | SYS_SCHED_GETSCHEDULER = 120 constant SYS_SCHED_GETPARAM (line 131) | SYS_SCHED_GETPARAM = 121 constant SYS_SCHED_SETAFFINITY (line 132) | SYS_SCHED_SETAFFINITY = 122 constant SYS_SCHED_GETAFFINITY (line 133) | SYS_SCHED_GETAFFINITY = 123 constant SYS_SCHED_YIELD (line 134) | SYS_SCHED_YIELD = 124 constant SYS_SCHED_GET_PRIORITY_MAX (line 135) | SYS_SCHED_GET_PRIORITY_MAX = 125 constant SYS_SCHED_GET_PRIORITY_MIN (line 136) | SYS_SCHED_GET_PRIORITY_MIN = 126 constant SYS_SCHED_RR_GET_INTERVAL (line 137) | SYS_SCHED_RR_GET_INTERVAL = 127 constant SYS_RESTART_SYSCALL (line 138) | SYS_RESTART_SYSCALL = 128 constant SYS_KILL (line 139) | SYS_KILL = 129 constant SYS_TKILL (line 140) | SYS_TKILL = 130 constant SYS_TGKILL (line 141) | SYS_TGKILL = 131 constant SYS_SIGALTSTACK (line 142) | SYS_SIGALTSTACK = 132 constant SYS_RT_SIGSUSPEND (line 143) | SYS_RT_SIGSUSPEND = 133 constant SYS_RT_SIGACTION (line 144) | SYS_RT_SIGACTION = 134 constant SYS_RT_SIGPROCMASK (line 145) | SYS_RT_SIGPROCMASK = 135 constant SYS_RT_SIGPENDING (line 146) | SYS_RT_SIGPENDING = 136 constant SYS_RT_SIGTIMEDWAIT (line 147) | SYS_RT_SIGTIMEDWAIT = 137 constant SYS_RT_SIGQUEUEINFO (line 148) | SYS_RT_SIGQUEUEINFO = 138 constant SYS_RT_SIGRETURN (line 149) | SYS_RT_SIGRETURN = 139 constant SYS_SETPRIORITY (line 150) | SYS_SETPRIORITY = 140 constant SYS_GETPRIORITY (line 151) | SYS_GETPRIORITY = 141 constant SYS_REBOOT (line 152) | SYS_REBOOT = 142 constant SYS_SETREGID (line 153) | SYS_SETREGID = 143 constant SYS_SETGID (line 154) | SYS_SETGID = 144 constant SYS_SETREUID (line 155) | SYS_SETREUID = 145 constant SYS_SETUID (line 156) | SYS_SETUID = 146 constant SYS_SETRESUID (line 157) | SYS_SETRESUID = 147 constant SYS_GETRESUID (line 158) | SYS_GETRESUID = 148 constant SYS_SETRESGID (line 159) | SYS_SETRESGID = 149 constant SYS_GETRESGID (line 160) | SYS_GETRESGID = 150 constant SYS_SETFSUID (line 161) | SYS_SETFSUID = 151 constant SYS_SETFSGID (line 162) | SYS_SETFSGID = 152 constant SYS_TIMES (line 163) | SYS_TIMES = 153 constant SYS_SETPGID (line 164) | SYS_SETPGID = 154 constant SYS_GETPGID (line 165) | SYS_GETPGID = 155 constant SYS_GETSID (line 166) | SYS_GETSID = 156 constant SYS_SETSID (line 167) | SYS_SETSID = 157 constant SYS_GETGROUPS (line 168) | SYS_GETGROUPS = 158 constant SYS_SETGROUPS (line 169) | SYS_SETGROUPS = 159 constant SYS_UNAME (line 170) | SYS_UNAME = 160 constant SYS_SETHOSTNAME (line 171) | SYS_SETHOSTNAME = 161 constant SYS_SETDOMAINNAME (line 172) | SYS_SETDOMAINNAME = 162 constant SYS_GETRLIMIT (line 173) | SYS_GETRLIMIT = 163 constant SYS_SETRLIMIT (line 174) | SYS_SETRLIMIT = 164 constant SYS_GETRUSAGE (line 175) | SYS_GETRUSAGE = 165 constant SYS_UMASK (line 176) | SYS_UMASK = 166 constant SYS_PRCTL (line 177) | SYS_PRCTL = 167 constant SYS_GETCPU (line 178) | SYS_GETCPU = 168 constant SYS_GETTIMEOFDAY (line 179) | SYS_GETTIMEOFDAY = 169 constant SYS_SETTIMEOFDAY (line 180) | SYS_SETTIMEOFDAY = 170 constant SYS_ADJTIMEX (line 181) | SYS_ADJTIMEX = 171 constant SYS_GETPID (line 182) | SYS_GETPID = 172 constant SYS_GETPPID (line 183) | SYS_GETPPID = 173 constant SYS_GETUID (line 184) | SYS_GETUID = 174 constant SYS_GETEUID (line 185) | SYS_GETEUID = 175 constant SYS_GETGID (line 186) | SYS_GETGID = 176 constant SYS_GETEGID (line 187) | SYS_GETEGID = 177 constant SYS_GETTID (line 188) | SYS_GETTID = 178 constant SYS_SYSINFO (line 189) | SYS_SYSINFO = 179 constant SYS_MQ_OPEN (line 190) | SYS_MQ_OPEN = 180 constant SYS_MQ_UNLINK (line 191) | SYS_MQ_UNLINK = 181 constant SYS_MQ_TIMEDSEND (line 192) | SYS_MQ_TIMEDSEND = 182 constant SYS_MQ_TIMEDRECEIVE (line 193) | SYS_MQ_TIMEDRECEIVE = 183 constant SYS_MQ_NOTIFY (line 194) | SYS_MQ_NOTIFY = 184 constant SYS_MQ_GETSETATTR (line 195) | SYS_MQ_GETSETATTR = 185 constant SYS_MSGGET (line 196) | SYS_MSGGET = 186 constant SYS_MSGCTL (line 197) | SYS_MSGCTL = 187 constant SYS_MSGRCV (line 198) | SYS_MSGRCV = 188 constant SYS_MSGSND (line 199) | SYS_MSGSND = 189 constant SYS_SEMGET (line 200) | SYS_SEMGET = 190 constant SYS_SEMCTL (line 201) | SYS_SEMCTL = 191 constant SYS_SEMTIMEDOP (line 202) | SYS_SEMTIMEDOP = 192 constant SYS_SEMOP (line 203) | SYS_SEMOP = 193 constant SYS_SHMGET (line 204) | SYS_SHMGET = 194 constant SYS_SHMCTL (line 205) | SYS_SHMCTL = 195 constant SYS_SHMAT (line 206) | SYS_SHMAT = 196 constant SYS_SHMDT (line 207) | SYS_SHMDT = 197 constant SYS_SOCKET (line 208) | SYS_SOCKET = 198 constant SYS_SOCKETPAIR (line 209) | SYS_SOCKETPAIR = 199 constant SYS_BIND (line 210) | SYS_BIND = 200 constant SYS_LISTEN (line 211) | SYS_LISTEN = 201 constant SYS_ACCEPT (line 212) | SYS_ACCEPT = 202 constant SYS_CONNECT (line 213) | SYS_CONNECT = 203 constant SYS_GETSOCKNAME (line 214) | SYS_GETSOCKNAME = 204 constant SYS_GETPEERNAME (line 215) | SYS_GETPEERNAME = 205 constant SYS_SENDTO (line 216) | SYS_SENDTO = 206 constant SYS_RECVFROM (line 217) | SYS_RECVFROM = 207 constant SYS_SETSOCKOPT (line 218) | SYS_SETSOCKOPT = 208 constant SYS_GETSOCKOPT (line 219) | SYS_GETSOCKOPT = 209 constant SYS_SHUTDOWN (line 220) | SYS_SHUTDOWN = 210 constant SYS_SENDMSG (line 221) | SYS_SENDMSG = 211 constant SYS_RECVMSG (line 222) | SYS_RECVMSG = 212 constant SYS_READAHEAD (line 223) | SYS_READAHEAD = 213 constant SYS_BRK (line 224) | SYS_BRK = 214 constant SYS_MUNMAP (line 225) | SYS_MUNMAP = 215 constant SYS_MREMAP (line 226) | SYS_MREMAP = 216 constant SYS_ADD_KEY (line 227) | SYS_ADD_KEY = 217 constant SYS_REQUEST_KEY (line 228) | SYS_REQUEST_KEY = 218 constant SYS_KEYCTL (line 229) | SYS_KEYCTL = 219 constant SYS_CLONE (line 230) | SYS_CLONE = 220 constant SYS_EXECVE (line 231) | SYS_EXECVE = 221 constant SYS_MMAP (line 232) | SYS_MMAP = 222 constant SYS_FADVISE64 (line 233) | SYS_FADVISE64 = 223 constant SYS_SWAPON (line 234) | SYS_SWAPON = 224 constant SYS_SWAPOFF (line 235) | SYS_SWAPOFF = 225 constant SYS_MPROTECT (line 236) | SYS_MPROTECT = 226 constant SYS_MSYNC (line 237) | SYS_MSYNC = 227 constant SYS_MLOCK (line 238) | SYS_MLOCK = 228 constant SYS_MUNLOCK (line 239) | SYS_MUNLOCK = 229 constant SYS_MLOCKALL (line 240) | SYS_MLOCKALL = 230 constant SYS_MUNLOCKALL (line 241) | SYS_MUNLOCKALL = 231 constant SYS_MINCORE (line 242) | SYS_MINCORE = 232 constant SYS_MADVISE (line 243) | SYS_MADVISE = 233 constant SYS_REMAP_FILE_PAGES (line 244) | SYS_REMAP_FILE_PAGES = 234 constant SYS_MBIND (line 245) | SYS_MBIND = 235 constant SYS_GET_MEMPOLICY (line 246) | SYS_GET_MEMPOLICY = 236 constant SYS_SET_MEMPOLICY (line 247) | SYS_SET_MEMPOLICY = 237 constant SYS_MIGRATE_PAGES (line 248) | SYS_MIGRATE_PAGES = 238 constant SYS_MOVE_PAGES (line 249) | SYS_MOVE_PAGES = 239 constant SYS_RT_TGSIGQUEUEINFO (line 250) | SYS_RT_TGSIGQUEUEINFO = 240 constant SYS_PERF_EVENT_OPEN (line 251) | SYS_PERF_EVENT_OPEN = 241 constant SYS_ACCEPT4 (line 252) | SYS_ACCEPT4 = 242 constant SYS_RECVMMSG (line 253) | SYS_RECVMMSG = 243 constant SYS_ARCH_SPECIFIC_SYSCALL (line 254) | SYS_ARCH_SPECIFIC_SYSCALL = 244 constant SYS_WAIT4 (line 255) | SYS_WAIT4 = 260 constant SYS_PRLIMIT64 (line 256) | SYS_PRLIMIT64 = 261 constant SYS_FANOTIFY_INIT (line 257) | SYS_FANOTIFY_INIT = 262 constant SYS_FANOTIFY_MARK (line 258) | SYS_FANOTIFY_MARK = 263 constant SYS_NAME_TO_HANDLE_AT (line 259) | SYS_NAME_TO_HANDLE_AT = 264 constant SYS_OPEN_BY_HANDLE_AT (line 260) | SYS_OPEN_BY_HANDLE_AT = 265 constant SYS_CLOCK_ADJTIME (line 261) | SYS_CLOCK_ADJTIME = 266 constant SYS_SYNCFS (line 262) | SYS_SYNCFS = 267 constant SYS_SETNS (line 263) | SYS_SETNS = 268 constant SYS_SENDMMSG (line 264) | SYS_SENDMMSG = 269 constant SYS_PROCESS_VM_READV (line 265) | SYS_PROCESS_VM_READV = 270 constant SYS_PROCESS_VM_WRITEV (line 266) | SYS_PROCESS_VM_WRITEV = 271 constant SYS_KCMP (line 267) | SYS_KCMP = 272 constant SYS_FINIT_MODULE (line 268) | SYS_FINIT_MODULE = 273 constant SYS_SCHED_SETATTR (line 269) | SYS_SCHED_SETATTR = 274 constant SYS_SCHED_GETATTR (line 270) | SYS_SCHED_GETATTR = 275 constant SYS_RENAMEAT2 (line 271) | SYS_RENAMEAT2 = 276 constant SYS_SECCOMP (line 272) | SYS_SECCOMP = 277 constant SYS_GETRANDOM (line 273) | SYS_GETRANDOM = 278 constant SYS_MEMFD_CREATE (line 274) | SYS_MEMFD_CREATE = 279 constant SYS_BPF (line 275) | SYS_BPF = 280 constant SYS_EXECVEAT (line 276) | SYS_EXECVEAT = 281 constant SYS_USERFAULTFD (line 277) | SYS_USERFAULTFD = 282 constant SYS_MEMBARRIER (line 278) | SYS_MEMBARRIER = 283 constant SYS_MLOCK2 (line 279) | SYS_MLOCK2 = 284 constant SYS_COPY_FILE_RANGE (line 280) | SYS_COPY_FILE_RANGE = 285 constant SYS_PREADV2 (line 281) | SYS_PREADV2 = 286 constant SYS_PWRITEV2 (line 282) | SYS_PWRITEV2 = 287 constant SYS_PKEY_MPROTECT (line 283) | SYS_PKEY_MPROTECT = 288 constant SYS_PKEY_ALLOC (line 284) | SYS_PKEY_ALLOC = 289 constant SYS_PKEY_FREE (line 285) | SYS_PKEY_FREE = 290 constant SYS_STATX (line 286) | SYS_STATX = 291 constant SYS_IO_PGETEVENTS (line 287) | SYS_IO_PGETEVENTS = 292 constant SYS_RSEQ (line 288) | SYS_RSEQ = 293 constant SYS_KEXEC_FILE_LOAD (line 289) | SYS_KEXEC_FILE_LOAD = 294 constant SYS_PIDFD_SEND_SIGNAL (line 290) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 291) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 292) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 293) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 294) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 295) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 296) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 297) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 298) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 299) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 300) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 301) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 302) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 303) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 304) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 305) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 306) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 307) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 308) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go constant SYS_SYSCALL (line 10) | SYS_SYSCALL = 4000 constant SYS_EXIT (line 11) | SYS_EXIT = 4001 constant SYS_FORK (line 12) | SYS_FORK = 4002 constant SYS_READ (line 13) | SYS_READ = 4003 constant SYS_WRITE (line 14) | SYS_WRITE = 4004 constant SYS_OPEN (line 15) | SYS_OPEN = 4005 constant SYS_CLOSE (line 16) | SYS_CLOSE = 4006 constant SYS_WAITPID (line 17) | SYS_WAITPID = 4007 constant SYS_CREAT (line 18) | SYS_CREAT = 4008 constant SYS_LINK (line 19) | SYS_LINK = 4009 constant SYS_UNLINK (line 20) | SYS_UNLINK = 4010 constant SYS_EXECVE (line 21) | SYS_EXECVE = 4011 constant SYS_CHDIR (line 22) | SYS_CHDIR = 4012 constant SYS_TIME (line 23) | SYS_TIME = 4013 constant SYS_MKNOD (line 24) | SYS_MKNOD = 4014 constant SYS_CHMOD (line 25) | SYS_CHMOD = 4015 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 4016 constant SYS_BREAK (line 27) | SYS_BREAK = 4017 constant SYS_UNUSED18 (line 28) | SYS_UNUSED18 = 4018 constant SYS_LSEEK (line 29) | SYS_LSEEK = 4019 constant SYS_GETPID (line 30) | SYS_GETPID = 4020 constant SYS_MOUNT (line 31) | SYS_MOUNT = 4021 constant SYS_UMOUNT (line 32) | SYS_UMOUNT = 4022 constant SYS_SETUID (line 33) | SYS_SETUID = 4023 constant SYS_GETUID (line 34) | SYS_GETUID = 4024 constant SYS_STIME (line 35) | SYS_STIME = 4025 constant SYS_PTRACE (line 36) | SYS_PTRACE = 4026 constant SYS_ALARM (line 37) | SYS_ALARM = 4027 constant SYS_UNUSED28 (line 38) | SYS_UNUSED28 = 4028 constant SYS_PAUSE (line 39) | SYS_PAUSE = 4029 constant SYS_UTIME (line 40) | SYS_UTIME = 4030 constant SYS_STTY (line 41) | SYS_STTY = 4031 constant SYS_GTTY (line 42) | SYS_GTTY = 4032 constant SYS_ACCESS (line 43) | SYS_ACCESS = 4033 constant SYS_NICE (line 44) | SYS_NICE = 4034 constant SYS_FTIME (line 45) | SYS_FTIME = 4035 constant SYS_SYNC (line 46) | SYS_SYNC = 4036 constant SYS_KILL (line 47) | SYS_KILL = 4037 constant SYS_RENAME (line 48) | SYS_RENAME = 4038 constant SYS_MKDIR (line 49) | SYS_MKDIR = 4039 constant SYS_RMDIR (line 50) | SYS_RMDIR = 4040 constant SYS_DUP (line 51) | SYS_DUP = 4041 constant SYS_PIPE (line 52) | SYS_PIPE = 4042 constant SYS_TIMES (line 53) | SYS_TIMES = 4043 constant SYS_PROF (line 54) | SYS_PROF = 4044 constant SYS_BRK (line 55) | SYS_BRK = 4045 constant SYS_SETGID (line 56) | SYS_SETGID = 4046 constant SYS_GETGID (line 57) | SYS_GETGID = 4047 constant SYS_SIGNAL (line 58) | SYS_SIGNAL = 4048 constant SYS_GETEUID (line 59) | SYS_GETEUID = 4049 constant SYS_GETEGID (line 60) | SYS_GETEGID = 4050 constant SYS_ACCT (line 61) | SYS_ACCT = 4051 constant SYS_UMOUNT2 (line 62) | SYS_UMOUNT2 = 4052 constant SYS_LOCK (line 63) | SYS_LOCK = 4053 constant SYS_IOCTL (line 64) | SYS_IOCTL = 4054 constant SYS_FCNTL (line 65) | SYS_FCNTL = 4055 constant SYS_MPX (line 66) | SYS_MPX = 4056 constant SYS_SETPGID (line 67) | SYS_SETPGID = 4057 constant SYS_ULIMIT (line 68) | SYS_ULIMIT = 4058 constant SYS_UNUSED59 (line 69) | SYS_UNUSED59 = 4059 constant SYS_UMASK (line 70) | SYS_UMASK = 4060 constant SYS_CHROOT (line 71) | SYS_CHROOT = 4061 constant SYS_USTAT (line 72) | SYS_USTAT = 4062 constant SYS_DUP2 (line 73) | SYS_DUP2 = 4063 constant SYS_GETPPID (line 74) | SYS_GETPPID = 4064 constant SYS_GETPGRP (line 75) | SYS_GETPGRP = 4065 constant SYS_SETSID (line 76) | SYS_SETSID = 4066 constant SYS_SIGACTION (line 77) | SYS_SIGACTION = 4067 constant SYS_SGETMASK (line 78) | SYS_SGETMASK = 4068 constant SYS_SSETMASK (line 79) | SYS_SSETMASK = 4069 constant SYS_SETREUID (line 80) | SYS_SETREUID = 4070 constant SYS_SETREGID (line 81) | SYS_SETREGID = 4071 constant SYS_SIGSUSPEND (line 82) | SYS_SIGSUSPEND = 4072 constant SYS_SIGPENDING (line 83) | SYS_SIGPENDING = 4073 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 4074 constant SYS_SETRLIMIT (line 85) | SYS_SETRLIMIT = 4075 constant SYS_GETRLIMIT (line 86) | SYS_GETRLIMIT = 4076 constant SYS_GETRUSAGE (line 87) | SYS_GETRUSAGE = 4077 constant SYS_GETTIMEOFDAY (line 88) | SYS_GETTIMEOFDAY = 4078 constant SYS_SETTIMEOFDAY (line 89) | SYS_SETTIMEOFDAY = 4079 constant SYS_GETGROUPS (line 90) | SYS_GETGROUPS = 4080 constant SYS_SETGROUPS (line 91) | SYS_SETGROUPS = 4081 constant SYS_RESERVED82 (line 92) | SYS_RESERVED82 = 4082 constant SYS_SYMLINK (line 93) | SYS_SYMLINK = 4083 constant SYS_UNUSED84 (line 94) | SYS_UNUSED84 = 4084 constant SYS_READLINK (line 95) | SYS_READLINK = 4085 constant SYS_USELIB (line 96) | SYS_USELIB = 4086 constant SYS_SWAPON (line 97) | SYS_SWAPON = 4087 constant SYS_REBOOT (line 98) | SYS_REBOOT = 4088 constant SYS_READDIR (line 99) | SYS_READDIR = 4089 constant SYS_MMAP (line 100) | SYS_MMAP = 4090 constant SYS_MUNMAP (line 101) | SYS_MUNMAP = 4091 constant SYS_TRUNCATE (line 102) | SYS_TRUNCATE = 4092 constant SYS_FTRUNCATE (line 103) | SYS_FTRUNCATE = 4093 constant SYS_FCHMOD (line 104) | SYS_FCHMOD = 4094 constant SYS_FCHOWN (line 105) | SYS_FCHOWN = 4095 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 4096 constant SYS_SETPRIORITY (line 107) | SYS_SETPRIORITY = 4097 constant SYS_PROFIL (line 108) | SYS_PROFIL = 4098 constant SYS_STATFS (line 109) | SYS_STATFS = 4099 constant SYS_FSTATFS (line 110) | SYS_FSTATFS = 4100 constant SYS_IOPERM (line 111) | SYS_IOPERM = 4101 constant SYS_SOCKETCALL (line 112) | SYS_SOCKETCALL = 4102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 4103 constant SYS_SETITIMER (line 114) | SYS_SETITIMER = 4104 constant SYS_GETITIMER (line 115) | SYS_GETITIMER = 4105 constant SYS_STAT (line 116) | SYS_STAT = 4106 constant SYS_LSTAT (line 117) | SYS_LSTAT = 4107 constant SYS_FSTAT (line 118) | SYS_FSTAT = 4108 constant SYS_UNUSED109 (line 119) | SYS_UNUSED109 = 4109 constant SYS_IOPL (line 120) | SYS_IOPL = 4110 constant SYS_VHANGUP (line 121) | SYS_VHANGUP = 4111 constant SYS_IDLE (line 122) | SYS_IDLE = 4112 constant SYS_VM86 (line 123) | SYS_VM86 = 4113 constant SYS_WAIT4 (line 124) | SYS_WAIT4 = 4114 constant SYS_SWAPOFF (line 125) | SYS_SWAPOFF = 4115 constant SYS_SYSINFO (line 126) | SYS_SYSINFO = 4116 constant SYS_IPC (line 127) | SYS_IPC = 4117 constant SYS_FSYNC (line 128) | SYS_FSYNC = 4118 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 4119 constant SYS_CLONE (line 130) | SYS_CLONE = 4120 constant SYS_SETDOMAINNAME (line 131) | SYS_SETDOMAINNAME = 4121 constant SYS_UNAME (line 132) | SYS_UNAME = 4122 constant SYS_MODIFY_LDT (line 133) | SYS_MODIFY_LDT = 4123 constant SYS_ADJTIMEX (line 134) | SYS_ADJTIMEX = 4124 constant SYS_MPROTECT (line 135) | SYS_MPROTECT = 4125 constant SYS_SIGPROCMASK (line 136) | SYS_SIGPROCMASK = 4126 constant SYS_CREATE_MODULE (line 137) | SYS_CREATE_MODULE = 4127 constant SYS_INIT_MODULE (line 138) | SYS_INIT_MODULE = 4128 constant SYS_DELETE_MODULE (line 139) | SYS_DELETE_MODULE = 4129 constant SYS_GET_KERNEL_SYMS (line 140) | SYS_GET_KERNEL_SYMS = 4130 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 4131 constant SYS_GETPGID (line 142) | SYS_GETPGID = 4132 constant SYS_FCHDIR (line 143) | SYS_FCHDIR = 4133 constant SYS_BDFLUSH (line 144) | SYS_BDFLUSH = 4134 constant SYS_SYSFS (line 145) | SYS_SYSFS = 4135 constant SYS_PERSONALITY (line 146) | SYS_PERSONALITY = 4136 constant SYS_AFS_SYSCALL (line 147) | SYS_AFS_SYSCALL = 4137 constant SYS_SETFSUID (line 148) | SYS_SETFSUID = 4138 constant SYS_SETFSGID (line 149) | SYS_SETFSGID = 4139 constant SYS__LLSEEK (line 150) | SYS__LLSEEK = 4140 constant SYS_GETDENTS (line 151) | SYS_GETDENTS = 4141 constant SYS__NEWSELECT (line 152) | SYS__NEWSELECT = 4142 constant SYS_FLOCK (line 153) | SYS_FLOCK = 4143 constant SYS_MSYNC (line 154) | SYS_MSYNC = 4144 constant SYS_READV (line 155) | SYS_READV = 4145 constant SYS_WRITEV (line 156) | SYS_WRITEV = 4146 constant SYS_CACHEFLUSH (line 157) | SYS_CACHEFLUSH = 4147 constant SYS_CACHECTL (line 158) | SYS_CACHECTL = 4148 constant SYS_SYSMIPS (line 159) | SYS_SYSMIPS = 4149 constant SYS_UNUSED150 (line 160) | SYS_UNUSED150 = 4150 constant SYS_GETSID (line 161) | SYS_GETSID = 4151 constant SYS_FDATASYNC (line 162) | SYS_FDATASYNC = 4152 constant SYS__SYSCTL (line 163) | SYS__SYSCTL = 4153 constant SYS_MLOCK (line 164) | SYS_MLOCK = 4154 constant SYS_MUNLOCK (line 165) | SYS_MUNLOCK = 4155 constant SYS_MLOCKALL (line 166) | SYS_MLOCKALL = 4156 constant SYS_MUNLOCKALL (line 167) | SYS_MUNLOCKALL = 4157 constant SYS_SCHED_SETPARAM (line 168) | SYS_SCHED_SETPARAM = 4158 constant SYS_SCHED_GETPARAM (line 169) | SYS_SCHED_GETPARAM = 4159 constant SYS_SCHED_SETSCHEDULER (line 170) | SYS_SCHED_SETSCHEDULER = 4160 constant SYS_SCHED_GETSCHEDULER (line 171) | SYS_SCHED_GETSCHEDULER = 4161 constant SYS_SCHED_YIELD (line 172) | SYS_SCHED_YIELD = 4162 constant SYS_SCHED_GET_PRIORITY_MAX (line 173) | SYS_SCHED_GET_PRIORITY_MAX = 4163 constant SYS_SCHED_GET_PRIORITY_MIN (line 174) | SYS_SCHED_GET_PRIORITY_MIN = 4164 constant SYS_SCHED_RR_GET_INTERVAL (line 175) | SYS_SCHED_RR_GET_INTERVAL = 4165 constant SYS_NANOSLEEP (line 176) | SYS_NANOSLEEP = 4166 constant SYS_MREMAP (line 177) | SYS_MREMAP = 4167 constant SYS_ACCEPT (line 178) | SYS_ACCEPT = 4168 constant SYS_BIND (line 179) | SYS_BIND = 4169 constant SYS_CONNECT (line 180) | SYS_CONNECT = 4170 constant SYS_GETPEERNAME (line 181) | SYS_GETPEERNAME = 4171 constant SYS_GETSOCKNAME (line 182) | SYS_GETSOCKNAME = 4172 constant SYS_GETSOCKOPT (line 183) | SYS_GETSOCKOPT = 4173 constant SYS_LISTEN (line 184) | SYS_LISTEN = 4174 constant SYS_RECV (line 185) | SYS_RECV = 4175 constant SYS_RECVFROM (line 186) | SYS_RECVFROM = 4176 constant SYS_RECVMSG (line 187) | SYS_RECVMSG = 4177 constant SYS_SEND (line 188) | SYS_SEND = 4178 constant SYS_SENDMSG (line 189) | SYS_SENDMSG = 4179 constant SYS_SENDTO (line 190) | SYS_SENDTO = 4180 constant SYS_SETSOCKOPT (line 191) | SYS_SETSOCKOPT = 4181 constant SYS_SHUTDOWN (line 192) | SYS_SHUTDOWN = 4182 constant SYS_SOCKET (line 193) | SYS_SOCKET = 4183 constant SYS_SOCKETPAIR (line 194) | SYS_SOCKETPAIR = 4184 constant SYS_SETRESUID (line 195) | SYS_SETRESUID = 4185 constant SYS_GETRESUID (line 196) | SYS_GETRESUID = 4186 constant SYS_QUERY_MODULE (line 197) | SYS_QUERY_MODULE = 4187 constant SYS_POLL (line 198) | SYS_POLL = 4188 constant SYS_NFSSERVCTL (line 199) | SYS_NFSSERVCTL = 4189 constant SYS_SETRESGID (line 200) | SYS_SETRESGID = 4190 constant SYS_GETRESGID (line 201) | SYS_GETRESGID = 4191 constant SYS_PRCTL (line 202) | SYS_PRCTL = 4192 constant SYS_RT_SIGRETURN (line 203) | SYS_RT_SIGRETURN = 4193 constant SYS_RT_SIGACTION (line 204) | SYS_RT_SIGACTION = 4194 constant SYS_RT_SIGPROCMASK (line 205) | SYS_RT_SIGPROCMASK = 4195 constant SYS_RT_SIGPENDING (line 206) | SYS_RT_SIGPENDING = 4196 constant SYS_RT_SIGTIMEDWAIT (line 207) | SYS_RT_SIGTIMEDWAIT = 4197 constant SYS_RT_SIGQUEUEINFO (line 208) | SYS_RT_SIGQUEUEINFO = 4198 constant SYS_RT_SIGSUSPEND (line 209) | SYS_RT_SIGSUSPEND = 4199 constant SYS_PREAD64 (line 210) | SYS_PREAD64 = 4200 constant SYS_PWRITE64 (line 211) | SYS_PWRITE64 = 4201 constant SYS_CHOWN (line 212) | SYS_CHOWN = 4202 constant SYS_GETCWD (line 213) | SYS_GETCWD = 4203 constant SYS_CAPGET (line 214) | SYS_CAPGET = 4204 constant SYS_CAPSET (line 215) | SYS_CAPSET = 4205 constant SYS_SIGALTSTACK (line 216) | SYS_SIGALTSTACK = 4206 constant SYS_SENDFILE (line 217) | SYS_SENDFILE = 4207 constant SYS_GETPMSG (line 218) | SYS_GETPMSG = 4208 constant SYS_PUTPMSG (line 219) | SYS_PUTPMSG = 4209 constant SYS_MMAP2 (line 220) | SYS_MMAP2 = 4210 constant SYS_TRUNCATE64 (line 221) | SYS_TRUNCATE64 = 4211 constant SYS_FTRUNCATE64 (line 222) | SYS_FTRUNCATE64 = 4212 constant SYS_STAT64 (line 223) | SYS_STAT64 = 4213 constant SYS_LSTAT64 (line 224) | SYS_LSTAT64 = 4214 constant SYS_FSTAT64 (line 225) | SYS_FSTAT64 = 4215 constant SYS_PIVOT_ROOT (line 226) | SYS_PIVOT_ROOT = 4216 constant SYS_MINCORE (line 227) | SYS_MINCORE = 4217 constant SYS_MADVISE (line 228) | SYS_MADVISE = 4218 constant SYS_GETDENTS64 (line 229) | SYS_GETDENTS64 = 4219 constant SYS_FCNTL64 (line 230) | SYS_FCNTL64 = 4220 constant SYS_RESERVED221 (line 231) | SYS_RESERVED221 = 4221 constant SYS_GETTID (line 232) | SYS_GETTID = 4222 constant SYS_READAHEAD (line 233) | SYS_READAHEAD = 4223 constant SYS_SETXATTR (line 234) | SYS_SETXATTR = 4224 constant SYS_LSETXATTR (line 235) | SYS_LSETXATTR = 4225 constant SYS_FSETXATTR (line 236) | SYS_FSETXATTR = 4226 constant SYS_GETXATTR (line 237) | SYS_GETXATTR = 4227 constant SYS_LGETXATTR (line 238) | SYS_LGETXATTR = 4228 constant SYS_FGETXATTR (line 239) | SYS_FGETXATTR = 4229 constant SYS_LISTXATTR (line 240) | SYS_LISTXATTR = 4230 constant SYS_LLISTXATTR (line 241) | SYS_LLISTXATTR = 4231 constant SYS_FLISTXATTR (line 242) | SYS_FLISTXATTR = 4232 constant SYS_REMOVEXATTR (line 243) | SYS_REMOVEXATTR = 4233 constant SYS_LREMOVEXATTR (line 244) | SYS_LREMOVEXATTR = 4234 constant SYS_FREMOVEXATTR (line 245) | SYS_FREMOVEXATTR = 4235 constant SYS_TKILL (line 246) | SYS_TKILL = 4236 constant SYS_SENDFILE64 (line 247) | SYS_SENDFILE64 = 4237 constant SYS_FUTEX (line 248) | SYS_FUTEX = 4238 constant SYS_SCHED_SETAFFINITY (line 249) | SYS_SCHED_SETAFFINITY = 4239 constant SYS_SCHED_GETAFFINITY (line 250) | SYS_SCHED_GETAFFINITY = 4240 constant SYS_IO_SETUP (line 251) | SYS_IO_SETUP = 4241 constant SYS_IO_DESTROY (line 252) | SYS_IO_DESTROY = 4242 constant SYS_IO_GETEVENTS (line 253) | SYS_IO_GETEVENTS = 4243 constant SYS_IO_SUBMIT (line 254) | SYS_IO_SUBMIT = 4244 constant SYS_IO_CANCEL (line 255) | SYS_IO_CANCEL = 4245 constant SYS_EXIT_GROUP (line 256) | SYS_EXIT_GROUP = 4246 constant SYS_LOOKUP_DCOOKIE (line 257) | SYS_LOOKUP_DCOOKIE = 4247 constant SYS_EPOLL_CREATE (line 258) | SYS_EPOLL_CREATE = 4248 constant SYS_EPOLL_CTL (line 259) | SYS_EPOLL_CTL = 4249 constant SYS_EPOLL_WAIT (line 260) | SYS_EPOLL_WAIT = 4250 constant SYS_REMAP_FILE_PAGES (line 261) | SYS_REMAP_FILE_PAGES = 4251 constant SYS_SET_TID_ADDRESS (line 262) | SYS_SET_TID_ADDRESS = 4252 constant SYS_RESTART_SYSCALL (line 263) | SYS_RESTART_SYSCALL = 4253 constant SYS_FADVISE64 (line 264) | SYS_FADVISE64 = 4254 constant SYS_STATFS64 (line 265) | SYS_STATFS64 = 4255 constant SYS_FSTATFS64 (line 266) | SYS_FSTATFS64 = 4256 constant SYS_TIMER_CREATE (line 267) | SYS_TIMER_CREATE = 4257 constant SYS_TIMER_SETTIME (line 268) | SYS_TIMER_SETTIME = 4258 constant SYS_TIMER_GETTIME (line 269) | SYS_TIMER_GETTIME = 4259 constant SYS_TIMER_GETOVERRUN (line 270) | SYS_TIMER_GETOVERRUN = 4260 constant SYS_TIMER_DELETE (line 271) | SYS_TIMER_DELETE = 4261 constant SYS_CLOCK_SETTIME (line 272) | SYS_CLOCK_SETTIME = 4262 constant SYS_CLOCK_GETTIME (line 273) | SYS_CLOCK_GETTIME = 4263 constant SYS_CLOCK_GETRES (line 274) | SYS_CLOCK_GETRES = 4264 constant SYS_CLOCK_NANOSLEEP (line 275) | SYS_CLOCK_NANOSLEEP = 4265 constant SYS_TGKILL (line 276) | SYS_TGKILL = 4266 constant SYS_UTIMES (line 277) | SYS_UTIMES = 4267 constant SYS_MBIND (line 278) | SYS_MBIND = 4268 constant SYS_GET_MEMPOLICY (line 279) | SYS_GET_MEMPOLICY = 4269 constant SYS_SET_MEMPOLICY (line 280) | SYS_SET_MEMPOLICY = 4270 constant SYS_MQ_OPEN (line 281) | SYS_MQ_OPEN = 4271 constant SYS_MQ_UNLINK (line 282) | SYS_MQ_UNLINK = 4272 constant SYS_MQ_TIMEDSEND (line 283) | SYS_MQ_TIMEDSEND = 4273 constant SYS_MQ_TIMEDRECEIVE (line 284) | SYS_MQ_TIMEDRECEIVE = 4274 constant SYS_MQ_NOTIFY (line 285) | SYS_MQ_NOTIFY = 4275 constant SYS_MQ_GETSETATTR (line 286) | SYS_MQ_GETSETATTR = 4276 constant SYS_VSERVER (line 287) | SYS_VSERVER = 4277 constant SYS_WAITID (line 288) | SYS_WAITID = 4278 constant SYS_ADD_KEY (line 289) | SYS_ADD_KEY = 4280 constant SYS_REQUEST_KEY (line 290) | SYS_REQUEST_KEY = 4281 constant SYS_KEYCTL (line 291) | SYS_KEYCTL = 4282 constant SYS_SET_THREAD_AREA (line 292) | SYS_SET_THREAD_AREA = 4283 constant SYS_INOTIFY_INIT (line 293) | SYS_INOTIFY_INIT = 4284 constant SYS_INOTIFY_ADD_WATCH (line 294) | SYS_INOTIFY_ADD_WATCH = 4285 constant SYS_INOTIFY_RM_WATCH (line 295) | SYS_INOTIFY_RM_WATCH = 4286 constant SYS_MIGRATE_PAGES (line 296) | SYS_MIGRATE_PAGES = 4287 constant SYS_OPENAT (line 297) | SYS_OPENAT = 4288 constant SYS_MKDIRAT (line 298) | SYS_MKDIRAT = 4289 constant SYS_MKNODAT (line 299) | SYS_MKNODAT = 4290 constant SYS_FCHOWNAT (line 300) | SYS_FCHOWNAT = 4291 constant SYS_FUTIMESAT (line 301) | SYS_FUTIMESAT = 4292 constant SYS_FSTATAT64 (line 302) | SYS_FSTATAT64 = 4293 constant SYS_UNLINKAT (line 303) | SYS_UNLINKAT = 4294 constant SYS_RENAMEAT (line 304) | SYS_RENAMEAT = 4295 constant SYS_LINKAT (line 305) | SYS_LINKAT = 4296 constant SYS_SYMLINKAT (line 306) | SYS_SYMLINKAT = 4297 constant SYS_READLINKAT (line 307) | SYS_READLINKAT = 4298 constant SYS_FCHMODAT (line 308) | SYS_FCHMODAT = 4299 constant SYS_FACCESSAT (line 309) | SYS_FACCESSAT = 4300 constant SYS_PSELECT6 (line 310) | SYS_PSELECT6 = 4301 constant SYS_PPOLL (line 311) | SYS_PPOLL = 4302 constant SYS_UNSHARE (line 312) | SYS_UNSHARE = 4303 constant SYS_SPLICE (line 313) | SYS_SPLICE = 4304 constant SYS_SYNC_FILE_RANGE (line 314) | SYS_SYNC_FILE_RANGE = 4305 constant SYS_TEE (line 315) | SYS_TEE = 4306 constant SYS_VMSPLICE (line 316) | SYS_VMSPLICE = 4307 constant SYS_MOVE_PAGES (line 317) | SYS_MOVE_PAGES = 4308 constant SYS_SET_ROBUST_LIST (line 318) | SYS_SET_ROBUST_LIST = 4309 constant SYS_GET_ROBUST_LIST (line 319) | SYS_GET_ROBUST_LIST = 4310 constant SYS_KEXEC_LOAD (line 320) | SYS_KEXEC_LOAD = 4311 constant SYS_GETCPU (line 321) | SYS_GETCPU = 4312 constant SYS_EPOLL_PWAIT (line 322) | SYS_EPOLL_PWAIT = 4313 constant SYS_IOPRIO_SET (line 323) | SYS_IOPRIO_SET = 4314 constant SYS_IOPRIO_GET (line 324) | SYS_IOPRIO_GET = 4315 constant SYS_UTIMENSAT (line 325) | SYS_UTIMENSAT = 4316 constant SYS_SIGNALFD (line 326) | SYS_SIGNALFD = 4317 constant SYS_TIMERFD (line 327) | SYS_TIMERFD = 4318 constant SYS_EVENTFD (line 328) | SYS_EVENTFD = 4319 constant SYS_FALLOCATE (line 329) | SYS_FALLOCATE = 4320 constant SYS_TIMERFD_CREATE (line 330) | SYS_TIMERFD_CREATE = 4321 constant SYS_TIMERFD_GETTIME (line 331) | SYS_TIMERFD_GETTIME = 4322 constant SYS_TIMERFD_SETTIME (line 332) | SYS_TIMERFD_SETTIME = 4323 constant SYS_SIGNALFD4 (line 333) | SYS_SIGNALFD4 = 4324 constant SYS_EVENTFD2 (line 334) | SYS_EVENTFD2 = 4325 constant SYS_EPOLL_CREATE1 (line 335) | SYS_EPOLL_CREATE1 = 4326 constant SYS_DUP3 (line 336) | SYS_DUP3 = 4327 constant SYS_PIPE2 (line 337) | SYS_PIPE2 = 4328 constant SYS_INOTIFY_INIT1 (line 338) | SYS_INOTIFY_INIT1 = 4329 constant SYS_PREADV (line 339) | SYS_PREADV = 4330 constant SYS_PWRITEV (line 340) | SYS_PWRITEV = 4331 constant SYS_RT_TGSIGQUEUEINFO (line 341) | SYS_RT_TGSIGQUEUEINFO = 4332 constant SYS_PERF_EVENT_OPEN (line 342) | SYS_PERF_EVENT_OPEN = 4333 constant SYS_ACCEPT4 (line 343) | SYS_ACCEPT4 = 4334 constant SYS_RECVMMSG (line 344) | SYS_RECVMMSG = 4335 constant SYS_FANOTIFY_INIT (line 345) | SYS_FANOTIFY_INIT = 4336 constant SYS_FANOTIFY_MARK (line 346) | SYS_FANOTIFY_MARK = 4337 constant SYS_PRLIMIT64 (line 347) | SYS_PRLIMIT64 = 4338 constant SYS_NAME_TO_HANDLE_AT (line 348) | SYS_NAME_TO_HANDLE_AT = 4339 constant SYS_OPEN_BY_HANDLE_AT (line 349) | SYS_OPEN_BY_HANDLE_AT = 4340 constant SYS_CLOCK_ADJTIME (line 350) | SYS_CLOCK_ADJTIME = 4341 constant SYS_SYNCFS (line 351) | SYS_SYNCFS = 4342 constant SYS_SENDMMSG (line 352) | SYS_SENDMMSG = 4343 constant SYS_SETNS (line 353) | SYS_SETNS = 4344 constant SYS_PROCESS_VM_READV (line 354) | SYS_PROCESS_VM_READV = 4345 constant SYS_PROCESS_VM_WRITEV (line 355) | SYS_PROCESS_VM_WRITEV = 4346 constant SYS_KCMP (line 356) | SYS_KCMP = 4347 constant SYS_FINIT_MODULE (line 357) | SYS_FINIT_MODULE = 4348 constant SYS_SCHED_SETATTR (line 358) | SYS_SCHED_SETATTR = 4349 constant SYS_SCHED_GETATTR (line 359) | SYS_SCHED_GETATTR = 4350 constant SYS_RENAMEAT2 (line 360) | SYS_RENAMEAT2 = 4351 constant SYS_SECCOMP (line 361) | SYS_SECCOMP = 4352 constant SYS_GETRANDOM (line 362) | SYS_GETRANDOM = 4353 constant SYS_MEMFD_CREATE (line 363) | SYS_MEMFD_CREATE = 4354 constant SYS_BPF (line 364) | SYS_BPF = 4355 constant SYS_EXECVEAT (line 365) | SYS_EXECVEAT = 4356 constant SYS_USERFAULTFD (line 366) | SYS_USERFAULTFD = 4357 constant SYS_MEMBARRIER (line 367) | SYS_MEMBARRIER = 4358 constant SYS_MLOCK2 (line 368) | SYS_MLOCK2 = 4359 constant SYS_COPY_FILE_RANGE (line 369) | SYS_COPY_FILE_RANGE = 4360 constant SYS_PREADV2 (line 370) | SYS_PREADV2 = 4361 constant SYS_PWRITEV2 (line 371) | SYS_PWRITEV2 = 4362 constant SYS_PKEY_MPROTECT (line 372) | SYS_PKEY_MPROTECT = 4363 constant SYS_PKEY_ALLOC (line 373) | SYS_PKEY_ALLOC = 4364 constant SYS_PKEY_FREE (line 374) | SYS_PKEY_FREE = 4365 constant SYS_STATX (line 375) | SYS_STATX = 4366 constant SYS_RSEQ (line 376) | SYS_RSEQ = 4367 constant SYS_IO_PGETEVENTS (line 377) | SYS_IO_PGETEVENTS = 4368 constant SYS_SEMGET (line 378) | SYS_SEMGET = 4393 constant SYS_SEMCTL (line 379) | SYS_SEMCTL = 4394 constant SYS_SHMGET (line 380) | SYS_SHMGET = 4395 constant SYS_SHMCTL (line 381) | SYS_SHMCTL = 4396 constant SYS_SHMAT (line 382) | SYS_SHMAT = 4397 constant SYS_SHMDT (line 383) | SYS_SHMDT = 4398 constant SYS_MSGGET (line 384) | SYS_MSGGET = 4399 constant SYS_MSGSND (line 385) | SYS_MSGSND = 4400 constant SYS_MSGRCV (line 386) | SYS_MSGRCV = 4401 constant SYS_MSGCTL (line 387) | SYS_MSGCTL = 4402 constant SYS_CLOCK_GETTIME64 (line 388) | SYS_CLOCK_GETTIME64 = 4403 constant SYS_CLOCK_SETTIME64 (line 389) | SYS_CLOCK_SETTIME64 = 4404 constant SYS_CLOCK_ADJTIME64 (line 390) | SYS_CLOCK_ADJTIME64 = 4405 constant SYS_CLOCK_GETRES_TIME64 (line 391) | SYS_CLOCK_GETRES_TIME64 = 4406 constant SYS_CLOCK_NANOSLEEP_TIME64 (line 392) | SYS_CLOCK_NANOSLEEP_TIME64 = 4407 constant SYS_TIMER_GETTIME64 (line 393) | SYS_TIMER_GETTIME64 = 4408 constant SYS_TIMER_SETTIME64 (line 394) | SYS_TIMER_SETTIME64 = 4409 constant SYS_TIMERFD_GETTIME64 (line 395) | SYS_TIMERFD_GETTIME64 = 4410 constant SYS_TIMERFD_SETTIME64 (line 396) | SYS_TIMERFD_SETTIME64 = 4411 constant SYS_UTIMENSAT_TIME64 (line 397) | SYS_UTIMENSAT_TIME64 = 4412 constant SYS_PSELECT6_TIME64 (line 398) | SYS_PSELECT6_TIME64 = 4413 constant SYS_PPOLL_TIME64 (line 399) | SYS_PPOLL_TIME64 = 4414 constant SYS_IO_PGETEVENTS_TIME64 (line 400) | SYS_IO_PGETEVENTS_TIME64 = 4416 constant SYS_RECVMMSG_TIME64 (line 401) | SYS_RECVMMSG_TIME64 = 4417 constant SYS_MQ_TIMEDSEND_TIME64 (line 402) | SYS_MQ_TIMEDSEND_TIME64 = 4418 constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 403) | SYS_MQ_TIMEDRECEIVE_TIME64 = 4419 constant SYS_SEMTIMEDOP_TIME64 (line 404) | SYS_SEMTIMEDOP_TIME64 = 4420 constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 405) | SYS_RT_SIGTIMEDWAIT_TIME64 = 4421 constant SYS_FUTEX_TIME64 (line 406) | SYS_FUTEX_TIME64 = 4422 constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 407) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 4423 constant SYS_PIDFD_SEND_SIGNAL (line 408) | SYS_PIDFD_SEND_SIGNAL = 4424 constant SYS_IO_URING_SETUP (line 409) | SYS_IO_URING_SETUP = 4425 constant SYS_IO_URING_ENTER (line 410) | SYS_IO_URING_ENTER = 4426 constant SYS_IO_URING_REGISTER (line 411) | SYS_IO_URING_REGISTER = 4427 constant SYS_OPEN_TREE (line 412) | SYS_OPEN_TREE = 4428 constant SYS_MOVE_MOUNT (line 413) | SYS_MOVE_MOUNT = 4429 constant SYS_FSOPEN (line 414) | SYS_FSOPEN = 4430 constant SYS_FSCONFIG (line 415) | SYS_FSCONFIG = 4431 constant SYS_FSMOUNT (line 416) | SYS_FSMOUNT = 4432 constant SYS_FSPICK (line 417) | SYS_FSPICK = 4433 constant SYS_PIDFD_OPEN (line 418) | SYS_PIDFD_OPEN = 4434 constant SYS_CLONE3 (line 419) | SYS_CLONE3 = 4435 constant SYS_CLOSE_RANGE (line 420) | SYS_CLOSE_RANGE = 4436 constant SYS_OPENAT2 (line 421) | SYS_OPENAT2 = 4437 constant SYS_PIDFD_GETFD (line 422) | SYS_PIDFD_GETFD = 4438 constant SYS_FACCESSAT2 (line 423) | SYS_FACCESSAT2 = 4439 constant SYS_PROCESS_MADVISE (line 424) | SYS_PROCESS_MADVISE = 4440 constant SYS_EPOLL_PWAIT2 (line 425) | SYS_EPOLL_PWAIT2 = 4441 constant SYS_MOUNT_SETATTR (line 426) | SYS_MOUNT_SETATTR = 4442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go constant SYS_READ (line 10) | SYS_READ = 5000 constant SYS_WRITE (line 11) | SYS_WRITE = 5001 constant SYS_OPEN (line 12) | SYS_OPEN = 5002 constant SYS_CLOSE (line 13) | SYS_CLOSE = 5003 constant SYS_STAT (line 14) | SYS_STAT = 5004 constant SYS_FSTAT (line 15) | SYS_FSTAT = 5005 constant SYS_LSTAT (line 16) | SYS_LSTAT = 5006 constant SYS_POLL (line 17) | SYS_POLL = 5007 constant SYS_LSEEK (line 18) | SYS_LSEEK = 5008 constant SYS_MMAP (line 19) | SYS_MMAP = 5009 constant SYS_MPROTECT (line 20) | SYS_MPROTECT = 5010 constant SYS_MUNMAP (line 21) | SYS_MUNMAP = 5011 constant SYS_BRK (line 22) | SYS_BRK = 5012 constant SYS_RT_SIGACTION (line 23) | SYS_RT_SIGACTION = 5013 constant SYS_RT_SIGPROCMASK (line 24) | SYS_RT_SIGPROCMASK = 5014 constant SYS_IOCTL (line 25) | SYS_IOCTL = 5015 constant SYS_PREAD64 (line 26) | SYS_PREAD64 = 5016 constant SYS_PWRITE64 (line 27) | SYS_PWRITE64 = 5017 constant SYS_READV (line 28) | SYS_READV = 5018 constant SYS_WRITEV (line 29) | SYS_WRITEV = 5019 constant SYS_ACCESS (line 30) | SYS_ACCESS = 5020 constant SYS_PIPE (line 31) | SYS_PIPE = 5021 constant SYS__NEWSELECT (line 32) | SYS__NEWSELECT = 5022 constant SYS_SCHED_YIELD (line 33) | SYS_SCHED_YIELD = 5023 constant SYS_MREMAP (line 34) | SYS_MREMAP = 5024 constant SYS_MSYNC (line 35) | SYS_MSYNC = 5025 constant SYS_MINCORE (line 36) | SYS_MINCORE = 5026 constant SYS_MADVISE (line 37) | SYS_MADVISE = 5027 constant SYS_SHMGET (line 38) | SYS_SHMGET = 5028 constant SYS_SHMAT (line 39) | SYS_SHMAT = 5029 constant SYS_SHMCTL (line 40) | SYS_SHMCTL = 5030 constant SYS_DUP (line 41) | SYS_DUP = 5031 constant SYS_DUP2 (line 42) | SYS_DUP2 = 5032 constant SYS_PAUSE (line 43) | SYS_PAUSE = 5033 constant SYS_NANOSLEEP (line 44) | SYS_NANOSLEEP = 5034 constant SYS_GETITIMER (line 45) | SYS_GETITIMER = 5035 constant SYS_SETITIMER (line 46) | SYS_SETITIMER = 5036 constant SYS_ALARM (line 47) | SYS_ALARM = 5037 constant SYS_GETPID (line 48) | SYS_GETPID = 5038 constant SYS_SENDFILE (line 49) | SYS_SENDFILE = 5039 constant SYS_SOCKET (line 50) | SYS_SOCKET = 5040 constant SYS_CONNECT (line 51) | SYS_CONNECT = 5041 constant SYS_ACCEPT (line 52) | SYS_ACCEPT = 5042 constant SYS_SENDTO (line 53) | SYS_SENDTO = 5043 constant SYS_RECVFROM (line 54) | SYS_RECVFROM = 5044 constant SYS_SENDMSG (line 55) | SYS_SENDMSG = 5045 constant SYS_RECVMSG (line 56) | SYS_RECVMSG = 5046 constant SYS_SHUTDOWN (line 57) | SYS_SHUTDOWN = 5047 constant SYS_BIND (line 58) | SYS_BIND = 5048 constant SYS_LISTEN (line 59) | SYS_LISTEN = 5049 constant SYS_GETSOCKNAME (line 60) | SYS_GETSOCKNAME = 5050 constant SYS_GETPEERNAME (line 61) | SYS_GETPEERNAME = 5051 constant SYS_SOCKETPAIR (line 62) | SYS_SOCKETPAIR = 5052 constant SYS_SETSOCKOPT (line 63) | SYS_SETSOCKOPT = 5053 constant SYS_GETSOCKOPT (line 64) | SYS_GETSOCKOPT = 5054 constant SYS_CLONE (line 65) | SYS_CLONE = 5055 constant SYS_FORK (line 66) | SYS_FORK = 5056 constant SYS_EXECVE (line 67) | SYS_EXECVE = 5057 constant SYS_EXIT (line 68) | SYS_EXIT = 5058 constant SYS_WAIT4 (line 69) | SYS_WAIT4 = 5059 constant SYS_KILL (line 70) | SYS_KILL = 5060 constant SYS_UNAME (line 71) | SYS_UNAME = 5061 constant SYS_SEMGET (line 72) | SYS_SEMGET = 5062 constant SYS_SEMOP (line 73) | SYS_SEMOP = 5063 constant SYS_SEMCTL (line 74) | SYS_SEMCTL = 5064 constant SYS_SHMDT (line 75) | SYS_SHMDT = 5065 constant SYS_MSGGET (line 76) | SYS_MSGGET = 5066 constant SYS_MSGSND (line 77) | SYS_MSGSND = 5067 constant SYS_MSGRCV (line 78) | SYS_MSGRCV = 5068 constant SYS_MSGCTL (line 79) | SYS_MSGCTL = 5069 constant SYS_FCNTL (line 80) | SYS_FCNTL = 5070 constant SYS_FLOCK (line 81) | SYS_FLOCK = 5071 constant SYS_FSYNC (line 82) | SYS_FSYNC = 5072 constant SYS_FDATASYNC (line 83) | SYS_FDATASYNC = 5073 constant SYS_TRUNCATE (line 84) | SYS_TRUNCATE = 5074 constant SYS_FTRUNCATE (line 85) | SYS_FTRUNCATE = 5075 constant SYS_GETDENTS (line 86) | SYS_GETDENTS = 5076 constant SYS_GETCWD (line 87) | SYS_GETCWD = 5077 constant SYS_CHDIR (line 88) | SYS_CHDIR = 5078 constant SYS_FCHDIR (line 89) | SYS_FCHDIR = 5079 constant SYS_RENAME (line 90) | SYS_RENAME = 5080 constant SYS_MKDIR (line 91) | SYS_MKDIR = 5081 constant SYS_RMDIR (line 92) | SYS_RMDIR = 5082 constant SYS_CREAT (line 93) | SYS_CREAT = 5083 constant SYS_LINK (line 94) | SYS_LINK = 5084 constant SYS_UNLINK (line 95) | SYS_UNLINK = 5085 constant SYS_SYMLINK (line 96) | SYS_SYMLINK = 5086 constant SYS_READLINK (line 97) | SYS_READLINK = 5087 constant SYS_CHMOD (line 98) | SYS_CHMOD = 5088 constant SYS_FCHMOD (line 99) | SYS_FCHMOD = 5089 constant SYS_CHOWN (line 100) | SYS_CHOWN = 5090 constant SYS_FCHOWN (line 101) | SYS_FCHOWN = 5091 constant SYS_LCHOWN (line 102) | SYS_LCHOWN = 5092 constant SYS_UMASK (line 103) | SYS_UMASK = 5093 constant SYS_GETTIMEOFDAY (line 104) | SYS_GETTIMEOFDAY = 5094 constant SYS_GETRLIMIT (line 105) | SYS_GETRLIMIT = 5095 constant SYS_GETRUSAGE (line 106) | SYS_GETRUSAGE = 5096 constant SYS_SYSINFO (line 107) | SYS_SYSINFO = 5097 constant SYS_TIMES (line 108) | SYS_TIMES = 5098 constant SYS_PTRACE (line 109) | SYS_PTRACE = 5099 constant SYS_GETUID (line 110) | SYS_GETUID = 5100 constant SYS_SYSLOG (line 111) | SYS_SYSLOG = 5101 constant SYS_GETGID (line 112) | SYS_GETGID = 5102 constant SYS_SETUID (line 113) | SYS_SETUID = 5103 constant SYS_SETGID (line 114) | SYS_SETGID = 5104 constant SYS_GETEUID (line 115) | SYS_GETEUID = 5105 constant SYS_GETEGID (line 116) | SYS_GETEGID = 5106 constant SYS_SETPGID (line 117) | SYS_SETPGID = 5107 constant SYS_GETPPID (line 118) | SYS_GETPPID = 5108 constant SYS_GETPGRP (line 119) | SYS_GETPGRP = 5109 constant SYS_SETSID (line 120) | SYS_SETSID = 5110 constant SYS_SETREUID (line 121) | SYS_SETREUID = 5111 constant SYS_SETREGID (line 122) | SYS_SETREGID = 5112 constant SYS_GETGROUPS (line 123) | SYS_GETGROUPS = 5113 constant SYS_SETGROUPS (line 124) | SYS_SETGROUPS = 5114 constant SYS_SETRESUID (line 125) | SYS_SETRESUID = 5115 constant SYS_GETRESUID (line 126) | SYS_GETRESUID = 5116 constant SYS_SETRESGID (line 127) | SYS_SETRESGID = 5117 constant SYS_GETRESGID (line 128) | SYS_GETRESGID = 5118 constant SYS_GETPGID (line 129) | SYS_GETPGID = 5119 constant SYS_SETFSUID (line 130) | SYS_SETFSUID = 5120 constant SYS_SETFSGID (line 131) | SYS_SETFSGID = 5121 constant SYS_GETSID (line 132) | SYS_GETSID = 5122 constant SYS_CAPGET (line 133) | SYS_CAPGET = 5123 constant SYS_CAPSET (line 134) | SYS_CAPSET = 5124 constant SYS_RT_SIGPENDING (line 135) | SYS_RT_SIGPENDING = 5125 constant SYS_RT_SIGTIMEDWAIT (line 136) | SYS_RT_SIGTIMEDWAIT = 5126 constant SYS_RT_SIGQUEUEINFO (line 137) | SYS_RT_SIGQUEUEINFO = 5127 constant SYS_RT_SIGSUSPEND (line 138) | SYS_RT_SIGSUSPEND = 5128 constant SYS_SIGALTSTACK (line 139) | SYS_SIGALTSTACK = 5129 constant SYS_UTIME (line 140) | SYS_UTIME = 5130 constant SYS_MKNOD (line 141) | SYS_MKNOD = 5131 constant SYS_PERSONALITY (line 142) | SYS_PERSONALITY = 5132 constant SYS_USTAT (line 143) | SYS_USTAT = 5133 constant SYS_STATFS (line 144) | SYS_STATFS = 5134 constant SYS_FSTATFS (line 145) | SYS_FSTATFS = 5135 constant SYS_SYSFS (line 146) | SYS_SYSFS = 5136 constant SYS_GETPRIORITY (line 147) | SYS_GETPRIORITY = 5137 constant SYS_SETPRIORITY (line 148) | SYS_SETPRIORITY = 5138 constant SYS_SCHED_SETPARAM (line 149) | SYS_SCHED_SETPARAM = 5139 constant SYS_SCHED_GETPARAM (line 150) | SYS_SCHED_GETPARAM = 5140 constant SYS_SCHED_SETSCHEDULER (line 151) | SYS_SCHED_SETSCHEDULER = 5141 constant SYS_SCHED_GETSCHEDULER (line 152) | SYS_SCHED_GETSCHEDULER = 5142 constant SYS_SCHED_GET_PRIORITY_MAX (line 153) | SYS_SCHED_GET_PRIORITY_MAX = 5143 constant SYS_SCHED_GET_PRIORITY_MIN (line 154) | SYS_SCHED_GET_PRIORITY_MIN = 5144 constant SYS_SCHED_RR_GET_INTERVAL (line 155) | SYS_SCHED_RR_GET_INTERVAL = 5145 constant SYS_MLOCK (line 156) | SYS_MLOCK = 5146 constant SYS_MUNLOCK (line 157) | SYS_MUNLOCK = 5147 constant SYS_MLOCKALL (line 158) | SYS_MLOCKALL = 5148 constant SYS_MUNLOCKALL (line 159) | SYS_MUNLOCKALL = 5149 constant SYS_VHANGUP (line 160) | SYS_VHANGUP = 5150 constant SYS_PIVOT_ROOT (line 161) | SYS_PIVOT_ROOT = 5151 constant SYS__SYSCTL (line 162) | SYS__SYSCTL = 5152 constant SYS_PRCTL (line 163) | SYS_PRCTL = 5153 constant SYS_ADJTIMEX (line 164) | SYS_ADJTIMEX = 5154 constant SYS_SETRLIMIT (line 165) | SYS_SETRLIMIT = 5155 constant SYS_CHROOT (line 166) | SYS_CHROOT = 5156 constant SYS_SYNC (line 167) | SYS_SYNC = 5157 constant SYS_ACCT (line 168) | SYS_ACCT = 5158 constant SYS_SETTIMEOFDAY (line 169) | SYS_SETTIMEOFDAY = 5159 constant SYS_MOUNT (line 170) | SYS_MOUNT = 5160 constant SYS_UMOUNT2 (line 171) | SYS_UMOUNT2 = 5161 constant SYS_SWAPON (line 172) | SYS_SWAPON = 5162 constant SYS_SWAPOFF (line 173) | SYS_SWAPOFF = 5163 constant SYS_REBOOT (line 174) | SYS_REBOOT = 5164 constant SYS_SETHOSTNAME (line 175) | SYS_SETHOSTNAME = 5165 constant SYS_SETDOMAINNAME (line 176) | SYS_SETDOMAINNAME = 5166 constant SYS_CREATE_MODULE (line 177) | SYS_CREATE_MODULE = 5167 constant SYS_INIT_MODULE (line 178) | SYS_INIT_MODULE = 5168 constant SYS_DELETE_MODULE (line 179) | SYS_DELETE_MODULE = 5169 constant SYS_GET_KERNEL_SYMS (line 180) | SYS_GET_KERNEL_SYMS = 5170 constant SYS_QUERY_MODULE (line 181) | SYS_QUERY_MODULE = 5171 constant SYS_QUOTACTL (line 182) | SYS_QUOTACTL = 5172 constant SYS_NFSSERVCTL (line 183) | SYS_NFSSERVCTL = 5173 constant SYS_GETPMSG (line 184) | SYS_GETPMSG = 5174 constant SYS_PUTPMSG (line 185) | SYS_PUTPMSG = 5175 constant SYS_AFS_SYSCALL (line 186) | SYS_AFS_SYSCALL = 5176 constant SYS_RESERVED177 (line 187) | SYS_RESERVED177 = 5177 constant SYS_GETTID (line 188) | SYS_GETTID = 5178 constant SYS_READAHEAD (line 189) | SYS_READAHEAD = 5179 constant SYS_SETXATTR (line 190) | SYS_SETXATTR = 5180 constant SYS_LSETXATTR (line 191) | SYS_LSETXATTR = 5181 constant SYS_FSETXATTR (line 192) | SYS_FSETXATTR = 5182 constant SYS_GETXATTR (line 193) | SYS_GETXATTR = 5183 constant SYS_LGETXATTR (line 194) | SYS_LGETXATTR = 5184 constant SYS_FGETXATTR (line 195) | SYS_FGETXATTR = 5185 constant SYS_LISTXATTR (line 196) | SYS_LISTXATTR = 5186 constant SYS_LLISTXATTR (line 197) | SYS_LLISTXATTR = 5187 constant SYS_FLISTXATTR (line 198) | SYS_FLISTXATTR = 5188 constant SYS_REMOVEXATTR (line 199) | SYS_REMOVEXATTR = 5189 constant SYS_LREMOVEXATTR (line 200) | SYS_LREMOVEXATTR = 5190 constant SYS_FREMOVEXATTR (line 201) | SYS_FREMOVEXATTR = 5191 constant SYS_TKILL (line 202) | SYS_TKILL = 5192 constant SYS_RESERVED193 (line 203) | SYS_RESERVED193 = 5193 constant SYS_FUTEX (line 204) | SYS_FUTEX = 5194 constant SYS_SCHED_SETAFFINITY (line 205) | SYS_SCHED_SETAFFINITY = 5195 constant SYS_SCHED_GETAFFINITY (line 206) | SYS_SCHED_GETAFFINITY = 5196 constant SYS_CACHEFLUSH (line 207) | SYS_CACHEFLUSH = 5197 constant SYS_CACHECTL (line 208) | SYS_CACHECTL = 5198 constant SYS_SYSMIPS (line 209) | SYS_SYSMIPS = 5199 constant SYS_IO_SETUP (line 210) | SYS_IO_SETUP = 5200 constant SYS_IO_DESTROY (line 211) | SYS_IO_DESTROY = 5201 constant SYS_IO_GETEVENTS (line 212) | SYS_IO_GETEVENTS = 5202 constant SYS_IO_SUBMIT (line 213) | SYS_IO_SUBMIT = 5203 constant SYS_IO_CANCEL (line 214) | SYS_IO_CANCEL = 5204 constant SYS_EXIT_GROUP (line 215) | SYS_EXIT_GROUP = 5205 constant SYS_LOOKUP_DCOOKIE (line 216) | SYS_LOOKUP_DCOOKIE = 5206 constant SYS_EPOLL_CREATE (line 217) | SYS_EPOLL_CREATE = 5207 constant SYS_EPOLL_CTL (line 218) | SYS_EPOLL_CTL = 5208 constant SYS_EPOLL_WAIT (line 219) | SYS_EPOLL_WAIT = 5209 constant SYS_REMAP_FILE_PAGES (line 220) | SYS_REMAP_FILE_PAGES = 5210 constant SYS_RT_SIGRETURN (line 221) | SYS_RT_SIGRETURN = 5211 constant SYS_SET_TID_ADDRESS (line 222) | SYS_SET_TID_ADDRESS = 5212 constant SYS_RESTART_SYSCALL (line 223) | SYS_RESTART_SYSCALL = 5213 constant SYS_SEMTIMEDOP (line 224) | SYS_SEMTIMEDOP = 5214 constant SYS_FADVISE64 (line 225) | SYS_FADVISE64 = 5215 constant SYS_TIMER_CREATE (line 226) | SYS_TIMER_CREATE = 5216 constant SYS_TIMER_SETTIME (line 227) | SYS_TIMER_SETTIME = 5217 constant SYS_TIMER_GETTIME (line 228) | SYS_TIMER_GETTIME = 5218 constant SYS_TIMER_GETOVERRUN (line 229) | SYS_TIMER_GETOVERRUN = 5219 constant SYS_TIMER_DELETE (line 230) | SYS_TIMER_DELETE = 5220 constant SYS_CLOCK_SETTIME (line 231) | SYS_CLOCK_SETTIME = 5221 constant SYS_CLOCK_GETTIME (line 232) | SYS_CLOCK_GETTIME = 5222 constant SYS_CLOCK_GETRES (line 233) | SYS_CLOCK_GETRES = 5223 constant SYS_CLOCK_NANOSLEEP (line 234) | SYS_CLOCK_NANOSLEEP = 5224 constant SYS_TGKILL (line 235) | SYS_TGKILL = 5225 constant SYS_UTIMES (line 236) | SYS_UTIMES = 5226 constant SYS_MBIND (line 237) | SYS_MBIND = 5227 constant SYS_GET_MEMPOLICY (line 238) | SYS_GET_MEMPOLICY = 5228 constant SYS_SET_MEMPOLICY (line 239) | SYS_SET_MEMPOLICY = 5229 constant SYS_MQ_OPEN (line 240) | SYS_MQ_OPEN = 5230 constant SYS_MQ_UNLINK (line 241) | SYS_MQ_UNLINK = 5231 constant SYS_MQ_TIMEDSEND (line 242) | SYS_MQ_TIMEDSEND = 5232 constant SYS_MQ_TIMEDRECEIVE (line 243) | SYS_MQ_TIMEDRECEIVE = 5233 constant SYS_MQ_NOTIFY (line 244) | SYS_MQ_NOTIFY = 5234 constant SYS_MQ_GETSETATTR (line 245) | SYS_MQ_GETSETATTR = 5235 constant SYS_VSERVER (line 246) | SYS_VSERVER = 5236 constant SYS_WAITID (line 247) | SYS_WAITID = 5237 constant SYS_ADD_KEY (line 248) | SYS_ADD_KEY = 5239 constant SYS_REQUEST_KEY (line 249) | SYS_REQUEST_KEY = 5240 constant SYS_KEYCTL (line 250) | SYS_KEYCTL = 5241 constant SYS_SET_THREAD_AREA (line 251) | SYS_SET_THREAD_AREA = 5242 constant SYS_INOTIFY_INIT (line 252) | SYS_INOTIFY_INIT = 5243 constant SYS_INOTIFY_ADD_WATCH (line 253) | SYS_INOTIFY_ADD_WATCH = 5244 constant SYS_INOTIFY_RM_WATCH (line 254) | SYS_INOTIFY_RM_WATCH = 5245 constant SYS_MIGRATE_PAGES (line 255) | SYS_MIGRATE_PAGES = 5246 constant SYS_OPENAT (line 256) | SYS_OPENAT = 5247 constant SYS_MKDIRAT (line 257) | SYS_MKDIRAT = 5248 constant SYS_MKNODAT (line 258) | SYS_MKNODAT = 5249 constant SYS_FCHOWNAT (line 259) | SYS_FCHOWNAT = 5250 constant SYS_FUTIMESAT (line 260) | SYS_FUTIMESAT = 5251 constant SYS_NEWFSTATAT (line 261) | SYS_NEWFSTATAT = 5252 constant SYS_UNLINKAT (line 262) | SYS_UNLINKAT = 5253 constant SYS_RENAMEAT (line 263) | SYS_RENAMEAT = 5254 constant SYS_LINKAT (line 264) | SYS_LINKAT = 5255 constant SYS_SYMLINKAT (line 265) | SYS_SYMLINKAT = 5256 constant SYS_READLINKAT (line 266) | SYS_READLINKAT = 5257 constant SYS_FCHMODAT (line 267) | SYS_FCHMODAT = 5258 constant SYS_FACCESSAT (line 268) | SYS_FACCESSAT = 5259 constant SYS_PSELECT6 (line 269) | SYS_PSELECT6 = 5260 constant SYS_PPOLL (line 270) | SYS_PPOLL = 5261 constant SYS_UNSHARE (line 271) | SYS_UNSHARE = 5262 constant SYS_SPLICE (line 272) | SYS_SPLICE = 5263 constant SYS_SYNC_FILE_RANGE (line 273) | SYS_SYNC_FILE_RANGE = 5264 constant SYS_TEE (line 274) | SYS_TEE = 5265 constant SYS_VMSPLICE (line 275) | SYS_VMSPLICE = 5266 constant SYS_MOVE_PAGES (line 276) | SYS_MOVE_PAGES = 5267 constant SYS_SET_ROBUST_LIST (line 277) | SYS_SET_ROBUST_LIST = 5268 constant SYS_GET_ROBUST_LIST (line 278) | SYS_GET_ROBUST_LIST = 5269 constant SYS_KEXEC_LOAD (line 279) | SYS_KEXEC_LOAD = 5270 constant SYS_GETCPU (line 280) | SYS_GETCPU = 5271 constant SYS_EPOLL_PWAIT (line 281) | SYS_EPOLL_PWAIT = 5272 constant SYS_IOPRIO_SET (line 282) | SYS_IOPRIO_SET = 5273 constant SYS_IOPRIO_GET (line 283) | SYS_IOPRIO_GET = 5274 constant SYS_UTIMENSAT (line 284) | SYS_UTIMENSAT = 5275 constant SYS_SIGNALFD (line 285) | SYS_SIGNALFD = 5276 constant SYS_TIMERFD (line 286) | SYS_TIMERFD = 5277 constant SYS_EVENTFD (line 287) | SYS_EVENTFD = 5278 constant SYS_FALLOCATE (line 288) | SYS_FALLOCATE = 5279 constant SYS_TIMERFD_CREATE (line 289) | SYS_TIMERFD_CREATE = 5280 constant SYS_TIMERFD_GETTIME (line 290) | SYS_TIMERFD_GETTIME = 5281 constant SYS_TIMERFD_SETTIME (line 291) | SYS_TIMERFD_SETTIME = 5282 constant SYS_SIGNALFD4 (line 292) | SYS_SIGNALFD4 = 5283 constant SYS_EVENTFD2 (line 293) | SYS_EVENTFD2 = 5284 constant SYS_EPOLL_CREATE1 (line 294) | SYS_EPOLL_CREATE1 = 5285 constant SYS_DUP3 (line 295) | SYS_DUP3 = 5286 constant SYS_PIPE2 (line 296) | SYS_PIPE2 = 5287 constant SYS_INOTIFY_INIT1 (line 297) | SYS_INOTIFY_INIT1 = 5288 constant SYS_PREADV (line 298) | SYS_PREADV = 5289 constant SYS_PWRITEV (line 299) | SYS_PWRITEV = 5290 constant SYS_RT_TGSIGQUEUEINFO (line 300) | SYS_RT_TGSIGQUEUEINFO = 5291 constant SYS_PERF_EVENT_OPEN (line 301) | SYS_PERF_EVENT_OPEN = 5292 constant SYS_ACCEPT4 (line 302) | SYS_ACCEPT4 = 5293 constant SYS_RECVMMSG (line 303) | SYS_RECVMMSG = 5294 constant SYS_FANOTIFY_INIT (line 304) | SYS_FANOTIFY_INIT = 5295 constant SYS_FANOTIFY_MARK (line 305) | SYS_FANOTIFY_MARK = 5296 constant SYS_PRLIMIT64 (line 306) | SYS_PRLIMIT64 = 5297 constant SYS_NAME_TO_HANDLE_AT (line 307) | SYS_NAME_TO_HANDLE_AT = 5298 constant SYS_OPEN_BY_HANDLE_AT (line 308) | SYS_OPEN_BY_HANDLE_AT = 5299 constant SYS_CLOCK_ADJTIME (line 309) | SYS_CLOCK_ADJTIME = 5300 constant SYS_SYNCFS (line 310) | SYS_SYNCFS = 5301 constant SYS_SENDMMSG (line 311) | SYS_SENDMMSG = 5302 constant SYS_SETNS (line 312) | SYS_SETNS = 5303 constant SYS_PROCESS_VM_READV (line 313) | SYS_PROCESS_VM_READV = 5304 constant SYS_PROCESS_VM_WRITEV (line 314) | SYS_PROCESS_VM_WRITEV = 5305 constant SYS_KCMP (line 315) | SYS_KCMP = 5306 constant SYS_FINIT_MODULE (line 316) | SYS_FINIT_MODULE = 5307 constant SYS_GETDENTS64 (line 317) | SYS_GETDENTS64 = 5308 constant SYS_SCHED_SETATTR (line 318) | SYS_SCHED_SETATTR = 5309 constant SYS_SCHED_GETATTR (line 319) | SYS_SCHED_GETATTR = 5310 constant SYS_RENAMEAT2 (line 320) | SYS_RENAMEAT2 = 5311 constant SYS_SECCOMP (line 321) | SYS_SECCOMP = 5312 constant SYS_GETRANDOM (line 322) | SYS_GETRANDOM = 5313 constant SYS_MEMFD_CREATE (line 323) | SYS_MEMFD_CREATE = 5314 constant SYS_BPF (line 324) | SYS_BPF = 5315 constant SYS_EXECVEAT (line 325) | SYS_EXECVEAT = 5316 constant SYS_USERFAULTFD (line 326) | SYS_USERFAULTFD = 5317 constant SYS_MEMBARRIER (line 327) | SYS_MEMBARRIER = 5318 constant SYS_MLOCK2 (line 328) | SYS_MLOCK2 = 5319 constant SYS_COPY_FILE_RANGE (line 329) | SYS_COPY_FILE_RANGE = 5320 constant SYS_PREADV2 (line 330) | SYS_PREADV2 = 5321 constant SYS_PWRITEV2 (line 331) | SYS_PWRITEV2 = 5322 constant SYS_PKEY_MPROTECT (line 332) | SYS_PKEY_MPROTECT = 5323 constant SYS_PKEY_ALLOC (line 333) | SYS_PKEY_ALLOC = 5324 constant SYS_PKEY_FREE (line 334) | SYS_PKEY_FREE = 5325 constant SYS_STATX (line 335) | SYS_STATX = 5326 constant SYS_RSEQ (line 336) | SYS_RSEQ = 5327 constant SYS_IO_PGETEVENTS (line 337) | SYS_IO_PGETEVENTS = 5328 constant SYS_PIDFD_SEND_SIGNAL (line 338) | SYS_PIDFD_SEND_SIGNAL = 5424 constant SYS_IO_URING_SETUP (line 339) | SYS_IO_URING_SETUP = 5425 constant SYS_IO_URING_ENTER (line 340) | SYS_IO_URING_ENTER = 5426 constant SYS_IO_URING_REGISTER (line 341) | SYS_IO_URING_REGISTER = 5427 constant SYS_OPEN_TREE (line 342) | SYS_OPEN_TREE = 5428 constant SYS_MOVE_MOUNT (line 343) | SYS_MOVE_MOUNT = 5429 constant SYS_FSOPEN (line 344) | SYS_FSOPEN = 5430 constant SYS_FSCONFIG (line 345) | SYS_FSCONFIG = 5431 constant SYS_FSMOUNT (line 346) | SYS_FSMOUNT = 5432 constant SYS_FSPICK (line 347) | SYS_FSPICK = 5433 constant SYS_PIDFD_OPEN (line 348) | SYS_PIDFD_OPEN = 5434 constant SYS_CLONE3 (line 349) | SYS_CLONE3 = 5435 constant SYS_CLOSE_RANGE (line 350) | SYS_CLOSE_RANGE = 5436 constant SYS_OPENAT2 (line 351) | SYS_OPENAT2 = 5437 constant SYS_PIDFD_GETFD (line 352) | SYS_PIDFD_GETFD = 5438 constant SYS_FACCESSAT2 (line 353) | SYS_FACCESSAT2 = 5439 constant SYS_PROCESS_MADVISE (line 354) | SYS_PROCESS_MADVISE = 5440 constant SYS_EPOLL_PWAIT2 (line 355) | SYS_EPOLL_PWAIT2 = 5441 constant SYS_MOUNT_SETATTR (line 356) | SYS_MOUNT_SETATTR = 5442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go constant SYS_READ (line 10) | SYS_READ = 5000 constant SYS_WRITE (line 11) | SYS_WRITE = 5001 constant SYS_OPEN (line 12) | SYS_OPEN = 5002 constant SYS_CLOSE (line 13) | SYS_CLOSE = 5003 constant SYS_STAT (line 14) | SYS_STAT = 5004 constant SYS_FSTAT (line 15) | SYS_FSTAT = 5005 constant SYS_LSTAT (line 16) | SYS_LSTAT = 5006 constant SYS_POLL (line 17) | SYS_POLL = 5007 constant SYS_LSEEK (line 18) | SYS_LSEEK = 5008 constant SYS_MMAP (line 19) | SYS_MMAP = 5009 constant SYS_MPROTECT (line 20) | SYS_MPROTECT = 5010 constant SYS_MUNMAP (line 21) | SYS_MUNMAP = 5011 constant SYS_BRK (line 22) | SYS_BRK = 5012 constant SYS_RT_SIGACTION (line 23) | SYS_RT_SIGACTION = 5013 constant SYS_RT_SIGPROCMASK (line 24) | SYS_RT_SIGPROCMASK = 5014 constant SYS_IOCTL (line 25) | SYS_IOCTL = 5015 constant SYS_PREAD64 (line 26) | SYS_PREAD64 = 5016 constant SYS_PWRITE64 (line 27) | SYS_PWRITE64 = 5017 constant SYS_READV (line 28) | SYS_READV = 5018 constant SYS_WRITEV (line 29) | SYS_WRITEV = 5019 constant SYS_ACCESS (line 30) | SYS_ACCESS = 5020 constant SYS_PIPE (line 31) | SYS_PIPE = 5021 constant SYS__NEWSELECT (line 32) | SYS__NEWSELECT = 5022 constant SYS_SCHED_YIELD (line 33) | SYS_SCHED_YIELD = 5023 constant SYS_MREMAP (line 34) | SYS_MREMAP = 5024 constant SYS_MSYNC (line 35) | SYS_MSYNC = 5025 constant SYS_MINCORE (line 36) | SYS_MINCORE = 5026 constant SYS_MADVISE (line 37) | SYS_MADVISE = 5027 constant SYS_SHMGET (line 38) | SYS_SHMGET = 5028 constant SYS_SHMAT (line 39) | SYS_SHMAT = 5029 constant SYS_SHMCTL (line 40) | SYS_SHMCTL = 5030 constant SYS_DUP (line 41) | SYS_DUP = 5031 constant SYS_DUP2 (line 42) | SYS_DUP2 = 5032 constant SYS_PAUSE (line 43) | SYS_PAUSE = 5033 constant SYS_NANOSLEEP (line 44) | SYS_NANOSLEEP = 5034 constant SYS_GETITIMER (line 45) | SYS_GETITIMER = 5035 constant SYS_SETITIMER (line 46) | SYS_SETITIMER = 5036 constant SYS_ALARM (line 47) | SYS_ALARM = 5037 constant SYS_GETPID (line 48) | SYS_GETPID = 5038 constant SYS_SENDFILE (line 49) | SYS_SENDFILE = 5039 constant SYS_SOCKET (line 50) | SYS_SOCKET = 5040 constant SYS_CONNECT (line 51) | SYS_CONNECT = 5041 constant SYS_ACCEPT (line 52) | SYS_ACCEPT = 5042 constant SYS_SENDTO (line 53) | SYS_SENDTO = 5043 constant SYS_RECVFROM (line 54) | SYS_RECVFROM = 5044 constant SYS_SENDMSG (line 55) | SYS_SENDMSG = 5045 constant SYS_RECVMSG (line 56) | SYS_RECVMSG = 5046 constant SYS_SHUTDOWN (line 57) | SYS_SHUTDOWN = 5047 constant SYS_BIND (line 58) | SYS_BIND = 5048 constant SYS_LISTEN (line 59) | SYS_LISTEN = 5049 constant SYS_GETSOCKNAME (line 60) | SYS_GETSOCKNAME = 5050 constant SYS_GETPEERNAME (line 61) | SYS_GETPEERNAME = 5051 constant SYS_SOCKETPAIR (line 62) | SYS_SOCKETPAIR = 5052 constant SYS_SETSOCKOPT (line 63) | SYS_SETSOCKOPT = 5053 constant SYS_GETSOCKOPT (line 64) | SYS_GETSOCKOPT = 5054 constant SYS_CLONE (line 65) | SYS_CLONE = 5055 constant SYS_FORK (line 66) | SYS_FORK = 5056 constant SYS_EXECVE (line 67) | SYS_EXECVE = 5057 constant SYS_EXIT (line 68) | SYS_EXIT = 5058 constant SYS_WAIT4 (line 69) | SYS_WAIT4 = 5059 constant SYS_KILL (line 70) | SYS_KILL = 5060 constant SYS_UNAME (line 71) | SYS_UNAME = 5061 constant SYS_SEMGET (line 72) | SYS_SEMGET = 5062 constant SYS_SEMOP (line 73) | SYS_SEMOP = 5063 constant SYS_SEMCTL (line 74) | SYS_SEMCTL = 5064 constant SYS_SHMDT (line 75) | SYS_SHMDT = 5065 constant SYS_MSGGET (line 76) | SYS_MSGGET = 5066 constant SYS_MSGSND (line 77) | SYS_MSGSND = 5067 constant SYS_MSGRCV (line 78) | SYS_MSGRCV = 5068 constant SYS_MSGCTL (line 79) | SYS_MSGCTL = 5069 constant SYS_FCNTL (line 80) | SYS_FCNTL = 5070 constant SYS_FLOCK (line 81) | SYS_FLOCK = 5071 constant SYS_FSYNC (line 82) | SYS_FSYNC = 5072 constant SYS_FDATASYNC (line 83) | SYS_FDATASYNC = 5073 constant SYS_TRUNCATE (line 84) | SYS_TRUNCATE = 5074 constant SYS_FTRUNCATE (line 85) | SYS_FTRUNCATE = 5075 constant SYS_GETDENTS (line 86) | SYS_GETDENTS = 5076 constant SYS_GETCWD (line 87) | SYS_GETCWD = 5077 constant SYS_CHDIR (line 88) | SYS_CHDIR = 5078 constant SYS_FCHDIR (line 89) | SYS_FCHDIR = 5079 constant SYS_RENAME (line 90) | SYS_RENAME = 5080 constant SYS_MKDIR (line 91) | SYS_MKDIR = 5081 constant SYS_RMDIR (line 92) | SYS_RMDIR = 5082 constant SYS_CREAT (line 93) | SYS_CREAT = 5083 constant SYS_LINK (line 94) | SYS_LINK = 5084 constant SYS_UNLINK (line 95) | SYS_UNLINK = 5085 constant SYS_SYMLINK (line 96) | SYS_SYMLINK = 5086 constant SYS_READLINK (line 97) | SYS_READLINK = 5087 constant SYS_CHMOD (line 98) | SYS_CHMOD = 5088 constant SYS_FCHMOD (line 99) | SYS_FCHMOD = 5089 constant SYS_CHOWN (line 100) | SYS_CHOWN = 5090 constant SYS_FCHOWN (line 101) | SYS_FCHOWN = 5091 constant SYS_LCHOWN (line 102) | SYS_LCHOWN = 5092 constant SYS_UMASK (line 103) | SYS_UMASK = 5093 constant SYS_GETTIMEOFDAY (line 104) | SYS_GETTIMEOFDAY = 5094 constant SYS_GETRLIMIT (line 105) | SYS_GETRLIMIT = 5095 constant SYS_GETRUSAGE (line 106) | SYS_GETRUSAGE = 5096 constant SYS_SYSINFO (line 107) | SYS_SYSINFO = 5097 constant SYS_TIMES (line 108) | SYS_TIMES = 5098 constant SYS_PTRACE (line 109) | SYS_PTRACE = 5099 constant SYS_GETUID (line 110) | SYS_GETUID = 5100 constant SYS_SYSLOG (line 111) | SYS_SYSLOG = 5101 constant SYS_GETGID (line 112) | SYS_GETGID = 5102 constant SYS_SETUID (line 113) | SYS_SETUID = 5103 constant SYS_SETGID (line 114) | SYS_SETGID = 5104 constant SYS_GETEUID (line 115) | SYS_GETEUID = 5105 constant SYS_GETEGID (line 116) | SYS_GETEGID = 5106 constant SYS_SETPGID (line 117) | SYS_SETPGID = 5107 constant SYS_GETPPID (line 118) | SYS_GETPPID = 5108 constant SYS_GETPGRP (line 119) | SYS_GETPGRP = 5109 constant SYS_SETSID (line 120) | SYS_SETSID = 5110 constant SYS_SETREUID (line 121) | SYS_SETREUID = 5111 constant SYS_SETREGID (line 122) | SYS_SETREGID = 5112 constant SYS_GETGROUPS (line 123) | SYS_GETGROUPS = 5113 constant SYS_SETGROUPS (line 124) | SYS_SETGROUPS = 5114 constant SYS_SETRESUID (line 125) | SYS_SETRESUID = 5115 constant SYS_GETRESUID (line 126) | SYS_GETRESUID = 5116 constant SYS_SETRESGID (line 127) | SYS_SETRESGID = 5117 constant SYS_GETRESGID (line 128) | SYS_GETRESGID = 5118 constant SYS_GETPGID (line 129) | SYS_GETPGID = 5119 constant SYS_SETFSUID (line 130) | SYS_SETFSUID = 5120 constant SYS_SETFSGID (line 131) | SYS_SETFSGID = 5121 constant SYS_GETSID (line 132) | SYS_GETSID = 5122 constant SYS_CAPGET (line 133) | SYS_CAPGET = 5123 constant SYS_CAPSET (line 134) | SYS_CAPSET = 5124 constant SYS_RT_SIGPENDING (line 135) | SYS_RT_SIGPENDING = 5125 constant SYS_RT_SIGTIMEDWAIT (line 136) | SYS_RT_SIGTIMEDWAIT = 5126 constant SYS_RT_SIGQUEUEINFO (line 137) | SYS_RT_SIGQUEUEINFO = 5127 constant SYS_RT_SIGSUSPEND (line 138) | SYS_RT_SIGSUSPEND = 5128 constant SYS_SIGALTSTACK (line 139) | SYS_SIGALTSTACK = 5129 constant SYS_UTIME (line 140) | SYS_UTIME = 5130 constant SYS_MKNOD (line 141) | SYS_MKNOD = 5131 constant SYS_PERSONALITY (line 142) | SYS_PERSONALITY = 5132 constant SYS_USTAT (line 143) | SYS_USTAT = 5133 constant SYS_STATFS (line 144) | SYS_STATFS = 5134 constant SYS_FSTATFS (line 145) | SYS_FSTATFS = 5135 constant SYS_SYSFS (line 146) | SYS_SYSFS = 5136 constant SYS_GETPRIORITY (line 147) | SYS_GETPRIORITY = 5137 constant SYS_SETPRIORITY (line 148) | SYS_SETPRIORITY = 5138 constant SYS_SCHED_SETPARAM (line 149) | SYS_SCHED_SETPARAM = 5139 constant SYS_SCHED_GETPARAM (line 150) | SYS_SCHED_GETPARAM = 5140 constant SYS_SCHED_SETSCHEDULER (line 151) | SYS_SCHED_SETSCHEDULER = 5141 constant SYS_SCHED_GETSCHEDULER (line 152) | SYS_SCHED_GETSCHEDULER = 5142 constant SYS_SCHED_GET_PRIORITY_MAX (line 153) | SYS_SCHED_GET_PRIORITY_MAX = 5143 constant SYS_SCHED_GET_PRIORITY_MIN (line 154) | SYS_SCHED_GET_PRIORITY_MIN = 5144 constant SYS_SCHED_RR_GET_INTERVAL (line 155) | SYS_SCHED_RR_GET_INTERVAL = 5145 constant SYS_MLOCK (line 156) | SYS_MLOCK = 5146 constant SYS_MUNLOCK (line 157) | SYS_MUNLOCK = 5147 constant SYS_MLOCKALL (line 158) | SYS_MLOCKALL = 5148 constant SYS_MUNLOCKALL (line 159) | SYS_MUNLOCKALL = 5149 constant SYS_VHANGUP (line 160) | SYS_VHANGUP = 5150 constant SYS_PIVOT_ROOT (line 161) | SYS_PIVOT_ROOT = 5151 constant SYS__SYSCTL (line 162) | SYS__SYSCTL = 5152 constant SYS_PRCTL (line 163) | SYS_PRCTL = 5153 constant SYS_ADJTIMEX (line 164) | SYS_ADJTIMEX = 5154 constant SYS_SETRLIMIT (line 165) | SYS_SETRLIMIT = 5155 constant SYS_CHROOT (line 166) | SYS_CHROOT = 5156 constant SYS_SYNC (line 167) | SYS_SYNC = 5157 constant SYS_ACCT (line 168) | SYS_ACCT = 5158 constant SYS_SETTIMEOFDAY (line 169) | SYS_SETTIMEOFDAY = 5159 constant SYS_MOUNT (line 170) | SYS_MOUNT = 5160 constant SYS_UMOUNT2 (line 171) | SYS_UMOUNT2 = 5161 constant SYS_SWAPON (line 172) | SYS_SWAPON = 5162 constant SYS_SWAPOFF (line 173) | SYS_SWAPOFF = 5163 constant SYS_REBOOT (line 174) | SYS_REBOOT = 5164 constant SYS_SETHOSTNAME (line 175) | SYS_SETHOSTNAME = 5165 constant SYS_SETDOMAINNAME (line 176) | SYS_SETDOMAINNAME = 5166 constant SYS_CREATE_MODULE (line 177) | SYS_CREATE_MODULE = 5167 constant SYS_INIT_MODULE (line 178) | SYS_INIT_MODULE = 5168 constant SYS_DELETE_MODULE (line 179) | SYS_DELETE_MODULE = 5169 constant SYS_GET_KERNEL_SYMS (line 180) | SYS_GET_KERNEL_SYMS = 5170 constant SYS_QUERY_MODULE (line 181) | SYS_QUERY_MODULE = 5171 constant SYS_QUOTACTL (line 182) | SYS_QUOTACTL = 5172 constant SYS_NFSSERVCTL (line 183) | SYS_NFSSERVCTL = 5173 constant SYS_GETPMSG (line 184) | SYS_GETPMSG = 5174 constant SYS_PUTPMSG (line 185) | SYS_PUTPMSG = 5175 constant SYS_AFS_SYSCALL (line 186) | SYS_AFS_SYSCALL = 5176 constant SYS_RESERVED177 (line 187) | SYS_RESERVED177 = 5177 constant SYS_GETTID (line 188) | SYS_GETTID = 5178 constant SYS_READAHEAD (line 189) | SYS_READAHEAD = 5179 constant SYS_SETXATTR (line 190) | SYS_SETXATTR = 5180 constant SYS_LSETXATTR (line 191) | SYS_LSETXATTR = 5181 constant SYS_FSETXATTR (line 192) | SYS_FSETXATTR = 5182 constant SYS_GETXATTR (line 193) | SYS_GETXATTR = 5183 constant SYS_LGETXATTR (line 194) | SYS_LGETXATTR = 5184 constant SYS_FGETXATTR (line 195) | SYS_FGETXATTR = 5185 constant SYS_LISTXATTR (line 196) | SYS_LISTXATTR = 5186 constant SYS_LLISTXATTR (line 197) | SYS_LLISTXATTR = 5187 constant SYS_FLISTXATTR (line 198) | SYS_FLISTXATTR = 5188 constant SYS_REMOVEXATTR (line 199) | SYS_REMOVEXATTR = 5189 constant SYS_LREMOVEXATTR (line 200) | SYS_LREMOVEXATTR = 5190 constant SYS_FREMOVEXATTR (line 201) | SYS_FREMOVEXATTR = 5191 constant SYS_TKILL (line 202) | SYS_TKILL = 5192 constant SYS_RESERVED193 (line 203) | SYS_RESERVED193 = 5193 constant SYS_FUTEX (line 204) | SYS_FUTEX = 5194 constant SYS_SCHED_SETAFFINITY (line 205) | SYS_SCHED_SETAFFINITY = 5195 constant SYS_SCHED_GETAFFINITY (line 206) | SYS_SCHED_GETAFFINITY = 5196 constant SYS_CACHEFLUSH (line 207) | SYS_CACHEFLUSH = 5197 constant SYS_CACHECTL (line 208) | SYS_CACHECTL = 5198 constant SYS_SYSMIPS (line 209) | SYS_SYSMIPS = 5199 constant SYS_IO_SETUP (line 210) | SYS_IO_SETUP = 5200 constant SYS_IO_DESTROY (line 211) | SYS_IO_DESTROY = 5201 constant SYS_IO_GETEVENTS (line 212) | SYS_IO_GETEVENTS = 5202 constant SYS_IO_SUBMIT (line 213) | SYS_IO_SUBMIT = 5203 constant SYS_IO_CANCEL (line 214) | SYS_IO_CANCEL = 5204 constant SYS_EXIT_GROUP (line 215) | SYS_EXIT_GROUP = 5205 constant SYS_LOOKUP_DCOOKIE (line 216) | SYS_LOOKUP_DCOOKIE = 5206 constant SYS_EPOLL_CREATE (line 217) | SYS_EPOLL_CREATE = 5207 constant SYS_EPOLL_CTL (line 218) | SYS_EPOLL_CTL = 5208 constant SYS_EPOLL_WAIT (line 219) | SYS_EPOLL_WAIT = 5209 constant SYS_REMAP_FILE_PAGES (line 220) | SYS_REMAP_FILE_PAGES = 5210 constant SYS_RT_SIGRETURN (line 221) | SYS_RT_SIGRETURN = 5211 constant SYS_SET_TID_ADDRESS (line 222) | SYS_SET_TID_ADDRESS = 5212 constant SYS_RESTART_SYSCALL (line 223) | SYS_RESTART_SYSCALL = 5213 constant SYS_SEMTIMEDOP (line 224) | SYS_SEMTIMEDOP = 5214 constant SYS_FADVISE64 (line 225) | SYS_FADVISE64 = 5215 constant SYS_TIMER_CREATE (line 226) | SYS_TIMER_CREATE = 5216 constant SYS_TIMER_SETTIME (line 227) | SYS_TIMER_SETTIME = 5217 constant SYS_TIMER_GETTIME (line 228) | SYS_TIMER_GETTIME = 5218 constant SYS_TIMER_GETOVERRUN (line 229) | SYS_TIMER_GETOVERRUN = 5219 constant SYS_TIMER_DELETE (line 230) | SYS_TIMER_DELETE = 5220 constant SYS_CLOCK_SETTIME (line 231) | SYS_CLOCK_SETTIME = 5221 constant SYS_CLOCK_GETTIME (line 232) | SYS_CLOCK_GETTIME = 5222 constant SYS_CLOCK_GETRES (line 233) | SYS_CLOCK_GETRES = 5223 constant SYS_CLOCK_NANOSLEEP (line 234) | SYS_CLOCK_NANOSLEEP = 5224 constant SYS_TGKILL (line 235) | SYS_TGKILL = 5225 constant SYS_UTIMES (line 236) | SYS_UTIMES = 5226 constant SYS_MBIND (line 237) | SYS_MBIND = 5227 constant SYS_GET_MEMPOLICY (line 238) | SYS_GET_MEMPOLICY = 5228 constant SYS_SET_MEMPOLICY (line 239) | SYS_SET_MEMPOLICY = 5229 constant SYS_MQ_OPEN (line 240) | SYS_MQ_OPEN = 5230 constant SYS_MQ_UNLINK (line 241) | SYS_MQ_UNLINK = 5231 constant SYS_MQ_TIMEDSEND (line 242) | SYS_MQ_TIMEDSEND = 5232 constant SYS_MQ_TIMEDRECEIVE (line 243) | SYS_MQ_TIMEDRECEIVE = 5233 constant SYS_MQ_NOTIFY (line 244) | SYS_MQ_NOTIFY = 5234 constant SYS_MQ_GETSETATTR (line 245) | SYS_MQ_GETSETATTR = 5235 constant SYS_VSERVER (line 246) | SYS_VSERVER = 5236 constant SYS_WAITID (line 247) | SYS_WAITID = 5237 constant SYS_ADD_KEY (line 248) | SYS_ADD_KEY = 5239 constant SYS_REQUEST_KEY (line 249) | SYS_REQUEST_KEY = 5240 constant SYS_KEYCTL (line 250) | SYS_KEYCTL = 5241 constant SYS_SET_THREAD_AREA (line 251) | SYS_SET_THREAD_AREA = 5242 constant SYS_INOTIFY_INIT (line 252) | SYS_INOTIFY_INIT = 5243 constant SYS_INOTIFY_ADD_WATCH (line 253) | SYS_INOTIFY_ADD_WATCH = 5244 constant SYS_INOTIFY_RM_WATCH (line 254) | SYS_INOTIFY_RM_WATCH = 5245 constant SYS_MIGRATE_PAGES (line 255) | SYS_MIGRATE_PAGES = 5246 constant SYS_OPENAT (line 256) | SYS_OPENAT = 5247 constant SYS_MKDIRAT (line 257) | SYS_MKDIRAT = 5248 constant SYS_MKNODAT (line 258) | SYS_MKNODAT = 5249 constant SYS_FCHOWNAT (line 259) | SYS_FCHOWNAT = 5250 constant SYS_FUTIMESAT (line 260) | SYS_FUTIMESAT = 5251 constant SYS_NEWFSTATAT (line 261) | SYS_NEWFSTATAT = 5252 constant SYS_UNLINKAT (line 262) | SYS_UNLINKAT = 5253 constant SYS_RENAMEAT (line 263) | SYS_RENAMEAT = 5254 constant SYS_LINKAT (line 264) | SYS_LINKAT = 5255 constant SYS_SYMLINKAT (line 265) | SYS_SYMLINKAT = 5256 constant SYS_READLINKAT (line 266) | SYS_READLINKAT = 5257 constant SYS_FCHMODAT (line 267) | SYS_FCHMODAT = 5258 constant SYS_FACCESSAT (line 268) | SYS_FACCESSAT = 5259 constant SYS_PSELECT6 (line 269) | SYS_PSELECT6 = 5260 constant SYS_PPOLL (line 270) | SYS_PPOLL = 5261 constant SYS_UNSHARE (line 271) | SYS_UNSHARE = 5262 constant SYS_SPLICE (line 272) | SYS_SPLICE = 5263 constant SYS_SYNC_FILE_RANGE (line 273) | SYS_SYNC_FILE_RANGE = 5264 constant SYS_TEE (line 274) | SYS_TEE = 5265 constant SYS_VMSPLICE (line 275) | SYS_VMSPLICE = 5266 constant SYS_MOVE_PAGES (line 276) | SYS_MOVE_PAGES = 5267 constant SYS_SET_ROBUST_LIST (line 277) | SYS_SET_ROBUST_LIST = 5268 constant SYS_GET_ROBUST_LIST (line 278) | SYS_GET_ROBUST_LIST = 5269 constant SYS_KEXEC_LOAD (line 279) | SYS_KEXEC_LOAD = 5270 constant SYS_GETCPU (line 280) | SYS_GETCPU = 5271 constant SYS_EPOLL_PWAIT (line 281) | SYS_EPOLL_PWAIT = 5272 constant SYS_IOPRIO_SET (line 282) | SYS_IOPRIO_SET = 5273 constant SYS_IOPRIO_GET (line 283) | SYS_IOPRIO_GET = 5274 constant SYS_UTIMENSAT (line 284) | SYS_UTIMENSAT = 5275 constant SYS_SIGNALFD (line 285) | SYS_SIGNALFD = 5276 constant SYS_TIMERFD (line 286) | SYS_TIMERFD = 5277 constant SYS_EVENTFD (line 287) | SYS_EVENTFD = 5278 constant SYS_FALLOCATE (line 288) | SYS_FALLOCATE = 5279 constant SYS_TIMERFD_CREATE (line 289) | SYS_TIMERFD_CREATE = 5280 constant SYS_TIMERFD_GETTIME (line 290) | SYS_TIMERFD_GETTIME = 5281 constant SYS_TIMERFD_SETTIME (line 291) | SYS_TIMERFD_SETTIME = 5282 constant SYS_SIGNALFD4 (line 292) | SYS_SIGNALFD4 = 5283 constant SYS_EVENTFD2 (line 293) | SYS_EVENTFD2 = 5284 constant SYS_EPOLL_CREATE1 (line 294) | SYS_EPOLL_CREATE1 = 5285 constant SYS_DUP3 (line 295) | SYS_DUP3 = 5286 constant SYS_PIPE2 (line 296) | SYS_PIPE2 = 5287 constant SYS_INOTIFY_INIT1 (line 297) | SYS_INOTIFY_INIT1 = 5288 constant SYS_PREADV (line 298) | SYS_PREADV = 5289 constant SYS_PWRITEV (line 299) | SYS_PWRITEV = 5290 constant SYS_RT_TGSIGQUEUEINFO (line 300) | SYS_RT_TGSIGQUEUEINFO = 5291 constant SYS_PERF_EVENT_OPEN (line 301) | SYS_PERF_EVENT_OPEN = 5292 constant SYS_ACCEPT4 (line 302) | SYS_ACCEPT4 = 5293 constant SYS_RECVMMSG (line 303) | SYS_RECVMMSG = 5294 constant SYS_FANOTIFY_INIT (line 304) | SYS_FANOTIFY_INIT = 5295 constant SYS_FANOTIFY_MARK (line 305) | SYS_FANOTIFY_MARK = 5296 constant SYS_PRLIMIT64 (line 306) | SYS_PRLIMIT64 = 5297 constant SYS_NAME_TO_HANDLE_AT (line 307) | SYS_NAME_TO_HANDLE_AT = 5298 constant SYS_OPEN_BY_HANDLE_AT (line 308) | SYS_OPEN_BY_HANDLE_AT = 5299 constant SYS_CLOCK_ADJTIME (line 309) | SYS_CLOCK_ADJTIME = 5300 constant SYS_SYNCFS (line 310) | SYS_SYNCFS = 5301 constant SYS_SENDMMSG (line 311) | SYS_SENDMMSG = 5302 constant SYS_SETNS (line 312) | SYS_SETNS = 5303 constant SYS_PROCESS_VM_READV (line 313) | SYS_PROCESS_VM_READV = 5304 constant SYS_PROCESS_VM_WRITEV (line 314) | SYS_PROCESS_VM_WRITEV = 5305 constant SYS_KCMP (line 315) | SYS_KCMP = 5306 constant SYS_FINIT_MODULE (line 316) | SYS_FINIT_MODULE = 5307 constant SYS_GETDENTS64 (line 317) | SYS_GETDENTS64 = 5308 constant SYS_SCHED_SETATTR (line 318) | SYS_SCHED_SETATTR = 5309 constant SYS_SCHED_GETATTR (line 319) | SYS_SCHED_GETATTR = 5310 constant SYS_RENAMEAT2 (line 320) | SYS_RENAMEAT2 = 5311 constant SYS_SECCOMP (line 321) | SYS_SECCOMP = 5312 constant SYS_GETRANDOM (line 322) | SYS_GETRANDOM = 5313 constant SYS_MEMFD_CREATE (line 323) | SYS_MEMFD_CREATE = 5314 constant SYS_BPF (line 324) | SYS_BPF = 5315 constant SYS_EXECVEAT (line 325) | SYS_EXECVEAT = 5316 constant SYS_USERFAULTFD (line 326) | SYS_USERFAULTFD = 5317 constant SYS_MEMBARRIER (line 327) | SYS_MEMBARRIER = 5318 constant SYS_MLOCK2 (line 328) | SYS_MLOCK2 = 5319 constant SYS_COPY_FILE_RANGE (line 329) | SYS_COPY_FILE_RANGE = 5320 constant SYS_PREADV2 (line 330) | SYS_PREADV2 = 5321 constant SYS_PWRITEV2 (line 331) | SYS_PWRITEV2 = 5322 constant SYS_PKEY_MPROTECT (line 332) | SYS_PKEY_MPROTECT = 5323 constant SYS_PKEY_ALLOC (line 333) | SYS_PKEY_ALLOC = 5324 constant SYS_PKEY_FREE (line 334) | SYS_PKEY_FREE = 5325 constant SYS_STATX (line 335) | SYS_STATX = 5326 constant SYS_RSEQ (line 336) | SYS_RSEQ = 5327 constant SYS_IO_PGETEVENTS (line 337) | SYS_IO_PGETEVENTS = 5328 constant SYS_PIDFD_SEND_SIGNAL (line 338) | SYS_PIDFD_SEND_SIGNAL = 5424 constant SYS_IO_URING_SETUP (line 339) | SYS_IO_URING_SETUP = 5425 constant SYS_IO_URING_ENTER (line 340) | SYS_IO_URING_ENTER = 5426 constant SYS_IO_URING_REGISTER (line 341) | SYS_IO_URING_REGISTER = 5427 constant SYS_OPEN_TREE (line 342) | SYS_OPEN_TREE = 5428 constant SYS_MOVE_MOUNT (line 343) | SYS_MOVE_MOUNT = 5429 constant SYS_FSOPEN (line 344) | SYS_FSOPEN = 5430 constant SYS_FSCONFIG (line 345) | SYS_FSCONFIG = 5431 constant SYS_FSMOUNT (line 346) | SYS_FSMOUNT = 5432 constant SYS_FSPICK (line 347) | SYS_FSPICK = 5433 constant SYS_PIDFD_OPEN (line 348) | SYS_PIDFD_OPEN = 5434 constant SYS_CLONE3 (line 349) | SYS_CLONE3 = 5435 constant SYS_CLOSE_RANGE (line 350) | SYS_CLOSE_RANGE = 5436 constant SYS_OPENAT2 (line 351) | SYS_OPENAT2 = 5437 constant SYS_PIDFD_GETFD (line 352) | SYS_PIDFD_GETFD = 5438 constant SYS_FACCESSAT2 (line 353) | SYS_FACCESSAT2 = 5439 constant SYS_PROCESS_MADVISE (line 354) | SYS_PROCESS_MADVISE = 5440 constant SYS_EPOLL_PWAIT2 (line 355) | SYS_EPOLL_PWAIT2 = 5441 constant SYS_MOUNT_SETATTR (line 356) | SYS_MOUNT_SETATTR = 5442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go constant SYS_SYSCALL (line 10) | SYS_SYSCALL = 4000 constant SYS_EXIT (line 11) | SYS_EXIT = 4001 constant SYS_FORK (line 12) | SYS_FORK = 4002 constant SYS_READ (line 13) | SYS_READ = 4003 constant SYS_WRITE (line 14) | SYS_WRITE = 4004 constant SYS_OPEN (line 15) | SYS_OPEN = 4005 constant SYS_CLOSE (line 16) | SYS_CLOSE = 4006 constant SYS_WAITPID (line 17) | SYS_WAITPID = 4007 constant SYS_CREAT (line 18) | SYS_CREAT = 4008 constant SYS_LINK (line 19) | SYS_LINK = 4009 constant SYS_UNLINK (line 20) | SYS_UNLINK = 4010 constant SYS_EXECVE (line 21) | SYS_EXECVE = 4011 constant SYS_CHDIR (line 22) | SYS_CHDIR = 4012 constant SYS_TIME (line 23) | SYS_TIME = 4013 constant SYS_MKNOD (line 24) | SYS_MKNOD = 4014 constant SYS_CHMOD (line 25) | SYS_CHMOD = 4015 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 4016 constant SYS_BREAK (line 27) | SYS_BREAK = 4017 constant SYS_UNUSED18 (line 28) | SYS_UNUSED18 = 4018 constant SYS_LSEEK (line 29) | SYS_LSEEK = 4019 constant SYS_GETPID (line 30) | SYS_GETPID = 4020 constant SYS_MOUNT (line 31) | SYS_MOUNT = 4021 constant SYS_UMOUNT (line 32) | SYS_UMOUNT = 4022 constant SYS_SETUID (line 33) | SYS_SETUID = 4023 constant SYS_GETUID (line 34) | SYS_GETUID = 4024 constant SYS_STIME (line 35) | SYS_STIME = 4025 constant SYS_PTRACE (line 36) | SYS_PTRACE = 4026 constant SYS_ALARM (line 37) | SYS_ALARM = 4027 constant SYS_UNUSED28 (line 38) | SYS_UNUSED28 = 4028 constant SYS_PAUSE (line 39) | SYS_PAUSE = 4029 constant SYS_UTIME (line 40) | SYS_UTIME = 4030 constant SYS_STTY (line 41) | SYS_STTY = 4031 constant SYS_GTTY (line 42) | SYS_GTTY = 4032 constant SYS_ACCESS (line 43) | SYS_ACCESS = 4033 constant SYS_NICE (line 44) | SYS_NICE = 4034 constant SYS_FTIME (line 45) | SYS_FTIME = 4035 constant SYS_SYNC (line 46) | SYS_SYNC = 4036 constant SYS_KILL (line 47) | SYS_KILL = 4037 constant SYS_RENAME (line 48) | SYS_RENAME = 4038 constant SYS_MKDIR (line 49) | SYS_MKDIR = 4039 constant SYS_RMDIR (line 50) | SYS_RMDIR = 4040 constant SYS_DUP (line 51) | SYS_DUP = 4041 constant SYS_PIPE (line 52) | SYS_PIPE = 4042 constant SYS_TIMES (line 53) | SYS_TIMES = 4043 constant SYS_PROF (line 54) | SYS_PROF = 4044 constant SYS_BRK (line 55) | SYS_BRK = 4045 constant SYS_SETGID (line 56) | SYS_SETGID = 4046 constant SYS_GETGID (line 57) | SYS_GETGID = 4047 constant SYS_SIGNAL (line 58) | SYS_SIGNAL = 4048 constant SYS_GETEUID (line 59) | SYS_GETEUID = 4049 constant SYS_GETEGID (line 60) | SYS_GETEGID = 4050 constant SYS_ACCT (line 61) | SYS_ACCT = 4051 constant SYS_UMOUNT2 (line 62) | SYS_UMOUNT2 = 4052 constant SYS_LOCK (line 63) | SYS_LOCK = 4053 constant SYS_IOCTL (line 64) | SYS_IOCTL = 4054 constant SYS_FCNTL (line 65) | SYS_FCNTL = 4055 constant SYS_MPX (line 66) | SYS_MPX = 4056 constant SYS_SETPGID (line 67) | SYS_SETPGID = 4057 constant SYS_ULIMIT (line 68) | SYS_ULIMIT = 4058 constant SYS_UNUSED59 (line 69) | SYS_UNUSED59 = 4059 constant SYS_UMASK (line 70) | SYS_UMASK = 4060 constant SYS_CHROOT (line 71) | SYS_CHROOT = 4061 constant SYS_USTAT (line 72) | SYS_USTAT = 4062 constant SYS_DUP2 (line 73) | SYS_DUP2 = 4063 constant SYS_GETPPID (line 74) | SYS_GETPPID = 4064 constant SYS_GETPGRP (line 75) | SYS_GETPGRP = 4065 constant SYS_SETSID (line 76) | SYS_SETSID = 4066 constant SYS_SIGACTION (line 77) | SYS_SIGACTION = 4067 constant SYS_SGETMASK (line 78) | SYS_SGETMASK = 4068 constant SYS_SSETMASK (line 79) | SYS_SSETMASK = 4069 constant SYS_SETREUID (line 80) | SYS_SETREUID = 4070 constant SYS_SETREGID (line 81) | SYS_SETREGID = 4071 constant SYS_SIGSUSPEND (line 82) | SYS_SIGSUSPEND = 4072 constant SYS_SIGPENDING (line 83) | SYS_SIGPENDING = 4073 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 4074 constant SYS_SETRLIMIT (line 85) | SYS_SETRLIMIT = 4075 constant SYS_GETRLIMIT (line 86) | SYS_GETRLIMIT = 4076 constant SYS_GETRUSAGE (line 87) | SYS_GETRUSAGE = 4077 constant SYS_GETTIMEOFDAY (line 88) | SYS_GETTIMEOFDAY = 4078 constant SYS_SETTIMEOFDAY (line 89) | SYS_SETTIMEOFDAY = 4079 constant SYS_GETGROUPS (line 90) | SYS_GETGROUPS = 4080 constant SYS_SETGROUPS (line 91) | SYS_SETGROUPS = 4081 constant SYS_RESERVED82 (line 92) | SYS_RESERVED82 = 4082 constant SYS_SYMLINK (line 93) | SYS_SYMLINK = 4083 constant SYS_UNUSED84 (line 94) | SYS_UNUSED84 = 4084 constant SYS_READLINK (line 95) | SYS_READLINK = 4085 constant SYS_USELIB (line 96) | SYS_USELIB = 4086 constant SYS_SWAPON (line 97) | SYS_SWAPON = 4087 constant SYS_REBOOT (line 98) | SYS_REBOOT = 4088 constant SYS_READDIR (line 99) | SYS_READDIR = 4089 constant SYS_MMAP (line 100) | SYS_MMAP = 4090 constant SYS_MUNMAP (line 101) | SYS_MUNMAP = 4091 constant SYS_TRUNCATE (line 102) | SYS_TRUNCATE = 4092 constant SYS_FTRUNCATE (line 103) | SYS_FTRUNCATE = 4093 constant SYS_FCHMOD (line 104) | SYS_FCHMOD = 4094 constant SYS_FCHOWN (line 105) | SYS_FCHOWN = 4095 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 4096 constant SYS_SETPRIORITY (line 107) | SYS_SETPRIORITY = 4097 constant SYS_PROFIL (line 108) | SYS_PROFIL = 4098 constant SYS_STATFS (line 109) | SYS_STATFS = 4099 constant SYS_FSTATFS (line 110) | SYS_FSTATFS = 4100 constant SYS_IOPERM (line 111) | SYS_IOPERM = 4101 constant SYS_SOCKETCALL (line 112) | SYS_SOCKETCALL = 4102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 4103 constant SYS_SETITIMER (line 114) | SYS_SETITIMER = 4104 constant SYS_GETITIMER (line 115) | SYS_GETITIMER = 4105 constant SYS_STAT (line 116) | SYS_STAT = 4106 constant SYS_LSTAT (line 117) | SYS_LSTAT = 4107 constant SYS_FSTAT (line 118) | SYS_FSTAT = 4108 constant SYS_UNUSED109 (line 119) | SYS_UNUSED109 = 4109 constant SYS_IOPL (line 120) | SYS_IOPL = 4110 constant SYS_VHANGUP (line 121) | SYS_VHANGUP = 4111 constant SYS_IDLE (line 122) | SYS_IDLE = 4112 constant SYS_VM86 (line 123) | SYS_VM86 = 4113 constant SYS_WAIT4 (line 124) | SYS_WAIT4 = 4114 constant SYS_SWAPOFF (line 125) | SYS_SWAPOFF = 4115 constant SYS_SYSINFO (line 126) | SYS_SYSINFO = 4116 constant SYS_IPC (line 127) | SYS_IPC = 4117 constant SYS_FSYNC (line 128) | SYS_FSYNC = 4118 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 4119 constant SYS_CLONE (line 130) | SYS_CLONE = 4120 constant SYS_SETDOMAINNAME (line 131) | SYS_SETDOMAINNAME = 4121 constant SYS_UNAME (line 132) | SYS_UNAME = 4122 constant SYS_MODIFY_LDT (line 133) | SYS_MODIFY_LDT = 4123 constant SYS_ADJTIMEX (line 134) | SYS_ADJTIMEX = 4124 constant SYS_MPROTECT (line 135) | SYS_MPROTECT = 4125 constant SYS_SIGPROCMASK (line 136) | SYS_SIGPROCMASK = 4126 constant SYS_CREATE_MODULE (line 137) | SYS_CREATE_MODULE = 4127 constant SYS_INIT_MODULE (line 138) | SYS_INIT_MODULE = 4128 constant SYS_DELETE_MODULE (line 139) | SYS_DELETE_MODULE = 4129 constant SYS_GET_KERNEL_SYMS (line 140) | SYS_GET_KERNEL_SYMS = 4130 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 4131 constant SYS_GETPGID (line 142) | SYS_GETPGID = 4132 constant SYS_FCHDIR (line 143) | SYS_FCHDIR = 4133 constant SYS_BDFLUSH (line 144) | SYS_BDFLUSH = 4134 constant SYS_SYSFS (line 145) | SYS_SYSFS = 4135 constant SYS_PERSONALITY (line 146) | SYS_PERSONALITY = 4136 constant SYS_AFS_SYSCALL (line 147) | SYS_AFS_SYSCALL = 4137 constant SYS_SETFSUID (line 148) | SYS_SETFSUID = 4138 constant SYS_SETFSGID (line 149) | SYS_SETFSGID = 4139 constant SYS__LLSEEK (line 150) | SYS__LLSEEK = 4140 constant SYS_GETDENTS (line 151) | SYS_GETDENTS = 4141 constant SYS__NEWSELECT (line 152) | SYS__NEWSELECT = 4142 constant SYS_FLOCK (line 153) | SYS_FLOCK = 4143 constant SYS_MSYNC (line 154) | SYS_MSYNC = 4144 constant SYS_READV (line 155) | SYS_READV = 4145 constant SYS_WRITEV (line 156) | SYS_WRITEV = 4146 constant SYS_CACHEFLUSH (line 157) | SYS_CACHEFLUSH = 4147 constant SYS_CACHECTL (line 158) | SYS_CACHECTL = 4148 constant SYS_SYSMIPS (line 159) | SYS_SYSMIPS = 4149 constant SYS_UNUSED150 (line 160) | SYS_UNUSED150 = 4150 constant SYS_GETSID (line 161) | SYS_GETSID = 4151 constant SYS_FDATASYNC (line 162) | SYS_FDATASYNC = 4152 constant SYS__SYSCTL (line 163) | SYS__SYSCTL = 4153 constant SYS_MLOCK (line 164) | SYS_MLOCK = 4154 constant SYS_MUNLOCK (line 165) | SYS_MUNLOCK = 4155 constant SYS_MLOCKALL (line 166) | SYS_MLOCKALL = 4156 constant SYS_MUNLOCKALL (line 167) | SYS_MUNLOCKALL = 4157 constant SYS_SCHED_SETPARAM (line 168) | SYS_SCHED_SETPARAM = 4158 constant SYS_SCHED_GETPARAM (line 169) | SYS_SCHED_GETPARAM = 4159 constant SYS_SCHED_SETSCHEDULER (line 170) | SYS_SCHED_SETSCHEDULER = 4160 constant SYS_SCHED_GETSCHEDULER (line 171) | SYS_SCHED_GETSCHEDULER = 4161 constant SYS_SCHED_YIELD (line 172) | SYS_SCHED_YIELD = 4162 constant SYS_SCHED_GET_PRIORITY_MAX (line 173) | SYS_SCHED_GET_PRIORITY_MAX = 4163 constant SYS_SCHED_GET_PRIORITY_MIN (line 174) | SYS_SCHED_GET_PRIORITY_MIN = 4164 constant SYS_SCHED_RR_GET_INTERVAL (line 175) | SYS_SCHED_RR_GET_INTERVAL = 4165 constant SYS_NANOSLEEP (line 176) | SYS_NANOSLEEP = 4166 constant SYS_MREMAP (line 177) | SYS_MREMAP = 4167 constant SYS_ACCEPT (line 178) | SYS_ACCEPT = 4168 constant SYS_BIND (line 179) | SYS_BIND = 4169 constant SYS_CONNECT (line 180) | SYS_CONNECT = 4170 constant SYS_GETPEERNAME (line 181) | SYS_GETPEERNAME = 4171 constant SYS_GETSOCKNAME (line 182) | SYS_GETSOCKNAME = 4172 constant SYS_GETSOCKOPT (line 183) | SYS_GETSOCKOPT = 4173 constant SYS_LISTEN (line 184) | SYS_LISTEN = 4174 constant SYS_RECV (line 185) | SYS_RECV = 4175 constant SYS_RECVFROM (line 186) | SYS_RECVFROM = 4176 constant SYS_RECVMSG (line 187) | SYS_RECVMSG = 4177 constant SYS_SEND (line 188) | SYS_SEND = 4178 constant SYS_SENDMSG (line 189) | SYS_SENDMSG = 4179 constant SYS_SENDTO (line 190) | SYS_SENDTO = 4180 constant SYS_SETSOCKOPT (line 191) | SYS_SETSOCKOPT = 4181 constant SYS_SHUTDOWN (line 192) | SYS_SHUTDOWN = 4182 constant SYS_SOCKET (line 193) | SYS_SOCKET = 4183 constant SYS_SOCKETPAIR (line 194) | SYS_SOCKETPAIR = 4184 constant SYS_SETRESUID (line 195) | SYS_SETRESUID = 4185 constant SYS_GETRESUID (line 196) | SYS_GETRESUID = 4186 constant SYS_QUERY_MODULE (line 197) | SYS_QUERY_MODULE = 4187 constant SYS_POLL (line 198) | SYS_POLL = 4188 constant SYS_NFSSERVCTL (line 199) | SYS_NFSSERVCTL = 4189 constant SYS_SETRESGID (line 200) | SYS_SETRESGID = 4190 constant SYS_GETRESGID (line 201) | SYS_GETRESGID = 4191 constant SYS_PRCTL (line 202) | SYS_PRCTL = 4192 constant SYS_RT_SIGRETURN (line 203) | SYS_RT_SIGRETURN = 4193 constant SYS_RT_SIGACTION (line 204) | SYS_RT_SIGACTION = 4194 constant SYS_RT_SIGPROCMASK (line 205) | SYS_RT_SIGPROCMASK = 4195 constant SYS_RT_SIGPENDING (line 206) | SYS_RT_SIGPENDING = 4196 constant SYS_RT_SIGTIMEDWAIT (line 207) | SYS_RT_SIGTIMEDWAIT = 4197 constant SYS_RT_SIGQUEUEINFO (line 208) | SYS_RT_SIGQUEUEINFO = 4198 constant SYS_RT_SIGSUSPEND (line 209) | SYS_RT_SIGSUSPEND = 4199 constant SYS_PREAD64 (line 210) | SYS_PREAD64 = 4200 constant SYS_PWRITE64 (line 211) | SYS_PWRITE64 = 4201 constant SYS_CHOWN (line 212) | SYS_CHOWN = 4202 constant SYS_GETCWD (line 213) | SYS_GETCWD = 4203 constant SYS_CAPGET (line 214) | SYS_CAPGET = 4204 constant SYS_CAPSET (line 215) | SYS_CAPSET = 4205 constant SYS_SIGALTSTACK (line 216) | SYS_SIGALTSTACK = 4206 constant SYS_SENDFILE (line 217) | SYS_SENDFILE = 4207 constant SYS_GETPMSG (line 218) | SYS_GETPMSG = 4208 constant SYS_PUTPMSG (line 219) | SYS_PUTPMSG = 4209 constant SYS_MMAP2 (line 220) | SYS_MMAP2 = 4210 constant SYS_TRUNCATE64 (line 221) | SYS_TRUNCATE64 = 4211 constant SYS_FTRUNCATE64 (line 222) | SYS_FTRUNCATE64 = 4212 constant SYS_STAT64 (line 223) | SYS_STAT64 = 4213 constant SYS_LSTAT64 (line 224) | SYS_LSTAT64 = 4214 constant SYS_FSTAT64 (line 225) | SYS_FSTAT64 = 4215 constant SYS_PIVOT_ROOT (line 226) | SYS_PIVOT_ROOT = 4216 constant SYS_MINCORE (line 227) | SYS_MINCORE = 4217 constant SYS_MADVISE (line 228) | SYS_MADVISE = 4218 constant SYS_GETDENTS64 (line 229) | SYS_GETDENTS64 = 4219 constant SYS_FCNTL64 (line 230) | SYS_FCNTL64 = 4220 constant SYS_RESERVED221 (line 231) | SYS_RESERVED221 = 4221 constant SYS_GETTID (line 232) | SYS_GETTID = 4222 constant SYS_READAHEAD (line 233) | SYS_READAHEAD = 4223 constant SYS_SETXATTR (line 234) | SYS_SETXATTR = 4224 constant SYS_LSETXATTR (line 235) | SYS_LSETXATTR = 4225 constant SYS_FSETXATTR (line 236) | SYS_FSETXATTR = 4226 constant SYS_GETXATTR (line 237) | SYS_GETXATTR = 4227 constant SYS_LGETXATTR (line 238) | SYS_LGETXATTR = 4228 constant SYS_FGETXATTR (line 239) | SYS_FGETXATTR = 4229 constant SYS_LISTXATTR (line 240) | SYS_LISTXATTR = 4230 constant SYS_LLISTXATTR (line 241) | SYS_LLISTXATTR = 4231 constant SYS_FLISTXATTR (line 242) | SYS_FLISTXATTR = 4232 constant SYS_REMOVEXATTR (line 243) | SYS_REMOVEXATTR = 4233 constant SYS_LREMOVEXATTR (line 244) | SYS_LREMOVEXATTR = 4234 constant SYS_FREMOVEXATTR (line 245) | SYS_FREMOVEXATTR = 4235 constant SYS_TKILL (line 246) | SYS_TKILL = 4236 constant SYS_SENDFILE64 (line 247) | SYS_SENDFILE64 = 4237 constant SYS_FUTEX (line 248) | SYS_FUTEX = 4238 constant SYS_SCHED_SETAFFINITY (line 249) | SYS_SCHED_SETAFFINITY = 4239 constant SYS_SCHED_GETAFFINITY (line 250) | SYS_SCHED_GETAFFINITY = 4240 constant SYS_IO_SETUP (line 251) | SYS_IO_SETUP = 4241 constant SYS_IO_DESTROY (line 252) | SYS_IO_DESTROY = 4242 constant SYS_IO_GETEVENTS (line 253) | SYS_IO_GETEVENTS = 4243 constant SYS_IO_SUBMIT (line 254) | SYS_IO_SUBMIT = 4244 constant SYS_IO_CANCEL (line 255) | SYS_IO_CANCEL = 4245 constant SYS_EXIT_GROUP (line 256) | SYS_EXIT_GROUP = 4246 constant SYS_LOOKUP_DCOOKIE (line 257) | SYS_LOOKUP_DCOOKIE = 4247 constant SYS_EPOLL_CREATE (line 258) | SYS_EPOLL_CREATE = 4248 constant SYS_EPOLL_CTL (line 259) | SYS_EPOLL_CTL = 4249 constant SYS_EPOLL_WAIT (line 260) | SYS_EPOLL_WAIT = 4250 constant SYS_REMAP_FILE_PAGES (line 261) | SYS_REMAP_FILE_PAGES = 4251 constant SYS_SET_TID_ADDRESS (line 262) | SYS_SET_TID_ADDRESS = 4252 constant SYS_RESTART_SYSCALL (line 263) | SYS_RESTART_SYSCALL = 4253 constant SYS_FADVISE64 (line 264) | SYS_FADVISE64 = 4254 constant SYS_STATFS64 (line 265) | SYS_STATFS64 = 4255 constant SYS_FSTATFS64 (line 266) | SYS_FSTATFS64 = 4256 constant SYS_TIMER_CREATE (line 267) | SYS_TIMER_CREATE = 4257 constant SYS_TIMER_SETTIME (line 268) | SYS_TIMER_SETTIME = 4258 constant SYS_TIMER_GETTIME (line 269) | SYS_TIMER_GETTIME = 4259 constant SYS_TIMER_GETOVERRUN (line 270) | SYS_TIMER_GETOVERRUN = 4260 constant SYS_TIMER_DELETE (line 271) | SYS_TIMER_DELETE = 4261 constant SYS_CLOCK_SETTIME (line 272) | SYS_CLOCK_SETTIME = 4262 constant SYS_CLOCK_GETTIME (line 273) | SYS_CLOCK_GETTIME = 4263 constant SYS_CLOCK_GETRES (line 274) | SYS_CLOCK_GETRES = 4264 constant SYS_CLOCK_NANOSLEEP (line 275) | SYS_CLOCK_NANOSLEEP = 4265 constant SYS_TGKILL (line 276) | SYS_TGKILL = 4266 constant SYS_UTIMES (line 277) | SYS_UTIMES = 4267 constant SYS_MBIND (line 278) | SYS_MBIND = 4268 constant SYS_GET_MEMPOLICY (line 279) | SYS_GET_MEMPOLICY = 4269 constant SYS_SET_MEMPOLICY (line 280) | SYS_SET_MEMPOLICY = 4270 constant SYS_MQ_OPEN (line 281) | SYS_MQ_OPEN = 4271 constant SYS_MQ_UNLINK (line 282) | SYS_MQ_UNLINK = 4272 constant SYS_MQ_TIMEDSEND (line 283) | SYS_MQ_TIMEDSEND = 4273 constant SYS_MQ_TIMEDRECEIVE (line 284) | SYS_MQ_TIMEDRECEIVE = 4274 constant SYS_MQ_NOTIFY (line 285) | SYS_MQ_NOTIFY = 4275 constant SYS_MQ_GETSETATTR (line 286) | SYS_MQ_GETSETATTR = 4276 constant SYS_VSERVER (line 287) | SYS_VSERVER = 4277 constant SYS_WAITID (line 288) | SYS_WAITID = 4278 constant SYS_ADD_KEY (line 289) | SYS_ADD_KEY = 4280 constant SYS_REQUEST_KEY (line 290) | SYS_REQUEST_KEY = 4281 constant SYS_KEYCTL (line 291) | SYS_KEYCTL = 4282 constant SYS_SET_THREAD_AREA (line 292) | SYS_SET_THREAD_AREA = 4283 constant SYS_INOTIFY_INIT (line 293) | SYS_INOTIFY_INIT = 4284 constant SYS_INOTIFY_ADD_WATCH (line 294) | SYS_INOTIFY_ADD_WATCH = 4285 constant SYS_INOTIFY_RM_WATCH (line 295) | SYS_INOTIFY_RM_WATCH = 4286 constant SYS_MIGRATE_PAGES (line 296) | SYS_MIGRATE_PAGES = 4287 constant SYS_OPENAT (line 297) | SYS_OPENAT = 4288 constant SYS_MKDIRAT (line 298) | SYS_MKDIRAT = 4289 constant SYS_MKNODAT (line 299) | SYS_MKNODAT = 4290 constant SYS_FCHOWNAT (line 300) | SYS_FCHOWNAT = 4291 constant SYS_FUTIMESAT (line 301) | SYS_FUTIMESAT = 4292 constant SYS_FSTATAT64 (line 302) | SYS_FSTATAT64 = 4293 constant SYS_UNLINKAT (line 303) | SYS_UNLINKAT = 4294 constant SYS_RENAMEAT (line 304) | SYS_RENAMEAT = 4295 constant SYS_LINKAT (line 305) | SYS_LINKAT = 4296 constant SYS_SYMLINKAT (line 306) | SYS_SYMLINKAT = 4297 constant SYS_READLINKAT (line 307) | SYS_READLINKAT = 4298 constant SYS_FCHMODAT (line 308) | SYS_FCHMODAT = 4299 constant SYS_FACCESSAT (line 309) | SYS_FACCESSAT = 4300 constant SYS_PSELECT6 (line 310) | SYS_PSELECT6 = 4301 constant SYS_PPOLL (line 311) | SYS_PPOLL = 4302 constant SYS_UNSHARE (line 312) | SYS_UNSHARE = 4303 constant SYS_SPLICE (line 313) | SYS_SPLICE = 4304 constant SYS_SYNC_FILE_RANGE (line 314) | SYS_SYNC_FILE_RANGE = 4305 constant SYS_TEE (line 315) | SYS_TEE = 4306 constant SYS_VMSPLICE (line 316) | SYS_VMSPLICE = 4307 constant SYS_MOVE_PAGES (line 317) | SYS_MOVE_PAGES = 4308 constant SYS_SET_ROBUST_LIST (line 318) | SYS_SET_ROBUST_LIST = 4309 constant SYS_GET_ROBUST_LIST (line 319) | SYS_GET_ROBUST_LIST = 4310 constant SYS_KEXEC_LOAD (line 320) | SYS_KEXEC_LOAD = 4311 constant SYS_GETCPU (line 321) | SYS_GETCPU = 4312 constant SYS_EPOLL_PWAIT (line 322) | SYS_EPOLL_PWAIT = 4313 constant SYS_IOPRIO_SET (line 323) | SYS_IOPRIO_SET = 4314 constant SYS_IOPRIO_GET (line 324) | SYS_IOPRIO_GET = 4315 constant SYS_UTIMENSAT (line 325) | SYS_UTIMENSAT = 4316 constant SYS_SIGNALFD (line 326) | SYS_SIGNALFD = 4317 constant SYS_TIMERFD (line 327) | SYS_TIMERFD = 4318 constant SYS_EVENTFD (line 328) | SYS_EVENTFD = 4319 constant SYS_FALLOCATE (line 329) | SYS_FALLOCATE = 4320 constant SYS_TIMERFD_CREATE (line 330) | SYS_TIMERFD_CREATE = 4321 constant SYS_TIMERFD_GETTIME (line 331) | SYS_TIMERFD_GETTIME = 4322 constant SYS_TIMERFD_SETTIME (line 332) | SYS_TIMERFD_SETTIME = 4323 constant SYS_SIGNALFD4 (line 333) | SYS_SIGNALFD4 = 4324 constant SYS_EVENTFD2 (line 334) | SYS_EVENTFD2 = 4325 constant SYS_EPOLL_CREATE1 (line 335) | SYS_EPOLL_CREATE1 = 4326 constant SYS_DUP3 (line 336) | SYS_DUP3 = 4327 constant SYS_PIPE2 (line 337) | SYS_PIPE2 = 4328 constant SYS_INOTIFY_INIT1 (line 338) | SYS_INOTIFY_INIT1 = 4329 constant SYS_PREADV (line 339) | SYS_PREADV = 4330 constant SYS_PWRITEV (line 340) | SYS_PWRITEV = 4331 constant SYS_RT_TGSIGQUEUEINFO (line 341) | SYS_RT_TGSIGQUEUEINFO = 4332 constant SYS_PERF_EVENT_OPEN (line 342) | SYS_PERF_EVENT_OPEN = 4333 constant SYS_ACCEPT4 (line 343) | SYS_ACCEPT4 = 4334 constant SYS_RECVMMSG (line 344) | SYS_RECVMMSG = 4335 constant SYS_FANOTIFY_INIT (line 345) | SYS_FANOTIFY_INIT = 4336 constant SYS_FANOTIFY_MARK (line 346) | SYS_FANOTIFY_MARK = 4337 constant SYS_PRLIMIT64 (line 347) | SYS_PRLIMIT64 = 4338 constant SYS_NAME_TO_HANDLE_AT (line 348) | SYS_NAME_TO_HANDLE_AT = 4339 constant SYS_OPEN_BY_HANDLE_AT (line 349) | SYS_OPEN_BY_HANDLE_AT = 4340 constant SYS_CLOCK_ADJTIME (line 350) | SYS_CLOCK_ADJTIME = 4341 constant SYS_SYNCFS (line 351) | SYS_SYNCFS = 4342 constant SYS_SENDMMSG (line 352) | SYS_SENDMMSG = 4343 constant SYS_SETNS (line 353) | SYS_SETNS = 4344 constant SYS_PROCESS_VM_READV (line 354) | SYS_PROCESS_VM_READV = 4345 constant SYS_PROCESS_VM_WRITEV (line 355) | SYS_PROCESS_VM_WRITEV = 4346 constant SYS_KCMP (line 356) | SYS_KCMP = 4347 constant SYS_FINIT_MODULE (line 357) | SYS_FINIT_MODULE = 4348 constant SYS_SCHED_SETATTR (line 358) | SYS_SCHED_SETATTR = 4349 constant SYS_SCHED_GETATTR (line 359) | SYS_SCHED_GETATTR = 4350 constant SYS_RENAMEAT2 (line 360) | SYS_RENAMEAT2 = 4351 constant SYS_SECCOMP (line 361) | SYS_SECCOMP = 4352 constant SYS_GETRANDOM (line 362) | SYS_GETRANDOM = 4353 constant SYS_MEMFD_CREATE (line 363) | SYS_MEMFD_CREATE = 4354 constant SYS_BPF (line 364) | SYS_BPF = 4355 constant SYS_EXECVEAT (line 365) | SYS_EXECVEAT = 4356 constant SYS_USERFAULTFD (line 366) | SYS_USERFAULTFD = 4357 constant SYS_MEMBARRIER (line 367) | SYS_MEMBARRIER = 4358 constant SYS_MLOCK2 (line 368) | SYS_MLOCK2 = 4359 constant SYS_COPY_FILE_RANGE (line 369) | SYS_COPY_FILE_RANGE = 4360 constant SYS_PREADV2 (line 370) | SYS_PREADV2 = 4361 constant SYS_PWRITEV2 (line 371) | SYS_PWRITEV2 = 4362 constant SYS_PKEY_MPROTECT (line 372) | SYS_PKEY_MPROTECT = 4363 constant SYS_PKEY_ALLOC (line 373) | SYS_PKEY_ALLOC = 4364 constant SYS_PKEY_FREE (line 374) | SYS_PKEY_FREE = 4365 constant SYS_STATX (line 375) | SYS_STATX = 4366 constant SYS_RSEQ (line 376) | SYS_RSEQ = 4367 constant SYS_IO_PGETEVENTS (line 377) | SYS_IO_PGETEVENTS = 4368 constant SYS_SEMGET (line 378) | SYS_SEMGET = 4393 constant SYS_SEMCTL (line 379) | SYS_SEMCTL = 4394 constant SYS_SHMGET (line 380) | SYS_SHMGET = 4395 constant SYS_SHMCTL (line 381) | SYS_SHMCTL = 4396 constant SYS_SHMAT (line 382) | SYS_SHMAT = 4397 constant SYS_SHMDT (line 383) | SYS_SHMDT = 4398 constant SYS_MSGGET (line 384) | SYS_MSGGET = 4399 constant SYS_MSGSND (line 385) | SYS_MSGSND = 4400 constant SYS_MSGRCV (line 386) | SYS_MSGRCV = 4401 constant SYS_MSGCTL (line 387) | SYS_MSGCTL = 4402 constant SYS_CLOCK_GETTIME64 (line 388) | SYS_CLOCK_GETTIME64 = 4403 constant SYS_CLOCK_SETTIME64 (line 389) | SYS_CLOCK_SETTIME64 = 4404 constant SYS_CLOCK_ADJTIME64 (line 390) | SYS_CLOCK_ADJTIME64 = 4405 constant SYS_CLOCK_GETRES_TIME64 (line 391) | SYS_CLOCK_GETRES_TIME64 = 4406 constant SYS_CLOCK_NANOSLEEP_TIME64 (line 392) | SYS_CLOCK_NANOSLEEP_TIME64 = 4407 constant SYS_TIMER_GETTIME64 (line 393) | SYS_TIMER_GETTIME64 = 4408 constant SYS_TIMER_SETTIME64 (line 394) | SYS_TIMER_SETTIME64 = 4409 constant SYS_TIMERFD_GETTIME64 (line 395) | SYS_TIMERFD_GETTIME64 = 4410 constant SYS_TIMERFD_SETTIME64 (line 396) | SYS_TIMERFD_SETTIME64 = 4411 constant SYS_UTIMENSAT_TIME64 (line 397) | SYS_UTIMENSAT_TIME64 = 4412 constant SYS_PSELECT6_TIME64 (line 398) | SYS_PSELECT6_TIME64 = 4413 constant SYS_PPOLL_TIME64 (line 399) | SYS_PPOLL_TIME64 = 4414 constant SYS_IO_PGETEVENTS_TIME64 (line 400) | SYS_IO_PGETEVENTS_TIME64 = 4416 constant SYS_RECVMMSG_TIME64 (line 401) | SYS_RECVMMSG_TIME64 = 4417 constant SYS_MQ_TIMEDSEND_TIME64 (line 402) | SYS_MQ_TIMEDSEND_TIME64 = 4418 constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 403) | SYS_MQ_TIMEDRECEIVE_TIME64 = 4419 constant SYS_SEMTIMEDOP_TIME64 (line 404) | SYS_SEMTIMEDOP_TIME64 = 4420 constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 405) | SYS_RT_SIGTIMEDWAIT_TIME64 = 4421 constant SYS_FUTEX_TIME64 (line 406) | SYS_FUTEX_TIME64 = 4422 constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 407) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 4423 constant SYS_PIDFD_SEND_SIGNAL (line 408) | SYS_PIDFD_SEND_SIGNAL = 4424 constant SYS_IO_URING_SETUP (line 409) | SYS_IO_URING_SETUP = 4425 constant SYS_IO_URING_ENTER (line 410) | SYS_IO_URING_ENTER = 4426 constant SYS_IO_URING_REGISTER (line 411) | SYS_IO_URING_REGISTER = 4427 constant SYS_OPEN_TREE (line 412) | SYS_OPEN_TREE = 4428 constant SYS_MOVE_MOUNT (line 413) | SYS_MOVE_MOUNT = 4429 constant SYS_FSOPEN (line 414) | SYS_FSOPEN = 4430 constant SYS_FSCONFIG (line 415) | SYS_FSCONFIG = 4431 constant SYS_FSMOUNT (line 416) | SYS_FSMOUNT = 4432 constant SYS_FSPICK (line 417) | SYS_FSPICK = 4433 constant SYS_PIDFD_OPEN (line 418) | SYS_PIDFD_OPEN = 4434 constant SYS_CLONE3 (line 419) | SYS_CLONE3 = 4435 constant SYS_CLOSE_RANGE (line 420) | SYS_CLOSE_RANGE = 4436 constant SYS_OPENAT2 (line 421) | SYS_OPENAT2 = 4437 constant SYS_PIDFD_GETFD (line 422) | SYS_PIDFD_GETFD = 4438 constant SYS_FACCESSAT2 (line 423) | SYS_FACCESSAT2 = 4439 constant SYS_PROCESS_MADVISE (line 424) | SYS_PROCESS_MADVISE = 4440 constant SYS_EPOLL_PWAIT2 (line 425) | SYS_EPOLL_PWAIT2 = 4441 constant SYS_MOUNT_SETATTR (line 426) | SYS_MOUNT_SETATTR = 4442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go constant SYS_RESTART_SYSCALL (line 10) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAITPID (line 17) | SYS_WAITPID = 7 constant SYS_CREAT (line 18) | SYS_CREAT = 8 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_EXECVE (line 21) | SYS_EXECVE = 11 constant SYS_CHDIR (line 22) | SYS_CHDIR = 12 constant SYS_TIME (line 23) | SYS_TIME = 13 constant SYS_MKNOD (line 24) | SYS_MKNOD = 14 constant SYS_CHMOD (line 25) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 16 constant SYS_BREAK (line 27) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 28) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 29) | SYS_LSEEK = 19 constant SYS_GETPID (line 30) | SYS_GETPID = 20 constant SYS_MOUNT (line 31) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 32) | SYS_UMOUNT = 22 constant SYS_SETUID (line 33) | SYS_SETUID = 23 constant SYS_GETUID (line 34) | SYS_GETUID = 24 constant SYS_STIME (line 35) | SYS_STIME = 25 constant SYS_PTRACE (line 36) | SYS_PTRACE = 26 constant SYS_ALARM (line 37) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 38) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 39) | SYS_PAUSE = 29 constant SYS_UTIME (line 40) | SYS_UTIME = 30 constant SYS_STTY (line 41) | SYS_STTY = 31 constant SYS_GTTY (line 42) | SYS_GTTY = 32 constant SYS_ACCESS (line 43) | SYS_ACCESS = 33 constant SYS_NICE (line 44) | SYS_NICE = 34 constant SYS_FTIME (line 45) | SYS_FTIME = 35 constant SYS_SYNC (line 46) | SYS_SYNC = 36 constant SYS_KILL (line 47) | SYS_KILL = 37 constant SYS_RENAME (line 48) | SYS_RENAME = 38 constant SYS_MKDIR (line 49) | SYS_MKDIR = 39 constant SYS_RMDIR (line 50) | SYS_RMDIR = 40 constant SYS_DUP (line 51) | SYS_DUP = 41 constant SYS_PIPE (line 52) | SYS_PIPE = 42 constant SYS_TIMES (line 53) | SYS_TIMES = 43 constant SYS_PROF (line 54) | SYS_PROF = 44 constant SYS_BRK (line 55) | SYS_BRK = 45 constant SYS_SETGID (line 56) | SYS_SETGID = 46 constant SYS_GETGID (line 57) | SYS_GETGID = 47 constant SYS_SIGNAL (line 58) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 59) | SYS_GETEUID = 49 constant SYS_GETEGID (line 60) | SYS_GETEGID = 50 constant SYS_ACCT (line 61) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 62) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 63) | SYS_LOCK = 53 constant SYS_IOCTL (line 64) | SYS_IOCTL = 54 constant SYS_FCNTL (line 65) | SYS_FCNTL = 55 constant SYS_MPX (line 66) | SYS_MPX = 56 constant SYS_SETPGID (line 67) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 68) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 69) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 70) | SYS_UMASK = 60 constant SYS_CHROOT (line 71) | SYS_CHROOT = 61 constant SYS_USTAT (line 72) | SYS_USTAT = 62 constant SYS_DUP2 (line 73) | SYS_DUP2 = 63 constant SYS_GETPPID (line 74) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 75) | SYS_GETPGRP = 65 constant SYS_SETSID (line 76) | SYS_SETSID = 66 constant SYS_SIGACTION (line 77) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 78) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 79) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 80) | SYS_SETREUID = 70 constant SYS_SETREGID (line 81) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 82) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 83) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 85) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 86) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 87) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 88) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 89) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 90) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 91) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 92) | SYS_SELECT = 82 constant SYS_SYMLINK (line 93) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 94) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 95) | SYS_READLINK = 85 constant SYS_USELIB (line 96) | SYS_USELIB = 86 constant SYS_SWAPON (line 97) | SYS_SWAPON = 87 constant SYS_REBOOT (line 98) | SYS_REBOOT = 88 constant SYS_READDIR (line 99) | SYS_READDIR = 89 constant SYS_MMAP (line 100) | SYS_MMAP = 90 constant SYS_MUNMAP (line 101) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 102) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 103) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 104) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 105) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 107) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 108) | SYS_PROFIL = 98 constant SYS_STATFS (line 109) | SYS_STATFS = 99 constant SYS_FSTATFS (line 110) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 111) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 112) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 114) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 115) | SYS_GETITIMER = 105 constant SYS_STAT (line 116) | SYS_STAT = 106 constant SYS_LSTAT (line 117) | SYS_LSTAT = 107 constant SYS_FSTAT (line 118) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 119) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 120) | SYS_IOPL = 110 constant SYS_VHANGUP (line 121) | SYS_VHANGUP = 111 constant SYS_IDLE (line 122) | SYS_IDLE = 112 constant SYS_VM86 (line 123) | SYS_VM86 = 113 constant SYS_WAIT4 (line 124) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 125) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 126) | SYS_SYSINFO = 116 constant SYS_IPC (line 127) | SYS_IPC = 117 constant SYS_FSYNC (line 128) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 130) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 131) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 132) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 133) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 134) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 135) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 136) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 137) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 138) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 139) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 140) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 142) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 143) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 144) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 145) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 146) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 147) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 148) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 149) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 150) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 151) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 152) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 153) | SYS_FLOCK = 143 constant SYS_MSYNC (line 154) | SYS_MSYNC = 144 constant SYS_READV (line 155) | SYS_READV = 145 constant SYS_WRITEV (line 156) | SYS_WRITEV = 146 constant SYS_GETSID (line 157) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 158) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 159) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 160) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 162) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 163) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 164) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 165) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 166) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 167) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 168) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 169) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 170) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 171) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 172) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 173) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 174) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 175) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 176) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 177) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 178) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 179) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 180) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 181) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 182) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 183) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 184) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 185) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 186) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 187) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 188) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 189) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 190) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 191) | SYS_CHOWN = 181 constant SYS_GETCWD (line 192) | SYS_GETCWD = 182 constant SYS_CAPGET (line 193) | SYS_CAPGET = 183 constant SYS_CAPSET (line 194) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 195) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 196) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 197) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 198) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 199) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 200) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 201) | SYS_READAHEAD = 191 constant SYS_MMAP2 (line 202) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 203) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 204) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 205) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 206) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 207) | SYS_FSTAT64 = 197 constant SYS_PCICONFIG_READ (line 208) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 209) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 210) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 211) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 212) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 213) | SYS_PIVOT_ROOT = 203 constant SYS_FCNTL64 (line 214) | SYS_FCNTL64 = 204 constant SYS_MADVISE (line 215) | SYS_MADVISE = 205 constant SYS_MINCORE (line 216) | SYS_MINCORE = 206 constant SYS_GETTID (line 217) | SYS_GETTID = 207 constant SYS_TKILL (line 218) | SYS_TKILL = 208 constant SYS_SETXATTR (line 219) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 220) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 221) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 222) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 223) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 224) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 225) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 226) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 227) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 228) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 229) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 230) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 231) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 232) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 233) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 234) | SYS_TUXCALL = 225 constant SYS_SENDFILE64 (line 235) | SYS_SENDFILE64 = 226 constant SYS_IO_SETUP (line 236) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 237) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 238) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 239) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 240) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 241) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 242) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 243) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 244) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 245) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 246) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 247) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 248) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 249) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 250) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 251) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 252) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 253) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 254) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 255) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 256) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 257) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 258) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 259) | SYS_TGKILL = 250 constant SYS_UTIMES (line 260) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 261) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 262) | SYS_FSTATFS64 = 253 constant SYS_FADVISE64_64 (line 263) | SYS_FADVISE64_64 = 254 constant SYS_RTAS (line 264) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 265) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 266) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 267) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 268) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 269) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 270) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 271) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 272) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 273) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 274) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 275) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 276) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 277) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 278) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 279) | SYS_KEYCTL = 271 constant SYS_WAITID (line 280) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 281) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 282) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 283) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 284) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 285) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 286) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 287) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 288) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 289) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 290) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 291) | SYS_SPLICE = 283 constant SYS_TEE (line 292) | SYS_TEE = 284 constant SYS_VMSPLICE (line 293) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 294) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 295) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 296) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 297) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 298) | SYS_FUTIMESAT = 290 constant SYS_FSTATAT64 (line 299) | SYS_FSTATAT64 = 291 constant SYS_UNLINKAT (line 300) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 301) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 302) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 303) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 304) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 305) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 306) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 307) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 308) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 309) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 310) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 311) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 312) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 313) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 314) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 315) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 316) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 317) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 318) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 319) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 320) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 321) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 322) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 323) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 324) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 325) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 326) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 327) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 328) | SYS_PREADV = 320 constant SYS_PWRITEV (line 329) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 330) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 331) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 332) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 333) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 334) | SYS_SOCKET = 326 constant SYS_BIND (line 335) | SYS_BIND = 327 constant SYS_CONNECT (line 336) | SYS_CONNECT = 328 constant SYS_LISTEN (line 337) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 338) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 339) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 340) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 341) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 342) | SYS_SEND = 334 constant SYS_SENDTO (line 343) | SYS_SENDTO = 335 constant SYS_RECV (line 344) | SYS_RECV = 336 constant SYS_RECVFROM (line 345) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 346) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 347) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 348) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 349) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 350) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 351) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 352) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 353) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 354) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 355) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 356) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 357) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 358) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 359) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 360) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 361) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 362) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 363) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 364) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 365) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 366) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 367) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 368) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 369) | SYS_BPF = 361 constant SYS_EXECVEAT (line 370) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 371) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 372) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 373) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 374) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 375) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 376) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 377) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 378) | SYS_KEXEC_FILE_LOAD = 382 constant SYS_STATX (line 379) | SYS_STATX = 383 constant SYS_PKEY_ALLOC (line 380) | SYS_PKEY_ALLOC = 384 constant SYS_PKEY_FREE (line 381) | SYS_PKEY_FREE = 385 constant SYS_PKEY_MPROTECT (line 382) | SYS_PKEY_MPROTECT = 386 constant SYS_RSEQ (line 383) | SYS_RSEQ = 387 constant SYS_IO_PGETEVENTS (line 384) | SYS_IO_PGETEVENTS = 388 constant SYS_SEMGET (line 385) | SYS_SEMGET = 393 constant SYS_SEMCTL (line 386) | SYS_SEMCTL = 394 constant SYS_SHMGET (line 387) | SYS_SHMGET = 395 constant SYS_SHMCTL (line 388) | SYS_SHMCTL = 396 constant SYS_SHMAT (line 389) | SYS_SHMAT = 397 constant SYS_SHMDT (line 390) | SYS_SHMDT = 398 constant SYS_MSGGET (line 391) | SYS_MSGGET = 399 constant SYS_MSGSND (line 392) | SYS_MSGSND = 400 constant SYS_MSGRCV (line 393) | SYS_MSGRCV = 401 constant SYS_MSGCTL (line 394) | SYS_MSGCTL = 402 constant SYS_CLOCK_GETTIME64 (line 395) | SYS_CLOCK_GETTIME64 = 403 constant SYS_CLOCK_SETTIME64 (line 396) | SYS_CLOCK_SETTIME64 = 404 constant SYS_CLOCK_ADJTIME64 (line 397) | SYS_CLOCK_ADJTIME64 = 405 constant SYS_CLOCK_GETRES_TIME64 (line 398) | SYS_CLOCK_GETRES_TIME64 = 406 constant SYS_CLOCK_NANOSLEEP_TIME64 (line 399) | SYS_CLOCK_NANOSLEEP_TIME64 = 407 constant SYS_TIMER_GETTIME64 (line 400) | SYS_TIMER_GETTIME64 = 408 constant SYS_TIMER_SETTIME64 (line 401) | SYS_TIMER_SETTIME64 = 409 constant SYS_TIMERFD_GETTIME64 (line 402) | SYS_TIMERFD_GETTIME64 = 410 constant SYS_TIMERFD_SETTIME64 (line 403) | SYS_TIMERFD_SETTIME64 = 411 constant SYS_UTIMENSAT_TIME64 (line 404) | SYS_UTIMENSAT_TIME64 = 412 constant SYS_PSELECT6_TIME64 (line 405) | SYS_PSELECT6_TIME64 = 413 constant SYS_PPOLL_TIME64 (line 406) | SYS_PPOLL_TIME64 = 414 constant SYS_IO_PGETEVENTS_TIME64 (line 407) | SYS_IO_PGETEVENTS_TIME64 = 416 constant SYS_RECVMMSG_TIME64 (line 408) | SYS_RECVMMSG_TIME64 = 417 constant SYS_MQ_TIMEDSEND_TIME64 (line 409) | SYS_MQ_TIMEDSEND_TIME64 = 418 constant SYS_MQ_TIMEDRECEIVE_TIME64 (line 410) | SYS_MQ_TIMEDRECEIVE_TIME64 = 419 constant SYS_SEMTIMEDOP_TIME64 (line 411) | SYS_SEMTIMEDOP_TIME64 = 420 constant SYS_RT_SIGTIMEDWAIT_TIME64 (line 412) | SYS_RT_SIGTIMEDWAIT_TIME64 = 421 constant SYS_FUTEX_TIME64 (line 413) | SYS_FUTEX_TIME64 = 422 constant SYS_SCHED_RR_GET_INTERVAL_TIME64 (line 414) | SYS_SCHED_RR_GET_INTERVAL_TIME64 = 423 constant SYS_PIDFD_SEND_SIGNAL (line 415) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 416) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 417) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 418) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 419) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 420) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 421) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 422) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 423) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 424) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 425) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 426) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 427) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 428) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 429) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 430) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 431) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 432) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 433) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go constant SYS_RESTART_SYSCALL (line 10) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAITPID (line 17) | SYS_WAITPID = 7 constant SYS_CREAT (line 18) | SYS_CREAT = 8 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_EXECVE (line 21) | SYS_EXECVE = 11 constant SYS_CHDIR (line 22) | SYS_CHDIR = 12 constant SYS_TIME (line 23) | SYS_TIME = 13 constant SYS_MKNOD (line 24) | SYS_MKNOD = 14 constant SYS_CHMOD (line 25) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 16 constant SYS_BREAK (line 27) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 28) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 29) | SYS_LSEEK = 19 constant SYS_GETPID (line 30) | SYS_GETPID = 20 constant SYS_MOUNT (line 31) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 32) | SYS_UMOUNT = 22 constant SYS_SETUID (line 33) | SYS_SETUID = 23 constant SYS_GETUID (line 34) | SYS_GETUID = 24 constant SYS_STIME (line 35) | SYS_STIME = 25 constant SYS_PTRACE (line 36) | SYS_PTRACE = 26 constant SYS_ALARM (line 37) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 38) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 39) | SYS_PAUSE = 29 constant SYS_UTIME (line 40) | SYS_UTIME = 30 constant SYS_STTY (line 41) | SYS_STTY = 31 constant SYS_GTTY (line 42) | SYS_GTTY = 32 constant SYS_ACCESS (line 43) | SYS_ACCESS = 33 constant SYS_NICE (line 44) | SYS_NICE = 34 constant SYS_FTIME (line 45) | SYS_FTIME = 35 constant SYS_SYNC (line 46) | SYS_SYNC = 36 constant SYS_KILL (line 47) | SYS_KILL = 37 constant SYS_RENAME (line 48) | SYS_RENAME = 38 constant SYS_MKDIR (line 49) | SYS_MKDIR = 39 constant SYS_RMDIR (line 50) | SYS_RMDIR = 40 constant SYS_DUP (line 51) | SYS_DUP = 41 constant SYS_PIPE (line 52) | SYS_PIPE = 42 constant SYS_TIMES (line 53) | SYS_TIMES = 43 constant SYS_PROF (line 54) | SYS_PROF = 44 constant SYS_BRK (line 55) | SYS_BRK = 45 constant SYS_SETGID (line 56) | SYS_SETGID = 46 constant SYS_GETGID (line 57) | SYS_GETGID = 47 constant SYS_SIGNAL (line 58) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 59) | SYS_GETEUID = 49 constant SYS_GETEGID (line 60) | SYS_GETEGID = 50 constant SYS_ACCT (line 61) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 62) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 63) | SYS_LOCK = 53 constant SYS_IOCTL (line 64) | SYS_IOCTL = 54 constant SYS_FCNTL (line 65) | SYS_FCNTL = 55 constant SYS_MPX (line 66) | SYS_MPX = 56 constant SYS_SETPGID (line 67) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 68) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 69) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 70) | SYS_UMASK = 60 constant SYS_CHROOT (line 71) | SYS_CHROOT = 61 constant SYS_USTAT (line 72) | SYS_USTAT = 62 constant SYS_DUP2 (line 73) | SYS_DUP2 = 63 constant SYS_GETPPID (line 74) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 75) | SYS_GETPGRP = 65 constant SYS_SETSID (line 76) | SYS_SETSID = 66 constant SYS_SIGACTION (line 77) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 78) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 79) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 80) | SYS_SETREUID = 70 constant SYS_SETREGID (line 81) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 82) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 83) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 85) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 86) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 87) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 88) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 89) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 90) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 91) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 92) | SYS_SELECT = 82 constant SYS_SYMLINK (line 93) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 94) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 95) | SYS_READLINK = 85 constant SYS_USELIB (line 96) | SYS_USELIB = 86 constant SYS_SWAPON (line 97) | SYS_SWAPON = 87 constant SYS_REBOOT (line 98) | SYS_REBOOT = 88 constant SYS_READDIR (line 99) | SYS_READDIR = 89 constant SYS_MMAP (line 100) | SYS_MMAP = 90 constant SYS_MUNMAP (line 101) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 102) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 103) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 104) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 105) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 107) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 108) | SYS_PROFIL = 98 constant SYS_STATFS (line 109) | SYS_STATFS = 99 constant SYS_FSTATFS (line 110) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 111) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 112) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 114) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 115) | SYS_GETITIMER = 105 constant SYS_STAT (line 116) | SYS_STAT = 106 constant SYS_LSTAT (line 117) | SYS_LSTAT = 107 constant SYS_FSTAT (line 118) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 119) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 120) | SYS_IOPL = 110 constant SYS_VHANGUP (line 121) | SYS_VHANGUP = 111 constant SYS_IDLE (line 122) | SYS_IDLE = 112 constant SYS_VM86 (line 123) | SYS_VM86 = 113 constant SYS_WAIT4 (line 124) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 125) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 126) | SYS_SYSINFO = 116 constant SYS_IPC (line 127) | SYS_IPC = 117 constant SYS_FSYNC (line 128) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 130) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 131) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 132) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 133) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 134) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 135) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 136) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 137) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 138) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 139) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 140) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 142) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 143) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 144) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 145) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 146) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 147) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 148) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 149) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 150) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 151) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 152) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 153) | SYS_FLOCK = 143 constant SYS_MSYNC (line 154) | SYS_MSYNC = 144 constant SYS_READV (line 155) | SYS_READV = 145 constant SYS_WRITEV (line 156) | SYS_WRITEV = 146 constant SYS_GETSID (line 157) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 158) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 159) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 160) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 162) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 163) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 164) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 165) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 166) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 167) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 168) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 169) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 170) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 171) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 172) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 173) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 174) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 175) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 176) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 177) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 178) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 179) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 180) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 181) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 182) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 183) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 184) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 185) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 186) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 187) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 188) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 189) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 190) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 191) | SYS_CHOWN = 181 constant SYS_GETCWD (line 192) | SYS_GETCWD = 182 constant SYS_CAPGET (line 193) | SYS_CAPGET = 183 constant SYS_CAPSET (line 194) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 195) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 196) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 197) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 198) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 199) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 200) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 201) | SYS_READAHEAD = 191 constant SYS_PCICONFIG_READ (line 202) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 203) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 204) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 205) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 206) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 207) | SYS_PIVOT_ROOT = 203 constant SYS_MADVISE (line 208) | SYS_MADVISE = 205 constant SYS_MINCORE (line 209) | SYS_MINCORE = 206 constant SYS_GETTID (line 210) | SYS_GETTID = 207 constant SYS_TKILL (line 211) | SYS_TKILL = 208 constant SYS_SETXATTR (line 212) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 213) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 214) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 215) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 216) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 217) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 218) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 219) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 220) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 221) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 222) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 223) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 224) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 225) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 226) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 227) | SYS_TUXCALL = 225 constant SYS_IO_SETUP (line 228) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 229) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 230) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 231) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 232) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 233) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 234) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 235) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 236) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 237) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 238) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 239) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 240) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 241) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 242) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 243) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 244) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 245) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 246) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 247) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 248) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 249) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 250) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 251) | SYS_TGKILL = 250 constant SYS_UTIMES (line 252) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 253) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 254) | SYS_FSTATFS64 = 253 constant SYS_RTAS (line 255) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 256) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 257) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 258) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 259) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 260) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 261) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 262) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 263) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 264) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 265) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 266) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 267) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 268) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 269) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 270) | SYS_KEYCTL = 271 constant SYS_WAITID (line 271) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 272) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 273) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 274) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 275) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 276) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 277) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 278) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 279) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 280) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 281) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 282) | SYS_SPLICE = 283 constant SYS_TEE (line 283) | SYS_TEE = 284 constant SYS_VMSPLICE (line 284) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 285) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 286) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 287) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 288) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 289) | SYS_FUTIMESAT = 290 constant SYS_NEWFSTATAT (line 290) | SYS_NEWFSTATAT = 291 constant SYS_UNLINKAT (line 291) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 292) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 293) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 294) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 295) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 296) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 297) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 298) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 299) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 300) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 301) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 302) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 303) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 304) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 305) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 306) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 307) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 308) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 309) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 310) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 311) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 312) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 313) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 314) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 315) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 316) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 317) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 318) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 319) | SYS_PREADV = 320 constant SYS_PWRITEV (line 320) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 321) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 322) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 323) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 324) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 325) | SYS_SOCKET = 326 constant SYS_BIND (line 326) | SYS_BIND = 327 constant SYS_CONNECT (line 327) | SYS_CONNECT = 328 constant SYS_LISTEN (line 328) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 329) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 330) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 331) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 332) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 333) | SYS_SEND = 334 constant SYS_SENDTO (line 334) | SYS_SENDTO = 335 constant SYS_RECV (line 335) | SYS_RECV = 336 constant SYS_RECVFROM (line 336) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 337) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 338) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 339) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 340) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 341) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 342) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 343) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 344) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 345) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 346) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 347) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 348) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 349) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 350) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 351) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 352) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 353) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 354) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 355) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 356) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 357) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 358) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 359) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 360) | SYS_BPF = 361 constant SYS_EXECVEAT (line 361) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 362) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 363) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 364) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 365) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 366) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 367) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 368) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 369) | SYS_KEXEC_FILE_LOAD = 382 constant SYS_STATX (line 370) | SYS_STATX = 383 constant SYS_PKEY_ALLOC (line 371) | SYS_PKEY_ALLOC = 384 constant SYS_PKEY_FREE (line 372) | SYS_PKEY_FREE = 385 constant SYS_PKEY_MPROTECT (line 373) | SYS_PKEY_MPROTECT = 386 constant SYS_RSEQ (line 374) | SYS_RSEQ = 387 constant SYS_IO_PGETEVENTS (line 375) | SYS_IO_PGETEVENTS = 388 constant SYS_SEMTIMEDOP (line 376) | SYS_SEMTIMEDOP = 392 constant SYS_SEMGET (line 377) | SYS_SEMGET = 393 constant SYS_SEMCTL (line 378) | SYS_SEMCTL = 394 constant SYS_SHMGET (line 379) | SYS_SHMGET = 395 constant SYS_SHMCTL (line 380) | SYS_SHMCTL = 396 constant SYS_SHMAT (line 381) | SYS_SHMAT = 397 constant SYS_SHMDT (line 382) | SYS_SHMDT = 398 constant SYS_MSGGET (line 383) | SYS_MSGGET = 399 constant SYS_MSGSND (line 384) | SYS_MSGSND = 400 constant SYS_MSGRCV (line 385) | SYS_MSGRCV = 401 constant SYS_MSGCTL (line 386) | SYS_MSGCTL = 402 constant SYS_PIDFD_SEND_SIGNAL (line 387) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 388) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 389) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 390) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 391) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 392) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 393) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 394) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 395) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 396) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 397) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 398) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 399) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 400) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 401) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 402) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 403) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 404) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 405) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go constant SYS_RESTART_SYSCALL (line 10) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAITPID (line 17) | SYS_WAITPID = 7 constant SYS_CREAT (line 18) | SYS_CREAT = 8 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_EXECVE (line 21) | SYS_EXECVE = 11 constant SYS_CHDIR (line 22) | SYS_CHDIR = 12 constant SYS_TIME (line 23) | SYS_TIME = 13 constant SYS_MKNOD (line 24) | SYS_MKNOD = 14 constant SYS_CHMOD (line 25) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 16 constant SYS_BREAK (line 27) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 28) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 29) | SYS_LSEEK = 19 constant SYS_GETPID (line 30) | SYS_GETPID = 20 constant SYS_MOUNT (line 31) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 32) | SYS_UMOUNT = 22 constant SYS_SETUID (line 33) | SYS_SETUID = 23 constant SYS_GETUID (line 34) | SYS_GETUID = 24 constant SYS_STIME (line 35) | SYS_STIME = 25 constant SYS_PTRACE (line 36) | SYS_PTRACE = 26 constant SYS_ALARM (line 37) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 38) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 39) | SYS_PAUSE = 29 constant SYS_UTIME (line 40) | SYS_UTIME = 30 constant SYS_STTY (line 41) | SYS_STTY = 31 constant SYS_GTTY (line 42) | SYS_GTTY = 32 constant SYS_ACCESS (line 43) | SYS_ACCESS = 33 constant SYS_NICE (line 44) | SYS_NICE = 34 constant SYS_FTIME (line 45) | SYS_FTIME = 35 constant SYS_SYNC (line 46) | SYS_SYNC = 36 constant SYS_KILL (line 47) | SYS_KILL = 37 constant SYS_RENAME (line 48) | SYS_RENAME = 38 constant SYS_MKDIR (line 49) | SYS_MKDIR = 39 constant SYS_RMDIR (line 50) | SYS_RMDIR = 40 constant SYS_DUP (line 51) | SYS_DUP = 41 constant SYS_PIPE (line 52) | SYS_PIPE = 42 constant SYS_TIMES (line 53) | SYS_TIMES = 43 constant SYS_PROF (line 54) | SYS_PROF = 44 constant SYS_BRK (line 55) | SYS_BRK = 45 constant SYS_SETGID (line 56) | SYS_SETGID = 46 constant SYS_GETGID (line 57) | SYS_GETGID = 47 constant SYS_SIGNAL (line 58) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 59) | SYS_GETEUID = 49 constant SYS_GETEGID (line 60) | SYS_GETEGID = 50 constant SYS_ACCT (line 61) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 62) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 63) | SYS_LOCK = 53 constant SYS_IOCTL (line 64) | SYS_IOCTL = 54 constant SYS_FCNTL (line 65) | SYS_FCNTL = 55 constant SYS_MPX (line 66) | SYS_MPX = 56 constant SYS_SETPGID (line 67) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 68) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 69) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 70) | SYS_UMASK = 60 constant SYS_CHROOT (line 71) | SYS_CHROOT = 61 constant SYS_USTAT (line 72) | SYS_USTAT = 62 constant SYS_DUP2 (line 73) | SYS_DUP2 = 63 constant SYS_GETPPID (line 74) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 75) | SYS_GETPGRP = 65 constant SYS_SETSID (line 76) | SYS_SETSID = 66 constant SYS_SIGACTION (line 77) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 78) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 79) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 80) | SYS_SETREUID = 70 constant SYS_SETREGID (line 81) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 82) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 83) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 85) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 86) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 87) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 88) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 89) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 90) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 91) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 92) | SYS_SELECT = 82 constant SYS_SYMLINK (line 93) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 94) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 95) | SYS_READLINK = 85 constant SYS_USELIB (line 96) | SYS_USELIB = 86 constant SYS_SWAPON (line 97) | SYS_SWAPON = 87 constant SYS_REBOOT (line 98) | SYS_REBOOT = 88 constant SYS_READDIR (line 99) | SYS_READDIR = 89 constant SYS_MMAP (line 100) | SYS_MMAP = 90 constant SYS_MUNMAP (line 101) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 102) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 103) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 104) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 105) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 106) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 107) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 108) | SYS_PROFIL = 98 constant SYS_STATFS (line 109) | SYS_STATFS = 99 constant SYS_FSTATFS (line 110) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 111) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 112) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 113) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 114) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 115) | SYS_GETITIMER = 105 constant SYS_STAT (line 116) | SYS_STAT = 106 constant SYS_LSTAT (line 117) | SYS_LSTAT = 107 constant SYS_FSTAT (line 118) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 119) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 120) | SYS_IOPL = 110 constant SYS_VHANGUP (line 121) | SYS_VHANGUP = 111 constant SYS_IDLE (line 122) | SYS_IDLE = 112 constant SYS_VM86 (line 123) | SYS_VM86 = 113 constant SYS_WAIT4 (line 124) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 125) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 126) | SYS_SYSINFO = 116 constant SYS_IPC (line 127) | SYS_IPC = 117 constant SYS_FSYNC (line 128) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 130) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 131) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 132) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 133) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 134) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 135) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 136) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 137) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 138) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 139) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 140) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 142) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 143) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 144) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 145) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 146) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 147) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 148) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 149) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 150) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 151) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 152) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 153) | SYS_FLOCK = 143 constant SYS_MSYNC (line 154) | SYS_MSYNC = 144 constant SYS_READV (line 155) | SYS_READV = 145 constant SYS_WRITEV (line 156) | SYS_WRITEV = 146 constant SYS_GETSID (line 157) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 158) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 159) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 160) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 162) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 163) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 164) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 165) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 166) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 167) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 168) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 169) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 170) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 171) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 172) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 173) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 174) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 175) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 176) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 177) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 178) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 179) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 180) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 181) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 182) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 183) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 184) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 185) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 186) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 187) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 188) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 189) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 190) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 191) | SYS_CHOWN = 181 constant SYS_GETCWD (line 192) | SYS_GETCWD = 182 constant SYS_CAPGET (line 193) | SYS_CAPGET = 183 constant SYS_CAPSET (line 194) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 195) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 196) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 197) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 198) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 199) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 200) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 201) | SYS_READAHEAD = 191 constant SYS_PCICONFIG_READ (line 202) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 203) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 204) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 205) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 206) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 207) | SYS_PIVOT_ROOT = 203 constant SYS_MADVISE (line 208) | SYS_MADVISE = 205 constant SYS_MINCORE (line 209) | SYS_MINCORE = 206 constant SYS_GETTID (line 210) | SYS_GETTID = 207 constant SYS_TKILL (line 211) | SYS_TKILL = 208 constant SYS_SETXATTR (line 212) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 213) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 214) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 215) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 216) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 217) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 218) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 219) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 220) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 221) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 222) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 223) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 224) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 225) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 226) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 227) | SYS_TUXCALL = 225 constant SYS_IO_SETUP (line 228) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 229) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 230) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 231) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 232) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 233) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 234) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 235) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 236) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 237) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 238) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 239) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 240) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 241) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 242) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 243) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 244) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 245) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 246) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 247) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 248) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 249) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 250) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 251) | SYS_TGKILL = 250 constant SYS_UTIMES (line 252) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 253) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 254) | SYS_FSTATFS64 = 253 constant SYS_RTAS (line 255) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 256) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 257) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 258) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 259) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 260) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 261) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 262) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 263) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 264) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 265) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 266) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 267) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 268) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 269) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 270) | SYS_KEYCTL = 271 constant SYS_WAITID (line 271) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 272) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 273) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 274) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 275) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 276) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 277) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 278) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 279) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 280) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 281) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 282) | SYS_SPLICE = 283 constant SYS_TEE (line 283) | SYS_TEE = 284 constant SYS_VMSPLICE (line 284) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 285) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 286) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 287) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 288) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 289) | SYS_FUTIMESAT = 290 constant SYS_NEWFSTATAT (line 290) | SYS_NEWFSTATAT = 291 constant SYS_UNLINKAT (line 291) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 292) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 293) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 294) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 295) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 296) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 297) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 298) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 299) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 300) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 301) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 302) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 303) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 304) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 305) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 306) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 307) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 308) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 309) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 310) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 311) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 312) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 313) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 314) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 315) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 316) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 317) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 318) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 319) | SYS_PREADV = 320 constant SYS_PWRITEV (line 320) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 321) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 322) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 323) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 324) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 325) | SYS_SOCKET = 326 constant SYS_BIND (line 326) | SYS_BIND = 327 constant SYS_CONNECT (line 327) | SYS_CONNECT = 328 constant SYS_LISTEN (line 328) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 329) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 330) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 331) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 332) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 333) | SYS_SEND = 334 constant SYS_SENDTO (line 334) | SYS_SENDTO = 335 constant SYS_RECV (line 335) | SYS_RECV = 336 constant SYS_RECVFROM (line 336) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 337) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 338) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 339) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 340) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 341) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 342) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 343) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 344) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 345) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 346) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 347) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 348) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 349) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 350) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 351) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 352) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 353) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 354) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 355) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 356) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 357) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 358) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 359) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 360) | SYS_BPF = 361 constant SYS_EXECVEAT (line 361) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 362) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 363) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 364) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 365) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 366) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 367) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 368) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 369) | SYS_KEXEC_FILE_LOAD = 382 constant SYS_STATX (line 370) | SYS_STATX = 383 constant SYS_PKEY_ALLOC (line 371) | SYS_PKEY_ALLOC = 384 constant SYS_PKEY_FREE (line 372) | SYS_PKEY_FREE = 385 constant SYS_PKEY_MPROTECT (line 373) | SYS_PKEY_MPROTECT = 386 constant SYS_RSEQ (line 374) | SYS_RSEQ = 387 constant SYS_IO_PGETEVENTS (line 375) | SYS_IO_PGETEVENTS = 388 constant SYS_SEMTIMEDOP (line 376) | SYS_SEMTIMEDOP = 392 constant SYS_SEMGET (line 377) | SYS_SEMGET = 393 constant SYS_SEMCTL (line 378) | SYS_SEMCTL = 394 constant SYS_SHMGET (line 379) | SYS_SHMGET = 395 constant SYS_SHMCTL (line 380) | SYS_SHMCTL = 396 constant SYS_SHMAT (line 381) | SYS_SHMAT = 397 constant SYS_SHMDT (line 382) | SYS_SHMDT = 398 constant SYS_MSGGET (line 383) | SYS_MSGGET = 399 constant SYS_MSGSND (line 384) | SYS_MSGSND = 400 constant SYS_MSGRCV (line 385) | SYS_MSGRCV = 401 constant SYS_MSGCTL (line 386) | SYS_MSGCTL = 402 constant SYS_PIDFD_SEND_SIGNAL (line 387) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 388) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 389) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 390) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 391) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 392) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 393) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 394) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 395) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 396) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 397) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 398) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 399) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 400) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 401) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 402) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 403) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 404) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 405) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go constant SYS_IO_SETUP (line 10) | SYS_IO_SETUP = 0 constant SYS_IO_DESTROY (line 11) | SYS_IO_DESTROY = 1 constant SYS_IO_SUBMIT (line 12) | SYS_IO_SUBMIT = 2 constant SYS_IO_CANCEL (line 13) | SYS_IO_CANCEL = 3 constant SYS_IO_GETEVENTS (line 14) | SYS_IO_GETEVENTS = 4 constant SYS_SETXATTR (line 15) | SYS_SETXATTR = 5 constant SYS_LSETXATTR (line 16) | SYS_LSETXATTR = 6 constant SYS_FSETXATTR (line 17) | SYS_FSETXATTR = 7 constant SYS_GETXATTR (line 18) | SYS_GETXATTR = 8 constant SYS_LGETXATTR (line 19) | SYS_LGETXATTR = 9 constant SYS_FGETXATTR (line 20) | SYS_FGETXATTR = 10 constant SYS_LISTXATTR (line 21) | SYS_LISTXATTR = 11 constant SYS_LLISTXATTR (line 22) | SYS_LLISTXATTR = 12 constant SYS_FLISTXATTR (line 23) | SYS_FLISTXATTR = 13 constant SYS_REMOVEXATTR (line 24) | SYS_REMOVEXATTR = 14 constant SYS_LREMOVEXATTR (line 25) | SYS_LREMOVEXATTR = 15 constant SYS_FREMOVEXATTR (line 26) | SYS_FREMOVEXATTR = 16 constant SYS_GETCWD (line 27) | SYS_GETCWD = 17 constant SYS_LOOKUP_DCOOKIE (line 28) | SYS_LOOKUP_DCOOKIE = 18 constant SYS_EVENTFD2 (line 29) | SYS_EVENTFD2 = 19 constant SYS_EPOLL_CREATE1 (line 30) | SYS_EPOLL_CREATE1 = 20 constant SYS_EPOLL_CTL (line 31) | SYS_EPOLL_CTL = 21 constant SYS_EPOLL_PWAIT (line 32) | SYS_EPOLL_PWAIT = 22 constant SYS_DUP (line 33) | SYS_DUP = 23 constant SYS_DUP3 (line 34) | SYS_DUP3 = 24 constant SYS_FCNTL (line 35) | SYS_FCNTL = 25 constant SYS_INOTIFY_INIT1 (line 36) | SYS_INOTIFY_INIT1 = 26 constant SYS_INOTIFY_ADD_WATCH (line 37) | SYS_INOTIFY_ADD_WATCH = 27 constant SYS_INOTIFY_RM_WATCH (line 38) | SYS_INOTIFY_RM_WATCH = 28 constant SYS_IOCTL (line 39) | SYS_IOCTL = 29 constant SYS_IOPRIO_SET (line 40) | SYS_IOPRIO_SET = 30 constant SYS_IOPRIO_GET (line 41) | SYS_IOPRIO_GET = 31 constant SYS_FLOCK (line 42) | SYS_FLOCK = 32 constant SYS_MKNODAT (line 43) | SYS_MKNODAT = 33 constant SYS_MKDIRAT (line 44) | SYS_MKDIRAT = 34 constant SYS_UNLINKAT (line 45) | SYS_UNLINKAT = 35 constant SYS_SYMLINKAT (line 46) | SYS_SYMLINKAT = 36 constant SYS_LINKAT (line 47) | SYS_LINKAT = 37 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 constant SYS_CLONE3 (line 300) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 301) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 302) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 303) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 304) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 305) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 306) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 307) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.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_RESTART_SYSCALL (line 16) | SYS_RESTART_SYSCALL = 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_MKNOD (line 22) | SYS_MKNOD = 14 constant SYS_CHMOD (line 23) | SYS_CHMOD = 15 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_UMOUNT (line 27) | SYS_UMOUNT = 22 constant SYS_PTRACE (line 28) | SYS_PTRACE = 26 constant SYS_ALARM (line 29) | SYS_ALARM = 27 constant SYS_PAUSE (line 30) | SYS_PAUSE = 29 constant SYS_UTIME (line 31) | SYS_UTIME = 30 constant SYS_ACCESS (line 32) | SYS_ACCESS = 33 constant SYS_NICE (line 33) | SYS_NICE = 34 constant SYS_SYNC (line 34) | SYS_SYNC = 36 constant SYS_KILL (line 35) | SYS_KILL = 37 constant SYS_RENAME (line 36) | SYS_RENAME = 38 constant SYS_MKDIR (line 37) | SYS_MKDIR = 39 constant SYS_RMDIR (line 38) | SYS_RMDIR = 40 constant SYS_DUP (line 39) | SYS_DUP = 41 constant SYS_PIPE (line 40) | SYS_PIPE = 42 constant SYS_TIMES (line 41) | SYS_TIMES = 43 constant SYS_BRK (line 42) | SYS_BRK = 45 constant SYS_SIGNAL (line 43) | SYS_SIGNAL = 48 constant SYS_ACCT (line 44) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 45) | SYS_UMOUNT2 = 52 constant SYS_IOCTL (line 46) | SYS_IOCTL = 54 constant SYS_FCNTL (line 47) | SYS_FCNTL = 55 constant SYS_SETPGID (line 48) | SYS_SETPGID = 57 constant SYS_UMASK (line 49) | SYS_UMASK = 60 constant SYS_CHROOT (line 50) | SYS_CHROOT = 61 constant SYS_USTAT (line 51) | SYS_USTAT = 62 constant SYS_DUP2 (line 52) | SYS_DUP2 = 63 constant SYS_GETPPID (line 53) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 54) | SYS_GETPGRP = 65 constant SYS_SETSID (line 55) | SYS_SETSID = 66 constant SYS_SIGACTION (line 56) | SYS_SIGACTION = 67 constant SYS_SIGSUSPEND (line 57) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 58) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 59) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 60) | SYS_SETRLIMIT = 75 constant SYS_GETRUSAGE (line 61) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 62) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 63) | SYS_SETTIMEOFDAY = 79 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 83 constant SYS_READLINK (line 65) | SYS_READLINK = 85 constant SYS_USELIB (line 66) | SYS_USELIB = 86 constant SYS_SWAPON (line 67) | SYS_SWAPON = 87 constant SYS_REBOOT (line 68) | SYS_REBOOT = 88 constant SYS_READDIR (line 69) | SYS_READDIR = 89 constant SYS_MMAP (line 70) | SYS_MMAP = 90 constant SYS_MUNMAP (line 71) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 72) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 73) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 74) | SYS_FCHMOD = 94 constant SYS_GETPRIORITY (line 75) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 76) | SYS_SETPRIORITY = 97 constant SYS_STATFS (line 77) | SYS_STATFS = 99 constant SYS_FSTATFS (line 78) | SYS_FSTATFS = 100 constant SYS_SOCKETCALL (line 79) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 80) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 81) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 82) | SYS_GETITIMER = 105 constant SYS_STAT (line 83) | SYS_STAT = 106 constant SYS_LSTAT (line 84) | SYS_LSTAT = 107 constant SYS_FSTAT (line 85) | SYS_FSTAT = 108 constant SYS_LOOKUP_DCOOKIE (line 86) | SYS_LOOKUP_DCOOKIE = 110 constant SYS_VHANGUP (line 87) | SYS_VHANGUP = 111 constant SYS_IDLE (line 88) | SYS_IDLE = 112 constant SYS_WAIT4 (line 89) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 90) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 91) | SYS_SYSINFO = 116 constant SYS_IPC (line 92) | SYS_IPC = 117 constant SYS_FSYNC (line 93) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 94) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 95) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 96) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 97) | SYS_UNAME = 122 constant SYS_ADJTIMEX (line 98) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 99) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 100) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 101) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 102) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 103) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 104) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 105) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 106) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 107) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 108) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 109) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 110) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 111) | SYS_AFS_SYSCALL = 137 constant SYS_GETDENTS (line 112) | SYS_GETDENTS = 141 constant SYS_SELECT (line 113) | SYS_SELECT = 142 constant SYS_FLOCK (line 114) | SYS_FLOCK = 143 constant SYS_MSYNC (line 115) | SYS_MSYNC = 144 constant SYS_READV (line 116) | SYS_READV = 145 constant SYS_WRITEV (line 117) | SYS_WRITEV = 146 constant SYS_GETSID (line 118) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 119) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 120) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 121) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 122) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 123) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 124) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 125) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 126) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 127) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 128) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 129) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 130) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 131) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 132) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 133) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 134) | SYS_MREMAP = 163 constant SYS_QUERY_MODULE (line 135) | SYS_QUERY_MODULE = 167 constant SYS_POLL (line 136) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 137) | SYS_NFSSERVCTL = 169 constant SYS_PRCTL (line 138) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 139) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 140) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 141) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 142) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 143) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 144) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 145) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 146) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 147) | SYS_PWRITE64 = 181 constant SYS_GETCWD (line 148) | SYS_GETCWD = 183 constant SYS_CAPGET (line 149) | SYS_CAPGET = 184 constant SYS_CAPSET (line 150) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 151) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 152) | SYS_SENDFILE = 187 constant SYS_GETPMSG (line 153) | SYS_GETPMSG = 188 constant SYS_PUTPMSG (line 154) | SYS_PUTPMSG = 189 constant SYS_VFORK (line 155) | SYS_VFORK = 190 constant SYS_GETRLIMIT (line 156) | SYS_GETRLIMIT = 191 constant SYS_LCHOWN (line 157) | SYS_LCHOWN = 198 constant SYS_GETUID (line 158) | SYS_GETUID = 199 constant SYS_GETGID (line 159) | SYS_GETGID = 200 constant SYS_GETEUID (line 160) | SYS_GETEUID = 201 constant SYS_GETEGID (line 161) | SYS_GETEGID = 202 constant SYS_SETREUID (line 162) | SYS_SETREUID = 203 constant SYS_SETREGID (line 163) | SYS_SETREGID = 204 constant SYS_GETGROUPS (line 164) | SYS_GETGROUPS = 205 constant SYS_SETGROUPS (line 165) | SYS_SETGROUPS = 206 constant SYS_FCHOWN (line 166) | SYS_FCHOWN = 207 constant SYS_SETRESUID (line 167) | SYS_SETRESUID = 208 constant SYS_GETRESUID (line 168) | SYS_GETRESUID = 209 constant SYS_SETRESGID (line 169) | SYS_SETRESGID = 210 constant SYS_GETRESGID (line 170) | SYS_GETRESGID = 211 constant SYS_CHOWN (line 171) | SYS_CHOWN = 212 constant SYS_SETUID (line 172) | SYS_SETUID = 213 constant SYS_SETGID (line 173) | SYS_SETGID = 214 constant SYS_SETFSUID (line 174) | SYS_SETFSUID = 215 constant SYS_SETFSGID (line 175) | SYS_SETFSGID = 216 constant SYS_PIVOT_ROOT (line 176) | SYS_PIVOT_ROOT = 217 constant SYS_MINCORE (line 177) | SYS_MINCORE = 218 constant SYS_MADVISE (line 178) | SYS_MADVISE = 219 constant SYS_GETDENTS64 (line 179) | SYS_GETDENTS64 = 220 constant SYS_READAHEAD (line 180) | SYS_READAHEAD = 222 constant SYS_SETXATTR (line 181) | SYS_SETXATTR = 224 constant SYS_LSETXATTR (line 182) | SYS_LSETXATTR = 225 constant SYS_FSETXATTR (line 183) | SYS_FSETXATTR = 226 constant SYS_GETXATTR (line 184) | SYS_GETXATTR = 227 constant SYS_LGETXATTR (line 185) | SYS_LGETXATTR = 228 constant SYS_FGETXATTR (line 186) | SYS_FGETXATTR = 229 constant SYS_LISTXATTR (line 187) | SYS_LISTXATTR = 230 constant SYS_LLISTXATTR (line 188) | SYS_LLISTXATTR = 231 constant SYS_FLISTXATTR (line 189) | SYS_FLISTXATTR = 232 constant SYS_REMOVEXATTR (line 190) | SYS_REMOVEXATTR = 233 constant SYS_LREMOVEXATTR (line 191) | SYS_LREMOVEXATTR = 234 constant SYS_FREMOVEXATTR (line 192) | SYS_FREMOVEXATTR = 235 constant SYS_GETTID (line 193) | SYS_GETTID = 236 constant SYS_TKILL (line 194) | SYS_TKILL = 237 constant SYS_FUTEX (line 195) | SYS_FUTEX = 238 constant SYS_SCHED_SETAFFINITY (line 196) | SYS_SCHED_SETAFFINITY = 239 constant SYS_SCHED_GETAFFINITY (line 197) | SYS_SCHED_GETAFFINITY = 240 constant SYS_TGKILL (line 198) | SYS_TGKILL = 241 constant SYS_IO_SETUP (line 199) | SYS_IO_SETUP = 243 constant SYS_IO_DESTROY (line 200) | SYS_IO_DESTROY = 244 constant SYS_IO_GETEVENTS (line 201) | SYS_IO_GETEVENTS = 245 constant SYS_IO_SUBMIT (line 202) | SYS_IO_SUBMIT = 246 constant SYS_IO_CANCEL (line 203) | SYS_IO_CANCEL = 247 constant SYS_EXIT_GROUP (line 204) | SYS_EXIT_GROUP = 248 constant SYS_EPOLL_CREATE (line 205) | SYS_EPOLL_CREATE = 249 constant SYS_EPOLL_CTL (line 206) | SYS_EPOLL_CTL = 250 constant SYS_EPOLL_WAIT (line 207) | SYS_EPOLL_WAIT = 251 constant SYS_SET_TID_ADDRESS (line 208) | SYS_SET_TID_ADDRESS = 252 constant SYS_FADVISE64 (line 209) | SYS_FADVISE64 = 253 constant SYS_TIMER_CREATE (line 210) | SYS_TIMER_CREATE = 254 constant SYS_TIMER_SETTIME (line 211) | SYS_TIMER_SETTIME = 255 constant SYS_TIMER_GETTIME (line 212) | SYS_TIMER_GETTIME = 256 constant SYS_TIMER_GETOVERRUN (line 213) | SYS_TIMER_GETOVERRUN = 257 constant SYS_TIMER_DELETE (line 214) | SYS_TIMER_DELETE = 258 constant SYS_CLOCK_SETTIME (line 215) | SYS_CLOCK_SETTIME = 259 constant SYS_CLOCK_GETTIME (line 216) | SYS_CLOCK_GETTIME = 260 constant SYS_CLOCK_GETRES (line 217) | SYS_CLOCK_GETRES = 261 constant SYS_CLOCK_NANOSLEEP (line 218) | SYS_CLOCK_NANOSLEEP = 262 constant SYS_STATFS64 (line 219) | SYS_STATFS64 = 265 constant SYS_FSTATFS64 (line 220) | SYS_FSTATFS64 = 266 constant SYS_REMAP_FILE_PAGES (line 221) | SYS_REMAP_FILE_PAGES = 267 constant SYS_MBIND (line 222) | SYS_MBIND = 268 constant SYS_GET_MEMPOLICY (line 223) | SYS_GET_MEMPOLICY = 269 constant SYS_SET_MEMPOLICY (line 224) | SYS_SET_MEMPOLICY = 270 constant SYS_MQ_OPEN (line 225) | SYS_MQ_OPEN = 271 constant SYS_MQ_UNLINK (line 226) | SYS_MQ_UNLINK = 272 constant SYS_MQ_TIMEDSEND (line 227) | SYS_MQ_TIMEDSEND = 273 constant SYS_MQ_TIMEDRECEIVE (line 228) | SYS_MQ_TIMEDRECEIVE = 274 constant SYS_MQ_NOTIFY (line 229) | SYS_MQ_NOTIFY = 275 constant SYS_MQ_GETSETATTR (line 230) | SYS_MQ_GETSETATTR = 276 constant SYS_KEXEC_LOAD (line 231) | SYS_KEXEC_LOAD = 277 constant SYS_ADD_KEY (line 232) | SYS_ADD_KEY = 278 constant SYS_REQUEST_KEY (line 233) | SYS_REQUEST_KEY = 279 constant SYS_KEYCTL (line 234) | SYS_KEYCTL = 280 constant SYS_WAITID (line 235) | SYS_WAITID = 281 constant SYS_IOPRIO_SET (line 236) | SYS_IOPRIO_SET = 282 constant SYS_IOPRIO_GET (line 237) | SYS_IOPRIO_GET = 283 constant SYS_INOTIFY_INIT (line 238) | SYS_INOTIFY_INIT = 284 constant SYS_INOTIFY_ADD_WATCH (line 239) | SYS_INOTIFY_ADD_WATCH = 285 constant SYS_INOTIFY_RM_WATCH (line 240) | SYS_INOTIFY_RM_WATCH = 286 constant SYS_MIGRATE_PAGES (line 241) | SYS_MIGRATE_PAGES = 287 constant SYS_OPENAT (line 242) | SYS_OPENAT = 288 constant SYS_MKDIRAT (line 243) | SYS_MKDIRAT = 289 constant SYS_MKNODAT (line 244) | SYS_MKNODAT = 290 constant SYS_FCHOWNAT (line 245) | SYS_FCHOWNAT = 291 constant SYS_FUTIMESAT (line 246) | SYS_FUTIMESAT = 292 constant SYS_NEWFSTATAT (line 247) | SYS_NEWFSTATAT = 293 constant SYS_UNLINKAT (line 248) | SYS_UNLINKAT = 294 constant SYS_RENAMEAT (line 249) | SYS_RENAMEAT = 295 constant SYS_LINKAT (line 250) | SYS_LINKAT = 296 constant SYS_SYMLINKAT (line 251) | SYS_SYMLINKAT = 297 constant SYS_READLINKAT (line 252) | SYS_READLINKAT = 298 constant SYS_FCHMODAT (line 253) | SYS_FCHMODAT = 299 constant SYS_FACCESSAT (line 254) | SYS_FACCESSAT = 300 constant SYS_PSELECT6 (line 255) | SYS_PSELECT6 = 301 constant SYS_PPOLL (line 256) | SYS_PPOLL = 302 constant SYS_UNSHARE (line 257) | SYS_UNSHARE = 303 constant SYS_SET_ROBUST_LIST (line 258) | SYS_SET_ROBUST_LIST = 304 constant SYS_GET_ROBUST_LIST (line 259) | SYS_GET_ROBUST_LIST = 305 constant SYS_SPLICE (line 260) | SYS_SPLICE = 306 constant SYS_SYNC_FILE_RANGE (line 261) | SYS_SYNC_FILE_RANGE = 307 constant SYS_TEE (line 262) | SYS_TEE = 308 constant SYS_VMSPLICE (line 263) | SYS_VMSPLICE = 309 constant SYS_MOVE_PAGES (line 264) | SYS_MOVE_PAGES = 310 constant SYS_GETCPU (line 265) | SYS_GETCPU = 311 constant SYS_EPOLL_PWAIT (line 266) | SYS_EPOLL_PWAIT = 312 constant SYS_UTIMES (line 267) | SYS_UTIMES = 313 constant SYS_FALLOCATE (line 268) | SYS_FALLOCATE = 314 constant SYS_UTIMENSAT (line 269) | SYS_UTIMENSAT = 315 constant SYS_SIGNALFD (line 270) | SYS_SIGNALFD = 316 constant SYS_TIMERFD (line 271) | SYS_TIMERFD = 317 constant SYS_EVENTFD (line 272) | SYS_EVENTFD = 318 constant SYS_TIMERFD_CREATE (line 273) | SYS_TIMERFD_CREATE = 319 constant SYS_TIMERFD_SETTIME (line 274) | SYS_TIMERFD_SETTIME = 320 constant SYS_TIMERFD_GETTIME (line 275) | SYS_TIMERFD_GETTIME = 321 constant SYS_SIGNALFD4 (line 276) | SYS_SIGNALFD4 = 322 constant SYS_EVENTFD2 (line 277) | SYS_EVENTFD2 = 323 constant SYS_INOTIFY_INIT1 (line 278) | SYS_INOTIFY_INIT1 = 324 constant SYS_PIPE2 (line 279) | SYS_PIPE2 = 325 constant SYS_DUP3 (line 280) | SYS_DUP3 = 326 constant SYS_EPOLL_CREATE1 (line 281) | SYS_EPOLL_CREATE1 = 327 constant SYS_PREADV (line 282) | SYS_PREADV = 328 constant SYS_PWRITEV (line 283) | SYS_PWRITEV = 329 constant SYS_RT_TGSIGQUEUEINFO (line 284) | SYS_RT_TGSIGQUEUEINFO = 330 constant SYS_PERF_EVENT_OPEN (line 285) | SYS_PERF_EVENT_OPEN = 331 constant SYS_FANOTIFY_INIT (line 286) | SYS_FANOTIFY_INIT = 332 constant SYS_FANOTIFY_MARK (line 287) | SYS_FANOTIFY_MARK = 333 constant SYS_PRLIMIT64 (line 288) | SYS_PRLIMIT64 = 334 constant SYS_NAME_TO_HANDLE_AT (line 289) | SYS_NAME_TO_HANDLE_AT = 335 constant SYS_OPEN_BY_HANDLE_AT (line 290) | SYS_OPEN_BY_HANDLE_AT = 336 constant SYS_CLOCK_ADJTIME (line 291) | SYS_CLOCK_ADJTIME = 337 constant SYS_SYNCFS (line 292) | SYS_SYNCFS = 338 constant SYS_SETNS (line 293) | SYS_SETNS = 339 constant SYS_PROCESS_VM_READV (line 294) | SYS_PROCESS_VM_READV = 340 constant SYS_PROCESS_VM_WRITEV (line 295) | SYS_PROCESS_VM_WRITEV = 341 constant SYS_S390_RUNTIME_INSTR (line 296) | SYS_S390_RUNTIME_INSTR = 342 constant SYS_KCMP (line 297) | SYS_KCMP = 343 constant SYS_FINIT_MODULE (line 298) | SYS_FINIT_MODULE = 344 constant SYS_SCHED_SETATTR (line 299) | SYS_SCHED_SETATTR = 345 constant SYS_SCHED_GETATTR (line 300) | SYS_SCHED_GETATTR = 346 constant SYS_RENAMEAT2 (line 301) | SYS_RENAMEAT2 = 347 constant SYS_SECCOMP (line 302) | SYS_SECCOMP = 348 constant SYS_GETRANDOM (line 303) | SYS_GETRANDOM = 349 constant SYS_MEMFD_CREATE (line 304) | SYS_MEMFD_CREATE = 350 constant SYS_BPF (line 305) | SYS_BPF = 351 constant SYS_S390_PCI_MMIO_WRITE (line 306) | SYS_S390_PCI_MMIO_WRITE = 352 constant SYS_S390_PCI_MMIO_READ (line 307) | SYS_S390_PCI_MMIO_READ = 353 constant SYS_EXECVEAT (line 308) | SYS_EXECVEAT = 354 constant SYS_USERFAULTFD (line 309) | SYS_USERFAULTFD = 355 constant SYS_MEMBARRIER (line 310) | SYS_MEMBARRIER = 356 constant SYS_RECVMMSG (line 311) | SYS_RECVMMSG = 357 constant SYS_SENDMMSG (line 312) | SYS_SENDMMSG = 358 constant SYS_SOCKET (line 313) | SYS_SOCKET = 359 constant SYS_SOCKETPAIR (line 314) | SYS_SOCKETPAIR = 360 constant SYS_BIND (line 315) | SYS_BIND = 361 constant SYS_CONNECT (line 316) | SYS_CONNECT = 362 constant SYS_LISTEN (line 317) | SYS_LISTEN = 363 constant SYS_ACCEPT4 (line 318) | SYS_ACCEPT4 = 364 constant SYS_GETSOCKOPT (line 319) | SYS_GETSOCKOPT = 365 constant SYS_SETSOCKOPT (line 320) | SYS_SETSOCKOPT = 366 constant SYS_GETSOCKNAME (line 321) | SYS_GETSOCKNAME = 367 constant SYS_GETPEERNAME (line 322) | SYS_GETPEERNAME = 368 constant SYS_SENDTO (line 323) | SYS_SENDTO = 369 constant SYS_SENDMSG (line 324) | SYS_SENDMSG = 370 constant SYS_RECVFROM (line 325) | SYS_RECVFROM = 371 constant SYS_RECVMSG (line 326) | SYS_RECVMSG = 372 constant SYS_SHUTDOWN (line 327) | SYS_SHUTDOWN = 373 constant SYS_MLOCK2 (line 328) | SYS_MLOCK2 = 374 constant SYS_COPY_FILE_RANGE (line 329) | SYS_COPY_FILE_RANGE = 375 constant SYS_PREADV2 (line 330) | SYS_PREADV2 = 376 constant SYS_PWRITEV2 (line 331) | SYS_PWRITEV2 = 377 constant SYS_S390_GUARDED_STORAGE (line 332) | SYS_S390_GUARDED_STORAGE = 378 constant SYS_STATX (line 333) | SYS_STATX = 379 constant SYS_S390_STHYI (line 334) | SYS_S390_STHYI = 380 constant SYS_KEXEC_FILE_LOAD (line 335) | SYS_KEXEC_FILE_LOAD = 381 constant SYS_IO_PGETEVENTS (line 336) | SYS_IO_PGETEVENTS = 382 constant SYS_RSEQ (line 337) | SYS_RSEQ = 383 constant SYS_PKEY_MPROTECT (line 338) | SYS_PKEY_MPROTECT = 384 constant SYS_PKEY_ALLOC (line 339) | SYS_PKEY_ALLOC = 385 constant SYS_PKEY_FREE (line 340) | SYS_PKEY_FREE = 386 constant SYS_SEMTIMEDOP (line 341) | SYS_SEMTIMEDOP = 392 constant SYS_SEMGET (line 342) | SYS_SEMGET = 393 constant SYS_SEMCTL (line 343) | SYS_SEMCTL = 394 constant SYS_SHMGET (line 344) | SYS_SHMGET = 395 constant SYS_SHMCTL (line 345) | SYS_SHMCTL = 396 constant SYS_SHMAT (line 346) | SYS_SHMAT = 397 constant SYS_SHMDT (line 347) | SYS_SHMDT = 398 constant SYS_MSGGET (line 348) | SYS_MSGGET = 399 constant SYS_MSGSND (line 349) | SYS_MSGSND = 400 constant SYS_MSGRCV (line 350) | SYS_MSGRCV = 401 constant SYS_MSGCTL (line 351) | SYS_MSGCTL = 402 constant SYS_PIDFD_SEND_SIGNAL (line 352) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 353) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 354) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 355) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 356) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 357) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 358) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 359) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 360) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 361) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 362) | SYS_PIDFD_OPEN = 434 constant SYS_CLONE3 (line 363) | SYS_CLONE3 = 435 constant SYS_CLOSE_RANGE (line 364) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 365) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 366) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 367) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 368) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 369) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 370) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go constant SYS_RESTART_SYSCALL (line 10) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 11) | SYS_EXIT = 1 constant SYS_FORK (line 12) | SYS_FORK = 2 constant SYS_READ (line 13) | SYS_READ = 3 constant SYS_WRITE (line 14) | SYS_WRITE = 4 constant SYS_OPEN (line 15) | SYS_OPEN = 5 constant SYS_CLOSE (line 16) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 17) | SYS_WAIT4 = 7 constant SYS_CREAT (line 18) | SYS_CREAT = 8 constant SYS_LINK (line 19) | SYS_LINK = 9 constant SYS_UNLINK (line 20) | SYS_UNLINK = 10 constant SYS_EXECV (line 21) | SYS_EXECV = 11 constant SYS_CHDIR (line 22) | SYS_CHDIR = 12 constant SYS_CHOWN (line 23) | SYS_CHOWN = 13 constant SYS_MKNOD (line 24) | SYS_MKNOD = 14 constant SYS_CHMOD (line 25) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 26) | SYS_LCHOWN = 16 constant SYS_BRK (line 27) | SYS_BRK = 17 constant SYS_PERFCTR (line 28) | SYS_PERFCTR = 18 constant SYS_LSEEK (line 29) | SYS_LSEEK = 19 constant SYS_GETPID (line 30) | SYS_GETPID = 20 constant SYS_CAPGET (line 31) | SYS_CAPGET = 21 constant SYS_CAPSET (line 32) | SYS_CAPSET = 22 constant SYS_SETUID (line 33) | SYS_SETUID = 23 constant SYS_GETUID (line 34) | SYS_GETUID = 24 constant SYS_VMSPLICE (line 35) | SYS_VMSPLICE = 25 constant SYS_PTRACE (line 36) | SYS_PTRACE = 26 constant SYS_ALARM (line 37) | SYS_ALARM = 27 constant SYS_SIGALTSTACK (line 38) | SYS_SIGALTSTACK = 28 constant SYS_PAUSE (line 39) | SYS_PAUSE = 29 constant SYS_UTIME (line 40) | SYS_UTIME = 30 constant SYS_ACCESS (line 41) | SYS_ACCESS = 33 constant SYS_NICE (line 42) | SYS_NICE = 34 constant SYS_SYNC (line 43) | SYS_SYNC = 36 constant SYS_KILL (line 44) | SYS_KILL = 37 constant SYS_STAT (line 45) | SYS_STAT = 38 constant SYS_SENDFILE (line 46) | SYS_SENDFILE = 39 constant SYS_LSTAT (line 47) | SYS_LSTAT = 40 constant SYS_DUP (line 48) | SYS_DUP = 41 constant SYS_PIPE (line 49) | SYS_PIPE = 42 constant SYS_TIMES (line 50) | SYS_TIMES = 43 constant SYS_UMOUNT2 (line 51) | SYS_UMOUNT2 = 45 constant SYS_SETGID (line 52) | SYS_SETGID = 46 constant SYS_GETGID (line 53) | SYS_GETGID = 47 constant SYS_SIGNAL (line 54) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 55) | SYS_GETEUID = 49 constant SYS_GETEGID (line 56) | SYS_GETEGID = 50 constant SYS_ACCT (line 57) | SYS_ACCT = 51 constant SYS_MEMORY_ORDERING (line 58) | SYS_MEMORY_ORDERING = 52 constant SYS_IOCTL (line 59) | SYS_IOCTL = 54 constant SYS_REBOOT (line 60) | SYS_REBOOT = 55 constant SYS_SYMLINK (line 61) | SYS_SYMLINK = 57 constant SYS_READLINK (line 62) | SYS_READLINK = 58 constant SYS_EXECVE (line 63) | SYS_EXECVE = 59 constant SYS_UMASK (line 64) | SYS_UMASK = 60 constant SYS_CHROOT (line 65) | SYS_CHROOT = 61 constant SYS_FSTAT (line 66) | SYS_FSTAT = 62 constant SYS_FSTAT64 (line 67) | SYS_FSTAT64 = 63 constant SYS_GETPAGESIZE (line 68) | SYS_GETPAGESIZE = 64 constant SYS_MSYNC (line 69) | SYS_MSYNC = 65 constant SYS_VFORK (line 70) | SYS_VFORK = 66 constant SYS_PREAD64 (line 71) | SYS_PREAD64 = 67 constant SYS_PWRITE64 (line 72) | SYS_PWRITE64 = 68 constant SYS_MMAP (line 73) | SYS_MMAP = 71 constant SYS_MUNMAP (line 74) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 75) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 76) | SYS_MADVISE = 75 constant SYS_VHANGUP (line 77) | SYS_VHANGUP = 76 constant SYS_MINCORE (line 78) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 79) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 80) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 81) | SYS_GETPGRP = 81 constant SYS_SETITIMER (line 82) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 83) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 84) | SYS_GETITIMER = 86 constant SYS_SETHOSTNAME (line 85) | SYS_SETHOSTNAME = 88 constant SYS_DUP2 (line 86) | SYS_DUP2 = 90 constant SYS_FCNTL (line 87) | SYS_FCNTL = 92 constant SYS_SELECT (line 88) | SYS_SELECT = 93 constant SYS_FSYNC (line 89) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 90) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 91) | SYS_SOCKET = 97 constant SYS_CONNECT (line 92) | SYS_CONNECT = 98 constant SYS_ACCEPT (line 93) | SYS_ACCEPT = 99 constant SYS_GETPRIORITY (line 94) | SYS_GETPRIORITY = 100 constant SYS_RT_SIGRETURN (line 95) | SYS_RT_SIGRETURN = 101 constant SYS_RT_SIGACTION (line 96) | SYS_RT_SIGACTION = 102 constant SYS_RT_SIGPROCMASK (line 97) | SYS_RT_SIGPROCMASK = 103 constant SYS_RT_SIGPENDING (line 98) | SYS_RT_SIGPENDING = 104 constant SYS_RT_SIGTIMEDWAIT (line 99) | SYS_RT_SIGTIMEDWAIT = 105 constant SYS_RT_SIGQUEUEINFO (line 100) | SYS_RT_SIGQUEUEINFO = 106 constant SYS_RT_SIGSUSPEND (line 101) | SYS_RT_SIGSUSPEND = 107 constant SYS_SETRESUID (line 102) | SYS_SETRESUID = 108 constant SYS_GETRESUID (line 103) | SYS_GETRESUID = 109 constant SYS_SETRESGID (line 104) | SYS_SETRESGID = 110 constant SYS_GETRESGID (line 105) | SYS_GETRESGID = 111 constant SYS_RECVMSG (line 106) | SYS_RECVMSG = 113 constant SYS_SENDMSG (line 107) | SYS_SENDMSG = 114 constant SYS_GETTIMEOFDAY (line 108) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 109) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 110) | SYS_GETSOCKOPT = 118 constant SYS_GETCWD (line 111) | SYS_GETCWD = 119 constant SYS_READV (line 112) | SYS_READV = 120 constant SYS_WRITEV (line 113) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 114) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 115) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 116) | SYS_FCHMOD = 124 constant SYS_RECVFROM (line 117) | SYS_RECVFROM = 125 constant SYS_SETREUID (line 118) | SYS_SETREUID = 126 constant SYS_SETREGID (line 119) | SYS_SETREGID = 127 constant SYS_RENAME (line 120) | SYS_RENAME = 128 constant SYS_TRUNCATE (line 121) | SYS_TRUNCATE = 129 constant SYS_FTRUNCATE (line 122) | SYS_FTRUNCATE = 130 constant SYS_FLOCK (line 123) | SYS_FLOCK = 131 constant SYS_LSTAT64 (line 124) | SYS_LSTAT64 = 132 constant SYS_SENDTO (line 125) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 126) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 127) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 128) | SYS_MKDIR = 136 constant SYS_RMDIR (line 129) | SYS_RMDIR = 137 constant SYS_UTIMES (line 130) | SYS_UTIMES = 138 constant SYS_STAT64 (line 131) | SYS_STAT64 = 139 constant SYS_SENDFILE64 (line 132) | SYS_SENDFILE64 = 140 constant SYS_GETPEERNAME (line 133) | SYS_GETPEERNAME = 141 constant SYS_FUTEX (line 134) | SYS_FUTEX = 142 constant SYS_GETTID (line 135) | SYS_GETTID = 143 constant SYS_GETRLIMIT (line 136) | SYS_GETRLIMIT = 144 constant SYS_SETRLIMIT (line 137) | SYS_SETRLIMIT = 145 constant SYS_PIVOT_ROOT (line 138) | SYS_PIVOT_ROOT = 146 constant SYS_PRCTL (line 139) | SYS_PRCTL = 147 constant SYS_PCICONFIG_READ (line 140) | SYS_PCICONFIG_READ = 148 constant SYS_PCICONFIG_WRITE (line 141) | SYS_PCICONFIG_WRITE = 149 constant SYS_GETSOCKNAME (line 142) | SYS_GETSOCKNAME = 150 constant SYS_INOTIFY_INIT (line 143) | SYS_INOTIFY_INIT = 151 constant SYS_INOTIFY_ADD_WATCH (line 144) | SYS_INOTIFY_ADD_WATCH = 152 constant SYS_POLL (line 145) | SYS_POLL = 153 constant SYS_GETDENTS64 (line 146) | SYS_GETDENTS64 = 154 constant SYS_INOTIFY_RM_WATCH (line 147) | SYS_INOTIFY_RM_WATCH = 156 constant SYS_STATFS (line 148) | SYS_STATFS = 157 constant SYS_FSTATFS (line 149) | SYS_FSTATFS = 158 constant SYS_UMOUNT (line 150) | SYS_UMOUNT = 159 constant SYS_SCHED_SET_AFFINITY (line 151) | SYS_SCHED_SET_AFFINITY = 160 constant SYS_SCHED_GET_AFFINITY (line 152) | SYS_SCHED_GET_AFFINITY = 161 constant SYS_GETDOMAINNAME (line 153) | SYS_GETDOMAINNAME = 162 constant SYS_SETDOMAINNAME (line 154) | SYS_SETDOMAINNAME = 163 constant SYS_UTRAP_INSTALL (line 155) | SYS_UTRAP_INSTALL = 164 constant SYS_QUOTACTL (line 156) | SYS_QUOTACTL = 165 constant SYS_SET_TID_ADDRESS (line 157) | SYS_SET_TID_ADDRESS = 166 constant SYS_MOUNT (line 158) | SYS_MOUNT = 167 constant SYS_USTAT (line 159) | SYS_USTAT = 168 constant SYS_SETXATTR (line 160) | SYS_SETXATTR = 169 constant SYS_LSETXATTR (line 161) | SYS_LSETXATTR = 170 constant SYS_FSETXATTR (line 162) | SYS_FSETXATTR = 171 constant SYS_GETXATTR (line 163) | SYS_GETXATTR = 172 constant SYS_LGETXATTR (line 164) | SYS_LGETXATTR = 173 constant SYS_GETDENTS (line 165) | SYS_GETDENTS = 174 constant SYS_SETSID (line 166) | SYS_SETSID = 175 constant SYS_FCHDIR (line 167) | SYS_FCHDIR = 176 constant SYS_FGETXATTR (line 168) | SYS_FGETXATTR = 177 constant SYS_LISTXATTR (line 169) | SYS_LISTXATTR = 178 constant SYS_LLISTXATTR (line 170) | SYS_LLISTXATTR = 179 constant SYS_FLISTXATTR (line 171) | SYS_FLISTXATTR = 180 constant SYS_REMOVEXATTR (line 172) | SYS_REMOVEXATTR = 181 constant SYS_LREMOVEXATTR (line 173) | SYS_LREMOVEXATTR = 182 constant SYS_SIGPENDING (line 174) | SYS_SIGPENDING = 183 constant SYS_QUERY_MODULE (line 175) | SYS_QUERY_MODULE = 184 constant SYS_SETPGID (line 176) | SYS_SETPGID = 185 constant SYS_FREMOVEXATTR (line 177) | SYS_FREMOVEXATTR = 186 constant SYS_TKILL (line 178) | SYS_TKILL = 187 constant SYS_EXIT_GROUP (line 179) | SYS_EXIT_GROUP = 188 constant SYS_UNAME (line 180) | SYS_UNAME = 189 constant SYS_INIT_MODULE (line 181) | SYS_INIT_MODULE = 190 constant SYS_PERSONALITY (line 182) | SYS_PERSONALITY = 191 constant SYS_REMAP_FILE_PAGES (line 183) | SYS_REMAP_FILE_PAGES = 192 constant SYS_EPOLL_CREATE (line 184) | SYS_EPOLL_CREATE = 193 constant SYS_EPOLL_CTL (line 185) | SYS_EPOLL_CTL = 194 constant SYS_EPOLL_WAIT (line 186) | SYS_EPOLL_WAIT = 195 constant SYS_IOPRIO_SET (line 187) | SYS_IOPRIO_SET = 196 constant SYS_GETPPID (line 188) | SYS_GETPPID = 197 constant SYS_SIGACTION (line 189) | SYS_SIGACTION = 198 constant SYS_SGETMASK (line 190) | SYS_SGETMASK = 199 constant SYS_SSETMASK (line 191) | SYS_SSETMASK = 200 constant SYS_SIGSUSPEND (line 192) | SYS_SIGSUSPEND = 201 constant SYS_OLDLSTAT (line 193) | SYS_OLDLSTAT = 202 constant SYS_USELIB (line 194) | SYS_USELIB = 203 constant SYS_READDIR (line 195) | SYS_READDIR = 204 constant SYS_READAHEAD (line 196) | SYS_READAHEAD = 205 constant SYS_SOCKETCALL (line 197) | SYS_SOCKETCALL = 206 constant SYS_SYSLOG (line 198) | SYS_SYSLOG = 207 constant SYS_LOOKUP_DCOOKIE (line 199) | SYS_LOOKUP_DCOOKIE = 208 constant SYS_FADVISE64 (line 200) | SYS_FADVISE64 = 209 constant SYS_FADVISE64_64 (line 201) | SYS_FADVISE64_64 = 210 constant SYS_TGKILL (line 202) | SYS_TGKILL = 211 constant SYS_WAITPID (line 203) | SYS_WAITPID = 212 constant SYS_SWAPOFF (line 204) | SYS_SWAPOFF = 213 constant SYS_SYSINFO (line 205) | SYS_SYSINFO = 214 constant SYS_IPC (line 206) | SYS_IPC = 215 constant SYS_SIGRETURN (line 207) | SYS_SIGRETURN = 216 constant SYS_CLONE (line 208) | SYS_CLONE = 217 constant SYS_IOPRIO_GET (line 209) | SYS_IOPRIO_GET = 218 constant SYS_ADJTIMEX (line 210) | SYS_ADJTIMEX = 219 constant SYS_SIGPROCMASK (line 211) | SYS_SIGPROCMASK = 220 constant SYS_CREATE_MODULE (line 212) | SYS_CREATE_MODULE = 221 constant SYS_DELETE_MODULE (line 213) | SYS_DELETE_MODULE = 222 constant SYS_GET_KERNEL_SYMS (line 214) | SYS_GET_KERNEL_SYMS = 223 constant SYS_GETPGID (line 215) | SYS_GETPGID = 224 constant SYS_BDFLUSH (line 216) | SYS_BDFLUSH = 225 constant SYS_SYSFS (line 217) | SYS_SYSFS = 226 constant SYS_AFS_SYSCALL (line 218) | SYS_AFS_SYSCALL = 227 constant SYS_SETFSUID (line 219) | SYS_SETFSUID = 228 constant SYS_SETFSGID (line 220) | SYS_SETFSGID = 229 constant SYS__NEWSELECT (line 221) | SYS__NEWSELECT = 230 constant SYS_SPLICE (line 222) | SYS_SPLICE = 232 constant SYS_STIME (line 223) | SYS_STIME = 233 constant SYS_STATFS64 (line 224) | SYS_STATFS64 = 234 constant SYS_FSTATFS64 (line 225) | SYS_FSTATFS64 = 235 constant SYS__LLSEEK (line 226) | SYS__LLSEEK = 236 constant SYS_MLOCK (line 227) | SYS_MLOCK = 237 constant SYS_MUNLOCK (line 228) | SYS_MUNLOCK = 238 constant SYS_MLOCKALL (line 229) | SYS_MLOCKALL = 239 constant SYS_MUNLOCKALL (line 230) | SYS_MUNLOCKALL = 240 constant SYS_SCHED_SETPARAM (line 231) | SYS_SCHED_SETPARAM = 241 constant SYS_SCHED_GETPARAM (line 232) | SYS_SCHED_GETPARAM = 242 constant SYS_SCHED_SETSCHEDULER (line 233) | SYS_SCHED_SETSCHEDULER = 243 constant SYS_SCHED_GETSCHEDULER (line 234) | SYS_SCHED_GETSCHEDULER = 244 constant SYS_SCHED_YIELD (line 235) | SYS_SCHED_YIELD = 245 constant SYS_SCHED_GET_PRIORITY_MAX (line 236) | SYS_SCHED_GET_PRIORITY_MAX = 246 constant SYS_SCHED_GET_PRIORITY_MIN (line 237) | SYS_SCHED_GET_PRIORITY_MIN = 247 constant SYS_SCHED_RR_GET_INTERVAL (line 238) | SYS_SCHED_RR_GET_INTERVAL = 248 constant SYS_NANOSLEEP (line 239) | SYS_NANOSLEEP = 249 constant SYS_MREMAP (line 240) | SYS_MREMAP = 250 constant SYS__SYSCTL (line 241) | SYS__SYSCTL = 251 constant SYS_GETSID (line 242) | SYS_GETSID = 252 constant SYS_FDATASYNC (line 243) | SYS_FDATASYNC = 253 constant SYS_NFSSERVCTL (line 244) | SYS_NFSSERVCTL = 254 constant SYS_SYNC_FILE_RANGE (line 245) | SYS_SYNC_FILE_RANGE = 255 constant SYS_CLOCK_SETTIME (line 246) | SYS_CLOCK_SETTIME = 256 constant SYS_CLOCK_GETTIME (line 247) | SYS_CLOCK_GETTIME = 257 constant SYS_CLOCK_GETRES (line 248) | SYS_CLOCK_GETRES = 258 constant SYS_CLOCK_NANOSLEEP (line 249) | SYS_CLOCK_NANOSLEEP = 259 constant SYS_SCHED_GETAFFINITY (line 250) | SYS_SCHED_GETAFFINITY = 260 constant SYS_SCHED_SETAFFINITY (line 251) | SYS_SCHED_SETAFFINITY = 261 constant SYS_TIMER_SETTIME (line 252) | SYS_TIMER_SETTIME = 262 constant SYS_TIMER_GETTIME (line 253) | SYS_TIMER_GETTIME = 263 constant SYS_TIMER_GETOVERRUN (line 254) | SYS_TIMER_GETOVERRUN = 264 constant SYS_TIMER_DELETE (line 255) | SYS_TIMER_DELETE = 265 constant SYS_TIMER_CREATE (line 256) | SYS_TIMER_CREATE = 266 constant SYS_VSERVER (line 257) | SYS_VSERVER = 267 constant SYS_IO_SETUP (line 258) | SYS_IO_SETUP = 268 constant SYS_IO_DESTROY (line 259) | SYS_IO_DESTROY = 269 constant SYS_IO_SUBMIT (line 260) | SYS_IO_SUBMIT = 270 constant SYS_IO_CANCEL (line 261) | SYS_IO_CANCEL = 271 constant SYS_IO_GETEVENTS (line 262) | SYS_IO_GETEVENTS = 272 constant SYS_MQ_OPEN (line 263) | SYS_MQ_OPEN = 273 constant SYS_MQ_UNLINK (line 264) | SYS_MQ_UNLINK = 274 constant SYS_MQ_TIMEDSEND (line 265) | SYS_MQ_TIMEDSEND = 275 constant SYS_MQ_TIMEDRECEIVE (line 266) | SYS_MQ_TIMEDRECEIVE = 276 constant SYS_MQ_NOTIFY (line 267) | SYS_MQ_NOTIFY = 277 constant SYS_MQ_GETSETATTR (line 268) | SYS_MQ_GETSETATTR = 278 constant SYS_WAITID (line 269) | SYS_WAITID = 279 constant SYS_TEE (line 270) | SYS_TEE = 280 constant SYS_ADD_KEY (line 271) | SYS_ADD_KEY = 281 constant SYS_REQUEST_KEY (line 272) | SYS_REQUEST_KEY = 282 constant SYS_KEYCTL (line 273) | SYS_KEYCTL = 283 constant SYS_OPENAT (line 274) | SYS_OPENAT = 284 constant SYS_MKDIRAT (line 275) | SYS_MKDIRAT = 285 constant SYS_MKNODAT (line 276) | SYS_MKNODAT = 286 constant SYS_FCHOWNAT (line 277) | SYS_FCHOWNAT = 287 constant SYS_FUTIMESAT (line 278) | SYS_FUTIMESAT = 288 constant SYS_FSTATAT64 (line 279) | SYS_FSTATAT64 = 289 constant SYS_UNLINKAT (line 280) | SYS_UNLINKAT = 290 constant SYS_RENAMEAT (line 281) | SYS_RENAMEAT = 291 constant SYS_LINKAT (line 282) | SYS_LINKAT = 292 constant SYS_SYMLINKAT (line 283) | SYS_SYMLINKAT = 293 constant SYS_READLINKAT (line 284) | SYS_READLINKAT = 294 constant SYS_FCHMODAT (line 285) | SYS_FCHMODAT = 295 constant SYS_FACCESSAT (line 286) | SYS_FACCESSAT = 296 constant SYS_PSELECT6 (line 287) | SYS_PSELECT6 = 297 constant SYS_PPOLL (line 288) | SYS_PPOLL = 298 constant SYS_UNSHARE (line 289) | SYS_UNSHARE = 299 constant SYS_SET_ROBUST_LIST (line 290) | SYS_SET_ROBUST_LIST = 300 constant SYS_GET_ROBUST_LIST (line 291) | SYS_GET_ROBUST_LIST = 301 constant SYS_MIGRATE_PAGES (line 292) | SYS_MIGRATE_PAGES = 302 constant SYS_MBIND (line 293) | SYS_MBIND = 303 constant SYS_GET_MEMPOLICY (line 294) | SYS_GET_MEMPOLICY = 304 constant SYS_SET_MEMPOLICY (line 295) | SYS_SET_MEMPOLICY = 305 constant SYS_KEXEC_LOAD (line 296) | SYS_KEXEC_LOAD = 306 constant SYS_MOVE_PAGES (line 297) | SYS_MOVE_PAGES = 307 constant SYS_GETCPU (line 298) | SYS_GETCPU = 308 constant SYS_EPOLL_PWAIT (line 299) | SYS_EPOLL_PWAIT = 309 constant SYS_UTIMENSAT (line 300) | SYS_UTIMENSAT = 310 constant SYS_SIGNALFD (line 301) | SYS_SIGNALFD = 311 constant SYS_TIMERFD_CREATE (line 302) | SYS_TIMERFD_CREATE = 312 constant SYS_EVENTFD (line 303) | SYS_EVENTFD = 313 constant SYS_FALLOCATE (line 304) | SYS_FALLOCATE = 314 constant SYS_TIMERFD_SETTIME (line 305) | SYS_TIMERFD_SETTIME = 315 constant SYS_TIMERFD_GETTIME (line 306) | SYS_TIMERFD_GETTIME = 316 constant SYS_SIGNALFD4 (line 307) | SYS_SIGNALFD4 = 317 constant SYS_EVENTFD2 (line 308) | SYS_EVENTFD2 = 318 constant SYS_EPOLL_CREATE1 (line 309) | SYS_EPOLL_CREATE1 = 319 constant SYS_DUP3 (line 310) | SYS_DUP3 = 320 constant SYS_PIPE2 (line 311) | SYS_PIPE2 = 321 constant SYS_INOTIFY_INIT1 (line 312) | SYS_INOTIFY_INIT1 = 322 constant SYS_ACCEPT4 (line 313) | SYS_ACCEPT4 = 323 constant SYS_PREADV (line 314) | SYS_PREADV = 324 constant SYS_PWRITEV (line 315) | SYS_PWRITEV = 325 constant SYS_RT_TGSIGQUEUEINFO (line 316) | SYS_RT_TGSIGQUEUEINFO = 326 constant SYS_PERF_EVENT_OPEN (line 317) | SYS_PERF_EVENT_OPEN = 327 constant SYS_RECVMMSG (line 318) | SYS_RECVMMSG = 328 constant SYS_FANOTIFY_INIT (line 319) | SYS_FANOTIFY_INIT = 329 constant SYS_FANOTIFY_MARK (line 320) | SYS_FANOTIFY_MARK = 330 constant SYS_PRLIMIT64 (line 321) | SYS_PRLIMIT64 = 331 constant SYS_NAME_TO_HANDLE_AT (line 322) | SYS_NAME_TO_HANDLE_AT = 332 constant SYS_OPEN_BY_HANDLE_AT (line 323) | SYS_OPEN_BY_HANDLE_AT = 333 constant SYS_CLOCK_ADJTIME (line 324) | SYS_CLOCK_ADJTIME = 334 constant SYS_SYNCFS (line 325) | SYS_SYNCFS = 335 constant SYS_SENDMMSG (line 326) | SYS_SENDMMSG = 336 constant SYS_SETNS (line 327) | SYS_SETNS = 337 constant SYS_PROCESS_VM_READV (line 328) | SYS_PROCESS_VM_READV = 338 constant SYS_PROCESS_VM_WRITEV (line 329) | SYS_PROCESS_VM_WRITEV = 339 constant SYS_KERN_FEATURES (line 330) | SYS_KERN_FEATURES = 340 constant SYS_KCMP (line 331) | SYS_KCMP = 341 constant SYS_FINIT_MODULE (line 332) | SYS_FINIT_MODULE = 342 constant SYS_SCHED_SETATTR (line 333) | SYS_SCHED_SETATTR = 343 constant SYS_SCHED_GETATTR (line 334) | SYS_SCHED_GETATTR = 344 constant SYS_RENAMEAT2 (line 335) | SYS_RENAMEAT2 = 345 constant SYS_SECCOMP (line 336) | SYS_SECCOMP = 346 constant SYS_GETRANDOM (line 337) | SYS_GETRANDOM = 347 constant SYS_MEMFD_CREATE (line 338) | SYS_MEMFD_CREATE = 348 constant SYS_BPF (line 339) | SYS_BPF = 349 constant SYS_EXECVEAT (line 340) | SYS_EXECVEAT = 350 constant SYS_MEMBARRIER (line 341) | SYS_MEMBARRIER = 351 constant SYS_USERFAULTFD (line 342) | SYS_USERFAULTFD = 352 constant SYS_BIND (line 343) | SYS_BIND = 353 constant SYS_LISTEN (line 344) | SYS_LISTEN = 354 constant SYS_SETSOCKOPT (line 345) | SYS_SETSOCKOPT = 355 constant SYS_MLOCK2 (line 346) | SYS_MLOCK2 = 356 constant SYS_COPY_FILE_RANGE (line 347) | SYS_COPY_FILE_RANGE = 357 constant SYS_PREADV2 (line 348) | SYS_PREADV2 = 358 constant SYS_PWRITEV2 (line 349) | SYS_PWRITEV2 = 359 constant SYS_STATX (line 350) | SYS_STATX = 360 constant SYS_IO_PGETEVENTS (line 351) | SYS_IO_PGETEVENTS = 361 constant SYS_PKEY_MPROTECT (line 352) | SYS_PKEY_MPROTECT = 362 constant SYS_PKEY_ALLOC (line 353) | SYS_PKEY_ALLOC = 363 constant SYS_PKEY_FREE (line 354) | SYS_PKEY_FREE = 364 constant SYS_RSEQ (line 355) | SYS_RSEQ = 365 constant SYS_SEMTIMEDOP (line 356) | SYS_SEMTIMEDOP = 392 constant SYS_SEMGET (line 357) | SYS_SEMGET = 393 constant SYS_SEMCTL (line 358) | SYS_SEMCTL = 394 constant SYS_SHMGET (line 359) | SYS_SHMGET = 395 constant SYS_SHMCTL (line 360) | SYS_SHMCTL = 396 constant SYS_SHMAT (line 361) | SYS_SHMAT = 397 constant SYS_SHMDT (line 362) | SYS_SHMDT = 398 constant SYS_MSGGET (line 363) | SYS_MSGGET = 399 constant SYS_MSGSND (line 364) | SYS_MSGSND = 400 constant SYS_MSGRCV (line 365) | SYS_MSGRCV = 401 constant SYS_MSGCTL (line 366) | SYS_MSGCTL = 402 constant SYS_PIDFD_SEND_SIGNAL (line 367) | SYS_PIDFD_SEND_SIGNAL = 424 constant SYS_IO_URING_SETUP (line 368) | SYS_IO_URING_SETUP = 425 constant SYS_IO_URING_ENTER (line 369) | SYS_IO_URING_ENTER = 426 constant SYS_IO_URING_REGISTER (line 370) | SYS_IO_URING_REGISTER = 427 constant SYS_OPEN_TREE (line 371) | SYS_OPEN_TREE = 428 constant SYS_MOVE_MOUNT (line 372) | SYS_MOVE_MOUNT = 429 constant SYS_FSOPEN (line 373) | SYS_FSOPEN = 430 constant SYS_FSCONFIG (line 374) | SYS_FSCONFIG = 431 constant SYS_FSMOUNT (line 375) | SYS_FSMOUNT = 432 constant SYS_FSPICK (line 376) | SYS_FSPICK = 433 constant SYS_PIDFD_OPEN (line 377) | SYS_PIDFD_OPEN = 434 constant SYS_CLOSE_RANGE (line 378) | SYS_CLOSE_RANGE = 436 constant SYS_OPENAT2 (line 379) | SYS_OPENAT2 = 437 constant SYS_PIDFD_GETFD (line 380) | SYS_PIDFD_GETFD = 438 constant SYS_FACCESSAT2 (line 381) | SYS_FACCESSAT2 = 439 constant SYS_PROCESS_MADVISE (line 382) | SYS_PROCESS_MADVISE = 440 constant SYS_EPOLL_PWAIT2 (line 383) | SYS_EPOLL_PWAIT2 = 441 constant SYS_MOUNT_SETATTR (line 384) | SYS_MOUNT_SETATTR = 442 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_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_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_CHDIR (line 18) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 19) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 20) | SYS_CHMOD = 15 constant SYS_CHOWN (line 21) | SYS_CHOWN = 16 constant SYS_BREAK (line 22) | SYS_BREAK = 17 constant SYS_GETPID (line 23) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 24) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 25) | SYS_SETUID = 23 constant SYS_GETUID (line 26) | SYS_GETUID = 24 constant SYS_GETEUID (line 27) | SYS_GETEUID = 25 constant SYS_PTRACE (line 28) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 29) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 30) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 31) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 32) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 33) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 34) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 35) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 36) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 37) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 38) | SYS_SYNC = 36 constant SYS_KILL (line 39) | SYS_KILL = 37 constant SYS_GETPPID (line 40) | SYS_GETPPID = 39 constant SYS_DUP (line 41) | SYS_DUP = 41 constant SYS_PIPE (line 42) | SYS_PIPE = 42 constant SYS_GETEGID (line 43) | SYS_GETEGID = 43 constant SYS_PROFIL (line 44) | SYS_PROFIL = 44 constant SYS_KTRACE (line 45) | SYS_KTRACE = 45 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 47) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 48) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 49) | SYS_ACCT = 51 constant SYS_IOCTL (line 50) | SYS_IOCTL = 54 constant SYS_REVOKE (line 51) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 52) | SYS_SYMLINK = 57 constant SYS_READLINK (line 53) | SYS_READLINK = 58 constant SYS_EXECVE (line 54) | SYS_EXECVE = 59 constant SYS_UMASK (line 55) | SYS_UMASK = 60 constant SYS_CHROOT (line 56) | SYS_CHROOT = 61 constant SYS_VFORK (line 57) | SYS_VFORK = 66 constant SYS_SBRK (line 58) | SYS_SBRK = 69 constant SYS_SSTK (line 59) | SYS_SSTK = 70 constant SYS_VADVISE (line 60) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 61) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 62) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 63) | SYS_MADVISE = 75 constant SYS_MINCORE (line 64) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 65) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 66) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 67) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 68) | SYS_SETPGID = 82 constant SYS_DUP2 (line 69) | SYS_DUP2 = 90 constant SYS_FCNTL (line 70) | SYS_FCNTL = 92 constant SYS_FSYNC (line 71) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 72) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 73) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 74) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 75) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 76) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 77) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 78) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 79) | SYS_READV = 120 constant SYS_WRITEV (line 80) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 81) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 82) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 83) | SYS_SETREUID = 126 constant SYS_SETREGID (line 84) | SYS_SETREGID = 127 constant SYS_RENAME (line 85) | SYS_RENAME = 128 constant SYS_FLOCK (line 86) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 87) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 88) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 89) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 90) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 91) | SYS_MKDIR = 136 constant SYS_RMDIR (line 92) | SYS_RMDIR = 137 constant SYS_SETSID (line 93) | SYS_SETSID = 147 constant SYS_SYSARCH (line 94) | SYS_SYSARCH = 165 constant SYS_PREAD (line 95) | SYS_PREAD = 173 constant SYS_PWRITE (line 96) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 97) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 98) | SYS_SETGID = 181 constant SYS_SETEGID (line 99) | SYS_SETEGID = 182 constant SYS_SETEUID (line 100) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 101) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 102) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 103) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 104) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 105) | SYS_MMAP = 197 constant SYS_LSEEK (line 106) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 107) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 108) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 109) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 110) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 111) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 112) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 113) | SYS_GETPGID = 207 constant SYS_REBOOT (line 114) | SYS_REBOOT = 208 constant SYS_POLL (line 115) | SYS_POLL = 209 constant SYS_SEMGET (line 116) | SYS_SEMGET = 221 constant SYS_SEMOP (line 117) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 118) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 119) | SYS_MSGGET = 225 constant SYS_MSGSND (line 120) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 121) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 122) | SYS_SHMAT = 228 constant SYS_SHMDT (line 123) | SYS_SHMDT = 230 constant SYS_SHMGET (line 124) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 125) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 126) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 127) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 128) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 129) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 130) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 131) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 132) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 133) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 134) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 135) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 136) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 137) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 138) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 139) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 140) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 141) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 142) | SYS_GETSID = 286 constant SYS___CLONE (line 143) | SYS___CLONE = 287 constant SYS_FKTRACE (line 144) | SYS_FKTRACE = 288 constant SYS_PREADV (line 145) | SYS_PREADV = 289 constant SYS_PWRITEV (line 146) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 147) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 148) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 149) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 150) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 151) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 152) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 153) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 154) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 155) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 156) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 157) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 158) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 159) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 160) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 161) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 162) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 163) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 164) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 165) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 166) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 167) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 168) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 169) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 170) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 171) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 172) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 173) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 174) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 175) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 176) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 177) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 178) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 179) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 180) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 181) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 182) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 183) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 184) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 185) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 186) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 187) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 188) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 189) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 190) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 191) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 192) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 193) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 194) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 195) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 196) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 197) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 198) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 199) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 200) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 201) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 202) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 203) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 204) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 205) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 206) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 207) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 208) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 209) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 210) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 211) | SYS_SOCKET = 394 constant SYS_GETFH (line 212) | SYS_GETFH = 395 constant SYS_MOUNT (line 213) | SYS_MOUNT = 410 constant SYS_MREMAP (line 214) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 215) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 216) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 217) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 218) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 219) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 220) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 221) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 222) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 223) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 224) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 225) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 226) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 227) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 228) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 229) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 231) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 232) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 233) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 234) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 235) | SYS_KEVENT = 435 constant SYS_PSELECT (line 236) | SYS_PSELECT = 436 constant SYS_POLLTS (line 237) | SYS_POLLTS = 437 constant SYS_STAT (line 238) | SYS_STAT = 439 constant SYS_FSTAT (line 239) | SYS_FSTAT = 440 constant SYS_LSTAT (line 240) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 241) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 242) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 243) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 244) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 245) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 246) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 247) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 248) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 249) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 250) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 251) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 252) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 253) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 254) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 255) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 256) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 257) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 258) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 259) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 260) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 261) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 262) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 263) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 264) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 265) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 266) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 267) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 268) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 269) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 270) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 271) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 272) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 273) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 274) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_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_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_CHDIR (line 18) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 19) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 20) | SYS_CHMOD = 15 constant SYS_CHOWN (line 21) | SYS_CHOWN = 16 constant SYS_BREAK (line 22) | SYS_BREAK = 17 constant SYS_GETPID (line 23) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 24) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 25) | SYS_SETUID = 23 constant SYS_GETUID (line 26) | SYS_GETUID = 24 constant SYS_GETEUID (line 27) | SYS_GETEUID = 25 constant SYS_PTRACE (line 28) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 29) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 30) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 31) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 32) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 33) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 34) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 35) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 36) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 37) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 38) | SYS_SYNC = 36 constant SYS_KILL (line 39) | SYS_KILL = 37 constant SYS_GETPPID (line 40) | SYS_GETPPID = 39 constant SYS_DUP (line 41) | SYS_DUP = 41 constant SYS_PIPE (line 42) | SYS_PIPE = 42 constant SYS_GETEGID (line 43) | SYS_GETEGID = 43 constant SYS_PROFIL (line 44) | SYS_PROFIL = 44 constant SYS_KTRACE (line 45) | SYS_KTRACE = 45 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 47) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 48) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 49) | SYS_ACCT = 51 constant SYS_IOCTL (line 50) | SYS_IOCTL = 54 constant SYS_REVOKE (line 51) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 52) | SYS_SYMLINK = 57 constant SYS_READLINK (line 53) | SYS_READLINK = 58 constant SYS_EXECVE (line 54) | SYS_EXECVE = 59 constant SYS_UMASK (line 55) | SYS_UMASK = 60 constant SYS_CHROOT (line 56) | SYS_CHROOT = 61 constant SYS_VFORK (line 57) | SYS_VFORK = 66 constant SYS_SBRK (line 58) | SYS_SBRK = 69 constant SYS_SSTK (line 59) | SYS_SSTK = 70 constant SYS_VADVISE (line 60) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 61) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 62) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 63) | SYS_MADVISE = 75 constant SYS_MINCORE (line 64) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 65) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 66) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 67) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 68) | SYS_SETPGID = 82 constant SYS_DUP2 (line 69) | SYS_DUP2 = 90 constant SYS_FCNTL (line 70) | SYS_FCNTL = 92 constant SYS_FSYNC (line 71) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 72) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 73) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 74) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 75) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 76) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 77) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 78) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 79) | SYS_READV = 120 constant SYS_WRITEV (line 80) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 81) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 82) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 83) | SYS_SETREUID = 126 constant SYS_SETREGID (line 84) | SYS_SETREGID = 127 constant SYS_RENAME (line 85) | SYS_RENAME = 128 constant SYS_FLOCK (line 86) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 87) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 88) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 89) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 90) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 91) | SYS_MKDIR = 136 constant SYS_RMDIR (line 92) | SYS_RMDIR = 137 constant SYS_SETSID (line 93) | SYS_SETSID = 147 constant SYS_SYSARCH (line 94) | SYS_SYSARCH = 165 constant SYS_PREAD (line 95) | SYS_PREAD = 173 constant SYS_PWRITE (line 96) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 97) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 98) | SYS_SETGID = 181 constant SYS_SETEGID (line 99) | SYS_SETEGID = 182 constant SYS_SETEUID (line 100) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 101) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 102) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 103) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 104) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 105) | SYS_MMAP = 197 constant SYS_LSEEK (line 106) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 107) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 108) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 109) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 110) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 111) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 112) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 113) | SYS_GETPGID = 207 constant SYS_REBOOT (line 114) | SYS_REBOOT = 208 constant SYS_POLL (line 115) | SYS_POLL = 209 constant SYS_SEMGET (line 116) | SYS_SEMGET = 221 constant SYS_SEMOP (line 117) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 118) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 119) | SYS_MSGGET = 225 constant SYS_MSGSND (line 120) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 121) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 122) | SYS_SHMAT = 228 constant SYS_SHMDT (line 123) | SYS_SHMDT = 230 constant SYS_SHMGET (line 124) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 125) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 126) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 127) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 128) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 129) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 130) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 131) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 132) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 133) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 134) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 135) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 136) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 137) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 138) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 139) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 140) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 141) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 142) | SYS_GETSID = 286 constant SYS___CLONE (line 143) | SYS___CLONE = 287 constant SYS_FKTRACE (line 144) | SYS_FKTRACE = 288 constant SYS_PREADV (line 145) | SYS_PREADV = 289 constant SYS_PWRITEV (line 146) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 147) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 148) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 149) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 150) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 151) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 152) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 153) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 154) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 155) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 156) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 157) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 158) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 159) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 160) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 161) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 162) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 163) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 164) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 165) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 166) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 167) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 168) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 169) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 170) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 171) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 172) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 173) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 174) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 175) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 176) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 177) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 178) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 179) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 180) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 181) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 182) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 183) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 184) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 185) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 186) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 187) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 188) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 189) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 190) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 191) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 192) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 193) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 194) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 195) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 196) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 197) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 198) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 199) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 200) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 201) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 202) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 203) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 204) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 205) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 206) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 207) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 208) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 209) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 210) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 211) | SYS_SOCKET = 394 constant SYS_GETFH (line 212) | SYS_GETFH = 395 constant SYS_MOUNT (line 213) | SYS_MOUNT = 410 constant SYS_MREMAP (line 214) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 215) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 216) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 217) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 218) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 219) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 220) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 221) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 222) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 223) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 224) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 225) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 226) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 227) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 228) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 229) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 231) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 232) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 233) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 234) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 235) | SYS_KEVENT = 435 constant SYS_PSELECT (line 236) | SYS_PSELECT = 436 constant SYS_POLLTS (line 237) | SYS_POLLTS = 437 constant SYS_STAT (line 238) | SYS_STAT = 439 constant SYS_FSTAT (line 239) | SYS_FSTAT = 440 constant SYS_LSTAT (line 240) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 241) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 242) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 243) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 244) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 245) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 246) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 247) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 248) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 249) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 250) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 251) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 252) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 253) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 254) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 255) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 256) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 257) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 258) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 259) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 260) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 261) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 262) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 263) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 264) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 265) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 266) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 267) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 268) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 269) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 270) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 271) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 272) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 273) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 274) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_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_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_CHDIR (line 18) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 19) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 20) | SYS_CHMOD = 15 constant SYS_CHOWN (line 21) | SYS_CHOWN = 16 constant SYS_BREAK (line 22) | SYS_BREAK = 17 constant SYS_GETPID (line 23) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 24) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 25) | SYS_SETUID = 23 constant SYS_GETUID (line 26) | SYS_GETUID = 24 constant SYS_GETEUID (line 27) | SYS_GETEUID = 25 constant SYS_PTRACE (line 28) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 29) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 30) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 31) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 32) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 33) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 34) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 35) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 36) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 37) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 38) | SYS_SYNC = 36 constant SYS_KILL (line 39) | SYS_KILL = 37 constant SYS_GETPPID (line 40) | SYS_GETPPID = 39 constant SYS_DUP (line 41) | SYS_DUP = 41 constant SYS_PIPE (line 42) | SYS_PIPE = 42 constant SYS_GETEGID (line 43) | SYS_GETEGID = 43 constant SYS_PROFIL (line 44) | SYS_PROFIL = 44 constant SYS_KTRACE (line 45) | SYS_KTRACE = 45 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 47) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 48) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 49) | SYS_ACCT = 51 constant SYS_IOCTL (line 50) | SYS_IOCTL = 54 constant SYS_REVOKE (line 51) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 52) | SYS_SYMLINK = 57 constant SYS_READLINK (line 53) | SYS_READLINK = 58 constant SYS_EXECVE (line 54) | SYS_EXECVE = 59 constant SYS_UMASK (line 55) | SYS_UMASK = 60 constant SYS_CHROOT (line 56) | SYS_CHROOT = 61 constant SYS_VFORK (line 57) | SYS_VFORK = 66 constant SYS_SBRK (line 58) | SYS_SBRK = 69 constant SYS_SSTK (line 59) | SYS_SSTK = 70 constant SYS_VADVISE (line 60) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 61) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 62) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 63) | SYS_MADVISE = 75 constant SYS_MINCORE (line 64) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 65) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 66) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 67) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 68) | SYS_SETPGID = 82 constant SYS_DUP2 (line 69) | SYS_DUP2 = 90 constant SYS_FCNTL (line 70) | SYS_FCNTL = 92 constant SYS_FSYNC (line 71) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 72) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 73) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 74) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 75) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 76) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 77) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 78) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 79) | SYS_READV = 120 constant SYS_WRITEV (line 80) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 81) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 82) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 83) | SYS_SETREUID = 126 constant SYS_SETREGID (line 84) | SYS_SETREGID = 127 constant SYS_RENAME (line 85) | SYS_RENAME = 128 constant SYS_FLOCK (line 86) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 87) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 88) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 89) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 90) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 91) | SYS_MKDIR = 136 constant SYS_RMDIR (line 92) | SYS_RMDIR = 137 constant SYS_SETSID (line 93) | SYS_SETSID = 147 constant SYS_SYSARCH (line 94) | SYS_SYSARCH = 165 constant SYS_PREAD (line 95) | SYS_PREAD = 173 constant SYS_PWRITE (line 96) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 97) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 98) | SYS_SETGID = 181 constant SYS_SETEGID (line 99) | SYS_SETEGID = 182 constant SYS_SETEUID (line 100) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 101) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 102) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 103) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 104) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 105) | SYS_MMAP = 197 constant SYS_LSEEK (line 106) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 107) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 108) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 109) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 110) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 111) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 112) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 113) | SYS_GETPGID = 207 constant SYS_REBOOT (line 114) | SYS_REBOOT = 208 constant SYS_POLL (line 115) | SYS_POLL = 209 constant SYS_SEMGET (line 116) | SYS_SEMGET = 221 constant SYS_SEMOP (line 117) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 118) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 119) | SYS_MSGGET = 225 constant SYS_MSGSND (line 120) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 121) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 122) | SYS_SHMAT = 228 constant SYS_SHMDT (line 123) | SYS_SHMDT = 230 constant SYS_SHMGET (line 124) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 125) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 126) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 127) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 128) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 129) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 130) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 131) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 132) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 133) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 134) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 135) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 136) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 137) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 138) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 139) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 140) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 141) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 142) | SYS_GETSID = 286 constant SYS___CLONE (line 143) | SYS___CLONE = 287 constant SYS_FKTRACE (line 144) | SYS_FKTRACE = 288 constant SYS_PREADV (line 145) | SYS_PREADV = 289 constant SYS_PWRITEV (line 146) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 147) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 148) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 149) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 150) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 151) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 152) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 153) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 154) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 155) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 156) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 157) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 158) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 159) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 160) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 161) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 162) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 163) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 164) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 165) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 166) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 167) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 168) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 169) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 170) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 171) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 172) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 173) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 174) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 175) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 176) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 177) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 178) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 179) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 180) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 181) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 182) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 183) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 184) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 185) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 186) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 187) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 188) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 189) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 190) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 191) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 192) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 193) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 194) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 195) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 196) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 197) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 198) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 199) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 200) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 201) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 202) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 203) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 204) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 205) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 206) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 207) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 208) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 209) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 210) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 211) | SYS_SOCKET = 394 constant SYS_GETFH (line 212) | SYS_GETFH = 395 constant SYS_MOUNT (line 213) | SYS_MOUNT = 410 constant SYS_MREMAP (line 214) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 215) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 216) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 217) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 218) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 219) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 220) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 221) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 222) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 223) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 224) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 225) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 226) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 227) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 228) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 229) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 231) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 232) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 233) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 234) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 235) | SYS_KEVENT = 435 constant SYS_PSELECT (line 236) | SYS_PSELECT = 436 constant SYS_POLLTS (line 237) | SYS_POLLTS = 437 constant SYS_STAT (line 238) | SYS_STAT = 439 constant SYS_FSTAT (line 239) | SYS_FSTAT = 440 constant SYS_LSTAT (line 240) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 241) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 242) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 243) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 244) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 245) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 246) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 247) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 248) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 249) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 250) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 251) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 252) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 253) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 254) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 255) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 256) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 257) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 258) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 259) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 260) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 261) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 262) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 263) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 264) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 265) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 266) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 267) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 268) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 269) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 270) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 271) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 272) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 273) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 274) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_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_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_CHDIR (line 18) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 19) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 20) | SYS_CHMOD = 15 constant SYS_CHOWN (line 21) | SYS_CHOWN = 16 constant SYS_BREAK (line 22) | SYS_BREAK = 17 constant SYS_GETPID (line 23) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 24) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 25) | SYS_SETUID = 23 constant SYS_GETUID (line 26) | SYS_GETUID = 24 constant SYS_GETEUID (line 27) | SYS_GETEUID = 25 constant SYS_PTRACE (line 28) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 29) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 30) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 31) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 32) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 33) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 34) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 35) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 36) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 37) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 38) | SYS_SYNC = 36 constant SYS_KILL (line 39) | SYS_KILL = 37 constant SYS_GETPPID (line 40) | SYS_GETPPID = 39 constant SYS_DUP (line 41) | SYS_DUP = 41 constant SYS_PIPE (line 42) | SYS_PIPE = 42 constant SYS_GETEGID (line 43) | SYS_GETEGID = 43 constant SYS_PROFIL (line 44) | SYS_PROFIL = 44 constant SYS_KTRACE (line 45) | SYS_KTRACE = 45 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 47) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 48) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 49) | SYS_ACCT = 51 constant SYS_IOCTL (line 50) | SYS_IOCTL = 54 constant SYS_REVOKE (line 51) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 52) | SYS_SYMLINK = 57 constant SYS_READLINK (line 53) | SYS_READLINK = 58 constant SYS_EXECVE (line 54) | SYS_EXECVE = 59 constant SYS_UMASK (line 55) | SYS_UMASK = 60 constant SYS_CHROOT (line 56) | SYS_CHROOT = 61 constant SYS_VFORK (line 57) | SYS_VFORK = 66 constant SYS_SBRK (line 58) | SYS_SBRK = 69 constant SYS_SSTK (line 59) | SYS_SSTK = 70 constant SYS_VADVISE (line 60) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 61) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 62) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 63) | SYS_MADVISE = 75 constant SYS_MINCORE (line 64) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 65) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 66) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 67) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 68) | SYS_SETPGID = 82 constant SYS_DUP2 (line 69) | SYS_DUP2 = 90 constant SYS_FCNTL (line 70) | SYS_FCNTL = 92 constant SYS_FSYNC (line 71) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 72) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 73) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 74) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 75) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 76) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 77) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 78) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 79) | SYS_READV = 120 constant SYS_WRITEV (line 80) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 81) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 82) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 83) | SYS_SETREUID = 126 constant SYS_SETREGID (line 84) | SYS_SETREGID = 127 constant SYS_RENAME (line 85) | SYS_RENAME = 128 constant SYS_FLOCK (line 86) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 87) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 88) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 89) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 90) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 91) | SYS_MKDIR = 136 constant SYS_RMDIR (line 92) | SYS_RMDIR = 137 constant SYS_SETSID (line 93) | SYS_SETSID = 147 constant SYS_SYSARCH (line 94) | SYS_SYSARCH = 165 constant SYS_PREAD (line 95) | SYS_PREAD = 173 constant SYS_PWRITE (line 96) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 97) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 98) | SYS_SETGID = 181 constant SYS_SETEGID (line 99) | SYS_SETEGID = 182 constant SYS_SETEUID (line 100) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 101) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 102) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 103) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 104) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 105) | SYS_MMAP = 197 constant SYS_LSEEK (line 106) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 107) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 108) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 109) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 110) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 111) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 112) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 113) | SYS_GETPGID = 207 constant SYS_REBOOT (line 114) | SYS_REBOOT = 208 constant SYS_POLL (line 115) | SYS_POLL = 209 constant SYS_SEMGET (line 116) | SYS_SEMGET = 221 constant SYS_SEMOP (line 117) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 118) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 119) | SYS_MSGGET = 225 constant SYS_MSGSND (line 120) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 121) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 122) | SYS_SHMAT = 228 constant SYS_SHMDT (line 123) | SYS_SHMDT = 230 constant SYS_SHMGET (line 124) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 125) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 126) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 127) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 128) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 129) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 130) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 131) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 132) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 133) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 134) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 135) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 136) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 137) | SYS_LCHOWN = 275 constant SYS_MSYNC (line 138) | SYS_MSYNC = 277 constant SYS___POSIX_CHOWN (line 139) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 140) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 141) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 142) | SYS_GETSID = 286 constant SYS___CLONE (line 143) | SYS___CLONE = 287 constant SYS_FKTRACE (line 144) | SYS_FKTRACE = 288 constant SYS_PREADV (line 145) | SYS_PREADV = 289 constant SYS_PWRITEV (line 146) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 147) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 148) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 149) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 150) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 151) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 152) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 153) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 154) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 155) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 156) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 157) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 158) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 159) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 160) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 161) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 162) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 163) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 164) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 165) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 166) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 167) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 168) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 169) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 170) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 171) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 172) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 173) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 174) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 175) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 176) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 177) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 178) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 179) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 180) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 181) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 182) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 183) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 184) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 185) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 186) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 187) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 188) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 189) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 190) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 191) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 192) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 193) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 194) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 195) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 196) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 197) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 198) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 199) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 200) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 201) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 202) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 203) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 204) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 205) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 206) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 207) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 208) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 209) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 210) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 211) | SYS_SOCKET = 394 constant SYS_GETFH (line 212) | SYS_GETFH = 395 constant SYS_MOUNT (line 213) | SYS_MOUNT = 410 constant SYS_MREMAP (line 214) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 215) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 216) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 217) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 218) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 219) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 220) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 221) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 222) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 223) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 224) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 225) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 226) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 227) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 228) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 229) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 231) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 232) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 233) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 234) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 235) | SYS_KEVENT = 435 constant SYS_PSELECT (line 236) | SYS_PSELECT = 436 constant SYS_POLLTS (line 237) | SYS_POLLTS = 437 constant SYS_STAT (line 238) | SYS_STAT = 439 constant SYS_FSTAT (line 239) | SYS_FSTAT = 440 constant SYS_LSTAT (line 240) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 241) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 242) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 243) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 244) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 245) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 246) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 247) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 248) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 249) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 250) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 251) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 252) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 253) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 254) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 255) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 256) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 257) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 258) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 259) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 260) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 261) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 262) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 263) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 264) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 265) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 266) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 267) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 268) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 269) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 270) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 271) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 272) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 273) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 274) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_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_GETENTROPY (line 16) | SYS_GETENTROPY = 7 constant SYS___TFORK (line 17) | SYS___TFORK = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 20) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_OBREAK (line 26) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 27) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 28) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 31) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_GETEUID (line 34) | SYS_GETEUID = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 36) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 37) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 38) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 39) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 40) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 41) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 43) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 44) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_STAT (line 46) | SYS_STAT = 38 constant SYS_GETPPID (line 47) | SYS_GETPPID = 39 constant SYS_LSTAT (line 48) | SYS_LSTAT = 40 constant SYS_DUP (line 49) | SYS_DUP = 41 constant SYS_FSTATAT (line 50) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 51) | SYS_GETEGID = 43 constant SYS_PROFIL (line 52) | SYS_PROFIL = 44 constant SYS_KTRACE (line 53) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 54) | SYS_SIGACTION = 46 constant SYS_GETGID (line 55) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 56) | SYS_SIGPROCMASK = 48 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_FUTEX (line 90) | SYS_FUTEX = 83 constant SYS_UTIMENSAT (line 91) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 92) | SYS_FUTIMENS = 85 constant SYS_KBIND (line 93) | SYS_KBIND = 86 constant SYS_CLOCK_GETTIME (line 94) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 95) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 96) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 97) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 98) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 99) | SYS_FCNTL = 92 constant SYS_ACCEPT4 (line 100) | SYS_ACCEPT4 = 93 constant SYS___THRSLEEP (line 101) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 102) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 103) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 104) | SYS_SOCKET = 97 constant SYS_CONNECT (line 105) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 106) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 107) | SYS_GETPRIORITY = 100 constant SYS_PIPE2 (line 108) | SYS_PIPE2 = 101 constant SYS_DUP3 (line 109) | SYS_DUP3 = 102 constant SYS_SIGRETURN (line 110) | SYS_SIGRETURN = 103 constant SYS_BIND (line 111) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 112) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 113) | SYS_LISTEN = 106 constant SYS_CHFLAGSAT (line 114) | SYS_CHFLAGSAT = 107 constant SYS_PLEDGE (line 115) | SYS_PLEDGE = 108 constant SYS_PPOLL (line 116) | SYS_PPOLL = 109 constant SYS_PSELECT (line 117) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 118) | SYS_SIGSUSPEND = 111 constant SYS_SENDSYSLOG (line 119) | SYS_SENDSYSLOG = 112 constant SYS_UNVEIL (line 120) | SYS_UNVEIL = 114 constant SYS_GETSOCKOPT (line 121) | SYS_GETSOCKOPT = 118 constant SYS_THRKILL (line 122) | SYS_THRKILL = 119 constant SYS_READV (line 123) | SYS_READV = 120 constant SYS_WRITEV (line 124) | SYS_WRITEV = 121 constant SYS_KILL (line 125) | SYS_KILL = 122 constant SYS_FCHOWN (line 126) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 127) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 128) | SYS_SETREUID = 126 constant SYS_SETREGID (line 129) | SYS_SETREGID = 127 constant SYS_RENAME (line 130) | SYS_RENAME = 128 constant SYS_FLOCK (line 131) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 132) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 133) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 134) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 135) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 136) | SYS_MKDIR = 136 constant SYS_RMDIR (line 137) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 138) | SYS_ADJTIME = 140 constant SYS_GETLOGIN_R (line 139) | SYS_GETLOGIN_R = 141 constant SYS_SETSID (line 140) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 142) | SYS_NFSSVC = 155 constant SYS_GETFH (line 143) | SYS_GETFH = 161 constant SYS_SYSARCH (line 144) | SYS_SYSARCH = 165 constant SYS_PREAD (line 145) | SYS_PREAD = 173 constant SYS_PWRITE (line 146) | SYS_PWRITE = 174 constant SYS_SETGID (line 147) | SYS_SETGID = 181 constant SYS_SETEGID (line 148) | SYS_SETEGID = 182 constant SYS_SETEUID (line 149) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 150) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 151) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 152) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 153) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 154) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 155) | SYS_MMAP = 197 constant SYS_LSEEK (line 156) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 157) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 158) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 159) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 160) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 162) | SYS_GETPGID = 207 constant SYS_UTRACE (line 163) | SYS_UTRACE = 209 constant SYS_SEMGET (line 164) | SYS_SEMGET = 221 constant SYS_MSGGET (line 165) | SYS_MSGGET = 225 constant SYS_MSGSND (line 166) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 167) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 168) | SYS_SHMAT = 228 constant SYS_SHMDT (line 169) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 170) | SYS_MINHERIT = 250 constant SYS_POLL (line 171) | SYS_POLL = 252 constant SYS_ISSETUGID (line 172) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 173) | SYS_LCHOWN = 254 constant SYS_GETSID (line 174) | SYS_GETSID = 255 constant SYS_MSYNC (line 175) | SYS_MSYNC = 256 constant SYS_PIPE (line 176) | SYS_PIPE = 263 constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 264 constant SYS_PREADV (line 178) | SYS_PREADV = 267 constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 180) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 181) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 182) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 183) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 184) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 185) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 186) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 187) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 188) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 189) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 190) | SYS_SHMGET = 289 constant SYS_SEMOP (line 191) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 192) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 193) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 194) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 195) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 196) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 197) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 198) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 199) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 200) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 201) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 202) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 203) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 204) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 205) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 206) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 207) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 208) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 209) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 210) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 211) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 212) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 213) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 214) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 215) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 216) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 217) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 218) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_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_GETENTROPY (line 16) | SYS_GETENTROPY = 7 constant SYS___TFORK (line 17) | SYS___TFORK = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 20) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_OBREAK (line 26) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 27) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 28) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 31) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_GETEUID (line 34) | SYS_GETEUID = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 36) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 37) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 38) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 39) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 40) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 41) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 43) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 44) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_STAT (line 46) | SYS_STAT = 38 constant SYS_GETPPID (line 47) | SYS_GETPPID = 39 constant SYS_LSTAT (line 48) | SYS_LSTAT = 40 constant SYS_DUP (line 49) | SYS_DUP = 41 constant SYS_FSTATAT (line 50) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 51) | SYS_GETEGID = 43 constant SYS_PROFIL (line 52) | SYS_PROFIL = 44 constant SYS_KTRACE (line 53) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 54) | SYS_SIGACTION = 46 constant SYS_GETGID (line 55) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 56) | SYS_SIGPROCMASK = 48 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_FUTEX (line 90) | SYS_FUTEX = 83 constant SYS_UTIMENSAT (line 91) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 92) | SYS_FUTIMENS = 85 constant SYS_KBIND (line 93) | SYS_KBIND = 86 constant SYS_CLOCK_GETTIME (line 94) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 95) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 96) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 97) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 98) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 99) | SYS_FCNTL = 92 constant SYS_ACCEPT4 (line 100) | SYS_ACCEPT4 = 93 constant SYS___THRSLEEP (line 101) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 102) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 103) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 104) | SYS_SOCKET = 97 constant SYS_CONNECT (line 105) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 106) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 107) | SYS_GETPRIORITY = 100 constant SYS_PIPE2 (line 108) | SYS_PIPE2 = 101 constant SYS_DUP3 (line 109) | SYS_DUP3 = 102 constant SYS_SIGRETURN (line 110) | SYS_SIGRETURN = 103 constant SYS_BIND (line 111) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 112) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 113) | SYS_LISTEN = 106 constant SYS_CHFLAGSAT (line 114) | SYS_CHFLAGSAT = 107 constant SYS_PLEDGE (line 115) | SYS_PLEDGE = 108 constant SYS_PPOLL (line 116) | SYS_PPOLL = 109 constant SYS_PSELECT (line 117) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 118) | SYS_SIGSUSPEND = 111 constant SYS_SENDSYSLOG (line 119) | SYS_SENDSYSLOG = 112 constant SYS_UNVEIL (line 120) | SYS_UNVEIL = 114 constant SYS_GETSOCKOPT (line 121) | SYS_GETSOCKOPT = 118 constant SYS_THRKILL (line 122) | SYS_THRKILL = 119 constant SYS_READV (line 123) | SYS_READV = 120 constant SYS_WRITEV (line 124) | SYS_WRITEV = 121 constant SYS_KILL (line 125) | SYS_KILL = 122 constant SYS_FCHOWN (line 126) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 127) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 128) | SYS_SETREUID = 126 constant SYS_SETREGID (line 129) | SYS_SETREGID = 127 constant SYS_RENAME (line 130) | SYS_RENAME = 128 constant SYS_FLOCK (line 131) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 132) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 133) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 134) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 135) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 136) | SYS_MKDIR = 136 constant SYS_RMDIR (line 137) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 138) | SYS_ADJTIME = 140 constant SYS_GETLOGIN_R (line 139) | SYS_GETLOGIN_R = 141 constant SYS_SETSID (line 140) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 142) | SYS_NFSSVC = 155 constant SYS_GETFH (line 143) | SYS_GETFH = 161 constant SYS_SYSARCH (line 144) | SYS_SYSARCH = 165 constant SYS_PREAD (line 145) | SYS_PREAD = 173 constant SYS_PWRITE (line 146) | SYS_PWRITE = 174 constant SYS_SETGID (line 147) | SYS_SETGID = 181 constant SYS_SETEGID (line 148) | SYS_SETEGID = 182 constant SYS_SETEUID (line 149) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 150) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 151) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 152) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 153) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 154) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 155) | SYS_MMAP = 197 constant SYS_LSEEK (line 156) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 157) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 158) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 159) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 160) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 162) | SYS_GETPGID = 207 constant SYS_UTRACE (line 163) | SYS_UTRACE = 209 constant SYS_SEMGET (line 164) | SYS_SEMGET = 221 constant SYS_MSGGET (line 165) | SYS_MSGGET = 225 constant SYS_MSGSND (line 166) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 167) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 168) | SYS_SHMAT = 228 constant SYS_SHMDT (line 169) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 170) | SYS_MINHERIT = 250 constant SYS_POLL (line 171) | SYS_POLL = 252 constant SYS_ISSETUGID (line 172) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 173) | SYS_LCHOWN = 254 constant SYS_GETSID (line 174) | SYS_GETSID = 255 constant SYS_MSYNC (line 175) | SYS_MSYNC = 256 constant SYS_PIPE (line 176) | SYS_PIPE = 263 constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 264 constant SYS_PREADV (line 178) | SYS_PREADV = 267 constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 180) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 181) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 182) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 183) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 184) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 185) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 186) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 187) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 188) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 189) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 190) | SYS_SHMGET = 289 constant SYS_SEMOP (line 191) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 192) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 193) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 194) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 195) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 196) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 197) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 198) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 199) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 200) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 201) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 202) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 203) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 204) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 205) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 206) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 207) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 208) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 209) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 210) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 211) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 212) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 213) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 214) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 215) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 216) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 217) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 218) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_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_GETENTROPY (line 16) | SYS_GETENTROPY = 7 constant SYS___TFORK (line 17) | SYS___TFORK = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 20) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_OBREAK (line 26) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 27) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 28) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 31) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_GETEUID (line 34) | SYS_GETEUID = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 36) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 37) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 38) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 39) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 40) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 41) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 43) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 44) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_STAT (line 46) | SYS_STAT = 38 constant SYS_GETPPID (line 47) | SYS_GETPPID = 39 constant SYS_LSTAT (line 48) | SYS_LSTAT = 40 constant SYS_DUP (line 49) | SYS_DUP = 41 constant SYS_FSTATAT (line 50) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 51) | SYS_GETEGID = 43 constant SYS_PROFIL (line 52) | SYS_PROFIL = 44 constant SYS_KTRACE (line 53) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 54) | SYS_SIGACTION = 46 constant SYS_GETGID (line 55) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 56) | SYS_SIGPROCMASK = 48 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_FUTEX (line 90) | SYS_FUTEX = 83 constant SYS_UTIMENSAT (line 91) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 92) | SYS_FUTIMENS = 85 constant SYS_KBIND (line 93) | SYS_KBIND = 86 constant SYS_CLOCK_GETTIME (line 94) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 95) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 96) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 97) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 98) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 99) | SYS_FCNTL = 92 constant SYS_ACCEPT4 (line 100) | SYS_ACCEPT4 = 93 constant SYS___THRSLEEP (line 101) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 102) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 103) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 104) | SYS_SOCKET = 97 constant SYS_CONNECT (line 105) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 106) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 107) | SYS_GETPRIORITY = 100 constant SYS_PIPE2 (line 108) | SYS_PIPE2 = 101 constant SYS_DUP3 (line 109) | SYS_DUP3 = 102 constant SYS_SIGRETURN (line 110) | SYS_SIGRETURN = 103 constant SYS_BIND (line 111) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 112) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 113) | SYS_LISTEN = 106 constant SYS_CHFLAGSAT (line 114) | SYS_CHFLAGSAT = 107 constant SYS_PLEDGE (line 115) | SYS_PLEDGE = 108 constant SYS_PPOLL (line 116) | SYS_PPOLL = 109 constant SYS_PSELECT (line 117) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 118) | SYS_SIGSUSPEND = 111 constant SYS_SENDSYSLOG (line 119) | SYS_SENDSYSLOG = 112 constant SYS_UNVEIL (line 120) | SYS_UNVEIL = 114 constant SYS_GETSOCKOPT (line 121) | SYS_GETSOCKOPT = 118 constant SYS_THRKILL (line 122) | SYS_THRKILL = 119 constant SYS_READV (line 123) | SYS_READV = 120 constant SYS_WRITEV (line 124) | SYS_WRITEV = 121 constant SYS_KILL (line 125) | SYS_KILL = 122 constant SYS_FCHOWN (line 126) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 127) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 128) | SYS_SETREUID = 126 constant SYS_SETREGID (line 129) | SYS_SETREGID = 127 constant SYS_RENAME (line 130) | SYS_RENAME = 128 constant SYS_FLOCK (line 131) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 132) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 133) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 134) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 135) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 136) | SYS_MKDIR = 136 constant SYS_RMDIR (line 137) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 138) | SYS_ADJTIME = 140 constant SYS_GETLOGIN_R (line 139) | SYS_GETLOGIN_R = 141 constant SYS_SETSID (line 140) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 141) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 142) | SYS_NFSSVC = 155 constant SYS_GETFH (line 143) | SYS_GETFH = 161 constant SYS_SYSARCH (line 144) | SYS_SYSARCH = 165 constant SYS_PREAD (line 145) | SYS_PREAD = 173 constant SYS_PWRITE (line 146) | SYS_PWRITE = 174 constant SYS_SETGID (line 147) | SYS_SETGID = 181 constant SYS_SETEGID (line 148) | SYS_SETEGID = 182 constant SYS_SETEUID (line 149) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 150) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 151) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 152) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 153) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 154) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 155) | SYS_MMAP = 197 constant SYS_LSEEK (line 156) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 157) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 158) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 159) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 160) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 161) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 162) | SYS_GETPGID = 207 constant SYS_UTRACE (line 163) | SYS_UTRACE = 209 constant SYS_SEMGET (line 164) | SYS_SEMGET = 221 constant SYS_MSGGET (line 165) | SYS_MSGGET = 225 constant SYS_MSGSND (line 166) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 167) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 168) | SYS_SHMAT = 228 constant SYS_SHMDT (line 169) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 170) | SYS_MINHERIT = 250 constant SYS_POLL (line 171) | SYS_POLL = 252 constant SYS_ISSETUGID (line 172) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 173) | SYS_LCHOWN = 254 constant SYS_GETSID (line 174) | SYS_GETSID = 255 constant SYS_MSYNC (line 175) | SYS_MSYNC = 256 constant SYS_PIPE (line 176) | SYS_PIPE = 263 constant SYS_FHOPEN (line 177) | SYS_FHOPEN = 264 constant SYS_PREADV (line 178) | SYS_PREADV = 267 constant SYS_PWRITEV (line 179) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 180) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 181) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 182) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 183) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 184) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 185) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 186) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 187) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 188) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 189) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 190) | SYS_SHMGET = 289 constant SYS_SEMOP (line 191) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 192) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 193) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 194) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 195) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 196) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 197) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 198) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 199) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 200) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 201) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 202) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 203) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 204) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 205) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 206) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 207) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 208) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 209) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 210) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 211) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 212) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 213) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 214) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 215) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 216) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 217) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 218) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_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_GETENTROPY (line 16) | SYS_GETENTROPY = 7 constant SYS___TFORK (line 17) | SYS___TFORK = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 20) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_OBREAK (line 26) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 27) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 28) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 31) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_GETEUID (line 34) | SYS_GETEUID = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 36) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 37) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 38) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 39) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 40) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 41) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 43) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 44) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_STAT (line 46) | SYS_STAT = 38 constant SYS_GETPPID (line 47) | SYS_GETPPID = 39 constant SYS_LSTAT (line 48) | SYS_LSTAT = 40 constant SYS_DUP (line 49) | SYS_DUP = 41 constant SYS_FSTATAT (line 50) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 51) | SYS_GETEGID = 43 constant SYS_PROFIL (line 52) | SYS_PROFIL = 44 constant SYS_KTRACE (line 53) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 54) | SYS_SIGACTION = 46 constant SYS_GETGID (line 55) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 56) | SYS_SIGPROCMASK = 48 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_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_mips64.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_GETENTROPY (line 16) | SYS_GETENTROPY = 7 constant SYS___TFORK (line 17) | SYS___TFORK = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 20) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 22) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_CHOWN (line 25) | SYS_CHOWN = 16 constant SYS_OBREAK (line 26) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 27) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 28) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 31) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_GETEUID (line 34) | SYS_GETEUID = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 36) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 37) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 38) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 39) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 40) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 41) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 43) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 44) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_MSYSCALL (line 46) | SYS_MSYSCALL = 37 constant SYS_STAT (line 47) | SYS_STAT = 38 constant SYS_GETPPID (line 48) | SYS_GETPPID = 39 constant SYS_LSTAT (line 49) | SYS_LSTAT = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_FSTATAT (line 51) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 52) | SYS_GETEGID = 43 constant SYS_PROFIL (line 53) | SYS_PROFIL = 44 constant SYS_KTRACE (line 54) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 55) | SYS_SIGACTION = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 57) | SYS_SIGPROCMASK = 48 constant SYS_SETLOGIN (line 58) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 59) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 60) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 61) | SYS_FSTAT = 53 constant SYS_IOCTL (line 62) | SYS_IOCTL = 54 constant SYS_REBOOT (line 63) | SYS_REBOOT = 55 constant SYS_REVOKE (line 64) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 65) | SYS_SYMLINK = 57 constant SYS_READLINK (line 66) | SYS_READLINK = 58 constant SYS_EXECVE (line 67) | SYS_EXECVE = 59 constant SYS_UMASK (line 68) | SYS_UMASK = 60 constant SYS_CHROOT (line 69) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 70) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 71) | SYS_STATFS = 63 constant SYS_FSTATFS (line 72) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 73) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 74) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 75) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 76) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 77) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 78) | SYS_GETITIMER = 70 constant SYS_SELECT (line 79) | SYS_SELECT = 71 constant SYS_KEVENT (line 80) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 81) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 82) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 83) | SYS_MADVISE = 75 constant SYS_UTIMES (line 84) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 85) | SYS_FUTIMES = 77 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_FUTEX (line 90) | SYS_FUTEX = 83 constant SYS_UTIMENSAT (line 91) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 92) | SYS_FUTIMENS = 85 constant SYS_KBIND (line 93) | SYS_KBIND = 86 constant SYS_CLOCK_GETTIME (line 94) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 95) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 96) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 97) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 98) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 99) | SYS_FCNTL = 92 constant SYS_ACCEPT4 (line 100) | SYS_ACCEPT4 = 93 constant SYS___THRSLEEP (line 101) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 102) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 103) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 104) | SYS_SOCKET = 97 constant SYS_CONNECT (line 105) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 106) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 107) | SYS_GETPRIORITY = 100 constant SYS_PIPE2 (line 108) | SYS_PIPE2 = 101 constant SYS_DUP3 (line 109) | SYS_DUP3 = 102 constant SYS_SIGRETURN (line 110) | SYS_SIGRETURN = 103 constant SYS_BIND (line 111) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 112) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 113) | SYS_LISTEN = 106 constant SYS_CHFLAGSAT (line 114) | SYS_CHFLAGSAT = 107 constant SYS_PLEDGE (line 115) | SYS_PLEDGE = 108 constant SYS_PPOLL (line 116) | SYS_PPOLL = 109 constant SYS_PSELECT (line 117) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 118) | SYS_SIGSUSPEND = 111 constant SYS_SENDSYSLOG (line 119) | SYS_SENDSYSLOG = 112 constant SYS_UNVEIL (line 120) | SYS_UNVEIL = 114 constant SYS___REALPATH (line 121) | SYS___REALPATH = 115 constant SYS_GETSOCKOPT (line 122) | SYS_GETSOCKOPT = 118 constant SYS_THRKILL (line 123) | SYS_THRKILL = 119 constant SYS_READV (line 124) | SYS_READV = 120 constant SYS_WRITEV (line 125) | SYS_WRITEV = 121 constant SYS_KILL (line 126) | SYS_KILL = 122 constant SYS_FCHOWN (line 127) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 128) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 129) | SYS_SETREUID = 126 constant SYS_SETREGID (line 130) | SYS_SETREGID = 127 constant SYS_RENAME (line 131) | SYS_RENAME = 128 constant SYS_FLOCK (line 132) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 133) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 134) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 135) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 136) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 137) | SYS_MKDIR = 136 constant SYS_RMDIR (line 138) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 139) | SYS_ADJTIME = 140 constant SYS_GETLOGIN_R (line 140) | SYS_GETLOGIN_R = 141 constant SYS_SETSID (line 141) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 142) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 143) | SYS_NFSSVC = 155 constant SYS_GETFH (line 144) | SYS_GETFH = 161 constant SYS___TMPFD (line 145) | SYS___TMPFD = 164 constant SYS_SYSARCH (line 146) | SYS_SYSARCH = 165 constant SYS_PREAD (line 147) | SYS_PREAD = 173 constant SYS_PWRITE (line 148) | SYS_PWRITE = 174 constant SYS_SETGID (line 149) | SYS_SETGID = 181 constant SYS_SETEGID (line 150) | SYS_SETEGID = 182 constant SYS_SETEUID (line 151) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 152) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 153) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 154) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 155) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 156) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 157) | SYS_MMAP = 197 constant SYS_LSEEK (line 158) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 159) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 160) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 161) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 162) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 163) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 164) | SYS_GETPGID = 207 constant SYS_UTRACE (line 165) | SYS_UTRACE = 209 constant SYS_SEMGET (line 166) | SYS_SEMGET = 221 constant SYS_MSGGET (line 167) | SYS_MSGGET = 225 constant SYS_MSGSND (line 168) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 169) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 170) | SYS_SHMAT = 228 constant SYS_SHMDT (line 171) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 172) | SYS_MINHERIT = 250 constant SYS_POLL (line 173) | SYS_POLL = 252 constant SYS_ISSETUGID (line 174) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 175) | SYS_LCHOWN = 254 constant SYS_GETSID (line 176) | SYS_GETSID = 255 constant SYS_MSYNC (line 177) | SYS_MSYNC = 256 constant SYS_PIPE (line 178) | SYS_PIPE = 263 constant SYS_FHOPEN (line 179) | SYS_FHOPEN = 264 constant SYS_PREADV (line 180) | SYS_PREADV = 267 constant SYS_PWRITEV (line 181) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 182) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 183) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 184) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 185) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 186) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 187) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 188) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 189) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 190) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 191) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 192) | SYS_SHMGET = 289 constant SYS_SEMOP (line 193) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 194) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 195) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 196) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 197) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 198) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 199) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 200) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 201) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 202) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 203) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 204) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 205) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 206) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 207) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 208) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 209) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 210) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 211) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 212) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 213) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 214) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 215) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 216) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 217) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 218) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 219) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 220) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go constant SYS_ACOSD128 (line 13) | SYS_ACOSD128 = 0xB80 constant SYS_ACOSD32 (line 14) | SYS_ACOSD32 = 0xB7E constant SYS_ACOSD64 (line 15) | SYS_ACOSD64 = 0xB7F constant SYS_ACOSHD128 (line 16) | SYS_ACOSHD128 = 0xB83 constant SYS_ACOSHD32 (line 17) | SYS_ACOSHD32 = 0xB81 constant SYS_ACOSHD64 (line 18) | SYS_ACOSHD64 = 0xB82 constant SYS_AIO_FSYNC (line 19) | SYS_AIO_FSYNC = 0xC69 constant SYS_ASCTIME (line 20) | SYS_ASCTIME = 0x0AE constant SYS_ASCTIME64 (line 21) | SYS_ASCTIME64 = 0xCD7 constant SYS_ASCTIME64_R (line 22) | SYS_ASCTIME64_R = 0xCD8 constant SYS_ASIND128 (line 23) | SYS_ASIND128 = 0xB86 constant SYS_ASIND32 (line 24) | SYS_ASIND32 = 0xB84 constant SYS_ASIND64 (line 25) | SYS_ASIND64 = 0xB85 constant SYS_ASINHD128 (line 26) | SYS_ASINHD128 = 0xB89 constant SYS_ASINHD32 (line 27) | SYS_ASINHD32 = 0xB87 constant SYS_ASINHD64 (line 28) | SYS_ASINHD64 = 0xB88 constant SYS_ATAN2D128 (line 29) | SYS_ATAN2D128 = 0xB8F constant SYS_ATAN2D32 (line 30) | SYS_ATAN2D32 = 0xB8D constant SYS_ATAN2D64 (line 31) | SYS_ATAN2D64 = 0xB8E constant SYS_ATAND128 (line 32) | SYS_ATAND128 = 0xB8C constant SYS_ATAND32 (line 33) | SYS_ATAND32 = 0xB8A constant SYS_ATAND64 (line 34) | SYS_ATAND64 = 0xB8B constant SYS_ATANHD128 (line 35) | SYS_ATANHD128 = 0xB92 constant SYS_ATANHD32 (line 36) | SYS_ATANHD32 = 0xB90 constant SYS_ATANHD64 (line 37) | SYS_ATANHD64 = 0xB91 constant SYS_BIND2ADDRSEL (line 38) | SYS_BIND2ADDRSEL = 0xD59 constant SYS_C16RTOMB (line 39) | SYS_C16RTOMB = 0xD40 constant SYS_C32RTOMB (line 40) | SYS_C32RTOMB = 0xD41 constant SYS_CBRTD128 (line 41) | SYS_CBRTD128 = 0xB95 constant SYS_CBRTD32 (line 42) | SYS_CBRTD32 = 0xB93 constant SYS_CBRTD64 (line 43) | SYS_CBRTD64 = 0xB94 constant SYS_CEILD128 (line 44) | SYS_CEILD128 = 0xB98 constant SYS_CEILD32 (line 45) | SYS_CEILD32 = 0xB96 constant SYS_CEILD64 (line 46) | SYS_CEILD64 = 0xB97 constant SYS_CLEARENV (line 47) | SYS_CLEARENV = 0x0C9 constant SYS_CLEARERR_UNLOCKED (line 48) | SYS_CLEARERR_UNLOCKED = 0xCA1 constant SYS_CLOCK (line 49) | SYS_CLOCK = 0x0AA constant SYS_CLOGL (line 50) | SYS_CLOGL = 0xA00 constant SYS_CLRMEMF (line 51) | SYS_CLRMEMF = 0x0BD constant SYS_CONJ (line 52) | SYS_CONJ = 0xA03 constant SYS_CONJF (line 53) | SYS_CONJF = 0xA06 constant SYS_CONJL (line 54) | SYS_CONJL = 0xA09 constant SYS_COPYSIGND128 (line 55) | SYS_COPYSIGND128 = 0xB9E constant SYS_COPYSIGND32 (line 56) | SYS_COPYSIGND32 = 0xB9C constant SYS_COPYSIGND64 (line 57) | SYS_COPYSIGND64 = 0xB9D constant SYS_COSD128 (line 58) | SYS_COSD128 = 0xBA1 constant SYS_COSD32 (line 59) | SYS_COSD32 = 0xB9F constant SYS_COSD64 (line 60) | SYS_COSD64 = 0xBA0 constant SYS_COSHD128 (line 61) | SYS_COSHD128 = 0xBA4 constant SYS_COSHD32 (line 62) | SYS_COSHD32 = 0xBA2 constant SYS_COSHD64 (line 63) | SYS_COSHD64 = 0xBA3 constant SYS_CPOW (line 64) | SYS_CPOW = 0xA0C constant SYS_CPOWF (line 65) | SYS_CPOWF = 0xA0F constant SYS_CPOWL (line 66) | SYS_CPOWL = 0xA12 constant SYS_CPROJ (line 67) | SYS_CPROJ = 0xA15 constant SYS_CPROJF (line 68) | SYS_CPROJF = 0xA18 constant SYS_CPROJL (line 69) | SYS_CPROJL = 0xA1B constant SYS_CREAL (line 70) | SYS_CREAL = 0xA1E constant SYS_CREALF (line 71) | SYS_CREALF = 0xA21 constant SYS_CREALL (line 72) | SYS_CREALL = 0xA24 constant SYS_CSIN (line 73) | SYS_CSIN = 0xA27 constant SYS_CSINF (line 74) | SYS_CSINF = 0xA2A constant SYS_CSINH (line 75) | SYS_CSINH = 0xA30 constant SYS_CSINHF (line 76) | SYS_CSINHF = 0xA33 constant SYS_CSINHL (line 77) | SYS_CSINHL = 0xA36 constant SYS_CSINL (line 78) | SYS_CSINL = 0xA2D constant SYS_CSNAP (line 79) | SYS_CSNAP = 0x0C5 constant SYS_CSQRT (line 80) | SYS_CSQRT = 0xA39 constant SYS_CSQRTF (line 81) | SYS_CSQRTF = 0xA3C constant SYS_CSQRTL (line 82) | SYS_CSQRTL = 0xA3F constant SYS_CTAN (line 83) | SYS_CTAN = 0xA42 constant SYS_CTANF (line 84) | SYS_CTANF = 0xA45 constant SYS_CTANH (line 85) | SYS_CTANH = 0xA4B constant SYS_CTANHF (line 86) | SYS_CTANHF = 0xA4E constant SYS_CTANHL (line 87) | SYS_CTANHL = 0xA51 constant SYS_CTANL (line 88) | SYS_CTANL = 0xA48 constant SYS_CTIME (line 89) | SYS_CTIME = 0x0AB constant SYS_CTIME64 (line 90) | SYS_CTIME64 = 0xCD9 constant SYS_CTIME64_R (line 91) | SYS_CTIME64_R = 0xCDA constant SYS_CTRACE (line 92) | SYS_CTRACE = 0x0C6 constant SYS_DIFFTIME (line 93) | SYS_DIFFTIME = 0x0A7 constant SYS_DIFFTIME64 (line 94) | SYS_DIFFTIME64 = 0xCDB constant SYS_DLADDR (line 95) | SYS_DLADDR = 0xC82 constant SYS_DYNALLOC (line 96) | SYS_DYNALLOC = 0x0C3 constant SYS_DYNFREE (line 97) | SYS_DYNFREE = 0x0C2 constant SYS_ERFCD128 (line 98) | SYS_ERFCD128 = 0xBAA constant SYS_ERFCD32 (line 99) | SYS_ERFCD32 = 0xBA8 constant SYS_ERFCD64 (line 100) | SYS_ERFCD64 = 0xBA9 constant SYS_ERFD128 (line 101) | SYS_ERFD128 = 0xBA7 constant SYS_ERFD32 (line 102) | SYS_ERFD32 = 0xBA5 constant SYS_ERFD64 (line 103) | SYS_ERFD64 = 0xBA6 constant SYS_EXP2D128 (line 104) | SYS_EXP2D128 = 0xBB0 constant SYS_EXP2D32 (line 105) | SYS_EXP2D32 = 0xBAE constant SYS_EXP2D64 (line 106) | SYS_EXP2D64 = 0xBAF constant SYS_EXPD128 (line 107) | SYS_EXPD128 = 0xBAD constant SYS_EXPD32 (line 108) | SYS_EXPD32 = 0xBAB constant SYS_EXPD64 (line 109) | SYS_EXPD64 = 0xBAC constant SYS_EXPM1D128 (line 110) | SYS_EXPM1D128 = 0xBB3 constant SYS_EXPM1D32 (line 111) | SYS_EXPM1D32 = 0xBB1 constant SYS_EXPM1D64 (line 112) | SYS_EXPM1D64 = 0xBB2 constant SYS_FABSD128 (line 113) | SYS_FABSD128 = 0xBB6 constant SYS_FABSD32 (line 114) | SYS_FABSD32 = 0xBB4 constant SYS_FABSD64 (line 115) | SYS_FABSD64 = 0xBB5 constant SYS_FDELREC_UNLOCKED (line 116) | SYS_FDELREC_UNLOCKED = 0xCA2 constant SYS_FDIMD128 (line 117) | SYS_FDIMD128 = 0xBB9 constant SYS_FDIMD32 (line 118) | SYS_FDIMD32 = 0xBB7 constant SYS_FDIMD64 (line 119) | SYS_FDIMD64 = 0xBB8 constant SYS_FDOPEN_UNLOCKED (line 120) | SYS_FDOPEN_UNLOCKED = 0xCFC constant SYS_FECLEAREXCEPT (line 121) | SYS_FECLEAREXCEPT = 0xAEA constant SYS_FEGETENV (line 122) | SYS_FEGETENV = 0xAEB constant SYS_FEGETEXCEPTFLAG (line 123) | SYS_FEGETEXCEPTFLAG = 0xAEC constant SYS_FEGETROUND (line 124) | SYS_FEGETROUND = 0xAED constant SYS_FEHOLDEXCEPT (line 125) | SYS_FEHOLDEXCEPT = 0xAEE constant SYS_FEOF_UNLOCKED (line 126) | SYS_FEOF_UNLOCKED = 0xCA3 constant SYS_FERAISEEXCEPT (line 127) | SYS_FERAISEEXCEPT = 0xAEF constant SYS_FERROR_UNLOCKED (line 128) | SYS_FERROR_UNLOCKED = 0xCA4 constant SYS_FESETENV (line 129) | SYS_FESETENV = 0xAF0 constant SYS_FESETEXCEPTFLAG (line 130) | SYS_FESETEXCEPTFLAG = 0xAF1 constant SYS_FESETROUND (line 131) | SYS_FESETROUND = 0xAF2 constant SYS_FETCHEP (line 132) | SYS_FETCHEP = 0x0BF constant SYS_FETESTEXCEPT (line 133) | SYS_FETESTEXCEPT = 0xAF3 constant SYS_FEUPDATEENV (line 134) | SYS_FEUPDATEENV = 0xAF4 constant SYS_FE_DEC_GETROUND (line 135) | SYS_FE_DEC_GETROUND = 0xBBA constant SYS_FE_DEC_SETROUND (line 136) | SYS_FE_DEC_SETROUND = 0xBBB constant SYS_FFLUSH_UNLOCKED (line 137) | SYS_FFLUSH_UNLOCKED = 0xCA5 constant SYS_FGETC_UNLOCKED (line 138) | SYS_FGETC_UNLOCKED = 0xC80 constant SYS_FGETPOS64 (line 139) | SYS_FGETPOS64 = 0xCEE constant SYS_FGETPOS64_UNLOCKED (line 140) | SYS_FGETPOS64_UNLOCKED = 0xCF4 constant SYS_FGETPOS_UNLOCKED (line 141) | SYS_FGETPOS_UNLOCKED = 0xCA6 constant SYS_FGETS_UNLOCKED (line 142) | SYS_FGETS_UNLOCKED = 0xC7C constant SYS_FGETWC_UNLOCKED (line 143) | SYS_FGETWC_UNLOCKED = 0xCA7 constant SYS_FGETWS_UNLOCKED (line 144) | SYS_FGETWS_UNLOCKED = 0xCA8 constant SYS_FILENO_UNLOCKED (line 145) | SYS_FILENO_UNLOCKED = 0xCA9 constant SYS_FLDATA (line 146) | SYS_FLDATA = 0x0C1 constant SYS_FLDATA_UNLOCKED (line 147) | SYS_FLDATA_UNLOCKED = 0xCAA constant SYS_FLOCATE_UNLOCKED (line 148) | SYS_FLOCATE_UNLOCKED = 0xCAB constant SYS_FLOORD128 (line 149) | SYS_FLOORD128 = 0xBBE constant SYS_FLOORD32 (line 150) | SYS_FLOORD32 = 0xBBC constant SYS_FLOORD64 (line 151) | SYS_FLOORD64 = 0xBBD constant SYS_FMA (line 152) | SYS_FMA = 0xA63 constant SYS_FMAD128 (line 153) | SYS_FMAD128 = 0xBC1 constant SYS_FMAD32 (line 154) | SYS_FMAD32 = 0xBBF constant SYS_FMAD64 (line 155) | SYS_FMAD64 = 0xBC0 constant SYS_FMAF (line 156) | SYS_FMAF = 0xA66 constant SYS_FMAL (line 157) | SYS_FMAL = 0xA69 constant SYS_FMAX (line 158) | SYS_FMAX = 0xA6C constant SYS_FMAXD128 (line 159) | SYS_FMAXD128 = 0xBC4 constant SYS_FMAXD32 (line 160) | SYS_FMAXD32 = 0xBC2 constant SYS_FMAXD64 (line 161) | SYS_FMAXD64 = 0xBC3 constant SYS_FMAXF (line 162) | SYS_FMAXF = 0xA6F constant SYS_FMAXL (line 163) | SYS_FMAXL = 0xA72 constant SYS_FMIN (line 164) | SYS_FMIN = 0xA75 constant SYS_FMIND128 (line 165) | SYS_FMIND128 = 0xBC7 constant SYS_FMIND32 (line 166) | SYS_FMIND32 = 0xBC5 constant SYS_FMIND64 (line 167) | SYS_FMIND64 = 0xBC6 constant SYS_FMINF (line 168) | SYS_FMINF = 0xA78 constant SYS_FMINL (line 169) | SYS_FMINL = 0xA7B constant SYS_FMODD128 (line 170) | SYS_FMODD128 = 0xBCA constant SYS_FMODD32 (line 171) | SYS_FMODD32 = 0xBC8 constant SYS_FMODD64 (line 172) | SYS_FMODD64 = 0xBC9 constant SYS_FOPEN64 (line 173) | SYS_FOPEN64 = 0xD49 constant SYS_FOPEN64_UNLOCKED (line 174) | SYS_FOPEN64_UNLOCKED = 0xD4A constant SYS_FOPEN_UNLOCKED (line 175) | SYS_FOPEN_UNLOCKED = 0xCFA constant SYS_FPRINTF_UNLOCKED (line 176) | SYS_FPRINTF_UNLOCKED = 0xCAC constant SYS_FPUTC_UNLOCKED (line 177) | SYS_FPUTC_UNLOCKED = 0xC81 constant SYS_FPUTS_UNLOCKED (line 178) | SYS_FPUTS_UNLOCKED = 0xC7E constant SYS_FPUTWC_UNLOCKED (line 179) | SYS_FPUTWC_UNLOCKED = 0xCAD constant SYS_FPUTWS_UNLOCKED (line 180) | SYS_FPUTWS_UNLOCKED = 0xCAE constant SYS_FREAD_NOUPDATE (line 181) | SYS_FREAD_NOUPDATE = 0xCEC constant SYS_FREAD_NOUPDATE_UNLOCKED (line 182) | SYS_FREAD_NOUPDATE_UNLOCKED = 0xCED constant SYS_FREAD_UNLOCKED (line 183) | SYS_FREAD_UNLOCKED = 0xC7B constant SYS_FREEIFADDRS (line 184) | SYS_FREEIFADDRS = 0xCE6 constant SYS_FREOPEN64 (line 185) | SYS_FREOPEN64 = 0xD4B constant SYS_FREOPEN64_UNLOCKED (line 186) | SYS_FREOPEN64_UNLOCKED = 0xD4C constant SYS_FREOPEN_UNLOCKED (line 187) | SYS_FREOPEN_UNLOCKED = 0xCFB constant SYS_FREXPD128 (line 188) | SYS_FREXPD128 = 0xBCE constant SYS_FREXPD32 (line 189) | SYS_FREXPD32 = 0xBCC constant SYS_FREXPD64 (line 190) | SYS_FREXPD64 = 0xBCD constant SYS_FSCANF_UNLOCKED (line 191) | SYS_FSCANF_UNLOCKED = 0xCAF constant SYS_FSEEK64 (line 192) | SYS_FSEEK64 = 0xCEF constant SYS_FSEEK64_UNLOCKED (line 193) | SYS_FSEEK64_UNLOCKED = 0xCF5 constant SYS_FSEEKO64 (line 194) | SYS_FSEEKO64 = 0xCF0 constant SYS_FSEEKO64_UNLOCKED (line 195) | SYS_FSEEKO64_UNLOCKED = 0xCF6 constant SYS_FSEEKO_UNLOCKED (line 196) | SYS_FSEEKO_UNLOCKED = 0xCB1 constant SYS_FSEEK_UNLOCKED (line 197) | SYS_FSEEK_UNLOCKED = 0xCB0 constant SYS_FSETPOS64 (line 198) | SYS_FSETPOS64 = 0xCF1 constant SYS_FSETPOS64_UNLOCKED (line 199) | SYS_FSETPOS64_UNLOCKED = 0xCF7 constant SYS_FSETPOS_UNLOCKED (line 200) | SYS_FSETPOS_UNLOCKED = 0xCB3 constant SYS_FTELL64 (line 201) | SYS_FTELL64 = 0xCF2 constant SYS_FTELL64_UNLOCKED (line 202) | SYS_FTELL64_UNLOCKED = 0xCF8 constant SYS_FTELLO64 (line 203) | SYS_FTELLO64 = 0xCF3 constant SYS_FTELLO64_UNLOCKED (line 204) | SYS_FTELLO64_UNLOCKED = 0xCF9 constant SYS_FTELLO_UNLOCKED (line 205) | SYS_FTELLO_UNLOCKED = 0xCB5 constant SYS_FTELL_UNLOCKED (line 206) | SYS_FTELL_UNLOCKED = 0xCB4 constant SYS_FUPDATE (line 207) | SYS_FUPDATE = 0x0B5 constant SYS_FUPDATE_UNLOCKED (line 208) | SYS_FUPDATE_UNLOCKED = 0xCB7 constant SYS_FWIDE_UNLOCKED (line 209) | SYS_FWIDE_UNLOCKED = 0xCB8 constant SYS_FWPRINTF_UNLOCKED (line 210) | SYS_FWPRINTF_UNLOCKED = 0xCB9 constant SYS_FWRITE_UNLOCKED (line 211) | SYS_FWRITE_UNLOCKED = 0xC7A constant SYS_FWSCANF_UNLOCKED (line 212) | SYS_FWSCANF_UNLOCKED = 0xCBA constant SYS_GETDATE64 (line 213) | SYS_GETDATE64 = 0xD4F constant SYS_GETIFADDRS (line 214) | SYS_GETIFADDRS = 0xCE7 constant SYS_GETIPV4SOURCEFILTER (line 215) | SYS_GETIPV4SOURCEFILTER = 0xC77 constant SYS_GETSOURCEFILTER (line 216) | SYS_GETSOURCEFILTER = 0xC79 constant SYS_GETSYNTX (line 217) | SYS_GETSYNTX = 0x0FD constant SYS_GETS_UNLOCKED (line 218) | SYS_GETS_UNLOCKED = 0xC7D constant SYS_GETTIMEOFDAY64 (line 219) | SYS_GETTIMEOFDAY64 = 0xD50 constant SYS_GETWCHAR_UNLOCKED (line 220) | SYS_GETWCHAR_UNLOCKED = 0xCBC constant SYS_GETWC_UNLOCKED (line 221) | SYS_GETWC_UNLOCKED = 0xCBB constant SYS_GMTIME (line 222) | SYS_GMTIME = 0x0B0 constant SYS_GMTIME64 (line 223) | SYS_GMTIME64 = 0xCDC constant SYS_GMTIME64_R (line 224) | SYS_GMTIME64_R = 0xCDD constant SYS_HYPOTD128 (line 225) | SYS_HYPOTD128 = 0xBD1 constant SYS_HYPOTD32 (line 226) | SYS_HYPOTD32 = 0xBCF constant SYS_HYPOTD64 (line 227) | SYS_HYPOTD64 = 0xBD0 constant SYS_ILOGBD128 (line 228) | SYS_ILOGBD128 = 0xBD4 constant SYS_ILOGBD32 (line 229) | SYS_ILOGBD32 = 0xBD2 constant SYS_ILOGBD64 (line 230) | SYS_ILOGBD64 = 0xBD3 constant SYS_ILOGBF (line 231) | SYS_ILOGBF = 0xA7E constant SYS_ILOGBL (line 232) | SYS_ILOGBL = 0xA81 constant SYS_INET6_IS_SRCADDR (line 233) | SYS_INET6_IS_SRCADDR = 0xD5A constant SYS_ISBLANK (line 234) | SYS_ISBLANK = 0x0FE constant SYS_ISWALNUM (line 235) | SYS_ISWALNUM = 0x0FF constant SYS_LDEXPD128 (line 236) | SYS_LDEXPD128 = 0xBD7 constant SYS_LDEXPD32 (line 237) | SYS_LDEXPD32 = 0xBD5 constant SYS_LDEXPD64 (line 238) | SYS_LDEXPD64 = 0xBD6 constant SYS_LGAMMAD128 (line 239) | SYS_LGAMMAD128 = 0xBDA constant SYS_LGAMMAD32 (line 240) | SYS_LGAMMAD32 = 0xBD8 constant SYS_LGAMMAD64 (line 241) | SYS_LGAMMAD64 = 0xBD9 constant SYS_LIO_LISTIO (line 242) | SYS_LIO_LISTIO = 0xC6A constant SYS_LLRINT (line 243) | SYS_LLRINT = 0xA84 constant SYS_LLRINTD128 (line 244) | SYS_LLRINTD128 = 0xBDD constant SYS_LLRINTD32 (line 245) | SYS_LLRINTD32 = 0xBDB constant SYS_LLRINTD64 (line 246) | SYS_LLRINTD64 = 0xBDC constant SYS_LLRINTF (line 247) | SYS_LLRINTF = 0xA87 constant SYS_LLRINTL (line 248) | SYS_LLRINTL = 0xA8A constant SYS_LLROUND (line 249) | SYS_LLROUND = 0xA8D constant SYS_LLROUNDD128 (line 250) | SYS_LLROUNDD128 = 0xBE0 constant SYS_LLROUNDD32 (line 251) | SYS_LLROUNDD32 = 0xBDE constant SYS_LLROUNDD64 (line 252) | SYS_LLROUNDD64 = 0xBDF constant SYS_LLROUNDF (line 253) | SYS_LLROUNDF = 0xA90 constant SYS_LLROUNDL (line 254) | SYS_LLROUNDL = 0xA93 constant SYS_LOCALTIM (line 255) | SYS_LOCALTIM = 0x0B1 constant SYS_LOCALTIME (line 256) | SYS_LOCALTIME = 0x0B1 constant SYS_LOCALTIME64 (line 257) | SYS_LOCALTIME64 = 0xCDE constant SYS_LOCALTIME64_R (line 258) | SYS_LOCALTIME64_R = 0xCDF constant SYS_LOG10D128 (line 259) | SYS_LOG10D128 = 0xBE6 constant SYS_LOG10D32 (line 260) | SYS_LOG10D32 = 0xBE4 constant SYS_LOG10D64 (line 261) | SYS_LOG10D64 = 0xBE5 constant SYS_LOG1PD128 (line 262) | SYS_LOG1PD128 = 0xBE9 constant SYS_LOG1PD32 (line 263) | SYS_LOG1PD32 = 0xBE7 constant SYS_LOG1PD64 (line 264) | SYS_LOG1PD64 = 0xBE8 constant SYS_LOG2D128 (line 265) | SYS_LOG2D128 = 0xBEC constant SYS_LOG2D32 (line 266) | SYS_LOG2D32 = 0xBEA constant SYS_LOG2D64 (line 267) | SYS_LOG2D64 = 0xBEB constant SYS_LOGBD128 (line 268) | SYS_LOGBD128 = 0xBEF constant SYS_LOGBD32 (line 269) | SYS_LOGBD32 = 0xBED constant SYS_LOGBD64 (line 270) | SYS_LOGBD64 = 0xBEE constant SYS_LOGBF (line 271) | SYS_LOGBF = 0xA96 constant SYS_LOGBL (line 272) | SYS_LOGBL = 0xA99 constant SYS_LOGD128 (line 273) | SYS_LOGD128 = 0xBE3 constant SYS_LOGD32 (line 274) | SYS_LOGD32 = 0xBE1 constant SYS_LOGD64 (line 275) | SYS_LOGD64 = 0xBE2 constant SYS_LRINT (line 276) | SYS_LRINT = 0xA9C constant SYS_LRINTD128 (line 277) | SYS_LRINTD128 = 0xBF2 constant SYS_LRINTD32 (line 278) | SYS_LRINTD32 = 0xBF0 constant SYS_LRINTD64 (line 279) | SYS_LRINTD64 = 0xBF1 constant SYS_LRINTF (line 280) | SYS_LRINTF = 0xA9F constant SYS_LRINTL (line 281) | SYS_LRINTL = 0xAA2 constant SYS_LROUNDD128 (line 282) | SYS_LROUNDD128 = 0xBF5 constant SYS_LROUNDD32 (line 283) | SYS_LROUNDD32 = 0xBF3 constant SYS_LROUNDD64 (line 284) | SYS_LROUNDD64 = 0xBF4 constant SYS_LROUNDL (line 285) | SYS_LROUNDL = 0xAA5 constant SYS_MBLEN (line 286) | SYS_MBLEN = 0x0AF constant SYS_MBRTOC16 (line 287) | SYS_MBRTOC16 = 0xD42 constant SYS_MBRTOC32 (line 288) | SYS_MBRTOC32 = 0xD43 constant SYS_MEMSET (line 289) | SYS_MEMSET = 0x0A3 constant SYS_MKTIME (line 290) | SYS_MKTIME = 0x0AC constant SYS_MKTIME64 (line 291) | SYS_MKTIME64 = 0xCE0 constant SYS_MODFD128 (line 292) | SYS_MODFD128 = 0xBF8 constant SYS_MODFD32 (line 293) | SYS_MODFD32 = 0xBF6 constant SYS_MODFD64 (line 294) | SYS_MODFD64 = 0xBF7 constant SYS_NAN (line 295) | SYS_NAN = 0xAA8 constant SYS_NAND128 (line 296) | SYS_NAND128 = 0xBFB constant SYS_NAND32 (line 297) | SYS_NAND32 = 0xBF9 constant SYS_NAND64 (line 298) | SYS_NAND64 = 0xBFA constant SYS_NANF (line 299) | SYS_NANF = 0xAAA constant SYS_NANL (line 300) | SYS_NANL = 0xAAC constant SYS_NEARBYINT (line 301) | SYS_NEARBYINT = 0xAAE constant SYS_NEARBYINTD128 (line 302) | SYS_NEARBYINTD128 = 0xBFE constant SYS_NEARBYINTD32 (line 303) | SYS_NEARBYINTD32 = 0xBFC constant SYS_NEARBYINTD64 (line 304) | SYS_NEARBYINTD64 = 0xBFD constant SYS_NEARBYINTF (line 305) | SYS_NEARBYINTF = 0xAB1 constant SYS_NEARBYINTL (line 306) | SYS_NEARBYINTL = 0xAB4 constant SYS_NEXTAFTERD128 (line 307) | SYS_NEXTAFTERD128 = 0xC01 constant SYS_NEXTAFTERD32 (line 308) | SYS_NEXTAFTERD32 = 0xBFF constant SYS_NEXTAFTERD64 (line 309) | SYS_NEXTAFTERD64 = 0xC00 constant SYS_NEXTAFTERF (line 310) | SYS_NEXTAFTERF = 0xAB7 constant SYS_NEXTAFTERL (line 311) | SYS_NEXTAFTERL = 0xABA constant SYS_NEXTTOWARD (line 312) | SYS_NEXTTOWARD = 0xABD constant SYS_NEXTTOWARDD128 (line 313) | SYS_NEXTTOWARDD128 = 0xC04 constant SYS_NEXTTOWARDD32 (line 314) | SYS_NEXTTOWARDD32 = 0xC02 constant SYS_NEXTTOWARDD64 (line 315) | SYS_NEXTTOWARDD64 = 0xC03 constant SYS_NEXTTOWARDF (line 316) | SYS_NEXTTOWARDF = 0xAC0 constant SYS_NEXTTOWARDL (line 317) | SYS_NEXTTOWARDL = 0xAC3 constant SYS_NL_LANGINFO (line 318) | SYS_NL_LANGINFO = 0x0FC constant SYS_PERROR_UNLOCKED (line 319) | SYS_PERROR_UNLOCKED = 0xCBD constant SYS_POSIX_FALLOCATE (line 320) | SYS_POSIX_FALLOCATE = 0xCE8 constant SYS_POSIX_MEMALIGN (line 321) | SYS_POSIX_MEMALIGN = 0xCE9 constant SYS_POSIX_OPENPT (line 322) | SYS_POSIX_OPENPT = 0xC66 constant SYS_POWD128 (line 323) | SYS_POWD128 = 0xC07 constant SYS_POWD32 (line 324) | SYS_POWD32 = 0xC05 constant SYS_POWD64 (line 325) | SYS_POWD64 = 0xC06 constant SYS_PRINTF_UNLOCKED (line 326) | SYS_PRINTF_UNLOCKED = 0xCBE constant SYS_PSELECT (line 327) | SYS_PSELECT = 0xC67 constant SYS_PTHREAD_ATTR_GETSTACK (line 328) | SYS_PTHREAD_ATTR_GETSTACK = 0xB3E constant SYS_PTHREAD_ATTR_SETSTACK (line 329) | SYS_PTHREAD_ATTR_SETSTACK = 0xB3F constant SYS_PTHREAD_SECURITY_APPLID_NP (line 330) | SYS_PTHREAD_SECURITY_APPLID_NP = 0xCE4 constant SYS_PUTS_UNLOCKED (line 331) | SYS_PUTS_UNLOCKED = 0xC7F constant SYS_PUTWCHAR_UNLOCKED (line 332) | SYS_PUTWCHAR_UNLOCKED = 0xCC0 constant SYS_PUTWC_UNLOCKED (line 333) | SYS_PUTWC_UNLOCKED = 0xCBF constant SYS_QUANTEXPD128 (line 334) | SYS_QUANTEXPD128 = 0xD46 constant SYS_QUANTEXPD32 (line 335) | SYS_QUANTEXPD32 = 0xD44 constant SYS_QUANTEXPD64 (line 336) | SYS_QUANTEXPD64 = 0xD45 constant SYS_QUANTIZED128 (line 337) | SYS_QUANTIZED128 = 0xC0A constant SYS_QUANTIZED32 (line 338) | SYS_QUANTIZED32 = 0xC08 constant SYS_QUANTIZED64 (line 339) | SYS_QUANTIZED64 = 0xC09 constant SYS_REMAINDERD128 (line 340) | SYS_REMAINDERD128 = 0xC0D constant SYS_REMAINDERD32 (line 341) | SYS_REMAINDERD32 = 0xC0B constant SYS_REMAINDERD64 (line 342) | SYS_REMAINDERD64 = 0xC0C constant SYS_RESIZE_ALLOC (line 343) | SYS_RESIZE_ALLOC = 0xCEB constant SYS_REWIND_UNLOCKED (line 344) | SYS_REWIND_UNLOCKED = 0xCC1 constant SYS_RINTD128 (line 345) | SYS_RINTD128 = 0xC13 constant SYS_RINTD32 (line 346) | SYS_RINTD32 = 0xC11 constant SYS_RINTD64 (line 347) | SYS_RINTD64 = 0xC12 constant SYS_RINTF (line 348) | SYS_RINTF = 0xACB constant SYS_RINTL (line 349) | SYS_RINTL = 0xACD constant SYS_ROUND (line 350) | SYS_ROUND = 0xACF constant SYS_ROUNDD128 (line 351) | SYS_ROUNDD128 = 0xC16 constant SYS_ROUNDD32 (line 352) | SYS_ROUNDD32 = 0xC14 constant SYS_ROUNDD64 (line 353) | SYS_ROUNDD64 = 0xC15 constant SYS_ROUNDF (line 354) | SYS_ROUNDF = 0xAD2 constant SYS_ROUNDL (line 355) | SYS_ROUNDL = 0xAD5 constant SYS_SAMEQUANTUMD128 (line 356) | SYS_SAMEQUANTUMD128 = 0xC19 constant SYS_SAMEQUANTUMD32 (line 357) | SYS_SAMEQUANTUMD32 = 0xC17 constant SYS_SAMEQUANTUMD64 (line 358) | SYS_SAMEQUANTUMD64 = 0xC18 constant SYS_SCALBLN (line 359) | SYS_SCALBLN = 0xAD8 constant SYS_SCALBLND128 (line 360) | SYS_SCALBLND128 = 0xC1C constant SYS_SCALBLND32 (line 361) | SYS_SCALBLND32 = 0xC1A constant SYS_SCALBLND64 (line 362) | SYS_SCALBLND64 = 0xC1B constant SYS_SCALBLNF (line 363) | SYS_SCALBLNF = 0xADB constant SYS_SCALBLNL (line 364) | SYS_SCALBLNL = 0xADE constant SYS_SCALBND128 (line 365) | SYS_SCALBND128 = 0xC1F constant SYS_SCALBND32 (line 366) | SYS_SCALBND32 = 0xC1D constant SYS_SCALBND64 (line 367) | SYS_SCALBND64 = 0xC1E constant SYS_SCALBNF (line 368) | SYS_SCALBNF = 0xAE3 constant SYS_SCALBNL (line 369) | SYS_SCALBNL = 0xAE6 constant SYS_SCANF_UNLOCKED (line 370) | SYS_SCANF_UNLOCKED = 0xCC2 constant SYS_SCHED_YIELD (line 371) | SYS_SCHED_YIELD = 0xB32 constant SYS_SETENV (line 372) | SYS_SETENV = 0x0C8 constant SYS_SETIPV4SOURCEFILTER (line 373) | SYS_SETIPV4SOURCEFILTER = 0xC76 constant SYS_SETSOURCEFILTER (line 374) | SYS_SETSOURCEFILTER = 0xC78 constant SYS_SHM_OPEN (line 375) | SYS_SHM_OPEN = 0xC8C constant SYS_SHM_UNLINK (line 376) | SYS_SHM_UNLINK = 0xC8D constant SYS_SIND128 (line 377) | SYS_SIND128 = 0xC22 constant SYS_SIND32 (line 378) | SYS_SIND32 = 0xC20 constant SYS_SIND64 (line 379) | SYS_SIND64 = 0xC21 constant SYS_SINHD128 (line 380) | SYS_SINHD128 = 0xC25 constant SYS_SINHD32 (line 381) | SYS_SINHD32 = 0xC23 constant SYS_SINHD64 (line 382) | SYS_SINHD64 = 0xC24 constant SYS_SIZEOF_ALLOC (line 383) | SYS_SIZEOF_ALLOC = 0xCEA constant SYS_SOCKATMARK (line 384) | SYS_SOCKATMARK = 0xC68 constant SYS_SQRTD128 (line 385) | SYS_SQRTD128 = 0xC28 constant SYS_SQRTD32 (line 386) | SYS_SQRTD32 = 0xC26 constant SYS_SQRTD64 (line 387) | SYS_SQRTD64 = 0xC27 constant SYS_STRCHR (line 388) | SYS_STRCHR = 0x0A0 constant SYS_STRCSPN (line 389) | SYS_STRCSPN = 0x0A1 constant SYS_STRERROR (line 390) | SYS_STRERROR = 0x0A8 constant SYS_STRERROR_R (line 391) | SYS_STRERROR_R = 0xB33 constant SYS_STRFTIME (line 392) | SYS_STRFTIME = 0x0B2 constant SYS_STRLEN (line 393) | SYS_STRLEN = 0x0A9 constant SYS_STRPBRK (line 394) | SYS_STRPBRK = 0x0A2 constant SYS_STRSPN (line 395) | SYS_STRSPN = 0x0A4 constant SYS_STRSTR (line 396) | SYS_STRSTR = 0x0A5 constant SYS_STRTOD128 (line 397) | SYS_STRTOD128 = 0xC2B constant SYS_STRTOD32 (line 398) | SYS_STRTOD32 = 0xC29 constant SYS_STRTOD64 (line 399) | SYS_STRTOD64 = 0xC2A constant SYS_STRTOK (line 400) | SYS_STRTOK = 0x0A6 constant SYS_TAND128 (line 401) | SYS_TAND128 = 0xC2E constant SYS_TAND32 (line 402) | SYS_TAND32 = 0xC2C constant SYS_TAND64 (line 403) | SYS_TAND64 = 0xC2D constant SYS_TANHD128 (line 404) | SYS_TANHD128 = 0xC31 constant SYS_TANHD32 (line 405) | SYS_TANHD32 = 0xC2F constant SYS_TANHD64 (line 406) | SYS_TANHD64 = 0xC30 constant SYS_TGAMMAD128 (line 407) | SYS_TGAMMAD128 = 0xC34 constant SYS_TGAMMAD32 (line 408) | SYS_TGAMMAD32 = 0xC32 constant SYS_TGAMMAD64 (line 409) | SYS_TGAMMAD64 = 0xC33 constant SYS_TIME (line 410) | SYS_TIME = 0x0AD constant SYS_TIME64 (line 411) | SYS_TIME64 = 0xCE1 constant SYS_TMPFILE64 (line 412) | SYS_TMPFILE64 = 0xD4D constant SYS_TMPFILE64_UNLOCKED (line 413) | SYS_TMPFILE64_UNLOCKED = 0xD4E constant SYS_TMPFILE_UNLOCKED (line 414) | SYS_TMPFILE_UNLOCKED = 0xCFD constant SYS_TRUNCD128 (line 415) | SYS_TRUNCD128 = 0xC40 constant SYS_TRUNCD32 (line 416) | SYS_TRUNCD32 = 0xC3E constant SYS_TRUNCD64 (line 417) | SYS_TRUNCD64 = 0xC3F constant SYS_UNGETC_UNLOCKED (line 418) | SYS_UNGETC_UNLOCKED = 0xCC3 constant SYS_UNGETWC_UNLOCKED (line 419) | SYS_UNGETWC_UNLOCKED = 0xCC4 constant SYS_UNSETENV (line 420) | SYS_UNSETENV = 0xB34 constant SYS_VFPRINTF_UNLOCKED (line 421) | SYS_VFPRINTF_UNLOCKED = 0xCC5 constant SYS_VFSCANF_UNLOCKED (line 422) | SYS_VFSCANF_UNLOCKED = 0xCC7 constant SYS_VFWPRINTF_UNLOCKED (line 423) | SYS_VFWPRINTF_UNLOCKED = 0xCC9 constant SYS_VFWSCANF_UNLOCKED (line 424) | SYS_VFWSCANF_UNLOCKED = 0xCCB constant SYS_VPRINTF_UNLOCKED (line 425) | SYS_VPRINTF_UNLOCKED = 0xCCD constant SYS_VSCANF_UNLOCKED (line 426) | SYS_VSCANF_UNLOCKED = 0xCCF constant SYS_VWPRINTF_UNLOCKED (line 427) | SYS_VWPRINTF_UNLOCKED = 0xCD1 constant SYS_VWSCANF_UNLOCKED (line 428) | SYS_VWSCANF_UNLOCKED = 0xCD3 constant SYS_WCSTOD128 (line 429) | SYS_WCSTOD128 = 0xC43 constant SYS_WCSTOD32 (line 430) | SYS_WCSTOD32 = 0xC41 constant SYS_WCSTOD64 (line 431) | SYS_WCSTOD64 = 0xC42 constant SYS_WPRINTF_UNLOCKED (line 432) | SYS_WPRINTF_UNLOCKED = 0xCD5 constant SYS_WSCANF_UNLOCKED (line 433) | SYS_WSCANF_UNLOCKED = 0xCD6 constant SYS__FLUSHLBF (line 434) | SYS__FLUSHLBF = 0xD68 constant SYS__FLUSHLBF_UNLOCKED (line 435) | SYS__FLUSHLBF_UNLOCKED = 0xD6F constant SYS___ACOSHF_H (line 436) | SYS___ACOSHF_H = 0xA54 constant SYS___ACOSHL_H (line 437) | SYS___ACOSHL_H = 0xA55 constant SYS___ASINHF_H (line 438) | SYS___ASINHF_H = 0xA56 constant SYS___ASINHL_H (line 439) | SYS___ASINHL_H = 0xA57 constant SYS___ATANPID128 (line 440) | SYS___ATANPID128 = 0xC6D constant SYS___ATANPID32 (line 441) | SYS___ATANPID32 = 0xC6B constant SYS___ATANPID64 (line 442) | SYS___ATANPID64 = 0xC6C constant SYS___CBRTF_H (line 443) | SYS___CBRTF_H = 0xA58 constant SYS___CBRTL_H (line 444) | SYS___CBRTL_H = 0xA59 constant SYS___CDUMP (line 445) | SYS___CDUMP = 0x0C4 constant SYS___CLASS (line 446) | SYS___CLASS = 0xAFA constant SYS___CLASS2 (line 447) | SYS___CLASS2 = 0xB99 constant SYS___CLASS2D128 (line 448) | SYS___CLASS2D128 = 0xC99 constant SYS___CLASS2D32 (line 449) | SYS___CLASS2D32 = 0xC97 constant SYS___CLASS2D64 (line 450) | SYS___CLASS2D64 = 0xC98 constant SYS___CLASS2F (line 451) | SYS___CLASS2F = 0xC91 constant SYS___CLASS2F_B (line 452) | SYS___CLASS2F_B = 0xC93 constant SYS___CLASS2F_H (line 453) | SYS___CLASS2F_H = 0xC94 constant SYS___CLASS2L (line 454) | SYS___CLASS2L = 0xC92 constant SYS___CLASS2L_B (line 455) | SYS___CLASS2L_B = 0xC95 constant SYS___CLASS2L_H (line 456) | SYS___CLASS2L_H = 0xC96 constant SYS___CLASS2_B (line 457) | SYS___CLASS2_B = 0xB9A constant SYS___CLASS2_H (line 458) | SYS___CLASS2_H = 0xB9B constant SYS___CLASS_B (line 459) | SYS___CLASS_B = 0xAFB constant SYS___CLASS_H (line 460) | SYS___CLASS_H = 0xAFC constant SYS___CLOGL_B (line 461) | SYS___CLOGL_B = 0xA01 constant SYS___CLOGL_H (line 462) | SYS___CLOGL_H = 0xA02 constant SYS___CLRENV (line 463) | SYS___CLRENV = 0x0C9 constant SYS___CLRMF (line 464) | SYS___CLRMF = 0x0BD constant SYS___CODEPAGE_INFO (line 465) | SYS___CODEPAGE_INFO = 0xC64 constant SYS___CONJF_B (line 466) | SYS___CONJF_B = 0xA07 constant SYS___CONJF_H (line 467) | SYS___CONJF_H = 0xA08 constant SYS___CONJL_B (line 468) | SYS___CONJL_B = 0xA0A constant SYS___CONJL_H (line 469) | SYS___CONJL_H = 0xA0B constant SYS___CONJ_B (line 470) | SYS___CONJ_B = 0xA04 constant SYS___CONJ_H (line 471) | SYS___CONJ_H = 0xA05 constant SYS___COPYSIGN_B (line 472) | SYS___COPYSIGN_B = 0xA5A constant SYS___COPYSIGN_H (line 473) | SYS___COPYSIGN_H = 0xAF5 constant SYS___COSPID128 (line 474) | SYS___COSPID128 = 0xC70 constant SYS___COSPID32 (line 475) | SYS___COSPID32 = 0xC6E constant SYS___COSPID64 (line 476) | SYS___COSPID64 = 0xC6F constant SYS___CPOWF_B (line 477) | SYS___CPOWF_B = 0xA10 constant SYS___CPOWF_H (line 478) | SYS___CPOWF_H = 0xA11 constant SYS___CPOWL_B (line 479) | SYS___CPOWL_B = 0xA13 constant SYS___CPOWL_H (line 480) | SYS___CPOWL_H = 0xA14 constant SYS___CPOW_B (line 481) | SYS___CPOW_B = 0xA0D constant SYS___CPOW_H (line 482) | SYS___CPOW_H = 0xA0E constant SYS___CPROJF_B (line 483) | SYS___CPROJF_B = 0xA19 constant SYS___CPROJF_H (line 484) | SYS___CPROJF_H = 0xA1A constant SYS___CPROJL_B (line 485) | SYS___CPROJL_B = 0xA1C constant SYS___CPROJL_H (line 486) | SYS___CPROJL_H = 0xA1D constant SYS___CPROJ_B (line 487) | SYS___CPROJ_B = 0xA16 constant SYS___CPROJ_H (line 488) | SYS___CPROJ_H = 0xA17 constant SYS___CREALF_B (line 489) | SYS___CREALF_B = 0xA22 constant SYS___CREALF_H (line 490) | SYS___CREALF_H = 0xA23 constant SYS___CREALL_B (line 491) | SYS___CREALL_B = 0xA25 constant SYS___CREALL_H (line 492) | SYS___CREALL_H = 0xA26 constant SYS___CREAL_B (line 493) | SYS___CREAL_B = 0xA1F constant SYS___CREAL_H (line 494) | SYS___CREAL_H = 0xA20 constant SYS___CSINF_B (line 495) | SYS___CSINF_B = 0xA2B constant SYS___CSINF_H (line 496) | SYS___CSINF_H = 0xA2C constant SYS___CSINHF_B (line 497) | SYS___CSINHF_B = 0xA34 constant SYS___CSINHF_H (line 498) | SYS___CSINHF_H = 0xA35 constant SYS___CSINHL_B (line 499) | SYS___CSINHL_B = 0xA37 constant SYS___CSINHL_H (line 500) | SYS___CSINHL_H = 0xA38 constant SYS___CSINH_B (line 501) | SYS___CSINH_B = 0xA31 constant SYS___CSINH_H (line 502) | SYS___CSINH_H = 0xA32 constant SYS___CSINL_B (line 503) | SYS___CSINL_B = 0xA2E constant SYS___CSINL_H (line 504) | SYS___CSINL_H = 0xA2F constant SYS___CSIN_B (line 505) | SYS___CSIN_B = 0xA28 constant SYS___CSIN_H (line 506) | SYS___CSIN_H = 0xA29 constant SYS___CSNAP (line 507) | SYS___CSNAP = 0x0C5 constant SYS___CSQRTF_B (line 508) | SYS___CSQRTF_B = 0xA3D constant SYS___CSQRTF_H (line 509) | SYS___CSQRTF_H = 0xA3E constant SYS___CSQRTL_B (line 510) | SYS___CSQRTL_B = 0xA40 constant SYS___CSQRTL_H (line 511) | SYS___CSQRTL_H = 0xA41 constant SYS___CSQRT_B (line 512) | SYS___CSQRT_B = 0xA3A constant SYS___CSQRT_H (line 513) | SYS___CSQRT_H = 0xA3B constant SYS___CTANF_B (line 514) | SYS___CTANF_B = 0xA46 constant SYS___CTANF_H (line 515) | SYS___CTANF_H = 0xA47 constant SYS___CTANHF_B (line 516) | SYS___CTANHF_B = 0xA4F constant SYS___CTANHF_H (line 517) | SYS___CTANHF_H = 0xA50 constant SYS___CTANHL_B (line 518) | SYS___CTANHL_B = 0xA52 constant SYS___CTANHL_H (line 519) | SYS___CTANHL_H = 0xA53 constant SYS___CTANH_B (line 520) | SYS___CTANH_B = 0xA4C constant SYS___CTANH_H (line 521) | SYS___CTANH_H = 0xA4D constant SYS___CTANL_B (line 522) | SYS___CTANL_B = 0xA49 constant SYS___CTANL_H (line 523) | SYS___CTANL_H = 0xA4A constant SYS___CTAN_B (line 524) | SYS___CTAN_B = 0xA43 constant SYS___CTAN_H (line 525) | SYS___CTAN_H = 0xA44 constant SYS___CTEST (line 526) | SYS___CTEST = 0x0C7 constant SYS___CTRACE (line 527) | SYS___CTRACE = 0x0C6 constant SYS___D1TOP (line 528) | SYS___D1TOP = 0xC9B constant SYS___D2TOP (line 529) | SYS___D2TOP = 0xC9C constant SYS___D4TOP (line 530) | SYS___D4TOP = 0xC9D constant SYS___DYNALL (line 531) | SYS___DYNALL = 0x0C3 constant SYS___DYNFRE (line 532) | SYS___DYNFRE = 0x0C2 constant SYS___EXP2F_H (line 533) | SYS___EXP2F_H = 0xA5E constant SYS___EXP2L_H (line 534) | SYS___EXP2L_H = 0xA5F constant SYS___EXP2_H (line 535) | SYS___EXP2_H = 0xA5D constant SYS___EXPM1F_H (line 536) | SYS___EXPM1F_H = 0xA5B constant SYS___EXPM1L_H (line 537) | SYS___EXPM1L_H = 0xA5C constant SYS___FBUFSIZE (line 538) | SYS___FBUFSIZE = 0xD60 constant SYS___FLBF (line 539) | SYS___FLBF = 0xD62 constant SYS___FLDATA (line 540) | SYS___FLDATA = 0x0C1 constant SYS___FMAF_B (line 541) | SYS___FMAF_B = 0xA67 constant SYS___FMAF_H (line 542) | SYS___FMAF_H = 0xA68 constant SYS___FMAL_B (line 543) | SYS___FMAL_B = 0xA6A constant SYS___FMAL_H (line 544) | SYS___FMAL_H = 0xA6B constant SYS___FMAXF_B (line 545) | SYS___FMAXF_B = 0xA70 constant SYS___FMAXF_H (line 546) | SYS___FMAXF_H = 0xA71 constant SYS___FMAXL_B (line 547) | SYS___FMAXL_B = 0xA73 constant SYS___FMAXL_H (line 548) | SYS___FMAXL_H = 0xA74 constant SYS___FMAX_B (line 549) | SYS___FMAX_B = 0xA6D constant SYS___FMAX_H (line 550) | SYS___FMAX_H = 0xA6E constant SYS___FMA_B (line 551) | SYS___FMA_B = 0xA64 constant SYS___FMA_H (line 552) | SYS___FMA_H = 0xA65 constant SYS___FMINF_B (line 553) | SYS___FMINF_B = 0xA79 constant SYS___FMINF_H (line 554) | SYS___FMINF_H = 0xA7A constant SYS___FMINL_B (line 555) | SYS___FMINL_B = 0xA7C constant SYS___FMINL_H (line 556) | SYS___FMINL_H = 0xA7D constant SYS___FMIN_B (line 557) | SYS___FMIN_B = 0xA76 constant SYS___FMIN_H (line 558) | SYS___FMIN_H = 0xA77 constant SYS___FPENDING (line 559) | SYS___FPENDING = 0xD61 constant SYS___FPENDING_UNLOCKED (line 560) | SYS___FPENDING_UNLOCKED = 0xD6C constant SYS___FPURGE (line 561) | SYS___FPURGE = 0xD69 constant SYS___FPURGE_UNLOCKED (line 562) | SYS___FPURGE_UNLOCKED = 0xD70 constant SYS___FP_CAST_D (line 563) | SYS___FP_CAST_D = 0xBCB constant SYS___FREADABLE (line 564) | SYS___FREADABLE = 0xD63 constant SYS___FREADAHEAD (line 565) | SYS___FREADAHEAD = 0xD6A constant SYS___FREADAHEAD_UNLOCKED (line 566) | SYS___FREADAHEAD_UNLOCKED = 0xD71 constant SYS___FREADING (line 567) | SYS___FREADING = 0xD65 constant SYS___FREADING_UNLOCKED (line 568) | SYS___FREADING_UNLOCKED = 0xD6D constant SYS___FSEEK2 (line 569) | SYS___FSEEK2 = 0xB3C constant SYS___FSETERR (line 570) | SYS___FSETERR = 0xD6B constant SYS___FSETLOCKING (line 571) | SYS___FSETLOCKING = 0xD67 constant SYS___FTCHEP (line 572) | SYS___FTCHEP = 0x0BF constant SYS___FTELL2 (line 573) | SYS___FTELL2 = 0xB3B constant SYS___FUPDT (line 574) | SYS___FUPDT = 0x0B5 constant SYS___FWRITABLE (line 575) | SYS___FWRITABLE = 0xD64 constant SYS___FWRITING (line 576) | SYS___FWRITING = 0xD66 constant SYS___FWRITING_UNLOCKED (line 577) | SYS___FWRITING_UNLOCKED = 0xD6E constant SYS___GETCB (line 578) | SYS___GETCB = 0x0B4 constant SYS___GETGRGID1 (line 579) | SYS___GETGRGID1 = 0xD5B constant SYS___GETGRNAM1 (line 580) | SYS___GETGRNAM1 = 0xD5C constant SYS___GETTHENT (line 581) | SYS___GETTHENT = 0xCE5 constant SYS___GETTOD (line 582) | SYS___GETTOD = 0xD3E constant SYS___HYPOTF_H (line 583) | SYS___HYPOTF_H = 0xAF6 constant SYS___HYPOTL_H (line 584) | SYS___HYPOTL_H = 0xAF7 constant SYS___ILOGBF_B (line 585) | SYS___ILOGBF_B = 0xA7F constant SYS___ILOGBF_H (line 586) | SYS___ILOGBF_H = 0xA80 constant SYS___ILOGBL_B (line 587) | SYS___ILOGBL_B = 0xA82 constant SYS___ILOGBL_H (line 588) | SYS___ILOGBL_H = 0xA83 constant SYS___ISBLANK_A (line 589) | SYS___ISBLANK_A = 0xB2E constant SYS___ISBLNK (line 590) | SYS___ISBLNK = 0x0FE constant SYS___ISWBLANK_A (line 591) | SYS___ISWBLANK_A = 0xB2F constant SYS___LE_CEEGTJS (line 592) | SYS___LE_CEEGTJS = 0xD72 constant SYS___LE_TRACEBACK (line 593) | SYS___LE_TRACEBACK = 0xB7A constant SYS___LGAMMAL_H (line 594) | SYS___LGAMMAL_H = 0xA62 constant SYS___LGAMMA_B_C99 (line 595) | SYS___LGAMMA_B_C99 = 0xB39 constant SYS___LGAMMA_H_C99 (line 596) | SYS___LGAMMA_H_C99 = 0xB38 constant SYS___LGAMMA_R_C99 (line 597) | SYS___LGAMMA_R_C99 = 0xB3A constant SYS___LLRINTF_B (line 598) | SYS___LLRINTF_B = 0xA88 constant SYS___LLRINTF_H (line 599) | SYS___LLRINTF_H = 0xA89 constant SYS___LLRINTL_B (line 600) | SYS___LLRINTL_B = 0xA8B constant SYS___LLRINTL_H (line 601) | SYS___LLRINTL_H = 0xA8C constant SYS___LLRINT_B (line 602) | SYS___LLRINT_B = 0xA85 constant SYS___LLRINT_H (line 603) | SYS___LLRINT_H = 0xA86 constant SYS___LLROUNDF_B (line 604) | SYS___LLROUNDF_B = 0xA91 constant SYS___LLROUNDF_H (line 605) | SYS___LLROUNDF_H = 0xA92 constant SYS___LLROUNDL_B (line 606) | SYS___LLROUNDL_B = 0xA94 constant SYS___LLROUNDL_H (line 607) | SYS___LLROUNDL_H = 0xA95 constant SYS___LLROUND_B (line 608) | SYS___LLROUND_B = 0xA8E constant SYS___LLROUND_H (line 609) | SYS___LLROUND_H = 0xA8F constant SYS___LOCALE_CTL (line 610) | SYS___LOCALE_CTL = 0xD47 constant SYS___LOG1PF_H (line 611) | SYS___LOG1PF_H = 0xA60 constant SYS___LOG1PL_H (line 612) | SYS___LOG1PL_H = 0xA61 constant SYS___LOGBF_B (line 613) | SYS___LOGBF_B = 0xA97 constant SYS___LOGBF_H (line 614) | SYS___LOGBF_H = 0xA98 constant SYS___LOGBL_B (line 615) | SYS___LOGBL_B = 0xA9A constant SYS___LOGBL_H (line 616) | SYS___LOGBL_H = 0xA9B constant SYS___LOGIN_APPLID (line 617) | SYS___LOGIN_APPLID = 0xCE2 constant SYS___LRINTF_B (line 618) | SYS___LRINTF_B = 0xAA0 constant SYS___LRINTF_H (line 619) | SYS___LRINTF_H = 0xAA1 constant SYS___LRINTL_B (line 620) | SYS___LRINTL_B = 0xAA3 constant SYS___LRINTL_H (line 621) | SYS___LRINTL_H = 0xAA4 constant SYS___LRINT_B (line 622) | SYS___LRINT_B = 0xA9D constant SYS___LRINT_H (line 623) | SYS___LRINT_H = 0xA9E constant SYS___LROUNDF_FIXUP (line 624) | SYS___LROUNDF_FIXUP = 0xB31 constant SYS___LROUNDL_B (line 625) | SYS___LROUNDL_B = 0xAA6 constant SYS___LROUNDL_H (line 626) | SYS___LROUNDL_H = 0xAA7 constant SYS___LROUND_FIXUP (line 627) | SYS___LROUND_FIXUP = 0xB30 constant SYS___MOSERVICES (line 628) | SYS___MOSERVICES = 0xD3D constant SYS___MUST_STAY_CLEAN (line 629) | SYS___MUST_STAY_CLEAN = 0xB7C constant SYS___NANF_B (line 630) | SYS___NANF_B = 0xAAB constant SYS___NANL_B (line 631) | SYS___NANL_B = 0xAAD constant SYS___NAN_B (line 632) | SYS___NAN_B = 0xAA9 constant SYS___NEARBYINTF_B (line 633) | SYS___NEARBYINTF_B = 0xAB2 constant SYS___NEARBYINTF_H (line 634) | SYS___NEARBYINTF_H = 0xAB3 constant SYS___NEARBYINTL_B (line 635) | SYS___NEARBYINTL_B = 0xAB5 constant SYS___NEARBYINTL_H (line 636) | SYS___NEARBYINTL_H = 0xAB6 constant SYS___NEARBYINT_B (line 637) | SYS___NEARBYINT_B = 0xAAF constant SYS___NEARBYINT_H (line 638) | SYS___NEARBYINT_H = 0xAB0 constant SYS___NEXTAFTERF_B (line 639) | SYS___NEXTAFTERF_B = 0xAB8 constant SYS___NEXTAFTERF_H (line 640) | SYS___NEXTAFTERF_H = 0xAB9 constant SYS___NEXTAFTERL_B (line 641) | SYS___NEXTAFTERL_B = 0xABB constant SYS___NEXTAFTERL_H (line 642) | SYS___NEXTAFTERL_H = 0xABC constant SYS___NEXTTOWARDF_B (line 643) | SYS___NEXTTOWARDF_B = 0xAC1 constant SYS___NEXTTOWARDF_H (line 644) | SYS___NEXTTOWARDF_H = 0xAC2 constant SYS___NEXTTOWARDL_B (line 645) | SYS___NEXTTOWARDL_B = 0xAC4 constant SYS___NEXTTOWARDL_H (line 646) | SYS___NEXTTOWARDL_H = 0xAC5 constant SYS___NEXTTOWARD_B (line 647) | SYS___NEXTTOWARD_B = 0xABE constant SYS___NEXTTOWARD_H (line 648) | SYS___NEXTTOWARD_H = 0xABF constant SYS___O_ENV (line 649) | SYS___O_ENV = 0xB7D constant SYS___PASSWD_APPLID (line 650) | SYS___PASSWD_APPLID = 0xCE3 constant SYS___PTOD1 (line 651) | SYS___PTOD1 = 0xC9E constant SYS___PTOD2 (line 652) | SYS___PTOD2 = 0xC9F constant SYS___PTOD4 (line 653) | SYS___PTOD4 = 0xCA0 constant SYS___REGCOMP_STD (line 654) | SYS___REGCOMP_STD = 0x0EA constant SYS___REMAINDERF_H (line 655) | SYS___REMAINDERF_H = 0xAC6 constant SYS___REMAINDERL_H (line 656) | SYS___REMAINDERL_H = 0xAC7 constant SYS___REMQUOD128 (line 657) | SYS___REMQUOD128 = 0xC10 constant SYS___REMQUOD32 (line 658) | SYS___REMQUOD32 = 0xC0E constant SYS___REMQUOD64 (line 659) | SYS___REMQUOD64 = 0xC0F constant SYS___REMQUOF_H (line 660) | SYS___REMQUOF_H = 0xAC9 constant SYS___REMQUOL_H (line 661) | SYS___REMQUOL_H = 0xACA constant SYS___REMQUO_H (line 662) | SYS___REMQUO_H = 0xAC8 constant SYS___RINTF_B (line 663) | SYS___RINTF_B = 0xACC constant SYS___RINTL_B (line 664) | SYS___RINTL_B = 0xACE constant SYS___ROUNDF_B (line 665) | SYS___ROUNDF_B = 0xAD3 constant SYS___ROUNDF_H (line 666) | SYS___ROUNDF_H = 0xAD4 constant SYS___ROUNDL_B (line 667) | SYS___ROUNDL_B = 0xAD6 constant SYS___ROUNDL_H (line 668) | SYS___ROUNDL_H = 0xAD7 constant SYS___ROUND_B (line 669) | SYS___ROUND_B = 0xAD0 constant SYS___ROUND_H (line 670) | SYS___ROUND_H = 0xAD1 constant SYS___SCALBLNF_B (line 671) | SYS___SCALBLNF_B = 0xADC constant SYS___SCALBLNF_H (line 672) | SYS___SCALBLNF_H = 0xADD constant SYS___SCALBLNL_B (line 673) | SYS___SCALBLNL_B = 0xADF constant SYS___SCALBLNL_H (line 674) | SYS___SCALBLNL_H = 0xAE0 constant SYS___SCALBLN_B (line 675) | SYS___SCALBLN_B = 0xAD9 constant SYS___SCALBLN_H (line 676) | SYS___SCALBLN_H = 0xADA constant SYS___SCALBNF_B (line 677) | SYS___SCALBNF_B = 0xAE4 constant SYS___SCALBNF_H (line 678) | SYS___SCALBNF_H = 0xAE5 constant SYS___SCALBNL_B (line 679) | SYS___SCALBNL_B = 0xAE7 constant SYS___SCALBNL_H (line 680) | SYS___SCALBNL_H = 0xAE8 constant SYS___SCALBN_B (line 681) | SYS___SCALBN_B = 0xAE1 constant SYS___SCALBN_H (line 682) | SYS___SCALBN_H = 0xAE2 constant SYS___SETENV (line 683) | SYS___SETENV = 0x0C8 constant SYS___SINPID128 (line 684) | SYS___SINPID128 = 0xC73 constant SYS___SINPID32 (line 685) | SYS___SINPID32 = 0xC71 constant SYS___SINPID64 (line 686) | SYS___SINPID64 = 0xC72 constant SYS___SMF_RECORD2 (line 687) | SYS___SMF_RECORD2 = 0xD48 constant SYS___STATIC_REINIT (line 688) | SYS___STATIC_REINIT = 0xB3D constant SYS___TGAMMAF_H_C99 (line 689) | SYS___TGAMMAF_H_C99 = 0xB79 constant SYS___TGAMMAL_H (line 690) | SYS___TGAMMAL_H = 0xAE9 constant SYS___TGAMMA_H_C99 (line 691) | SYS___TGAMMA_H_C99 = 0xB78 constant SYS___TOCSNAME2 (line 692) | SYS___TOCSNAME2 = 0xC9A constant SYS_CEIL (line 693) | SYS_CEIL = 0x01F constant SYS_CHAUDIT (line 694) | SYS_CHAUDIT = 0x1E0 constant SYS_EXP (line 695) | SYS_EXP = 0x01A constant SYS_FCHAUDIT (line 696) | SYS_FCHAUDIT = 0x1E1 constant SYS_FREXP (line 697) | SYS_FREXP = 0x01D constant SYS_GETGROUPSBYNAME (line 698) | SYS_GETGROUPSBYNAME = 0x1E2 constant SYS_GETPWUID (line 699) | SYS_GETPWUID = 0x1A0 constant SYS_GETUID (line 700) | SYS_GETUID = 0x1A1 constant SYS_ISATTY (line 701) | SYS_ISATTY = 0x1A3 constant SYS_KILL (line 702) | SYS_KILL = 0x1A4 constant SYS_LDEXP (line 703) | SYS_LDEXP = 0x01E constant SYS_LINK (line 704) | SYS_LINK = 0x1A5 constant SYS_LOG10 (line 705) | SYS_LOG10 = 0x01C constant SYS_LSEEK (line 706) | SYS_LSEEK = 0x1A6 constant SYS_LSTAT (line 707) | SYS_LSTAT = 0x1A7 constant SYS_MKDIR (line 708) | SYS_MKDIR = 0x1A8 constant SYS_MKFIFO (line 709) | SYS_MKFIFO = 0x1A9 constant SYS_MKNOD (line 710) | SYS_MKNOD = 0x1AA constant SYS_MODF (line 711) | SYS_MODF = 0x01B constant SYS_MOUNT (line 712) | SYS_MOUNT = 0x1AB constant SYS_OPEN (line 713) | SYS_OPEN = 0x1AC constant SYS_OPENDIR (line 714) | SYS_OPENDIR = 0x1AD constant SYS_PATHCONF (line 715) | SYS_PATHCONF = 0x1AE constant SYS_PAUSE (line 716) | SYS_PAUSE = 0x1AF constant SYS_PIPE (line 717) | SYS_PIPE = 0x1B0 constant SYS_PTHREAD_ATTR_DESTROY (line 718) | SYS_PTHREAD_ATTR_DESTROY = 0x1E7 constant SYS_PTHREAD_ATTR_GETDETACHSTATE (line 719) | SYS_PTHREAD_ATTR_GETDETACHSTATE = 0x1EB constant SYS_PTHREAD_ATTR_GETSTACKSIZE (line 720) | SYS_PTHREAD_ATTR_GETSTACKSIZE = 0x1E9 constant SYS_PTHREAD_ATTR_GETWEIGHT_NP (line 721) | SYS_PTHREAD_ATTR_GETWEIGHT_NP = 0x1ED constant SYS_PTHREAD_ATTR_INIT (line 722) | SYS_PTHREAD_ATTR_INIT = 0x1E6 constant SYS_PTHREAD_ATTR_SETDETACHSTATE (line 723) | SYS_PTHREAD_ATTR_SETDETACHSTATE = 0x1EA constant SYS_PTHREAD_ATTR_SETSTACKSIZE (line 724) | SYS_PTHREAD_ATTR_SETSTACKSIZE = 0x1E8 constant SYS_PTHREAD_ATTR_SETWEIGHT_NP (line 725) | SYS_PTHREAD_ATTR_SETWEIGHT_NP = 0x1EC constant SYS_PTHREAD_CANCEL (line 726) | SYS_PTHREAD_CANCEL = 0x1EE constant SYS_PTHREAD_CLEANUP_POP (line 727) | SYS_PTHREAD_CLEANUP_POP = 0x1F0 constant SYS_PTHREAD_CLEANUP_PUSH (line 728) | SYS_PTHREAD_CLEANUP_PUSH = 0x1EF constant SYS_PTHREAD_CONDATTR_DESTROY (line 729) | SYS_PTHREAD_CONDATTR_DESTROY = 0x1F2 constant SYS_PTHREAD_CONDATTR_INIT (line 730) | SYS_PTHREAD_CONDATTR_INIT = 0x1F1 constant SYS_PTHREAD_COND_BROADCAST (line 731) | SYS_PTHREAD_COND_BROADCAST = 0x1F6 constant SYS_PTHREAD_COND_DESTROY (line 732) | SYS_PTHREAD_COND_DESTROY = 0x1F4 constant SYS_PTHREAD_COND_INIT (line 733) | SYS_PTHREAD_COND_INIT = 0x1F3 constant SYS_PTHREAD_COND_SIGNAL (line 734) | SYS_PTHREAD_COND_SIGNAL = 0x1F5 constant SYS_PTHREAD_COND_TIMEDWAIT (line 735) | SYS_PTHREAD_COND_TIMEDWAIT = 0x1F8 constant SYS_PTHREAD_COND_WAIT (line 736) | SYS_PTHREAD_COND_WAIT = 0x1F7 constant SYS_PTHREAD_CREATE (line 737) | SYS_PTHREAD_CREATE = 0x1F9 constant SYS_PTHREAD_DETACH (line 738) | SYS_PTHREAD_DETACH = 0x1FA constant SYS_PTHREAD_EQUAL (line 739) | SYS_PTHREAD_EQUAL = 0x1FB constant SYS_PTHREAD_EXIT (line 740) | SYS_PTHREAD_EXIT = 0x1E4 constant SYS_PTHREAD_GETSPECIFIC (line 741) | SYS_PTHREAD_GETSPECIFIC = 0x1FC constant SYS_PTHREAD_JOIN (line 742) | SYS_PTHREAD_JOIN = 0x1FD constant SYS_PTHREAD_KEY_CREATE (line 743) | SYS_PTHREAD_KEY_CREATE = 0x1FE constant SYS_PTHREAD_KILL (line 744) | SYS_PTHREAD_KILL = 0x1E5 constant SYS_PTHREAD_MUTEXATTR_INIT (line 745) | SYS_PTHREAD_MUTEXATTR_INIT = 0x1FF constant SYS_READ (line 746) | SYS_READ = 0x1B2 constant SYS_READDIR (line 747) | SYS_READDIR = 0x1B3 constant SYS_READLINK (line 748) | SYS_READLINK = 0x1B4 constant SYS_REWINDDIR (line 749) | SYS_REWINDDIR = 0x1B5 constant SYS_RMDIR (line 750) | SYS_RMDIR = 0x1B6 constant SYS_SETEGID (line 751) | SYS_SETEGID = 0x1B7 constant SYS_SETEUID (line 752) | SYS_SETEUID = 0x1B8 constant SYS_SETGID (line 753) | SYS_SETGID = 0x1B9 constant SYS_SETPGID (line 754) | SYS_SETPGID = 0x1BA constant SYS_SETSID (line 755) | SYS_SETSID = 0x1BB constant SYS_SETUID (line 756) | SYS_SETUID = 0x1BC constant SYS_SIGACTION (line 757) | SYS_SIGACTION = 0x1BD constant SYS_SIGADDSET (line 758) | SYS_SIGADDSET = 0x1BE constant SYS_SIGDELSET (line 759) | SYS_SIGDELSET = 0x1BF constant SYS_SIGEMPTYSET (line 760) | SYS_SIGEMPTYSET = 0x1C0 constant SYS_SIGFILLSET (line 761) | SYS_SIGFILLSET = 0x1C1 constant SYS_SIGISMEMBER (line 762) | SYS_SIGISMEMBER = 0x1C2 constant SYS_SIGLONGJMP (line 763) | SYS_SIGLONGJMP = 0x1C3 constant SYS_SIGPENDING (line 764) | SYS_SIGPENDING = 0x1C4 constant SYS_SIGPROCMASK (line 765) | SYS_SIGPROCMASK = 0x1C5 constant SYS_SIGSETJMP (line 766) | SYS_SIGSETJMP = 0x1C6 constant SYS_SIGSUSPEND (line 767) | SYS_SIGSUSPEND = 0x1C7 constant SYS_SIGWAIT (line 768) | SYS_SIGWAIT = 0x1E3 constant SYS_SLEEP (line 769) | SYS_SLEEP = 0x1C8 constant SYS_STAT (line 770) | SYS_STAT = 0x1C9 constant SYS_SYMLINK (line 771) | SYS_SYMLINK = 0x1CB constant SYS_SYSCONF (line 772) | SYS_SYSCONF = 0x1CC constant SYS_TCDRAIN (line 773) | SYS_TCDRAIN = 0x1CD constant SYS_TCFLOW (line 774) | SYS_TCFLOW = 0x1CE constant SYS_TCFLUSH (line 775) | SYS_TCFLUSH = 0x1CF constant SYS_TCGETATTR (line 776) | SYS_TCGETATTR = 0x1D0 constant SYS_TCGETPGRP (line 777) | SYS_TCGETPGRP = 0x1D1 constant SYS_TCSENDBREAK (line 778) | SYS_TCSENDBREAK = 0x1D2 constant SYS_TCSETATTR (line 779) | SYS_TCSETATTR = 0x1D3 constant SYS_TCSETPGRP (line 780) | SYS_TCSETPGRP = 0x1D4 constant SYS_TIMES (line 781) | SYS_TIMES = 0x1D5 constant SYS_TTYNAME (line 782) | SYS_TTYNAME = 0x1D6 constant SYS_TZSET (line 783) | SYS_TZSET = 0x1D7 constant SYS_UMASK (line 784) | SYS_UMASK = 0x1D8 constant SYS_UMOUNT (line 785) | SYS_UMOUNT = 0x1D9 constant SYS_UNAME (line 786) | SYS_UNAME = 0x1DA constant SYS_UNLINK (line 787) | SYS_UNLINK = 0x1DB constant SYS_UTIME (line 788) | SYS_UTIME = 0x1DC constant SYS_WAIT (line 789) | SYS_WAIT = 0x1DD constant SYS_WAITPID (line 790) | SYS_WAITPID = 0x1DE constant SYS_WRITE (line 791) | SYS_WRITE = 0x1DF constant SYS_W_GETPSENT (line 792) | SYS_W_GETPSENT = 0x1B1 constant SYS_W_IOCTL (line 793) | SYS_W_IOCTL = 0x1A2 constant SYS_W_STATFS (line 794) | SYS_W_STATFS = 0x1CA constant SYS_A64L (line 795) | SYS_A64L = 0x2EF constant SYS_BCMP (line 796) | SYS_BCMP = 0x2B9 constant SYS_BCOPY (line 797) | SYS_BCOPY = 0x2BA constant SYS_BZERO (line 798) | SYS_BZERO = 0x2BB constant SYS_CATCLOSE (line 799) | SYS_CATCLOSE = 0x2B6 constant SYS_CATGETS (line 800) | SYS_CATGETS = 0x2B7 constant SYS_CATOPEN (line 801) | SYS_CATOPEN = 0x2B8 constant SYS_CRYPT (line 802) | SYS_CRYPT = 0x2AC constant SYS_DBM_CLEARERR (line 803) | SYS_DBM_CLEARERR = 0x2F7 constant SYS_DBM_CLOSE (line 804) | SYS_DBM_CLOSE = 0x2F8 constant SYS_DBM_DELETE (line 805) | SYS_DBM_DELETE = 0x2F9 constant SYS_DBM_ERROR (line 806) | SYS_DBM_ERROR = 0x2FA constant SYS_DBM_FETCH (line 807) | SYS_DBM_FETCH = 0x2FB constant SYS_DBM_FIRSTKEY (line 808) | SYS_DBM_FIRSTKEY = 0x2FC constant SYS_DBM_NEXTKEY (line 809) | SYS_DBM_NEXTKEY = 0x2FD constant SYS_DBM_OPEN (line 810) | SYS_DBM_OPEN = 0x2FE constant SYS_DBM_STORE (line 811) | SYS_DBM_STORE = 0x2FF constant SYS_DRAND48 (line 812) | SYS_DRAND48 = 0x2B2 constant SYS_ENCRYPT (line 813) | SYS_ENCRYPT = 0x2AD constant SYS_ENDUTXENT (line 814) | SYS_ENDUTXENT = 0x2E1 constant SYS_ERAND48 (line 815) | SYS_ERAND48 = 0x2B3 constant SYS_ERF (line 816) | SYS_ERF = 0x02C constant SYS_ERFC (line 817) | SYS_ERFC = 0x02D constant SYS_FCHDIR (line 818) | SYS_FCHDIR = 0x2D9 constant SYS_FFS (line 819) | SYS_FFS = 0x2BC constant SYS_FMTMSG (line 820) | SYS_FMTMSG = 0x2E5 constant SYS_FSTATVFS (line 821) | SYS_FSTATVFS = 0x2B4 constant SYS_FTIME (line 822) | SYS_FTIME = 0x2F5 constant SYS_GAMMA (line 823) | SYS_GAMMA = 0x02E constant SYS_GETDATE (line 824) | SYS_GETDATE = 0x2A6 constant SYS_GETPAGESIZE (line 825) | SYS_GETPAGESIZE = 0x2D8 constant SYS_GETTIMEOFDAY (line 826) | SYS_GETTIMEOFDAY = 0x2F6 constant SYS_GETUTXENT (line 827) | SYS_GETUTXENT = 0x2E0 constant SYS_GETUTXID (line 828) | SYS_GETUTXID = 0x2E2 constant SYS_GETUTXLINE (line 829) | SYS_GETUTXLINE = 0x2E3 constant SYS_HCREATE (line 830) | SYS_HCREATE = 0x2C6 constant SYS_HDESTROY (line 831) | SYS_HDESTROY = 0x2C7 constant SYS_HSEARCH (line 832) | SYS_HSEARCH = 0x2C8 constant SYS_HYPOT (line 833) | SYS_HYPOT = 0x02B constant SYS_INDEX (line 834) | SYS_INDEX = 0x2BD constant SYS_INITSTATE (line 835) | SYS_INITSTATE = 0x2C2 constant SYS_INSQUE (line 836) | SYS_INSQUE = 0x2CF constant SYS_ISASCII (line 837) | SYS_ISASCII = 0x2ED constant SYS_JRAND48 (line 838) | SYS_JRAND48 = 0x2E6 constant SYS_L64A (line 839) | SYS_L64A = 0x2F0 constant SYS_LCONG48 (line 840) | SYS_LCONG48 = 0x2EA constant SYS_LFIND (line 841) | SYS_LFIND = 0x2C9 constant SYS_LRAND48 (line 842) | SYS_LRAND48 = 0x2E7 constant SYS_LSEARCH (line 843) | SYS_LSEARCH = 0x2CA constant SYS_MEMCCPY (line 844) | SYS_MEMCCPY = 0x2D4 constant SYS_MRAND48 (line 845) | SYS_MRAND48 = 0x2E8 constant SYS_NRAND48 (line 846) | SYS_NRAND48 = 0x2E9 constant SYS_PCLOSE (line 847) | SYS_PCLOSE = 0x2D2 constant SYS_POPEN (line 848) | SYS_POPEN = 0x2D1 constant SYS_PUTUTXLINE (line 849) | SYS_PUTUTXLINE = 0x2E4 constant SYS_RANDOM (line 850) | SYS_RANDOM = 0x2C4 constant SYS_REMQUE (line 851) | SYS_REMQUE = 0x2D0 constant SYS_RINDEX (line 852) | SYS_RINDEX = 0x2BE constant SYS_SEED48 (line 853) | SYS_SEED48 = 0x2EC constant SYS_SETKEY (line 854) | SYS_SETKEY = 0x2AE constant SYS_SETSTATE (line 855) | SYS_SETSTATE = 0x2C3 constant SYS_SETUTXENT (line 856) | SYS_SETUTXENT = 0x2DF constant SYS_SRAND48 (line 857) | SYS_SRAND48 = 0x2EB constant SYS_SRANDOM (line 858) | SYS_SRANDOM = 0x2C5 constant SYS_STATVFS (line 859) | SYS_STATVFS = 0x2B5 constant SYS_STRCASECMP (line 860) | SYS_STRCASECMP = 0x2BF constant SYS_STRDUP (line 861) | SYS_STRDUP = 0x2C0 constant SYS_STRNCASECMP (line 862) | SYS_STRNCASECMP = 0x2C1 constant SYS_SWAB (line 863) | SYS_SWAB = 0x2D3 constant SYS_TDELETE (line 864) | SYS_TDELETE = 0x2CB constant SYS_TFIND (line 865) | SYS_TFIND = 0x2CC constant SYS_TOASCII (line 866) | SYS_TOASCII = 0x2EE constant SYS_TSEARCH (line 867) | SYS_TSEARCH = 0x2CD constant SYS_TWALK (line 868) | SYS_TWALK = 0x2CE constant SYS_UALARM (line 869) | SYS_UALARM = 0x2F1 constant SYS_USLEEP (line 870) | SYS_USLEEP = 0x2F2 constant SYS_WAIT3 (line 871) | SYS_WAIT3 = 0x2A7 constant SYS_WAITID (line 872) | SYS_WAITID = 0x2A8 constant SYS_Y1 (line 873) | SYS_Y1 = 0x02A constant SYS___ATOE (line 874) | SYS___ATOE = 0x2DB constant SYS___ATOE_L (line 875) | SYS___ATOE_L = 0x2DC constant SYS___CATTRM (line 876) | SYS___CATTRM = 0x2A9 constant SYS___CNVBLK (line 877) | SYS___CNVBLK = 0x2AF constant SYS___CRYTRM (line 878) | SYS___CRYTRM = 0x2B0 constant SYS___DLGHT (line 879) | SYS___DLGHT = 0x2A1 constant SYS___ECRTRM (line 880) | SYS___ECRTRM = 0x2B1 constant SYS___ETOA (line 881) | SYS___ETOA = 0x2DD constant SYS___ETOA_L (line 882) | SYS___ETOA_L = 0x2DE constant SYS___GDTRM (line 883) | SYS___GDTRM = 0x2AA constant SYS___OCLCK (line 884) | SYS___OCLCK = 0x2DA constant SYS___OPARGF (line 885) | SYS___OPARGF = 0x2A2 constant SYS___OPERRF (line 886) | SYS___OPERRF = 0x2A5 constant SYS___OPINDF (line 887) | SYS___OPINDF = 0x2A4 constant SYS___OPOPTF (line 888) | SYS___OPOPTF = 0x2A3 constant SYS___RNDTRM (line 889) | SYS___RNDTRM = 0x2AB constant SYS___SRCTRM (line 890) | SYS___SRCTRM = 0x2F4 constant SYS___TZONE (line 891) | SYS___TZONE = 0x2A0 constant SYS___UTXTRM (line 892) | SYS___UTXTRM = 0x2F3 constant SYS_ASIN (line 893) | SYS_ASIN = 0x03E constant SYS_ISXDIGIT (line 894) | SYS_ISXDIGIT = 0x03B constant SYS_SETLOCAL (line 895) | SYS_SETLOCAL = 0x03A constant SYS_SETLOCALE (line 896) | SYS_SETLOCALE = 0x03A constant SYS_SIN (line 897) | SYS_SIN = 0x03F constant SYS_TOLOWER (line 898) | SYS_TOLOWER = 0x03C constant SYS_TOUPPER (line 899) | SYS_TOUPPER = 0x03D constant SYS_ACCEPT_AND_RECV (line 900) | SYS_ACCEPT_AND_RECV = 0x4F7 constant SYS_ATOL (line 901) | SYS_ATOL = 0x04E constant SYS_CHECKSCH (line 902) | SYS_CHECKSCH = 0x4BC constant SYS_CHECKSCHENV (line 903) | SYS_CHECKSCHENV = 0x4BC constant SYS_CLEARERR (line 904) | SYS_CLEARERR = 0x04C constant SYS_CONNECTS (line 905) | SYS_CONNECTS = 0x4B5 constant SYS_CONNECTSERVER (line 906) | SYS_CONNECTSERVER = 0x4B5 constant SYS_CONNECTW (line 907) | SYS_CONNECTW = 0x4B4 constant SYS_CONNECTWORKMGR (line 908) | SYS_CONNECTWORKMGR = 0x4B4 constant SYS_CONTINUE (line 909) | SYS_CONTINUE = 0x4B3 constant SYS_CONTINUEWORKUNIT (line 910) | SYS_CONTINUEWORKUNIT = 0x4B3 constant SYS_COPYSIGN (line 911) | SYS_COPYSIGN = 0x4C2 constant SYS_CREATEWO (line 912) | SYS_CREATEWO = 0x4B2 constant SYS_CREATEWORKUNIT (line 913) | SYS_CREATEWORKUNIT = 0x4B2 constant SYS_DELETEWO (line 914) | SYS_DELETEWO = 0x4B9 constant SYS_DELETEWORKUNIT (line 915) | SYS_DELETEWORKUNIT = 0x4B9 constant SYS_DISCONNE (line 916) | SYS_DISCONNE = 0x4B6 constant SYS_DISCONNECTSERVER (line 917) | SYS_DISCONNECTSERVER = 0x4B6 constant SYS_FEOF (line 918) | SYS_FEOF = 0x04D constant SYS_FERROR (line 919) | SYS_FERROR = 0x04A constant SYS_FINITE (line 920) | SYS_FINITE = 0x4C8 constant SYS_GAMMA_R (line 921) | SYS_GAMMA_R = 0x4E2 constant SYS_JOINWORK (line 922) | SYS_JOINWORK = 0x4B7 constant SYS_JOINWORKUNIT (line 923) | SYS_JOINWORKUNIT = 0x4B7 constant SYS_LEAVEWOR (line 924) | SYS_LEAVEWOR = 0x4B8 constant SYS_LEAVEWORKUNIT (line 925) | SYS_LEAVEWORKUNIT = 0x4B8 constant SYS_LGAMMA_R (line 926) | SYS_LGAMMA_R = 0x4EB constant SYS_MATHERR (line 927) | SYS_MATHERR = 0x4D0 constant SYS_PERROR (line 928) | SYS_PERROR = 0x04F constant SYS_QUERYMET (line 929) | SYS_QUERYMET = 0x4BA constant SYS_QUERYMETRICS (line 930) | SYS_QUERYMETRICS = 0x4BA constant SYS_QUERYSCH (line 931) | SYS_QUERYSCH = 0x4BB constant SYS_QUERYSCHENV (line 932) | SYS_QUERYSCHENV = 0x4BB constant SYS_REWIND (line 933) | SYS_REWIND = 0x04B constant SYS_SCALBN (line 934) | SYS_SCALBN = 0x4D4 constant SYS_SIGNIFIC (line 935) | SYS_SIGNIFIC = 0x4D5 constant SYS_SIGNIFICAND (line 936) | SYS_SIGNIFICAND = 0x4D5 constant SYS___ACOSH_B (line 937) | SYS___ACOSH_B = 0x4DA constant SYS___ACOS_B (line 938) | SYS___ACOS_B = 0x4D9 constant SYS___ASINH_B (line 939) | SYS___ASINH_B = 0x4BE constant SYS___ASIN_B (line 940) | SYS___ASIN_B = 0x4DB constant SYS___ATAN2_B (line 941) | SYS___ATAN2_B = 0x4DC constant SYS___ATANH_B (line 942) | SYS___ATANH_B = 0x4DD constant SYS___ATAN_B (line 943) | SYS___ATAN_B = 0x4BF constant SYS___CBRT_B (line 944) | SYS___CBRT_B = 0x4C0 constant SYS___CEIL_B (line 945) | SYS___CEIL_B = 0x4C1 constant SYS___COSH_B (line 946) | SYS___COSH_B = 0x4DE constant SYS___COS_B (line 947) | SYS___COS_B = 0x4C3 constant SYS___DGHT (line 948) | SYS___DGHT = 0x4A8 constant SYS___ENVN (line 949) | SYS___ENVN = 0x4B0 constant SYS___ERFC_B (line 950) | SYS___ERFC_B = 0x4C5 constant SYS___ERF_B (line 951) | SYS___ERF_B = 0x4C4 constant SYS___EXPM1_B (line 952) | SYS___EXPM1_B = 0x4C6 constant SYS___EXP_B (line 953) | SYS___EXP_B = 0x4DF constant SYS___FABS_B (line 954) | SYS___FABS_B = 0x4C7 constant SYS___FLOOR_B (line 955) | SYS___FLOOR_B = 0x4C9 constant SYS___FMOD_B (line 956) | SYS___FMOD_B = 0x4E0 constant SYS___FP_SETMODE (line 957) | SYS___FP_SETMODE = 0x4F8 constant SYS___FREXP_B (line 958) | SYS___FREXP_B = 0x4CA constant SYS___GAMMA_B (line 959) | SYS___GAMMA_B = 0x4E1 constant SYS___GDRR (line 960) | SYS___GDRR = 0x4A1 constant SYS___HRRNO (line 961) | SYS___HRRNO = 0x4A2 constant SYS___HYPOT_B (line 962) | SYS___HYPOT_B = 0x4E3 constant SYS___ILOGB_B (line 963) | SYS___ILOGB_B = 0x4CB constant SYS___ISNAN_B (line 964) | SYS___ISNAN_B = 0x4CC constant SYS___J0_B (line 965) | SYS___J0_B = 0x4E4 constant SYS___J1_B (line 966) | SYS___J1_B = 0x4E6 constant SYS___JN_B (line 967) | SYS___JN_B = 0x4E8 constant SYS___LDEXP_B (line 968) | SYS___LDEXP_B = 0x4CD constant SYS___LGAMMA_B (line 969) | SYS___LGAMMA_B = 0x4EA constant SYS___LOG10_B (line 970) | SYS___LOG10_B = 0x4ED constant SYS___LOG1P_B (line 971) | SYS___LOG1P_B = 0x4CE constant SYS___LOGB_B (line 972) | SYS___LOGB_B = 0x4CF constant SYS___LOGIN (line 973) | SYS___LOGIN = 0x4F5 constant SYS___LOG_B (line 974) | SYS___LOG_B = 0x4EC constant SYS___MLOCKALL (line 975) | SYS___MLOCKALL = 0x4B1 constant SYS___MODF_B (line 976) | SYS___MODF_B = 0x4D1 constant SYS___NEXTAFTER_B (line 977) | SYS___NEXTAFTER_B = 0x4D2 constant SYS___OPENDIR2 (line 978) | SYS___OPENDIR2 = 0x4F3 constant SYS___OPEN_STAT (line 979) | SYS___OPEN_STAT = 0x4F6 constant SYS___OPND (line 980) | SYS___OPND = 0x4A5 constant SYS___OPPT (line 981) | SYS___OPPT = 0x4A6 constant SYS___OPRG (line 982) | SYS___OPRG = 0x4A3 constant SYS___OPRR (line 983) | SYS___OPRR = 0x4A4 constant SYS___PID_AFFINITY (line 984) | SYS___PID_AFFINITY = 0x4BD constant SYS___POW_B (line 985) | SYS___POW_B = 0x4EE constant SYS___READDIR2 (line 986) | SYS___READDIR2 = 0x4F4 constant SYS___REMAINDER_B (line 987) | SYS___REMAINDER_B = 0x4EF constant SYS___RINT_B (line 988) | SYS___RINT_B = 0x4D3 constant SYS___SCALB_B (line 989) | SYS___SCALB_B = 0x4F0 constant SYS___SIGACTIONSET (line 990) | SYS___SIGACTIONSET = 0x4FB constant SYS___SIGGM (line 991) | SYS___SIGGM = 0x4A7 constant SYS___SINH_B (line 992) | SYS___SINH_B = 0x4F1 constant SYS___SIN_B (line 993) | SYS___SIN_B = 0x4D6 constant SYS___SQRT_B (line 994) | SYS___SQRT_B = 0x4F2 constant SYS___TANH_B (line 995) | SYS___TANH_B = 0x4D8 constant SYS___TAN_B (line 996) | SYS___TAN_B = 0x4D7 constant SYS___TRRNO (line 997) | SYS___TRRNO = 0x4AF constant SYS___TZNE (line 998) | SYS___TZNE = 0x4A9 constant SYS___TZZN (line 999) | SYS___TZZN = 0x4AA constant SYS___UCREATE (line 1000) | SYS___UCREATE = 0x4FC constant SYS___UFREE (line 1001) | SYS___UFREE = 0x4FE constant SYS___UHEAPREPORT (line 1002) | SYS___UHEAPREPORT = 0x4FF constant SYS___UMALLOC (line 1003) | SYS___UMALLOC = 0x4FD constant SYS___Y0_B (line 1004) | SYS___Y0_B = 0x4E5 constant SYS___Y1_B (line 1005) | SYS___Y1_B = 0x4E7 constant SYS___YN_B (line 1006) | SYS___YN_B = 0x4E9 constant SYS_ABORT (line 1007) | SYS_ABORT = 0x05C constant SYS_ASCTIME_R (line 1008) | SYS_ASCTIME_R = 0x5E0 constant SYS_ATEXIT (line 1009) | SYS_ATEXIT = 0x05D constant SYS_CONNECTE (line 1010) | SYS_CONNECTE = 0x5AE constant SYS_CONNECTEXPORTIMPORT (line 1011) | SYS_CONNECTEXPORTIMPORT = 0x5AE constant SYS_CTIME_R (line 1012) | SYS_CTIME_R = 0x5E1 constant SYS_DN_COMP (line 1013) | SYS_DN_COMP = 0x5DF constant SYS_DN_EXPAND (line 1014) | SYS_DN_EXPAND = 0x5DD constant SYS_DN_SKIPNAME (line 1015) | SYS_DN_SKIPNAME = 0x5DE constant SYS_EXIT (line 1016) | SYS_EXIT = 0x05A constant SYS_EXPORTWO (line 1017) | SYS_EXPORTWO = 0x5A1 constant SYS_EXPORTWORKUNIT (line 1018) | SYS_EXPORTWORKUNIT = 0x5A1 constant SYS_EXTRACTW (line 1019) | SYS_EXTRACTW = 0x5A5 constant SYS_EXTRACTWORKUNIT (line 1020) | SYS_EXTRACTWORKUNIT = 0x5A5 constant SYS_FSEEKO (line 1021) | SYS_FSEEKO = 0x5C9 constant SYS_FTELLO (line 1022) | SYS_FTELLO = 0x5C8 constant SYS_GETGRGID_R (line 1023) | SYS_GETGRGID_R = 0x5E7 constant SYS_GETGRNAM_R (line 1024) | SYS_GETGRNAM_R = 0x5E8 constant SYS_GETLOGIN_R (line 1025) | SYS_GETLOGIN_R = 0x5E9 constant SYS_GETPWNAM_R (line 1026) | SYS_GETPWNAM_R = 0x5EA constant SYS_GETPWUID_R (line 1027) | SYS_GETPWUID_R = 0x5EB constant SYS_GMTIME_R (line 1028) | SYS_GMTIME_R = 0x5E2 constant SYS_IMPORTWO (line 1029) | SYS_IMPORTWO = 0x5A3 constant SYS_IMPORTWORKUNIT (line 1030) | SYS_IMPORTWORKUNIT = 0x5A3 constant SYS_INET_NTOP (line 1031) | SYS_INET_NTOP = 0x5D3 constant SYS_INET_PTON (line 1032) | SYS_INET_PTON = 0x5D4 constant SYS_LLABS (line 1033) | SYS_LLABS = 0x5CE constant SYS_LLDIV (line 1034) | SYS_LLDIV = 0x5CB constant SYS_LOCALTIME_R (line 1035) | SYS_LOCALTIME_R = 0x5E3 constant SYS_PTHREAD_ATFORK (line 1036) | SYS_PTHREAD_ATFORK = 0x5ED constant SYS_PTHREAD_ATTR_GETDETACHSTATE_U98 (line 1037) | SYS_PTHREAD_ATTR_GETDETACHSTATE_U98 = 0x5FB constant SYS_PTHREAD_ATTR_GETGUARDSIZE (line 1038) | SYS_PTHREAD_ATTR_GETGUARDSIZE = 0x5EE constant SYS_PTHREAD_ATTR_GETSCHEDPARAM (line 1039) | SYS_PTHREAD_ATTR_GETSCHEDPARAM = 0x5F9 constant SYS_PTHREAD_ATTR_GETSTACKADDR (line 1040) | SYS_PTHREAD_ATTR_GETSTACKADDR = 0x5EF constant SYS_PTHREAD_ATTR_SETDETACHSTATE_U98 (line 1041) | SYS_PTHREAD_ATTR_SETDETACHSTATE_U98 = 0x5FC constant SYS_PTHREAD_ATTR_SETGUARDSIZE (line 1042) | SYS_PTHREAD_ATTR_SETGUARDSIZE = 0x5F0 constant SYS_PTHREAD_ATTR_SETSCHEDPARAM (line 1043) | SYS_PTHREAD_ATTR_SETSCHEDPARAM = 0x5FA constant SYS_PTHREAD_ATTR_SETSTACKADDR (line 1044) | SYS_PTHREAD_ATTR_SETSTACKADDR = 0x5F1 constant SYS_PTHREAD_CONDATTR_GETPSHARED (line 1045) | SYS_PTHREAD_CONDATTR_GETPSHARED = 0x5F2 constant SYS_PTHREAD_CONDATTR_SETPSHARED (line 1046) | SYS_PTHREAD_CONDATTR_SETPSHARED = 0x5F3 constant SYS_PTHREAD_DETACH_U98 (line 1047) | SYS_PTHREAD_DETACH_U98 = 0x5FD constant SYS_PTHREAD_GETCONCURRENCY (line 1048) | SYS_PTHREAD_GETCONCURRENCY = 0x5F4 constant SYS_PTHREAD_GETSPECIFIC_U98 (line 1049) | SYS_PTHREAD_GETSPECIFIC_U98 = 0x5FE constant SYS_PTHREAD_KEY_DELETE (line 1050) | SYS_PTHREAD_KEY_DELETE = 0x5F5 constant SYS_PTHREAD_SETCANCELSTATE (line 1051) | SYS_PTHREAD_SETCANCELSTATE = 0x5FF constant SYS_PTHREAD_SETCONCURRENCY (line 1052) | SYS_PTHREAD_SETCONCURRENCY = 0x5F6 constant SYS_PTHREAD_SIGMASK (line 1053) | SYS_PTHREAD_SIGMASK = 0x5F7 constant SYS_QUERYENC (line 1054) | SYS_QUERYENC = 0x5AD constant SYS_QUERYWORKUNITCLASSIFICATION (line 1055) | SYS_QUERYWORKUNITCLASSIFICATION = 0x5AD constant SYS_RAISE (line 1056) | SYS_RAISE = 0x05E constant SYS_RAND_R (line 1057) | SYS_RAND_R = 0x5E4 constant SYS_READDIR_R (line 1058) | SYS_READDIR_R = 0x5E6 constant SYS_REALLOC (line 1059) | SYS_REALLOC = 0x05B constant SYS_RES_INIT (line 1060) | SYS_RES_INIT = 0x5D8 constant SYS_RES_MKQUERY (line 1061) | SYS_RES_MKQUERY = 0x5D7 constant SYS_RES_QUERY (line 1062) | SYS_RES_QUERY = 0x5D9 constant SYS_RES_QUERYDOMAIN (line 1063) | SYS_RES_QUERYDOMAIN = 0x5DC constant SYS_RES_SEARCH (line 1064) | SYS_RES_SEARCH = 0x5DA constant SYS_RES_SEND (line 1065) | SYS_RES_SEND = 0x5DB constant SYS_SETJMP (line 1066) | SYS_SETJMP = 0x05F constant SYS_SIGQUEUE (line 1067) | SYS_SIGQUEUE = 0x5A9 constant SYS_STRTOK_R (line 1068) | SYS_STRTOK_R = 0x5E5 constant SYS_STRTOLL (line 1069) | SYS_STRTOLL = 0x5B0 constant SYS_STRTOULL (line 1070) | SYS_STRTOULL = 0x5B1 constant SYS_TTYNAME_R (line 1071) | SYS_TTYNAME_R = 0x5EC constant SYS_UNDOEXPO (line 1072) | SYS_UNDOEXPO = 0x5A2 constant SYS_UNDOEXPORTWORKUNIT (line 1073) | SYS_UNDOEXPORTWORKUNIT = 0x5A2 constant SYS_UNDOIMPO (line 1074) | SYS_UNDOIMPO = 0x5A4 constant SYS_UNDOIMPORTWORKUNIT (line 1075) | SYS_UNDOIMPORTWORKUNIT = 0x5A4 constant SYS_WCSTOLL (line 1076) | SYS_WCSTOLL = 0x5CC constant SYS_WCSTOULL (line 1077) | SYS_WCSTOULL = 0x5CD constant SYS___ABORT (line 1078) | SYS___ABORT = 0x05C constant SYS___CONSOLE2 (line 1079) | SYS___CONSOLE2 = 0x5D2 constant SYS___CPL (line 1080) | SYS___CPL = 0x5A6 constant SYS___DISCARDDATA (line 1081) | SYS___DISCARDDATA = 0x5F8 constant SYS___DSA_PREV (line 1082) | SYS___DSA_PREV = 0x5B2 constant SYS___EP_FIND (line 1083) | SYS___EP_FIND = 0x5B3 constant SYS___FP_SWAPMODE (line 1084) | SYS___FP_SWAPMODE = 0x5AF constant SYS___GETUSERID (line 1085) | SYS___GETUSERID = 0x5AB constant SYS___GET_CPUID (line 1086) | SYS___GET_CPUID = 0x5B9 constant SYS___GET_SYSTEM_SETTINGS (line 1087) | SYS___GET_SYSTEM_SETTINGS = 0x5BA constant SYS___IPDOMAINNAME (line 1088) | SYS___IPDOMAINNAME = 0x5AC constant SYS___MAP_INIT (line 1089) | SYS___MAP_INIT = 0x5A7 constant SYS___MAP_SERVICE (line 1090) | SYS___MAP_SERVICE = 0x5A8 constant SYS___MOUNT (line 1091) | SYS___MOUNT = 0x5AA constant SYS___MSGRCV_TIMED (line 1092) | SYS___MSGRCV_TIMED = 0x5B7 constant SYS___RES (line 1093) | SYS___RES = 0x5D6 constant SYS___SEMOP_TIMED (line 1094) | SYS___SEMOP_TIMED = 0x5B8 constant SYS___SERVER_THREADS_QUERY (line 1095) | SYS___SERVER_THREADS_QUERY = 0x5B4 constant SYS_FPRINTF (line 1096) | SYS_FPRINTF = 0x06D constant SYS_FSCANF (line 1097) | SYS_FSCANF = 0x06A constant SYS_PRINTF (line 1098) | SYS_PRINTF = 0x06F constant SYS_SETBUF (line 1099) | SYS_SETBUF = 0x06B constant SYS_SETVBUF (line 1100) | SYS_SETVBUF = 0x06C constant SYS_SSCANF (line 1101) | SYS_SSCANF = 0x06E constant SYS___CATGETS_A (line 1102) | SYS___CATGETS_A = 0x6C0 constant SYS___CHAUDIT_A (line 1103) | SYS___CHAUDIT_A = 0x6F4 constant SYS___CHMOD_A (line 1104) | SYS___CHMOD_A = 0x6E8 constant SYS___COLLATE_INIT_A (line 1105) | SYS___COLLATE_INIT_A = 0x6AC constant SYS___CREAT_A (line 1106) | SYS___CREAT_A = 0x6F6 constant SYS___CTYPE_INIT_A (line 1107) | SYS___CTYPE_INIT_A = 0x6AF constant SYS___DLLLOAD_A (line 1108) | SYS___DLLLOAD_A = 0x6DF constant SYS___DLLQUERYFN_A (line 1109) | SYS___DLLQUERYFN_A = 0x6E0 constant SYS___DLLQUERYVAR_A (line 1110) | SYS___DLLQUERYVAR_A = 0x6E1 constant SYS___E2A_L (line 1111) | SYS___E2A_L = 0x6E3 constant SYS___EXECLE_A (line 1112) | SYS___EXECLE_A = 0x6A0 constant SYS___EXECLP_A (line 1113) | SYS___EXECLP_A = 0x6A4 constant SYS___EXECVE_A (line 1114) | SYS___EXECVE_A = 0x6C1 constant SYS___EXECVP_A (line 1115) | SYS___EXECVP_A = 0x6C2 constant SYS___EXECV_A (line 1116) | SYS___EXECV_A = 0x6B1 constant SYS___FPRINTF_A (line 1117) | SYS___FPRINTF_A = 0x6FA constant SYS___GETADDRINFO_A (line 1118) | SYS___GETADDRINFO_A = 0x6BF constant SYS___GETNAMEINFO_A (line 1119) | SYS___GETNAMEINFO_A = 0x6C4 constant SYS___GET_WCTYPE_STD_A (line 1120) | SYS___GET_WCTYPE_STD_A = 0x6AE constant SYS___ICONV_OPEN_A (line 1121) | SYS___ICONV_OPEN_A = 0x6DE constant SYS___IF_INDEXTONAME_A (line 1122) | SYS___IF_INDEXTONAME_A = 0x6DC constant SYS___IF_NAMETOINDEX_A (line 1123) | SYS___IF_NAMETOINDEX_A = 0x6DB constant SYS___ISWCTYPE_A (line 1124) | SYS___ISWCTYPE_A = 0x6B0 constant SYS___IS_WCTYPE_STD_A (line 1125) | SYS___IS_WCTYPE_STD_A = 0x6B2 constant SYS___LOCALECONV_A (line 1126) | SYS___LOCALECONV_A = 0x6B8 constant SYS___LOCALECONV_STD_A (line 1127) | SYS___LOCALECONV_STD_A = 0x6B9 constant SYS___LOCALE_INIT_A (line 1128) | SYS___LOCALE_INIT_A = 0x6B7 constant SYS___LSTAT_A (line 1129) | SYS___LSTAT_A = 0x6EE constant SYS___LSTAT_O_A (line 1130) | SYS___LSTAT_O_A = 0x6EF constant SYS___MKDIR_A (line 1131) | SYS___MKDIR_A = 0x6E9 constant SYS___MKFIFO_A (line 1132) | SYS___MKFIFO_A = 0x6EC constant SYS___MKNOD_A (line 1133) | SYS___MKNOD_A = 0x6F0 constant SYS___MONETARY_INIT_A (line 1134) | SYS___MONETARY_INIT_A = 0x6BC constant SYS___MOUNT_A (line 1135) | SYS___MOUNT_A = 0x6F1 constant SYS___NL_CSINFO_A (line 1136) | SYS___NL_CSINFO_A = 0x6D6 constant SYS___NL_LANGINFO_A (line 1137) | SYS___NL_LANGINFO_A = 0x6BA constant SYS___NL_LNAGINFO_STD_A (line 1138) | SYS___NL_LNAGINFO_STD_A = 0x6BB constant SYS___NL_MONINFO_A (line 1139) | SYS___NL_MONINFO_A = 0x6D7 constant SYS___NL_NUMINFO_A (line 1140) | SYS___NL_NUMINFO_A = 0x6D8 constant SYS___NL_RESPINFO_A (line 1141) | SYS___NL_RESPINFO_A = 0x6D9 constant SYS___NL_TIMINFO_A (line 1142) | SYS___NL_TIMINFO_A = 0x6DA constant SYS___NUMERIC_INIT_A (line 1143) | SYS___NUMERIC_INIT_A = 0x6C6 constant SYS___OPEN_A (line 1144) | SYS___OPEN_A = 0x6F7 constant SYS___PRINTF_A (line 1145) | SYS___PRINTF_A = 0x6DD constant SYS___RESP_INIT_A (line 1146) | SYS___RESP_INIT_A = 0x6C7 constant SYS___RPMATCH_A (line 1147) | SYS___RPMATCH_A = 0x6C8 constant SYS___RPMATCH_C_A (line 1148) | SYS___RPMATCH_C_A = 0x6C9 constant SYS___RPMATCH_STD_A (line 1149) | SYS___RPMATCH_STD_A = 0x6CA constant SYS___SETLOCALE_A (line 1150) | SYS___SETLOCALE_A = 0x6F9 constant SYS___SPAWNP_A (line 1151) | SYS___SPAWNP_A = 0x6C5 constant SYS___SPAWN_A (line 1152) | SYS___SPAWN_A = 0x6C3 constant SYS___SPRINTF_A (line 1153) | SYS___SPRINTF_A = 0x6FB constant SYS___STAT_A (line 1154) | SYS___STAT_A = 0x6EA constant SYS___STAT_O_A (line 1155) | SYS___STAT_O_A = 0x6EB constant SYS___STRCOLL_STD_A (line 1156) | SYS___STRCOLL_STD_A = 0x6A1 constant SYS___STRFMON_A (line 1157) | SYS___STRFMON_A = 0x6BD constant SYS___STRFMON_STD_A (line 1158) | SYS___STRFMON_STD_A = 0x6BE constant SYS___STRFTIME_A (line 1159) | SYS___STRFTIME_A = 0x6CC constant SYS___STRFTIME_STD_A (line 1160) | SYS___STRFTIME_STD_A = 0x6CD constant SYS___STRPTIME_A (line 1161) | SYS___STRPTIME_A = 0x6CE constant SYS___STRPTIME_STD_A (line 1162) | SYS___STRPTIME_STD_A = 0x6CF constant SYS___STRXFRM_A (line 1163) | SYS___STRXFRM_A = 0x6A2 constant SYS___STRXFRM_C_A (line 1164) | SYS___STRXFRM_C_A = 0x6A3 constant SYS___STRXFRM_STD_A (line 1165) | SYS___STRXFRM_STD_A = 0x6A5 constant SYS___SYNTAX_INIT_A (line 1166) | SYS___SYNTAX_INIT_A = 0x6D4 constant SYS___TIME_INIT_A (line 1167) | SYS___TIME_INIT_A = 0x6CB constant SYS___TOD_INIT_A (line 1168) | SYS___TOD_INIT_A = 0x6D5 constant SYS___TOWLOWER_A (line 1169) | SYS___TOWLOWER_A = 0x6B3 constant SYS___TOWLOWER_STD_A (line 1170) | SYS___TOWLOWER_STD_A = 0x6B4 constant SYS___TOWUPPER_A (line 1171) | SYS___TOWUPPER_A = 0x6B5 constant SYS___TOWUPPER_STD_A (line 1172) | SYS___TOWUPPER_STD_A = 0x6B6 constant SYS___UMOUNT_A (line 1173) | SYS___UMOUNT_A = 0x6F2 constant SYS___VFPRINTF_A (line 1174) | SYS___VFPRINTF_A = 0x6FC constant SYS___VPRINTF_A (line 1175) | SYS___VPRINTF_A = 0x6FD constant SYS___VSPRINTF_A (line 1176) | SYS___VSPRINTF_A = 0x6FE constant SYS___VSWPRINTF_A (line 1177) | SYS___VSWPRINTF_A = 0x6FF constant SYS___WCSCOLL_A (line 1178) | SYS___WCSCOLL_A = 0x6A6 constant SYS___WCSCOLL_C_A (line 1179) | SYS___WCSCOLL_C_A = 0x6A7 constant SYS___WCSCOLL_STD_A (line 1180) | SYS___WCSCOLL_STD_A = 0x6A8 constant SYS___WCSFTIME_A (line 1181) | SYS___WCSFTIME_A = 0x6D0 constant SYS___WCSFTIME_STD_A (line 1182) | SYS___WCSFTIME_STD_A = 0x6D1 constant SYS___WCSXFRM_A (line 1183) | SYS___WCSXFRM_A = 0x6A9 constant SYS___WCSXFRM_C_A (line 1184) | SYS___WCSXFRM_C_A = 0x6AA constant SYS___WCSXFRM_STD_A (line 1185) | SYS___WCSXFRM_STD_A = 0x6AB constant SYS___WCTYPE_A (line 1186) | SYS___WCTYPE_A = 0x6AD constant SYS___W_GETMNTENT_A (line 1187) | SYS___W_GETMNTENT_A = 0x6F5 constant SYS_____CCSIDTYPE_A (line 1188) | SYS_____CCSIDTYPE_A = 0x6E6 constant SYS_____CHATTR_A (line 1189) | SYS_____CHATTR_A = 0x6E2 constant SYS_____CSNAMETYPE_A (line 1190) | SYS_____CSNAMETYPE_A = 0x6E7 constant SYS_____OPEN_STAT_A (line 1191) | SYS_____OPEN_STAT_A = 0x6ED constant SYS_____SPAWN2_A (line 1192) | SYS_____SPAWN2_A = 0x6D2 constant SYS_____SPAWNP2_A (line 1193) | SYS_____SPAWNP2_A = 0x6D3 constant SYS_____TOCCSID_A (line 1194) | SYS_____TOCCSID_A = 0x6E4 constant SYS_____TOCSNAME_A (line 1195) | SYS_____TOCSNAME_A = 0x6E5 constant SYS_ACL_FREE (line 1196) | SYS_ACL_FREE = 0x7FF constant SYS_ACL_INIT (line 1197) | SYS_ACL_INIT = 0x7FE constant SYS_FWIDE (line 1198) | SYS_FWIDE = 0x7DF constant SYS_FWPRINTF (line 1199) | SYS_FWPRINTF = 0x7D1 constant SYS_FWRITE (line 1200) | SYS_FWRITE = 0x07E constant SYS_FWSCANF (line 1201) | SYS_FWSCANF = 0x7D5 constant SYS_GETCHAR (line 1202) | SYS_GETCHAR = 0x07B constant SYS_GETS (line 1203) | SYS_GETS = 0x07C constant SYS_M_CREATE_LAYOUT (line 1204) | SYS_M_CREATE_LAYOUT = 0x7C9 constant SYS_M_DESTROY_LAYOUT (line 1205) | SYS_M_DESTROY_LAYOUT = 0x7CA constant SYS_M_GETVALUES_LAYOUT (line 1206) | SYS_M_GETVALUES_LAYOUT = 0x7CB constant SYS_M_SETVALUES_LAYOUT (line 1207) | SYS_M_SETVALUES_LAYOUT = 0x7CC constant SYS_M_TRANSFORM_LAYOUT (line 1208) | SYS_M_TRANSFORM_LAYOUT = 0x7CD constant SYS_M_WTRANSFORM_LAYOUT (line 1209) | SYS_M_WTRANSFORM_LAYOUT = 0x7CE constant SYS_PREAD (line 1210) | SYS_PREAD = 0x7C7 constant SYS_PUTC (line 1211) | SYS_PUTC = 0x07D constant SYS_PUTCHAR (line 1212) | SYS_PUTCHAR = 0x07A constant SYS_PUTS (line 1213) | SYS_PUTS = 0x07F constant SYS_PWRITE (line 1214) | SYS_PWRITE = 0x7C8 constant SYS_TOWCTRAN (line 1215) | SYS_TOWCTRAN = 0x7D8 constant SYS_TOWCTRANS (line 1216) | SYS_TOWCTRANS = 0x7D8 constant SYS_UNATEXIT (line 1217) | SYS_UNATEXIT = 0x7B5 constant SYS_VFWPRINT (line 1218) | SYS_VFWPRINT = 0x7D3 constant SYS_VFWPRINTF (line 1219) | SYS_VFWPRINTF = 0x7D3 constant SYS_VWPRINTF (line 1220) | SYS_VWPRINTF = 0x7D4 constant SYS_WCTRANS (line 1221) | SYS_WCTRANS = 0x7D7 constant SYS_WPRINTF (line 1222) | SYS_WPRINTF = 0x7D2 constant SYS_WSCANF (line 1223) | SYS_WSCANF = 0x7D6 constant SYS___ASCTIME_R_A (line 1224) | SYS___ASCTIME_R_A = 0x7A1 constant SYS___BASENAME_A (line 1225) | SYS___BASENAME_A = 0x7DC constant SYS___BTOWC_A (line 1226) | SYS___BTOWC_A = 0x7E4 constant SYS___CDUMP_A (line 1227) | SYS___CDUMP_A = 0x7B7 constant SYS___CEE3DMP_A (line 1228) | SYS___CEE3DMP_A = 0x7B6 constant SYS___CEILF_H (line 1229) | SYS___CEILF_H = 0x7F4 constant SYS___CEILL_H (line 1230) | SYS___CEILL_H = 0x7F5 constant SYS___CEIL_H (line 1231) | SYS___CEIL_H = 0x7EA constant SYS___CRYPT_A (line 1232) | SYS___CRYPT_A = 0x7BE constant SYS___CSNAP_A (line 1233) | SYS___CSNAP_A = 0x7B8 constant SYS___CTEST_A (line 1234) | SYS___CTEST_A = 0x7B9 constant SYS___CTIME_R_A (line 1235) | SYS___CTIME_R_A = 0x7A2 constant SYS___CTRACE_A (line 1236) | SYS___CTRACE_A = 0x7BA constant SYS___DBM_OPEN_A (line 1237) | SYS___DBM_OPEN_A = 0x7E6 constant SYS___DIRNAME_A (line 1238) | SYS___DIRNAME_A = 0x7DD constant SYS___FABSF_H (line 1239) | SYS___FABSF_H = 0x7FA constant SYS___FABSL_H (line 1240) | SYS___FABSL_H = 0x7FB constant SYS___FABS_H (line 1241) | SYS___FABS_H = 0x7ED constant SYS___FGETWC_A (line 1242) | SYS___FGETWC_A = 0x7AA constant SYS___FGETWS_A (line 1243) | SYS___FGETWS_A = 0x7AD constant SYS___FLOORF_H (line 1244) | SYS___FLOORF_H = 0x7F6 constant SYS___FLOORL_H (line 1245) | SYS___FLOORL_H = 0x7F7 constant SYS___FLOOR_H (line 1246) | SYS___FLOOR_H = 0x7EB constant SYS___FPUTWC_A (line 1247) | SYS___FPUTWC_A = 0x7A5 constant SYS___FPUTWS_A (line 1248) | SYS___FPUTWS_A = 0x7A8 constant SYS___GETTIMEOFDAY_A (line 1249) | SYS___GETTIMEOFDAY_A = 0x7AE constant SYS___GETWCHAR_A (line 1250) | SYS___GETWCHAR_A = 0x7AC constant SYS___GETWC_A (line 1251) | SYS___GETWC_A = 0x7AB constant SYS___GLOB_A (line 1252) | SYS___GLOB_A = 0x7DE constant SYS___GMTIME_A (line 1253) | SYS___GMTIME_A = 0x7AF constant SYS___GMTIME_R_A (line 1254) | SYS___GMTIME_R_A = 0x7B0 constant SYS___INET_PTON_A (line 1255) | SYS___INET_PTON_A = 0x7BC constant SYS___J0_H (line 1256) | SYS___J0_H = 0x7EE constant SYS___J1_H (line 1257) | SYS___J1_H = 0x7EF constant SYS___JN_H (line 1258) | SYS___JN_H = 0x7F0 constant SYS___LOCALTIME_A (line 1259) | SYS___LOCALTIME_A = 0x7B1 constant SYS___LOCALTIME_R_A (line 1260) | SYS___LOCALTIME_R_A = 0x7B2 constant SYS___MALLOC24 (line 1261) | SYS___MALLOC24 = 0x7FC constant SYS___MALLOC31 (line 1262) | SYS___MALLOC31 = 0x7FD constant SYS___MKTIME_A (line 1263) | SYS___MKTIME_A = 0x7B3 constant SYS___MODFF_H (line 1264) | SYS___MODFF_H = 0x7F8 constant SYS___MODFL_H (line 1265) | SYS___MODFL_H = 0x7F9 constant SYS___MODF_H (line 1266) | SYS___MODF_H = 0x7EC constant SYS___OPENDIR_A (line 1267) | SYS___OPENDIR_A = 0x7C2 constant SYS___OSNAME (line 1268) | SYS___OSNAME = 0x7E0 constant SYS___PUTWCHAR_A (line 1269) | SYS___PUTWCHAR_A = 0x7A7 constant SYS___PUTWC_A (line 1270) | SYS___PUTWC_A = 0x7A6 constant SYS___READDIR_A (line 1271) | SYS___READDIR_A = 0x7C3 constant SYS___STRTOLL_A (line 1272) | SYS___STRTOLL_A = 0x7A3 constant SYS___STRTOULL_A (line 1273) | SYS___STRTOULL_A = 0x7A4 constant SYS___SYSLOG_A (line 1274) | SYS___SYSLOG_A = 0x7BD constant SYS___TZZNA (line 1275) | SYS___TZZNA = 0x7B4 constant SYS___UNGETWC_A (line 1276) | SYS___UNGETWC_A = 0x7A9 constant SYS___UTIME_A (line 1277) | SYS___UTIME_A = 0x7A0 constant SYS___VFPRINTF2_A (line 1278) | SYS___VFPRINTF2_A = 0x7E7 constant SYS___VPRINTF2_A (line 1279) | SYS___VPRINTF2_A = 0x7E8 constant SYS___VSPRINTF2_A (line 1280) | SYS___VSPRINTF2_A = 0x7E9 constant SYS___VSWPRNTF2_A (line 1281) | SYS___VSWPRNTF2_A = 0x7BB constant SYS___WCSTOD_A (line 1282) | SYS___WCSTOD_A = 0x7D9 constant SYS___WCSTOL_A (line 1283) | SYS___WCSTOL_A = 0x7DA constant SYS___WCSTOUL_A (line 1284) | SYS___WCSTOUL_A = 0x7DB constant SYS___WCTOB_A (line 1285) | SYS___WCTOB_A = 0x7E5 constant SYS___Y0_H (line 1286) | SYS___Y0_H = 0x7F1 constant SYS___Y1_H (line 1287) | SYS___Y1_H = 0x7F2 constant SYS___YN_H (line 1288) | SYS___YN_H = 0x7F3 constant SYS_____OPENDIR2_A (line 1289) | SYS_____OPENDIR2_A = 0x7BF constant SYS_____OSNAME_A (line 1290) | SYS_____OSNAME_A = 0x7E1 constant SYS_____READDIR2_A (line 1291) | SYS_____READDIR2_A = 0x7C0 constant SYS_DLCLOSE (line 1292) | SYS_DLCLOSE = 0x8DF constant SYS_DLERROR (line 1293) | SYS_DLERROR = 0x8E0 constant SYS_DLOPEN (line 1294) | SYS_DLOPEN = 0x8DD constant SYS_DLSYM (line 1295) | SYS_DLSYM = 0x8DE constant SYS_FLOCKFILE (line 1296) | SYS_FLOCKFILE = 0x8D3 constant SYS_FTRYLOCKFILE (line 1297) | SYS_FTRYLOCKFILE = 0x8D4 constant SYS_FUNLOCKFILE (line 1298) | SYS_FUNLOCKFILE = 0x8D5 constant SYS_GETCHAR_UNLOCKED (line 1299) | SYS_GETCHAR_UNLOCKED = 0x8D7 constant SYS_GETC_UNLOCKED (line 1300) | SYS_GETC_UNLOCKED = 0x8D6 constant SYS_PUTCHAR_UNLOCKED (line 1301) | SYS_PUTCHAR_UNLOCKED = 0x8D9 constant SYS_PUTC_UNLOCKED (line 1302) | SYS_PUTC_UNLOCKED = 0x8D8 constant SYS_SNPRINTF (line 1303) | SYS_SNPRINTF = 0x8DA constant SYS_VSNPRINTF (line 1304) | SYS_VSNPRINTF = 0x8DB constant SYS_WCSCSPN (line 1305) | SYS_WCSCSPN = 0x08B constant SYS_WCSLEN (line 1306) | SYS_WCSLEN = 0x08C constant SYS_WCSNCAT (line 1307) | SYS_WCSNCAT = 0x08D constant SYS_WCSNCMP (line 1308) | SYS_WCSNCMP = 0x08A constant SYS_WCSNCPY (line 1309) | SYS_WCSNCPY = 0x08F constant SYS_WCSSPN (line 1310) | SYS_WCSSPN = 0x08E constant SYS___ABSF_H (line 1311) | SYS___ABSF_H = 0x8E7 constant SYS___ABSL_H (line 1312) | SYS___ABSL_H = 0x8E8 constant SYS___ABS_H (line 1313) | SYS___ABS_H = 0x8E6 constant SYS___ACOSF_H (line 1314) | SYS___ACOSF_H = 0x8EA constant SYS___ACOSH_H (line 1315) | SYS___ACOSH_H = 0x8EC constant SYS___ACOSL_H (line 1316) | SYS___ACOSL_H = 0x8EB constant SYS___ACOS_H (line 1317) | SYS___ACOS_H = 0x8E9 constant SYS___ASINF_H (line 1318) | SYS___ASINF_H = 0x8EE constant SYS___ASINH_H (line 1319) | SYS___ASINH_H = 0x8F0 constant SYS___ASINL_H (line 1320) | SYS___ASINL_H = 0x8EF constant SYS___ASIN_H (line 1321) | SYS___ASIN_H = 0x8ED constant SYS___ATAN2F_H (line 1322) | SYS___ATAN2F_H = 0x8F8 constant SYS___ATAN2L_H (line 1323) | SYS___ATAN2L_H = 0x8F9 constant SYS___ATAN2_H (line 1324) | SYS___ATAN2_H = 0x8F7 constant SYS___ATANF_H (line 1325) | SYS___ATANF_H = 0x8F2 constant SYS___ATANHF_H (line 1326) | SYS___ATANHF_H = 0x8F5 constant SYS___ATANHL_H (line 1327) | SYS___ATANHL_H = 0x8F6 constant SYS___ATANH_H (line 1328) | SYS___ATANH_H = 0x8F4 constant SYS___ATANL_H (line 1329) | SYS___ATANL_H = 0x8F3 constant SYS___ATAN_H (line 1330) | SYS___ATAN_H = 0x8F1 constant SYS___CBRT_H (line 1331) | SYS___CBRT_H = 0x8FA constant SYS___COPYSIGNF_H (line 1332) | SYS___COPYSIGNF_H = 0x8FB constant SYS___COPYSIGNL_H (line 1333) | SYS___COPYSIGNL_H = 0x8FC constant SYS___COSF_H (line 1334) | SYS___COSF_H = 0x8FE constant SYS___COSL_H (line 1335) | SYS___COSL_H = 0x8FF constant SYS___COS_H (line 1336) | SYS___COS_H = 0x8FD constant SYS___DLERROR_A (line 1337) | SYS___DLERROR_A = 0x8D2 constant SYS___DLOPEN_A (line 1338) | SYS___DLOPEN_A = 0x8D0 constant SYS___DLSYM_A (line 1339) | SYS___DLSYM_A = 0x8D1 constant SYS___GETUTXENT_A (line 1340) | SYS___GETUTXENT_A = 0x8C6 constant SYS___GETUTXID_A (line 1341) | SYS___GETUTXID_A = 0x8C7 constant SYS___GETUTXLINE_A (line 1342) | SYS___GETUTXLINE_A = 0x8C8 constant SYS___ITOA (line 1343) | SYS___ITOA = 0x8AA constant SYS___ITOA_A (line 1344) | SYS___ITOA_A = 0x8B0 constant SYS___LE_CONDITION_TOKEN_BUILD (line 1345) | SYS___LE_CONDITION_TOKEN_BUILD = 0x8A5 constant SYS___LE_MSG_ADD_INSERT (line 1346) | SYS___LE_MSG_ADD_INSERT = 0x8A6 constant SYS___LE_MSG_GET (line 1347) | SYS___LE_MSG_GET = 0x8A7 constant SYS___LE_MSG_GET_AND_WRITE (line 1348) | SYS___LE_MSG_GET_AND_WRITE = 0x8A8 constant SYS___LE_MSG_WRITE (line 1349) | SYS___LE_MSG_WRITE = 0x8A9 constant SYS___LLTOA (line 1350) | SYS___LLTOA = 0x8AE constant SYS___LLTOA_A (line 1351) | SYS___LLTOA_A = 0x8B4 constant SYS___LTOA (line 1352) | SYS___LTOA = 0x8AC constant SYS___LTOA_A (line 1353) | SYS___LTOA_A = 0x8B2 constant SYS___PUTCHAR_UNLOCKED_A (line 1354) | SYS___PUTCHAR_UNLOCKED_A = 0x8CC constant SYS___PUTC_UNLOCKED_A (line 1355) | SYS___PUTC_UNLOCKED_A = 0x8CB constant SYS___PUTUTXLINE_A (line 1356) | SYS___PUTUTXLINE_A = 0x8C9 constant SYS___RESET_EXCEPTION_HANDLER (line 1357) | SYS___RESET_EXCEPTION_HANDLER = 0x8E3 constant SYS___REXEC_A (line 1358) | SYS___REXEC_A = 0x8C4 constant SYS___REXEC_AF_A (line 1359) | SYS___REXEC_AF_A = 0x8C5 constant SYS___SET_EXCEPTION_HANDLER (line 1360) | SYS___SET_EXCEPTION_HANDLER = 0x8E2 constant SYS___SNPRINTF_A (line 1361) | SYS___SNPRINTF_A = 0x8CD constant SYS___SUPERKILL (line 1362) | SYS___SUPERKILL = 0x8A4 constant SYS___TCGETATTR_A (line 1363) | SYS___TCGETATTR_A = 0x8A1 constant SYS___TCSETATTR_A (line 1364) | SYS___TCSETATTR_A = 0x8A2 constant SYS___ULLTOA (line 1365) | SYS___ULLTOA = 0x8AF constant SYS___ULLTOA_A (line 1366) | SYS___ULLTOA_A = 0x8B5 constant SYS___ULTOA (line 1367) | SYS___ULTOA = 0x8AD constant SYS___ULTOA_A (line 1368) | SYS___ULTOA_A = 0x8B3 constant SYS___UTOA (line 1369) | SYS___UTOA = 0x8AB constant SYS___UTOA_A (line 1370) | SYS___UTOA_A = 0x8B1 constant SYS___VHM_EVENT (line 1371) | SYS___VHM_EVENT = 0x8E4 constant SYS___VSNPRINTF_A (line 1372) | SYS___VSNPRINTF_A = 0x8CE constant SYS_____GETENV_A (line 1373) | SYS_____GETENV_A = 0x8C3 constant SYS_____UTMPXNAME_A (line 1374) | SYS_____UTMPXNAME_A = 0x8CA constant SYS_CACOSH (line 1375) | SYS_CACOSH = 0x9A0 constant SYS_CACOSHF (line 1376) | SYS_CACOSHF = 0x9A3 constant SYS_CACOSHL (line 1377) | SYS_CACOSHL = 0x9A6 constant SYS_CARG (line 1378) | SYS_CARG = 0x9A9 constant SYS_CARGF (line 1379) | SYS_CARGF = 0x9AC constant SYS_CARGL (line 1380) | SYS_CARGL = 0x9AF constant SYS_CASIN (line 1381) | SYS_CASIN = 0x9B2 constant SYS_CASINF (line 1382) | SYS_CASINF = 0x9B5 constant SYS_CASINH (line 1383) | SYS_CASINH = 0x9BB constant SYS_CASINHF (line 1384) | SYS_CASINHF = 0x9BE constant SYS_CASINHL (line 1385) | SYS_CASINHL = 0x9C1 constant SYS_CASINL (line 1386) | SYS_CASINL = 0x9B8 constant SYS_CATAN (line 1387) | SYS_CATAN = 0x9C4 constant SYS_CATANF (line 1388) | SYS_CATANF = 0x9C7 constant SYS_CATANH (line 1389) | SYS_CATANH = 0x9CD constant SYS_CATANHF (line 1390) | SYS_CATANHF = 0x9D0 constant SYS_CATANHL (line 1391) | SYS_CATANHL = 0x9D3 constant SYS_CATANL (line 1392) | SYS_CATANL = 0x9CA constant SYS_CCOS (line 1393) | SYS_CCOS = 0x9D6 constant SYS_CCOSF (line 1394) | SYS_CCOSF = 0x9D9 constant SYS_CCOSH (line 1395) | SYS_CCOSH = 0x9DF constant SYS_CCOSHF (line 1396) | SYS_CCOSHF = 0x9E2 constant SYS_CCOSHL (line 1397) | SYS_CCOSHL = 0x9E5 constant SYS_CCOSL (line 1398) | SYS_CCOSL = 0x9DC constant SYS_CEXP (line 1399) | SYS_CEXP = 0x9E8 constant SYS_CEXPF (line 1400) | SYS_CEXPF = 0x9EB constant SYS_CEXPL (line 1401) | SYS_CEXPL = 0x9EE constant SYS_CIMAG (line 1402) | SYS_CIMAG = 0x9F1 constant SYS_CIMAGF (line 1403) | SYS_CIMAGF = 0x9F4 constant SYS_CIMAGL (line 1404) | SYS_CIMAGL = 0x9F7 constant SYS_CLOGF (line 1405) | SYS_CLOGF = 0x9FD constant SYS_MEMCHR (line 1406) | SYS_MEMCHR = 0x09B constant SYS_MEMCMP (line 1407) | SYS_MEMCMP = 0x09A constant SYS_STRCOLL (line 1408) | SYS_STRCOLL = 0x09C constant SYS_STRNCMP (line 1409) | SYS_STRNCMP = 0x09D constant SYS_STRRCHR (line 1410) | SYS_STRRCHR = 0x09F constant SYS_STRXFRM (line 1411) | SYS_STRXFRM = 0x09E constant SYS___CACOSHF_B (line 1412) | SYS___CACOSHF_B = 0x9A4 constant SYS___CACOSHF_H (line 1413) | SYS___CACOSHF_H = 0x9A5 constant SYS___CACOSHL_B (line 1414) | SYS___CACOSHL_B = 0x9A7 constant SYS___CACOSHL_H (line 1415) | SYS___CACOSHL_H = 0x9A8 constant SYS___CACOSH_B (line 1416) | SYS___CACOSH_B = 0x9A1 constant SYS___CACOSH_H (line 1417) | SYS___CACOSH_H = 0x9A2 constant SYS___CARGF_B (line 1418) | SYS___CARGF_B = 0x9AD constant SYS___CARGF_H (line 1419) | SYS___CARGF_H = 0x9AE constant SYS___CARGL_B (line 1420) | SYS___CARGL_B = 0x9B0 constant SYS___CARGL_H (line 1421) | SYS___CARGL_H = 0x9B1 constant SYS___CARG_B (line 1422) | SYS___CARG_B = 0x9AA constant SYS___CARG_H (line 1423) | SYS___CARG_H = 0x9AB constant SYS___CASINF_B (line 1424) | SYS___CASINF_B = 0x9B6 constant SYS___CASINF_H (line 1425) | SYS___CASINF_H = 0x9B7 constant SYS___CASINHF_B (line 1426) | SYS___CASINHF_B = 0x9BF constant SYS___CASINHF_H (line 1427) | SYS___CASINHF_H = 0x9C0 constant SYS___CASINHL_B (line 1428) | SYS___CASINHL_B = 0x9C2 constant SYS___CASINHL_H (line 1429) | SYS___CASINHL_H = 0x9C3 constant SYS___CASINH_B (line 1430) | SYS___CASINH_B = 0x9BC constant SYS___CASINH_H (line 1431) | SYS___CASINH_H = 0x9BD constant SYS___CASINL_B (line 1432) | SYS___CASINL_B = 0x9B9 constant SYS___CASINL_H (line 1433) | SYS___CASINL_H = 0x9BA constant SYS___CASIN_B (line 1434) | SYS___CASIN_B = 0x9B3 constant SYS___CASIN_H (line 1435) | SYS___CASIN_H = 0x9B4 constant SYS___CATANF_B (line 1436) | SYS___CATANF_B = 0x9C8 constant SYS___CATANF_H (line 1437) | SYS___CATANF_H = 0x9C9 constant SYS___CATANHF_B (line 1438) | SYS___CATANHF_B = 0x9D1 constant SYS___CATANHF_H (line 1439) | SYS___CATANHF_H = 0x9D2 constant SYS___CATANHL_B (line 1440) | SYS___CATANHL_B = 0x9D4 constant SYS___CATANHL_H (line 1441) | SYS___CATANHL_H = 0x9D5 constant SYS___CATANH_B (line 1442) | SYS___CATANH_B = 0x9CE constant SYS___CATANH_H (line 1443) | SYS___CATANH_H = 0x9CF constant SYS___CATANL_B (line 1444) | SYS___CATANL_B = 0x9CB constant SYS___CATANL_H (line 1445) | SYS___CATANL_H = 0x9CC constant SYS___CATAN_B (line 1446) | SYS___CATAN_B = 0x9C5 constant SYS___CATAN_H (line 1447) | SYS___CATAN_H = 0x9C6 constant SYS___CCOSF_B (line 1448) | SYS___CCOSF_B = 0x9DA constant SYS___CCOSF_H (line 1449) | SYS___CCOSF_H = 0x9DB constant SYS___CCOSHF_B (line 1450) | SYS___CCOSHF_B = 0x9E3 constant SYS___CCOSHF_H (line 1451) | SYS___CCOSHF_H = 0x9E4 constant SYS___CCOSHL_B (line 1452) | SYS___CCOSHL_B = 0x9E6 constant SYS___CCOSHL_H (line 1453) | SYS___CCOSHL_H = 0x9E7 constant SYS___CCOSH_B (line 1454) | SYS___CCOSH_B = 0x9E0 constant SYS___CCOSH_H (line 1455) | SYS___CCOSH_H = 0x9E1 constant SYS___CCOSL_B (line 1456) | SYS___CCOSL_B = 0x9DD constant SYS___CCOSL_H (line 1457) | SYS___CCOSL_H = 0x9DE constant SYS___CCOS_B (line 1458) | SYS___CCOS_B = 0x9D7 constant SYS___CCOS_H (line 1459) | SYS___CCOS_H = 0x9D8 constant SYS___CEXPF_B (line 1460) | SYS___CEXPF_B = 0x9EC constant SYS___CEXPF_H (line 1461) | SYS___CEXPF_H = 0x9ED constant SYS___CEXPL_B (line 1462) | SYS___CEXPL_B = 0x9EF constant SYS___CEXPL_H (line 1463) | SYS___CEXPL_H = 0x9F0 constant SYS___CEXP_B (line 1464) | SYS___CEXP_B = 0x9E9 constant SYS___CEXP_H (line 1465) | SYS___CEXP_H = 0x9EA constant SYS___CIMAGF_B (line 1466) | SYS___CIMAGF_B = 0x9F5 constant SYS___CIMAGF_H (line 1467) | SYS___CIMAGF_H = 0x9F6 constant SYS___CIMAGL_B (line 1468) | SYS___CIMAGL_B = 0x9F8 constant SYS___CIMAGL_H (line 1469) | SYS___CIMAGL_H = 0x9F9 constant SYS___CIMAG_B (line 1470) | SYS___CIMAG_B = 0x9F2 constant SYS___CIMAG_H (line 1471) | SYS___CIMAG_H = 0x9F3 constant SYS___CLOG (line 1472) | SYS___CLOG = 0x9FA constant SYS___CLOGF_B (line 1473) | SYS___CLOGF_B = 0x9FE constant SYS___CLOGF_H (line 1474) | SYS___CLOGF_H = 0x9FF constant SYS___CLOG_B (line 1475) | SYS___CLOG_B = 0x9FB constant SYS___CLOG_H (line 1476) | SYS___CLOG_H = 0x9FC constant SYS_ISWCTYPE (line 1477) | SYS_ISWCTYPE = 0x10C constant SYS_ISWXDIGI (line 1478) | SYS_ISWXDIGI = 0x10A constant SYS_ISWXDIGIT (line 1479) | SYS_ISWXDIGIT = 0x10A constant SYS_MBSINIT (line 1480) | SYS_MBSINIT = 0x10F constant SYS_TOWLOWER (line 1481) | SYS_TOWLOWER = 0x10D constant SYS_TOWUPPER (line 1482) | SYS_TOWUPPER = 0x10E constant SYS_WCTYPE (line 1483) | SYS_WCTYPE = 0x10B constant SYS_WCSSTR (line 1484) | SYS_WCSSTR = 0x11B constant SYS___RPMTCH (line 1485) | SYS___RPMTCH = 0x11A constant SYS_WCSTOD (line 1486) | SYS_WCSTOD = 0x12E constant SYS_WCSTOK (line 1487) | SYS_WCSTOK = 0x12C constant SYS_WCSTOL (line 1488) | SYS_WCSTOL = 0x12D constant SYS_WCSTOUL (line 1489) | SYS_WCSTOUL = 0x12F constant SYS_FGETWC (line 1490) | SYS_FGETWC = 0x13C constant SYS_FGETWS (line 1491) | SYS_FGETWS = 0x13D constant SYS_FPUTWC (line 1492) | SYS_FPUTWC = 0x13E constant SYS_FPUTWS (line 1493) | SYS_FPUTWS = 0x13F constant SYS_REGERROR (line 1494) | SYS_REGERROR = 0x13B constant SYS_REGFREE (line 1495) | SYS_REGFREE = 0x13A constant SYS_COLLEQUIV (line 1496) | SYS_COLLEQUIV = 0x14F constant SYS_COLLTOSTR (line 1497) | SYS_COLLTOSTR = 0x14E constant SYS_ISMCCOLLEL (line 1498) | SYS_ISMCCOLLEL = 0x14C constant SYS_STRTOCOLL (line 1499) | SYS_STRTOCOLL = 0x14D constant SYS_DLLFREE (line 1500) | SYS_DLLFREE = 0x16F constant SYS_DLLQUERYFN (line 1501) | SYS_DLLQUERYFN = 0x16D constant SYS_DLLQUERYVAR (line 1502) | SYS_DLLQUERYVAR = 0x16E constant SYS_GETMCCOLL (line 1503) | SYS_GETMCCOLL = 0x16A constant SYS_GETWMCCOLL (line 1504) | SYS_GETWMCCOLL = 0x16B constant SYS___ERR2AD (line 1505) | SYS___ERR2AD = 0x16C constant SYS_CFSETOSPEED (line 1506) | SYS_CFSETOSPEED = 0x17A constant SYS_CHDIR (line 1507) | SYS_CHDIR = 0x17B constant SYS_CHMOD (line 1508) | SYS_CHMOD = 0x17C constant SYS_CHOWN (line 1509) | SYS_CHOWN = 0x17D constant SYS_CLOSE (line 1510) | SYS_CLOSE = 0x17E constant SYS_CLOSEDIR (line 1511) | SYS_CLOSEDIR = 0x17F constant SYS_LOG (line 1512) | SYS_LOG = 0x017 constant SYS_COSH (line 1513) | SYS_COSH = 0x018 constant SYS_FCHMOD (line 1514) | SYS_FCHMOD = 0x18A constant SYS_FCHOWN (line 1515) | SYS_FCHOWN = 0x18B constant SYS_FCNTL (line 1516) | SYS_FCNTL = 0x18C constant SYS_FILENO (line 1517) | SYS_FILENO = 0x18D constant SYS_FORK (line 1518) | SYS_FORK = 0x18E constant SYS_FPATHCONF (line 1519) | SYS_FPATHCONF = 0x18F constant SYS_GETLOGIN (line 1520) | SYS_GETLOGIN = 0x19A constant SYS_GETPGRP (line 1521) | SYS_GETPGRP = 0x19C constant SYS_GETPID (line 1522) | SYS_GETPID = 0x19D constant SYS_GETPPID (line 1523) | SYS_GETPPID = 0x19E constant SYS_GETPWNAM (line 1524) | SYS_GETPWNAM = 0x19F constant SYS_TANH (line 1525) | SYS_TANH = 0x019 constant SYS_W_GETMNTENT (line 1526) | SYS_W_GETMNTENT = 0x19B constant SYS_POW (line 1527) | SYS_POW = 0x020 constant SYS_PTHREAD_SELF (line 1528) | SYS_PTHREAD_SELF = 0x20A constant SYS_PTHREAD_SETINTR (line 1529) | SYS_PTHREAD_SETINTR = 0x20B constant SYS_PTHREAD_SETINTRTYPE (line 1530) | SYS_PTHREAD_SETINTRTYPE = 0x20C constant SYS_PTHREAD_SETSPECIFIC (line 1531) | SYS_PTHREAD_SETSPECIFIC = 0x20D constant SYS_PTHREAD_TESTINTR (line 1532) | SYS_PTHREAD_TESTINTR = 0x20E constant SYS_PTHREAD_YIELD (line 1533) | SYS_PTHREAD_YIELD = 0x20F constant SYS_SQRT (line 1534) | SYS_SQRT = 0x021 constant SYS_FLOOR (line 1535) | SYS_FLOOR = 0x022 constant SYS_J1 (line 1536) | SYS_J1 = 0x023 constant SYS_WCSPBRK (line 1537) | SYS_WCSPBRK = 0x23F constant SYS_BSEARCH (line 1538) | SYS_BSEARCH = 0x24C constant SYS_FABS (line 1539) | SYS_FABS = 0x024 constant SYS_GETENV (line 1540) | SYS_GETENV = 0x24A constant SYS_LDIV (line 1541) | SYS_LDIV = 0x24D constant SYS_SYSTEM (line 1542) | SYS_SYSTEM = 0x24B constant SYS_FMOD (line 1543) | SYS_FMOD = 0x025 constant SYS___RETHROW (line 1544) | SYS___RETHROW = 0x25F constant SYS___THROW (line 1545) | SYS___THROW = 0x25E constant SYS_J0 (line 1546) | SYS_J0 = 0x026 constant SYS_PUTENV (line 1547) | SYS_PUTENV = 0x26A constant SYS___GETENV (line 1548) | SYS___GETENV = 0x26F constant SYS_SEMCTL (line 1549) | SYS_SEMCTL = 0x27A constant SYS_SEMGET (line 1550) | SYS_SEMGET = 0x27B constant SYS_SEMOP (line 1551) | SYS_SEMOP = 0x27C constant SYS_SHMAT (line 1552) | SYS_SHMAT = 0x27D constant SYS_SHMCTL (line 1553) | SYS_SHMCTL = 0x27E constant SYS_SHMDT (line 1554) | SYS_SHMDT = 0x27F constant SYS_YN (line 1555) | SYS_YN = 0x027 constant SYS_JN (line 1556) | SYS_JN = 0x028 constant SYS_SIGALTSTACK (line 1557) | SYS_SIGALTSTACK = 0x28A constant SYS_SIGHOLD (line 1558) | SYS_SIGHOLD = 0x28B constant SYS_SIGIGNORE (line 1559) | SYS_SIGIGNORE = 0x28C constant SYS_SIGINTERRUPT (line 1560) | SYS_SIGINTERRUPT = 0x28D constant SYS_SIGPAUSE (line 1561) | SYS_SIGPAUSE = 0x28E constant SYS_SIGRELSE (line 1562) | SYS_SIGRELSE = 0x28F constant SYS_GETOPT (line 1563) | SYS_GETOPT = 0x29A constant SYS_GETSUBOPT (line 1564) | SYS_GETSUBOPT = 0x29D constant SYS_LCHOWN (line 1565) | SYS_LCHOWN = 0x29B constant SYS_SETPGRP (line 1566) | SYS_SETPGRP = 0x29E constant SYS_TRUNCATE (line 1567) | SYS_TRUNCATE = 0x29C constant SYS_Y0 (line 1568) | SYS_Y0 = 0x029 constant SYS___GDERR (line 1569) | SYS___GDERR = 0x29F constant SYS_ISALPHA (line 1570) | SYS_ISALPHA = 0x030 constant SYS_VFORK (line 1571) | SYS_VFORK = 0x30F constant SYS__LONGJMP (line 1572) | SYS__LONGJMP = 0x30D constant SYS__SETJMP (line 1573) | SYS__SETJMP = 0x30E constant SYS_GLOB (line 1574) | SYS_GLOB = 0x31A constant SYS_GLOBFREE (line 1575) | SYS_GLOBFREE = 0x31B constant SYS_ISALNUM (line 1576) | SYS_ISALNUM = 0x031 constant SYS_PUTW (line 1577) | SYS_PUTW = 0x31C constant SYS_SEEKDIR (line 1578) | SYS_SEEKDIR = 0x31D constant SYS_TELLDIR (line 1579) | SYS_TELLDIR = 0x31E constant SYS_TEMPNAM (line 1580) | SYS_TEMPNAM = 0x31F constant SYS_GETTIMEOFDAY_R (line 1581) | SYS_GETTIMEOFDAY_R = 0x32E constant SYS_ISLOWER (line 1582) | SYS_ISLOWER = 0x032 constant SYS_LGAMMA (line 1583) | SYS_LGAMMA = 0x32C constant SYS_REMAINDER (line 1584) | SYS_REMAINDER = 0x32A constant SYS_SCALB (line 1585) | SYS_SCALB = 0x32B constant SYS_SYNC (line 1586) | SYS_SYNC = 0x32F constant SYS_TTYSLOT (line 1587) | SYS_TTYSLOT = 0x32D constant SYS_ENDPROTOENT (line 1588) | SYS_ENDPROTOENT = 0x33A constant SYS_ENDSERVENT (line 1589) | SYS_ENDSERVENT = 0x33B constant SYS_GETHOSTBYADDR (line 1590) | SYS_GETHOSTBYADDR = 0x33D constant SYS_GETHOSTBYADDR_R (line 1591) | SYS_GETHOSTBYADDR_R = 0x33C constant SYS_GETHOSTBYNAME (line 1592) | SYS_GETHOSTBYNAME = 0x33F constant SYS_GETHOSTBYNAME_R (line 1593) | SYS_GETHOSTBYNAME_R = 0x33E constant SYS_ISCNTRL (line 1594) | SYS_ISCNTRL = 0x033 constant SYS_GETSERVBYNAME (line 1595) | SYS_GETSERVBYNAME = 0x34A constant SYS_GETSERVBYPORT (line 1596) | SYS_GETSERVBYPORT = 0x34B constant SYS_GETSERVENT (line 1597) | SYS_GETSERVENT = 0x34C constant SYS_GETSOCKNAME (line 1598) | SYS_GETSOCKNAME = 0x34D constant SYS_GETSOCKOPT (line 1599) | SYS_GETSOCKOPT = 0x34E constant SYS_INET_ADDR (line 1600) | SYS_INET_ADDR = 0x34F constant SYS_ISDIGIT (line 1601) | SYS_ISDIGIT = 0x034 constant SYS_ISGRAPH (line 1602) | SYS_ISGRAPH = 0x035 constant SYS_SELECT (line 1603) | SYS_SELECT = 0x35B constant SYS_SELECTEX (line 1604) | SYS_SELECTEX = 0x35C constant SYS_SEND (line 1605) | SYS_SEND = 0x35D constant SYS_SENDTO (line 1606) | SYS_SENDTO = 0x35F constant SYS_CHROOT (line 1607) | SYS_CHROOT = 0x36A constant SYS_ISNAN (line 1608) | SYS_ISNAN = 0x36D constant SYS_ISUPPER (line 1609) | SYS_ISUPPER = 0x036 constant SYS_ULIMIT (line 1610) | SYS_ULIMIT = 0x36C constant SYS_UTIMES (line 1611) | SYS_UTIMES = 0x36E constant SYS_W_STATVFS (line 1612) | SYS_W_STATVFS = 0x36B constant SYS___H_ERRNO (line 1613) | SYS___H_ERRNO = 0x36F constant SYS_GRANTPT (line 1614) | SYS_GRANTPT = 0x37A constant SYS_ISPRINT (line 1615) | SYS_ISPRINT = 0x037 constant SYS_TCGETSID (line 1616) | SYS_TCGETSID = 0x37C constant SYS_UNLOCKPT (line 1617) | SYS_UNLOCKPT = 0x37B constant SYS___TCGETCP (line 1618) | SYS___TCGETCP = 0x37D constant SYS___TCSETCP (line 1619) | SYS___TCSETCP = 0x37E constant SYS___TCSETTABLES (line 1620) | SYS___TCSETTABLES = 0x37F constant SYS_ISPUNCT (line 1621) | SYS_ISPUNCT = 0x038 constant SYS_NLIST (line 1622) | SYS_NLIST = 0x38C constant SYS___IPDBCS (line 1623) | SYS___IPDBCS = 0x38D constant SYS___IPDSPX (line 1624) | SYS___IPDSPX = 0x38E constant SYS___IPMSGC (line 1625) | SYS___IPMSGC = 0x38F constant SYS___STHOSTENT (line 1626) | SYS___STHOSTENT = 0x38B constant SYS___STSERVENT (line 1627) | SYS___STSERVENT = 0x38A constant SYS_ISSPACE (line 1628) | SYS_ISSPACE = 0x039 constant SYS_COS (line 1629) | SYS_COS = 0x040 constant SYS_T_ALLOC (line 1630) | SYS_T_ALLOC = 0x40A constant SYS_T_BIND (line 1631) | SYS_T_BIND = 0x40B constant SYS_T_CLOSE (line 1632) | SYS_T_CLOSE = 0x40C constant SYS_T_CONNECT (line 1633) | SYS_T_CONNECT = 0x40D constant SYS_T_ERROR (line 1634) | SYS_T_ERROR = 0x40E constant SYS_T_FREE (line 1635) | SYS_T_FREE = 0x40F constant SYS_TAN (line 1636) | SYS_TAN = 0x041 constant SYS_T_RCVREL (line 1637) | SYS_T_RCVREL = 0x41A constant SYS_T_RCVUDATA (line 1638) | SYS_T_RCVUDATA = 0x41B constant SYS_T_RCVUDERR (line 1639) | SYS_T_RCVUDERR = 0x41C constant SYS_T_SND (line 1640) | SYS_T_SND = 0x41D constant SYS_T_SNDDIS (line 1641) | SYS_T_SNDDIS = 0x41E constant SYS_T_SNDREL (line 1642) | SYS_T_SNDREL = 0x41F constant SYS_GETPMSG (line 1643) | SYS_GETPMSG = 0x42A constant SYS_ISASTREAM (line 1644) | SYS_ISASTREAM = 0x42B constant SYS_PUTMSG (line 1645) | SYS_PUTMSG = 0x42C constant SYS_PUTPMSG (line 1646) | SYS_PUTPMSG = 0x42D constant SYS_SINH (line 1647) | SYS_SINH = 0x042 constant SYS___ISPOSIXON (line 1648) | SYS___ISPOSIXON = 0x42E constant SYS___OPENMVSREL (line 1649) | SYS___OPENMVSREL = 0x42F constant SYS_ACOS (line 1650) | SYS_ACOS = 0x043 constant SYS_ATAN (line 1651) | SYS_ATAN = 0x044 constant SYS_ATAN2 (line 1652) | SYS_ATAN2 = 0x045 constant SYS_FTELL (line 1653) | SYS_FTELL = 0x046 constant SYS_FGETPOS (line 1654) | SYS_FGETPOS = 0x047 constant SYS_SOCK_DEBUG (line 1655) | SYS_SOCK_DEBUG = 0x47A constant SYS_SOCK_DO_TESTSTOR (line 1656) | SYS_SOCK_DO_TESTSTOR = 0x47D constant SYS_TAKESOCKET (line 1657) | SYS_TAKESOCKET = 0x47E constant SYS___SERVER_INIT (line 1658) | SYS___SERVER_INIT = 0x47F constant SYS_FSEEK (line 1659) | SYS_FSEEK = 0x048 constant SYS___IPHOST (line 1660) | SYS___IPHOST = 0x48B constant SYS___IPNODE (line 1661) | SYS___IPNODE = 0x48C constant SYS___SERVER_CLASSIFY_CREATE (line 1662) | SYS___SERVER_CLASSIFY_CREATE = 0x48D constant SYS___SERVER_CLASSIFY_DESTROY (line 1663) | SYS___SERVER_CLASSIFY_DESTROY = 0x48E constant SYS___SERVER_CLASSIFY_RESET (line 1664) | SYS___SERVER_CLASSIFY_RESET = 0x48F constant SYS___SMF_RECORD (line 1665) | SYS___SMF_RECORD = 0x48A constant SYS_FSETPOS (line 1666) | SYS_FSETPOS = 0x049 constant SYS___FNWSA (line 1667) | SYS___FNWSA = 0x49B constant SYS___SPAWN2 (line 1668) | SYS___SPAWN2 = 0x49D constant SYS___SPAWNP2 (line 1669) | SYS___SPAWNP2 = 0x49E constant SYS_ATOF (line 1670) | SYS_ATOF = 0x050 constant SYS_PTHREAD_MUTEXATTR_GETPSHARED (line 1671) | SYS_PTHREAD_MUTEXATTR_GETPSHARED = 0x50A constant SYS_PTHREAD_MUTEXATTR_SETPSHARED (line 1672) | SYS_PTHREAD_MUTEXATTR_SETPSHARED = 0x50B constant SYS_PTHREAD_RWLOCK_DESTROY (line 1673) | SYS_PTHREAD_RWLOCK_DESTROY = 0x50C constant SYS_PTHREAD_RWLOCK_INIT (line 1674) | SYS_PTHREAD_RWLOCK_INIT = 0x50D constant SYS_PTHREAD_RWLOCK_RDLOCK (line 1675) | SYS_PTHREAD_RWLOCK_RDLOCK = 0x50E constant SYS_PTHREAD_RWLOCK_TRYRDLOCK (line 1676) | SYS_PTHREAD_RWLOCK_TRYRDLOCK = 0x50F constant SYS_ATOI (line 1677) | SYS_ATOI = 0x051 constant SYS___FP_CLASS (line 1678) | SYS___FP_CLASS = 0x51D constant SYS___FP_CLR_FLAG (line 1679) | SYS___FP_CLR_FLAG = 0x51A constant SYS___FP_FINITE (line 1680) | SYS___FP_FINITE = 0x51E constant SYS___FP_ISNAN (line 1681) | SYS___FP_ISNAN = 0x51F constant SYS___FP_RAISE_XCP (line 1682) | SYS___FP_RAISE_XCP = 0x51C constant SYS___FP_READ_FLAG (line 1683) | SYS___FP_READ_FLAG = 0x51B constant SYS_RAND (line 1684) | SYS_RAND = 0x052 constant SYS_SIGTIMEDWAIT (line 1685) | SYS_SIGTIMEDWAIT = 0x52D constant SYS_SIGWAITINFO (line 1686) | SYS_SIGWAITINFO = 0x52E constant SYS___CHKBFP (line 1687) | SYS___CHKBFP = 0x52F constant SYS___FPC_RS (line 1688) | SYS___FPC_RS = 0x52C constant SYS___FPC_RW (line 1689) | SYS___FPC_RW = 0x52A constant SYS___FPC_SM (line 1690) | SYS___FPC_SM = 0x52B constant SYS_STRTOD (line 1691) | SYS_STRTOD = 0x053 constant SYS_STRTOL (line 1692) | SYS_STRTOL = 0x054 constant SYS_STRTOUL (line 1693) | SYS_STRTOUL = 0x055 constant SYS_MALLOC (line 1694) | SYS_MALLOC = 0x056 constant SYS_SRAND (line 1695) | SYS_SRAND = 0x057 constant SYS_CALLOC (line 1696) | SYS_CALLOC = 0x058 constant SYS_FREE (line 1697) | SYS_FREE = 0x059 constant SYS___OSENV (line 1698) | SYS___OSENV = 0x59F constant SYS___W_PIOCTL (line 1699) | SYS___W_PIOCTL = 0x59E constant SYS_LONGJMP (line 1700) | SYS_LONGJMP = 0x060 constant SYS___FLOORF_B (line 1701) | SYS___FLOORF_B = 0x60A constant SYS___FLOORL_B (line 1702) | SYS___FLOORL_B = 0x60B constant SYS___FREXPF_B (line 1703) | SYS___FREXPF_B = 0x60C constant SYS___FREXPL_B (line 1704) | SYS___FREXPL_B = 0x60D constant SYS___LDEXPF_B (line 1705) | SYS___LDEXPF_B = 0x60E constant SYS___LDEXPL_B (line 1706) | SYS___LDEXPL_B = 0x60F constant SYS_SIGNAL (line 1707) | SYS_SIGNAL = 0x061 constant SYS___ATAN2F_B (line 1708) | SYS___ATAN2F_B = 0x61A constant SYS___ATAN2L_B (line 1709) | SYS___ATAN2L_B = 0x61B constant SYS___COSHF_B (line 1710) | SYS___COSHF_B = 0x61C constant SYS___COSHL_B (line 1711) | SYS___COSHL_B = 0x61D constant SYS___EXPF_B (line 1712) | SYS___EXPF_B = 0x61E constant SYS___EXPL_B (line 1713) | SYS___EXPL_B = 0x61F constant SYS_TMPNAM (line 1714) | SYS_TMPNAM = 0x062 constant SYS___ABSF_B (line 1715) | SYS___ABSF_B = 0x62A constant SYS___ABSL_B (line 1716) | SYS___ABSL_B = 0x62C constant SYS___ABS_B (line 1717) | SYS___ABS_B = 0x62B constant SYS___FMODF_B (line 1718) | SYS___FMODF_B = 0x62D constant SYS___FMODL_B (line 1719) | SYS___FMODL_B = 0x62E constant SYS___MODFF_B (line 1720) | SYS___MODFF_B = 0x62F constant SYS_ATANL (line 1721) | SYS_ATANL = 0x63A constant SYS_CEILF (line 1722) | SYS_CEILF = 0x63B constant SYS_CEILL (line 1723) | SYS_CEILL = 0x63C constant SYS_COSF (line 1724) | SYS_COSF = 0x63D constant SYS_COSHF (line 1725) | SYS_COSHF = 0x63F constant SYS_COSL (line 1726) | SYS_COSL = 0x63E constant SYS_REMOVE (line 1727) | SYS_REMOVE = 0x063 constant SYS_POWL (line 1728) | SYS_POWL = 0x64A constant SYS_RENAME (line 1729) | SYS_RENAME = 0x064 constant SYS_SINF (line 1730) | SYS_SINF = 0x64B constant SYS_SINHF (line 1731) | SYS_SINHF = 0x64F constant SYS_SINL (line 1732) | SYS_SINL = 0x64C constant SYS_SQRTF (line 1733) | SYS_SQRTF = 0x64D constant SYS_SQRTL (line 1734) | SYS_SQRTL = 0x64E constant SYS_BTOWC (line 1735) | SYS_BTOWC = 0x65F constant SYS_FREXPL (line 1736) | SYS_FREXPL = 0x65A constant SYS_LDEXPF (line 1737) | SYS_LDEXPF = 0x65B constant SYS_LDEXPL (line 1738) | SYS_LDEXPL = 0x65C constant SYS_MODFF (line 1739) | SYS_MODFF = 0x65D constant SYS_MODFL (line 1740) | SYS_MODFL = 0x65E constant SYS_TMPFILE (line 1741) | SYS_TMPFILE = 0x065 constant SYS_FREOPEN (line 1742) | SYS_FREOPEN = 0x066 constant SYS___CHARMAP_INIT_A (line 1743) | SYS___CHARMAP_INIT_A = 0x66E constant SYS___GETHOSTBYADDR_R_A (line 1744) | SYS___GETHOSTBYADDR_R_A = 0x66C constant SYS___GETHOSTBYNAME_A (line 1745) | SYS___GETHOSTBYNAME_A = 0x66A constant SYS___GETHOSTBYNAME_R_A (line 1746) | SYS___GETHOSTBYNAME_R_A = 0x66D constant SYS___MBLEN_A (line 1747) | SYS___MBLEN_A = 0x66F constant SYS___RES_INIT_A (line 1748) | SYS___RES_INIT_A = 0x66B constant SYS_FCLOSE (line 1749) | SYS_FCLOSE = 0x067 constant SYS___GETGRGID_R_A (line 1750) | SYS___GETGRGID_R_A = 0x67D constant SYS___WCSTOMBS_A (line 1751) | SYS___WCSTOMBS_A = 0x67A constant SYS___WCSTOMBS_STD_A (line 1752) | SYS___WCSTOMBS_STD_A = 0x67B constant SYS___WCSWIDTH_A (line 1753) | SYS___WCSWIDTH_A = 0x67C constant SYS___WCSWIDTH_ASIA (line 1754) | SYS___WCSWIDTH_ASIA = 0x67F constant SYS___WCSWIDTH_STD_A (line 1755) | SYS___WCSWIDTH_STD_A = 0x67E constant SYS_FFLUSH (line 1756) | SYS_FFLUSH = 0x068 constant SYS___GETLOGIN_R_A (line 1757) | SYS___GETLOGIN_R_A = 0x68E constant SYS___GETPWNAM_R_A (line 1758) | SYS___GETPWNAM_R_A = 0x68C constant SYS___GETPWUID_R_A (line 1759) | SYS___GETPWUID_R_A = 0x68D constant SYS___TTYNAME_R_A (line 1760) | SYS___TTYNAME_R_A = 0x68F constant SYS___WCWIDTH_ASIA (line 1761) | SYS___WCWIDTH_ASIA = 0x68B constant SYS___WCWIDTH_STD_A (line 1762) | SYS___WCWIDTH_STD_A = 0x68A constant SYS_FOPEN (line 1763) | SYS_FOPEN = 0x069 constant SYS___REGEXEC_A (line 1764) | SYS___REGEXEC_A = 0x69A constant SYS___REGEXEC_STD_A (line 1765) | SYS___REGEXEC_STD_A = 0x69B constant SYS___REGFREE_A (line 1766) | SYS___REGFREE_A = 0x69C constant SYS___REGFREE_STD_A (line 1767) | SYS___REGFREE_STD_A = 0x69D constant SYS___STRCOLL_A (line 1768) | SYS___STRCOLL_A = 0x69E constant SYS___STRCOLL_C_A (line 1769) | SYS___STRCOLL_C_A = 0x69F constant SYS_SCANF (line 1770) | SYS_SCANF = 0x070 constant SYS___A64L_A (line 1771) | SYS___A64L_A = 0x70C constant SYS___ECVT_A (line 1772) | SYS___ECVT_A = 0x70D constant SYS___FCVT_A (line 1773) | SYS___FCVT_A = 0x70E constant SYS___GCVT_A (line 1774) | SYS___GCVT_A = 0x70F constant SYS___STRTOUL_A (line 1775) | SYS___STRTOUL_A = 0x70A constant SYS_____AE_CORRESTBL_QUERY_A (line 1776) | SYS_____AE_CORRESTBL_QUERY_A = 0x70B constant SYS_SPRINTF (line 1777) | SYS_SPRINTF = 0x071 constant SYS___ACCESS_A (line 1778) | SYS___ACCESS_A = 0x71F constant SYS___CATOPEN_A (line 1779) | SYS___CATOPEN_A = 0x71E constant SYS___GETOPT_A (line 1780) | SYS___GETOPT_A = 0x71D constant SYS___REALPATH_A (line 1781) | SYS___REALPATH_A = 0x71A constant SYS___SETENV_A (line 1782) | SYS___SETENV_A = 0x71B constant SYS___SYSTEM_A (line 1783) | SYS___SYSTEM_A = 0x71C constant SYS_FGETC (line 1784) | SYS_FGETC = 0x072 constant SYS___GAI_STRERROR_A (line 1785) | SYS___GAI_STRERROR_A = 0x72F constant SYS___RMDIR_A (line 1786) | SYS___RMDIR_A = 0x72A constant SYS___STATVFS_A (line 1787) | SYS___STATVFS_A = 0x72B constant SYS___SYMLINK_A (line 1788) | SYS___SYMLINK_A = 0x72C constant SYS___TRUNCATE_A (line 1789) | SYS___TRUNCATE_A = 0x72D constant SYS___UNLINK_A (line 1790) | SYS___UNLINK_A = 0x72E constant SYS_VFPRINTF (line 1791) | SYS_VFPRINTF = 0x073 constant SYS___ISSPACE_A (line 1792) | SYS___ISSPACE_A = 0x73A constant SYS___ISUPPER_A (line 1793) | SYS___ISUPPER_A = 0x73B constant SYS___ISWALNUM_A (line 1794) | SYS___ISWALNUM_A = 0x73F constant SYS___ISXDIGIT_A (line 1795) | SYS___ISXDIGIT_A = 0x73C constant SYS___TOLOWER_A (line 1796) | SYS___TOLOWER_A = 0x73D constant SYS___TOUPPER_A (line 1797) | SYS___TOUPPER_A = 0x73E constant SYS_VPRINTF (line 1798) | SYS_VPRINTF = 0x074 constant SYS___CONFSTR_A (line 1799) | SYS___CONFSTR_A = 0x74B constant SYS___FDOPEN_A (line 1800) | SYS___FDOPEN_A = 0x74E constant SYS___FLDATA_A (line 1801) | SYS___FLDATA_A = 0x74F constant SYS___FTOK_A (line 1802) | SYS___FTOK_A = 0x74C constant SYS___ISWXDIGIT_A (line 1803) | SYS___ISWXDIGIT_A = 0x74A constant SYS___MKTEMP_A (line 1804) | SYS___MKTEMP_A = 0x74D constant SYS_VSPRINTF (line 1805) | SYS_VSPRINTF = 0x075 constant SYS___GETGRGID_A (line 1806) | SYS___GETGRGID_A = 0x75A constant SYS___GETGRNAM_A (line 1807) | SYS___GETGRNAM_A = 0x75B constant SYS___GETGROUPSBYNAME_A (line 1808) | SYS___GETGROUPSBYNAME_A = 0x75C constant SYS___GETHOSTENT_A (line 1809) | SYS___GETHOSTENT_A = 0x75D constant SYS___GETHOSTNAME_A (line 1810) | SYS___GETHOSTNAME_A = 0x75E constant SYS___GETLOGIN_A (line 1811) | SYS___GETLOGIN_A = 0x75F constant SYS_GETC (line 1812) | SYS_GETC = 0x076 constant SYS___CREATEWORKUNIT_A (line 1813) | SYS___CREATEWORKUNIT_A = 0x76A constant SYS___CTERMID_A (line 1814) | SYS___CTERMID_A = 0x76B constant SYS___FMTMSG_A (line 1815) | SYS___FMTMSG_A = 0x76C constant SYS___INITGROUPS_A (line 1816) | SYS___INITGROUPS_A = 0x76D constant SYS___MSGRCV_A (line 1817) | SYS___MSGRCV_A = 0x76F constant SYS_____LOGIN_A (line 1818) | SYS_____LOGIN_A = 0x76E constant SYS_FGETS (line 1819) | SYS_FGETS = 0x077 constant SYS___STRCASECMP_A (line 1820) | SYS___STRCASECMP_A = 0x77B constant SYS___STRNCASECMP_A (line 1821) | SYS___STRNCASECMP_A = 0x77C constant SYS___TTYNAME_A (line 1822) | SYS___TTYNAME_A = 0x77D constant SYS___UNAME_A (line 1823) | SYS___UNAME_A = 0x77E constant SYS___UTIMES_A (line 1824) | SYS___UTIMES_A = 0x77F constant SYS_____SERVER_PWU_A (line 1825) | SYS_____SERVER_PWU_A = 0x77A constant SYS_FPUTC (line 1826) | SYS_FPUTC = 0x078 constant SYS___CREAT_O_A (line 1827) | SYS___CREAT_O_A = 0x78E constant SYS___ENVNA (line 1828) | SYS___ENVNA = 0x78F constant SYS___FREAD_A (line 1829) | SYS___FREAD_A = 0x78A constant SYS___FWRITE_A (line 1830) | SYS___FWRITE_A = 0x78B constant SYS___ISASCII (line 1831) | SYS___ISASCII = 0x78D constant SYS___OPEN_O_A (line 1832) | SYS___OPEN_O_A = 0x78C constant SYS_FPUTS (line 1833) | SYS_FPUTS = 0x079 constant SYS___ASCTIME_A (line 1834) | SYS___ASCTIME_A = 0x79C constant SYS___CTIME_A (line 1835) | SYS___CTIME_A = 0x79D constant SYS___GETDATE_A (line 1836) | SYS___GETDATE_A = 0x79E constant SYS___GETSERVBYPORT_A (line 1837) | SYS___GETSERVBYPORT_A = 0x79A constant SYS___GETSERVENT_A (line 1838) | SYS___GETSERVENT_A = 0x79B constant SYS___TZSET_A (line 1839) | SYS___TZSET_A = 0x79F constant SYS_ACL_FROM_TEXT (line 1840) | SYS_ACL_FROM_TEXT = 0x80C constant SYS_ACL_SET_FD (line 1841) | SYS_ACL_SET_FD = 0x80A constant SYS_ACL_SET_FILE (line 1842) | SYS_ACL_SET_FILE = 0x80B constant SYS_ACL_SORT (line 1843) | SYS_ACL_SORT = 0x80E constant SYS_ACL_TO_TEXT (line 1844) | SYS_ACL_TO_TEXT = 0x80D constant SYS_UNGETC (line 1845) | SYS_UNGETC = 0x080 constant SYS___SHUTDOWN_REGISTRATION (line 1846) | SYS___SHUTDOWN_REGISTRATION = 0x80F constant SYS_FREAD (line 1847) | SYS_FREAD = 0x081 constant SYS_FREEADDRINFO (line 1848) | SYS_FREEADDRINFO = 0x81A constant SYS_GAI_STRERROR (line 1849) | SYS_GAI_STRERROR = 0x81B constant SYS_REXEC_AF (line 1850) | SYS_REXEC_AF = 0x81C constant SYS___DYNALLOC_A (line 1851) | SYS___DYNALLOC_A = 0x81F constant SYS___POE (line 1852) | SYS___POE = 0x81D constant SYS_WCSTOMBS (line 1853) | SYS_WCSTOMBS = 0x082 constant SYS___INET_ADDR_A (line 1854) | SYS___INET_ADDR_A = 0x82F constant SYS___NLIST_A (line 1855) | SYS___NLIST_A = 0x82A constant SYS_____TCGETCP_A (line 1856) | SYS_____TCGETCP_A = 0x82B constant SYS_____TCSETCP_A (line 1857) | SYS_____TCSETCP_A = 0x82C constant SYS_____W_PIOCTL_A (line 1858) | SYS_____W_PIOCTL_A = 0x82E constant SYS_MBTOWC (line 1859) | SYS_MBTOWC = 0x083 constant SYS___CABEND (line 1860) | SYS___CABEND = 0x83D constant SYS___LE_CIB_GET (line 1861) | SYS___LE_CIB_GET = 0x83E constant SYS___RECVMSG_A (line 1862) | SYS___RECVMSG_A = 0x83B constant SYS___SENDMSG_A (line 1863) | SYS___SENDMSG_A = 0x83A constant SYS___SET_LAA_FOR_JIT (line 1864) | SYS___SET_LAA_FOR_JIT = 0x83F constant SYS_____LCHATTR_A (line 1865) | SYS_____LCHATTR_A = 0x83C constant SYS_WCTOMB (line 1866) | SYS_WCTOMB = 0x084 constant SYS___CBRTL_B (line 1867) | SYS___CBRTL_B = 0x84A constant SYS___COPYSIGNF_B (line 1868) | SYS___COPYSIGNF_B = 0x84B constant SYS___COPYSIGNL_B (line 1869) | SYS___COPYSIGNL_B = 0x84C constant SYS___COTANF_B (line 1870) | SYS___COTANF_B = 0x84D constant SYS___COTANL_B (line 1871) | SYS___COTANL_B = 0x84F constant SYS___COTAN_B (line 1872) | SYS___COTAN_B = 0x84E constant SYS_MBSTOWCS (line 1873) | SYS_MBSTOWCS = 0x085 constant SYS___LOG1PL_B (line 1874) | SYS___LOG1PL_B = 0x85A constant SYS___LOG2F_B (line 1875) | SYS___LOG2F_B = 0x85B constant SYS___LOG2L_B (line 1876) | SYS___LOG2L_B = 0x85D constant SYS___LOG2_B (line 1877) | SYS___LOG2_B = 0x85C constant SYS___REMAINDERF_B (line 1878) | SYS___REMAINDERF_B = 0x85E constant SYS___REMAINDERL_B (line 1879) | SYS___REMAINDERL_B = 0x85F constant SYS_ACOSHF (line 1880) | SYS_ACOSHF = 0x86E constant SYS_ACOSHL (line 1881) | SYS_ACOSHL = 0x86F constant SYS_WCSCPY (line 1882) | SYS_WCSCPY = 0x086 constant SYS___ERFCF_B (line 1883) | SYS___ERFCF_B = 0x86D constant SYS___ERFF_B (line 1884) | SYS___ERFF_B = 0x86C constant SYS___LROUNDF_B (line 1885) | SYS___LROUNDF_B = 0x86A constant SYS___LROUND_B (line 1886) | SYS___LROUND_B = 0x86B constant SYS_COTANL (line 1887) | SYS_COTANL = 0x87A constant SYS_EXP2F (line 1888) | SYS_EXP2F = 0x87B constant SYS_EXP2L (line 1889) | SYS_EXP2L = 0x87C constant SYS_EXPM1F (line 1890) | SYS_EXPM1F = 0x87D constant SYS_EXPM1L (line 1891) | SYS_EXPM1L = 0x87E constant SYS_FDIMF (line 1892) | SYS_FDIMF = 0x87F constant SYS_WCSCAT (line 1893) | SYS_WCSCAT = 0x087 constant SYS___COTANL (line 1894) | SYS___COTANL = 0x87A constant SYS_REMAINDERF (line 1895) | SYS_REMAINDERF = 0x88A constant SYS_REMAINDERL (line 1896) | SYS_REMAINDERL = 0x88B constant SYS_REMAINDF (line 1897) | SYS_REMAINDF = 0x88A constant SYS_REMAINDL (line 1898) | SYS_REMAINDL = 0x88B constant SYS_REMQUO (line 1899) | SYS_REMQUO = 0x88D constant SYS_REMQUOF (line 1900) | SYS_REMQUOF = 0x88C constant SYS_REMQUOL (line 1901) | SYS_REMQUOL = 0x88E constant SYS_TGAMMAF (line 1902) | SYS_TGAMMAF = 0x88F constant SYS_WCSCHR (line 1903) | SYS_WCSCHR = 0x088 constant SYS_ERFCF (line 1904) | SYS_ERFCF = 0x89B constant SYS_ERFCL (line 1905) | SYS_ERFCL = 0x89C constant SYS_ERFL (line 1906) | SYS_ERFL = 0x89A constant SYS_EXP2 (line 1907) | SYS_EXP2 = 0x89E constant SYS_WCSCMP (line 1908) | SYS_WCSCMP = 0x089 constant SYS___EXP2_B (line 1909) | SYS___EXP2_B = 0x89D constant SYS___FAR_JUMP (line 1910) | SYS___FAR_JUMP = 0x89F constant SYS_ABS (line 1911) | SYS_ABS = 0x090 constant SYS___ERFCL_H (line 1912) | SYS___ERFCL_H = 0x90A constant SYS___EXPF_H (line 1913) | SYS___EXPF_H = 0x90C constant SYS___EXPL_H (line 1914) | SYS___EXPL_H = 0x90D constant SYS___EXPM1_H (line 1915) | SYS___EXPM1_H = 0x90E constant SYS___EXP_H (line 1916) | SYS___EXP_H = 0x90B constant SYS___FDIM_H (line 1917) | SYS___FDIM_H = 0x90F constant SYS_DIV (line 1918) | SYS_DIV = 0x091 constant SYS___LOG2F_H (line 1919) | SYS___LOG2F_H = 0x91F constant SYS___LOG2_H (line 1920) | SYS___LOG2_H = 0x91E constant SYS___LOGB_H (line 1921) | SYS___LOGB_H = 0x91D constant SYS___LOGF_H (line 1922) | SYS___LOGF_H = 0x91B constant SYS___LOGL_H (line 1923) | SYS___LOGL_H = 0x91C constant SYS___LOG_H (line 1924) | SYS___LOG_H = 0x91A constant SYS_LABS (line 1925) | SYS_LABS = 0x092 constant SYS___POWL_H (line 1926) | SYS___POWL_H = 0x92A constant SYS___REMAINDER_H (line 1927) | SYS___REMAINDER_H = 0x92B constant SYS___RINT_H (line 1928) | SYS___RINT_H = 0x92C constant SYS___SCALB_H (line 1929) | SYS___SCALB_H = 0x92D constant SYS___SINF_H (line 1930) | SYS___SINF_H = 0x92F constant SYS___SIN_H (line 1931) | SYS___SIN_H = 0x92E constant SYS_STRNCPY (line 1932) | SYS_STRNCPY = 0x093 constant SYS___TANHF_H (line 1933) | SYS___TANHF_H = 0x93B constant SYS___TANHL_H (line 1934) | SYS___TANHL_H = 0x93C constant SYS___TANH_H (line 1935) | SYS___TANH_H = 0x93A constant SYS___TGAMMAF_H (line 1936) | SYS___TGAMMAF_H = 0x93E constant SYS___TGAMMA_H (line 1937) | SYS___TGAMMA_H = 0x93D constant SYS___TRUNC_H (line 1938) | SYS___TRUNC_H = 0x93F constant SYS_MEMCPY (line 1939) | SYS_MEMCPY = 0x094 constant SYS_VFWSCANF (line 1940) | SYS_VFWSCANF = 0x94A constant SYS_VSWSCANF (line 1941) | SYS_VSWSCANF = 0x94E constant SYS_VWSCANF (line 1942) | SYS_VWSCANF = 0x94C constant SYS_INET6_RTH_ADD (line 1943) | SYS_INET6_RTH_ADD = 0x95D constant SYS_INET6_RTH_INIT (line 1944) | SYS_INET6_RTH_INIT = 0x95C constant SYS_INET6_RTH_REVERSE (line 1945) | SYS_INET6_RTH_REVERSE = 0x95E constant SYS_INET6_RTH_SEGMENTS (line 1946) | SYS_INET6_RTH_SEGMENTS = 0x95F constant SYS_INET6_RTH_SPACE (line 1947) | SYS_INET6_RTH_SPACE = 0x95B constant SYS_MEMMOVE (line 1948) | SYS_MEMMOVE = 0x095 constant SYS_WCSTOLD (line 1949) | SYS_WCSTOLD = 0x95A constant SYS_STRCPY (line 1950) | SYS_STRCPY = 0x096 constant SYS_STRCMP (line 1951) | SYS_STRCMP = 0x097 constant SYS_CABS (line 1952) | SYS_CABS = 0x98E constant SYS_STRCAT (line 1953) | SYS_STRCAT = 0x098 constant SYS___CABS_B (line 1954) | SYS___CABS_B = 0x98F constant SYS___POW_II (line 1955) | SYS___POW_II = 0x98A constant SYS___POW_II_B (line 1956) | SYS___POW_II_B = 0x98B constant SYS___POW_II_H (line 1957) | SYS___POW_II_H = 0x98C constant SYS_CACOSF (line 1958) | SYS_CACOSF = 0x99A constant SYS_CACOSL (line 1959) | SYS_CACOSL = 0x99D constant SYS_STRNCAT (line 1960) | SYS_STRNCAT = 0x099 constant SYS___CACOSF_B (line 1961) | SYS___CACOSF_B = 0x99B constant SYS___CACOSF_H (line 1962) | SYS___CACOSF_H = 0x99C constant SYS___CACOSL_B (line 1963) | SYS___CACOSL_B = 0x99E constant SYS___CACOSL_H (line 1964) | SYS___CACOSL_H = 0x99F constant SYS_ISWALPHA (line 1965) | SYS_ISWALPHA = 0x100 constant SYS_ISWBLANK (line 1966) | SYS_ISWBLANK = 0x101 constant SYS___ISWBLK (line 1967) | SYS___ISWBLK = 0x101 constant SYS_ISWCNTRL (line 1968) | SYS_ISWCNTRL = 0x102 constant SYS_ISWDIGIT (line 1969) | SYS_ISWDIGIT = 0x103 constant SYS_ISWGRAPH (line 1970) | SYS_ISWGRAPH = 0x104 constant SYS_ISWLOWER (line 1971) | SYS_ISWLOWER = 0x105 constant SYS_ISWPRINT (line 1972) | SYS_ISWPRINT = 0x106 constant SYS_ISWPUNCT (line 1973) | SYS_ISWPUNCT = 0x107 constant SYS_ISWSPACE (line 1974) | SYS_ISWSPACE = 0x108 constant SYS_ISWUPPER (line 1975) | SYS_ISWUPPER = 0x109 constant SYS_WCTOB (line 1976) | SYS_WCTOB = 0x110 constant SYS_MBRLEN (line 1977) | SYS_MBRLEN = 0x111 constant SYS_MBRTOWC (line 1978) | SYS_MBRTOWC = 0x112 constant SYS_MBSRTOWC (line 1979) | SYS_MBSRTOWC = 0x113 constant SYS_MBSRTOWCS (line 1980) | SYS_MBSRTOWCS = 0x113 constant SYS_WCRTOMB (line 1981) | SYS_WCRTOMB = 0x114 constant SYS_WCSRTOMB (line 1982) | SYS_WCSRTOMB = 0x115 constant SYS_WCSRTOMBS (line 1983) | SYS_WCSRTOMBS = 0x115 constant SYS___CSID (line 1984) | SYS___CSID = 0x116 constant SYS___WCSID (line 1985) | SYS___WCSID = 0x117 constant SYS_STRPTIME (line 1986) | SYS_STRPTIME = 0x118 constant SYS___STRPTM (line 1987) | SYS___STRPTM = 0x118 constant SYS_STRFMON (line 1988) | SYS_STRFMON = 0x119 constant SYS_WCSCOLL (line 1989) | SYS_WCSCOLL = 0x130 constant SYS_WCSXFRM (line 1990) | SYS_WCSXFRM = 0x131 constant SYS_WCSWIDTH (line 1991) | SYS_WCSWIDTH = 0x132 constant SYS_WCWIDTH (line 1992) | SYS_WCWIDTH = 0x133 constant SYS_WCSFTIME (line 1993) | SYS_WCSFTIME = 0x134 constant SYS_SWPRINTF (line 1994) | SYS_SWPRINTF = 0x135 constant SYS_VSWPRINT (line 1995) | SYS_VSWPRINT = 0x136 constant SYS_VSWPRINTF (line 1996) | SYS_VSWPRINTF = 0x136 constant SYS_SWSCANF (line 1997) | SYS_SWSCANF = 0x137 constant SYS_REGCOMP (line 1998) | SYS_REGCOMP = 0x138 constant SYS_REGEXEC (line 1999) | SYS_REGEXEC = 0x139 constant SYS_GETWC (line 2000) | SYS_GETWC = 0x140 constant SYS_GETWCHAR (line 2001) | SYS_GETWCHAR = 0x141 constant SYS_PUTWC (line 2002) | SYS_PUTWC = 0x142 constant SYS_PUTWCHAR (line 2003) | SYS_PUTWCHAR = 0x143 constant SYS_UNGETWC (line 2004) | SYS_UNGETWC = 0x144 constant SYS_ICONV_OPEN (line 2005) | SYS_ICONV_OPEN = 0x145 constant SYS_ICONV (line 2006) | SYS_ICONV = 0x146 constant SYS_ICONV_CLOSE (line 2007) | SYS_ICONV_CLOSE = 0x147 constant SYS_COLLRANGE (line 2008) | SYS_COLLRANGE = 0x150 constant SYS_CCLASS (line 2009) | SYS_CCLASS = 0x151 constant SYS_COLLORDER (line 2010) | SYS_COLLORDER = 0x152 constant SYS___DEMANGLE (line 2011) | SYS___DEMANGLE = 0x154 constant SYS_FDOPEN (line 2012) | SYS_FDOPEN = 0x155 constant SYS___ERRNO (line 2013) | SYS___ERRNO = 0x156 constant SYS___ERRNO2 (line 2014) | SYS___ERRNO2 = 0x157 constant SYS___TERROR (line 2015) | SYS___TERROR = 0x158 constant SYS_MAXCOLL (line 2016) | SYS_MAXCOLL = 0x169 constant SYS_DLLLOAD (line 2017) | SYS_DLLLOAD = 0x170 constant SYS__EXIT (line 2018) | SYS__EXIT = 0x174 constant SYS_ACCESS (line 2019) | SYS_ACCESS = 0x175 constant SYS_ALARM (line 2020) | SYS_ALARM = 0x176 constant SYS_CFGETISPEED (line 2021) | SYS_CFGETISPEED = 0x177 constant SYS_CFGETOSPEED (line 2022) | SYS_CFGETOSPEED = 0x178 constant SYS_CFSETISPEED (line 2023) | SYS_CFSETISPEED = 0x179 constant SYS_CREAT (line 2024) | SYS_CREAT = 0x180 constant SYS_CTERMID (line 2025) | SYS_CTERMID = 0x181 constant SYS_DUP (line 2026) | SYS_DUP = 0x182 constant SYS_DUP2 (line 2027) | SYS_DUP2 = 0x183 constant SYS_EXECL (line 2028) | SYS_EXECL = 0x184 constant SYS_EXECLE (line 2029) | SYS_EXECLE = 0x185 constant SYS_EXECLP (line 2030) | SYS_EXECLP = 0x186 constant SYS_EXECV (line 2031) | SYS_EXECV = 0x187 constant SYS_EXECVE (line 2032) | SYS_EXECVE = 0x188 constant SYS_EXECVP (line 2033) | SYS_EXECVP = 0x189 constant SYS_FSTAT (line 2034) | SYS_FSTAT = 0x190 constant SYS_FSYNC (line 2035) | SYS_FSYNC = 0x191 constant SYS_FTRUNCATE (line 2036) | SYS_FTRUNCATE = 0x192 constant SYS_GETCWD (line 2037) | SYS_GETCWD = 0x193 constant SYS_GETEGID (line 2038) | SYS_GETEGID = 0x194 constant SYS_GETEUID (line 2039) | SYS_GETEUID = 0x195 constant SYS_GETGID (line 2040) | SYS_GETGID = 0x196 constant SYS_GETGRGID (line 2041) | SYS_GETGRGID = 0x197 constant SYS_GETGRNAM (line 2042) | SYS_GETGRNAM = 0x198 constant SYS_GETGROUPS (line 2043) | SYS_GETGROUPS = 0x199 constant SYS_PTHREAD_MUTEXATTR_DESTROY (line 2044) | SYS_PTHREAD_MUTEXATTR_DESTROY = 0x200 constant SYS_PTHREAD_MUTEXATTR_SETKIND_NP (line 2045) | SYS_PTHREAD_MUTEXATTR_SETKIND_NP = 0x201 constant SYS_PTHREAD_MUTEXATTR_GETKIND_NP (line 2046) | SYS_PTHREAD_MUTEXATTR_GETKIND_NP = 0x202 constant SYS_PTHREAD_MUTEX_INIT (line 2047) | SYS_PTHREAD_MUTEX_INIT = 0x203 constant SYS_PTHREAD_MUTEX_DESTROY (line 2048) | SYS_PTHREAD_MUTEX_DESTROY = 0x204 constant SYS_PTHREAD_MUTEX_LOCK (line 2049) | SYS_PTHREAD_MUTEX_LOCK = 0x205 constant SYS_PTHREAD_MUTEX_TRYLOCK (line 2050) | SYS_PTHREAD_MUTEX_TRYLOCK = 0x206 constant SYS_PTHREAD_MUTEX_UNLOCK (line 2051) | SYS_PTHREAD_MUTEX_UNLOCK = 0x207 constant SYS_PTHREAD_ONCE (line 2052) | SYS_PTHREAD_ONCE = 0x209 constant SYS_TW_OPEN (line 2053) | SYS_TW_OPEN = 0x210 constant SYS_TW_FCNTL (line 2054) | SYS_TW_FCNTL = 0x211 constant SYS_PTHREAD_JOIN_D4_NP (line 2055) | SYS_PTHREAD_JOIN_D4_NP = 0x212 constant SYS_PTHREAD_CONDATTR_SETKIND_NP (line 2056) | SYS_PTHREAD_CONDATTR_SETKIND_NP = 0x213 constant SYS_PTHREAD_CONDATTR_GETKIND_NP (line 2057) | SYS_PTHREAD_CONDATTR_GETKIND_NP = 0x214 constant SYS_EXTLINK_NP (line 2058) | SYS_EXTLINK_NP = 0x215 constant SYS___PASSWD (line 2059) | SYS___PASSWD = 0x216 constant SYS_SETGROUPS (line 2060) | SYS_SETGROUPS = 0x217 constant SYS_INITGROUPS (line 2061) | SYS_INITGROUPS = 0x218 constant SYS_WCSRCHR (line 2062) | SYS_WCSRCHR = 0x240 constant SYS_SVC99 (line 2063) | SYS_SVC99 = 0x241 constant SYS___SVC99 (line 2064) | SYS___SVC99 = 0x241 constant SYS_WCSWCS (line 2065) | SYS_WCSWCS = 0x242 constant SYS_LOCALECO (line 2066) | SYS_LOCALECO = 0x243 constant SYS_LOCALECONV (line 2067) | SYS_LOCALECONV = 0x243 constant SYS___LIBREL (line 2068) | SYS___LIBREL = 0x244 constant SYS_RELEASE (line 2069) | SYS_RELEASE = 0x245 constant SYS___RLSE (line 2070) | SYS___RLSE = 0x245 constant SYS_FLOCATE (line 2071) | SYS_FLOCATE = 0x246 constant SYS___FLOCT (line 2072) | SYS___FLOCT = 0x246 constant SYS_FDELREC (line 2073) | SYS_FDELREC = 0x247 constant SYS___FDLREC (line 2074) | SYS___FDLREC = 0x247 constant SYS_FETCH (line 2075) | SYS_FETCH = 0x248 constant SYS___FETCH (line 2076) | SYS___FETCH = 0x248 constant SYS_QSORT (line 2077) | SYS_QSORT = 0x249 constant SYS___CLEANUPCATCH (line 2078) | SYS___CLEANUPCATCH = 0x260 constant SYS___CATCHMATCH (line 2079) | SYS___CATCHMATCH = 0x261 constant SYS___CLEAN2UPCATCH (line 2080) | SYS___CLEAN2UPCATCH = 0x262 constant SYS_GETPRIORITY (line 2081) | SYS_GETPRIORITY = 0x270 constant SYS_NICE (line 2082) | SYS_NICE = 0x271 constant SYS_SETPRIORITY (line 2083) | SYS_SETPRIORITY = 0x272 constant SYS_GETITIMER (line 2084) | SYS_GETITIMER = 0x273 constant SYS_SETITIMER (line 2085) | SYS_SETITIMER = 0x274 constant SYS_MSGCTL (line 2086) | SYS_MSGCTL = 0x275 constant SYS_MSGGET (line 2087) | SYS_MSGGET = 0x276 constant SYS_MSGRCV (line 2088) | SYS_MSGRCV = 0x277 constant SYS_MSGSND (line 2089) | SYS_MSGSND = 0x278 constant SYS_MSGXRCV (line 2090) | SYS_MSGXRCV = 0x279 constant SYS___MSGXR (line 2091) | SYS___MSGXR = 0x279 constant SYS_SHMGET (line 2092) | SYS_SHMGET = 0x280 constant SYS___GETIPC (line 2093) | SYS___GETIPC = 0x281 constant SYS_SETGRENT (line 2094) | SYS_SETGRENT = 0x282 constant SYS_GETGRENT (line 2095) | SYS_GETGRENT = 0x283 constant SYS_ENDGRENT (line 2096) | SYS_ENDGRENT = 0x284 constant SYS_SETPWENT (line 2097) | SYS_SETPWENT = 0x285 constant SYS_GETPWENT (line 2098) | SYS_GETPWENT = 0x286 constant SYS_ENDPWENT (line 2099) | SYS_ENDPWENT = 0x287 constant SYS_BSD_SIGNAL (line 2100) | SYS_BSD_SIGNAL = 0x288 constant SYS_KILLPG (line 2101) | SYS_KILLPG = 0x289 constant SYS_SIGSET (line 2102) | SYS_SIGSET = 0x290 constant SYS_SIGSTACK (line 2103) | SYS_SIGSTACK = 0x291 constant SYS_GETRLIMIT (line 2104) | SYS_GETRLIMIT = 0x292 constant SYS_SETRLIMIT (line 2105) | SYS_SETRLIMIT = 0x293 constant SYS_GETRUSAGE (line 2106) | SYS_GETRUSAGE = 0x294 constant SYS_MMAP (line 2107) | SYS_MMAP = 0x295 constant SYS_MPROTECT (line 2108) | SYS_MPROTECT = 0x296 constant SYS_MSYNC (line 2109) | SYS_MSYNC = 0x297 constant SYS_MUNMAP (line 2110) | SYS_MUNMAP = 0x298 constant SYS_CONFSTR (line 2111) | SYS_CONFSTR = 0x299 constant SYS___NDMTRM (line 2112) | SYS___NDMTRM = 0x300 constant SYS_FTOK (line 2113) | SYS_FTOK = 0x301 constant SYS_BASENAME (line 2114) | SYS_BASENAME = 0x302 constant SYS_DIRNAME (line 2115) | SYS_DIRNAME = 0x303 constant SYS_GETDTABLESIZE (line 2116) | SYS_GETDTABLESIZE = 0x304 constant SYS_MKSTEMP (line 2117) | SYS_MKSTEMP = 0x305 constant SYS_MKTEMP (line 2118) | SYS_MKTEMP = 0x306 constant SYS_NFTW (line 2119) | SYS_NFTW = 0x307 constant SYS_GETWD (line 2120) | SYS_GETWD = 0x308 constant SYS_LOCKF (line 2121) | SYS_LOCKF = 0x309 constant SYS_WORDEXP (line 2122) | SYS_WORDEXP = 0x310 constant SYS_WORDFREE (line 2123) | SYS_WORDFREE = 0x311 constant SYS_GETPGID (line 2124) | SYS_GETPGID = 0x312 constant SYS_GETSID (line 2125) | SYS_GETSID = 0x313 constant SYS___UTMPXNAME (line 2126) | SYS___UTMPXNAME = 0x314 constant SYS_CUSERID (line 2127) | SYS_CUSERID = 0x315 constant SYS_GETPASS (line 2128) | SYS_GETPASS = 0x316 constant SYS_FNMATCH (line 2129) | SYS_FNMATCH = 0x317 constant SYS_FTW (line 2130) | SYS_FTW = 0x318 constant SYS_GETW (line 2131) | SYS_GETW = 0x319 constant SYS_ACOSH (line 2132) | SYS_ACOSH = 0x320 constant SYS_ASINH (line 2133) | SYS_ASINH = 0x321 constant SYS_ATANH (line 2134) | SYS_ATANH = 0x322 constant SYS_CBRT (line 2135) | SYS_CBRT = 0x323 constant SYS_EXPM1 (line 2136) | SYS_EXPM1 = 0x324 constant SYS_ILOGB (line 2137) | SYS_ILOGB = 0x325 constant SYS_LOGB (line 2138) | SYS_LOGB = 0x326 constant SYS_LOG1P (line 2139) | SYS_LOG1P = 0x327 constant SYS_NEXTAFTER (line 2140) | SYS_NEXTAFTER = 0x328 constant SYS_RINT (line 2141) | SYS_RINT = 0x329 constant SYS_SPAWN (line 2142) | SYS_SPAWN = 0x330 constant SYS_SPAWNP (line 2143) | SYS_SPAWNP = 0x331 constant SYS_GETLOGIN_UU (line 2144) | SYS_GETLOGIN_UU = 0x332 constant SYS_ECVT (line 2145) | SYS_ECVT = 0x333 constant SYS_FCVT (line 2146) | SYS_FCVT = 0x334 constant SYS_GCVT (line 2147) | SYS_GCVT = 0x335 constant SYS_ACCEPT (line 2148) | SYS_ACCEPT = 0x336 constant SYS_BIND (line 2149) | SYS_BIND = 0x337 constant SYS_CONNECT (line 2150) | SYS_CONNECT = 0x338 constant SYS_ENDHOSTENT (line 2151) | SYS_ENDHOSTENT = 0x339 constant SYS_GETHOSTENT (line 2152) | SYS_GETHOSTENT = 0x340 constant SYS_GETHOSTID (line 2153) | SYS_GETHOSTID = 0x341 constant SYS_GETHOSTNAME (line 2154) | SYS_GETHOSTNAME = 0x342 constant SYS_GETNETBYADDR (line 2155) | SYS_GETNETBYADDR = 0x343 constant SYS_GETNETBYNAME (line 2156) | SYS_GETNETBYNAME = 0x344 constant SYS_GETNETENT (line 2157) | SYS_GETNETENT = 0x345 constant SYS_GETPEERNAME (line 2158) | SYS_GETPEERNAME = 0x346 constant SYS_GETPROTOBYNAME (line 2159) | SYS_GETPROTOBYNAME = 0x347 constant SYS_GETPROTOBYNUMBER (line 2160) | SYS_GETPROTOBYNUMBER = 0x348 constant SYS_GETPROTOENT (line 2161) | SYS_GETPROTOENT = 0x349 constant SYS_INET_LNAOF (line 2162) | SYS_INET_LNAOF = 0x350 constant SYS_INET_MAKEADDR (line 2163) | SYS_INET_MAKEADDR = 0x351 constant SYS_INET_NETOF (line 2164) | SYS_INET_NETOF = 0x352 constant SYS_INET_NETWORK (line 2165) | SYS_INET_NETWORK = 0x353 constant SYS_INET_NTOA (line 2166) | SYS_INET_NTOA = 0x354 constant SYS_IOCTL (line 2167) | SYS_IOCTL = 0x355 constant SYS_LISTEN (line 2168) | SYS_LISTEN = 0x356 constant SYS_READV (line 2169) | SYS_READV = 0x357 constant SYS_RECV (line 2170) | SYS_RECV = 0x358 constant SYS_RECVFROM (line 2171) | SYS_RECVFROM = 0x359 constant SYS_SETHOSTENT (line 2172) | SYS_SETHOSTENT = 0x360 constant SYS_SETNETENT (line 2173) | SYS_SETNETENT = 0x361 constant SYS_SETPEER (line 2174) | SYS_SETPEER = 0x362 constant SYS_SETPROTOENT (line 2175) | SYS_SETPROTOENT = 0x363 constant SYS_SETSERVENT (line 2176) | SYS_SETSERVENT = 0x364 constant SYS_SETSOCKOPT (line 2177) | SYS_SETSOCKOPT = 0x365 constant SYS_SHUTDOWN (line 2178) | SYS_SHUTDOWN = 0x366 constant SYS_SOCKET (line 2179) | SYS_SOCKET = 0x367 constant SYS_SOCKETPAIR (line 2180) | SYS_SOCKETPAIR = 0x368 constant SYS_WRITEV (line 2181) | SYS_WRITEV = 0x369 constant SYS_ENDNETENT (line 2182) | SYS_ENDNETENT = 0x370 constant SYS_CLOSELOG (line 2183) | SYS_CLOSELOG = 0x371 constant SYS_OPENLOG (line 2184) | SYS_OPENLOG = 0x372 constant SYS_SETLOGMASK (line 2185) | SYS_SETLOGMASK = 0x373 constant SYS_SYSLOG (line 2186) | SYS_SYSLOG = 0x374 constant SYS_PTSNAME (line 2187) | SYS_PTSNAME = 0x375 constant SYS_SETREUID (line 2188) | SYS_SETREUID = 0x376 constant SYS_SETREGID (line 2189) | SYS_SETREGID = 0x377 constant SYS_REALPATH (line 2190) | SYS_REALPATH = 0x378 constant SYS___SIGNGAM (line 2191) | SYS___SIGNGAM = 0x379 constant SYS_POLL (line 2192) | SYS_POLL = 0x380 constant SYS_REXEC (line 2193) | SYS_REXEC = 0x381 constant SYS___ISASCII2 (line 2194) | SYS___ISASCII2 = 0x382 constant SYS___TOASCII2 (line 2195) | SYS___TOASCII2 = 0x383 constant SYS_CHPRIORITY (line 2196) | SYS_CHPRIORITY = 0x384 constant SYS_PTHREAD_ATTR_SETSYNCTYPE_NP (line 2197) | SYS_PTHREAD_ATTR_SETSYNCTYPE_NP = 0x385 constant SYS_PTHREAD_ATTR_GETSYNCTYPE_NP (line 2198) | SYS_PTHREAD_ATTR_GETSYNCTYPE_NP = 0x386 constant SYS_PTHREAD_SET_LIMIT_NP (line 2199) | SYS_PTHREAD_SET_LIMIT_NP = 0x387 constant SYS___STNETENT (line 2200) | SYS___STNETENT = 0x388 constant SYS___STPROTOENT (line 2201) | SYS___STPROTOENT = 0x389 constant SYS___SELECT1 (line 2202) | SYS___SELECT1 = 0x390 constant SYS_PTHREAD_SECURITY_NP (line 2203) | SYS_PTHREAD_SECURITY_NP = 0x391 constant SYS___CHECK_RESOURCE_AUTH_NP (line 2204) | SYS___CHECK_RESOURCE_AUTH_NP = 0x392 constant SYS___CONVERT_ID_NP (line 2205) | SYS___CONVERT_ID_NP = 0x393 constant SYS___OPENVMREL (line 2206) | SYS___OPENVMREL = 0x394 constant SYS_WMEMCHR (line 2207) | SYS_WMEMCHR = 0x395 constant SYS_WMEMCMP (line 2208) | SYS_WMEMCMP = 0x396 constant SYS_WMEMCPY (line 2209) | SYS_WMEMCPY = 0x397 constant SYS_WMEMMOVE (line 2210) | SYS_WMEMMOVE = 0x398 constant SYS_WMEMSET (line 2211) | SYS_WMEMSET = 0x399 constant SYS___FPUTWC (line 2212) | SYS___FPUTWC = 0x400 constant SYS___PUTWC (line 2213) | SYS___PUTWC = 0x401 constant SYS___PWCHAR (line 2214) | SYS___PWCHAR = 0x402 constant SYS___WCSFTM (line 2215) | SYS___WCSFTM = 0x403 constant SYS___WCSTOK (line 2216) | SYS___WCSTOK = 0x404 constant SYS___WCWDTH (line 2217) | SYS___WCWDTH = 0x405 constant SYS_T_ACCEPT (line 2218) | SYS_T_ACCEPT = 0x409 constant SYS_T_GETINFO (line 2219) | SYS_T_GETINFO = 0x410 constant SYS_T_GETPROTADDR (line 2220) | SYS_T_GETPROTADDR = 0x411 constant SYS_T_GETSTATE (line 2221) | SYS_T_GETSTATE = 0x412 constant SYS_T_LISTEN (line 2222) | SYS_T_LISTEN = 0x413 constant SYS_T_LOOK (line 2223) | SYS_T_LOOK = 0x414 constant SYS_T_OPEN (line 2224) | SYS_T_OPEN = 0x415 constant SYS_T_OPTMGMT (line 2225) | SYS_T_OPTMGMT = 0x416 constant SYS_T_RCV (line 2226) | SYS_T_RCV = 0x417 constant SYS_T_RCVCONNECT (line 2227) | SYS_T_RCVCONNECT = 0x418 constant SYS_T_RCVDIS (line 2228) | SYS_T_RCVDIS = 0x419 constant SYS_T_SNDUDATA (line 2229) | SYS_T_SNDUDATA = 0x420 constant SYS_T_STRERROR (line 2230) | SYS_T_STRERROR = 0x421 constant SYS_T_SYNC (line 2231) | SYS_T_SYNC = 0x422 constant SYS_T_UNBIND (line 2232) | SYS_T_UNBIND = 0x423 constant SYS___T_ERRNO (line 2233) | SYS___T_ERRNO = 0x424 constant SYS___RECVMSG2 (line 2234) | SYS___RECVMSG2 = 0x425 constant SYS___SENDMSG2 (line 2235) | SYS___SENDMSG2 = 0x426 constant SYS_FATTACH (line 2236) | SYS_FATTACH = 0x427 constant SYS_FDETACH (line 2237) | SYS_FDETACH = 0x428 constant SYS_GETMSG (line 2238) | SYS_GETMSG = 0x429 constant SYS_GETCONTEXT (line 2239) | SYS_GETCONTEXT = 0x430 constant SYS_SETCONTEXT (line 2240) | SYS_SETCONTEXT = 0x431 constant SYS_MAKECONTEXT (line 2241) | SYS_MAKECONTEXT = 0x432 constant SYS_SWAPCONTEXT (line 2242) | SYS_SWAPCONTEXT = 0x433 constant SYS_PTHREAD_GETSPECIFIC_D8_NP (line 2243) | SYS_PTHREAD_GETSPECIFIC_D8_NP = 0x434 constant SYS_GETCLIENTID (line 2244) | SYS_GETCLIENTID = 0x470 constant SYS___GETCLIENTID (line 2245) | SYS___GETCLIENTID = 0x471 constant SYS_GETSTABLESIZE (line 2246) | SYS_GETSTABLESIZE = 0x472 constant SYS_GETIBMOPT (line 2247) | SYS_GETIBMOPT = 0x473 constant SYS_GETIBMSOCKOPT (line 2248) | SYS_GETIBMSOCKOPT = 0x474 constant SYS_GIVESOCKET (line 2249) | SYS_GIVESOCKET = 0x475 constant SYS_IBMSFLUSH (line 2250) | SYS_IBMSFLUSH = 0x476 constant SYS_MAXDESC (line 2251) | SYS_MAXDESC = 0x477 constant SYS_SETIBMOPT (line 2252) | SYS_SETIBMOPT = 0x478 constant SYS_SETIBMSOCKOPT (line 2253) | SYS_SETIBMSOCKOPT = 0x479 constant SYS___SERVER_PWU (line 2254) | SYS___SERVER_PWU = 0x480 constant SYS_PTHREAD_TAG_NP (line 2255) | SYS_PTHREAD_TAG_NP = 0x481 constant SYS___CONSOLE (line 2256) | SYS___CONSOLE = 0x482 constant SYS___WSINIT (line 2257) | SYS___WSINIT = 0x483 constant SYS___IPTCPN (line 2258) | SYS___IPTCPN = 0x489 constant SYS___SERVER_CLASSIFY (line 2259) | SYS___SERVER_CLASSIFY = 0x490 constant SYS___HEAPRPT (line 2260) | SYS___HEAPRPT = 0x496 constant SYS___ISBFP (line 2261) | SYS___ISBFP = 0x500 constant SYS___FP_CAST (line 2262) | SYS___FP_CAST = 0x501 constant SYS___CERTIFICATE (line 2263) | SYS___CERTIFICATE = 0x502 constant SYS_SEND_FILE (line 2264) | SYS_SEND_FILE = 0x503 constant SYS_AIO_CANCEL (line 2265) | SYS_AIO_CANCEL = 0x504 constant SYS_AIO_ERROR (line 2266) | SYS_AIO_ERROR = 0x505 constant SYS_AIO_READ (line 2267) | SYS_AIO_READ = 0x506 constant SYS_AIO_RETURN (line 2268) | SYS_AIO_RETURN = 0x507 constant SYS_AIO_SUSPEND (line 2269) | SYS_AIO_SUSPEND = 0x508 constant SYS_AIO_WRITE (line 2270) | SYS_AIO_WRITE = 0x509 constant SYS_PTHREAD_RWLOCK_TRYWRLOCK (line 2271) | SYS_PTHREAD_RWLOCK_TRYWRLOCK = 0x510 constant SYS_PTHREAD_RWLOCK_UNLOCK (line 2272) | SYS_PTHREAD_RWLOCK_UNLOCK = 0x511 constant SYS_PTHREAD_RWLOCK_WRLOCK (line 2273) | SYS_PTHREAD_RWLOCK_WRLOCK = 0x512 constant SYS_PTHREAD_RWLOCKATTR_GETPSHARED (line 2274) | SYS_PTHREAD_RWLOCKATTR_GETPSHARED = 0x513 constant SYS_PTHREAD_RWLOCKATTR_SETPSHARED (line 2275) | SYS_PTHREAD_RWLOCKATTR_SETPSHARED = 0x514 constant SYS_PTHREAD_RWLOCKATTR_INIT (line 2276) | SYS_PTHREAD_RWLOCKATTR_INIT = 0x515 constant SYS_PTHREAD_RWLOCKATTR_DESTROY (line 2277) | SYS_PTHREAD_RWLOCKATTR_DESTROY = 0x516 constant SYS___CTTBL (line 2278) | SYS___CTTBL = 0x517 constant SYS_PTHREAD_MUTEXATTR_SETTYPE (line 2279) | SYS_PTHREAD_MUTEXATTR_SETTYPE = 0x518 constant SYS_PTHREAD_MUTEXATTR_GETTYPE (line 2280) | SYS_PTHREAD_MUTEXATTR_GETTYPE = 0x519 constant SYS___FP_UNORDERED (line 2281) | SYS___FP_UNORDERED = 0x520 constant SYS___FP_READ_RND (line 2282) | SYS___FP_READ_RND = 0x521 constant SYS___FP_READ_RND_B (line 2283) | SYS___FP_READ_RND_B = 0x522 constant SYS___FP_SWAP_RND (line 2284) | SYS___FP_SWAP_RND = 0x523 constant SYS___FP_SWAP_RND_B (line 2285) | SYS___FP_SWAP_RND_B = 0x524 constant SYS___FP_LEVEL (line 2286) | SYS___FP_LEVEL = 0x525 constant SYS___FP_BTOH (line 2287) | SYS___FP_BTOH = 0x526 constant SYS___FP_HTOB (line 2288) | SYS___FP_HTOB = 0x527 constant SYS___FPC_RD (line 2289) | SYS___FPC_RD = 0x528 constant SYS___FPC_WR (line 2290) | SYS___FPC_WR = 0x529 constant SYS_PTHREAD_SETCANCELTYPE (line 2291) | SYS_PTHREAD_SETCANCELTYPE = 0x600 constant SYS_PTHREAD_TESTCANCEL (line 2292) | SYS_PTHREAD_TESTCANCEL = 0x601 constant SYS___ATANF_B (line 2293) | SYS___ATANF_B = 0x602 constant SYS___ATANL_B (line 2294) | SYS___ATANL_B = 0x603 constant SYS___CEILF_B (line 2295) | SYS___CEILF_B = 0x604 constant SYS___CEILL_B (line 2296) | SYS___CEILL_B = 0x605 constant SYS___COSF_B (line 2297) | SYS___COSF_B = 0x606 constant SYS___COSL_B (line 2298) | SYS___COSL_B = 0x607 constant SYS___FABSF_B (line 2299) | SYS___FABSF_B = 0x608 constant SYS___FABSL_B (line 2300) | SYS___FABSL_B = 0x609 constant SYS___SINF_B (line 2301) | SYS___SINF_B = 0x610 constant SYS___SINL_B (line 2302) | SYS___SINL_B = 0x611 constant SYS___TANF_B (line 2303) | SYS___TANF_B = 0x612 constant SYS___TANL_B (line 2304) | SYS___TANL_B = 0x613 constant SYS___TANHF_B (line 2305) | SYS___TANHF_B = 0x614 constant SYS___TANHL_B (line 2306) | SYS___TANHL_B = 0x615 constant SYS___ACOSF_B (line 2307) | SYS___ACOSF_B = 0x616 constant SYS___ACOSL_B (line 2308) | SYS___ACOSL_B = 0x617 constant SYS___ASINF_B (line 2309) | SYS___ASINF_B = 0x618 constant SYS___ASINL_B (line 2310) | SYS___ASINL_B = 0x619 constant SYS___LOGF_B (line 2311) | SYS___LOGF_B = 0x620 constant SYS___LOGL_B (line 2312) | SYS___LOGL_B = 0x621 constant SYS___LOG10F_B (line 2313) | SYS___LOG10F_B = 0x622 constant SYS___LOG10L_B (line 2314) | SYS___LOG10L_B = 0x623 constant SYS___POWF_B (line 2315) | SYS___POWF_B = 0x624 constant SYS___POWL_B (line 2316) | SYS___POWL_B = 0x625 constant SYS___SINHF_B (line 2317) | SYS___SINHF_B = 0x626 constant SYS___SINHL_B (line 2318) | SYS___SINHL_B = 0x627 constant SYS___SQRTF_B (line 2319) | SYS___SQRTF_B = 0x628 constant SYS___SQRTL_B (line 2320) | SYS___SQRTL_B = 0x629 constant SYS___MODFL_B (line 2321) | SYS___MODFL_B = 0x630 constant SYS_ABSF (line 2322) | SYS_ABSF = 0x631 constant SYS_ABSL (line 2323) | SYS_ABSL = 0x632 constant SYS_ACOSF (line 2324) | SYS_ACOSF = 0x633 constant SYS_ACOSL (line 2325) | SYS_ACOSL = 0x634 constant SYS_ASINF (line 2326) | SYS_ASINF = 0x635 constant SYS_ASINL (line 2327) | SYS_ASINL = 0x636 constant SYS_ATAN2F (line 2328) | SYS_ATAN2F = 0x637 constant SYS_ATAN2L (line 2329) | SYS_ATAN2L = 0x638 constant SYS_ATANF (line 2330) | SYS_ATANF = 0x639 constant SYS_COSHL (line 2331) | SYS_COSHL = 0x640 constant SYS_EXPF (line 2332) | SYS_EXPF = 0x641 constant SYS_EXPL (line 2333) | SYS_EXPL = 0x642 constant SYS_TANHF (line 2334) | SYS_TANHF = 0x643 constant SYS_TANHL (line 2335) | SYS_TANHL = 0x644 constant SYS_LOG10F (line 2336) | SYS_LOG10F = 0x645 constant SYS_LOG10L (line 2337) | SYS_LOG10L = 0x646 constant SYS_LOGF (line 2338) | SYS_LOGF = 0x647 constant SYS_LOGL (line 2339) | SYS_LOGL = 0x648 constant SYS_POWF (line 2340) | SYS_POWF = 0x649 constant SYS_SINHL (line 2341) | SYS_SINHL = 0x650 constant SYS_TANF (line 2342) | SYS_TANF = 0x651 constant SYS_TANL (line 2343) | SYS_TANL = 0x652 constant SYS_FABSF (line 2344) | SYS_FABSF = 0x653 constant SYS_FABSL (line 2345) | SYS_FABSL = 0x654 constant SYS_FLOORF (line 2346) | SYS_FLOORF = 0x655 constant SYS_FLOORL (line 2347) | SYS_FLOORL = 0x656 constant SYS_FMODF (line 2348) | SYS_FMODF = 0x657 constant SYS_FMODL (line 2349) | SYS_FMODL = 0x658 constant SYS_FREXPF (line 2350) | SYS_FREXPF = 0x659 constant SYS___CHATTR (line 2351) | SYS___CHATTR = 0x660 constant SYS___FCHATTR (line 2352) | SYS___FCHATTR = 0x661 constant SYS___TOCCSID (line 2353) | SYS___TOCCSID = 0x662 constant SYS___CSNAMETYPE (line 2354) | SYS___CSNAMETYPE = 0x663 constant SYS___TOCSNAME (line 2355) | SYS___TOCSNAME = 0x664 constant SYS___CCSIDTYPE (line 2356) | SYS___CCSIDTYPE = 0x665 constant SYS___AE_CORRESTBL_QUERY (line 2357) | SYS___AE_CORRESTBL_QUERY = 0x666 constant SYS___AE_AUTOCONVERT_STATE (line 2358) | SYS___AE_AUTOCONVERT_STATE = 0x667 constant SYS_DN_FIND (line 2359) | SYS_DN_FIND = 0x668 constant SYS___GETHOSTBYADDR_A (line 2360) | SYS___GETHOSTBYADDR_A = 0x669 constant SYS___MBLEN_SB_A (line 2361) | SYS___MBLEN_SB_A = 0x670 constant SYS___MBLEN_STD_A (line 2362) | SYS___MBLEN_STD_A = 0x671 constant SYS___MBLEN_UTF (line 2363) | SYS___MBLEN_UTF = 0x672 constant SYS___MBSTOWCS_A (line 2364) | SYS___MBSTOWCS_A = 0x673 constant SYS___MBSTOWCS_STD_A (line 2365) | SYS___MBSTOWCS_STD_A = 0x674 constant SYS___MBTOWC_A (line 2366) | SYS___MBTOWC_A = 0x675 constant SYS___MBTOWC_ISO1 (line 2367) | SYS___MBTOWC_ISO1 = 0x676 constant SYS___MBTOWC_SBCS (line 2368) | SYS___MBTOWC_SBCS = 0x677 constant SYS___MBTOWC_MBCS (line 2369) | SYS___MBTOWC_MBCS = 0x678 constant SYS___MBTOWC_UTF (line 2370) | SYS___MBTOWC_UTF = 0x679 constant SYS___CSID_A (line 2371) | SYS___CSID_A = 0x680 constant SYS___CSID_STD_A (line 2372) | SYS___CSID_STD_A = 0x681 constant SYS___WCSID_A (line 2373) | SYS___WCSID_A = 0x682 constant SYS___WCSID_STD_A (line 2374) | SYS___WCSID_STD_A = 0x683 constant SYS___WCTOMB_A (line 2375) | SYS___WCTOMB_A = 0x684 constant SYS___WCTOMB_ISO1 (line 2376) | SYS___WCTOMB_ISO1 = 0x685 constant SYS___WCTOMB_STD_A (line 2377) | SYS___WCTOMB_STD_A = 0x686 constant SYS___WCTOMB_UTF (line 2378) | SYS___WCTOMB_UTF = 0x687 constant SYS___WCWIDTH_A (line 2379) | SYS___WCWIDTH_A = 0x688 constant SYS___GETGRNAM_R_A (line 2380) | SYS___GETGRNAM_R_A = 0x689 constant SYS___READDIR_R_A (line 2381) | SYS___READDIR_R_A = 0x690 constant SYS___E2A_S (line 2382) | SYS___E2A_S = 0x691 constant SYS___FNMATCH_A (line 2383) | SYS___FNMATCH_A = 0x692 constant SYS___FNMATCH_C_A (line 2384) | SYS___FNMATCH_C_A = 0x693 constant SYS___EXECL_A (line 2385) | SYS___EXECL_A = 0x694 constant SYS___FNMATCH_STD_A (line 2386) | SYS___FNMATCH_STD_A = 0x695 constant SYS___REGCOMP_A (line 2387) | SYS___REGCOMP_A = 0x696 constant SYS___REGCOMP_STD_A (line 2388) | SYS___REGCOMP_STD_A = 0x697 constant SYS___REGERROR_A (line 2389) | SYS___REGERROR_A = 0x698 constant SYS___REGERROR_STD_A (line 2390) | SYS___REGERROR_STD_A = 0x699 constant SYS___SWPRINTF_A (line 2391) | SYS___SWPRINTF_A = 0x700 constant SYS___FSCANF_A (line 2392) | SYS___FSCANF_A = 0x701 constant SYS___SCANF_A (line 2393) | SYS___SCANF_A = 0x702 constant SYS___SSCANF_A (line 2394) | SYS___SSCANF_A = 0x703 constant SYS___SWSCANF_A (line 2395) | SYS___SWSCANF_A = 0x704 constant SYS___ATOF_A (line 2396) | SYS___ATOF_A = 0x705 constant SYS___ATOI_A (line 2397) | SYS___ATOI_A = 0x706 constant SYS___ATOL_A (line 2398) | SYS___ATOL_A = 0x707 constant SYS___STRTOD_A (line 2399) | SYS___STRTOD_A = 0x708 constant SYS___STRTOL_A (line 2400) | SYS___STRTOL_A = 0x709 constant SYS___L64A_A (line 2401) | SYS___L64A_A = 0x710 constant SYS___STRERROR_A (line 2402) | SYS___STRERROR_A = 0x711 constant SYS___PERROR_A (line 2403) | SYS___PERROR_A = 0x712 constant SYS___FETCH_A (line 2404) | SYS___FETCH_A = 0x713 constant SYS___GETENV_A (line 2405) | SYS___GETENV_A = 0x714 constant SYS___MKSTEMP_A (line 2406) | SYS___MKSTEMP_A = 0x717 constant SYS___PTSNAME_A (line 2407) | SYS___PTSNAME_A = 0x718 constant SYS___PUTENV_A (line 2408) | SYS___PUTENV_A = 0x719 constant SYS___CHDIR_A (line 2409) | SYS___CHDIR_A = 0x720 constant SYS___CHOWN_A (line 2410) | SYS___CHOWN_A = 0x721 constant SYS___CHROOT_A (line 2411) | SYS___CHROOT_A = 0x722 constant SYS___GETCWD_A (line 2412) | SYS___GETCWD_A = 0x723 constant SYS___GETWD_A (line 2413) | SYS___GETWD_A = 0x724 constant SYS___LCHOWN_A (line 2414) | SYS___LCHOWN_A = 0x725 constant SYS___LINK_A (line 2415) | SYS___LINK_A = 0x726 constant SYS___PATHCONF_A (line 2416) | SYS___PATHCONF_A = 0x727 constant SYS___IF_NAMEINDEX_A (line 2417) | SYS___IF_NAMEINDEX_A = 0x728 constant SYS___READLINK_A (line 2418) | SYS___READLINK_A = 0x729 constant SYS___EXTLINK_NP_A (line 2419) | SYS___EXTLINK_NP_A = 0x730 constant SYS___ISALNUM_A (line 2420) | SYS___ISALNUM_A = 0x731 constant SYS___ISALPHA_A (line 2421) | SYS___ISALPHA_A = 0x732 constant SYS___A2E_S (line 2422) | SYS___A2E_S = 0x733 constant SYS___ISCNTRL_A (line 2423) | SYS___ISCNTRL_A = 0x734 constant SYS___ISDIGIT_A (line 2424) | SYS___ISDIGIT_A = 0x735 constant SYS___ISGRAPH_A (line 2425) | SYS___ISGRAPH_A = 0x736 constant SYS___ISLOWER_A (line 2426) | SYS___ISLOWER_A = 0x737 constant SYS___ISPRINT_A (line 2427) | SYS___ISPRINT_A = 0x738 constant SYS___ISPUNCT_A (line 2428) | SYS___ISPUNCT_A = 0x739 constant SYS___ISWALPHA_A (line 2429) | SYS___ISWALPHA_A = 0x740 constant SYS___A2E_L (line 2430) | SYS___A2E_L = 0x741 constant SYS___ISWCNTRL_A (line 2431) | SYS___ISWCNTRL_A = 0x742 constant SYS___ISWDIGIT_A (line 2432) | SYS___ISWDIGIT_A = 0x743 constant SYS___ISWGRAPH_A (line 2433) | SYS___ISWGRAPH_A = 0x744 constant SYS___ISWLOWER_A (line 2434) | SYS___ISWLOWER_A = 0x745 constant SYS___ISWPRINT_A (line 2435) | SYS___ISWPRINT_A = 0x746 constant SYS___ISWPUNCT_A (line 2436) | SYS___ISWPUNCT_A = 0x747 constant SYS___ISWSPACE_A (line 2437) | SYS___ISWSPACE_A = 0x748 constant SYS___ISWUPPER_A (line 2438) | SYS___ISWUPPER_A = 0x749 constant SYS___REMOVE_A (line 2439) | SYS___REMOVE_A = 0x750 constant SYS___RENAME_A (line 2440) | SYS___RENAME_A = 0x751 constant SYS___TMPNAM_A (line 2441) | SYS___TMPNAM_A = 0x752 constant SYS___FOPEN_A (line 2442) | SYS___FOPEN_A = 0x753 constant SYS___FREOPEN_A (line 2443) | SYS___FREOPEN_A = 0x754 constant SYS___CUSERID_A (line 2444) | SYS___CUSERID_A = 0x755 constant SYS___POPEN_A (line 2445) | SYS___POPEN_A = 0x756 constant SYS___TEMPNAM_A (line 2446) | SYS___TEMPNAM_A = 0x757 constant SYS___FTW_A (line 2447) | SYS___FTW_A = 0x758 constant SYS___GETGRENT_A (line 2448) | SYS___GETGRENT_A = 0x759 constant SYS___INET_NTOP_A (line 2449) | SYS___INET_NTOP_A = 0x760 constant SYS___GETPASS_A (line 2450) | SYS___GETPASS_A = 0x761 constant SYS___GETPWENT_A (line 2451) | SYS___GETPWENT_A = 0x762 constant SYS___GETPWNAM_A (line 2452) | SYS___GETPWNAM_A = 0x763 constant SYS___GETPWUID_A (line 2453) | SYS___GETPWUID_A = 0x764 constant SYS_____CHECK_RESOURCE_AUTH_NP_A (line 2454) | SYS_____CHECK_RESOURCE_AUTH_NP_A = 0x765 constant SYS___CHECKSCHENV_A (line 2455) | SYS___CHECKSCHENV_A = 0x766 constant SYS___CONNECTSERVER_A (line 2456) | SYS___CONNECTSERVER_A = 0x767 constant SYS___CONNECTWORKMGR_A (line 2457) | SYS___CONNECTWORKMGR_A = 0x768 constant SYS_____CONSOLE_A (line 2458) | SYS_____CONSOLE_A = 0x769 constant SYS___MSGSND_A (line 2459) | SYS___MSGSND_A = 0x770 constant SYS___MSGXRCV_A (line 2460) | SYS___MSGXRCV_A = 0x771 constant SYS___NFTW_A (line 2461) | SYS___NFTW_A = 0x772 constant SYS_____PASSWD_A (line 2462) | SYS_____PASSWD_A = 0x773 constant SYS___PTHREAD_SECURITY_NP_A (line 2463) | SYS___PTHREAD_SECURITY_NP_A = 0x774 constant SYS___QUERYMETRICS_A (line 2464) | SYS___QUERYMETRICS_A = 0x775 constant SYS___QUERYSCHENV (line 2465) | SYS___QUERYSCHENV = 0x776 constant SYS___READV_A (line 2466) | SYS___READV_A = 0x777 constant SYS_____SERVER_CLASSIFY_A (line 2467) | SYS_____SERVER_CLASSIFY_A = 0x778 constant SYS_____SERVER_INIT_A (line 2468) | SYS_____SERVER_INIT_A = 0x779 constant SYS___W_GETPSENT_A (line 2469) | SYS___W_GETPSENT_A = 0x780 constant SYS___WRITEV_A (line 2470) | SYS___WRITEV_A = 0x781 constant SYS___W_STATFS_A (line 2471) | SYS___W_STATFS_A = 0x782 constant SYS___W_STATVFS_A (line 2472) | SYS___W_STATVFS_A = 0x783 constant SYS___FPUTC_A (line 2473) | SYS___FPUTC_A = 0x784 constant SYS___PUTCHAR_A (line 2474) | SYS___PUTCHAR_A = 0x785 constant SYS___PUTS_A (line 2475) | SYS___PUTS_A = 0x786 constant SYS___FGETS_A (line 2476) | SYS___FGETS_A = 0x787 constant SYS___GETS_A (line 2477) | SYS___GETS_A = 0x788 constant SYS___FPUTS_A (line 2478) | SYS___FPUTS_A = 0x789 constant SYS___PUTC_A (line 2479) | SYS___PUTC_A = 0x790 constant SYS___AE_THREAD_SETMODE (line 2480) | SYS___AE_THREAD_SETMODE = 0x791 constant SYS___AE_THREAD_SWAPMODE (line 2481) | SYS___AE_THREAD_SWAPMODE = 0x792 constant SYS___GETNETBYADDR_A (line 2482) | SYS___GETNETBYADDR_A = 0x793 constant SYS___GETNETBYNAME_A (line 2483) | SYS___GETNETBYNAME_A = 0x794 constant SYS___GETNETENT_A (line 2484) | SYS___GETNETENT_A = 0x795 constant SYS___GETPROTOBYNAME_A (line 2485) | SYS___GETPROTOBYNAME_A = 0x796 constant SYS___GETPROTOBYNUMBER_A (line 2486) | SYS___GETPROTOBYNUMBER_A = 0x797 constant SYS___GETPROTOENT_A (line 2487) | SYS___GETPROTOENT_A = 0x798 constant SYS___GETSERVBYNAME_A (line 2488) | SYS___GETSERVBYNAME_A = 0x799 constant SYS_ACL_FIRST_ENTRY (line 2489) | SYS_ACL_FIRST_ENTRY = 0x800 constant SYS_ACL_GET_ENTRY (line 2490) | SYS_ACL_GET_ENTRY = 0x801 constant SYS_ACL_VALID (line 2491) | SYS_ACL_VALID = 0x802 constant SYS_ACL_CREATE_ENTRY (line 2492) | SYS_ACL_CREATE_ENTRY = 0x803 constant SYS_ACL_DELETE_ENTRY (line 2493) | SYS_ACL_DELETE_ENTRY = 0x804 constant SYS_ACL_UPDATE_ENTRY (line 2494) | SYS_ACL_UPDATE_ENTRY = 0x805 constant SYS_ACL_DELETE_FD (line 2495) | SYS_ACL_DELETE_FD = 0x806 constant SYS_ACL_DELETE_FILE (line 2496) | SYS_ACL_DELETE_FILE = 0x807 constant SYS_ACL_GET_FD (line 2497) | SYS_ACL_GET_FD = 0x808 constant SYS_ACL_GET_FILE (line 2498) | SYS_ACL_GET_FILE = 0x809 constant SYS___ERFL_B (line 2499) | SYS___ERFL_B = 0x810 constant SYS___ERFCL_B (line 2500) | SYS___ERFCL_B = 0x811 constant SYS___LGAMMAL_B (line 2501) | SYS___LGAMMAL_B = 0x812 constant SYS___SETHOOKEVENTS (line 2502) | SYS___SETHOOKEVENTS = 0x813 constant SYS_IF_NAMETOINDEX (line 2503) | SYS_IF_NAMETOINDEX = 0x814 constant SYS_IF_INDEXTONAME (line 2504) | SYS_IF_INDEXTONAME = 0x815 constant SYS_IF_NAMEINDEX (line 2505) | SYS_IF_NAMEINDEX = 0x816 constant SYS_IF_FREENAMEINDEX (line 2506) | SYS_IF_FREENAMEINDEX = 0x817 constant SYS_GETADDRINFO (line 2507) | SYS_GETADDRINFO = 0x818 constant SYS_GETNAMEINFO (line 2508) | SYS_GETNAMEINFO = 0x819 constant SYS___DYNFREE_A (line 2509) | SYS___DYNFREE_A = 0x820 constant SYS___RES_QUERY_A (line 2510) | SYS___RES_QUERY_A = 0x821 constant SYS___RES_SEARCH_A (line 2511) | SYS___RES_SEARCH_A = 0x822 constant SYS___RES_QUERYDOMAIN_A (line 2512) | SYS___RES_QUERYDOMAIN_A = 0x823 constant SYS___RES_MKQUERY_A (line 2513) | SYS___RES_MKQUERY_A = 0x824 constant SYS___RES_SEND_A (line 2514) | SYS___RES_SEND_A = 0x825 constant SYS___DN_EXPAND_A (line 2515) | SYS___DN_EXPAND_A = 0x826 constant SYS___DN_SKIPNAME_A (line 2516) | SYS___DN_SKIPNAME_A = 0x827 constant SYS___DN_COMP_A (line 2517) | SYS___DN_COMP_A = 0x828 constant SYS___DN_FIND_A (line 2518) | SYS___DN_FIND_A = 0x829 constant SYS___INET_NTOA_A (line 2519) | SYS___INET_NTOA_A = 0x830 constant SYS___INET_NETWORK_A (line 2520) | SYS___INET_NETWORK_A = 0x831 constant SYS___ACCEPT_A (line 2521) | SYS___ACCEPT_A = 0x832 constant SYS___ACCEPT_AND_RECV_A (line 2522) | SYS___ACCEPT_AND_RECV_A = 0x833 constant SYS___BIND_A (line 2523) | SYS___BIND_A = 0x834 constant SYS___CONNECT_A (line 2524) | SYS___CONNECT_A = 0x835 constant SYS___GETPEERNAME_A (line 2525) | SYS___GETPEERNAME_A = 0x836 constant SYS___GETSOCKNAME_A (line 2526) | SYS___GETSOCKNAME_A = 0x837 constant SYS___RECVFROM_A (line 2527) | SYS___RECVFROM_A = 0x838 constant SYS___SENDTO_A (line 2528) | SYS___SENDTO_A = 0x839 constant SYS___LCHATTR (line 2529) | SYS___LCHATTR = 0x840 constant SYS___WRITEDOWN (line 2530) | SYS___WRITEDOWN = 0x841 constant SYS_PTHREAD_MUTEX_INIT2 (line 2531) | SYS_PTHREAD_MUTEX_INIT2 = 0x842 constant SYS___ACOSHF_B (line 2532) | SYS___ACOSHF_B = 0x843 constant SYS___ACOSHL_B (line 2533) | SYS___ACOSHL_B = 0x844 constant SYS___ASINHF_B (line 2534) | SYS___ASINHF_B = 0x845 constant SYS___ASINHL_B (line 2535) | SYS___ASINHL_B = 0x846 constant SYS___ATANHF_B (line 2536) | SYS___ATANHF_B = 0x847 constant SYS___ATANHL_B (line 2537) | SYS___ATANHL_B = 0x848 constant SYS___CBRTF_B (line 2538) | SYS___CBRTF_B = 0x849 constant SYS___EXP2F_B (line 2539) | SYS___EXP2F_B = 0x850 constant SYS___EXP2L_B (line 2540) | SYS___EXP2L_B = 0x851 constant SYS___EXPM1F_B (line 2541) | SYS___EXPM1F_B = 0x852 constant SYS___EXPM1L_B (line 2542) | SYS___EXPM1L_B = 0x853 constant SYS___FDIMF_B (line 2543) | SYS___FDIMF_B = 0x854 constant SYS___FDIM_B (line 2544) | SYS___FDIM_B = 0x855 constant SYS___FDIML_B (line 2545) | SYS___FDIML_B = 0x856 constant SYS___HYPOTF_B (line 2546) | SYS___HYPOTF_B = 0x857 constant SYS___HYPOTL_B (line 2547) | SYS___HYPOTL_B = 0x858 constant SYS___LOG1PF_B (line 2548) | SYS___LOG1PF_B = 0x859 constant SYS___REMQUOF_B (line 2549) | SYS___REMQUOF_B = 0x860 constant SYS___REMQUO_B (line 2550) | SYS___REMQUO_B = 0x861 constant SYS___REMQUOL_B (line 2551) | SYS___REMQUOL_B = 0x862 constant SYS___TGAMMAF_B (line 2552) | SYS___TGAMMAF_B = 0x863 constant SYS___TGAMMA_B (line 2553) | SYS___TGAMMA_B = 0x864 constant SYS___TGAMMAL_B (line 2554) | SYS___TGAMMAL_B = 0x865 constant SYS___TRUNCF_B (line 2555) | SYS___TRUNCF_B = 0x866 constant SYS___TRUNC_B (line 2556) | SYS___TRUNC_B = 0x867 constant SYS___TRUNCL_B (line 2557) | SYS___TRUNCL_B = 0x868 constant SYS___LGAMMAF_B (line 2558) | SYS___LGAMMAF_B = 0x869 constant SYS_ASINHF (line 2559) | SYS_ASINHF = 0x870 constant SYS_ASINHL (line 2560) | SYS_ASINHL = 0x871 constant SYS_ATANHF (line 2561) | SYS_ATANHF = 0x872 constant SYS_ATANHL (line 2562) | SYS_ATANHL = 0x873 constant SYS_CBRTF (line 2563) | SYS_CBRTF = 0x874 constant SYS_CBRTL (line 2564) | SYS_CBRTL = 0x875 constant SYS_COPYSIGNF (line 2565) | SYS_COPYSIGNF = 0x876 constant SYS_CPYSIGNF (line 2566) | SYS_CPYSIGNF = 0x876 constant SYS_COPYSIGNL (line 2567) | SYS_COPYSIGNL = 0x877 constant SYS_CPYSIGNL (line 2568) | SYS_CPYSIGNL = 0x877 constant SYS_COTANF (line 2569) | SYS_COTANF = 0x878 constant SYS___COTANF (line 2570) | SYS___COTANF = 0x878 constant SYS_COTAN (line 2571) | SYS_COTAN = 0x879 constant SYS___COTAN (line 2572) | SYS___COTAN = 0x879 constant SYS_FDIM (line 2573) | SYS_FDIM = 0x881 constant SYS_FDIML (line 2574) | SYS_FDIML = 0x882 constant SYS_HYPOTF (line 2575) | SYS_HYPOTF = 0x883 constant SYS_HYPOTL (line 2576) | SYS_HYPOTL = 0x884 constant SYS_LOG1PF (line 2577) | SYS_LOG1PF = 0x885 constant SYS_LOG1PL (line 2578) | SYS_LOG1PL = 0x886 constant SYS_LOG2F (line 2579) | SYS_LOG2F = 0x887 constant SYS_LOG2 (line 2580) | SYS_LOG2 = 0x888 constant SYS_LOG2L (line 2581) | SYS_LOG2L = 0x889 constant SYS_TGAMMA (line 2582) | SYS_TGAMMA = 0x890 constant SYS_TGAMMAL (line 2583) | SYS_TGAMMAL = 0x891 constant SYS_TRUNCF (line 2584) | SYS_TRUNCF = 0x892 constant SYS_TRUNC (line 2585) | SYS_TRUNC = 0x893 constant SYS_TRUNCL (line 2586) | SYS_TRUNCL = 0x894 constant SYS_LGAMMAF (line 2587) | SYS_LGAMMAF = 0x895 constant SYS_LGAMMAL (line 2588) | SYS_LGAMMAL = 0x896 constant SYS_LROUNDF (line 2589) | SYS_LROUNDF = 0x897 constant SYS_LROUND (line 2590) | SYS_LROUND = 0x898 constant SYS_ERFF (line 2591) | SYS_ERFF = 0x899 constant SYS___COSHF_H (line 2592) | SYS___COSHF_H = 0x900 constant SYS___COSHL_H (line 2593) | SYS___COSHL_H = 0x901 constant SYS___COTAN_H (line 2594) | SYS___COTAN_H = 0x902 constant SYS___COTANF_H (line 2595) | SYS___COTANF_H = 0x903 constant SYS___COTANL_H (line 2596) | SYS___COTANL_H = 0x904 constant SYS___ERF_H (line 2597) | SYS___ERF_H = 0x905 constant SYS___ERFF_H (line 2598) | SYS___ERFF_H = 0x906 constant SYS___ERFL_H (line 2599) | SYS___ERFL_H = 0x907 constant SYS___ERFC_H (line 2600) | SYS___ERFC_H = 0x908 constant SYS___ERFCF_H (line 2601) | SYS___ERFCF_H = 0x909 constant SYS___FDIMF_H (line 2602) | SYS___FDIMF_H = 0x910 constant SYS___FDIML_H (line 2603) | SYS___FDIML_H = 0x911 constant SYS___FMOD_H (line 2604) | SYS___FMOD_H = 0x912 constant SYS___FMODF_H (line 2605) | SYS___FMODF_H = 0x913 constant SYS___FMODL_H (line 2606) | SYS___FMODL_H = 0x914 constant SYS___GAMMA_H (line 2607) | SYS___GAMMA_H = 0x915 constant SYS___HYPOT_H (line 2608) | SYS___HYPOT_H = 0x916 constant SYS___ILOGB_H (line 2609) | SYS___ILOGB_H = 0x917 constant SYS___LGAMMA_H (line 2610) | SYS___LGAMMA_H = 0x918 constant SYS___LGAMMAF_H (line 2611) | SYS___LGAMMAF_H = 0x919 constant SYS___LOG2L_H (line 2612) | SYS___LOG2L_H = 0x920 constant SYS___LOG1P_H (line 2613) | SYS___LOG1P_H = 0x921 constant SYS___LOG10_H (line 2614) | SYS___LOG10_H = 0x922 constant SYS___LOG10F_H (line 2615) | SYS___LOG10F_H = 0x923 constant SYS___LOG10L_H (line 2616) | SYS___LOG10L_H = 0x924 constant SYS___LROUND_H (line 2617) | SYS___LROUND_H = 0x925 constant SYS___LROUNDF_H (line 2618) | SYS___LROUNDF_H = 0x926 constant SYS___NEXTAFTER_H (line 2619) | SYS___NEXTAFTER_H = 0x927 constant SYS___POW_H (line 2620) | SYS___POW_H = 0x928 constant SYS___POWF_H (line 2621) | SYS___POWF_H = 0x929 constant SYS___SINL_H (line 2622) | SYS___SINL_H = 0x930 constant SYS___SINH_H (line 2623) | SYS___SINH_H = 0x931 constant SYS___SINHF_H (line 2624) | SYS___SINHF_H = 0x932 constant SYS___SINHL_H (line 2625) | SYS___SINHL_H = 0x933 constant SYS___SQRT_H (line 2626) | SYS___SQRT_H = 0x934 constant SYS___SQRTF_H (line 2627) | SYS___SQRTF_H = 0x935 constant SYS___SQRTL_H (line 2628) | SYS___SQRTL_H = 0x936 constant SYS___TAN_H (line 2629) | SYS___TAN_H = 0x937 constant SYS___TANF_H (line 2630) | SYS___TANF_H = 0x938 constant SYS___TANL_H (line 2631) | SYS___TANL_H = 0x939 constant SYS___TRUNCF_H (line 2632) | SYS___TRUNCF_H = 0x940 constant SYS___TRUNCL_H (line 2633) | SYS___TRUNCL_H = 0x941 constant SYS___COSH_H (line 2634) | SYS___COSH_H = 0x942 constant SYS___LE_DEBUG_SET_RESUME_MCH (line 2635) | SYS___LE_DEBUG_SET_RESUME_MCH = 0x943 constant SYS_VFSCANF (line 2636) | SYS_VFSCANF = 0x944 constant SYS_VSCANF (line 2637) | SYS_VSCANF = 0x946 constant SYS_VSSCANF (line 2638) | SYS_VSSCANF = 0x948 constant SYS_IMAXABS (line 2639) | SYS_IMAXABS = 0x950 constant SYS_IMAXDIV (line 2640) | SYS_IMAXDIV = 0x951 constant SYS_STRTOIMAX (line 2641) | SYS_STRTOIMAX = 0x952 constant SYS_STRTOUMAX (line 2642) | SYS_STRTOUMAX = 0x953 constant SYS_WCSTOIMAX (line 2643) | SYS_WCSTOIMAX = 0x954 constant SYS_WCSTOUMAX (line 2644) | SYS_WCSTOUMAX = 0x955 constant SYS_ATOLL (line 2645) | SYS_ATOLL = 0x956 constant SYS_STRTOF (line 2646) | SYS_STRTOF = 0x957 constant SYS_STRTOLD (line 2647) | SYS_STRTOLD = 0x958 constant SYS_WCSTOF (line 2648) | SYS_WCSTOF = 0x959 constant SYS_INET6_RTH_GETADDR (line 2649) | SYS_INET6_RTH_GETADDR = 0x960 constant SYS_INET6_OPT_INIT (line 2650) | SYS_INET6_OPT_INIT = 0x961 constant SYS_INET6_OPT_APPEND (line 2651) | SYS_INET6_OPT_APPEND = 0x962 constant SYS_INET6_OPT_FINISH (line 2652) | SYS_INET6_OPT_FINISH = 0x963 constant SYS_INET6_OPT_SET_VAL (line 2653) | SYS_INET6_OPT_SET_VAL = 0x964 constant SYS_INET6_OPT_NEXT (line 2654) | SYS_INET6_OPT_NEXT = 0x965 constant SYS_INET6_OPT_FIND (line 2655) | SYS_INET6_OPT_FIND = 0x966 constant SYS_INET6_OPT_GET_VAL (line 2656) | SYS_INET6_OPT_GET_VAL = 0x967 constant SYS___POW_I (line 2657) | SYS___POW_I = 0x987 constant SYS___POW_I_B (line 2658) | SYS___POW_I_B = 0x988 constant SYS___POW_I_H (line 2659) | SYS___POW_I_H = 0x989 constant SYS___CABS_H (line 2660) | SYS___CABS_H = 0x990 constant SYS_CABSF (line 2661) | SYS_CABSF = 0x991 constant SYS___CABSF_B (line 2662) | SYS___CABSF_B = 0x992 constant SYS___CABSF_H (line 2663) | SYS___CABSF_H = 0x993 constant SYS_CABSL (line 2664) | SYS_CABSL = 0x994 constant SYS___CABSL_B (line 2665) | SYS___CABSL_B = 0x995 constant SYS___CABSL_H (line 2666) | SYS___CABSL_H = 0x996 constant SYS_CACOS (line 2667) | SYS_CACOS = 0x997 constant SYS___CACOS_B (line 2668) | SYS___CACOS_B = 0x998 constant SYS___CACOS_H (line 2669) | SYS___CACOS_H = 0x999 FILE: vendor/golang.org/x/sys/unix/ztypes_aix_ppc.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 constant PathMax (line 15) | PathMax = 0x3ff 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 off64 (line 25) | type off64 type off (line 26) | type off type Mode_t (line 27) | type Mode_t type Timespec (line 29) | type Timespec struct type Timeval (line 34) | 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 112) | type StatxTimestamp struct type Statx_t (line 114) | type Statx_t struct type Dirent (line 116) | type Dirent struct type RawSockaddrInet4 (line 124) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 132) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 141) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 147) | type RawSockaddrDatalink struct type RawSockaddr (line 158) | type RawSockaddr struct type RawSockaddrAny (line 164) | type RawSockaddrAny struct type _Socklen (line 169) | type _Socklen type Cmsghdr (line 171) | type Cmsghdr struct type ICMPv6Filter (line 177) | type ICMPv6Filter struct type Iovec (line 181) | type Iovec struct type IPMreq (line 186) | type IPMreq struct type IPv6Mreq (line 191) | type IPv6Mreq struct type IPv6MTUInfo (line 196) | type IPv6MTUInfo struct type Linger (line 201) | type Linger struct type Msghdr (line 206) | type Msghdr struct constant SizeofSockaddrInet4 (line 217) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 218) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 219) | SizeofSockaddrAny = 0x404 constant SizeofSockaddrUnix (line 220) | SizeofSockaddrUnix = 0x401 constant SizeofSockaddrDatalink (line 221) | SizeofSockaddrDatalink = 0x80 constant SizeofLinger (line 222) | SizeofLinger = 0x8 constant SizeofIovec (line 223) | SizeofIovec = 0x8 constant SizeofIPMreq (line 224) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 225) | SizeofIPv6Mreq = 0x14 constant SizeofIPv6MTUInfo (line 226) | SizeofIPv6MTUInfo = 0x20 constant SizeofMsghdr (line 227) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 228) | SizeofCmsghdr = 0xc constant SizeofICMPv6Filter (line 229) | SizeofICMPv6Filter = 0x20 constant SizeofIfMsghdr (line 233) | SizeofIfMsghdr = 0x10 type IfMsgHdr (line 236) | type IfMsgHdr struct type FdSet (line 247) | type FdSet struct type Utsname (line 251) | type Utsname struct type Ustat_t (line 259) | type Ustat_t struct type Sigset_t (line 261) | type Sigset_t struct constant AT_FDCWD (line 267) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 268) | AT_REMOVEDIR = 0x1 constant AT_SYMLINK_NOFOLLOW (line 269) | AT_SYMLINK_NOFOLLOW = 0x1 type Termios (line 272) | type Termios struct type Termio (line 280) | type Termio struct type Winsize (line 290) | type Winsize struct type PollFd (line 297) | type PollFd struct constant POLLERR (line 304) | POLLERR = 0x4000 constant POLLHUP (line 305) | POLLHUP = 0x2000 constant POLLIN (line 306) | POLLIN = 0x1 constant POLLNVAL (line 307) | POLLNVAL = 0x8000 constant POLLOUT (line 308) | POLLOUT = 0x2 constant POLLPRI (line 309) | POLLPRI = 0x4 constant POLLRDBAND (line 310) | POLLRDBAND = 0x20 constant POLLRDNORM (line 311) | POLLRDNORM = 0x10 constant POLLWRBAND (line 312) | POLLWRBAND = 0x40 constant POLLWRNORM (line 313) | POLLWRNORM = 0x2 type Flock_t (line 316) | type Flock_t struct type Fsid_t (line 326) | type Fsid_t struct type Fsid64_t (line 329) | type Fsid64_t struct type Statfs_t (line 333) | type Statfs_t struct constant RNDGETENTCNT (line 354) | RNDGETENTCNT = 0x80045200 FILE: vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 constant SizeofLongLong (line 14) | SizeofLongLong = 0x8 constant PathMax (line 15) | PathMax = 0x3ff 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 off64 (line 25) | type off64 type off (line 26) | type off type Mode_t (line 27) | type Mode_t type Timespec (line 29) | type Timespec struct type Timeval (line 34) | type Timeval struct type Timeval32 (line 40) | type Timeval32 struct type Timex (line 45) | type Timex struct type Time_t (line 47) | type Time_t type Tms (line 49) | type Tms struct type Utimbuf (line 51) | type Utimbuf struct type Timezone (line 56) | type Timezone struct type Rusage (line 61) | type Rusage struct type Rlimit (line 80) | type Rlimit struct type Pid_t (line 85) | type Pid_t type _Gid_t (line 87) | type _Gid_t type dev_t (line 89) | type dev_t type Stat_t (line 91) | type Stat_t struct type StatxTimestamp (line 115) | type StatxTimestamp struct type Statx_t (line 117) | type Statx_t struct type Dirent (line 119) | type Dirent struct type RawSockaddrInet4 (line 128) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 136) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 145) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 151) | type RawSockaddrDatalink struct type RawSockaddr (line 162) | type RawSockaddr struct type RawSockaddrAny (line 168) | type RawSockaddrAny struct type _Socklen (line 173) | type _Socklen type Cmsghdr (line 175) | type Cmsghdr struct type ICMPv6Filter (line 181) | type ICMPv6Filter struct type Iovec (line 185) | type Iovec struct type IPMreq (line 190) | type IPMreq struct type IPv6Mreq (line 195) | type IPv6Mreq struct type IPv6MTUInfo (line 200) | type IPv6MTUInfo struct type Linger (line 205) | type Linger struct type Msghdr (line 210) | type Msghdr struct constant SizeofSockaddrInet4 (line 221) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 222) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 223) | SizeofSockaddrAny = 0x404 constant SizeofSockaddrUnix (line 224) | SizeofSockaddrUnix = 0x401 constant SizeofSockaddrDatalink (line 225) | SizeofSockaddrDatalink = 0x80 constant SizeofLinger (line 226) | SizeofLinger = 0x8 constant SizeofIovec (line 227) | SizeofIovec = 0x10 constant SizeofIPMreq (line 228) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 229) | SizeofIPv6Mreq = 0x14 constant SizeofIPv6MTUInfo (line 230) | SizeofIPv6MTUInfo = 0x20 constant SizeofMsghdr (line 231) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 232) | SizeofCmsghdr = 0xc constant SizeofICMPv6Filter (line 233) | SizeofICMPv6Filter = 0x20 constant SizeofIfMsghdr (line 237) | SizeofIfMsghdr = 0x10 type IfMsgHdr (line 240) | type IfMsgHdr struct type FdSet (line 251) | type FdSet struct type Utsname (line 255) | type Utsname struct type Ustat_t (line 263) | type Ustat_t struct type Sigset_t (line 265) | type Sigset_t struct constant AT_FDCWD (line 270) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 271) | AT_REMOVEDIR = 0x1 constant AT_SYMLINK_NOFOLLOW (line 272) | AT_SYMLINK_NOFOLLOW = 0x1 type Termios (line 275) | type Termios struct type Termio (line 283) | type Termio struct type Winsize (line 293) | type Winsize struct type PollFd (line 300) | type PollFd struct constant POLLERR (line 307) | POLLERR = 0x4000 constant POLLHUP (line 308) | POLLHUP = 0x2000 constant POLLIN (line 309) | POLLIN = 0x1 constant POLLNVAL (line 310) | POLLNVAL = 0x8000 constant POLLOUT (line 311) | POLLOUT = 0x2 constant POLLPRI (line 312) | POLLPRI = 0x4 constant POLLRDBAND (line 313) | POLLRDBAND = 0x20 constant POLLRDNORM (line 314) | POLLRDNORM = 0x10 constant POLLWRBAND (line 315) | POLLWRBAND = 0x40 constant POLLWRNORM (line 316) | POLLWRNORM = 0x2 type Flock_t (line 319) | type Flock_t struct type Fsid_t (line 329) | type Fsid_t struct type Fsid64_t (line 332) | type Fsid64_t struct type Statfs_t (line 336) | type Statfs_t struct constant RNDGETENTCNT (line 358) | RNDGETENTCNT = 0x80045200 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 35) | type Timeval32 struct type Rusage (line 40) | type Rusage struct type Rlimit (line 59) | type Rlimit struct type _Gid_t (line 64) | type _Gid_t type Stat_t (line 66) | type Stat_t struct type Statfs_t (line 87) | type Statfs_t struct type Flock_t (line 107) | type Flock_t struct type Fstore_t (line 115) | type Fstore_t struct type Radvisory_t (line 123) | type Radvisory_t struct type Fbootstraptransfer_t (line 129) | type Fbootstraptransfer_t struct type Log2phys_t (line 135) | type Log2phys_t struct type Fsid (line 140) | type Fsid struct type Dirent (line 144) | type Dirent struct constant PathMax (line 155) | PathMax = 0x400 type RawSockaddrInet4 (line 158) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 166) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 175) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 181) | type RawSockaddrDatalink struct type RawSockaddr (line 192) | type RawSockaddr struct type RawSockaddrAny (line 198) | type RawSockaddrAny struct type RawSockaddrCtl (line 203) | type RawSockaddrCtl struct type _Socklen (line 212) | type _Socklen type Xucred (line 214) | type Xucred struct type Linger (line 221) | type Linger struct type Iovec (line 226) | type Iovec struct type IPMreq (line 231) | type IPMreq struct type IPMreqn (line 236) | type IPMreqn struct type IPv6Mreq (line 242) | type IPv6Mreq struct type Msghdr (line 247) | type Msghdr struct type Cmsghdr (line 257) | type Cmsghdr struct type Inet4Pktinfo (line 263) | type Inet4Pktinfo struct type Inet6Pktinfo (line 269) | type Inet6Pktinfo struct type IPv6MTUInfo (line 274) | type IPv6MTUInfo struct type ICMPv6Filter (line 279) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 284) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 285) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 286) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 287) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 288) | SizeofSockaddrDatalink = 0x14 constant SizeofSockaddrCtl (line 289) | SizeofSockaddrCtl = 0x20 constant SizeofXucred (line 290) | SizeofXucred = 0x4c constant SizeofLinger (line 291) | SizeofLinger = 0x8 constant SizeofIovec (line 292) | SizeofIovec = 0x10 constant SizeofIPMreq (line 293) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 294) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 295) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 296) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 297) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 298) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 299) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 300) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 301) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 305) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 306) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 307) | PTRACE_KILL = 0x8 type Kevent_t (line 310) | type Kevent_t struct type FdSet (line 319) | type FdSet struct constant SizeofIfMsghdr (line 324) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 325) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 326) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 327) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 328) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 329) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 330) | SizeofRtMetrics = 0x38 type IfMsghdr (line 333) | type IfMsghdr struct type IfData (line 343) | type IfData struct type IfaMsghdr (line 375) | type IfaMsghdr struct type IfmaMsghdr (line 385) | type IfmaMsghdr struct type IfmaMsghdr2 (line 395) | type IfmaMsghdr2 struct type RtMsghdr (line 405) | type RtMsghdr struct type RtMetrics (line 420) | type RtMetrics struct constant SizeofBpfVersion (line 436) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 437) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 438) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 439) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 440) | SizeofBpfHdr = 0x14 type BpfVersion (line 443) | type BpfVersion struct type BpfStat (line 448) | type BpfStat struct type BpfProgram (line 453) | type BpfProgram struct type BpfInsn (line 458) | type BpfInsn struct type BpfHdr (line 465) | type BpfHdr struct type Termios (line 473) | type Termios struct type Winsize (line 483) | type Winsize struct constant AT_FDCWD (line 491) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 492) | AT_REMOVEDIR = 0x80 constant AT_SYMLINK_FOLLOW (line 493) | AT_SYMLINK_FOLLOW = 0x40 constant AT_SYMLINK_NOFOLLOW (line 494) | AT_SYMLINK_NOFOLLOW = 0x20 type PollFd (line 497) | type PollFd struct constant POLLERR (line 504) | POLLERR = 0x8 constant POLLHUP (line 505) | POLLHUP = 0x10 constant POLLIN (line 506) | POLLIN = 0x1 constant POLLNVAL (line 507) | POLLNVAL = 0x20 constant POLLOUT (line 508) | POLLOUT = 0x4 constant POLLPRI (line 509) | POLLPRI = 0x2 constant POLLRDBAND (line 510) | POLLRDBAND = 0x80 constant POLLRDNORM (line 511) | POLLRDNORM = 0x40 constant POLLWRBAND (line 512) | POLLWRBAND = 0x100 constant POLLWRNORM (line 513) | POLLWRNORM = 0x4 type Utsname (line 516) | type Utsname struct constant SizeofClockinfo (line 524) | SizeofClockinfo = 0x14 type Clockinfo (line 526) | type Clockinfo struct type CtlInfo (line 534) | type CtlInfo struct constant SizeofKinfoProc (line 539) | SizeofKinfoProc = 0x288 type Eproc (line 541) | type Eproc struct type ExternProc (line 564) | type ExternProc struct type Itimerval (line 608) | type Itimerval struct type KinfoProc (line 613) | type KinfoProc struct type Vmspace (line 618) | type Vmspace struct type Pcred (line 625) | type Pcred struct type Ucred (line 636) | type Ucred struct FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 35) | type Timeval32 struct type Rusage (line 40) | type Rusage struct type Rlimit (line 59) | type Rlimit struct type _Gid_t (line 64) | type _Gid_t type Stat_t (line 66) | type Stat_t struct type Statfs_t (line 87) | type Statfs_t struct type Flock_t (line 107) | type Flock_t struct type Fstore_t (line 115) | type Fstore_t struct type Radvisory_t (line 123) | type Radvisory_t struct type Fbootstraptransfer_t (line 129) | type Fbootstraptransfer_t struct type Log2phys_t (line 135) | type Log2phys_t struct type Fsid (line 140) | type Fsid struct type Dirent (line 144) | type Dirent struct constant PathMax (line 155) | PathMax = 0x400 type RawSockaddrInet4 (line 158) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 166) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 175) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 181) | type RawSockaddrDatalink struct type RawSockaddr (line 192) | type RawSockaddr struct type RawSockaddrAny (line 198) | type RawSockaddrAny struct type RawSockaddrCtl (line 203) | type RawSockaddrCtl struct type _Socklen (line 212) | type _Socklen type Xucred (line 214) | type Xucred struct type Linger (line 221) | type Linger struct type Iovec (line 226) | type Iovec struct type IPMreq (line 231) | type IPMreq struct type IPMreqn (line 236) | type IPMreqn struct type IPv6Mreq (line 242) | type IPv6Mreq struct type Msghdr (line 247) | type Msghdr struct type Cmsghdr (line 257) | type Cmsghdr struct type Inet4Pktinfo (line 263) | type Inet4Pktinfo struct type Inet6Pktinfo (line 269) | type Inet6Pktinfo struct type IPv6MTUInfo (line 274) | type IPv6MTUInfo struct type ICMPv6Filter (line 279) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 284) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 285) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 286) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 287) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 288) | SizeofSockaddrDatalink = 0x14 constant SizeofSockaddrCtl (line 289) | SizeofSockaddrCtl = 0x20 constant SizeofXucred (line 290) | SizeofXucred = 0x4c constant SizeofLinger (line 291) | SizeofLinger = 0x8 constant SizeofIovec (line 292) | SizeofIovec = 0x10 constant SizeofIPMreq (line 293) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 294) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 295) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 296) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 297) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 298) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 299) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 300) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 301) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 305) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 306) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 307) | PTRACE_KILL = 0x8 type Kevent_t (line 310) | type Kevent_t struct type FdSet (line 319) | type FdSet struct constant SizeofIfMsghdr (line 324) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 325) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 326) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 327) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 328) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 329) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 330) | SizeofRtMetrics = 0x38 type IfMsghdr (line 333) | type IfMsghdr struct type IfData (line 343) | type IfData struct type IfaMsghdr (line 375) | type IfaMsghdr struct type IfmaMsghdr (line 385) | type IfmaMsghdr struct type IfmaMsghdr2 (line 395) | type IfmaMsghdr2 struct type RtMsghdr (line 405) | type RtMsghdr struct type RtMetrics (line 420) | type RtMetrics struct constant SizeofBpfVersion (line 436) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 437) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 438) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 439) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 440) | SizeofBpfHdr = 0x14 type BpfVersion (line 443) | type BpfVersion struct type BpfStat (line 448) | type BpfStat struct type BpfProgram (line 453) | type BpfProgram struct type BpfInsn (line 458) | type BpfInsn struct type BpfHdr (line 465) | type BpfHdr struct type Termios (line 473) | type Termios struct type Winsize (line 483) | type Winsize struct constant AT_FDCWD (line 491) | AT_FDCWD = -0x2 constant AT_REMOVEDIR (line 492) | AT_REMOVEDIR = 0x80 constant AT_SYMLINK_FOLLOW (line 493) | AT_SYMLINK_FOLLOW = 0x40 constant AT_SYMLINK_NOFOLLOW (line 494) | AT_SYMLINK_NOFOLLOW = 0x20 type PollFd (line 497) | type PollFd struct constant POLLERR (line 504) | POLLERR = 0x8 constant POLLHUP (line 505) | POLLHUP = 0x10 constant POLLIN (line 506) | POLLIN = 0x1 constant POLLNVAL (line 507) | POLLNVAL = 0x20 constant POLLOUT (line 508) | POLLOUT = 0x4 constant POLLPRI (line 509) | POLLPRI = 0x2 constant POLLRDBAND (line 510) | POLLRDBAND = 0x80 constant POLLRDNORM (line 511) | POLLRDNORM = 0x40 constant POLLWRBAND (line 512) | POLLWRBAND = 0x100 constant POLLWRNORM (line 513) | POLLWRNORM = 0x4 type Utsname (line 516) | type Utsname struct constant SizeofClockinfo (line 524) | SizeofClockinfo = 0x14 type Clockinfo (line 526) | type Clockinfo struct type CtlInfo (line 534) | type CtlInfo struct constant SizeofKinfoProc (line 539) | SizeofKinfoProc = 0x288 type Eproc (line 541) | type Eproc struct type ExternProc (line 564) | type ExternProc struct type Itimerval (line 608) | type Itimerval struct type KinfoProc (line 613) | type KinfoProc struct type Vmspace (line 618) | type Vmspace struct type Pcred (line 625) | type Pcred struct type Ucred (line 636) | type Ucred struct FILE: vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 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 82) | type Statfs_t struct type Flock_t (line 107) | type Flock_t struct type Dirent (line 115) | 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 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 = 0x36 constant SizeofLinger (line 237) | SizeofLinger = 0x8 constant SizeofIovec (line 238) | SizeofIovec = 0x10 constant SizeofIPMreq (line 239) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 240) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 241) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 242) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 243) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 244) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 245) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 249) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 250) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 251) | PTRACE_KILL = 0x8 type Kevent_t (line 254) | type Kevent_t struct type FdSet (line 263) | type FdSet struct constant SizeofIfMsghdr (line 268) | SizeofIfMsghdr = 0xb0 constant SizeofIfData (line 269) | SizeofIfData = 0xa0 constant SizeofIfaMsghdr (line 270) | SizeofIfaMsghdr = 0x18 constant SizeofIfmaMsghdr (line 271) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 272) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 273) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 274) | SizeofRtMetrics = 0x70 type IfMsghdr (line 277) | type IfMsghdr struct type IfData (line 287) | type IfData struct type IfaMsghdr (line 314) | type IfaMsghdr struct type IfmaMsghdr (line 325) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 334) | type IfAnnounceMsghdr struct type RtMsghdr (line 343) | type RtMsghdr struct type RtMetrics (line 358) | type RtMetrics 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 = 0x20 type BpfVersion (line 384) | type BpfVersion struct type BpfStat (line 389) | type BpfStat struct type BpfProgram (line 394) | type BpfProgram struct type BpfInsn (line 399) | type BpfInsn struct type BpfHdr (line 406) | type BpfHdr struct type Termios (line 414) | type Termios struct type Winsize (line 424) | type Winsize struct constant AT_FDCWD (line 432) | AT_FDCWD = 0xfffafdcd constant AT_SYMLINK_NOFOLLOW (line 433) | AT_SYMLINK_NOFOLLOW = 0x1 constant AT_REMOVEDIR (line 434) | AT_REMOVEDIR = 0x2 constant AT_EACCESS (line 435) | AT_EACCESS = 0x4 constant AT_SYMLINK_FOLLOW (line 436) | AT_SYMLINK_FOLLOW = 0x8 type PollFd (line 439) | type PollFd struct constant POLLERR (line 446) | POLLERR = 0x8 constant POLLHUP (line 447) | POLLHUP = 0x10 constant POLLIN (line 448) | POLLIN = 0x1 constant POLLNVAL (line 449) | POLLNVAL = 0x20 constant POLLOUT (line 450) | POLLOUT = 0x4 constant POLLPRI (line 451) | POLLPRI = 0x2 constant POLLRDBAND (line 452) | POLLRDBAND = 0x80 constant POLLRDNORM (line 453) | POLLRDNORM = 0x40 constant POLLWRBAND (line 454) | POLLWRBAND = 0x100 constant POLLWRNORM (line 455) | POLLWRNORM = 0x4 type Utsname (line 458) | type Utsname struct constant SizeofClockinfo (line 466) | SizeofClockinfo = 0x14 type Clockinfo (line 468) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_386.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 Rusage (line 34) | type Rusage struct type Rlimit (line 53) | type Rlimit struct type _Gid_t (line 58) | type _Gid_t constant _statfsVersion (line 61) | _statfsVersion = 0x20140518 constant _dirblksiz (line 62) | _dirblksiz = 0x400 type Stat_t (line 65) | type Stat_t struct type stat_freebsd11_t (line 91) | type stat_freebsd11_t struct type Statfs_t (line 112) | type Statfs_t struct type statfs_freebsd11_t (line 137) | type statfs_freebsd11_t struct type Flock_t (line 162) | type Flock_t struct type Dirent (line 171) | type Dirent struct type dirent_freebsd11 (line 182) | type dirent_freebsd11 struct type Fsid (line 190) | type Fsid struct constant PathMax (line 195) | PathMax = 0x400 constant FADV_NORMAL (line 199) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 200) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 201) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 202) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 203) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 204) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 207) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 215) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 224) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 230) | type RawSockaddrDatalink struct type RawSockaddr (line 241) | type RawSockaddr struct type RawSockaddrAny (line 247) | type RawSockaddrAny struct type _Socklen (line 252) | type _Socklen type Xucred (line 254) | type Xucred struct type Linger (line 262) | type Linger struct type Iovec (line 267) | type Iovec struct type IPMreq (line 272) | type IPMreq struct type IPMreqn (line 277) | type IPMreqn struct type IPv6Mreq (line 283) | type IPv6Mreq struct type Msghdr (line 288) | type Msghdr struct type Cmsghdr (line 298) | type Cmsghdr struct type Inet6Pktinfo (line 304) | type Inet6Pktinfo struct type IPv6MTUInfo (line 309) | type IPv6MTUInfo struct type ICMPv6Filter (line 314) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 319) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 320) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 321) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 322) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 323) | SizeofSockaddrDatalink = 0x36 constant SizeofXucred (line 324) | SizeofXucred = 0x50 constant SizeofLinger (line 325) | SizeofLinger = 0x8 constant SizeofIovec (line 326) | SizeofIovec = 0x8 constant SizeofIPMreq (line 327) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 328) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 329) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 330) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 331) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 332) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 333) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 334) | SizeofICMPv6Filter = 0x20 constant PTRACE_ATTACH (line 338) | PTRACE_ATTACH = 0xa constant PTRACE_CONT (line 339) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 340) | PTRACE_DETACH = 0xb constant PTRACE_GETFPREGS (line 341) | PTRACE_GETFPREGS = 0x23 constant PTRACE_GETFSBASE (line 342) | PTRACE_GETFSBASE = 0x47 constant PTRACE_GETLWPLIST (line 343) | PTRACE_GETLWPLIST = 0xf constant PTRACE_GETNUMLWPS (line 344) | PTRACE_GETNUMLWPS = 0xe constant PTRACE_GETREGS (line 345) | PTRACE_GETREGS = 0x21 constant PTRACE_GETXSTATE (line 346) | PTRACE_GETXSTATE = 0x45 constant PTRACE_IO (line 347) | PTRACE_IO = 0xc constant PTRACE_KILL (line 348) | PTRACE_KILL = 0x8 constant PTRACE_LWPEVENTS (line 349) | PTRACE_LWPEVENTS = 0x18 constant PTRACE_LWPINFO (line 350) | PTRACE_LWPINFO = 0xd constant PTRACE_SETFPREGS (line 351) | PTRACE_SETFPREGS = 0x24 constant PTRACE_SETREGS (line 352) | PTRACE_SETREGS = 0x22 constant PTRACE_SINGLESTEP (line 353) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_TRACEME (line 354) | PTRACE_TRACEME = 0x0 constant PIOD_READ_D (line 358) | PIOD_READ_D = 0x1 constant PIOD_WRITE_D (line 359) | PIOD_WRITE_D = 0x2 constant PIOD_READ_I (line 360) | PIOD_READ_I = 0x3 constant PIOD_WRITE_I (line 361) | PIOD_WRITE_I = 0x4 constant PL_FLAG_BORN (line 365) | PL_FLAG_BORN = 0x100 constant PL_FLAG_EXITED (line 366) | PL_FLAG_EXITED = 0x200 constant PL_FLAG_SI (line 367) | PL_FLAG_SI = 0x20 constant TRAP_BRKPT (line 371) | TRAP_BRKPT = 0x1 constant TRAP_TRACE (line 372) | TRAP_TRACE = 0x2 type PtraceLwpInfoStruct (line 375) | type PtraceLwpInfoStruct struct type __Siginfo (line 388) | type __Siginfo struct type Sigset_t (line 400) | type Sigset_t struct type Reg (line 404) | type Reg struct type FpReg (line 426) | type FpReg struct type PtraceIoDesc (line 433) | type PtraceIoDesc struct type Kevent_t (line 440) | type Kevent_t struct type FdSet (line 449) | type FdSet struct constant sizeofIfMsghdr (line 454) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 455) | SizeofIfMsghdr = 0x60 constant sizeofIfData (line 456) | sizeofIfData = 0x98 constant SizeofIfData (line 457) | SizeofIfData = 0x50 constant SizeofIfaMsghdr (line 458) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 459) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 460) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 461) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 462) | SizeofRtMetrics = 0x38 type ifMsghdr (line 465) | type ifMsghdr struct type IfMsghdr (line 476) | type IfMsghdr struct type ifData (line 486) | type ifData struct type IfData (line 514) | type IfData struct type IfaMsghdr (line 542) | type IfaMsghdr struct type IfmaMsghdr (line 553) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 563) | type IfAnnounceMsghdr struct type RtMsghdr (line 572) | type RtMsghdr struct type RtMetrics (line 588) | type RtMetrics struct constant SizeofBpfVersion (line 604) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 605) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 606) | SizeofBpfZbuf = 0xc constant SizeofBpfProgram (line 607) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 608) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 609) | SizeofBpfHdr = 0x14 constant SizeofBpfZbufHeader (line 610) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 613) | type BpfVersion struct type BpfStat (line 618) | type BpfStat struct type BpfZbuf (line 623) | type BpfZbuf struct type BpfProgram (line 629) | type BpfProgram struct type BpfInsn (line 634) | type BpfInsn struct type BpfHdr (line 641) | type BpfHdr struct type BpfZbufHeader (line 649) | type BpfZbufHeader struct type Termios (line 656) | type Termios struct type Winsize (line 666) | type Winsize struct constant AT_FDCWD (line 674) | AT_FDCWD = -0x64 constant AT_EACCESS (line 675) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 676) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 677) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 678) | AT_REMOVEDIR = 0x800 type PollFd (line 681) | type PollFd struct constant POLLERR (line 688) | POLLERR = 0x8 constant POLLHUP (line 689) | POLLHUP = 0x10 constant POLLIN (line 690) | POLLIN = 0x1 constant POLLINIGNEOF (line 691) | POLLINIGNEOF = 0x2000 constant POLLNVAL (line 692) | POLLNVAL = 0x20 constant POLLOUT (line 693) | POLLOUT = 0x4 constant POLLPRI (line 694) | POLLPRI = 0x2 constant POLLRDBAND (line 695) | POLLRDBAND = 0x80 constant POLLRDNORM (line 696) | POLLRDNORM = 0x40 constant POLLWRBAND (line 697) | POLLWRBAND = 0x100 constant POLLWRNORM (line 698) | POLLWRNORM = 0x4 type CapRights (line 701) | type CapRights struct type Utsname (line 705) | type Utsname struct constant SizeofClockinfo (line 713) | SizeofClockinfo = 0x14 type Clockinfo (line 715) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 Rusage (line 34) | type Rusage struct type Rlimit (line 53) | type Rlimit struct type _Gid_t (line 58) | type _Gid_t constant _statfsVersion (line 61) | _statfsVersion = 0x20140518 constant _dirblksiz (line 62) | _dirblksiz = 0x400 type Stat_t (line 65) | type Stat_t struct type stat_freebsd11_t (line 87) | type stat_freebsd11_t struct type Statfs_t (line 107) | type Statfs_t struct type statfs_freebsd11_t (line 132) | type statfs_freebsd11_t struct type Flock_t (line 157) | type Flock_t struct type Dirent (line 167) | type Dirent struct type dirent_freebsd11 (line 178) | type dirent_freebsd11 struct type Fsid (line 186) | type Fsid struct constant PathMax (line 191) | PathMax = 0x400 constant FADV_NORMAL (line 195) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 196) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 197) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 198) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 199) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 200) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 203) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 211) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 220) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 226) | type RawSockaddrDatalink struct type RawSockaddr (line 237) | type RawSockaddr struct type RawSockaddrAny (line 243) | type RawSockaddrAny struct type _Socklen (line 248) | type _Socklen type Xucred (line 250) | type Xucred struct type Linger (line 258) | type Linger struct type Iovec (line 263) | type Iovec struct type IPMreq (line 268) | type IPMreq struct type IPMreqn (line 273) | type IPMreqn struct type IPv6Mreq (line 279) | type IPv6Mreq struct type Msghdr (line 284) | type Msghdr struct type Cmsghdr (line 294) | type Cmsghdr struct type Inet6Pktinfo (line 300) | type Inet6Pktinfo struct type IPv6MTUInfo (line 305) | type IPv6MTUInfo struct type ICMPv6Filter (line 310) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 315) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 316) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 317) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 318) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 319) | SizeofSockaddrDatalink = 0x36 constant SizeofXucred (line 320) | SizeofXucred = 0x58 constant SizeofLinger (line 321) | SizeofLinger = 0x8 constant SizeofIovec (line 322) | SizeofIovec = 0x10 constant SizeofIPMreq (line 323) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 324) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 325) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 326) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 327) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 328) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 329) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 330) | SizeofICMPv6Filter = 0x20 constant PTRACE_ATTACH (line 334) | PTRACE_ATTACH = 0xa constant PTRACE_CONT (line 335) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 336) | PTRACE_DETACH = 0xb constant PTRACE_GETFPREGS (line 337) | PTRACE_GETFPREGS = 0x23 constant PTRACE_GETFSBASE (line 338) | PTRACE_GETFSBASE = 0x47 constant PTRACE_GETLWPLIST (line 339) | PTRACE_GETLWPLIST = 0xf constant PTRACE_GETNUMLWPS (line 340) | PTRACE_GETNUMLWPS = 0xe constant PTRACE_GETREGS (line 341) | PTRACE_GETREGS = 0x21 constant PTRACE_GETXSTATE (line 342) | PTRACE_GETXSTATE = 0x45 constant PTRACE_IO (line 343) | PTRACE_IO = 0xc constant PTRACE_KILL (line 344) | PTRACE_KILL = 0x8 constant PTRACE_LWPEVENTS (line 345) | PTRACE_LWPEVENTS = 0x18 constant PTRACE_LWPINFO (line 346) | PTRACE_LWPINFO = 0xd constant PTRACE_SETFPREGS (line 347) | PTRACE_SETFPREGS = 0x24 constant PTRACE_SETREGS (line 348) | PTRACE_SETREGS = 0x22 constant PTRACE_SINGLESTEP (line 349) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_TRACEME (line 350) | PTRACE_TRACEME = 0x0 constant PIOD_READ_D (line 354) | PIOD_READ_D = 0x1 constant PIOD_WRITE_D (line 355) | PIOD_WRITE_D = 0x2 constant PIOD_READ_I (line 356) | PIOD_READ_I = 0x3 constant PIOD_WRITE_I (line 357) | PIOD_WRITE_I = 0x4 constant PL_FLAG_BORN (line 361) | PL_FLAG_BORN = 0x100 constant PL_FLAG_EXITED (line 362) | PL_FLAG_EXITED = 0x200 constant PL_FLAG_SI (line 363) | PL_FLAG_SI = 0x20 constant TRAP_BRKPT (line 367) | TRAP_BRKPT = 0x1 constant TRAP_TRACE (line 368) | TRAP_TRACE = 0x2 type PtraceLwpInfoStruct (line 371) | type PtraceLwpInfoStruct struct type __Siginfo (line 384) | type __Siginfo struct type Sigset_t (line 396) | type Sigset_t struct type Reg (line 400) | type Reg struct type FpReg (line 429) | type FpReg struct type PtraceIoDesc (line 436) | type PtraceIoDesc struct type Kevent_t (line 443) | type Kevent_t struct type FdSet (line 452) | type FdSet struct constant sizeofIfMsghdr (line 457) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 458) | SizeofIfMsghdr = 0xa8 constant sizeofIfData (line 459) | sizeofIfData = 0x98 constant SizeofIfData (line 460) | SizeofIfData = 0x98 constant SizeofIfaMsghdr (line 461) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 462) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 463) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 464) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 465) | SizeofRtMetrics = 0x70 type ifMsghdr (line 468) | type ifMsghdr struct type IfMsghdr (line 479) | type IfMsghdr struct type ifData (line 489) | type ifData struct type IfData (line 517) | type IfData struct type IfaMsghdr (line 545) | type IfaMsghdr struct type IfmaMsghdr (line 556) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 566) | type IfAnnounceMsghdr struct type RtMsghdr (line 575) | type RtMsghdr struct type RtMetrics (line 591) | type RtMetrics struct constant SizeofBpfVersion (line 607) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 608) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 609) | SizeofBpfZbuf = 0x18 constant SizeofBpfProgram (line 610) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 611) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 612) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 613) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 616) | type BpfVersion struct type BpfStat (line 621) | type BpfStat struct type BpfZbuf (line 626) | type BpfZbuf struct type BpfProgram (line 632) | type BpfProgram struct type BpfInsn (line 637) | type BpfInsn struct type BpfHdr (line 644) | type BpfHdr struct type BpfZbufHeader (line 652) | type BpfZbufHeader struct type Termios (line 659) | type Termios struct type Winsize (line 669) | type Winsize struct constant AT_FDCWD (line 677) | AT_FDCWD = -0x64 constant AT_EACCESS (line 678) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 679) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 680) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 681) | AT_REMOVEDIR = 0x800 type PollFd (line 684) | type PollFd struct constant POLLERR (line 691) | POLLERR = 0x8 constant POLLHUP (line 692) | POLLHUP = 0x10 constant POLLIN (line 693) | POLLIN = 0x1 constant POLLINIGNEOF (line 694) | POLLINIGNEOF = 0x2000 constant POLLNVAL (line 695) | POLLNVAL = 0x20 constant POLLOUT (line 696) | POLLOUT = 0x4 constant POLLPRI (line 697) | POLLPRI = 0x2 constant POLLRDBAND (line 698) | POLLRDBAND = 0x80 constant POLLRDNORM (line 699) | POLLRDNORM = 0x40 constant POLLWRBAND (line 700) | POLLWRBAND = 0x100 constant POLLWRNORM (line 701) | POLLWRNORM = 0x4 type CapRights (line 704) | type CapRights struct type Utsname (line 708) | type Utsname struct constant SizeofClockinfo (line 716) | SizeofClockinfo = 0x14 type Clockinfo (line 718) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_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 30) | type Timeval struct type Rusage (line 36) | type Rusage struct type Rlimit (line 55) | type Rlimit struct type _Gid_t (line 60) | type _Gid_t constant _statfsVersion (line 63) | _statfsVersion = 0x20140518 constant _dirblksiz (line 64) | _dirblksiz = 0x400 type Stat_t (line 67) | type Stat_t struct type stat_freebsd11_t (line 89) | type stat_freebsd11_t struct type Statfs_t (line 109) | type Statfs_t struct type statfs_freebsd11_t (line 134) | type statfs_freebsd11_t struct type Flock_t (line 159) | type Flock_t struct type Dirent (line 169) | type Dirent struct type dirent_freebsd11 (line 180) | type dirent_freebsd11 struct type Fsid (line 188) | type Fsid struct constant PathMax (line 193) | PathMax = 0x400 constant FADV_NORMAL (line 197) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 198) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 199) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 200) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 201) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 202) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 205) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 213) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 222) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 228) | type RawSockaddrDatalink struct type RawSockaddr (line 239) | type RawSockaddr struct type RawSockaddrAny (line 245) | type RawSockaddrAny struct type _Socklen (line 250) | type _Socklen type Xucred (line 252) | type Xucred struct type Linger (line 260) | type Linger struct type Iovec (line 265) | type Iovec struct type IPMreq (line 270) | type IPMreq struct type IPMreqn (line 275) | type IPMreqn struct type IPv6Mreq (line 281) | type IPv6Mreq struct type Msghdr (line 286) | type Msghdr struct type Cmsghdr (line 296) | type Cmsghdr struct type Inet6Pktinfo (line 302) | type Inet6Pktinfo struct type IPv6MTUInfo (line 307) | type IPv6MTUInfo struct type ICMPv6Filter (line 312) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 317) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 318) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 319) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 320) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 321) | SizeofSockaddrDatalink = 0x36 constant SizeofXucred (line 322) | SizeofXucred = 0x50 constant SizeofLinger (line 323) | SizeofLinger = 0x8 constant SizeofIovec (line 324) | SizeofIovec = 0x8 constant SizeofIPMreq (line 325) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 326) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 327) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 328) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 329) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 330) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 331) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 332) | SizeofICMPv6Filter = 0x20 constant PTRACE_ATTACH (line 336) | PTRACE_ATTACH = 0xa constant PTRACE_CONT (line 337) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 338) | PTRACE_DETACH = 0xb constant PTRACE_GETFPREGS (line 339) | PTRACE_GETFPREGS = 0x23 constant PTRACE_GETFSBASE (line 340) | PTRACE_GETFSBASE = 0x47 constant PTRACE_GETLWPLIST (line 341) | PTRACE_GETLWPLIST = 0xf constant PTRACE_GETNUMLWPS (line 342) | PTRACE_GETNUMLWPS = 0xe constant PTRACE_GETREGS (line 343) | PTRACE_GETREGS = 0x21 constant PTRACE_GETXSTATE (line 344) | PTRACE_GETXSTATE = 0x45 constant PTRACE_IO (line 345) | PTRACE_IO = 0xc constant PTRACE_KILL (line 346) | PTRACE_KILL = 0x8 constant PTRACE_LWPEVENTS (line 347) | PTRACE_LWPEVENTS = 0x18 constant PTRACE_LWPINFO (line 348) | PTRACE_LWPINFO = 0xd constant PTRACE_SETFPREGS (line 349) | PTRACE_SETFPREGS = 0x24 constant PTRACE_SETREGS (line 350) | PTRACE_SETREGS = 0x22 constant PTRACE_SINGLESTEP (line 351) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_TRACEME (line 352) | PTRACE_TRACEME = 0x0 constant PIOD_READ_D (line 356) | PIOD_READ_D = 0x1 constant PIOD_WRITE_D (line 357) | PIOD_WRITE_D = 0x2 constant PIOD_READ_I (line 358) | PIOD_READ_I = 0x3 constant PIOD_WRITE_I (line 359) | PIOD_WRITE_I = 0x4 constant PL_FLAG_BORN (line 363) | PL_FLAG_BORN = 0x100 constant PL_FLAG_EXITED (line 364) | PL_FLAG_EXITED = 0x200 constant PL_FLAG_SI (line 365) | PL_FLAG_SI = 0x20 constant TRAP_BRKPT (line 369) | TRAP_BRKPT = 0x1 constant TRAP_TRACE (line 370) | TRAP_TRACE = 0x2 type PtraceLwpInfoStruct (line 373) | type PtraceLwpInfoStruct struct type __Siginfo (line 386) | type __Siginfo struct type Sigset_t (line 398) | type Sigset_t struct type Reg (line 402) | type Reg struct type FpReg (line 410) | type FpReg struct type PtraceIoDesc (line 415) | type PtraceIoDesc struct type Kevent_t (line 422) | type Kevent_t struct type FdSet (line 431) | type FdSet struct constant sizeofIfMsghdr (line 436) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 437) | SizeofIfMsghdr = 0x70 constant sizeofIfData (line 438) | sizeofIfData = 0x98 constant SizeofIfData (line 439) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 440) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 441) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 442) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 443) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 444) | SizeofRtMetrics = 0x38 type ifMsghdr (line 447) | type ifMsghdr struct type IfMsghdr (line 458) | type IfMsghdr struct type ifData (line 469) | type ifData struct type IfData (line 497) | type IfData struct type IfaMsghdr (line 526) | type IfaMsghdr struct type IfmaMsghdr (line 537) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 547) | type IfAnnounceMsghdr struct type RtMsghdr (line 556) | type RtMsghdr struct type RtMetrics (line 572) | type RtMetrics struct constant SizeofBpfVersion (line 588) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 589) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 590) | SizeofBpfZbuf = 0xc constant SizeofBpfProgram (line 591) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 592) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 593) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 594) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 597) | type BpfVersion struct type BpfStat (line 602) | type BpfStat struct type BpfZbuf (line 607) | type BpfZbuf struct type BpfProgram (line 613) | type BpfProgram struct type BpfInsn (line 618) | type BpfInsn struct type BpfHdr (line 625) | type BpfHdr struct type BpfZbufHeader (line 633) | type BpfZbufHeader struct type Termios (line 640) | type Termios struct type Winsize (line 650) | type Winsize struct constant AT_FDCWD (line 658) | AT_FDCWD = -0x64 constant AT_EACCESS (line 659) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 660) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 661) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 662) | AT_REMOVEDIR = 0x800 type PollFd (line 665) | type PollFd struct constant POLLERR (line 672) | POLLERR = 0x8 constant POLLHUP (line 673) | POLLHUP = 0x10 constant POLLIN (line 674) | POLLIN = 0x1 constant POLLINIGNEOF (line 675) | POLLINIGNEOF = 0x2000 constant POLLNVAL (line 676) | POLLNVAL = 0x20 constant POLLOUT (line 677) | POLLOUT = 0x4 constant POLLPRI (line 678) | POLLPRI = 0x2 constant POLLRDBAND (line 679) | POLLRDBAND = 0x80 constant POLLRDNORM (line 680) | POLLRDNORM = 0x40 constant POLLWRBAND (line 681) | POLLWRBAND = 0x100 constant POLLWRNORM (line 682) | POLLWRNORM = 0x4 type CapRights (line 685) | type CapRights struct type Utsname (line 689) | type Utsname struct constant SizeofClockinfo (line 697) | SizeofClockinfo = 0x14 type Clockinfo (line 699) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 Rusage (line 34) | type Rusage struct type Rlimit (line 53) | type Rlimit struct type _Gid_t (line 58) | type _Gid_t constant _statfsVersion (line 61) | _statfsVersion = 0x20140518 constant _dirblksiz (line 62) | _dirblksiz = 0x400 type Stat_t (line 65) | type Stat_t struct type stat_freebsd11_t (line 87) | type stat_freebsd11_t struct type Statfs_t (line 107) | type Statfs_t struct type statfs_freebsd11_t (line 132) | type statfs_freebsd11_t struct type Flock_t (line 157) | type Flock_t struct type Dirent (line 167) | type Dirent struct type dirent_freebsd11 (line 178) | type dirent_freebsd11 struct type Fsid (line 186) | type Fsid struct constant PathMax (line 191) | PathMax = 0x400 constant FADV_NORMAL (line 195) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 196) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 197) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 198) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 199) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 200) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 203) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 211) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 220) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 226) | type RawSockaddrDatalink struct type RawSockaddr (line 237) | type RawSockaddr struct type RawSockaddrAny (line 243) | type RawSockaddrAny struct type _Socklen (line 248) | type _Socklen type Xucred (line 250) | type Xucred struct type Linger (line 258) | type Linger struct type Iovec (line 263) | type Iovec struct type IPMreq (line 268) | type IPMreq struct type IPMreqn (line 273) | type IPMreqn struct type IPv6Mreq (line 279) | type IPv6Mreq struct type Msghdr (line 284) | type Msghdr struct type Cmsghdr (line 294) | type Cmsghdr struct type Inet6Pktinfo (line 300) | type Inet6Pktinfo struct type IPv6MTUInfo (line 305) | type IPv6MTUInfo struct type ICMPv6Filter (line 310) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 315) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 316) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 317) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 318) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 319) | SizeofSockaddrDatalink = 0x36 constant SizeofXucred (line 320) | SizeofXucred = 0x58 constant SizeofLinger (line 321) | SizeofLinger = 0x8 constant SizeofIovec (line 322) | SizeofIovec = 0x10 constant SizeofIPMreq (line 323) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 324) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 325) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 326) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 327) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 328) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 329) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 330) | SizeofICMPv6Filter = 0x20 constant PTRACE_ATTACH (line 334) | PTRACE_ATTACH = 0xa constant PTRACE_CONT (line 335) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 336) | PTRACE_DETACH = 0xb constant PTRACE_GETFPREGS (line 337) | PTRACE_GETFPREGS = 0x23 constant PTRACE_GETLWPLIST (line 338) | PTRACE_GETLWPLIST = 0xf constant PTRACE_GETNUMLWPS (line 339) | PTRACE_GETNUMLWPS = 0xe constant PTRACE_GETREGS (line 340) | PTRACE_GETREGS = 0x21 constant PTRACE_IO (line 341) | PTRACE_IO = 0xc constant PTRACE_KILL (line 342) | PTRACE_KILL = 0x8 constant PTRACE_LWPEVENTS (line 343) | PTRACE_LWPEVENTS = 0x18 constant PTRACE_LWPINFO (line 344) | PTRACE_LWPINFO = 0xd constant PTRACE_SETFPREGS (line 345) | PTRACE_SETFPREGS = 0x24 constant PTRACE_SETREGS (line 346) | PTRACE_SETREGS = 0x22 constant PTRACE_SINGLESTEP (line 347) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_TRACEME (line 348) | PTRACE_TRACEME = 0x0 constant PIOD_READ_D (line 352) | PIOD_READ_D = 0x1 constant PIOD_WRITE_D (line 353) | PIOD_WRITE_D = 0x2 constant PIOD_READ_I (line 354) | PIOD_READ_I = 0x3 constant PIOD_WRITE_I (line 355) | PIOD_WRITE_I = 0x4 constant PL_FLAG_BORN (line 359) | PL_FLAG_BORN = 0x100 constant PL_FLAG_EXITED (line 360) | PL_FLAG_EXITED = 0x200 constant PL_FLAG_SI (line 361) | PL_FLAG_SI = 0x20 constant TRAP_BRKPT (line 365) | TRAP_BRKPT = 0x1 constant TRAP_TRACE (line 366) | TRAP_TRACE = 0x2 type PtraceLwpInfoStruct (line 369) | type PtraceLwpInfoStruct struct type __Siginfo (line 382) | type __Siginfo struct type Sigset_t (line 394) | type Sigset_t struct type Reg (line 398) | type Reg struct type FpReg (line 407) | type FpReg struct type PtraceIoDesc (line 414) | type PtraceIoDesc struct type Kevent_t (line 421) | type Kevent_t struct type FdSet (line 430) | type FdSet struct constant sizeofIfMsghdr (line 435) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 436) | SizeofIfMsghdr = 0xa8 constant sizeofIfData (line 437) | sizeofIfData = 0x98 constant SizeofIfData (line 438) | SizeofIfData = 0x98 constant SizeofIfaMsghdr (line 439) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 440) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 441) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 442) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 443) | SizeofRtMetrics = 0x70 type ifMsghdr (line 446) | type ifMsghdr struct type IfMsghdr (line 457) | type IfMsghdr struct type ifData (line 467) | type ifData struct type IfData (line 495) | type IfData struct type IfaMsghdr (line 523) | type IfaMsghdr struct type IfmaMsghdr (line 534) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 544) | type IfAnnounceMsghdr struct type RtMsghdr (line 553) | type RtMsghdr struct type RtMetrics (line 569) | type RtMetrics struct constant SizeofBpfVersion (line 585) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 586) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 587) | SizeofBpfZbuf = 0x18 constant SizeofBpfProgram (line 588) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 589) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 590) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 591) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 594) | type BpfVersion struct type BpfStat (line 599) | type BpfStat struct type BpfZbuf (line 604) | type BpfZbuf struct type BpfProgram (line 610) | type BpfProgram struct type BpfInsn (line 615) | type BpfInsn struct type BpfHdr (line 622) | type BpfHdr struct type BpfZbufHeader (line 630) | type BpfZbufHeader struct type Termios (line 637) | type Termios struct type Winsize (line 647) | type Winsize struct constant AT_FDCWD (line 655) | AT_FDCWD = -0x64 constant AT_EACCESS (line 656) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 657) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 658) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 659) | AT_REMOVEDIR = 0x800 type PollFd (line 662) | type PollFd struct constant POLLERR (line 669) | POLLERR = 0x8 constant POLLHUP (line 670) | POLLHUP = 0x10 constant POLLIN (line 671) | POLLIN = 0x1 constant POLLINIGNEOF (line 672) | POLLINIGNEOF = 0x2000 constant POLLNVAL (line 673) | POLLNVAL = 0x20 constant POLLOUT (line 674) | POLLOUT = 0x4 constant POLLPRI (line 675) | POLLPRI = 0x2 constant POLLRDBAND (line 676) | POLLRDBAND = 0x80 constant POLLRDNORM (line 677) | POLLRDNORM = 0x40 constant POLLWRBAND (line 678) | POLLWRBAND = 0x100 constant POLLWRNORM (line 679) | POLLWRNORM = 0x4 type CapRights (line 682) | type CapRights struct type Utsname (line 686) | type Utsname struct constant SizeofClockinfo (line 694) | SizeofClockinfo = 0x14 type Clockinfo (line 696) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go constant TUNNEWPPA (line 10) | TUNNEWPPA = 0x540001 constant TUNSETPPA (line 11) | TUNSETPPA = 0x540002 constant I_STR (line 13) | I_STR = 0x5308 constant I_POP (line 14) | I_POP = 0x5303 constant I_PUSH (line 15) | I_PUSH = 0x5302 constant I_PLINK (line 16) | I_PLINK = 0x5316 constant I_PUNLINK (line 17) | I_PUNLINK = 0x5317 constant IF_UNITSEL (line 19) | IF_UNITSEL = -0x7ffb8cca type strbuf (line 22) | type strbuf struct type Strioctl (line 28) | type Strioctl struct type Lifreq (line 35) | type Lifreq struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux.go constant SizeofShort (line 9) | SizeofShort = 0x2 constant SizeofInt (line 10) | SizeofInt = 0x4 constant SizeofLongLong (line 11) | SizeofLongLong = 0x8 constant PathMax (line 12) | PathMax = 0x1000 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long_long (line 19) | type _C_long_long type ItimerSpec (line 22) | type ItimerSpec struct constant TIME_OK (line 28) | TIME_OK = 0x0 constant TIME_INS (line 29) | TIME_INS = 0x1 constant TIME_DEL (line 30) | TIME_DEL = 0x2 constant TIME_OOP (line 31) | TIME_OOP = 0x3 constant TIME_WAIT (line 32) | TIME_WAIT = 0x4 constant TIME_ERROR (line 33) | TIME_ERROR = 0x5 constant TIME_BAD (line 34) | TIME_BAD = 0x5 type Rlimit (line 37) | type Rlimit struct type _Gid_t (line 42) | type _Gid_t type StatxTimestamp (line 44) | type StatxTimestamp struct type Statx_t (line 50) | type Statx_t struct type Fsid (line 76) | type Fsid struct type FileCloneRange (line 80) | type FileCloneRange struct type RawFileDedupeRange (line 87) | type RawFileDedupeRange struct type RawFileDedupeRangeInfo (line 95) | type RawFileDedupeRangeInfo struct constant SizeofRawFileDedupeRange (line 104) | SizeofRawFileDedupeRange = 0x18 constant SizeofRawFileDedupeRangeInfo (line 105) | SizeofRawFileDedupeRangeInfo = 0x20 constant FILE_DEDUPE_RANGE_SAME (line 106) | FILE_DEDUPE_RANGE_SAME = 0x0 constant FILE_DEDUPE_RANGE_DIFFERS (line 107) | FILE_DEDUPE_RANGE_DIFFERS = 0x1 type FscryptPolicy (line 110) | type FscryptPolicy struct type FscryptKey (line 118) | type FscryptKey struct type FscryptPolicyV1 (line 124) | type FscryptPolicyV1 struct type FscryptPolicyV2 (line 132) | type FscryptPolicyV2 struct type FscryptGetPolicyExArg (line 141) | type FscryptGetPolicyExArg struct type FscryptKeySpecifier (line 146) | type FscryptKeySpecifier struct type FscryptAddKeyArg (line 152) | type FscryptAddKeyArg struct type FscryptRemoveKeyArg (line 159) | type FscryptRemoveKeyArg struct type FscryptGetKeyStatusArg (line 165) | type FscryptGetKeyStatusArg struct type DmIoctl (line 174) | type DmIoctl struct type DmTargetSpec (line 189) | type DmTargetSpec struct type DmTargetDeps (line 197) | type DmTargetDeps struct type DmTargetVersions (line 202) | type DmTargetVersions struct type DmTargetMsg (line 207) | type DmTargetMsg struct constant SizeofDmIoctl (line 212) | SizeofDmIoctl = 0x138 constant SizeofDmTargetSpec (line 213) | SizeofDmTargetSpec = 0x28 type KeyctlDHParams (line 216) | type KeyctlDHParams struct constant FADV_NORMAL (line 223) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 224) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 225) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 226) | FADV_WILLNEED = 0x3 type RawSockaddrInet4 (line 229) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 236) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 244) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 249) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 259) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 266) | type RawSockaddrHCI struct type RawSockaddrL2 (line 272) | type RawSockaddrL2 struct type RawSockaddrRFCOMM (line 281) | type RawSockaddrRFCOMM struct type RawSockaddrCAN (line 288) | type RawSockaddrCAN struct type RawSockaddrALG (line 294) | type RawSockaddrALG struct type RawSockaddrVM (line 302) | type RawSockaddrVM struct type RawSockaddrXDP (line 311) | type RawSockaddrXDP struct type RawSockaddrPPPoX (line 319) | type RawSockaddrPPPoX type RawSockaddrTIPC (line 321) | type RawSockaddrTIPC struct type RawSockaddrL2TPIP (line 328) | type RawSockaddrL2TPIP struct type RawSockaddrL2TPIP6 (line 336) | type RawSockaddrL2TPIP6 struct type RawSockaddrIUCV (line 345) | type RawSockaddrIUCV struct type RawSockaddrNFC (line 354) | type RawSockaddrNFC struct type _Socklen (line 361) | type _Socklen type Linger (line 363) | type Linger struct type IPMreq (line 368) | type IPMreq struct type IPMreqn (line 373) | type IPMreqn struct type IPv6Mreq (line 379) | type IPv6Mreq struct type PacketMreq (line 384) | type PacketMreq struct type Inet4Pktinfo (line 391) | type Inet4Pktinfo struct type Inet6Pktinfo (line 397) | type Inet6Pktinfo struct type IPv6MTUInfo (line 402) | type IPv6MTUInfo struct type ICMPv6Filter (line 407) | type ICMPv6Filter struct type Ucred (line 411) | type Ucred struct type TCPInfo (line 417) | type TCPInfo struct type CanFilter (line 450) | type CanFilter struct constant SizeofSockaddrInet4 (line 456) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 457) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 458) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 459) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 460) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 461) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 462) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrL2 (line 463) | SizeofSockaddrL2 = 0xe constant SizeofSockaddrRFCOMM (line 464) | SizeofSockaddrRFCOMM = 0xa constant SizeofSockaddrCAN (line 465) | SizeofSockaddrCAN = 0x18 constant SizeofSockaddrALG (line 466) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 467) | SizeofSockaddrVM = 0x10 constant SizeofSockaddrXDP (line 468) | SizeofSockaddrXDP = 0x10 constant SizeofSockaddrPPPoX (line 469) | SizeofSockaddrPPPoX = 0x1e constant SizeofSockaddrTIPC (line 470) | SizeofSockaddrTIPC = 0x10 constant SizeofSockaddrL2TPIP (line 471) | SizeofSockaddrL2TPIP = 0x10 constant SizeofSockaddrL2TPIP6 (line 472) | SizeofSockaddrL2TPIP6 = 0x20 constant SizeofSockaddrIUCV (line 473) | SizeofSockaddrIUCV = 0x20 constant SizeofSockaddrNFC (line 474) | SizeofSockaddrNFC = 0x10 constant SizeofLinger (line 475) | SizeofLinger = 0x8 constant SizeofIPMreq (line 476) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 477) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 478) | SizeofIPv6Mreq = 0x14 constant SizeofPacketMreq (line 479) | SizeofPacketMreq = 0x10 constant SizeofInet4Pktinfo (line 480) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 481) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 482) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 483) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 484) | SizeofUcred = 0xc constant SizeofTCPInfo (line 485) | SizeofTCPInfo = 0x68 constant SizeofCanFilter (line 486) | SizeofCanFilter = 0x8 constant NDA_UNSPEC (line 490) | NDA_UNSPEC = 0x0 constant NDA_DST (line 491) | NDA_DST = 0x1 constant NDA_LLADDR (line 492) | NDA_LLADDR = 0x2 constant NDA_CACHEINFO (line 493) | NDA_CACHEINFO = 0x3 constant NDA_PROBES (line 494) | NDA_PROBES = 0x4 constant NDA_VLAN (line 495) | NDA_VLAN = 0x5 constant NDA_PORT (line 496) | NDA_PORT = 0x6 constant NDA_VNI (line 497) | NDA_VNI = 0x7 constant NDA_IFINDEX (line 498) | NDA_IFINDEX = 0x8 constant NDA_MASTER (line 499) | NDA_MASTER = 0x9 constant NDA_LINK_NETNSID (line 500) | NDA_LINK_NETNSID = 0xa constant NDA_SRC_VNI (line 501) | NDA_SRC_VNI = 0xb constant NTF_USE (line 502) | NTF_USE = 0x1 constant NTF_SELF (line 503) | NTF_SELF = 0x2 constant NTF_MASTER (line 504) | NTF_MASTER = 0x4 constant NTF_PROXY (line 505) | NTF_PROXY = 0x8 constant NTF_EXT_LEARNED (line 506) | NTF_EXT_LEARNED = 0x10 constant NTF_OFFLOADED (line 507) | NTF_OFFLOADED = 0x20 constant NTF_ROUTER (line 508) | NTF_ROUTER = 0x80 constant NUD_INCOMPLETE (line 509) | NUD_INCOMPLETE = 0x1 constant NUD_REACHABLE (line 510) | NUD_REACHABLE = 0x2 constant NUD_STALE (line 511) | NUD_STALE = 0x4 constant NUD_DELAY (line 512) | NUD_DELAY = 0x8 constant NUD_PROBE (line 513) | NUD_PROBE = 0x10 constant NUD_FAILED (line 514) | NUD_FAILED = 0x20 constant NUD_NOARP (line 515) | NUD_NOARP = 0x40 constant NUD_PERMANENT (line 516) | NUD_PERMANENT = 0x80 constant NUD_NONE (line 517) | NUD_NONE = 0x0 constant IFA_UNSPEC (line 518) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 519) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 520) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 521) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 522) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 523) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 524) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 525) | IFA_MULTICAST = 0x7 constant IFA_FLAGS (line 526) | IFA_FLAGS = 0x8 constant IFA_RT_PRIORITY (line 527) | IFA_RT_PRIORITY = 0x9 constant IFA_TARGET_NETNSID (line 528) | IFA_TARGET_NETNSID = 0xa constant RT_SCOPE_UNIVERSE (line 529) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 530) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 531) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 532) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 533) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 534) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 535) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 536) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 537) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 538) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 539) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 540) | RTA_UNSPEC = 0x0 constant RTA_DST (line 541) | RTA_DST = 0x1 constant RTA_SRC (line 542) | RTA_SRC = 0x2 constant RTA_IIF (line 543) | RTA_IIF = 0x3 constant RTA_OIF (line 544) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 545) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 546) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 547) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 548) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 549) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 550) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 551) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 552) | RTA_TABLE = 0xf constant RTA_MARK (line 553) | RTA_MARK = 0x10 constant RTA_MFC_STATS (line 554) | RTA_MFC_STATS = 0x11 constant RTA_VIA (line 555) | RTA_VIA = 0x12 constant RTA_NEWDST (line 556) | RTA_NEWDST = 0x13 constant RTA_PREF (line 557) | RTA_PREF = 0x14 constant RTA_ENCAP_TYPE (line 558) | RTA_ENCAP_TYPE = 0x15 constant RTA_ENCAP (line 559) | RTA_ENCAP = 0x16 constant RTA_EXPIRES (line 560) | RTA_EXPIRES = 0x17 constant RTA_PAD (line 561) | RTA_PAD = 0x18 constant RTA_UID (line 562) | RTA_UID = 0x19 constant RTA_TTL_PROPAGATE (line 563) | RTA_TTL_PROPAGATE = 0x1a constant RTA_IP_PROTO (line 564) | RTA_IP_PROTO = 0x1b constant RTA_SPORT (line 565) | RTA_SPORT = 0x1c constant RTA_DPORT (line 566) | RTA_DPORT = 0x1d constant RTN_UNSPEC (line 567) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 568) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 569) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 570) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 571) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 572) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 573) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 574) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 575) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 576) | RTN_THROW = 0x9 constant RTN_NAT (line 577) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 578) | RTN_XRESOLVE = 0xb constant SizeofNlMsghdr (line 579) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 580) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 581) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 582) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 583) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 584) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 585) | SizeofIfAddrmsg = 0x8 constant SizeofIfaCacheinfo (line 586) | SizeofIfaCacheinfo = 0x10 constant SizeofRtMsg (line 587) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 588) | SizeofRtNexthop = 0x8 constant SizeofNdUseroptmsg (line 589) | SizeofNdUseroptmsg = 0x10 constant SizeofNdMsg (line 590) | SizeofNdMsg = 0xc type NlMsghdr (line 593) | type NlMsghdr struct type NlMsgerr (line 601) | type NlMsgerr struct type RtGenmsg (line 606) | type RtGenmsg struct type NlAttr (line 610) | type NlAttr struct type RtAttr (line 615) | type RtAttr struct type IfInfomsg (line 620) | type IfInfomsg struct type IfAddrmsg (line 629) | type IfAddrmsg struct type IfaCacheinfo (line 637) | type IfaCacheinfo struct type RtMsg (line 644) | type RtMsg struct type RtNexthop (line 656) | type RtNexthop struct type NdUseroptmsg (line 663) | type NdUseroptmsg struct type NdMsg (line 674) | type NdMsg struct constant SizeofSockFilter (line 685) | SizeofSockFilter = 0x8 type SockFilter (line 688) | type SockFilter struct type SockFprog (line 695) | type SockFprog struct type InotifyEvent (line 700) | type InotifyEvent struct constant SizeofInotifyEvent (line 707) | SizeofInotifyEvent = 0x10 constant SI_LOAD_SHIFT (line 709) | SI_LOAD_SHIFT = 0x10 type Utsname (line 711) | type Utsname struct constant AT_EMPTY_PATH (line 721) | AT_EMPTY_PATH = 0x1000 constant AT_FDCWD (line 722) | AT_FDCWD = -0x64 constant AT_NO_AUTOMOUNT (line 723) | AT_NO_AUTOMOUNT = 0x800 constant AT_REMOVEDIR (line 724) | AT_REMOVEDIR = 0x200 constant AT_STATX_SYNC_AS_STAT (line 726) | AT_STATX_SYNC_AS_STAT = 0x0 constant AT_STATX_FORCE_SYNC (line 727) | AT_STATX_FORCE_SYNC = 0x2000 constant AT_STATX_DONT_SYNC (line 728) | AT_STATX_DONT_SYNC = 0x4000 constant AT_SYMLINK_FOLLOW (line 730) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 731) | AT_SYMLINK_NOFOLLOW = 0x100 constant AT_EACCESS (line 733) | AT_EACCESS = 0x200 type OpenHow (line 736) | type OpenHow struct constant SizeofOpenHow (line 742) | SizeofOpenHow = 0x18 constant RESOLVE_BENEATH (line 745) | RESOLVE_BENEATH = 0x8 constant RESOLVE_IN_ROOT (line 746) | RESOLVE_IN_ROOT = 0x10 constant RESOLVE_NO_MAGICLINKS (line 747) | RESOLVE_NO_MAGICLINKS = 0x2 constant RESOLVE_NO_SYMLINKS (line 748) | RESOLVE_NO_SYMLINKS = 0x4 constant RESOLVE_NO_XDEV (line 749) | RESOLVE_NO_XDEV = 0x1 type PollFd (line 752) | type PollFd struct constant POLLIN (line 759) | POLLIN = 0x1 constant POLLPRI (line 760) | POLLPRI = 0x2 constant POLLOUT (line 761) | POLLOUT = 0x4 constant POLLERR (line 762) | POLLERR = 0x8 constant POLLHUP (line 763) | POLLHUP = 0x10 constant POLLNVAL (line 764) | POLLNVAL = 0x20 type SignalfdSiginfo (line 767) | type SignalfdSiginfo struct type Winsize (line 792) | type Winsize struct constant TASKSTATS_CMD_UNSPEC (line 800) | TASKSTATS_CMD_UNSPEC = 0x0 constant TASKSTATS_CMD_GET (line 801) | TASKSTATS_CMD_GET = 0x1 constant TASKSTATS_CMD_NEW (line 802) | TASKSTATS_CMD_NEW = 0x2 constant TASKSTATS_TYPE_UNSPEC (line 803) | TASKSTATS_TYPE_UNSPEC = 0x0 constant TASKSTATS_TYPE_PID (line 804) | TASKSTATS_TYPE_PID = 0x1 constant TASKSTATS_TYPE_TGID (line 805) | TASKSTATS_TYPE_TGID = 0x2 constant TASKSTATS_TYPE_STATS (line 806) | TASKSTATS_TYPE_STATS = 0x3 constant TASKSTATS_TYPE_AGGR_PID (line 807) | TASKSTATS_TYPE_AGGR_PID = 0x4 constant TASKSTATS_TYPE_AGGR_TGID (line 808) | TASKSTATS_TYPE_AGGR_TGID = 0x5 constant TASKSTATS_TYPE_NULL (line 809) | TASKSTATS_TYPE_NULL = 0x6 constant TASKSTATS_CMD_ATTR_UNSPEC (line 810) | TASKSTATS_CMD_ATTR_UNSPEC = 0x0 constant TASKSTATS_CMD_ATTR_PID (line 811) | TASKSTATS_CMD_ATTR_PID = 0x1 constant TASKSTATS_CMD_ATTR_TGID (line 812) | TASKSTATS_CMD_ATTR_TGID = 0x2 constant TASKSTATS_CMD_ATTR_REGISTER_CPUMASK (line 813) | TASKSTATS_CMD_ATTR_REGISTER_CPUMASK = 0x3 constant TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK (line 814) | TASKSTATS_CMD_ATTR_DEREGISTER_CPUMASK = 0x4 type CGroupStats (line 817) | type CGroupStats struct constant CGROUPSTATS_CMD_UNSPEC (line 826) | CGROUPSTATS_CMD_UNSPEC = 0x3 constant CGROUPSTATS_CMD_GET (line 827) | CGROUPSTATS_CMD_GET = 0x4 constant CGROUPSTATS_CMD_NEW (line 828) | CGROUPSTATS_CMD_NEW = 0x5 constant CGROUPSTATS_TYPE_UNSPEC (line 829) | CGROUPSTATS_TYPE_UNSPEC = 0x0 constant CGROUPSTATS_TYPE_CGROUP_STATS (line 830) | CGROUPSTATS_TYPE_CGROUP_STATS = 0x1 constant CGROUPSTATS_CMD_ATTR_UNSPEC (line 831) | CGROUPSTATS_CMD_ATTR_UNSPEC = 0x0 constant CGROUPSTATS_CMD_ATTR_FD (line 832) | CGROUPSTATS_CMD_ATTR_FD = 0x1 type Genlmsghdr (line 835) | type Genlmsghdr struct constant CTRL_CMD_UNSPEC (line 842) | CTRL_CMD_UNSPEC = 0x0 constant CTRL_CMD_NEWFAMILY (line 843) | CTRL_CMD_NEWFAMILY = 0x1 constant CTRL_CMD_DELFAMILY (line 844) | CTRL_CMD_DELFAMILY = 0x2 constant CTRL_CMD_GETFAMILY (line 845) | CTRL_CMD_GETFAMILY = 0x3 constant CTRL_CMD_NEWOPS (line 846) | CTRL_CMD_NEWOPS = 0x4 constant CTRL_CMD_DELOPS (line 847) | CTRL_CMD_DELOPS = 0x5 constant CTRL_CMD_GETOPS (line 848) | CTRL_CMD_GETOPS = 0x6 constant CTRL_CMD_NEWMCAST_GRP (line 849) | CTRL_CMD_NEWMCAST_GRP = 0x7 constant CTRL_CMD_DELMCAST_GRP (line 850) | CTRL_CMD_DELMCAST_GRP = 0x8 constant CTRL_CMD_GETMCAST_GRP (line 851) | CTRL_CMD_GETMCAST_GRP = 0x9 constant CTRL_ATTR_UNSPEC (line 852) | CTRL_ATTR_UNSPEC = 0x0 constant CTRL_ATTR_FAMILY_ID (line 853) | CTRL_ATTR_FAMILY_ID = 0x1 constant CTRL_ATTR_FAMILY_NAME (line 854) | CTRL_ATTR_FAMILY_NAME = 0x2 constant CTRL_ATTR_VERSION (line 855) | CTRL_ATTR_VERSION = 0x3 constant CTRL_ATTR_HDRSIZE (line 856) | CTRL_ATTR_HDRSIZE = 0x4 constant CTRL_ATTR_MAXATTR (line 857) | CTRL_ATTR_MAXATTR = 0x5 constant CTRL_ATTR_OPS (line 858) | CTRL_ATTR_OPS = 0x6 constant CTRL_ATTR_MCAST_GROUPS (line 859) | CTRL_ATTR_MCAST_GROUPS = 0x7 constant CTRL_ATTR_OP_UNSPEC (line 860) | CTRL_ATTR_OP_UNSPEC = 0x0 constant CTRL_ATTR_OP_ID (line 861) | CTRL_ATTR_OP_ID = 0x1 constant CTRL_ATTR_OP_FLAGS (line 862) | CTRL_ATTR_OP_FLAGS = 0x2 constant CTRL_ATTR_MCAST_GRP_UNSPEC (line 863) | CTRL_ATTR_MCAST_GRP_UNSPEC = 0x0 constant CTRL_ATTR_MCAST_GRP_NAME (line 864) | CTRL_ATTR_MCAST_GRP_NAME = 0x1 constant CTRL_ATTR_MCAST_GRP_ID (line 865) | CTRL_ATTR_MCAST_GRP_ID = 0x2 constant _CPU_SETSIZE (line 869) | _CPU_SETSIZE = 0x400 constant BDADDR_BREDR (line 873) | BDADDR_BREDR = 0x0 constant BDADDR_LE_PUBLIC (line 874) | BDADDR_LE_PUBLIC = 0x1 constant BDADDR_LE_RANDOM (line 875) | BDADDR_LE_RANDOM = 0x2 type PerfEventAttr (line 878) | type PerfEventAttr struct type PerfEventMmapPage (line 900) | type PerfEventMmapPage struct constant PerfBitDisabled (line 930) | PerfBitDisabled uint64 = CBitFieldMaskBit0 constant PerfBitInherit (line 931) | PerfBitInherit = CBitFieldMaskBit1 constant PerfBitPinned (line 932) | PerfBitPinned = CBitFieldMaskBit2 constant PerfBitExclusive (line 933) | PerfBitExclusive = CBitFieldMaskBit3 constant PerfBitExcludeUser (line 934) | PerfBitExcludeUser = CBitFieldMaskBit4 constant PerfBitExcludeKernel (line 935) | PerfBitExcludeKernel = CBitFieldMaskBit5 constant PerfBitExcludeHv (line 936) | PerfBitExcludeHv = CBitFieldMaskBit6 constant PerfBitExcludeIdle (line 937) | PerfBitExcludeIdle = CBitFieldMaskBit7 constant PerfBitMmap (line 938) | PerfBitMmap = CBitFieldMaskBit8 constant PerfBitComm (line 939) | PerfBitComm = CBitFieldMaskBit9 constant PerfBitFreq (line 940) | PerfBitFreq = CBitFieldMaskBit10 constant PerfBitInheritStat (line 941) | PerfBitInheritStat = CBitFieldMaskBit11 constant PerfBitEnableOnExec (line 942) | PerfBitEnableOnExec = CBitFieldMaskBit12 constant PerfBitTask (line 943) | PerfBitTask = CBitFieldMaskBit13 constant PerfBitWatermark (line 944) | PerfBitWatermark = CBitFieldMaskBit14 constant PerfBitPreciseIPBit1 (line 945) | PerfBitPreciseIPBit1 = CBitFieldMaskBit15 constant PerfBitPreciseIPBit2 (line 946) | PerfBitPreciseIPBit2 = CBitFieldMaskBit16 constant PerfBitMmapData (line 947) | PerfBitMmapData = CBitFieldMaskBit17 constant PerfBitSampleIDAll (line 948) | PerfBitSampleIDAll = CBitFieldMaskBit18 constant PerfBitExcludeHost (line 949) | PerfBitExcludeHost = CBitFieldMaskBit19 constant PerfBitExcludeGuest (line 950) | PerfBitExcludeGuest = CBitFieldMaskBit20 constant PerfBitExcludeCallchainKernel (line 951) | PerfBitExcludeCallchainKernel = CBitFieldMaskBit21 constant PerfBitExcludeCallchainUser (line 952) | PerfBitExcludeCallchainUser = CBitFieldMaskBit22 constant PerfBitMmap2 (line 953) | PerfBitMmap2 = CBitFieldMaskBit23 constant PerfBitCommExec (line 954) | PerfBitCommExec = CBitFieldMaskBit24 constant PerfBitUseClockID (line 955) | PerfBitUseClockID = CBitFieldMaskBit25 constant PerfBitContextSwitch (line 956) | PerfBitContextSwitch = CBitFieldMaskBit26 constant PERF_TYPE_HARDWARE (line 960) | PERF_TYPE_HARDWARE = 0x0 constant PERF_TYPE_SOFTWARE (line 961) | PERF_TYPE_SOFTWARE = 0x1 constant PERF_TYPE_TRACEPOINT (line 962) | PERF_TYPE_TRACEPOINT = 0x2 constant PERF_TYPE_HW_CACHE (line 963) | PERF_TYPE_HW_CACHE = 0x3 constant PERF_TYPE_RAW (line 964) | PERF_TYPE_RAW = 0x4 constant PERF_TYPE_BREAKPOINT (line 965) | PERF_TYPE_BREAKPOINT = 0x5 constant PERF_TYPE_MAX (line 966) | PERF_TYPE_MAX = 0x6 constant PERF_COUNT_HW_CPU_CYCLES (line 967) | PERF_COUNT_HW_CPU_CYCLES = 0x0 constant PERF_COUNT_HW_INSTRUCTIONS (line 968) | PERF_COUNT_HW_INSTRUCTIONS = 0x1 constant PERF_COUNT_HW_CACHE_REFERENCES (line 969) | PERF_COUNT_HW_CACHE_REFERENCES = 0x2 constant PERF_COUNT_HW_CACHE_MISSES (line 970) | PERF_COUNT_HW_CACHE_MISSES = 0x3 constant PERF_COUNT_HW_BRANCH_INSTRUCTIONS (line 971) | PERF_COUNT_HW_BRANCH_INSTRUCTIONS = 0x4 constant PERF_COUNT_HW_BRANCH_MISSES (line 972) | PERF_COUNT_HW_BRANCH_MISSES = 0x5 constant PERF_COUNT_HW_BUS_CYCLES (line 973) | PERF_COUNT_HW_BUS_CYCLES = 0x6 constant PERF_COUNT_HW_STALLED_CYCLES_FRONTEND (line 974) | PERF_COUNT_HW_STALLED_CYCLES_FRONTEND = 0x7 constant PERF_COUNT_HW_STALLED_CYCLES_BACKEND (line 975) | PERF_COUNT_HW_STALLED_CYCLES_BACKEND = 0x8 constant PERF_COUNT_HW_REF_CPU_CYCLES (line 976) | PERF_COUNT_HW_REF_CPU_CYCLES = 0x9 constant PERF_COUNT_HW_MAX (line 977) | PERF_COUNT_HW_MAX = 0xa constant PERF_COUNT_HW_CACHE_L1D (line 978) | PERF_COUNT_HW_CACHE_L1D = 0x0 constant PERF_COUNT_HW_CACHE_L1I (line 979) | PERF_COUNT_HW_CACHE_L1I = 0x1 constant PERF_COUNT_HW_CACHE_LL (line 980) | PERF_COUNT_HW_CACHE_LL = 0x2 constant PERF_COUNT_HW_CACHE_DTLB (line 981) | PERF_COUNT_HW_CACHE_DTLB = 0x3 constant PERF_COUNT_HW_CACHE_ITLB (line 982) | PERF_COUNT_HW_CACHE_ITLB = 0x4 constant PERF_COUNT_HW_CACHE_BPU (line 983) | PERF_COUNT_HW_CACHE_BPU = 0x5 constant PERF_COUNT_HW_CACHE_NODE (line 984) | PERF_COUNT_HW_CACHE_NODE = 0x6 constant PERF_COUNT_HW_CACHE_MAX (line 985) | PERF_COUNT_HW_CACHE_MAX = 0x7 constant PERF_COUNT_HW_CACHE_OP_READ (line 986) | PERF_COUNT_HW_CACHE_OP_READ = 0x0 constant PERF_COUNT_HW_CACHE_OP_WRITE (line 987) | PERF_COUNT_HW_CACHE_OP_WRITE = 0x1 constant PERF_COUNT_HW_CACHE_OP_PREFETCH (line 988) | PERF_COUNT_HW_CACHE_OP_PREFETCH = 0x2 constant PERF_COUNT_HW_CACHE_OP_MAX (line 989) | PERF_COUNT_HW_CACHE_OP_MAX = 0x3 constant PERF_COUNT_HW_CACHE_RESULT_ACCESS (line 990) | PERF_COUNT_HW_CACHE_RESULT_ACCESS = 0x0 constant PERF_COUNT_HW_CACHE_RESULT_MISS (line 991) | PERF_COUNT_HW_CACHE_RESULT_MISS = 0x1 constant PERF_COUNT_HW_CACHE_RESULT_MAX (line 992) | PERF_COUNT_HW_CACHE_RESULT_MAX = 0x2 constant PERF_COUNT_SW_CPU_CLOCK (line 993) | PERF_COUNT_SW_CPU_CLOCK = 0x0 constant PERF_COUNT_SW_TASK_CLOCK (line 994) | PERF_COUNT_SW_TASK_CLOCK = 0x1 constant PERF_COUNT_SW_PAGE_FAULTS (line 995) | PERF_COUNT_SW_PAGE_FAULTS = 0x2 constant PERF_COUNT_SW_CONTEXT_SWITCHES (line 996) | PERF_COUNT_SW_CONTEXT_SWITCHES = 0x3 constant PERF_COUNT_SW_CPU_MIGRATIONS (line 997) | PERF_COUNT_SW_CPU_MIGRATIONS = 0x4 constant PERF_COUNT_SW_PAGE_FAULTS_MIN (line 998) | PERF_COUNT_SW_PAGE_FAULTS_MIN = 0x5 constant PERF_COUNT_SW_PAGE_FAULTS_MAJ (line 999) | PERF_COUNT_SW_PAGE_FAULTS_MAJ = 0x6 constant PERF_COUNT_SW_ALIGNMENT_FAULTS (line 1000) | PERF_COUNT_SW_ALIGNMENT_FAULTS = 0x7 constant PERF_COUNT_SW_EMULATION_FAULTS (line 1001) | PERF_COUNT_SW_EMULATION_FAULTS = 0x8 constant PERF_COUNT_SW_DUMMY (line 1002) | PERF_COUNT_SW_DUMMY = 0x9 constant PERF_COUNT_SW_BPF_OUTPUT (line 1003) | PERF_COUNT_SW_BPF_OUTPUT = 0xa constant PERF_COUNT_SW_MAX (line 1004) | PERF_COUNT_SW_MAX = 0xb constant PERF_SAMPLE_IP (line 1005) | PERF_SAMPLE_IP = 0x1 constant PERF_SAMPLE_TID (line 1006) | PERF_SAMPLE_TID = 0x2 constant PERF_SAMPLE_TIME (line 1007) | PERF_SAMPLE_TIME = 0x4 constant PERF_SAMPLE_ADDR (line 1008) | PERF_SAMPLE_ADDR = 0x8 constant PERF_SAMPLE_READ (line 1009) | PERF_SAMPLE_READ = 0x10 constant PERF_SAMPLE_CALLCHAIN (line 1010) | PERF_SAMPLE_CALLCHAIN = 0x20 constant PERF_SAMPLE_ID (line 1011) | PERF_SAMPLE_ID = 0x40 constant PERF_SAMPLE_CPU (line 1012) | PERF_SAMPLE_CPU = 0x80 constant PERF_SAMPLE_PERIOD (line 1013) | PERF_SAMPLE_PERIOD = 0x100 constant PERF_SAMPLE_STREAM_ID (line 1014) | PERF_SAMPLE_STREAM_ID = 0x200 constant PERF_SAMPLE_RAW (line 1015) | PERF_SAMPLE_RAW = 0x400 constant PERF_SAMPLE_BRANCH_STACK (line 1016) | PERF_SAMPLE_BRANCH_STACK = 0x800 constant PERF_SAMPLE_REGS_USER (line 1017) | PERF_SAMPLE_REGS_USER = 0x1000 constant PERF_SAMPLE_STACK_USER (line 1018) | PERF_SAMPLE_STACK_USER = 0x2000 constant PERF_SAMPLE_WEIGHT (line 1019) | PERF_SAMPLE_WEIGHT = 0x4000 constant PERF_SAMPLE_DATA_SRC (line 1020) | PERF_SAMPLE_DATA_SRC = 0x8000 constant PERF_SAMPLE_IDENTIFIER (line 1021) | PERF_SAMPLE_IDENTIFIER = 0x10000 constant PERF_SAMPLE_TRANSACTION (line 1022) | PERF_SAMPLE_TRANSACTION = 0x20000 constant PERF_SAMPLE_REGS_INTR (line 1023) | PERF_SAMPLE_REGS_INTR = 0x40000 constant PERF_SAMPLE_PHYS_ADDR (line 1024) | PERF_SAMPLE_PHYS_ADDR = 0x80000 constant PERF_SAMPLE_AUX (line 1025) | PERF_SAMPLE_AUX = 0x100000 constant PERF_SAMPLE_CGROUP (line 1026) | PERF_SAMPLE_CGROUP = 0x200000 constant PERF_SAMPLE_DATA_PAGE_SIZE (line 1027) | PERF_SAMPLE_DATA_PAGE_SIZE = 0x400000 constant PERF_SAMPLE_CODE_PAGE_SIZE (line 1028) | PERF_SAMPLE_CODE_PAGE_SIZE = 0x800000 constant PERF_SAMPLE_WEIGHT_STRUCT (line 1029) | PERF_SAMPLE_WEIGHT_STRUCT = 0x1000000 constant PERF_SAMPLE_MAX (line 1030) | PERF_SAMPLE_MAX = 0x2000000 constant PERF_SAMPLE_BRANCH_USER_SHIFT (line 1031) | PERF_SAMPLE_BRANCH_USER_SHIFT = 0x0 constant PERF_SAMPLE_BRANCH_KERNEL_SHIFT (line 1032) | PERF_SAMPLE_BRANCH_KERNEL_SHIFT = 0x1 constant PERF_SAMPLE_BRANCH_HV_SHIFT (line 1033) | PERF_SAMPLE_BRANCH_HV_SHIFT = 0x2 constant PERF_SAMPLE_BRANCH_ANY_SHIFT (line 1034) | PERF_SAMPLE_BRANCH_ANY_SHIFT = 0x3 constant PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT (line 1035) | PERF_SAMPLE_BRANCH_ANY_CALL_SHIFT = 0x4 constant PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT (line 1036) | PERF_SAMPLE_BRANCH_ANY_RETURN_SHIFT = 0x5 constant PERF_SAMPLE_BRANCH_IND_CALL_SHIFT (line 1037) | PERF_SAMPLE_BRANCH_IND_CALL_SHIFT = 0x6 constant PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT (line 1038) | PERF_SAMPLE_BRANCH_ABORT_TX_SHIFT = 0x7 constant PERF_SAMPLE_BRANCH_IN_TX_SHIFT (line 1039) | PERF_SAMPLE_BRANCH_IN_TX_SHIFT = 0x8 constant PERF_SAMPLE_BRANCH_NO_TX_SHIFT (line 1040) | PERF_SAMPLE_BRANCH_NO_TX_SHIFT = 0x9 constant PERF_SAMPLE_BRANCH_COND_SHIFT (line 1041) | PERF_SAMPLE_BRANCH_COND_SHIFT = 0xa constant PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT (line 1042) | PERF_SAMPLE_BRANCH_CALL_STACK_SHIFT = 0xb constant PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT (line 1043) | PERF_SAMPLE_BRANCH_IND_JUMP_SHIFT = 0xc constant PERF_SAMPLE_BRANCH_CALL_SHIFT (line 1044) | PERF_SAMPLE_BRANCH_CALL_SHIFT = 0xd constant PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT (line 1045) | PERF_SAMPLE_BRANCH_NO_FLAGS_SHIFT = 0xe constant PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT (line 1046) | PERF_SAMPLE_BRANCH_NO_CYCLES_SHIFT = 0xf constant PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT (line 1047) | PERF_SAMPLE_BRANCH_TYPE_SAVE_SHIFT = 0x10 constant PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT (line 1048) | PERF_SAMPLE_BRANCH_HW_INDEX_SHIFT = 0x11 constant PERF_SAMPLE_BRANCH_MAX_SHIFT (line 1049) | PERF_SAMPLE_BRANCH_MAX_SHIFT = 0x12 constant PERF_SAMPLE_BRANCH_USER (line 1050) | PERF_SAMPLE_BRANCH_USER = 0x1 constant PERF_SAMPLE_BRANCH_KERNEL (line 1051) | PERF_SAMPLE_BRANCH_KERNEL = 0x2 constant PERF_SAMPLE_BRANCH_HV (line 1052) | PERF_SAMPLE_BRANCH_HV = 0x4 constant PERF_SAMPLE_BRANCH_ANY (line 1053) | PERF_SAMPLE_BRANCH_ANY = 0x8 constant PERF_SAMPLE_BRANCH_ANY_CALL (line 1054) | PERF_SAMPLE_BRANCH_ANY_CALL = 0x10 constant PERF_SAMPLE_BRANCH_ANY_RETURN (line 1055) | PERF_SAMPLE_BRANCH_ANY_RETURN = 0x20 constant PERF_SAMPLE_BRANCH_IND_CALL (line 1056) | PERF_SAMPLE_BRANCH_IND_CALL = 0x40 constant PERF_SAMPLE_BRANCH_ABORT_TX (line 1057) | PERF_SAMPLE_BRANCH_ABORT_TX = 0x80 constant PERF_SAMPLE_BRANCH_IN_TX (line 1058) | PERF_SAMPLE_BRANCH_IN_TX = 0x100 constant PERF_SAMPLE_BRANCH_NO_TX (line 1059) | PERF_SAMPLE_BRANCH_NO_TX = 0x200 constant PERF_SAMPLE_BRANCH_COND (line 1060) | PERF_SAMPLE_BRANCH_COND = 0x400 constant PERF_SAMPLE_BRANCH_CALL_STACK (line 1061) | PERF_SAMPLE_BRANCH_CALL_STACK = 0x800 constant PERF_SAMPLE_BRANCH_IND_JUMP (line 1062) | PERF_SAMPLE_BRANCH_IND_JUMP = 0x1000 constant PERF_SAMPLE_BRANCH_CALL (line 1063) | PERF_SAMPLE_BRANCH_CALL = 0x2000 constant PERF_SAMPLE_BRANCH_NO_FLAGS (line 1064) | PERF_SAMPLE_BRANCH_NO_FLAGS = 0x4000 constant PERF_SAMPLE_BRANCH_NO_CYCLES (line 1065) | PERF_SAMPLE_BRANCH_NO_CYCLES = 0x8000 constant PERF_SAMPLE_BRANCH_TYPE_SAVE (line 1066) | PERF_SAMPLE_BRANCH_TYPE_SAVE = 0x10000 constant PERF_SAMPLE_BRANCH_HW_INDEX (line 1067) | PERF_SAMPLE_BRANCH_HW_INDEX = 0x20000 constant PERF_SAMPLE_BRANCH_MAX (line 1068) | PERF_SAMPLE_BRANCH_MAX = 0x40000 constant PERF_BR_UNKNOWN (line 1069) | PERF_BR_UNKNOWN = 0x0 constant PERF_BR_COND (line 1070) | PERF_BR_COND = 0x1 constant PERF_BR_UNCOND (line 1071) | PERF_BR_UNCOND = 0x2 constant PERF_BR_IND (line 1072) | PERF_BR_IND = 0x3 constant PERF_BR_CALL (line 1073) | PERF_BR_CALL = 0x4 constant PERF_BR_IND_CALL (line 1074) | PERF_BR_IND_CALL = 0x5 constant PERF_BR_RET (line 1075) | PERF_BR_RET = 0x6 constant PERF_BR_SYSCALL (line 1076) | PERF_BR_SYSCALL = 0x7 constant PERF_BR_SYSRET (line 1077) | PERF_BR_SYSRET = 0x8 constant PERF_BR_COND_CALL (line 1078) | PERF_BR_COND_CALL = 0x9 constant PERF_BR_COND_RET (line 1079) | PERF_BR_COND_RET = 0xa constant PERF_BR_MAX (line 1080) | PERF_BR_MAX = 0xb constant PERF_SAMPLE_REGS_ABI_NONE (line 1081) | PERF_SAMPLE_REGS_ABI_NONE = 0x0 constant PERF_SAMPLE_REGS_ABI_32 (line 1082) | PERF_SAMPLE_REGS_ABI_32 = 0x1 constant PERF_SAMPLE_REGS_ABI_64 (line 1083) | PERF_SAMPLE_REGS_ABI_64 = 0x2 constant PERF_TXN_ELISION (line 1084) | PERF_TXN_ELISION = 0x1 constant PERF_TXN_TRANSACTION (line 1085) | PERF_TXN_TRANSACTION = 0x2 constant PERF_TXN_SYNC (line 1086) | PERF_TXN_SYNC = 0x4 constant PERF_TXN_ASYNC (line 1087) | PERF_TXN_ASYNC = 0x8 constant PERF_TXN_RETRY (line 1088) | PERF_TXN_RETRY = 0x10 constant PERF_TXN_CONFLICT (line 1089) | PERF_TXN_CONFLICT = 0x20 constant PERF_TXN_CAPACITY_WRITE (line 1090) | PERF_TXN_CAPACITY_WRITE = 0x40 constant PERF_TXN_CAPACITY_READ (line 1091) | PERF_TXN_CAPACITY_READ = 0x80 constant PERF_TXN_MAX (line 1092) | PERF_TXN_MAX = 0x100 constant PERF_TXN_ABORT_MASK (line 1093) | PERF_TXN_ABORT_MASK = -0x100000000 constant PERF_TXN_ABORT_SHIFT (line 1094) | PERF_TXN_ABORT_SHIFT = 0x20 constant PERF_FORMAT_TOTAL_TIME_ENABLED (line 1095) | PERF_FORMAT_TOTAL_TIME_ENABLED = 0x1 constant PERF_FORMAT_TOTAL_TIME_RUNNING (line 1096) | PERF_FORMAT_TOTAL_TIME_RUNNING = 0x2 constant PERF_FORMAT_ID (line 1097) | PERF_FORMAT_ID = 0x4 constant PERF_FORMAT_GROUP (line 1098) | PERF_FORMAT_GROUP = 0x8 constant PERF_FORMAT_MAX (line 1099) | PERF_FORMAT_MAX = 0x10 constant PERF_IOC_FLAG_GROUP (line 1100) | PERF_IOC_FLAG_GROUP = 0x1 constant PERF_RECORD_MMAP (line 1101) | PERF_RECORD_MMAP = 0x1 constant PERF_RECORD_LOST (line 1102) | PERF_RECORD_LOST = 0x2 constant PERF_RECORD_COMM (line 1103) | PERF_RECORD_COMM = 0x3 constant PERF_RECORD_EXIT (line 1104) | PERF_RECORD_EXIT = 0x4 constant PERF_RECORD_THROTTLE (line 1105) | PERF_RECORD_THROTTLE = 0x5 constant PERF_RECORD_UNTHROTTLE (line 1106) | PERF_RECORD_UNTHROTTLE = 0x6 constant PERF_RECORD_FORK (line 1107) | PERF_RECORD_FORK = 0x7 constant PERF_RECORD_READ (line 1108) | PERF_RECORD_READ = 0x8 constant PERF_RECORD_SAMPLE (line 1109) | PERF_RECORD_SAMPLE = 0x9 constant PERF_RECORD_MMAP2 (line 1110) | PERF_RECORD_MMAP2 = 0xa constant PERF_RECORD_AUX (line 1111) | PERF_RECORD_AUX = 0xb constant PERF_RECORD_ITRACE_START (line 1112) | PERF_RECORD_ITRACE_START = 0xc constant PERF_RECORD_LOST_SAMPLES (line 1113) | PERF_RECORD_LOST_SAMPLES = 0xd constant PERF_RECORD_SWITCH (line 1114) | PERF_RECORD_SWITCH = 0xe constant PERF_RECORD_SWITCH_CPU_WIDE (line 1115) | PERF_RECORD_SWITCH_CPU_WIDE = 0xf constant PERF_RECORD_NAMESPACES (line 1116) | PERF_RECORD_NAMESPACES = 0x10 constant PERF_RECORD_KSYMBOL (line 1117) | PERF_RECORD_KSYMBOL = 0x11 constant PERF_RECORD_BPF_EVENT (line 1118) | PERF_RECORD_BPF_EVENT = 0x12 constant PERF_RECORD_CGROUP (line 1119) | PERF_RECORD_CGROUP = 0x13 constant PERF_RECORD_TEXT_POKE (line 1120) | PERF_RECORD_TEXT_POKE = 0x14 constant PERF_RECORD_MAX (line 1121) | PERF_RECORD_MAX = 0x15 constant PERF_RECORD_KSYMBOL_TYPE_UNKNOWN (line 1122) | PERF_RECORD_KSYMBOL_TYPE_UNKNOWN = 0x0 constant PERF_RECORD_KSYMBOL_TYPE_BPF (line 1123) | PERF_RECORD_KSYMBOL_TYPE_BPF = 0x1 constant PERF_RECORD_KSYMBOL_TYPE_OOL (line 1124) | PERF_RECORD_KSYMBOL_TYPE_OOL = 0x2 constant PERF_RECORD_KSYMBOL_TYPE_MAX (line 1125) | PERF_RECORD_KSYMBOL_TYPE_MAX = 0x3 constant PERF_BPF_EVENT_UNKNOWN (line 1126) | PERF_BPF_EVENT_UNKNOWN = 0x0 constant PERF_BPF_EVENT_PROG_LOAD (line 1127) | PERF_BPF_EVENT_PROG_LOAD = 0x1 constant PERF_BPF_EVENT_PROG_UNLOAD (line 1128) | PERF_BPF_EVENT_PROG_UNLOAD = 0x2 constant PERF_BPF_EVENT_MAX (line 1129) | PERF_BPF_EVENT_MAX = 0x3 constant PERF_CONTEXT_HV (line 1130) | PERF_CONTEXT_HV = -0x20 constant PERF_CONTEXT_KERNEL (line 1131) | PERF_CONTEXT_KERNEL = -0x80 constant PERF_CONTEXT_USER (line 1132) | PERF_CONTEXT_USER = -0x200 constant PERF_CONTEXT_GUEST (line 1133) | PERF_CONTEXT_GUEST = -0x800 constant PERF_CONTEXT_GUEST_KERNEL (line 1134) | PERF_CONTEXT_GUEST_KERNEL = -0x880 constant PERF_CONTEXT_GUEST_USER (line 1135) | PERF_CONTEXT_GUEST_USER = -0xa00 constant PERF_CONTEXT_MAX (line 1136) | PERF_CONTEXT_MAX = -0xfff type TCPMD5Sig (line 1139) | type TCPMD5Sig struct type HDDriveCmdHdr (line 1148) | type HDDriveCmdHdr struct type HDDriveID (line 1155) | type HDDriveID struct constant ST_MANDLOCK (line 1238) | ST_MANDLOCK = 0x40 constant ST_NOATIME (line 1239) | ST_NOATIME = 0x400 constant ST_NODEV (line 1240) | ST_NODEV = 0x4 constant ST_NODIRATIME (line 1241) | ST_NODIRATIME = 0x800 constant ST_NOEXEC (line 1242) | ST_NOEXEC = 0x8 constant ST_NOSUID (line 1243) | ST_NOSUID = 0x2 constant ST_RDONLY (line 1244) | ST_RDONLY = 0x1 constant ST_RELATIME (line 1245) | ST_RELATIME = 0x1000 constant ST_SYNCHRONOUS (line 1246) | ST_SYNCHRONOUS = 0x10 type Tpacket2Hdr (line 1249) | type Tpacket2Hdr struct type Tpacket3Hdr (line 1262) | type Tpacket3Hdr struct type TpacketHdrVariant1 (line 1275) | type TpacketHdrVariant1 struct type TpacketBlockDesc (line 1282) | type TpacketBlockDesc struct type TpacketBDTS (line 1288) | type TpacketBDTS struct type TpacketHdrV1 (line 1293) | type TpacketHdrV1 struct type TpacketReq (line 1303) | type TpacketReq struct type TpacketReq3 (line 1310) | type TpacketReq3 struct type TpacketStats (line 1320) | type TpacketStats struct type TpacketStatsV3 (line 1325) | type TpacketStatsV3 struct type TpacketAuxdata (line 1331) | type TpacketAuxdata struct constant TPACKET_V1 (line 1342) | TPACKET_V1 = 0x0 constant TPACKET_V2 (line 1343) | TPACKET_V2 = 0x1 constant TPACKET_V3 (line 1344) | TPACKET_V3 = 0x2 constant SizeofTpacket2Hdr (line 1348) | SizeofTpacket2Hdr = 0x20 constant SizeofTpacket3Hdr (line 1349) | SizeofTpacket3Hdr = 0x30 constant SizeofTpacketStats (line 1351) | SizeofTpacketStats = 0x8 constant SizeofTpacketStatsV3 (line 1352) | SizeofTpacketStatsV3 = 0xc constant IFLA_UNSPEC (line 1356) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 1357) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 1358) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 1359) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 1360) | IFLA_MTU = 0x4 constant IFLA_LINK (line 1361) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 1362) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 1363) | IFLA_STATS = 0x7 constant IFLA_COST (line 1364) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 1365) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 1366) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 1367) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 1368) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 1369) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 1370) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 1371) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 1372) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 1373) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 1374) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 1375) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 1376) | IFLA_IFALIAS = 0x14 constant IFLA_NUM_VF (line 1377) | IFLA_NUM_VF = 0x15 constant IFLA_VFINFO_LIST (line 1378) | IFLA_VFINFO_LIST = 0x16 constant IFLA_STATS64 (line 1379) | IFLA_STATS64 = 0x17 constant IFLA_VF_PORTS (line 1380) | IFLA_VF_PORTS = 0x18 constant IFLA_PORT_SELF (line 1381) | IFLA_PORT_SELF = 0x19 constant IFLA_AF_SPEC (line 1382) | IFLA_AF_SPEC = 0x1a constant IFLA_GROUP (line 1383) | IFLA_GROUP = 0x1b constant IFLA_NET_NS_FD (line 1384) | IFLA_NET_NS_FD = 0x1c constant IFLA_EXT_MASK (line 1385) | IFLA_EXT_MASK = 0x1d constant IFLA_PROMISCUITY (line 1386) | IFLA_PROMISCUITY = 0x1e constant IFLA_NUM_TX_QUEUES (line 1387) | IFLA_NUM_TX_QUEUES = 0x1f constant IFLA_NUM_RX_QUEUES (line 1388) | IFLA_NUM_RX_QUEUES = 0x20 constant IFLA_CARRIER (line 1389) | IFLA_CARRIER = 0x21 constant IFLA_PHYS_PORT_ID (line 1390) | IFLA_PHYS_PORT_ID = 0x22 constant IFLA_CARRIER_CHANGES (line 1391) | IFLA_CARRIER_CHANGES = 0x23 constant IFLA_PHYS_SWITCH_ID (line 1392) | IFLA_PHYS_SWITCH_ID = 0x24 constant IFLA_LINK_NETNSID (line 1393) | IFLA_LINK_NETNSID = 0x25 constant IFLA_PHYS_PORT_NAME (line 1394) | IFLA_PHYS_PORT_NAME = 0x26 constant IFLA_PROTO_DOWN (line 1395) | IFLA_PROTO_DOWN = 0x27 constant IFLA_GSO_MAX_SEGS (line 1396) | IFLA_GSO_MAX_SEGS = 0x28 constant IFLA_GSO_MAX_SIZE (line 1397) | IFLA_GSO_MAX_SIZE = 0x29 constant IFLA_PAD (line 1398) | IFLA_PAD = 0x2a constant IFLA_XDP (line 1399) | IFLA_XDP = 0x2b constant IFLA_EVENT (line 1400) | IFLA_EVENT = 0x2c constant IFLA_NEW_NETNSID (line 1401) | IFLA_NEW_NETNSID = 0x2d constant IFLA_IF_NETNSID (line 1402) | IFLA_IF_NETNSID = 0x2e constant IFLA_TARGET_NETNSID (line 1403) | IFLA_TARGET_NETNSID = 0x2e constant IFLA_CARRIER_UP_COUNT (line 1404) | IFLA_CARRIER_UP_COUNT = 0x2f constant IFLA_CARRIER_DOWN_COUNT (line 1405) | IFLA_CARRIER_DOWN_COUNT = 0x30 constant IFLA_NEW_IFINDEX (line 1406) | IFLA_NEW_IFINDEX = 0x31 constant IFLA_MIN_MTU (line 1407) | IFLA_MIN_MTU = 0x32 constant IFLA_MAX_MTU (line 1408) | IFLA_MAX_MTU = 0x33 constant IFLA_PROP_LIST (line 1409) | IFLA_PROP_LIST = 0x34 constant IFLA_ALT_IFNAME (line 1410) | IFLA_ALT_IFNAME = 0x35 constant IFLA_PERM_ADDRESS (line 1411) | IFLA_PERM_ADDRESS = 0x36 constant IFLA_PROTO_DOWN_REASON (line 1412) | IFLA_PROTO_DOWN_REASON = 0x37 constant IFLA_PROTO_DOWN_REASON_UNSPEC (line 1413) | IFLA_PROTO_DOWN_REASON_UNSPEC = 0x0 constant IFLA_PROTO_DOWN_REASON_MASK (line 1414) | IFLA_PROTO_DOWN_REASON_MASK = 0x1 constant IFLA_PROTO_DOWN_REASON_VALUE (line 1415) | IFLA_PROTO_DOWN_REASON_VALUE = 0x2 constant IFLA_PROTO_DOWN_REASON_MAX (line 1416) | IFLA_PROTO_DOWN_REASON_MAX = 0x2 constant IFLA_INET_UNSPEC (line 1417) | IFLA_INET_UNSPEC = 0x0 constant IFLA_INET_CONF (line 1418) | IFLA_INET_CONF = 0x1 constant IFLA_INET6_UNSPEC (line 1419) | IFLA_INET6_UNSPEC = 0x0 constant IFLA_INET6_FLAGS (line 1420) | IFLA_INET6_FLAGS = 0x1 constant IFLA_INET6_CONF (line 1421) | IFLA_INET6_CONF = 0x2 constant IFLA_INET6_STATS (line 1422) | IFLA_INET6_STATS = 0x3 constant IFLA_INET6_MCAST (line 1423) | IFLA_INET6_MCAST = 0x4 constant IFLA_INET6_CACHEINFO (line 1424) | IFLA_INET6_CACHEINFO = 0x5 constant IFLA_INET6_ICMP6STATS (line 1425) | IFLA_INET6_ICMP6STATS = 0x6 constant IFLA_INET6_TOKEN (line 1426) | IFLA_INET6_TOKEN = 0x7 constant IFLA_INET6_ADDR_GEN_MODE (line 1427) | IFLA_INET6_ADDR_GEN_MODE = 0x8 constant IFLA_BR_UNSPEC (line 1428) | IFLA_BR_UNSPEC = 0x0 constant IFLA_BR_FORWARD_DELAY (line 1429) | IFLA_BR_FORWARD_DELAY = 0x1 constant IFLA_BR_HELLO_TIME (line 1430) | IFLA_BR_HELLO_TIME = 0x2 constant IFLA_BR_MAX_AGE (line 1431) | IFLA_BR_MAX_AGE = 0x3 constant IFLA_BR_AGEING_TIME (line 1432) | IFLA_BR_AGEING_TIME = 0x4 constant IFLA_BR_STP_STATE (line 1433) | IFLA_BR_STP_STATE = 0x5 constant IFLA_BR_PRIORITY (line 1434) | IFLA_BR_PRIORITY = 0x6 constant IFLA_BR_VLAN_FILTERING (line 1435) | IFLA_BR_VLAN_FILTERING = 0x7 constant IFLA_BR_VLAN_PROTOCOL (line 1436) | IFLA_BR_VLAN_PROTOCOL = 0x8 constant IFLA_BR_GROUP_FWD_MASK (line 1437) | IFLA_BR_GROUP_FWD_MASK = 0x9 constant IFLA_BR_ROOT_ID (line 1438) | IFLA_BR_ROOT_ID = 0xa constant IFLA_BR_BRIDGE_ID (line 1439) | IFLA_BR_BRIDGE_ID = 0xb constant IFLA_BR_ROOT_PORT (line 1440) | IFLA_BR_ROOT_PORT = 0xc constant IFLA_BR_ROOT_PATH_COST (line 1441) | IFLA_BR_ROOT_PATH_COST = 0xd constant IFLA_BR_TOPOLOGY_CHANGE (line 1442) | IFLA_BR_TOPOLOGY_CHANGE = 0xe constant IFLA_BR_TOPOLOGY_CHANGE_DETECTED (line 1443) | IFLA_BR_TOPOLOGY_CHANGE_DETECTED = 0xf constant IFLA_BR_HELLO_TIMER (line 1444) | IFLA_BR_HELLO_TIMER = 0x10 constant IFLA_BR_TCN_TIMER (line 1445) | IFLA_BR_TCN_TIMER = 0x11 constant IFLA_BR_TOPOLOGY_CHANGE_TIMER (line 1446) | IFLA_BR_TOPOLOGY_CHANGE_TIMER = 0x12 constant IFLA_BR_GC_TIMER (line 1447) | IFLA_BR_GC_TIMER = 0x13 constant IFLA_BR_GROUP_ADDR (line 1448) | IFLA_BR_GROUP_ADDR = 0x14 constant IFLA_BR_FDB_FLUSH (line 1449) | IFLA_BR_FDB_FLUSH = 0x15 constant IFLA_BR_MCAST_ROUTER (line 1450) | IFLA_BR_MCAST_ROUTER = 0x16 constant IFLA_BR_MCAST_SNOOPING (line 1451) | IFLA_BR_MCAST_SNOOPING = 0x17 constant IFLA_BR_MCAST_QUERY_USE_IFADDR (line 1452) | IFLA_BR_MCAST_QUERY_USE_IFADDR = 0x18 constant IFLA_BR_MCAST_QUERIER (line 1453) | IFLA_BR_MCAST_QUERIER = 0x19 constant IFLA_BR_MCAST_HASH_ELASTICITY (line 1454) | IFLA_BR_MCAST_HASH_ELASTICITY = 0x1a constant IFLA_BR_MCAST_HASH_MAX (line 1455) | IFLA_BR_MCAST_HASH_MAX = 0x1b constant IFLA_BR_MCAST_LAST_MEMBER_CNT (line 1456) | IFLA_BR_MCAST_LAST_MEMBER_CNT = 0x1c constant IFLA_BR_MCAST_STARTUP_QUERY_CNT (line 1457) | IFLA_BR_MCAST_STARTUP_QUERY_CNT = 0x1d constant IFLA_BR_MCAST_LAST_MEMBER_INTVL (line 1458) | IFLA_BR_MCAST_LAST_MEMBER_INTVL = 0x1e constant IFLA_BR_MCAST_MEMBERSHIP_INTVL (line 1459) | IFLA_BR_MCAST_MEMBERSHIP_INTVL = 0x1f constant IFLA_BR_MCAST_QUERIER_INTVL (line 1460) | IFLA_BR_MCAST_QUERIER_INTVL = 0x20 constant IFLA_BR_MCAST_QUERY_INTVL (line 1461) | IFLA_BR_MCAST_QUERY_INTVL = 0x21 constant IFLA_BR_MCAST_QUERY_RESPONSE_INTVL (line 1462) | IFLA_BR_MCAST_QUERY_RESPONSE_INTVL = 0x22 constant IFLA_BR_MCAST_STARTUP_QUERY_INTVL (line 1463) | IFLA_BR_MCAST_STARTUP_QUERY_INTVL = 0x23 constant IFLA_BR_NF_CALL_IPTABLES (line 1464) | IFLA_BR_NF_CALL_IPTABLES = 0x24 constant IFLA_BR_NF_CALL_IP6TABLES (line 1465) | IFLA_BR_NF_CALL_IP6TABLES = 0x25 constant IFLA_BR_NF_CALL_ARPTABLES (line 1466) | IFLA_BR_NF_CALL_ARPTABLES = 0x26 constant IFLA_BR_VLAN_DEFAULT_PVID (line 1467) | IFLA_BR_VLAN_DEFAULT_PVID = 0x27 constant IFLA_BR_PAD (line 1468) | IFLA_BR_PAD = 0x28 constant IFLA_BR_VLAN_STATS_ENABLED (line 1469) | IFLA_BR_VLAN_STATS_ENABLED = 0x29 constant IFLA_BR_MCAST_STATS_ENABLED (line 1470) | IFLA_BR_MCAST_STATS_ENABLED = 0x2a constant IFLA_BR_MCAST_IGMP_VERSION (line 1471) | IFLA_BR_MCAST_IGMP_VERSION = 0x2b constant IFLA_BR_MCAST_MLD_VERSION (line 1472) | IFLA_BR_MCAST_MLD_VERSION = 0x2c constant IFLA_BR_VLAN_STATS_PER_PORT (line 1473) | IFLA_BR_VLAN_STATS_PER_PORT = 0x2d constant IFLA_BR_MULTI_BOOLOPT (line 1474) | IFLA_BR_MULTI_BOOLOPT = 0x2e constant IFLA_BRPORT_UNSPEC (line 1475) | IFLA_BRPORT_UNSPEC = 0x0 constant IFLA_BRPORT_STATE (line 1476) | IFLA_BRPORT_STATE = 0x1 constant IFLA_BRPORT_PRIORITY (line 1477) | IFLA_BRPORT_PRIORITY = 0x2 constant IFLA_BRPORT_COST (line 1478) | IFLA_BRPORT_COST = 0x3 constant IFLA_BRPORT_MODE (line 1479) | IFLA_BRPORT_MODE = 0x4 constant IFLA_BRPORT_GUARD (line 1480) | IFLA_BRPORT_GUARD = 0x5 constant IFLA_BRPORT_PROTECT (line 1481) | IFLA_BRPORT_PROTECT = 0x6 constant IFLA_BRPORT_FAST_LEAVE (line 1482) | IFLA_BRPORT_FAST_LEAVE = 0x7 constant IFLA_BRPORT_LEARNING (line 1483) | IFLA_BRPORT_LEARNING = 0x8 constant IFLA_BRPORT_UNICAST_FLOOD (line 1484) | IFLA_BRPORT_UNICAST_FLOOD = 0x9 constant IFLA_BRPORT_PROXYARP (line 1485) | IFLA_BRPORT_PROXYARP = 0xa constant IFLA_BRPORT_LEARNING_SYNC (line 1486) | IFLA_BRPORT_LEARNING_SYNC = 0xb constant IFLA_BRPORT_PROXYARP_WIFI (line 1487) | IFLA_BRPORT_PROXYARP_WIFI = 0xc constant IFLA_BRPORT_ROOT_ID (line 1488) | IFLA_BRPORT_ROOT_ID = 0xd constant IFLA_BRPORT_BRIDGE_ID (line 1489) | IFLA_BRPORT_BRIDGE_ID = 0xe constant IFLA_BRPORT_DESIGNATED_PORT (line 1490) | IFLA_BRPORT_DESIGNATED_PORT = 0xf constant IFLA_BRPORT_DESIGNATED_COST (line 1491) | IFLA_BRPORT_DESIGNATED_COST = 0x10 constant IFLA_BRPORT_ID (line 1492) | IFLA_BRPORT_ID = 0x11 constant IFLA_BRPORT_NO (line 1493) | IFLA_BRPORT_NO = 0x12 constant IFLA_BRPORT_TOPOLOGY_CHANGE_ACK (line 1494) | IFLA_BRPORT_TOPOLOGY_CHANGE_ACK = 0x13 constant IFLA_BRPORT_CONFIG_PENDING (line 1495) | IFLA_BRPORT_CONFIG_PENDING = 0x14 constant IFLA_BRPORT_MESSAGE_AGE_TIMER (line 1496) | IFLA_BRPORT_MESSAGE_AGE_TIMER = 0x15 constant IFLA_BRPORT_FORWARD_DELAY_TIMER (line 1497) | IFLA_BRPORT_FORWARD_DELAY_TIMER = 0x16 constant IFLA_BRPORT_HOLD_TIMER (line 1498) | IFLA_BRPORT_HOLD_TIMER = 0x17 constant IFLA_BRPORT_FLUSH (line 1499) | IFLA_BRPORT_FLUSH = 0x18 constant IFLA_BRPORT_MULTICAST_ROUTER (line 1500) | IFLA_BRPORT_MULTICAST_ROUTER = 0x19 constant IFLA_BRPORT_PAD (line 1501) | IFLA_BRPORT_PAD = 0x1a constant IFLA_BRPORT_MCAST_FLOOD (line 1502) | IFLA_BRPORT_MCAST_FLOOD = 0x1b constant IFLA_BRPORT_MCAST_TO_UCAST (line 1503) | IFLA_BRPORT_MCAST_TO_UCAST = 0x1c constant IFLA_BRPORT_VLAN_TUNNEL (line 1504) | IFLA_BRPORT_VLAN_TUNNEL = 0x1d constant IFLA_BRPORT_BCAST_FLOOD (line 1505) | IFLA_BRPORT_BCAST_FLOOD = 0x1e constant IFLA_BRPORT_GROUP_FWD_MASK (line 1506) | IFLA_BRPORT_GROUP_FWD_MASK = 0x1f constant IFLA_BRPORT_NEIGH_SUPPRESS (line 1507) | IFLA_BRPORT_NEIGH_SUPPRESS = 0x20 constant IFLA_BRPORT_ISOLATED (line 1508) | IFLA_BRPORT_ISOLATED = 0x21 constant IFLA_BRPORT_BACKUP_PORT (line 1509) | IFLA_BRPORT_BACKUP_PORT = 0x22 constant IFLA_BRPORT_MRP_RING_OPEN (line 1510) | IFLA_BRPORT_MRP_RING_OPEN = 0x23 constant IFLA_BRPORT_MRP_IN_OPEN (line 1511) | IFLA_BRPORT_MRP_IN_OPEN = 0x24 constant IFLA_INFO_UNSPEC (line 1512) | IFLA_INFO_UNSPEC = 0x0 constant IFLA_INFO_KIND (line 1513) | IFLA_INFO_KIND = 0x1 constant IFLA_INFO_DATA (line 1514) | IFLA_INFO_DATA = 0x2 constant IFLA_INFO_XSTATS (line 1515) | IFLA_INFO_XSTATS = 0x3 constant IFLA_INFO_SLAVE_KIND (line 1516) | IFLA_INFO_SLAVE_KIND = 0x4 constant IFLA_INFO_SLAVE_DATA (line 1517) | IFLA_INFO_SLAVE_DATA = 0x5 constant IFLA_VLAN_UNSPEC (line 1518) | IFLA_VLAN_UNSPEC = 0x0 constant IFLA_VLAN_ID (line 1519) | IFLA_VLAN_ID = 0x1 constant IFLA_VLAN_FLAGS (line 1520) | IFLA_VLAN_FLAGS = 0x2 constant IFLA_VLAN_EGRESS_QOS (line 1521) | IFLA_VLAN_EGRESS_QOS = 0x3 constant IFLA_VLAN_INGRESS_QOS (line 1522) | IFLA_VLAN_INGRESS_QOS = 0x4 constant IFLA_VLAN_PROTOCOL (line 1523) | IFLA_VLAN_PROTOCOL = 0x5 constant IFLA_VLAN_QOS_UNSPEC (line 1524) | IFLA_VLAN_QOS_UNSPEC = 0x0 constant IFLA_VLAN_QOS_MAPPING (line 1525) | IFLA_VLAN_QOS_MAPPING = 0x1 constant IFLA_MACVLAN_UNSPEC (line 1526) | IFLA_MACVLAN_UNSPEC = 0x0 constant IFLA_MACVLAN_MODE (line 1527) | IFLA_MACVLAN_MODE = 0x1 constant IFLA_MACVLAN_FLAGS (line 1528) | IFLA_MACVLAN_FLAGS = 0x2 constant IFLA_MACVLAN_MACADDR_MODE (line 1529) | IFLA_MACVLAN_MACADDR_MODE = 0x3 constant IFLA_MACVLAN_MACADDR (line 1530) | IFLA_MACVLAN_MACADDR = 0x4 constant IFLA_MACVLAN_MACADDR_DATA (line 1531) | IFLA_MACVLAN_MACADDR_DATA = 0x5 constant IFLA_MACVLAN_MACADDR_COUNT (line 1532) | IFLA_MACVLAN_MACADDR_COUNT = 0x6 constant IFLA_VRF_UNSPEC (line 1533) | IFLA_VRF_UNSPEC = 0x0 constant IFLA_VRF_TABLE (line 1534) | IFLA_VRF_TABLE = 0x1 constant IFLA_VRF_PORT_UNSPEC (line 1535) | IFLA_VRF_PORT_UNSPEC = 0x0 constant IFLA_VRF_PORT_TABLE (line 1536) | IFLA_VRF_PORT_TABLE = 0x1 constant IFLA_MACSEC_UNSPEC (line 1537) | IFLA_MACSEC_UNSPEC = 0x0 constant IFLA_MACSEC_SCI (line 1538) | IFLA_MACSEC_SCI = 0x1 constant IFLA_MACSEC_PORT (line 1539) | IFLA_MACSEC_PORT = 0x2 constant IFLA_MACSEC_ICV_LEN (line 1540) | IFLA_MACSEC_ICV_LEN = 0x3 constant IFLA_MACSEC_CIPHER_SUITE (line 1541) | IFLA_MACSEC_CIPHER_SUITE = 0x4 constant IFLA_MACSEC_WINDOW (line 1542) | IFLA_MACSEC_WINDOW = 0x5 constant IFLA_MACSEC_ENCODING_SA (line 1543) | IFLA_MACSEC_ENCODING_SA = 0x6 constant IFLA_MACSEC_ENCRYPT (line 1544) | IFLA_MACSEC_ENCRYPT = 0x7 constant IFLA_MACSEC_PROTECT (line 1545) | IFLA_MACSEC_PROTECT = 0x8 constant IFLA_MACSEC_INC_SCI (line 1546) | IFLA_MACSEC_INC_SCI = 0x9 constant IFLA_MACSEC_ES (line 1547) | IFLA_MACSEC_ES = 0xa constant IFLA_MACSEC_SCB (line 1548) | IFLA_MACSEC_SCB = 0xb constant IFLA_MACSEC_REPLAY_PROTECT (line 1549) | IFLA_MACSEC_REPLAY_PROTECT = 0xc constant IFLA_MACSEC_VALIDATION (line 1550) | IFLA_MACSEC_VALIDATION = 0xd constant IFLA_MACSEC_PAD (line 1551) | IFLA_MACSEC_PAD = 0xe constant IFLA_MACSEC_OFFLOAD (line 1552) | IFLA_MACSEC_OFFLOAD = 0xf constant IFLA_XFRM_UNSPEC (line 1553) | IFLA_XFRM_UNSPEC = 0x0 constant IFLA_XFRM_LINK (line 1554) | IFLA_XFRM_LINK = 0x1 constant IFLA_XFRM_IF_ID (line 1555) | IFLA_XFRM_IF_ID = 0x2 constant IFLA_IPVLAN_UNSPEC (line 1556) | IFLA_IPVLAN_UNSPEC = 0x0 constant IFLA_IPVLAN_MODE (line 1557) | IFLA_IPVLAN_MODE = 0x1 constant IFLA_IPVLAN_FLAGS (line 1558) | IFLA_IPVLAN_FLAGS = 0x2 constant IFLA_VXLAN_UNSPEC (line 1559) | IFLA_VXLAN_UNSPEC = 0x0 constant IFLA_VXLAN_ID (line 1560) | IFLA_VXLAN_ID = 0x1 constant IFLA_VXLAN_GROUP (line 1561) | IFLA_VXLAN_GROUP = 0x2 constant IFLA_VXLAN_LINK (line 1562) | IFLA_VXLAN_LINK = 0x3 constant IFLA_VXLAN_LOCAL (line 1563) | IFLA_VXLAN_LOCAL = 0x4 constant IFLA_VXLAN_TTL (line 1564) | IFLA_VXLAN_TTL = 0x5 constant IFLA_VXLAN_TOS (line 1565) | IFLA_VXLAN_TOS = 0x6 constant IFLA_VXLAN_LEARNING (line 1566) | IFLA_VXLAN_LEARNING = 0x7 constant IFLA_VXLAN_AGEING (line 1567) | IFLA_VXLAN_AGEING = 0x8 constant IFLA_VXLAN_LIMIT (line 1568) | IFLA_VXLAN_LIMIT = 0x9 constant IFLA_VXLAN_PORT_RANGE (line 1569) | IFLA_VXLAN_PORT_RANGE = 0xa constant IFLA_VXLAN_PROXY (line 1570) | IFLA_VXLAN_PROXY = 0xb constant IFLA_VXLAN_RSC (line 1571) | IFLA_VXLAN_RSC = 0xc constant IFLA_VXLAN_L2MISS (line 1572) | IFLA_VXLAN_L2MISS = 0xd constant IFLA_VXLAN_L3MISS (line 1573) | IFLA_VXLAN_L3MISS = 0xe constant IFLA_VXLAN_PORT (line 1574) | IFLA_VXLAN_PORT = 0xf constant IFLA_VXLAN_GROUP6 (line 1575) | IFLA_VXLAN_GROUP6 = 0x10 constant IFLA_VXLAN_LOCAL6 (line 1576) | IFLA_VXLAN_LOCAL6 = 0x11 constant IFLA_VXLAN_UDP_CSUM (line 1577) | IFLA_VXLAN_UDP_CSUM = 0x12 constant IFLA_VXLAN_UDP_ZERO_CSUM6_TX (line 1578) | IFLA_VXLAN_UDP_ZERO_CSUM6_TX = 0x13 constant IFLA_VXLAN_UDP_ZERO_CSUM6_RX (line 1579) | IFLA_VXLAN_UDP_ZERO_CSUM6_RX = 0x14 constant IFLA_VXLAN_REMCSUM_TX (line 1580) | IFLA_VXLAN_REMCSUM_TX = 0x15 constant IFLA_VXLAN_REMCSUM_RX (line 1581) | IFLA_VXLAN_REMCSUM_RX = 0x16 constant IFLA_VXLAN_GBP (line 1582) | IFLA_VXLAN_GBP = 0x17 constant IFLA_VXLAN_REMCSUM_NOPARTIAL (line 1583) | IFLA_VXLAN_REMCSUM_NOPARTIAL = 0x18 constant IFLA_VXLAN_COLLECT_METADATA (line 1584) | IFLA_VXLAN_COLLECT_METADATA = 0x19 constant IFLA_VXLAN_LABEL (line 1585) | IFLA_VXLAN_LABEL = 0x1a constant IFLA_VXLAN_GPE (line 1586) | IFLA_VXLAN_GPE = 0x1b constant IFLA_VXLAN_TTL_INHERIT (line 1587) | IFLA_VXLAN_TTL_INHERIT = 0x1c constant IFLA_VXLAN_DF (line 1588) | IFLA_VXLAN_DF = 0x1d constant IFLA_GENEVE_UNSPEC (line 1589) | IFLA_GENEVE_UNSPEC = 0x0 constant IFLA_GENEVE_ID (line 1590) | IFLA_GENEVE_ID = 0x1 constant IFLA_GENEVE_REMOTE (line 1591) | IFLA_GENEVE_REMOTE = 0x2 constant IFLA_GENEVE_TTL (line 1592) | IFLA_GENEVE_TTL = 0x3 constant IFLA_GENEVE_TOS (line 1593) | IFLA_GENEVE_TOS = 0x4 constant IFLA_GENEVE_PORT (line 1594) | IFLA_GENEVE_PORT = 0x5 constant IFLA_GENEVE_COLLECT_METADATA (line 1595) | IFLA_GENEVE_COLLECT_METADATA = 0x6 constant IFLA_GENEVE_REMOTE6 (line 1596) | IFLA_GENEVE_REMOTE6 = 0x7 constant IFLA_GENEVE_UDP_CSUM (line 1597) | IFLA_GENEVE_UDP_CSUM = 0x8 constant IFLA_GENEVE_UDP_ZERO_CSUM6_TX (line 1598) | IFLA_GENEVE_UDP_ZERO_CSUM6_TX = 0x9 constant IFLA_GENEVE_UDP_ZERO_CSUM6_RX (line 1599) | IFLA_GENEVE_UDP_ZERO_CSUM6_RX = 0xa constant IFLA_GENEVE_LABEL (line 1600) | IFLA_GENEVE_LABEL = 0xb constant IFLA_GENEVE_TTL_INHERIT (line 1601) | IFLA_GENEVE_TTL_INHERIT = 0xc constant IFLA_GENEVE_DF (line 1602) | IFLA_GENEVE_DF = 0xd constant IFLA_BAREUDP_UNSPEC (line 1603) | IFLA_BAREUDP_UNSPEC = 0x0 constant IFLA_BAREUDP_PORT (line 1604) | IFLA_BAREUDP_PORT = 0x1 constant IFLA_BAREUDP_ETHERTYPE (line 1605) | IFLA_BAREUDP_ETHERTYPE = 0x2 constant IFLA_BAREUDP_SRCPORT_MIN (line 1606) | IFLA_BAREUDP_SRCPORT_MIN = 0x3 constant IFLA_BAREUDP_MULTIPROTO_MODE (line 1607) | IFLA_BAREUDP_MULTIPROTO_MODE = 0x4 constant IFLA_PPP_UNSPEC (line 1608) | IFLA_PPP_UNSPEC = 0x0 constant IFLA_PPP_DEV_FD (line 1609) | IFLA_PPP_DEV_FD = 0x1 constant IFLA_GTP_UNSPEC (line 1610) | IFLA_GTP_UNSPEC = 0x0 constant IFLA_GTP_FD0 (line 1611) | IFLA_GTP_FD0 = 0x1 constant IFLA_GTP_FD1 (line 1612) | IFLA_GTP_FD1 = 0x2 constant IFLA_GTP_PDP_HASHSIZE (line 1613) | IFLA_GTP_PDP_HASHSIZE = 0x3 constant IFLA_GTP_ROLE (line 1614) | IFLA_GTP_ROLE = 0x4 constant IFLA_BOND_UNSPEC (line 1615) | IFLA_BOND_UNSPEC = 0x0 constant IFLA_BOND_MODE (line 1616) | IFLA_BOND_MODE = 0x1 constant IFLA_BOND_ACTIVE_SLAVE (line 1617) | IFLA_BOND_ACTIVE_SLAVE = 0x2 constant IFLA_BOND_MIIMON (line 1618) | IFLA_BOND_MIIMON = 0x3 constant IFLA_BOND_UPDELAY (line 1619) | IFLA_BOND_UPDELAY = 0x4 constant IFLA_BOND_DOWNDELAY (line 1620) | IFLA_BOND_DOWNDELAY = 0x5 constant IFLA_BOND_USE_CARRIER (line 1621) | IFLA_BOND_USE_CARRIER = 0x6 constant IFLA_BOND_ARP_INTERVAL (line 1622) | IFLA_BOND_ARP_INTERVAL = 0x7 constant IFLA_BOND_ARP_IP_TARGET (line 1623) | IFLA_BOND_ARP_IP_TARGET = 0x8 constant IFLA_BOND_ARP_VALIDATE (line 1624) | IFLA_BOND_ARP_VALIDATE = 0x9 constant IFLA_BOND_ARP_ALL_TARGETS (line 1625) | IFLA_BOND_ARP_ALL_TARGETS = 0xa constant IFLA_BOND_PRIMARY (line 1626) | IFLA_BOND_PRIMARY = 0xb constant IFLA_BOND_PRIMARY_RESELECT (line 1627) | IFLA_BOND_PRIMARY_RESELECT = 0xc constant IFLA_BOND_FAIL_OVER_MAC (line 1628) | IFLA_BOND_FAIL_OVER_MAC = 0xd constant IFLA_BOND_XMIT_HASH_POLICY (line 1629) | IFLA_BOND_XMIT_HASH_POLICY = 0xe constant IFLA_BOND_RESEND_IGMP (line 1630) | IFLA_BOND_RESEND_IGMP = 0xf constant IFLA_BOND_NUM_PEER_NOTIF (line 1631) | IFLA_BOND_NUM_PEER_NOTIF = 0x10 constant IFLA_BOND_ALL_SLAVES_ACTIVE (line 1632) | IFLA_BOND_ALL_SLAVES_ACTIVE = 0x11 constant IFLA_BOND_MIN_LINKS (line 1633) | IFLA_BOND_MIN_LINKS = 0x12 constant IFLA_BOND_LP_INTERVAL (line 1634) | IFLA_BOND_LP_INTERVAL = 0x13 constant IFLA_BOND_PACKETS_PER_SLAVE (line 1635) | IFLA_BOND_PACKETS_PER_SLAVE = 0x14 constant IFLA_BOND_AD_LACP_RATE (line 1636) | IFLA_BOND_AD_LACP_RATE = 0x15 constant IFLA_BOND_AD_SELECT (line 1637) | IFLA_BOND_AD_SELECT = 0x16 constant IFLA_BOND_AD_INFO (line 1638) | IFLA_BOND_AD_INFO = 0x17 constant IFLA_BOND_AD_ACTOR_SYS_PRIO (line 1639) | IFLA_BOND_AD_ACTOR_SYS_PRIO = 0x18 constant IFLA_BOND_AD_USER_PORT_KEY (line 1640) | IFLA_BOND_AD_USER_PORT_KEY = 0x19 constant IFLA_BOND_AD_ACTOR_SYSTEM (line 1641) | IFLA_BOND_AD_ACTOR_SYSTEM = 0x1a constant IFLA_BOND_TLB_DYNAMIC_LB (line 1642) | IFLA_BOND_TLB_DYNAMIC_LB = 0x1b constant IFLA_BOND_PEER_NOTIF_DELAY (line 1643) | IFLA_BOND_PEER_NOTIF_DELAY = 0x1c constant IFLA_BOND_AD_INFO_UNSPEC (line 1644) | IFLA_BOND_AD_INFO_UNSPEC = 0x0 constant IFLA_BOND_AD_INFO_AGGREGATOR (line 1645) | IFLA_BOND_AD_INFO_AGGREGATOR = 0x1 constant IFLA_BOND_AD_INFO_NUM_PORTS (line 1646) | IFLA_BOND_AD_INFO_NUM_PORTS = 0x2 constant IFLA_BOND_AD_INFO_ACTOR_KEY (line 1647) | IFLA_BOND_AD_INFO_ACTOR_KEY = 0x3 constant IFLA_BOND_AD_INFO_PARTNER_KEY (line 1648) | IFLA_BOND_AD_INFO_PARTNER_KEY = 0x4 constant IFLA_BOND_AD_INFO_PARTNER_MAC (line 1649) | IFLA_BOND_AD_INFO_PARTNER_MAC = 0x5 constant IFLA_BOND_SLAVE_UNSPEC (line 1650) | IFLA_BOND_SLAVE_UNSPEC = 0x0 constant IFLA_BOND_SLAVE_STATE (line 1651) | IFLA_BOND_SLAVE_STATE = 0x1 constant IFLA_BOND_SLAVE_MII_STATUS (line 1652) | IFLA_BOND_SLAVE_MII_STATUS = 0x2 constant IFLA_BOND_SLAVE_LINK_FAILURE_COUNT (line 1653) | IFLA_BOND_SLAVE_LINK_FAILURE_COUNT = 0x3 constant IFLA_BOND_SLAVE_PERM_HWADDR (line 1654) | IFLA_BOND_SLAVE_PERM_HWADDR = 0x4 constant IFLA_BOND_SLAVE_QUEUE_ID (line 1655) | IFLA_BOND_SLAVE_QUEUE_ID = 0x5 constant IFLA_BOND_SLAVE_AD_AGGREGATOR_ID (line 1656) | IFLA_BOND_SLAVE_AD_AGGREGATOR_ID = 0x6 constant IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE (line 1657) | IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE = 0x7 constant IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE (line 1658) | IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE = 0x8 constant IFLA_VF_INFO_UNSPEC (line 1659) | IFLA_VF_INFO_UNSPEC = 0x0 constant IFLA_VF_INFO (line 1660) | IFLA_VF_INFO = 0x1 constant IFLA_VF_UNSPEC (line 1661) | IFLA_VF_UNSPEC = 0x0 constant IFLA_VF_MAC (line 1662) | IFLA_VF_MAC = 0x1 constant IFLA_VF_VLAN (line 1663) | IFLA_VF_VLAN = 0x2 constant IFLA_VF_TX_RATE (line 1664) | IFLA_VF_TX_RATE = 0x3 constant IFLA_VF_SPOOFCHK (line 1665) | IFLA_VF_SPOOFCHK = 0x4 constant IFLA_VF_LINK_STATE (line 1666) | IFLA_VF_LINK_STATE = 0x5 constant IFLA_VF_RATE (line 1667) | IFLA_VF_RATE = 0x6 constant IFLA_VF_RSS_QUERY_EN (line 1668) | IFLA_VF_RSS_QUERY_EN = 0x7 constant IFLA_VF_STATS (line 1669) | IFLA_VF_STATS = 0x8 constant IFLA_VF_TRUST (line 1670) | IFLA_VF_TRUST = 0x9 constant IFLA_VF_IB_NODE_GUID (line 1671) | IFLA_VF_IB_NODE_GUID = 0xa constant IFLA_VF_IB_PORT_GUID (line 1672) | IFLA_VF_IB_PORT_GUID = 0xb constant IFLA_VF_VLAN_LIST (line 1673) | IFLA_VF_VLAN_LIST = 0xc constant IFLA_VF_BROADCAST (line 1674) | IFLA_VF_BROADCAST = 0xd constant IFLA_VF_VLAN_INFO_UNSPEC (line 1675) | IFLA_VF_VLAN_INFO_UNSPEC = 0x0 constant IFLA_VF_VLAN_INFO (line 1676) | IFLA_VF_VLAN_INFO = 0x1 constant IFLA_VF_LINK_STATE_AUTO (line 1677) | IFLA_VF_LINK_STATE_AUTO = 0x0 constant IFLA_VF_LINK_STATE_ENABLE (line 1678) | IFLA_VF_LINK_STATE_ENABLE = 0x1 constant IFLA_VF_LINK_STATE_DISABLE (line 1679) | IFLA_VF_LINK_STATE_DISABLE = 0x2 constant IFLA_VF_STATS_RX_PACKETS (line 1680) | IFLA_VF_STATS_RX_PACKETS = 0x0 constant IFLA_VF_STATS_TX_PACKETS (line 1681) | IFLA_VF_STATS_TX_PACKETS = 0x1 constant IFLA_VF_STATS_RX_BYTES (line 1682) | IFLA_VF_STATS_RX_BYTES = 0x2 constant IFLA_VF_STATS_TX_BYTES (line 1683) | IFLA_VF_STATS_TX_BYTES = 0x3 constant IFLA_VF_STATS_BROADCAST (line 1684) | IFLA_VF_STATS_BROADCAST = 0x4 constant IFLA_VF_STATS_MULTICAST (line 1685) | IFLA_VF_STATS_MULTICAST = 0x5 constant IFLA_VF_STATS_PAD (line 1686) | IFLA_VF_STATS_PAD = 0x6 constant IFLA_VF_STATS_RX_DROPPED (line 1687) | IFLA_VF_STATS_RX_DROPPED = 0x7 constant IFLA_VF_STATS_TX_DROPPED (line 1688) | IFLA_VF_STATS_TX_DROPPED = 0x8 constant IFLA_VF_PORT_UNSPEC (line 1689) | IFLA_VF_PORT_UNSPEC = 0x0 constant IFLA_VF_PORT (line 1690) | IFLA_VF_PORT = 0x1 constant IFLA_PORT_UNSPEC (line 1691) | IFLA_PORT_UNSPEC = 0x0 constant IFLA_PORT_VF (line 1692) | IFLA_PORT_VF = 0x1 constant IFLA_PORT_PROFILE (line 1693) | IFLA_PORT_PROFILE = 0x2 constant IFLA_PORT_VSI_TYPE (line 1694) | IFLA_PORT_VSI_TYPE = 0x3 constant IFLA_PORT_INSTANCE_UUID (line 1695) | IFLA_PORT_INSTANCE_UUID = 0x4 constant IFLA_PORT_HOST_UUID (line 1696) | IFLA_PORT_HOST_UUID = 0x5 constant IFLA_PORT_REQUEST (line 1697) | IFLA_PORT_REQUEST = 0x6 constant IFLA_PORT_RESPONSE (line 1698) | IFLA_PORT_RESPONSE = 0x7 constant IFLA_IPOIB_UNSPEC (line 1699) | IFLA_IPOIB_UNSPEC = 0x0 constant IFLA_IPOIB_PKEY (line 1700) | IFLA_IPOIB_PKEY = 0x1 constant IFLA_IPOIB_MODE (line 1701) | IFLA_IPOIB_MODE = 0x2 constant IFLA_IPOIB_UMCAST (line 1702) | IFLA_IPOIB_UMCAST = 0x3 constant IFLA_HSR_UNSPEC (line 1703) | IFLA_HSR_UNSPEC = 0x0 constant IFLA_HSR_SLAVE1 (line 1704) | IFLA_HSR_SLAVE1 = 0x1 constant IFLA_HSR_SLAVE2 (line 1705) | IFLA_HSR_SLAVE2 = 0x2 constant IFLA_HSR_MULTICAST_SPEC (line 1706) | IFLA_HSR_MULTICAST_SPEC = 0x3 constant IFLA_HSR_SUPERVISION_ADDR (line 1707) | IFLA_HSR_SUPERVISION_ADDR = 0x4 constant IFLA_HSR_SEQ_NR (line 1708) | IFLA_HSR_SEQ_NR = 0x5 constant IFLA_HSR_VERSION (line 1709) | IFLA_HSR_VERSION = 0x6 constant IFLA_HSR_PROTOCOL (line 1710) | IFLA_HSR_PROTOCOL = 0x7 constant IFLA_STATS_UNSPEC (line 1711) | IFLA_STATS_UNSPEC = 0x0 constant IFLA_STATS_LINK_64 (line 1712) | IFLA_STATS_LINK_64 = 0x1 constant IFLA_STATS_LINK_XSTATS (line 1713) | IFLA_STATS_LINK_XSTATS = 0x2 constant IFLA_STATS_LINK_XSTATS_SLAVE (line 1714) | IFLA_STATS_LINK_XSTATS_SLAVE = 0x3 constant IFLA_STATS_LINK_OFFLOAD_XSTATS (line 1715) | IFLA_STATS_LINK_OFFLOAD_XSTATS = 0x4 constant IFLA_STATS_AF_SPEC (line 1716) | IFLA_STATS_AF_SPEC = 0x5 constant IFLA_OFFLOAD_XSTATS_UNSPEC (line 1717) | IFLA_OFFLOAD_XSTATS_UNSPEC = 0x0 constant IFLA_OFFLOAD_XSTATS_CPU_HIT (line 1718) | IFLA_OFFLOAD_XSTATS_CPU_HIT = 0x1 constant IFLA_XDP_UNSPEC (line 1719) | IFLA_XDP_UNSPEC = 0x0 constant IFLA_XDP_FD (line 1720) | IFLA_XDP_FD = 0x1 constant IFLA_XDP_ATTACHED (line 1721) | IFLA_XDP_ATTACHED = 0x2 constant IFLA_XDP_FLAGS (line 1722) | IFLA_XDP_FLAGS = 0x3 constant IFLA_XDP_PROG_ID (line 1723) | IFLA_XDP_PROG_ID = 0x4 constant IFLA_XDP_DRV_PROG_ID (line 1724) | IFLA_XDP_DRV_PROG_ID = 0x5 constant IFLA_XDP_SKB_PROG_ID (line 1725) | IFLA_XDP_SKB_PROG_ID = 0x6 constant IFLA_XDP_HW_PROG_ID (line 1726) | IFLA_XDP_HW_PROG_ID = 0x7 constant IFLA_XDP_EXPECTED_FD (line 1727) | IFLA_XDP_EXPECTED_FD = 0x8 constant IFLA_EVENT_NONE (line 1728) | IFLA_EVENT_NONE = 0x0 constant IFLA_EVENT_REBOOT (line 1729) | IFLA_EVENT_REBOOT = 0x1 constant IFLA_EVENT_FEATURES (line 1730) | IFLA_EVENT_FEATURES = 0x2 constant IFLA_EVENT_BONDING_FAILOVER (line 1731) | IFLA_EVENT_BONDING_FAILOVER = 0x3 constant IFLA_EVENT_NOTIFY_PEERS (line 1732) | IFLA_EVENT_NOTIFY_PEERS = 0x4 constant IFLA_EVENT_IGMP_RESEND (line 1733) | IFLA_EVENT_IGMP_RESEND = 0x5 constant IFLA_EVENT_BONDING_OPTIONS (line 1734) | IFLA_EVENT_BONDING_OPTIONS = 0x6 constant IFLA_TUN_UNSPEC (line 1735) | IFLA_TUN_UNSPEC = 0x0 constant IFLA_TUN_OWNER (line 1736) | IFLA_TUN_OWNER = 0x1 constant IFLA_TUN_GROUP (line 1737) | IFLA_TUN_GROUP = 0x2 constant IFLA_TUN_TYPE (line 1738) | IFLA_TUN_TYPE = 0x3 constant IFLA_TUN_PI (line 1739) | IFLA_TUN_PI = 0x4 constant IFLA_TUN_VNET_HDR (line 1740) | IFLA_TUN_VNET_HDR = 0x5 constant IFLA_TUN_PERSIST (line 1741) | IFLA_TUN_PERSIST = 0x6 constant IFLA_TUN_MULTI_QUEUE (line 1742) | IFLA_TUN_MULTI_QUEUE = 0x7 constant IFLA_TUN_NUM_QUEUES (line 1743) | IFLA_TUN_NUM_QUEUES = 0x8 constant IFLA_TUN_NUM_DISABLED_QUEUES (line 1744) | IFLA_TUN_NUM_DISABLED_QUEUES = 0x9 constant IFLA_RMNET_UNSPEC (line 1745) | IFLA_RMNET_UNSPEC = 0x0 constant IFLA_RMNET_MUX_ID (line 1746) | IFLA_RMNET_MUX_ID = 0x1 constant IFLA_RMNET_FLAGS (line 1747) | IFLA_RMNET_FLAGS = 0x2 constant NF_INET_PRE_ROUTING (line 1751) | NF_INET_PRE_ROUTING = 0x0 constant NF_INET_LOCAL_IN (line 1752) | NF_INET_LOCAL_IN = 0x1 constant NF_INET_FORWARD (line 1753) | NF_INET_FORWARD = 0x2 constant NF_INET_LOCAL_OUT (line 1754) | NF_INET_LOCAL_OUT = 0x3 constant NF_INET_POST_ROUTING (line 1755) | NF_INET_POST_ROUTING = 0x4 constant NF_INET_NUMHOOKS (line 1756) | NF_INET_NUMHOOKS = 0x5 constant NF_NETDEV_INGRESS (line 1760) | NF_NETDEV_INGRESS = 0x0 constant NF_NETDEV_NUMHOOKS (line 1761) | NF_NETDEV_NUMHOOKS = 0x1 constant NFPROTO_UNSPEC (line 1765) | NFPROTO_UNSPEC = 0x0 constant NFPROTO_INET (line 1766) | NFPROTO_INET = 0x1 constant NFPROTO_IPV4 (line 1767) | NFPROTO_IPV4 = 0x2 constant NFPROTO_ARP (line 1768) | NFPROTO_ARP = 0x3 constant NFPROTO_NETDEV (line 1769) | NFPROTO_NETDEV = 0x5 constant NFPROTO_BRIDGE (line 1770) | NFPROTO_BRIDGE = 0x7 constant NFPROTO_IPV6 (line 1771) | NFPROTO_IPV6 = 0xa constant NFPROTO_DECNET (line 1772) | NFPROTO_DECNET = 0xc constant NFPROTO_NUMPROTO (line 1773) | NFPROTO_NUMPROTO = 0xd constant SO_ORIGINAL_DST (line 1776) | SO_ORIGINAL_DST = 0x50 type Nfgenmsg (line 1778) | type Nfgenmsg struct constant NFNL_BATCH_UNSPEC (line 1785) | NFNL_BATCH_UNSPEC = 0x0 constant NFNL_BATCH_GENID (line 1786) | NFNL_BATCH_GENID = 0x1 constant NFT_REG_VERDICT (line 1790) | NFT_REG_VERDICT = 0x0 constant NFT_REG_1 (line 1791) | NFT_REG_1 = 0x1 constant NFT_REG_2 (line 1792) | NFT_REG_2 = 0x2 constant NFT_REG_3 (line 1793) | NFT_REG_3 = 0x3 constant NFT_REG_4 (line 1794) | NFT_REG_4 = 0x4 constant NFT_REG32_00 (line 1795) | NFT_REG32_00 = 0x8 constant NFT_REG32_01 (line 1796) | NFT_REG32_01 = 0x9 constant NFT_REG32_02 (line 1797) | NFT_REG32_02 = 0xa constant NFT_REG32_03 (line 1798) | NFT_REG32_03 = 0xb constant NFT_REG32_04 (line 1799) | NFT_REG32_04 = 0xc constant NFT_REG32_05 (line 1800) | NFT_REG32_05 = 0xd constant NFT_REG32_06 (line 1801) | NFT_REG32_06 = 0xe constant NFT_REG32_07 (line 1802) | NFT_REG32_07 = 0xf constant NFT_REG32_08 (line 1803) | NFT_REG32_08 = 0x10 constant NFT_REG32_09 (line 1804) | NFT_REG32_09 = 0x11 constant NFT_REG32_10 (line 1805) | NFT_REG32_10 = 0x12 constant NFT_REG32_11 (line 1806) | NFT_REG32_11 = 0x13 constant NFT_REG32_12 (line 1807) | NFT_REG32_12 = 0x14 constant NFT_REG32_13 (line 1808) | NFT_REG32_13 = 0x15 constant NFT_REG32_14 (line 1809) | NFT_REG32_14 = 0x16 constant NFT_REG32_15 (line 1810) | NFT_REG32_15 = 0x17 constant NFT_CONTINUE (line 1811) | NFT_CONTINUE = -0x1 constant NFT_BREAK (line 1812) | NFT_BREAK = -0x2 constant NFT_JUMP (line 1813) | NFT_JUMP = -0x3 constant NFT_GOTO (line 1814) | NFT_GOTO = -0x4 constant NFT_RETURN (line 1815) | NFT_RETURN = -0x5 constant NFT_MSG_NEWTABLE (line 1816) | NFT_MSG_NEWTABLE = 0x0 constant NFT_MSG_GETTABLE (line 1817) | NFT_MSG_GETTABLE = 0x1 constant NFT_MSG_DELTABLE (line 1818) | NFT_MSG_DELTABLE = 0x2 constant NFT_MSG_NEWCHAIN (line 1819) | NFT_MSG_NEWCHAIN = 0x3 constant NFT_MSG_GETCHAIN (line 1820) | NFT_MSG_GETCHAIN = 0x4 constant NFT_MSG_DELCHAIN (line 1821) | NFT_MSG_DELCHAIN = 0x5 constant NFT_MSG_NEWRULE (line 1822) | NFT_MSG_NEWRULE = 0x6 constant NFT_MSG_GETRULE (line 1823) | NFT_MSG_GETRULE = 0x7 constant NFT_MSG_DELRULE (line 1824) | NFT_MSG_DELRULE = 0x8 constant NFT_MSG_NEWSET (line 1825) | NFT_MSG_NEWSET = 0x9 constant NFT_MSG_GETSET (line 1826) | NFT_MSG_GETSET = 0xa constant NFT_MSG_DELSET (line 1827) | NFT_MSG_DELSET = 0xb constant NFT_MSG_NEWSETELEM (line 1828) | NFT_MSG_NEWSETELEM = 0xc constant NFT_MSG_GETSETELEM (line 1829) | NFT_MSG_GETSETELEM = 0xd constant NFT_MSG_DELSETELEM (line 1830) | NFT_MSG_DELSETELEM = 0xe constant NFT_MSG_NEWGEN (line 1831) | NFT_MSG_NEWGEN = 0xf constant NFT_MSG_GETGEN (line 1832) | NFT_MSG_GETGEN = 0x10 constant NFT_MSG_TRACE (line 1833) | NFT_MSG_TRACE = 0x11 constant NFT_MSG_NEWOBJ (line 1834) | NFT_MSG_NEWOBJ = 0x12 constant NFT_MSG_GETOBJ (line 1835) | NFT_MSG_GETOBJ = 0x13 constant NFT_MSG_DELOBJ (line 1836) | NFT_MSG_DELOBJ = 0x14 constant NFT_MSG_GETOBJ_RESET (line 1837) | NFT_MSG_GETOBJ_RESET = 0x15 constant NFT_MSG_MAX (line 1838) | NFT_MSG_MAX = 0x19 constant NFTA_LIST_UNSPEC (line 1839) | NFTA_LIST_UNSPEC = 0x0 constant NFTA_LIST_ELEM (line 1840) | NFTA_LIST_ELEM = 0x1 constant NFTA_HOOK_UNSPEC (line 1841) | NFTA_HOOK_UNSPEC = 0x0 constant NFTA_HOOK_HOOKNUM (line 1842) | NFTA_HOOK_HOOKNUM = 0x1 constant NFTA_HOOK_PRIORITY (line 1843) | NFTA_HOOK_PRIORITY = 0x2 constant NFTA_HOOK_DEV (line 1844) | NFTA_HOOK_DEV = 0x3 constant NFT_TABLE_F_DORMANT (line 1845) | NFT_TABLE_F_DORMANT = 0x1 constant NFTA_TABLE_UNSPEC (line 1846) | NFTA_TABLE_UNSPEC = 0x0 constant NFTA_TABLE_NAME (line 1847) | NFTA_TABLE_NAME = 0x1 constant NFTA_TABLE_FLAGS (line 1848) | NFTA_TABLE_FLAGS = 0x2 constant NFTA_TABLE_USE (line 1849) | NFTA_TABLE_USE = 0x3 constant NFTA_CHAIN_UNSPEC (line 1850) | NFTA_CHAIN_UNSPEC = 0x0 constant NFTA_CHAIN_TABLE (line 1851) | NFTA_CHAIN_TABLE = 0x1 constant NFTA_CHAIN_HANDLE (line 1852) | NFTA_CHAIN_HANDLE = 0x2 constant NFTA_CHAIN_NAME (line 1853) | NFTA_CHAIN_NAME = 0x3 constant NFTA_CHAIN_HOOK (line 1854) | NFTA_CHAIN_HOOK = 0x4 constant NFTA_CHAIN_POLICY (line 1855) | NFTA_CHAIN_POLICY = 0x5 constant NFTA_CHAIN_USE (line 1856) | NFTA_CHAIN_USE = 0x6 constant NFTA_CHAIN_TYPE (line 1857) | NFTA_CHAIN_TYPE = 0x7 constant NFTA_CHAIN_COUNTERS (line 1858) | NFTA_CHAIN_COUNTERS = 0x8 constant NFTA_CHAIN_PAD (line 1859) | NFTA_CHAIN_PAD = 0x9 constant NFTA_RULE_UNSPEC (line 1860) | NFTA_RULE_UNSPEC = 0x0 constant NFTA_RULE_TABLE (line 1861) | NFTA_RULE_TABLE = 0x1 constant NFTA_RULE_CHAIN (line 1862) | NFTA_RULE_CHAIN = 0x2 constant NFTA_RULE_HANDLE (line 1863) | NFTA_RULE_HANDLE = 0x3 constant NFTA_RULE_EXPRESSIONS (line 1864) | NFTA_RULE_EXPRESSIONS = 0x4 constant NFTA_RULE_COMPAT (line 1865) | NFTA_RULE_COMPAT = 0x5 constant NFTA_RULE_POSITION (line 1866) | NFTA_RULE_POSITION = 0x6 constant NFTA_RULE_USERDATA (line 1867) | NFTA_RULE_USERDATA = 0x7 constant NFTA_RULE_PAD (line 1868) | NFTA_RULE_PAD = 0x8 constant NFTA_RULE_ID (line 1869) | NFTA_RULE_ID = 0x9 constant NFT_RULE_COMPAT_F_INV (line 1870) | NFT_RULE_COMPAT_F_INV = 0x2 constant NFT_RULE_COMPAT_F_MASK (line 1871) | NFT_RULE_COMPAT_F_MASK = 0x2 constant NFTA_RULE_COMPAT_UNSPEC (line 1872) | NFTA_RULE_COMPAT_UNSPEC = 0x0 constant NFTA_RULE_COMPAT_PROTO (line 1873) | NFTA_RULE_COMPAT_PROTO = 0x1 constant NFTA_RULE_COMPAT_FLAGS (line 1874) | NFTA_RULE_COMPAT_FLAGS = 0x2 constant NFT_SET_ANONYMOUS (line 1875) | NFT_SET_ANONYMOUS = 0x1 constant NFT_SET_CONSTANT (line 1876) | NFT_SET_CONSTANT = 0x2 constant NFT_SET_INTERVAL (line 1877) | NFT_SET_INTERVAL = 0x4 constant NFT_SET_MAP (line 1878) | NFT_SET_MAP = 0x8 constant NFT_SET_TIMEOUT (line 1879) | NFT_SET_TIMEOUT = 0x10 constant NFT_SET_EVAL (line 1880) | NFT_SET_EVAL = 0x20 constant NFT_SET_OBJECT (line 1881) | NFT_SET_OBJECT = 0x40 constant NFT_SET_POL_PERFORMANCE (line 1882) | NFT_SET_POL_PERFORMANCE = 0x0 constant NFT_SET_POL_MEMORY (line 1883) | NFT_SET_POL_MEMORY = 0x1 constant NFTA_SET_DESC_UNSPEC (line 1884) | NFTA_SET_DESC_UNSPEC = 0x0 constant NFTA_SET_DESC_SIZE (line 1885) | NFTA_SET_DESC_SIZE = 0x1 constant NFTA_SET_UNSPEC (line 1886) | NFTA_SET_UNSPEC = 0x0 constant NFTA_SET_TABLE (line 1887) | NFTA_SET_TABLE = 0x1 constant NFTA_SET_NAME (line 1888) | NFTA_SET_NAME = 0x2 constant NFTA_SET_FLAGS (line 1889) | NFTA_SET_FLAGS = 0x3 constant NFTA_SET_KEY_TYPE (line 1890) | NFTA_SET_KEY_TYPE = 0x4 constant NFTA_SET_KEY_LEN (line 1891) | NFTA_SET_KEY_LEN = 0x5 constant NFTA_SET_DATA_TYPE (line 1892) | NFTA_SET_DATA_TYPE = 0x6 constant NFTA_SET_DATA_LEN (line 1893) | NFTA_SET_DATA_LEN = 0x7 constant NFTA_SET_POLICY (line 1894) | NFTA_SET_POLICY = 0x8 constant NFTA_SET_DESC (line 1895) | NFTA_SET_DESC = 0x9 constant NFTA_SET_ID (line 1896) | NFTA_SET_ID = 0xa constant NFTA_SET_TIMEOUT (line 1897) | NFTA_SET_TIMEOUT = 0xb constant NFTA_SET_GC_INTERVAL (line 1898) | NFTA_SET_GC_INTERVAL = 0xc constant NFTA_SET_USERDATA (line 1899) | NFTA_SET_USERDATA = 0xd constant NFTA_SET_PAD (line 1900) | NFTA_SET_PAD = 0xe constant NFTA_SET_OBJ_TYPE (line 1901) | NFTA_SET_OBJ_TYPE = 0xf constant NFT_SET_ELEM_INTERVAL_END (line 1902) | NFT_SET_ELEM_INTERVAL_END = 0x1 constant NFTA_SET_ELEM_UNSPEC (line 1903) | NFTA_SET_ELEM_UNSPEC = 0x0 constant NFTA_SET_ELEM_KEY (line 1904) | NFTA_SET_ELEM_KEY = 0x1 constant NFTA_SET_ELEM_DATA (line 1905) | NFTA_SET_ELEM_DATA = 0x2 constant NFTA_SET_ELEM_FLAGS (line 1906) | NFTA_SET_ELEM_FLAGS = 0x3 constant NFTA_SET_ELEM_TIMEOUT (line 1907) | NFTA_SET_ELEM_TIMEOUT = 0x4 constant NFTA_SET_ELEM_EXPIRATION (line 1908) | NFTA_SET_ELEM_EXPIRATION = 0x5 constant NFTA_SET_ELEM_USERDATA (line 1909) | NFTA_SET_ELEM_USERDATA = 0x6 constant NFTA_SET_ELEM_EXPR (line 1910) | NFTA_SET_ELEM_EXPR = 0x7 constant NFTA_SET_ELEM_PAD (line 1911) | NFTA_SET_ELEM_PAD = 0x8 constant NFTA_SET_ELEM_OBJREF (line 1912) | NFTA_SET_ELEM_OBJREF = 0x9 constant NFTA_SET_ELEM_LIST_UNSPEC (line 1913) | NFTA_SET_ELEM_LIST_UNSPEC = 0x0 constant NFTA_SET_ELEM_LIST_TABLE (line 1914) | NFTA_SET_ELEM_LIST_TABLE = 0x1 constant NFTA_SET_ELEM_LIST_SET (line 1915) | NFTA_SET_ELEM_LIST_SET = 0x2 constant NFTA_SET_ELEM_LIST_ELEMENTS (line 1916) | NFTA_SET_ELEM_LIST_ELEMENTS = 0x3 constant NFTA_SET_ELEM_LIST_SET_ID (line 1917) | NFTA_SET_ELEM_LIST_SET_ID = 0x4 constant NFT_DATA_VALUE (line 1918) | NFT_DATA_VALUE = 0x0 constant NFT_DATA_VERDICT (line 1919) | NFT_DATA_VERDICT = 0xffffff00 constant NFTA_DATA_UNSPEC (line 1920) | NFTA_DATA_UNSPEC = 0x0 constant NFTA_DATA_VALUE (line 1921) | NFTA_DATA_VALUE = 0x1 constant NFTA_DATA_VERDICT (line 1922) | NFTA_DATA_VERDICT = 0x2 constant NFTA_VERDICT_UNSPEC (line 1923) | NFTA_VERDICT_UNSPEC = 0x0 constant NFTA_VERDICT_CODE (line 1924) | NFTA_VERDICT_CODE = 0x1 constant NFTA_VERDICT_CHAIN (line 1925) | NFTA_VERDICT_CHAIN = 0x2 constant NFTA_EXPR_UNSPEC (line 1926) | NFTA_EXPR_UNSPEC = 0x0 constant NFTA_EXPR_NAME (line 1927) | NFTA_EXPR_NAME = 0x1 constant NFTA_EXPR_DATA (line 1928) | NFTA_EXPR_DATA = 0x2 constant NFTA_IMMEDIATE_UNSPEC (line 1929) | NFTA_IMMEDIATE_UNSPEC = 0x0 constant NFTA_IMMEDIATE_DREG (line 1930) | NFTA_IMMEDIATE_DREG = 0x1 constant NFTA_IMMEDIATE_DATA (line 1931) | NFTA_IMMEDIATE_DATA = 0x2 constant NFTA_BITWISE_UNSPEC (line 1932) | NFTA_BITWISE_UNSPEC = 0x0 constant NFTA_BITWISE_SREG (line 1933) | NFTA_BITWISE_SREG = 0x1 constant NFTA_BITWISE_DREG (line 1934) | NFTA_BITWISE_DREG = 0x2 constant NFTA_BITWISE_LEN (line 1935) | NFTA_BITWISE_LEN = 0x3 constant NFTA_BITWISE_MASK (line 1936) | NFTA_BITWISE_MASK = 0x4 constant NFTA_BITWISE_XOR (line 1937) | NFTA_BITWISE_XOR = 0x5 constant NFT_BYTEORDER_NTOH (line 1938) | NFT_BYTEORDER_NTOH = 0x0 constant NFT_BYTEORDER_HTON (line 1939) | NFT_BYTEORDER_HTON = 0x1 constant NFTA_BYTEORDER_UNSPEC (line 1940) | NFTA_BYTEORDER_UNSPEC = 0x0 constant NFTA_BYTEORDER_SREG (line 1941) | NFTA_BYTEORDER_SREG = 0x1 constant NFTA_BYTEORDER_DREG (line 1942) | NFTA_BYTEORDER_DREG = 0x2 constant NFTA_BYTEORDER_OP (line 1943) | NFTA_BYTEORDER_OP = 0x3 constant NFTA_BYTEORDER_LEN (line 1944) | NFTA_BYTEORDER_LEN = 0x4 constant NFTA_BYTEORDER_SIZE (line 1945) | NFTA_BYTEORDER_SIZE = 0x5 constant NFT_CMP_EQ (line 1946) | NFT_CMP_EQ = 0x0 constant NFT_CMP_NEQ (line 1947) | NFT_CMP_NEQ = 0x1 constant NFT_CMP_LT (line 1948) | NFT_CMP_LT = 0x2 constant NFT_CMP_LTE (line 1949) | NFT_CMP_LTE = 0x3 constant NFT_CMP_GT (line 1950) | NFT_CMP_GT = 0x4 constant NFT_CMP_GTE (line 1951) | NFT_CMP_GTE = 0x5 constant NFTA_CMP_UNSPEC (line 1952) | NFTA_CMP_UNSPEC = 0x0 constant NFTA_CMP_SREG (line 1953) | NFTA_CMP_SREG = 0x1 constant NFTA_CMP_OP (line 1954) | NFTA_CMP_OP = 0x2 constant NFTA_CMP_DATA (line 1955) | NFTA_CMP_DATA = 0x3 constant NFT_RANGE_EQ (line 1956) | NFT_RANGE_EQ = 0x0 constant NFT_RANGE_NEQ (line 1957) | NFT_RANGE_NEQ = 0x1 constant NFTA_RANGE_UNSPEC (line 1958) | NFTA_RANGE_UNSPEC = 0x0 constant NFTA_RANGE_SREG (line 1959) | NFTA_RANGE_SREG = 0x1 constant NFTA_RANGE_OP (line 1960) | NFTA_RANGE_OP = 0x2 constant NFTA_RANGE_FROM_DATA (line 1961) | NFTA_RANGE_FROM_DATA = 0x3 constant NFTA_RANGE_TO_DATA (line 1962) | NFTA_RANGE_TO_DATA = 0x4 constant NFT_LOOKUP_F_INV (line 1963) | NFT_LOOKUP_F_INV = 0x1 constant NFTA_LOOKUP_UNSPEC (line 1964) | NFTA_LOOKUP_UNSPEC = 0x0 constant NFTA_LOOKUP_SET (line 1965) | NFTA_LOOKUP_SET = 0x1 constant NFTA_LOOKUP_SREG (line 1966) | NFTA_LOOKUP_SREG = 0x2 constant NFTA_LOOKUP_DREG (line 1967) | NFTA_LOOKUP_DREG = 0x3 constant NFTA_LOOKUP_SET_ID (line 1968) | NFTA_LOOKUP_SET_ID = 0x4 constant NFTA_LOOKUP_FLAGS (line 1969) | NFTA_LOOKUP_FLAGS = 0x5 constant NFT_DYNSET_OP_ADD (line 1970) | NFT_DYNSET_OP_ADD = 0x0 constant NFT_DYNSET_OP_UPDATE (line 1971) | NFT_DYNSET_OP_UPDATE = 0x1 constant NFT_DYNSET_F_INV (line 1972) | NFT_DYNSET_F_INV = 0x1 constant NFTA_DYNSET_UNSPEC (line 1973) | NFTA_DYNSET_UNSPEC = 0x0 constant NFTA_DYNSET_SET_NAME (line 1974) | NFTA_DYNSET_SET_NAME = 0x1 constant NFTA_DYNSET_SET_ID (line 1975) | NFTA_DYNSET_SET_ID = 0x2 constant NFTA_DYNSET_OP (line 1976) | NFTA_DYNSET_OP = 0x3 constant NFTA_DYNSET_SREG_KEY (line 1977) | NFTA_DYNSET_SREG_KEY = 0x4 constant NFTA_DYNSET_SREG_DATA (line 1978) | NFTA_DYNSET_SREG_DATA = 0x5 constant NFTA_DYNSET_TIMEOUT (line 1979) | NFTA_DYNSET_TIMEOUT = 0x6 constant NFTA_DYNSET_EXPR (line 1980) | NFTA_DYNSET_EXPR = 0x7 constant NFTA_DYNSET_PAD (line 1981) | NFTA_DYNSET_PAD = 0x8 constant NFTA_DYNSET_FLAGS (line 1982) | NFTA_DYNSET_FLAGS = 0x9 constant NFT_PAYLOAD_LL_HEADER (line 1983) | NFT_PAYLOAD_LL_HEADER = 0x0 constant NFT_PAYLOAD_NETWORK_HEADER (line 1984) | NFT_PAYLOAD_NETWORK_HEADER = 0x1 constant NFT_PAYLOAD_TRANSPORT_HEADER (line 1985) | NFT_PAYLOAD_TRANSPORT_HEADER = 0x2 constant NFT_PAYLOAD_CSUM_NONE (line 1986) | NFT_PAYLOAD_CSUM_NONE = 0x0 constant NFT_PAYLOAD_CSUM_INET (line 1987) | NFT_PAYLOAD_CSUM_INET = 0x1 constant NFT_PAYLOAD_L4CSUM_PSEUDOHDR (line 1988) | NFT_PAYLOAD_L4CSUM_PSEUDOHDR = 0x1 constant NFTA_PAYLOAD_UNSPEC (line 1989) | NFTA_PAYLOAD_UNSPEC = 0x0 constant NFTA_PAYLOAD_DREG (line 1990) | NFTA_PAYLOAD_DREG = 0x1 constant NFTA_PAYLOAD_BASE (line 1991) | NFTA_PAYLOAD_BASE = 0x2 constant NFTA_PAYLOAD_OFFSET (line 1992) | NFTA_PAYLOAD_OFFSET = 0x3 constant NFTA_PAYLOAD_LEN (line 1993) | NFTA_PAYLOAD_LEN = 0x4 constant NFTA_PAYLOAD_SREG (line 1994) | NFTA_PAYLOAD_SREG = 0x5 constant NFTA_PAYLOAD_CSUM_TYPE (line 1995) | NFTA_PAYLOAD_CSUM_TYPE = 0x6 constant NFTA_PAYLOAD_CSUM_OFFSET (line 1996) | NFTA_PAYLOAD_CSUM_OFFSET = 0x7 constant NFTA_PAYLOAD_CSUM_FLAGS (line 1997) | NFTA_PAYLOAD_CSUM_FLAGS = 0x8 constant NFT_EXTHDR_F_PRESENT (line 1998) | NFT_EXTHDR_F_PRESENT = 0x1 constant NFT_EXTHDR_OP_IPV6 (line 1999) | NFT_EXTHDR_OP_IPV6 = 0x0 constant NFT_EXTHDR_OP_TCPOPT (line 2000) | NFT_EXTHDR_OP_TCPOPT = 0x1 constant NFTA_EXTHDR_UNSPEC (line 2001) | NFTA_EXTHDR_UNSPEC = 0x0 constant NFTA_EXTHDR_DREG (line 2002) | NFTA_EXTHDR_DREG = 0x1 constant NFTA_EXTHDR_TYPE (line 2003) | NFTA_EXTHDR_TYPE = 0x2 constant NFTA_EXTHDR_OFFSET (line 2004) | NFTA_EXTHDR_OFFSET = 0x3 constant NFTA_EXTHDR_LEN (line 2005) | NFTA_EXTHDR_LEN = 0x4 constant NFTA_EXTHDR_FLAGS (line 2006) | NFTA_EXTHDR_FLAGS = 0x5 constant NFTA_EXTHDR_OP (line 2007) | NFTA_EXTHDR_OP = 0x6 constant NFTA_EXTHDR_SREG (line 2008) | NFTA_EXTHDR_SREG = 0x7 constant NFT_META_LEN (line 2009) | NFT_META_LEN = 0x0 constant NFT_META_PROTOCOL (line 2010) | NFT_META_PROTOCOL = 0x1 constant NFT_META_PRIORITY (line 2011) | NFT_META_PRIORITY = 0x2 constant NFT_META_MARK (line 2012) | NFT_META_MARK = 0x3 constant NFT_META_IIF (line 2013) | NFT_META_IIF = 0x4 constant NFT_META_OIF (line 2014) | NFT_META_OIF = 0x5 constant NFT_META_IIFNAME (line 2015) | NFT_META_IIFNAME = 0x6 constant NFT_META_OIFNAME (line 2016) | NFT_META_OIFNAME = 0x7 constant NFT_META_IIFTYPE (line 2017) | NFT_META_IIFTYPE = 0x8 constant NFT_META_OIFTYPE (line 2018) | NFT_META_OIFTYPE = 0x9 constant NFT_META_SKUID (line 2019) | NFT_META_SKUID = 0xa constant NFT_META_SKGID (line 2020) | NFT_META_SKGID = 0xb constant NFT_META_NFTRACE (line 2021) | NFT_META_NFTRACE = 0xc constant NFT_META_RTCLASSID (line 2022) | NFT_META_RTCLASSID = 0xd constant NFT_META_SECMARK (line 2023) | NFT_META_SECMARK = 0xe constant NFT_META_NFPROTO (line 2024) | NFT_META_NFPROTO = 0xf constant NFT_META_L4PROTO (line 2025) | NFT_META_L4PROTO = 0x10 constant NFT_META_BRI_IIFNAME (line 2026) | NFT_META_BRI_IIFNAME = 0x11 constant NFT_META_BRI_OIFNAME (line 2027) | NFT_META_BRI_OIFNAME = 0x12 constant NFT_META_PKTTYPE (line 2028) | NFT_META_PKTTYPE = 0x13 constant NFT_META_CPU (line 2029) | NFT_META_CPU = 0x14 constant NFT_META_IIFGROUP (line 2030) | NFT_META_IIFGROUP = 0x15 constant NFT_META_OIFGROUP (line 2031) | NFT_META_OIFGROUP = 0x16 constant NFT_META_CGROUP (line 2032) | NFT_META_CGROUP = 0x17 constant NFT_META_PRANDOM (line 2033) | NFT_META_PRANDOM = 0x18 constant NFT_RT_CLASSID (line 2034) | NFT_RT_CLASSID = 0x0 constant NFT_RT_NEXTHOP4 (line 2035) | NFT_RT_NEXTHOP4 = 0x1 constant NFT_RT_NEXTHOP6 (line 2036) | NFT_RT_NEXTHOP6 = 0x2 constant NFT_RT_TCPMSS (line 2037) | NFT_RT_TCPMSS = 0x3 constant NFT_HASH_JENKINS (line 2038) | NFT_HASH_JENKINS = 0x0 constant NFT_HASH_SYM (line 2039) | NFT_HASH_SYM = 0x1 constant NFTA_HASH_UNSPEC (line 2040) | NFTA_HASH_UNSPEC = 0x0 constant NFTA_HASH_SREG (line 2041) | NFTA_HASH_SREG = 0x1 constant NFTA_HASH_DREG (line 2042) | NFTA_HASH_DREG = 0x2 constant NFTA_HASH_LEN (line 2043) | NFTA_HASH_LEN = 0x3 constant NFTA_HASH_MODULUS (line 2044) | NFTA_HASH_MODULUS = 0x4 constant NFTA_HASH_SEED (line 2045) | NFTA_HASH_SEED = 0x5 constant NFTA_HASH_OFFSET (line 2046) | NFTA_HASH_OFFSET = 0x6 constant NFTA_HASH_TYPE (line 2047) | NFTA_HASH_TYPE = 0x7 constant NFTA_META_UNSPEC (line 2048) | NFTA_META_UNSPEC = 0x0 constant NFTA_META_DREG (line 2049) | NFTA_META_DREG = 0x1 constant NFTA_META_KEY (line 2050) | NFTA_META_KEY = 0x2 constant NFTA_META_SREG (line 2051) | NFTA_META_SREG = 0x3 constant NFTA_RT_UNSPEC (line 2052) | NFTA_RT_UNSPEC = 0x0 constant NFTA_RT_DREG (line 2053) | NFTA_RT_DREG = 0x1 constant NFTA_RT_KEY (line 2054) | NFTA_RT_KEY = 0x2 constant NFT_CT_STATE (line 2055) | NFT_CT_STATE = 0x0 constant NFT_CT_DIRECTION (line 2056) | NFT_CT_DIRECTION = 0x1 constant NFT_CT_STATUS (line 2057) | NFT_CT_STATUS = 0x2 constant NFT_CT_MARK (line 2058) | NFT_CT_MARK = 0x3 constant NFT_CT_SECMARK (line 2059) | NFT_CT_SECMARK = 0x4 constant NFT_CT_EXPIRATION (line 2060) | NFT_CT_EXPIRATION = 0x5 constant NFT_CT_HELPER (line 2061) | NFT_CT_HELPER = 0x6 constant NFT_CT_L3PROTOCOL (line 2062) | NFT_CT_L3PROTOCOL = 0x7 constant NFT_CT_SRC (line 2063) | NFT_CT_SRC = 0x8 constant NFT_CT_DST (line 2064) | NFT_CT_DST = 0x9 constant NFT_CT_PROTOCOL (line 2065) | NFT_CT_PROTOCOL = 0xa constant NFT_CT_PROTO_SRC (line 2066) | NFT_CT_PROTO_SRC = 0xb constant NFT_CT_PROTO_DST (line 2067) | NFT_CT_PROTO_DST = 0xc constant NFT_CT_LABELS (line 2068) | NFT_CT_LABELS = 0xd constant NFT_CT_PKTS (line 2069) | NFT_CT_PKTS = 0xe constant NFT_CT_BYTES (line 2070) | NFT_CT_BYTES = 0xf constant NFT_CT_AVGPKT (line 2071) | NFT_CT_AVGPKT = 0x10 constant NFT_CT_ZONE (line 2072) | NFT_CT_ZONE = 0x11 constant NFT_CT_EVENTMASK (line 2073) | NFT_CT_EVENTMASK = 0x12 constant NFTA_CT_UNSPEC (line 2074) | NFTA_CT_UNSPEC = 0x0 constant NFTA_CT_DREG (line 2075) | NFTA_CT_DREG = 0x1 constant NFTA_CT_KEY (line 2076) | NFTA_CT_KEY = 0x2 constant NFTA_CT_DIRECTION (line 2077) | NFTA_CT_DIRECTION = 0x3 constant NFTA_CT_SREG (line 2078) | NFTA_CT_SREG = 0x4 constant NFT_LIMIT_PKTS (line 2079) | NFT_LIMIT_PKTS = 0x0 constant NFT_LIMIT_PKT_BYTES (line 2080) | NFT_LIMIT_PKT_BYTES = 0x1 constant NFT_LIMIT_F_INV (line 2081) | NFT_LIMIT_F_INV = 0x1 constant NFTA_LIMIT_UNSPEC (line 2082) | NFTA_LIMIT_UNSPEC = 0x0 constant NFTA_LIMIT_RATE (line 2083) | NFTA_LIMIT_RATE = 0x1 constant NFTA_LIMIT_UNIT (line 2084) | NFTA_LIMIT_UNIT = 0x2 constant NFTA_LIMIT_BURST (line 2085) | NFTA_LIMIT_BURST = 0x3 constant NFTA_LIMIT_TYPE (line 2086) | NFTA_LIMIT_TYPE = 0x4 constant NFTA_LIMIT_FLAGS (line 2087) | NFTA_LIMIT_FLAGS = 0x5 constant NFTA_LIMIT_PAD (line 2088) | NFTA_LIMIT_PAD = 0x6 constant NFTA_COUNTER_UNSPEC (line 2089) | NFTA_COUNTER_UNSPEC = 0x0 constant NFTA_COUNTER_BYTES (line 2090) | NFTA_COUNTER_BYTES = 0x1 constant NFTA_COUNTER_PACKETS (line 2091) | NFTA_COUNTER_PACKETS = 0x2 constant NFTA_COUNTER_PAD (line 2092) | NFTA_COUNTER_PAD = 0x3 constant NFTA_LOG_UNSPEC (line 2093) | NFTA_LOG_UNSPEC = 0x0 constant NFTA_LOG_GROUP (line 2094) | NFTA_LOG_GROUP = 0x1 constant NFTA_LOG_PREFIX (line 2095) | NFTA_LOG_PREFIX = 0x2 constant NFTA_LOG_SNAPLEN (line 2096) | NFTA_LOG_SNAPLEN = 0x3 constant NFTA_LOG_QTHRESHOLD (line 2097) | NFTA_LOG_QTHRESHOLD = 0x4 constant NFTA_LOG_LEVEL (line 2098) | NFTA_LOG_LEVEL = 0x5 constant NFTA_LOG_FLAGS (line 2099) | NFTA_LOG_FLAGS = 0x6 constant NFTA_QUEUE_UNSPEC (line 2100) | NFTA_QUEUE_UNSPEC = 0x0 constant NFTA_QUEUE_NUM (line 2101) | NFTA_QUEUE_NUM = 0x1 constant NFTA_QUEUE_TOTAL (line 2102) | NFTA_QUEUE_TOTAL = 0x2 constant NFTA_QUEUE_FLAGS (line 2103) | NFTA_QUEUE_FLAGS = 0x3 constant NFTA_QUEUE_SREG_QNUM (line 2104) | NFTA_QUEUE_SREG_QNUM = 0x4 constant NFT_QUOTA_F_INV (line 2105) | NFT_QUOTA_F_INV = 0x1 constant NFT_QUOTA_F_DEPLETED (line 2106) | NFT_QUOTA_F_DEPLETED = 0x2 constant NFTA_QUOTA_UNSPEC (line 2107) | NFTA_QUOTA_UNSPEC = 0x0 constant NFTA_QUOTA_BYTES (line 2108) | NFTA_QUOTA_BYTES = 0x1 constant NFTA_QUOTA_FLAGS (line 2109) | NFTA_QUOTA_FLAGS = 0x2 constant NFTA_QUOTA_PAD (line 2110) | NFTA_QUOTA_PAD = 0x3 constant NFTA_QUOTA_CONSUMED (line 2111) | NFTA_QUOTA_CONSUMED = 0x4 constant NFT_REJECT_ICMP_UNREACH (line 2112) | NFT_REJECT_ICMP_UNREACH = 0x0 constant NFT_REJECT_TCP_RST (line 2113) | NFT_REJECT_TCP_RST = 0x1 constant NFT_REJECT_ICMPX_UNREACH (line 2114) | NFT_REJECT_ICMPX_UNREACH = 0x2 constant NFT_REJECT_ICMPX_NO_ROUTE (line 2115) | NFT_REJECT_ICMPX_NO_ROUTE = 0x0 constant NFT_REJECT_ICMPX_PORT_UNREACH (line 2116) | NFT_REJECT_ICMPX_PORT_UNREACH = 0x1 constant NFT_REJECT_ICMPX_HOST_UNREACH (line 2117) | NFT_REJECT_ICMPX_HOST_UNREACH = 0x2 constant NFT_REJECT_ICMPX_ADMIN_PROHIBITED (line 2118) | NFT_REJECT_ICMPX_ADMIN_PROHIBITED = 0x3 constant NFTA_REJECT_UNSPEC (line 2119) | NFTA_REJECT_UNSPEC = 0x0 constant NFTA_REJECT_TYPE (line 2120) | NFTA_REJECT_TYPE = 0x1 constant NFTA_REJECT_ICMP_CODE (line 2121) | NFTA_REJECT_ICMP_CODE = 0x2 constant NFT_NAT_SNAT (line 2122) | NFT_NAT_SNAT = 0x0 constant NFT_NAT_DNAT (line 2123) | NFT_NAT_DNAT = 0x1 constant NFTA_NAT_UNSPEC (line 2124) | NFTA_NAT_UNSPEC = 0x0 constant NFTA_NAT_TYPE (line 2125) | NFTA_NAT_TYPE = 0x1 constant NFTA_NAT_FAMILY (line 2126) | NFTA_NAT_FAMILY = 0x2 constant NFTA_NAT_REG_ADDR_MIN (line 2127) | NFTA_NAT_REG_ADDR_MIN = 0x3 constant NFTA_NAT_REG_ADDR_MAX (line 2128) | NFTA_NAT_REG_ADDR_MAX = 0x4 constant NFTA_NAT_REG_PROTO_MIN (line 2129) | NFTA_NAT_REG_PROTO_MIN = 0x5 constant NFTA_NAT_REG_PROTO_MAX (line 2130) | NFTA_NAT_REG_PROTO_MAX = 0x6 constant NFTA_NAT_FLAGS (line 2131) | NFTA_NAT_FLAGS = 0x7 constant NFTA_MASQ_UNSPEC (line 2132) | NFTA_MASQ_UNSPEC = 0x0 constant NFTA_MASQ_FLAGS (line 2133) | NFTA_MASQ_FLAGS = 0x1 constant NFTA_MASQ_REG_PROTO_MIN (line 2134) | NFTA_MASQ_REG_PROTO_MIN = 0x2 constant NFTA_MASQ_REG_PROTO_MAX (line 2135) | NFTA_MASQ_REG_PROTO_MAX = 0x3 constant NFTA_REDIR_UNSPEC (line 2136) | NFTA_REDIR_UNSPEC = 0x0 constant NFTA_REDIR_REG_PROTO_MIN (line 2137) | NFTA_REDIR_REG_PROTO_MIN = 0x1 constant NFTA_REDIR_REG_PROTO_MAX (line 2138) | NFTA_REDIR_REG_PROTO_MAX = 0x2 constant NFTA_REDIR_FLAGS (line 2139) | NFTA_REDIR_FLAGS = 0x3 constant NFTA_DUP_UNSPEC (line 2140) | NFTA_DUP_UNSPEC = 0x0 constant NFTA_DUP_SREG_ADDR (line 2141) | NFTA_DUP_SREG_ADDR = 0x1 constant NFTA_DUP_SREG_DEV (line 2142) | NFTA_DUP_SREG_DEV = 0x2 constant NFTA_FWD_UNSPEC (line 2143) | NFTA_FWD_UNSPEC = 0x0 constant NFTA_FWD_SREG_DEV (line 2144) | NFTA_FWD_SREG_DEV = 0x1 constant NFTA_OBJREF_UNSPEC (line 2145) | NFTA_OBJREF_UNSPEC = 0x0 constant NFTA_OBJREF_IMM_TYPE (line 2146) | NFTA_OBJREF_IMM_TYPE = 0x1 constant NFTA_OBJREF_IMM_NAME (line 2147) | NFTA_OBJREF_IMM_NAME = 0x2 constant NFTA_OBJREF_SET_SREG (line 2148) | NFTA_OBJREF_SET_SREG = 0x3 constant NFTA_OBJREF_SET_NAME (line 2149) | NFTA_OBJREF_SET_NAME = 0x4 constant NFTA_OBJREF_SET_ID (line 2150) | NFTA_OBJREF_SET_ID = 0x5 constant NFTA_GEN_UNSPEC (line 2151) | NFTA_GEN_UNSPEC = 0x0 constant NFTA_GEN_ID (line 2152) | NFTA_GEN_ID = 0x1 constant NFTA_GEN_PROC_PID (line 2153) | NFTA_GEN_PROC_PID = 0x2 constant NFTA_GEN_PROC_NAME (line 2154) | NFTA_GEN_PROC_NAME = 0x3 constant NFTA_FIB_UNSPEC (line 2155) | NFTA_FIB_UNSPEC = 0x0 constant NFTA_FIB_DREG (line 2156) | NFTA_FIB_DREG = 0x1 constant NFTA_FIB_RESULT (line 2157) | NFTA_FIB_RESULT = 0x2 constant NFTA_FIB_FLAGS (line 2158) | NFTA_FIB_FLAGS = 0x3 constant NFT_FIB_RESULT_UNSPEC (line 2159) | NFT_FIB_RESULT_UNSPEC = 0x0 constant NFT_FIB_RESULT_OIF (line 2160) | NFT_FIB_RESULT_OIF = 0x1 constant NFT_FIB_RESULT_OIFNAME (line 2161) | NFT_FIB_RESULT_OIFNAME = 0x2 constant NFT_FIB_RESULT_ADDRTYPE (line 2162) | NFT_FIB_RESULT_ADDRTYPE = 0x3 constant NFTA_FIB_F_SADDR (line 2163) | NFTA_FIB_F_SADDR = 0x1 constant NFTA_FIB_F_DADDR (line 2164) | NFTA_FIB_F_DADDR = 0x2 constant NFTA_FIB_F_MARK (line 2165) | NFTA_FIB_F_MARK = 0x4 constant NFTA_FIB_F_IIF (line 2166) | NFTA_FIB_F_IIF = 0x8 constant NFTA_FIB_F_OIF (line 2167) | NFTA_FIB_F_OIF = 0x10 constant NFTA_FIB_F_PRESENT (line 2168) | NFTA_FIB_F_PRESENT = 0x20 constant NFTA_CT_HELPER_UNSPEC (line 2169) | NFTA_CT_HELPER_UNSPEC = 0x0 constant NFTA_CT_HELPER_NAME (line 2170) | NFTA_CT_HELPER_NAME = 0x1 constant NFTA_CT_HELPER_L3PROTO (line 2171) | NFTA_CT_HELPER_L3PROTO = 0x2 constant NFTA_CT_HELPER_L4PROTO (line 2172) | NFTA_CT_HELPER_L4PROTO = 0x3 constant NFTA_OBJ_UNSPEC (line 2173) | NFTA_OBJ_UNSPEC = 0x0 constant NFTA_OBJ_TABLE (line 2174) | NFTA_OBJ_TABLE = 0x1 constant NFTA_OBJ_NAME (line 2175) | NFTA_OBJ_NAME = 0x2 constant NFTA_OBJ_TYPE (line 2176) | NFTA_OBJ_TYPE = 0x3 constant NFTA_OBJ_DATA (line 2177) | NFTA_OBJ_DATA = 0x4 constant NFTA_OBJ_USE (line 2178) | NFTA_OBJ_USE = 0x5 constant NFTA_TRACE_UNSPEC (line 2179) | NFTA_TRACE_UNSPEC = 0x0 constant NFTA_TRACE_TABLE (line 2180) | NFTA_TRACE_TABLE = 0x1 constant NFTA_TRACE_CHAIN (line 2181) | NFTA_TRACE_CHAIN = 0x2 constant NFTA_TRACE_RULE_HANDLE (line 2182) | NFTA_TRACE_RULE_HANDLE = 0x3 constant NFTA_TRACE_TYPE (line 2183) | NFTA_TRACE_TYPE = 0x4 constant NFTA_TRACE_VERDICT (line 2184) | NFTA_TRACE_VERDICT = 0x5 constant NFTA_TRACE_ID (line 2185) | NFTA_TRACE_ID = 0x6 constant NFTA_TRACE_LL_HEADER (line 2186) | NFTA_TRACE_LL_HEADER = 0x7 constant NFTA_TRACE_NETWORK_HEADER (line 2187) | NFTA_TRACE_NETWORK_HEADER = 0x8 constant NFTA_TRACE_TRANSPORT_HEADER (line 2188) | NFTA_TRACE_TRANSPORT_HEADER = 0x9 constant NFTA_TRACE_IIF (line 2189) | NFTA_TRACE_IIF = 0xa constant NFTA_TRACE_IIFTYPE (line 2190) | NFTA_TRACE_IIFTYPE = 0xb constant NFTA_TRACE_OIF (line 2191) | NFTA_TRACE_OIF = 0xc constant NFTA_TRACE_OIFTYPE (line 2192) | NFTA_TRACE_OIFTYPE = 0xd constant NFTA_TRACE_MARK (line 2193) | NFTA_TRACE_MARK = 0xe constant NFTA_TRACE_NFPROTO (line 2194) | NFTA_TRACE_NFPROTO = 0xf constant NFTA_TRACE_POLICY (line 2195) | NFTA_TRACE_POLICY = 0x10 constant NFTA_TRACE_PAD (line 2196) | NFTA_TRACE_PAD = 0x11 constant NFT_TRACETYPE_UNSPEC (line 2197) | NFT_TRACETYPE_UNSPEC = 0x0 constant NFT_TRACETYPE_POLICY (line 2198) | NFT_TRACETYPE_POLICY = 0x1 constant NFT_TRACETYPE_RETURN (line 2199) | NFT_TRACETYPE_RETURN = 0x2 constant NFT_TRACETYPE_RULE (line 2200) | NFT_TRACETYPE_RULE = 0x3 constant NFTA_NG_UNSPEC (line 2201) | NFTA_NG_UNSPEC = 0x0 constant NFTA_NG_DREG (line 2202) | NFTA_NG_DREG = 0x1 constant NFTA_NG_MODULUS (line 2203) | NFTA_NG_MODULUS = 0x2 constant NFTA_NG_TYPE (line 2204) | NFTA_NG_TYPE = 0x3 constant NFTA_NG_OFFSET (line 2205) | NFTA_NG_OFFSET = 0x4 constant NFT_NG_INCREMENTAL (line 2206) | NFT_NG_INCREMENTAL = 0x0 constant NFT_NG_RANDOM (line 2207) | NFT_NG_RANDOM = 0x1 constant NFTA_TARGET_UNSPEC (line 2211) | NFTA_TARGET_UNSPEC = 0x0 constant NFTA_TARGET_NAME (line 2212) | NFTA_TARGET_NAME = 0x1 constant NFTA_TARGET_REV (line 2213) | NFTA_TARGET_REV = 0x2 constant NFTA_TARGET_INFO (line 2214) | NFTA_TARGET_INFO = 0x3 constant NFTA_MATCH_UNSPEC (line 2215) | NFTA_MATCH_UNSPEC = 0x0 constant NFTA_MATCH_NAME (line 2216) | NFTA_MATCH_NAME = 0x1 constant NFTA_MATCH_REV (line 2217) | NFTA_MATCH_REV = 0x2 constant NFTA_MATCH_INFO (line 2218) | NFTA_MATCH_INFO = 0x3 constant NFTA_COMPAT_UNSPEC (line 2219) | NFTA_COMPAT_UNSPEC = 0x0 constant NFTA_COMPAT_NAME (line 2220) | NFTA_COMPAT_NAME = 0x1 constant NFTA_COMPAT_REV (line 2221) | NFTA_COMPAT_REV = 0x2 constant NFTA_COMPAT_TYPE (line 2222) | NFTA_COMPAT_TYPE = 0x3 type RTCTime (line 2225) | type RTCTime struct type RTCWkAlrm (line 2237) | type RTCWkAlrm struct type BlkpgIoctlArg (line 2243) | type BlkpgIoctlArg struct constant BLKPG_ADD_PARTITION (line 2251) | BLKPG_ADD_PARTITION = 0x1 constant BLKPG_DEL_PARTITION (line 2252) | BLKPG_DEL_PARTITION = 0x2 constant BLKPG_RESIZE_PARTITION (line 2253) | BLKPG_RESIZE_PARTITION = 0x3 constant NETNSA_NONE (line 2257) | NETNSA_NONE = 0x0 constant NETNSA_NSID (line 2258) | NETNSA_NSID = 0x1 constant NETNSA_PID (line 2259) | NETNSA_PID = 0x2 constant NETNSA_FD (line 2260) | NETNSA_FD = 0x3 constant NETNSA_TARGET_NSID (line 2261) | NETNSA_TARGET_NSID = 0x4 constant NETNSA_CURRENT_NSID (line 2262) | NETNSA_CURRENT_NSID = 0x5 type XDPRingOffset (line 2265) | type XDPRingOffset struct type XDPMmapOffsets (line 2272) | type XDPMmapOffsets struct type XDPStatistics (line 2279) | type XDPStatistics struct type XDPDesc (line 2288) | type XDPDesc struct constant NCSI_CMD_UNSPEC (line 2295) | NCSI_CMD_UNSPEC = 0x0 constant NCSI_CMD_PKG_INFO (line 2296) | NCSI_CMD_PKG_INFO = 0x1 constant NCSI_CMD_SET_INTERFACE (line 2297) | NCSI_CMD_SET_INTERFACE = 0x2 constant NCSI_CMD_CLEAR_INTERFACE (line 2298) | NCSI_CMD_CLEAR_INTERFACE = 0x3 constant NCSI_ATTR_UNSPEC (line 2299) | NCSI_ATTR_UNSPEC = 0x0 constant NCSI_ATTR_IFINDEX (line 2300) | NCSI_ATTR_IFINDEX = 0x1 constant NCSI_ATTR_PACKAGE_LIST (line 2301) | NCSI_ATTR_PACKAGE_LIST = 0x2 constant NCSI_ATTR_PACKAGE_ID (line 2302) | NCSI_ATTR_PACKAGE_ID = 0x3 constant NCSI_ATTR_CHANNEL_ID (line 2303) | NCSI_ATTR_CHANNEL_ID = 0x4 constant NCSI_PKG_ATTR_UNSPEC (line 2304) | NCSI_PKG_ATTR_UNSPEC = 0x0 constant NCSI_PKG_ATTR (line 2305) | NCSI_PKG_ATTR = 0x1 constant NCSI_PKG_ATTR_ID (line 2306) | NCSI_PKG_ATTR_ID = 0x2 constant NCSI_PKG_ATTR_FORCED (line 2307) | NCSI_PKG_ATTR_FORCED = 0x3 constant NCSI_PKG_ATTR_CHANNEL_LIST (line 2308) | NCSI_PKG_ATTR_CHANNEL_LIST = 0x4 constant NCSI_CHANNEL_ATTR_UNSPEC (line 2309) | NCSI_CHANNEL_ATTR_UNSPEC = 0x0 constant NCSI_CHANNEL_ATTR (line 2310) | NCSI_CHANNEL_ATTR = 0x1 constant NCSI_CHANNEL_ATTR_ID (line 2311) | NCSI_CHANNEL_ATTR_ID = 0x2 constant NCSI_CHANNEL_ATTR_VERSION_MAJOR (line 2312) | NCSI_CHANNEL_ATTR_VERSION_MAJOR = 0x3 constant NCSI_CHANNEL_ATTR_VERSION_MINOR (line 2313) | NCSI_CHANNEL_ATTR_VERSION_MINOR = 0x4 constant NCSI_CHANNEL_ATTR_VERSION_STR (line 2314) | NCSI_CHANNEL_ATTR_VERSION_STR = 0x5 constant NCSI_CHANNEL_ATTR_LINK_STATE (line 2315) | NCSI_CHANNEL_ATTR_LINK_STATE = 0x6 constant NCSI_CHANNEL_ATTR_ACTIVE (line 2316) | NCSI_CHANNEL_ATTR_ACTIVE = 0x7 constant NCSI_CHANNEL_ATTR_FORCED (line 2317) | NCSI_CHANNEL_ATTR_FORCED = 0x8 constant NCSI_CHANNEL_ATTR_VLAN_LIST (line 2318) | NCSI_CHANNEL_ATTR_VLAN_LIST = 0x9 constant NCSI_CHANNEL_ATTR_VLAN_ID (line 2319) | NCSI_CHANNEL_ATTR_VLAN_ID = 0xa type ScmTimestamping (line 2322) | type ScmTimestamping struct constant SOF_TIMESTAMPING_TX_HARDWARE (line 2327) | SOF_TIMESTAMPING_TX_HARDWARE = 0x1 constant SOF_TIMESTAMPING_TX_SOFTWARE (line 2328) | SOF_TIMESTAMPING_TX_SOFTWARE = 0x2 constant SOF_TIMESTAMPING_RX_HARDWARE (line 2329) | SOF_TIMESTAMPING_RX_HARDWARE = 0x4 constant SOF_TIMESTAMPING_RX_SOFTWARE (line 2330) | SOF_TIMESTAMPING_RX_SOFTWARE = 0x8 constant SOF_TIMESTAMPING_SOFTWARE (line 2331) | SOF_TIMESTAMPING_SOFTWARE = 0x10 constant SOF_TIMESTAMPING_SYS_HARDWARE (line 2332) | SOF_TIMESTAMPING_SYS_HARDWARE = 0x20 constant SOF_TIMESTAMPING_RAW_HARDWARE (line 2333) | SOF_TIMESTAMPING_RAW_HARDWARE = 0x40 constant SOF_TIMESTAMPING_OPT_ID (line 2334) | SOF_TIMESTAMPING_OPT_ID = 0x80 constant SOF_TIMESTAMPING_TX_SCHED (line 2335) | SOF_TIMESTAMPING_TX_SCHED = 0x100 constant SOF_TIMESTAMPING_TX_ACK (line 2336) | SOF_TIMESTAMPING_TX_ACK = 0x200 constant SOF_TIMESTAMPING_OPT_CMSG (line 2337) | SOF_TIMESTAMPING_OPT_CMSG = 0x400 constant SOF_TIMESTAMPING_OPT_TSONLY (line 2338) | SOF_TIMESTAMPING_OPT_TSONLY = 0x800 constant SOF_TIMESTAMPING_OPT_STATS (line 2339) | SOF_TIMESTAMPING_OPT_STATS = 0x1000 constant SOF_TIMESTAMPING_OPT_PKTINFO (line 2340) | SOF_TIMESTAMPING_OPT_PKTINFO = 0x2000 constant SOF_TIMESTAMPING_OPT_TX_SWHW (line 2341) | SOF_TIMESTAMPING_OPT_TX_SWHW = 0x4000 constant SOF_TIMESTAMPING_LAST (line 2343) | SOF_TIMESTAMPING_LAST = 0x4000 constant SOF_TIMESTAMPING_MASK (line 2344) | SOF_TIMESTAMPING_MASK = 0x7fff constant SCM_TSTAMP_SND (line 2346) | SCM_TSTAMP_SND = 0x0 constant SCM_TSTAMP_SCHED (line 2347) | SCM_TSTAMP_SCHED = 0x1 constant SCM_TSTAMP_ACK (line 2348) | SCM_TSTAMP_ACK = 0x2 type SockExtendedErr (line 2351) | type SockExtendedErr struct type FanotifyEventMetadata (line 2361) | type FanotifyEventMetadata struct type FanotifyResponse (line 2371) | type FanotifyResponse struct constant CRYPTO_MSG_BASE (line 2377) | CRYPTO_MSG_BASE = 0x10 constant CRYPTO_MSG_NEWALG (line 2378) | CRYPTO_MSG_NEWALG = 0x10 constant CRYPTO_MSG_DELALG (line 2379) | CRYPTO_MSG_DELALG = 0x11 constant CRYPTO_MSG_UPDATEALG (line 2380) | CRYPTO_MSG_UPDATEALG = 0x12 constant CRYPTO_MSG_GETALG (line 2381) | CRYPTO_MSG_GETALG = 0x13 constant CRYPTO_MSG_DELRNG (line 2382) | CRYPTO_MSG_DELRNG = 0x14 constant CRYPTO_MSG_GETSTAT (line 2383) | CRYPTO_MSG_GETSTAT = 0x15 constant CRYPTOCFGA_UNSPEC (line 2387) | CRYPTOCFGA_UNSPEC = 0x0 constant CRYPTOCFGA_PRIORITY_VAL (line 2388) | CRYPTOCFGA_PRIORITY_VAL = 0x1 constant CRYPTOCFGA_REPORT_LARVAL (line 2389) | CRYPTOCFGA_REPORT_LARVAL = 0x2 constant CRYPTOCFGA_REPORT_HASH (line 2390) | CRYPTOCFGA_REPORT_HASH = 0x3 constant CRYPTOCFGA_REPORT_BLKCIPHER (line 2391) | CRYPTOCFGA_REPORT_BLKCIPHER = 0x4 constant CRYPTOCFGA_REPORT_AEAD (line 2392) | CRYPTOCFGA_REPORT_AEAD = 0x5 constant CRYPTOCFGA_REPORT_COMPRESS (line 2393) | CRYPTOCFGA_REPORT_COMPRESS = 0x6 constant CRYPTOCFGA_REPORT_RNG (line 2394) | CRYPTOCFGA_REPORT_RNG = 0x7 constant CRYPTOCFGA_REPORT_CIPHER (line 2395) | CRYPTOCFGA_REPORT_CIPHER = 0x8 constant CRYPTOCFGA_REPORT_AKCIPHER (line 2396) | CRYPTOCFGA_REPORT_AKCIPHER = 0x9 constant CRYPTOCFGA_REPORT_KPP (line 2397) | CRYPTOCFGA_REPORT_KPP = 0xa constant CRYPTOCFGA_REPORT_ACOMP (line 2398) | CRYPTOCFGA_REPORT_ACOMP = 0xb constant CRYPTOCFGA_STAT_LARVAL (line 2399) | CRYPTOCFGA_STAT_LARVAL = 0xc constant CRYPTOCFGA_STAT_HASH (line 2400) | CRYPTOCFGA_STAT_HASH = 0xd constant CRYPTOCFGA_STAT_BLKCIPHER (line 2401) | CRYPTOCFGA_STAT_BLKCIPHER = 0xe constant CRYPTOCFGA_STAT_AEAD (line 2402) | CRYPTOCFGA_STAT_AEAD = 0xf constant CRYPTOCFGA_STAT_COMPRESS (line 2403) | CRYPTOCFGA_STAT_COMPRESS = 0x10 constant CRYPTOCFGA_STAT_RNG (line 2404) | CRYPTOCFGA_STAT_RNG = 0x11 constant CRYPTOCFGA_STAT_CIPHER (line 2405) | CRYPTOCFGA_STAT_CIPHER = 0x12 constant CRYPTOCFGA_STAT_AKCIPHER (line 2406) | CRYPTOCFGA_STAT_AKCIPHER = 0x13 constant CRYPTOCFGA_STAT_KPP (line 2407) | CRYPTOCFGA_STAT_KPP = 0x14 constant CRYPTOCFGA_STAT_ACOMP (line 2408) | CRYPTOCFGA_STAT_ACOMP = 0x15 constant BPF_REG_0 (line 2412) | BPF_REG_0 = 0x0 constant BPF_REG_1 (line 2413) | BPF_REG_1 = 0x1 constant BPF_REG_2 (line 2414) | BPF_REG_2 = 0x2 constant BPF_REG_3 (line 2415) | BPF_REG_3 = 0x3 constant BPF_REG_4 (line 2416) | BPF_REG_4 = 0x4 constant BPF_REG_5 (line 2417) | BPF_REG_5 = 0x5 constant BPF_REG_6 (line 2418) | BPF_REG_6 = 0x6 constant BPF_REG_7 (line 2419) | BPF_REG_7 = 0x7 constant BPF_REG_8 (line 2420) | BPF_REG_8 = 0x8 constant BPF_REG_9 (line 2421) | BPF_REG_9 = 0x9 constant BPF_REG_10 (line 2422) | BPF_REG_10 = 0xa constant BPF_MAP_CREATE (line 2423) | BPF_MAP_CREATE = 0x0 constant BPF_MAP_LOOKUP_ELEM (line 2424) | BPF_MAP_LOOKUP_ELEM = 0x1 constant BPF_MAP_UPDATE_ELEM (line 2425) | BPF_MAP_UPDATE_ELEM = 0x2 constant BPF_MAP_DELETE_ELEM (line 2426) | BPF_MAP_DELETE_ELEM = 0x3 constant BPF_MAP_GET_NEXT_KEY (line 2427) | BPF_MAP_GET_NEXT_KEY = 0x4 constant BPF_PROG_LOAD (line 2428) | BPF_PROG_LOAD = 0x5 constant BPF_OBJ_PIN (line 2429) | BPF_OBJ_PIN = 0x6 constant BPF_OBJ_GET (line 2430) | BPF_OBJ_GET = 0x7 constant BPF_PROG_ATTACH (line 2431) | BPF_PROG_ATTACH = 0x8 constant BPF_PROG_DETACH (line 2432) | BPF_PROG_DETACH = 0x9 constant BPF_PROG_TEST_RUN (line 2433) | BPF_PROG_TEST_RUN = 0xa constant BPF_PROG_GET_NEXT_ID (line 2434) | BPF_PROG_GET_NEXT_ID = 0xb constant BPF_MAP_GET_NEXT_ID (line 2435) | BPF_MAP_GET_NEXT_ID = 0xc constant BPF_PROG_GET_FD_BY_ID (line 2436) | BPF_PROG_GET_FD_BY_ID = 0xd constant BPF_MAP_GET_FD_BY_ID (line 2437) | BPF_MAP_GET_FD_BY_ID = 0xe constant BPF_OBJ_GET_INFO_BY_FD (line 2438) | BPF_OBJ_GET_INFO_BY_FD = 0xf constant BPF_PROG_QUERY (line 2439) | BPF_PROG_QUERY = 0x10 constant BPF_RAW_TRACEPOINT_OPEN (line 2440) | BPF_RAW_TRACEPOINT_OPEN = 0x11 constant BPF_BTF_LOAD (line 2441) | BPF_BTF_LOAD = 0x12 constant BPF_BTF_GET_FD_BY_ID (line 2442) | BPF_BTF_GET_FD_BY_ID = 0x13 constant BPF_TASK_FD_QUERY (line 2443) | BPF_TASK_FD_QUERY = 0x14 constant BPF_MAP_LOOKUP_AND_DELETE_ELEM (line 2444) | BPF_MAP_LOOKUP_AND_DELETE_ELEM = 0x15 constant BPF_MAP_FREEZE (line 2445) | BPF_MAP_FREEZE = 0x16 constant BPF_BTF_GET_NEXT_ID (line 2446) | BPF_BTF_GET_NEXT_ID = 0x17 constant BPF_MAP_LOOKUP_BATCH (line 2447) | BPF_MAP_LOOKUP_BATCH = 0x18 constant BPF_MAP_LOOKUP_AND_DELETE_BATCH (line 2448) | BPF_MAP_LOOKUP_AND_DELETE_BATCH = 0x19 constant BPF_MAP_UPDATE_BATCH (line 2449) | BPF_MAP_UPDATE_BATCH = 0x1a constant BPF_MAP_DELETE_BATCH (line 2450) | BPF_MAP_DELETE_BATCH = 0x1b constant BPF_LINK_CREATE (line 2451) | BPF_LINK_CREATE = 0x1c constant BPF_LINK_UPDATE (line 2452) | BPF_LINK_UPDATE = 0x1d constant BPF_LINK_GET_FD_BY_ID (line 2453) | BPF_LINK_GET_FD_BY_ID = 0x1e constant BPF_LINK_GET_NEXT_ID (line 2454) | BPF_LINK_GET_NEXT_ID = 0x1f constant BPF_ENABLE_STATS (line 2455) | BPF_ENABLE_STATS = 0x20 constant BPF_ITER_CREATE (line 2456) | BPF_ITER_CREATE = 0x21 constant BPF_LINK_DETACH (line 2457) | BPF_LINK_DETACH = 0x22 constant BPF_PROG_BIND_MAP (line 2458) | BPF_PROG_BIND_MAP = 0x23 constant BPF_MAP_TYPE_UNSPEC (line 2459) | BPF_MAP_TYPE_UNSPEC = 0x0 constant BPF_MAP_TYPE_HASH (line 2460) | BPF_MAP_TYPE_HASH = 0x1 constant BPF_MAP_TYPE_ARRAY (line 2461) | BPF_MAP_TYPE_ARRAY = 0x2 constant BPF_MAP_TYPE_PROG_ARRAY (line 2462) | BPF_MAP_TYPE_PROG_ARRAY = 0x3 constant BPF_MAP_TYPE_PERF_EVENT_ARRAY (line 2463) | BPF_MAP_TYPE_PERF_EVENT_ARRAY = 0x4 constant BPF_MAP_TYPE_PERCPU_HASH (line 2464) | BPF_MAP_TYPE_PERCPU_HASH = 0x5 constant BPF_MAP_TYPE_PERCPU_ARRAY (line 2465) | BPF_MAP_TYPE_PERCPU_ARRAY = 0x6 constant BPF_MAP_TYPE_STACK_TRACE (line 2466) | BPF_MAP_TYPE_STACK_TRACE = 0x7 constant BPF_MAP_TYPE_CGROUP_ARRAY (line 2467) | BPF_MAP_TYPE_CGROUP_ARRAY = 0x8 constant BPF_MAP_TYPE_LRU_HASH (line 2468) | BPF_MAP_TYPE_LRU_HASH = 0x9 constant BPF_MAP_TYPE_LRU_PERCPU_HASH (line 2469) | BPF_MAP_TYPE_LRU_PERCPU_HASH = 0xa constant BPF_MAP_TYPE_LPM_TRIE (line 2470) | BPF_MAP_TYPE_LPM_TRIE = 0xb constant BPF_MAP_TYPE_ARRAY_OF_MAPS (line 2471) | BPF_MAP_TYPE_ARRAY_OF_MAPS = 0xc constant BPF_MAP_TYPE_HASH_OF_MAPS (line 2472) | BPF_MAP_TYPE_HASH_OF_MAPS = 0xd constant BPF_MAP_TYPE_DEVMAP (line 2473) | BPF_MAP_TYPE_DEVMAP = 0xe constant BPF_MAP_TYPE_SOCKMAP (line 2474) | BPF_MAP_TYPE_SOCKMAP = 0xf constant BPF_MAP_TYPE_CPUMAP (line 2475) | BPF_MAP_TYPE_CPUMAP = 0x10 constant BPF_MAP_TYPE_XSKMAP (line 2476) | BPF_MAP_TYPE_XSKMAP = 0x11 constant BPF_MAP_TYPE_SOCKHASH (line 2477) | BPF_MAP_TYPE_SOCKHASH = 0x12 constant BPF_MAP_TYPE_CGROUP_STORAGE (line 2478) | BPF_MAP_TYPE_CGROUP_STORAGE = 0x13 constant BPF_MAP_TYPE_REUSEPORT_SOCKARRAY (line 2479) | BPF_MAP_TYPE_REUSEPORT_SOCKARRAY = 0x14 constant BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE (line 2480) | BPF_MAP_TYPE_PERCPU_CGROUP_STORAGE = 0x15 constant BPF_MAP_TYPE_QUEUE (line 2481) | BPF_MAP_TYPE_QUEUE = 0x16 constant BPF_MAP_TYPE_STACK (line 2482) | BPF_MAP_TYPE_STACK = 0x17 constant BPF_MAP_TYPE_SK_STORAGE (line 2483) | BPF_MAP_TYPE_SK_STORAGE = 0x18 constant BPF_MAP_TYPE_DEVMAP_HASH (line 2484) | BPF_MAP_TYPE_DEVMAP_HASH = 0x19 constant BPF_MAP_TYPE_STRUCT_OPS (line 2485) | BPF_MAP_TYPE_STRUCT_OPS = 0x1a constant BPF_MAP_TYPE_RINGBUF (line 2486) | BPF_MAP_TYPE_RINGBUF = 0x1b constant BPF_MAP_TYPE_INODE_STORAGE (line 2487) | BPF_MAP_TYPE_INODE_STORAGE = 0x1c constant BPF_PROG_TYPE_UNSPEC (line 2488) | BPF_PROG_TYPE_UNSPEC = 0x0 constant BPF_PROG_TYPE_SOCKET_FILTER (line 2489) | BPF_PROG_TYPE_SOCKET_FILTER = 0x1 constant BPF_PROG_TYPE_KPROBE (line 2490) | BPF_PROG_TYPE_KPROBE = 0x2 constant BPF_PROG_TYPE_SCHED_CLS (line 2491) | BPF_PROG_TYPE_SCHED_CLS = 0x3 constant BPF_PROG_TYPE_SCHED_ACT (line 2492) | BPF_PROG_TYPE_SCHED_ACT = 0x4 constant BPF_PROG_TYPE_TRACEPOINT (line 2493) | BPF_PROG_TYPE_TRACEPOINT = 0x5 constant BPF_PROG_TYPE_XDP (line 2494) | BPF_PROG_TYPE_XDP = 0x6 constant BPF_PROG_TYPE_PERF_EVENT (line 2495) | BPF_PROG_TYPE_PERF_EVENT = 0x7 constant BPF_PROG_TYPE_CGROUP_SKB (line 2496) | BPF_PROG_TYPE_CGROUP_SKB = 0x8 constant BPF_PROG_TYPE_CGROUP_SOCK (line 2497) | BPF_PROG_TYPE_CGROUP_SOCK = 0x9 constant BPF_PROG_TYPE_LWT_IN (line 2498) | BPF_PROG_TYPE_LWT_IN = 0xa constant BPF_PROG_TYPE_LWT_OUT (line 2499) | BPF_PROG_TYPE_LWT_OUT = 0xb constant BPF_PROG_TYPE_LWT_XMIT (line 2500) | BPF_PROG_TYPE_LWT_XMIT = 0xc constant BPF_PROG_TYPE_SOCK_OPS (line 2501) | BPF_PROG_TYPE_SOCK_OPS = 0xd constant BPF_PROG_TYPE_SK_SKB (line 2502) | BPF_PROG_TYPE_SK_SKB = 0xe constant BPF_PROG_TYPE_CGROUP_DEVICE (line 2503) | BPF_PROG_TYPE_CGROUP_DEVICE = 0xf constant BPF_PROG_TYPE_SK_MSG (line 2504) | BPF_PROG_TYPE_SK_MSG = 0x10 constant BPF_PROG_TYPE_RAW_TRACEPOINT (line 2505) | BPF_PROG_TYPE_RAW_TRACEPOINT = 0x11 constant BPF_PROG_TYPE_CGROUP_SOCK_ADDR (line 2506) | BPF_PROG_TYPE_CGROUP_SOCK_ADDR = 0x12 constant BPF_PROG_TYPE_LWT_SEG6LOCAL (line 2507) | BPF_PROG_TYPE_LWT_SEG6LOCAL = 0x13 constant BPF_PROG_TYPE_LIRC_MODE2 (line 2508) | BPF_PROG_TYPE_LIRC_MODE2 = 0x14 constant BPF_PROG_TYPE_SK_REUSEPORT (line 2509) | BPF_PROG_TYPE_SK_REUSEPORT = 0x15 constant BPF_PROG_TYPE_FLOW_DISSECTOR (line 2510) | BPF_PROG_TYPE_FLOW_DISSECTOR = 0x16 constant BPF_PROG_TYPE_CGROUP_SYSCTL (line 2511) | BPF_PROG_TYPE_CGROUP_SYSCTL = 0x17 constant BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE (line 2512) | BPF_PROG_TYPE_RAW_TRACEPOINT_WRITABLE = 0x18 constant BPF_PROG_TYPE_CGROUP_SOCKOPT (line 2513) | BPF_PROG_TYPE_CGROUP_SOCKOPT = 0x19 constant BPF_PROG_TYPE_TRACING (line 2514) | BPF_PROG_TYPE_TRACING = 0x1a constant BPF_PROG_TYPE_STRUCT_OPS (line 2515) | BPF_PROG_TYPE_STRUCT_OPS = 0x1b constant BPF_PROG_TYPE_EXT (line 2516) | BPF_PROG_TYPE_EXT = 0x1c constant BPF_PROG_TYPE_LSM (line 2517) | BPF_PROG_TYPE_LSM = 0x1d constant BPF_PROG_TYPE_SK_LOOKUP (line 2518) | BPF_PROG_TYPE_SK_LOOKUP = 0x1e constant BPF_CGROUP_INET_INGRESS (line 2519) | BPF_CGROUP_INET_INGRESS = 0x0 constant BPF_CGROUP_INET_EGRESS (line 2520) | BPF_CGROUP_INET_EGRESS = 0x1 constant BPF_CGROUP_INET_SOCK_CREATE (line 2521) | BPF_CGROUP_INET_SOCK_CREATE = 0x2 constant BPF_CGROUP_SOCK_OPS (line 2522) | BPF_CGROUP_SOCK_OPS = 0x3 constant BPF_SK_SKB_STREAM_PARSER (line 2523) | BPF_SK_SKB_STREAM_PARSER = 0x4 constant BPF_SK_SKB_STREAM_VERDICT (line 2524) | BPF_SK_SKB_STREAM_VERDICT = 0x5 constant BPF_CGROUP_DEVICE (line 2525) | BPF_CGROUP_DEVICE = 0x6 constant BPF_SK_MSG_VERDICT (line 2526) | BPF_SK_MSG_VERDICT = 0x7 constant BPF_CGROUP_INET4_BIND (line 2527) | BPF_CGROUP_INET4_BIND = 0x8 constant BPF_CGROUP_INET6_BIND (line 2528) | BPF_CGROUP_INET6_BIND = 0x9 constant BPF_CGROUP_INET4_CONNECT (line 2529) | BPF_CGROUP_INET4_CONNECT = 0xa constant BPF_CGROUP_INET6_CONNECT (line 2530) | BPF_CGROUP_INET6_CONNECT = 0xb constant BPF_CGROUP_INET4_POST_BIND (line 2531) | BPF_CGROUP_INET4_POST_BIND = 0xc constant BPF_CGROUP_INET6_POST_BIND (line 2532) | BPF_CGROUP_INET6_POST_BIND = 0xd constant BPF_CGROUP_UDP4_SENDMSG (line 2533) | BPF_CGROUP_UDP4_SENDMSG = 0xe constant BPF_CGROUP_UDP6_SENDMSG (line 2534) | BPF_CGROUP_UDP6_SENDMSG = 0xf constant BPF_LIRC_MODE2 (line 2535) | BPF_LIRC_MODE2 = 0x10 constant BPF_FLOW_DISSECTOR (line 2536) | BPF_FLOW_DISSECTOR = 0x11 constant BPF_CGROUP_SYSCTL (line 2537) | BPF_CGROUP_SYSCTL = 0x12 constant BPF_CGROUP_UDP4_RECVMSG (line 2538) | BPF_CGROUP_UDP4_RECVMSG = 0x13 constant BPF_CGROUP_UDP6_RECVMSG (line 2539) | BPF_CGROUP_UDP6_RECVMSG = 0x14 constant BPF_CGROUP_GETSOCKOPT (line 2540) | BPF_CGROUP_GETSOCKOPT = 0x15 constant BPF_CGROUP_SETSOCKOPT (line 2541) | BPF_CGROUP_SETSOCKOPT = 0x16 constant BPF_TRACE_RAW_TP (line 2542) | BPF_TRACE_RAW_TP = 0x17 constant BPF_TRACE_FENTRY (line 2543) | BPF_TRACE_FENTRY = 0x18 constant BPF_TRACE_FEXIT (line 2544) | BPF_TRACE_FEXIT = 0x19 constant BPF_MODIFY_RETURN (line 2545) | BPF_MODIFY_RETURN = 0x1a constant BPF_LSM_MAC (line 2546) | BPF_LSM_MAC = 0x1b constant BPF_TRACE_ITER (line 2547) | BPF_TRACE_ITER = 0x1c constant BPF_CGROUP_INET4_GETPEERNAME (line 2548) | BPF_CGROUP_INET4_GETPEERNAME = 0x1d constant BPF_CGROUP_INET6_GETPEERNAME (line 2549) | BPF_CGROUP_INET6_GETPEERNAME = 0x1e constant BPF_CGROUP_INET4_GETSOCKNAME (line 2550) | BPF_CGROUP_INET4_GETSOCKNAME = 0x1f constant BPF_CGROUP_INET6_GETSOCKNAME (line 2551) | BPF_CGROUP_INET6_GETSOCKNAME = 0x20 constant BPF_XDP_DEVMAP (line 2552) | BPF_XDP_DEVMAP = 0x21 constant BPF_CGROUP_INET_SOCK_RELEASE (line 2553) | BPF_CGROUP_INET_SOCK_RELEASE = 0x22 constant BPF_XDP_CPUMAP (line 2554) | BPF_XDP_CPUMAP = 0x23 constant BPF_SK_LOOKUP (line 2555) | BPF_SK_LOOKUP = 0x24 constant BPF_XDP (line 2556) | BPF_XDP = 0x25 constant BPF_LINK_TYPE_UNSPEC (line 2557) | BPF_LINK_TYPE_UNSPEC = 0x0 constant BPF_LINK_TYPE_RAW_TRACEPOINT (line 2558) | BPF_LINK_TYPE_RAW_TRACEPOINT = 0x1 constant BPF_LINK_TYPE_TRACING (line 2559) | BPF_LINK_TYPE_TRACING = 0x2 constant BPF_LINK_TYPE_CGROUP (line 2560) | BPF_LINK_TYPE_CGROUP = 0x3 constant BPF_LINK_TYPE_ITER (line 2561) | BPF_LINK_TYPE_ITER = 0x4 constant BPF_LINK_TYPE_NETNS (line 2562) | BPF_LINK_TYPE_NETNS = 0x5 constant BPF_LINK_TYPE_XDP (line 2563) | BPF_LINK_TYPE_XDP = 0x6 constant BPF_ANY (line 2564) | BPF_ANY = 0x0 constant BPF_NOEXIST (line 2565) | BPF_NOEXIST = 0x1 constant BPF_EXIST (line 2566) | BPF_EXIST = 0x2 constant BPF_F_LOCK (line 2567) | BPF_F_LOCK = 0x4 constant BPF_F_NO_PREALLOC (line 2568) | BPF_F_NO_PREALLOC = 0x1 constant BPF_F_NO_COMMON_LRU (line 2569) | BPF_F_NO_COMMON_LRU = 0x2 constant BPF_F_NUMA_NODE (line 2570) | BPF_F_NUMA_NODE = 0x4 constant BPF_F_RDONLY (line 2571) | BPF_F_RDONLY = 0x8 constant BPF_F_WRONLY (line 2572) | BPF_F_WRONLY = 0x10 constant BPF_F_STACK_BUILD_ID (line 2573) | BPF_F_STACK_BUILD_ID = 0x20 constant BPF_F_ZERO_SEED (line 2574) | BPF_F_ZERO_SEED = 0x40 constant BPF_F_RDONLY_PROG (line 2575) | BPF_F_RDONLY_PROG = 0x80 constant BPF_F_WRONLY_PROG (line 2576) | BPF_F_WRONLY_PROG = 0x100 constant BPF_F_CLONE (line 2577) | BPF_F_CLONE = 0x200 constant BPF_F_MMAPABLE (line 2578) | BPF_F_MMAPABLE = 0x400 constant BPF_F_PRESERVE_ELEMS (line 2579) | BPF_F_PRESERVE_ELEMS = 0x800 constant BPF_F_INNER_MAP (line 2580) | BPF_F_INNER_MAP = 0x1000 constant BPF_STATS_RUN_TIME (line 2581) | BPF_STATS_RUN_TIME = 0x0 constant BPF_STACK_BUILD_ID_EMPTY (line 2582) | BPF_STACK_BUILD_ID_EMPTY = 0x0 constant BPF_STACK_BUILD_ID_VALID (line 2583) | BPF_STACK_BUILD_ID_VALID = 0x1 constant BPF_STACK_BUILD_ID_IP (line 2584) | BPF_STACK_BUILD_ID_IP = 0x2 constant BPF_F_RECOMPUTE_CSUM (line 2585) | BPF_F_RECOMPUTE_CSUM = 0x1 constant BPF_F_INVALIDATE_HASH (line 2586) | BPF_F_INVALIDATE_HASH = 0x2 constant BPF_F_HDR_FIELD_MASK (line 2587) | BPF_F_HDR_FIELD_MASK = 0xf constant BPF_F_PSEUDO_HDR (line 2588) | BPF_F_PSEUDO_HDR = 0x10 constant BPF_F_MARK_MANGLED_0 (line 2589) | BPF_F_MARK_MANGLED_0 = 0x20 constant BPF_F_MARK_ENFORCE (line 2590) | BPF_F_MARK_ENFORCE = 0x40 constant BPF_F_INGRESS (line 2591) | BPF_F_INGRESS = 0x1 constant BPF_F_TUNINFO_IPV6 (line 2592) | BPF_F_TUNINFO_IPV6 = 0x1 constant BPF_F_SKIP_FIELD_MASK (line 2593) | BPF_F_SKIP_FIELD_MASK = 0xff constant BPF_F_USER_STACK (line 2594) | BPF_F_USER_STACK = 0x100 constant BPF_F_FAST_STACK_CMP (line 2595) | BPF_F_FAST_STACK_CMP = 0x200 constant BPF_F_REUSE_STACKID (line 2596) | BPF_F_REUSE_STACKID = 0x400 constant BPF_F_USER_BUILD_ID (line 2597) | BPF_F_USER_BUILD_ID = 0x800 constant BPF_F_ZERO_CSUM_TX (line 2598) | BPF_F_ZERO_CSUM_TX = 0x2 constant BPF_F_DONT_FRAGMENT (line 2599) | BPF_F_DONT_FRAGMENT = 0x4 constant BPF_F_SEQ_NUMBER (line 2600) | BPF_F_SEQ_NUMBER = 0x8 constant BPF_F_INDEX_MASK (line 2601) | BPF_F_INDEX_MASK = 0xffffffff constant BPF_F_CURRENT_CPU (line 2602) | BPF_F_CURRENT_CPU = 0xffffffff constant BPF_F_CTXLEN_MASK (line 2603) | BPF_F_CTXLEN_MASK = 0xfffff00000000 constant BPF_F_CURRENT_NETNS (line 2604) | BPF_F_CURRENT_NETNS = -0x1 constant BPF_CSUM_LEVEL_QUERY (line 2605) | BPF_CSUM_LEVEL_QUERY = 0x0 constant BPF_CSUM_LEVEL_INC (line 2606) | BPF_CSUM_LEVEL_INC = 0x1 constant BPF_CSUM_LEVEL_DEC (line 2607) | BPF_CSUM_LEVEL_DEC = 0x2 constant BPF_CSUM_LEVEL_RESET (line 2608) | BPF_CSUM_LEVEL_RESET = 0x3 constant BPF_F_ADJ_ROOM_FIXED_GSO (line 2609) | BPF_F_ADJ_ROOM_FIXED_GSO = 0x1 constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 (line 2610) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV4 = 0x2 constant BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 (line 2611) | BPF_F_ADJ_ROOM_ENCAP_L3_IPV6 = 0x4 constant BPF_F_ADJ_ROOM_ENCAP_L4_GRE (line 2612) | BPF_F_ADJ_ROOM_ENCAP_L4_GRE = 0x8 constant BPF_F_ADJ_ROOM_ENCAP_L4_UDP (line 2613) | BPF_F_ADJ_ROOM_ENCAP_L4_UDP = 0x10 constant BPF_F_ADJ_ROOM_NO_CSUM_RESET (line 2614) | BPF_F_ADJ_ROOM_NO_CSUM_RESET = 0x20 constant BPF_ADJ_ROOM_ENCAP_L2_MASK (line 2615) | BPF_ADJ_ROOM_ENCAP_L2_MASK = 0xff constant BPF_ADJ_ROOM_ENCAP_L2_SHIFT (line 2616) | BPF_ADJ_ROOM_ENCAP_L2_SHIFT = 0x38 constant BPF_F_SYSCTL_BASE_NAME (line 2617) | BPF_F_SYSCTL_BASE_NAME = 0x1 constant BPF_LOCAL_STORAGE_GET_F_CREATE (line 2618) | BPF_LOCAL_STORAGE_GET_F_CREATE = 0x1 constant BPF_SK_STORAGE_GET_F_CREATE (line 2619) | BPF_SK_STORAGE_GET_F_CREATE = 0x1 constant BPF_F_GET_BRANCH_RECORDS_SIZE (line 2620) | BPF_F_GET_BRANCH_RECORDS_SIZE = 0x1 constant BPF_RB_NO_WAKEUP (line 2621) | BPF_RB_NO_WAKEUP = 0x1 constant BPF_RB_FORCE_WAKEUP (line 2622) | BPF_RB_FORCE_WAKEUP = 0x2 constant BPF_RB_AVAIL_DATA (line 2623) | BPF_RB_AVAIL_DATA = 0x0 constant BPF_RB_RING_SIZE (line 2624) | BPF_RB_RING_SIZE = 0x1 constant BPF_RB_CONS_POS (line 2625) | BPF_RB_CONS_POS = 0x2 constant BPF_RB_PROD_POS (line 2626) | BPF_RB_PROD_POS = 0x3 constant BPF_RINGBUF_BUSY_BIT (line 2627) | BPF_RINGBUF_BUSY_BIT = 0x80000000 constant BPF_RINGBUF_DISCARD_BIT (line 2628) | BPF_RINGBUF_DISCARD_BIT = 0x40000000 constant BPF_RINGBUF_HDR_SZ (line 2629) | BPF_RINGBUF_HDR_SZ = 0x8 constant BPF_SK_LOOKUP_F_REPLACE (line 2630) | BPF_SK_LOOKUP_F_REPLACE = 0x1 constant BPF_SK_LOOKUP_F_NO_REUSEPORT (line 2631) | BPF_SK_LOOKUP_F_NO_REUSEPORT = 0x2 constant BPF_ADJ_ROOM_NET (line 2632) | BPF_ADJ_ROOM_NET = 0x0 constant BPF_ADJ_ROOM_MAC (line 2633) | BPF_ADJ_ROOM_MAC = 0x1 constant BPF_HDR_START_MAC (line 2634) | BPF_HDR_START_MAC = 0x0 constant BPF_HDR_START_NET (line 2635) | BPF_HDR_START_NET = 0x1 constant BPF_LWT_ENCAP_SEG6 (line 2636) | BPF_LWT_ENCAP_SEG6 = 0x0 constant BPF_LWT_ENCAP_SEG6_INLINE (line 2637) | BPF_LWT_ENCAP_SEG6_INLINE = 0x1 constant BPF_LWT_ENCAP_IP (line 2638) | BPF_LWT_ENCAP_IP = 0x2 constant BPF_OK (line 2639) | BPF_OK = 0x0 constant BPF_DROP (line 2640) | BPF_DROP = 0x2 constant BPF_REDIRECT (line 2641) | BPF_REDIRECT = 0x7 constant BPF_LWT_REROUTE (line 2642) | BPF_LWT_REROUTE = 0x80 constant BPF_SOCK_OPS_RTO_CB_FLAG (line 2643) | BPF_SOCK_OPS_RTO_CB_FLAG = 0x1 constant BPF_SOCK_OPS_RETRANS_CB_FLAG (line 2644) | BPF_SOCK_OPS_RETRANS_CB_FLAG = 0x2 constant BPF_SOCK_OPS_STATE_CB_FLAG (line 2645) | BPF_SOCK_OPS_STATE_CB_FLAG = 0x4 constant BPF_SOCK_OPS_RTT_CB_FLAG (line 2646) | BPF_SOCK_OPS_RTT_CB_FLAG = 0x8 constant BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG (line 2647) | BPF_SOCK_OPS_PARSE_ALL_HDR_OPT_CB_FLAG = 0x10 constant BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG (line 2648) | BPF_SOCK_OPS_PARSE_UNKNOWN_HDR_OPT_CB_FLAG = 0x20 constant BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG (line 2649) | BPF_SOCK_OPS_WRITE_HDR_OPT_CB_FLAG = 0x40 constant BPF_SOCK_OPS_ALL_CB_FLAGS (line 2650) | BPF_SOCK_OPS_ALL_CB_FLAGS = 0x7f constant BPF_SOCK_OPS_VOID (line 2651) | BPF_SOCK_OPS_VOID = 0x0 constant BPF_SOCK_OPS_TIMEOUT_INIT (line 2652) | BPF_SOCK_OPS_TIMEOUT_INIT = 0x1 constant BPF_SOCK_OPS_RWND_INIT (line 2653) | BPF_SOCK_OPS_RWND_INIT = 0x2 constant BPF_SOCK_OPS_TCP_CONNECT_CB (line 2654) | BPF_SOCK_OPS_TCP_CONNECT_CB = 0x3 constant BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB (line 2655) | BPF_SOCK_OPS_ACTIVE_ESTABLISHED_CB = 0x4 constant BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB (line 2656) | BPF_SOCK_OPS_PASSIVE_ESTABLISHED_CB = 0x5 constant BPF_SOCK_OPS_NEEDS_ECN (line 2657) | BPF_SOCK_OPS_NEEDS_ECN = 0x6 constant BPF_SOCK_OPS_BASE_RTT (line 2658) | BPF_SOCK_OPS_BASE_RTT = 0x7 constant BPF_SOCK_OPS_RTO_CB (line 2659) | BPF_SOCK_OPS_RTO_CB = 0x8 constant BPF_SOCK_OPS_RETRANS_CB (line 2660) | BPF_SOCK_OPS_RETRANS_CB = 0x9 constant BPF_SOCK_OPS_STATE_CB (line 2661) | BPF_SOCK_OPS_STATE_CB = 0xa constant BPF_SOCK_OPS_TCP_LISTEN_CB (line 2662) | BPF_SOCK_OPS_TCP_LISTEN_CB = 0xb constant BPF_SOCK_OPS_RTT_CB (line 2663) | BPF_SOCK_OPS_RTT_CB = 0xc constant BPF_SOCK_OPS_PARSE_HDR_OPT_CB (line 2664) | BPF_SOCK_OPS_PARSE_HDR_OPT_CB = 0xd constant BPF_SOCK_OPS_HDR_OPT_LEN_CB (line 2665) | BPF_SOCK_OPS_HDR_OPT_LEN_CB = 0xe constant BPF_SOCK_OPS_WRITE_HDR_OPT_CB (line 2666) | BPF_SOCK_OPS_WRITE_HDR_OPT_CB = 0xf constant BPF_TCP_ESTABLISHED (line 2667) | BPF_TCP_ESTABLISHED = 0x1 constant BPF_TCP_SYN_SENT (line 2668) | BPF_TCP_SYN_SENT = 0x2 constant BPF_TCP_SYN_RECV (line 2669) | BPF_TCP_SYN_RECV = 0x3 constant BPF_TCP_FIN_WAIT1 (line 2670) | BPF_TCP_FIN_WAIT1 = 0x4 constant BPF_TCP_FIN_WAIT2 (line 2671) | BPF_TCP_FIN_WAIT2 = 0x5 constant BPF_TCP_TIME_WAIT (line 2672) | BPF_TCP_TIME_WAIT = 0x6 constant BPF_TCP_CLOSE (line 2673) | BPF_TCP_CLOSE = 0x7 constant BPF_TCP_CLOSE_WAIT (line 2674) | BPF_TCP_CLOSE_WAIT = 0x8 constant BPF_TCP_LAST_ACK (line 2675) | BPF_TCP_LAST_ACK = 0x9 constant BPF_TCP_LISTEN (line 2676) | BPF_TCP_LISTEN = 0xa constant BPF_TCP_CLOSING (line 2677) | BPF_TCP_CLOSING = 0xb constant BPF_TCP_NEW_SYN_RECV (line 2678) | BPF_TCP_NEW_SYN_RECV = 0xc constant BPF_TCP_MAX_STATES (line 2679) | BPF_TCP_MAX_STATES = 0xd constant TCP_BPF_IW (line 2680) | TCP_BPF_IW = 0x3e9 constant TCP_BPF_SNDCWND_CLAMP (line 2681) | TCP_BPF_SNDCWND_CLAMP = 0x3ea constant TCP_BPF_DELACK_MAX (line 2682) | TCP_BPF_DELACK_MAX = 0x3eb constant TCP_BPF_RTO_MIN (line 2683) | TCP_BPF_RTO_MIN = 0x3ec constant TCP_BPF_SYN (line 2684) | TCP_BPF_SYN = 0x3ed constant TCP_BPF_SYN_IP (line 2685) | TCP_BPF_SYN_IP = 0x3ee constant TCP_BPF_SYN_MAC (line 2686) | TCP_BPF_SYN_MAC = 0x3ef constant BPF_LOAD_HDR_OPT_TCP_SYN (line 2687) | BPF_LOAD_HDR_OPT_TCP_SYN = 0x1 constant BPF_WRITE_HDR_TCP_CURRENT_MSS (line 2688) | BPF_WRITE_HDR_TCP_CURRENT_MSS = 0x1 constant BPF_WRITE_HDR_TCP_SYNACK_COOKIE (line 2689) | BPF_WRITE_HDR_TCP_SYNACK_COOKIE = 0x2 constant BPF_DEVCG_ACC_MKNOD (line 2690) | BPF_DEVCG_ACC_MKNOD = 0x1 constant BPF_DEVCG_ACC_READ (line 2691) | BPF_DEVCG_ACC_READ = 0x2 constant BPF_DEVCG_ACC_WRITE (line 2692) | BPF_DEVCG_ACC_WRITE = 0x4 constant BPF_DEVCG_DEV_BLOCK (line 2693) | BPF_DEVCG_DEV_BLOCK = 0x1 constant BPF_DEVCG_DEV_CHAR (line 2694) | BPF_DEVCG_DEV_CHAR = 0x2 constant BPF_FIB_LOOKUP_DIRECT (line 2695) | BPF_FIB_LOOKUP_DIRECT = 0x1 constant BPF_FIB_LOOKUP_OUTPUT (line 2696) | BPF_FIB_LOOKUP_OUTPUT = 0x2 constant BPF_FIB_LKUP_RET_SUCCESS (line 2697) | BPF_FIB_LKUP_RET_SUCCESS = 0x0 constant BPF_FIB_LKUP_RET_BLACKHOLE (line 2698) | BPF_FIB_LKUP_RET_BLACKHOLE = 0x1 constant BPF_FIB_LKUP_RET_UNREACHABLE (line 2699) | BPF_FIB_LKUP_RET_UNREACHABLE = 0x2 constant BPF_FIB_LKUP_RET_PROHIBIT (line 2700) | BPF_FIB_LKUP_RET_PROHIBIT = 0x3 constant BPF_FIB_LKUP_RET_NOT_FWDED (line 2701) | BPF_FIB_LKUP_RET_NOT_FWDED = 0x4 constant BPF_FIB_LKUP_RET_FWD_DISABLED (line 2702) | BPF_FIB_LKUP_RET_FWD_DISABLED = 0x5 constant BPF_FIB_LKUP_RET_UNSUPP_LWT (line 2703) | BPF_FIB_LKUP_RET_UNSUPP_LWT = 0x6 constant BPF_FIB_LKUP_RET_NO_NEIGH (line 2704) | BPF_FIB_LKUP_RET_NO_NEIGH = 0x7 constant BPF_FIB_LKUP_RET_FRAG_NEEDED (line 2705) | BPF_FIB_LKUP_RET_FRAG_NEEDED = 0x8 constant BPF_FD_TYPE_RAW_TRACEPOINT (line 2706) | BPF_FD_TYPE_RAW_TRACEPOINT = 0x0 constant BPF_FD_TYPE_TRACEPOINT (line 2707) | BPF_FD_TYPE_TRACEPOINT = 0x1 constant BPF_FD_TYPE_KPROBE (line 2708) | BPF_FD_TYPE_KPROBE = 0x2 constant BPF_FD_TYPE_KRETPROBE (line 2709) | BPF_FD_TYPE_KRETPROBE = 0x3 constant BPF_FD_TYPE_UPROBE (line 2710) | BPF_FD_TYPE_UPROBE = 0x4 constant BPF_FD_TYPE_URETPROBE (line 2711) | BPF_FD_TYPE_URETPROBE = 0x5 constant BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG (line 2712) | BPF_FLOW_DISSECTOR_F_PARSE_1ST_FRAG = 0x1 constant BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL (line 2713) | BPF_FLOW_DISSECTOR_F_STOP_AT_FLOW_LABEL = 0x2 constant BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP (line 2714) | BPF_FLOW_DISSECTOR_F_STOP_AT_ENCAP = 0x4 constant RTNLGRP_NONE (line 2718) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 2719) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 2720) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 2721) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 2722) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 2723) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 2724) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 2725) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 2726) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 2727) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 2728) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 2729) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 2730) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_DECnet_IFADDR (line 2731) | RTNLGRP_DECnet_IFADDR = 0xd constant RTNLGRP_NOP2 (line 2732) | RTNLGRP_NOP2 = 0xe constant RTNLGRP_DECnet_ROUTE (line 2733) | RTNLGRP_DECnet_ROUTE = 0xf constant RTNLGRP_DECnet_RULE (line 2734) | RTNLGRP_DECnet_RULE = 0x10 constant RTNLGRP_NOP4 (line 2735) | RTNLGRP_NOP4 = 0x11 constant RTNLGRP_IPV6_PREFIX (line 2736) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 2737) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 2738) | RTNLGRP_ND_USEROPT = 0x14 constant RTNLGRP_PHONET_IFADDR (line 2739) | RTNLGRP_PHONET_IFADDR = 0x15 constant RTNLGRP_PHONET_ROUTE (line 2740) | RTNLGRP_PHONET_ROUTE = 0x16 constant RTNLGRP_DCB (line 2741) | RTNLGRP_DCB = 0x17 constant RTNLGRP_IPV4_NETCONF (line 2742) | RTNLGRP_IPV4_NETCONF = 0x18 constant RTNLGRP_IPV6_NETCONF (line 2743) | RTNLGRP_IPV6_NETCONF = 0x19 constant RTNLGRP_MDB (line 2744) | RTNLGRP_MDB = 0x1a constant RTNLGRP_MPLS_ROUTE (line 2745) | RTNLGRP_MPLS_ROUTE = 0x1b constant RTNLGRP_NSID (line 2746) | RTNLGRP_NSID = 0x1c constant RTNLGRP_MPLS_NETCONF (line 2747) | RTNLGRP_MPLS_NETCONF = 0x1d constant RTNLGRP_IPV4_MROUTE_R (line 2748) | RTNLGRP_IPV4_MROUTE_R = 0x1e constant RTNLGRP_IPV6_MROUTE_R (line 2749) | RTNLGRP_IPV6_MROUTE_R = 0x1f constant RTNLGRP_NEXTHOP (line 2750) | RTNLGRP_NEXTHOP = 0x20 constant RTNLGRP_BRVLAN (line 2751) | RTNLGRP_BRVLAN = 0x21 type CapUserHeader (line 2754) | type CapUserHeader struct type CapUserData (line 2759) | type CapUserData struct constant LINUX_CAPABILITY_VERSION_1 (line 2766) | LINUX_CAPABILITY_VERSION_1 = 0x19980330 constant LINUX_CAPABILITY_VERSION_2 (line 2767) | LINUX_CAPABILITY_VERSION_2 = 0x20071026 constant LINUX_CAPABILITY_VERSION_3 (line 2768) | LINUX_CAPABILITY_VERSION_3 = 0x20080522 constant LO_FLAGS_READ_ONLY (line 2772) | LO_FLAGS_READ_ONLY = 0x1 constant LO_FLAGS_AUTOCLEAR (line 2773) | LO_FLAGS_AUTOCLEAR = 0x4 constant LO_FLAGS_PARTSCAN (line 2774) | LO_FLAGS_PARTSCAN = 0x8 constant LO_FLAGS_DIRECT_IO (line 2775) | LO_FLAGS_DIRECT_IO = 0x10 type LoopInfo64 (line 2778) | type LoopInfo64 struct type TIPCSocketAddr (line 2794) | type TIPCSocketAddr struct type TIPCServiceRange (line 2799) | type TIPCServiceRange struct type TIPCServiceName (line 2805) | type TIPCServiceName struct type TIPCEvent (line 2811) | type TIPCEvent struct type TIPCGroupReq (line 2819) | type TIPCGroupReq struct constant TIPC_CLUSTER_SCOPE (line 2827) | TIPC_CLUSTER_SCOPE = 0x2 constant TIPC_NODE_SCOPE (line 2828) | TIPC_NODE_SCOPE = 0x3 constant SYSLOG_ACTION_CLOSE (line 2832) | SYSLOG_ACTION_CLOSE = 0 constant SYSLOG_ACTION_OPEN (line 2833) | SYSLOG_ACTION_OPEN = 1 constant SYSLOG_ACTION_READ (line 2834) | SYSLOG_ACTION_READ = 2 constant SYSLOG_ACTION_READ_ALL (line 2835) | SYSLOG_ACTION_READ_ALL = 3 constant SYSLOG_ACTION_READ_CLEAR (line 2836) | SYSLOG_ACTION_READ_CLEAR = 4 constant SYSLOG_ACTION_CLEAR (line 2837) | SYSLOG_ACTION_CLEAR = 5 constant SYSLOG_ACTION_CONSOLE_OFF (line 2838) | SYSLOG_ACTION_CONSOLE_OFF = 6 constant SYSLOG_ACTION_CONSOLE_ON (line 2839) | SYSLOG_ACTION_CONSOLE_ON = 7 constant SYSLOG_ACTION_CONSOLE_LEVEL (line 2840) | SYSLOG_ACTION_CONSOLE_LEVEL = 8 constant SYSLOG_ACTION_SIZE_UNREAD (line 2841) | SYSLOG_ACTION_SIZE_UNREAD = 9 constant SYSLOG_ACTION_SIZE_BUFFER (line 2842) | SYSLOG_ACTION_SIZE_BUFFER = 10 constant DEVLINK_CMD_UNSPEC (line 2846) | DEVLINK_CMD_UNSPEC = 0x0 constant DEVLINK_CMD_GET (line 2847) | DEVLINK_CMD_GET = 0x1 constant DEVLINK_CMD_SET (line 2848) | DEVLINK_CMD_SET = 0x2 constant DEVLINK_CMD_NEW (line 2849) | DEVLINK_CMD_NEW = 0x3 constant DEVLINK_CMD_DEL (line 2850) | DEVLINK_CMD_DEL = 0x4 constant DEVLINK_CMD_PORT_GET (line 2851) | DEVLINK_CMD_PORT_GET = 0x5 constant DEVLINK_CMD_PORT_SET (line 2852) | DEVLINK_CMD_PORT_SET = 0x6 constant DEVLINK_CMD_PORT_NEW (line 2853) | DEVLINK_CMD_PORT_NEW = 0x7 constant DEVLINK_CMD_PORT_DEL (line 2854) | DEVLINK_CMD_PORT_DEL = 0x8 constant DEVLINK_CMD_PORT_SPLIT (line 2855) | DEVLINK_CMD_PORT_SPLIT = 0x9 constant DEVLINK_CMD_PORT_UNSPLIT (line 2856) | DEVLINK_CMD_PORT_UNSPLIT = 0xa constant DEVLINK_CMD_SB_GET (line 2857) | DEVLINK_CMD_SB_GET = 0xb constant DEVLINK_CMD_SB_SET (line 2858) | DEVLINK_CMD_SB_SET = 0xc constant DEVLINK_CMD_SB_NEW (line 2859) | DEVLINK_CMD_SB_NEW = 0xd constant DEVLINK_CMD_SB_DEL (line 2860) | DEVLINK_CMD_SB_DEL = 0xe constant DEVLINK_CMD_SB_POOL_GET (line 2861) | DEVLINK_CMD_SB_POOL_GET = 0xf constant DEVLINK_CMD_SB_POOL_SET (line 2862) | DEVLINK_CMD_SB_POOL_SET = 0x10 constant DEVLINK_CMD_SB_POOL_NEW (line 2863) | DEVLINK_CMD_SB_POOL_NEW = 0x11 constant DEVLINK_CMD_SB_POOL_DEL (line 2864) | DEVLINK_CMD_SB_POOL_DEL = 0x12 constant DEVLINK_CMD_SB_PORT_POOL_GET (line 2865) | DEVLINK_CMD_SB_PORT_POOL_GET = 0x13 constant DEVLINK_CMD_SB_PORT_POOL_SET (line 2866) | DEVLINK_CMD_SB_PORT_POOL_SET = 0x14 constant DEVLINK_CMD_SB_PORT_POOL_NEW (line 2867) | DEVLINK_CMD_SB_PORT_POOL_NEW = 0x15 constant DEVLINK_CMD_SB_PORT_POOL_DEL (line 2868) | DEVLINK_CMD_SB_PORT_POOL_DEL = 0x16 constant DEVLINK_CMD_SB_TC_POOL_BIND_GET (line 2869) | DEVLINK_CMD_SB_TC_POOL_BIND_GET = 0x17 constant DEVLINK_CMD_SB_TC_POOL_BIND_SET (line 2870) | DEVLINK_CMD_SB_TC_POOL_BIND_SET = 0x18 constant DEVLINK_CMD_SB_TC_POOL_BIND_NEW (line 2871) | DEVLINK_CMD_SB_TC_POOL_BIND_NEW = 0x19 constant DEVLINK_CMD_SB_TC_POOL_BIND_DEL (line 2872) | DEVLINK_CMD_SB_TC_POOL_BIND_DEL = 0x1a constant DEVLINK_CMD_SB_OCC_SNAPSHOT (line 2873) | DEVLINK_CMD_SB_OCC_SNAPSHOT = 0x1b constant DEVLINK_CMD_SB_OCC_MAX_CLEAR (line 2874) | DEVLINK_CMD_SB_OCC_MAX_CLEAR = 0x1c constant DEVLINK_CMD_ESWITCH_GET (line 2875) | DEVLINK_CMD_ESWITCH_GET = 0x1d constant DEVLINK_CMD_ESWITCH_SET (line 2876) | DEVLINK_CMD_ESWITCH_SET = 0x1e constant DEVLINK_CMD_DPIPE_TABLE_GET (line 2877) | DEVLINK_CMD_DPIPE_TABLE_GET = 0x1f constant DEVLINK_CMD_DPIPE_ENTRIES_GET (line 2878) | DEVLINK_CMD_DPIPE_ENTRIES_GET = 0x20 constant DEVLINK_CMD_DPIPE_HEADERS_GET (line 2879) | DEVLINK_CMD_DPIPE_HEADERS_GET = 0x21 constant DEVLINK_CMD_DPIPE_TABLE_COUNTERS_SET (line 2880) | DEVLINK_CMD_DPIPE_TABLE_COUNTERS_SET = 0x22 constant DEVLINK_CMD_RESOURCE_SET (line 2881) | DEVLINK_CMD_RESOURCE_SET = 0x23 constant DEVLINK_CMD_RESOURCE_DUMP (line 2882) | DEVLINK_CMD_RESOURCE_DUMP = 0x24 constant DEVLINK_CMD_RELOAD (line 2883) | DEVLINK_CMD_RELOAD = 0x25 constant DEVLINK_CMD_PARAM_GET (line 2884) | DEVLINK_CMD_PARAM_GET = 0x26 constant DEVLINK_CMD_PARAM_SET (line 2885) | DEVLINK_CMD_PARAM_SET = 0x27 constant DEVLINK_CMD_PARAM_NEW (line 2886) | DEVLINK_CMD_PARAM_NEW = 0x28 constant DEVLINK_CMD_PARAM_DEL (line 2887) | DEVLINK_CMD_PARAM_DEL = 0x29 constant DEVLINK_CMD_REGION_GET (line 2888) | DEVLINK_CMD_REGION_GET = 0x2a constant DEVLINK_CMD_REGION_SET (line 2889) | DEVLINK_CMD_REGION_SET = 0x2b constant DEVLINK_CMD_REGION_NEW (line 2890) | DEVLINK_CMD_REGION_NEW = 0x2c constant DEVLINK_CMD_REGION_DEL (line 2891) | DEVLINK_CMD_REGION_DEL = 0x2d constant DEVLINK_CMD_REGION_READ (line 2892) | DEVLINK_CMD_REGION_READ = 0x2e constant DEVLINK_CMD_PORT_PARAM_GET (line 2893) | DEVLINK_CMD_PORT_PARAM_GET = 0x2f constant DEVLINK_CMD_PORT_PARAM_SET (line 2894) | DEVLINK_CMD_PORT_PARAM_SET = 0x30 constant DEVLINK_CMD_PORT_PARAM_NEW (line 2895) | DEVLINK_CMD_PORT_PARAM_NEW = 0x31 constant DEVLINK_CMD_PORT_PARAM_DEL (line 2896) | DEVLINK_CMD_PORT_PARAM_DEL = 0x32 constant DEVLINK_CMD_INFO_GET (line 2897) | DEVLINK_CMD_INFO_GET = 0x33 constant DEVLINK_CMD_HEALTH_REPORTER_GET (line 2898) | DEVLINK_CMD_HEALTH_REPORTER_GET = 0x34 constant DEVLINK_CMD_HEALTH_REPORTER_SET (line 2899) | DEVLINK_CMD_HEALTH_REPORTER_SET = 0x35 constant DEVLINK_CMD_HEALTH_REPORTER_RECOVER (line 2900) | DEVLINK_CMD_HEALTH_REPORTER_RECOVER = 0x36 constant DEVLINK_CMD_HEALTH_REPORTER_DIAGNOSE (line 2901) | DEVLINK_CMD_HEALTH_REPORTER_DIAGNOSE = 0x37 constant DEVLINK_CMD_HEALTH_REPORTER_DUMP_GET (line 2902) | DEVLINK_CMD_HEALTH_REPORTER_DUMP_GET = 0x38 constant DEVLINK_CMD_HEALTH_REPORTER_DUMP_CLEAR (line 2903) | DEVLINK_CMD_HEALTH_REPORTER_DUMP_CLEAR = 0x39 constant DEVLINK_CMD_FLASH_UPDATE (line 2904) | DEVLINK_CMD_FLASH_UPDATE = 0x3a constant DEVLINK_CMD_FLASH_UPDATE_END (line 2905) | DEVLINK_CMD_FLASH_UPDATE_END = 0x3b constant DEVLINK_CMD_FLASH_UPDATE_STATUS (line 2906) | DEVLINK_CMD_FLASH_UPDATE_STATUS = 0x3c constant DEVLINK_CMD_TRAP_GET (line 2907) | DEVLINK_CMD_TRAP_GET = 0x3d constant DEVLINK_CMD_TRAP_SET (line 2908) | DEVLINK_CMD_TRAP_SET = 0x3e constant DEVLINK_CMD_TRAP_NEW (line 2909) | DEVLINK_CMD_TRAP_NEW = 0x3f constant DEVLINK_CMD_TRAP_DEL (line 2910) | DEVLINK_CMD_TRAP_DEL = 0x40 constant DEVLINK_CMD_TRAP_GROUP_GET (line 2911) | DEVLINK_CMD_TRAP_GROUP_GET = 0x41 constant DEVLINK_CMD_TRAP_GROUP_SET (line 2912) | DEVLINK_CMD_TRAP_GROUP_SET = 0x42 constant DEVLINK_CMD_TRAP_GROUP_NEW (line 2913) | DEVLINK_CMD_TRAP_GROUP_NEW = 0x43 constant DEVLINK_CMD_TRAP_GROUP_DEL (line 2914) | DEVLINK_CMD_TRAP_GROUP_DEL = 0x44 constant DEVLINK_CMD_TRAP_POLICER_GET (line 2915) | DEVLINK_CMD_TRAP_POLICER_GET = 0x45 constant DEVLINK_CMD_TRAP_POLICER_SET (line 2916) | DEVLINK_CMD_TRAP_POLICER_SET = 0x46 constant DEVLINK_CMD_TRAP_POLICER_NEW (line 2917) | DEVLINK_CMD_TRAP_POLICER_NEW = 0x47 constant DEVLINK_CMD_TRAP_POLICER_DEL (line 2918) | DEVLINK_CMD_TRAP_POLICER_DEL = 0x48 constant DEVLINK_CMD_HEALTH_REPORTER_TEST (line 2919) | DEVLINK_CMD_HEALTH_REPORTER_TEST = 0x49 constant DEVLINK_CMD_MAX (line 2920) | DEVLINK_CMD_MAX = 0x49 constant DEVLINK_PORT_TYPE_NOTSET (line 2921) | DEVLINK_PORT_TYPE_NOTSET = 0x0 constant DEVLINK_PORT_TYPE_AUTO (line 2922) | DEVLINK_PORT_TYPE_AUTO = 0x1 constant DEVLINK_PORT_TYPE_ETH (line 2923) | DEVLINK_PORT_TYPE_ETH = 0x2 constant DEVLINK_PORT_TYPE_IB (line 2924) | DEVLINK_PORT_TYPE_IB = 0x3 constant DEVLINK_SB_POOL_TYPE_INGRESS (line 2925) | DEVLINK_SB_POOL_TYPE_INGRESS = 0x0 constant DEVLINK_SB_POOL_TYPE_EGRESS (line 2926) | DEVLINK_SB_POOL_TYPE_EGRESS = 0x1 constant DEVLINK_SB_THRESHOLD_TYPE_STATIC (line 2927) | DEVLINK_SB_THRESHOLD_TYPE_STATIC = 0x0 constant DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC (line 2928) | DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC = 0x1 constant DEVLINK_ESWITCH_MODE_LEGACY (line 2929) | DEVLINK_ESWITCH_MODE_LEGACY = 0x0 constant DEVLINK_ESWITCH_MODE_SWITCHDEV (line 2930) | DEVLINK_ESWITCH_MODE_SWITCHDEV = 0x1 constant DEVLINK_ESWITCH_INLINE_MODE_NONE (line 2931) | DEVLINK_ESWITCH_INLINE_MODE_NONE = 0x0 constant DEVLINK_ESWITCH_INLINE_MODE_LINK (line 2932) | DEVLINK_ESWITCH_INLINE_MODE_LINK = 0x1 constant DEVLINK_ESWITCH_INLINE_MODE_NETWORK (line 2933) | DEVLINK_ESWITCH_INLINE_MODE_NETWORK = 0x2 constant DEVLINK_ESWITCH_INLINE_MODE_TRANSPORT (line 2934) | DEVLINK_ESWITCH_INLINE_MODE_TRANSPORT = 0x3 constant DEVLINK_ESWITCH_ENCAP_MODE_NONE (line 2935) | DEVLINK_ESWITCH_ENCAP_MODE_NONE = 0x0 constant DEVLINK_ESWITCH_ENCAP_MODE_BASIC (line 2936) | DEVLINK_ESWITCH_ENCAP_MODE_BASIC = 0x1 constant DEVLINK_PORT_FLAVOUR_PHYSICAL (line 2937) | DEVLINK_PORT_FLAVOUR_PHYSICAL = 0x0 constant DEVLINK_PORT_FLAVOUR_CPU (line 2938) | DEVLINK_PORT_FLAVOUR_CPU = 0x1 constant DEVLINK_PORT_FLAVOUR_DSA (line 2939) | DEVLINK_PORT_FLAVOUR_DSA = 0x2 constant DEVLINK_PORT_FLAVOUR_PCI_PF (line 2940) | DEVLINK_PORT_FLAVOUR_PCI_PF = 0x3 constant DEVLINK_PORT_FLAVOUR_PCI_VF (line 2941) | DEVLINK_PORT_FLAVOUR_PCI_VF = 0x4 constant DEVLINK_PORT_FLAVOUR_VIRTUAL (line 2942) | DEVLINK_PORT_FLAVOUR_VIRTUAL = 0x5 constant DEVLINK_PORT_FLAVOUR_UNUSED (line 2943) | DEVLINK_PORT_FLAVOUR_UNUSED = 0x6 constant DEVLINK_PARAM_CMODE_RUNTIME (line 2944) | DEVLINK_PARAM_CMODE_RUNTIME = 0x0 constant DEVLINK_PARAM_CMODE_DRIVERINIT (line 2945) | DEVLINK_PARAM_CMODE_DRIVERINIT = 0x1 constant DEVLINK_PARAM_CMODE_PERMANENT (line 2946) | DEVLINK_PARAM_CMODE_PERMANENT = 0x2 constant DEVLINK_PARAM_CMODE_MAX (line 2947) | DEVLINK_PARAM_CMODE_MAX = 0x2 constant DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_DRIVER (line 2948) | DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_DRIVER = 0x0 constant DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_FLASH (line 2949) | DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_FLASH = 0x1 constant DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_DISK (line 2950) | DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_DISK = 0x2 constant DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_UNKNOWN (line 2951) | DEVLINK_PARAM_FW_LOAD_POLICY_VALUE_UNKNOWN = 0x3 constant DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_UNKNOWN (line 2952) | DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_UNKNOWN = 0x0 constant DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_ALWAYS (line 2953) | DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_ALWAYS = 0x1 constant DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_NEVER (line 2954) | DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_NEVER = 0x2 constant DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_DISK (line 2955) | DEVLINK_PARAM_RESET_DEV_ON_DRV_PROBE_VALUE_DISK = 0x3 constant DEVLINK_ATTR_STATS_RX_PACKETS (line 2956) | DEVLINK_ATTR_STATS_RX_PACKETS = 0x0 constant DEVLINK_ATTR_STATS_RX_BYTES (line 2957) | DEVLINK_ATTR_STATS_RX_BYTES = 0x1 constant DEVLINK_ATTR_STATS_RX_DROPPED (line 2958) | DEVLINK_ATTR_STATS_RX_DROPPED = 0x2 constant DEVLINK_ATTR_STATS_MAX (line 2959) | DEVLINK_ATTR_STATS_MAX = 0x2 constant DEVLINK_FLASH_OVERWRITE_SETTINGS_BIT (line 2960) | DEVLINK_FLASH_OVERWRITE_SETTINGS_BIT = 0x0 constant DEVLINK_FLASH_OVERWRITE_IDENTIFIERS_BIT (line 2961) | DEVLINK_FLASH_OVERWRITE_IDENTIFIERS_BIT = 0x1 constant DEVLINK_FLASH_OVERWRITE_MAX_BIT (line 2962) | DEVLINK_FLASH_OVERWRITE_MAX_BIT = 0x1 constant DEVLINK_TRAP_ACTION_DROP (line 2963) | DEVLINK_TRAP_ACTION_DROP = 0x0 constant DEVLINK_TRAP_ACTION_TRAP (line 2964) | DEVLINK_TRAP_ACTION_TRAP = 0x1 constant DEVLINK_TRAP_ACTION_MIRROR (line 2965) | DEVLINK_TRAP_ACTION_MIRROR = 0x2 constant DEVLINK_TRAP_TYPE_DROP (line 2966) | DEVLINK_TRAP_TYPE_DROP = 0x0 constant DEVLINK_TRAP_TYPE_EXCEPTION (line 2967) | DEVLINK_TRAP_TYPE_EXCEPTION = 0x1 constant DEVLINK_TRAP_TYPE_CONTROL (line 2968) | DEVLINK_TRAP_TYPE_CONTROL = 0x2 constant DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT (line 2969) | DEVLINK_ATTR_TRAP_METADATA_TYPE_IN_PORT = 0x0 constant DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE (line 2970) | DEVLINK_ATTR_TRAP_METADATA_TYPE_FA_COOKIE = 0x1 constant DEVLINK_RELOAD_ACTION_UNSPEC (line 2971) | DEVLINK_RELOAD_ACTION_UNSPEC = 0x0 constant DEVLINK_RELOAD_ACTION_DRIVER_REINIT (line 2972) | DEVLINK_RELOAD_ACTION_DRIVER_REINIT = 0x1 constant DEVLINK_RELOAD_ACTION_FW_ACTIVATE (line 2973) | DEVLINK_RELOAD_ACTION_FW_ACTIVATE = 0x2 constant DEVLINK_RELOAD_ACTION_MAX (line 2974) | DEVLINK_RELOAD_ACTION_MAX = 0x2 constant DEVLINK_RELOAD_LIMIT_UNSPEC (line 2975) | DEVLINK_RELOAD_LIMIT_UNSPEC = 0x0 constant DEVLINK_RELOAD_LIMIT_NO_RESET (line 2976) | DEVLINK_RELOAD_LIMIT_NO_RESET = 0x1 constant DEVLINK_RELOAD_LIMIT_MAX (line 2977) | DEVLINK_RELOAD_LIMIT_MAX = 0x1 constant DEVLINK_ATTR_UNSPEC (line 2978) | DEVLINK_ATTR_UNSPEC = 0x0 constant DEVLINK_ATTR_BUS_NAME (line 2979) | DEVLINK_ATTR_BUS_NAME = 0x1 constant DEVLINK_ATTR_DEV_NAME (line 2980) | DEVLINK_ATTR_DEV_NAME = 0x2 constant DEVLINK_ATTR_PORT_INDEX (line 2981) | DEVLINK_ATTR_PORT_INDEX = 0x3 constant DEVLINK_ATTR_PORT_TYPE (line 2982) | DEVLINK_ATTR_PORT_TYPE = 0x4 constant DEVLINK_ATTR_PORT_DESIRED_TYPE (line 2983) | DEVLINK_ATTR_PORT_DESIRED_TYPE = 0x5 constant DEVLINK_ATTR_PORT_NETDEV_IFINDEX (line 2984) | DEVLINK_ATTR_PORT_NETDEV_IFINDEX = 0x6 constant DEVLINK_ATTR_PORT_NETDEV_NAME (line 2985) | DEVLINK_ATTR_PORT_NETDEV_NAME = 0x7 constant DEVLINK_ATTR_PORT_IBDEV_NAME (line 2986) | DEVLINK_ATTR_PORT_IBDEV_NAME = 0x8 constant DEVLINK_ATTR_PORT_SPLIT_COUNT (line 2987) | DEVLINK_ATTR_PORT_SPLIT_COUNT = 0x9 constant DEVLINK_ATTR_PORT_SPLIT_GROUP (line 2988) | DEVLINK_ATTR_PORT_SPLIT_GROUP = 0xa constant DEVLINK_ATTR_SB_INDEX (line 2989) | DEVLINK_ATTR_SB_INDEX = 0xb constant DEVLINK_ATTR_SB_SIZE (line 2990) | DEVLINK_ATTR_SB_SIZE = 0xc constant DEVLINK_ATTR_SB_INGRESS_POOL_COUNT (line 2991) | DEVLINK_ATTR_SB_INGRESS_POOL_COUNT = 0xd constant DEVLINK_ATTR_SB_EGRESS_POOL_COUNT (line 2992) | DEVLINK_ATTR_SB_EGRESS_POOL_COUNT = 0xe constant DEVLINK_ATTR_SB_INGRESS_TC_COUNT (line 2993) | DEVLINK_ATTR_SB_INGRESS_TC_COUNT = 0xf constant DEVLINK_ATTR_SB_EGRESS_TC_COUNT (line 2994) | DEVLINK_ATTR_SB_EGRESS_TC_COUNT = 0x10 constant DEVLINK_ATTR_SB_POOL_INDEX (line 2995) | DEVLINK_ATTR_SB_POOL_INDEX = 0x11 constant DEVLINK_ATTR_SB_POOL_TYPE (line 2996) | DEVLINK_ATTR_SB_POOL_TYPE = 0x12 constant DEVLINK_ATTR_SB_POOL_SIZE (line 2997) | DEVLINK_ATTR_SB_POOL_SIZE = 0x13 constant DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE (line 2998) | DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE = 0x14 constant DEVLINK_ATTR_SB_THRESHOLD (line 2999) | DEVLINK_ATTR_SB_THRESHOLD = 0x15 constant DEVLINK_ATTR_SB_TC_INDEX (line 3000) | DEVLINK_ATTR_SB_TC_INDEX = 0x16 constant DEVLINK_ATTR_SB_OCC_CUR (line 3001) | DEVLINK_ATTR_SB_OCC_CUR = 0x17 constant DEVLINK_ATTR_SB_OCC_MAX (line 3002) | DEVLINK_ATTR_SB_OCC_MAX = 0x18 constant DEVLINK_ATTR_ESWITCH_MODE (line 3003) | DEVLINK_ATTR_ESWITCH_MODE = 0x19 constant DEVLINK_ATTR_ESWITCH_INLINE_MODE (line 3004) | DEVLINK_ATTR_ESWITCH_INLINE_MODE = 0x1a constant DEVLINK_ATTR_DPIPE_TABLES (line 3005) | DEVLINK_ATTR_DPIPE_TABLES = 0x1b constant DEVLINK_ATTR_DPIPE_TABLE (line 3006) | DEVLINK_ATTR_DPIPE_TABLE = 0x1c constant DEVLINK_ATTR_DPIPE_TABLE_NAME (line 3007) | DEVLINK_ATTR_DPIPE_TABLE_NAME = 0x1d constant DEVLINK_ATTR_DPIPE_TABLE_SIZE (line 3008) | DEVLINK_ATTR_DPIPE_TABLE_SIZE = 0x1e constant DEVLINK_ATTR_DPIPE_TABLE_MATCHES (line 3009) | DEVLINK_ATTR_DPIPE_TABLE_MATCHES = 0x1f constant DEVLINK_ATTR_DPIPE_TABLE_ACTIONS (line 3010) | DEVLINK_ATTR_DPIPE_TABLE_ACTIONS = 0x20 constant DEVLINK_ATTR_DPIPE_TABLE_COUNTERS_ENABLED (line 3011) | DEVLINK_ATTR_DPIPE_TABLE_COUNTERS_ENABLED = 0x21 constant DEVLINK_ATTR_DPIPE_ENTRIES (line 3012) | DEVLINK_ATTR_DPIPE_ENTRIES = 0x22 constant DEVLINK_ATTR_DPIPE_ENTRY (line 3013) | DEVLINK_ATTR_DPIPE_ENTRY = 0x23 constant DEVLINK_ATTR_DPIPE_ENTRY_INDEX (line 3014) | DEVLINK_ATTR_DPIPE_ENTRY_INDEX = 0x24 constant DEVLINK_ATTR_DPIPE_ENTRY_MATCH_VALUES (line 3015) | DEVLINK_ATTR_DPIPE_ENTRY_MATCH_VALUES = 0x25 constant DEVLINK_ATTR_DPIPE_ENTRY_ACTION_VALUES (line 3016) | DEVLINK_ATTR_DPIPE_ENTRY_ACTION_VALUES = 0x26 constant DEVLINK_ATTR_DPIPE_ENTRY_COUNTER (line 3017) | DEVLINK_ATTR_DPIPE_ENTRY_COUNTER = 0x27 constant DEVLINK_ATTR_DPIPE_MATCH (line 3018) | DEVLINK_ATTR_DPIPE_MATCH = 0x28 constant DEVLINK_ATTR_DPIPE_MATCH_VALUE (line 3019) | DEVLINK_ATTR_DPIPE_MATCH_VALUE = 0x29 constant DEVLINK_ATTR_DPIPE_MATCH_TYPE (line 3020) | DEVLINK_ATTR_DPIPE_MATCH_TYPE = 0x2a constant DEVLINK_ATTR_DPIPE_ACTION (line 3021) | DEVLINK_ATTR_DPIPE_ACTION = 0x2b constant DEVLINK_ATTR_DPIPE_ACTION_VALUE (line 3022) | DEVLINK_ATTR_DPIPE_ACTION_VALUE = 0x2c constant DEVLINK_ATTR_DPIPE_ACTION_TYPE (line 3023) | DEVLINK_ATTR_DPIPE_ACTION_TYPE = 0x2d constant DEVLINK_ATTR_DPIPE_VALUE (line 3024) | DEVLINK_ATTR_DPIPE_VALUE = 0x2e constant DEVLINK_ATTR_DPIPE_VALUE_MASK (line 3025) | DEVLINK_ATTR_DPIPE_VALUE_MASK = 0x2f constant DEVLINK_ATTR_DPIPE_VALUE_MAPPING (line 3026) | DEVLINK_ATTR_DPIPE_VALUE_MAPPING = 0x30 constant DEVLINK_ATTR_DPIPE_HEADERS (line 3027) | DEVLINK_ATTR_DPIPE_HEADERS = 0x31 constant DEVLINK_ATTR_DPIPE_HEADER (line 3028) | DEVLINK_ATTR_DPIPE_HEADER = 0x32 constant DEVLINK_ATTR_DPIPE_HEADER_NAME (line 3029) | DEVLINK_ATTR_DPIPE_HEADER_NAME = 0x33 constant DEVLINK_ATTR_DPIPE_HEADER_ID (line 3030) | DEVLINK_ATTR_DPIPE_HEADER_ID = 0x34 constant DEVLINK_ATTR_DPIPE_HEADER_FIELDS (line 3031) | DEVLINK_ATTR_DPIPE_HEADER_FIELDS = 0x35 constant DEVLINK_ATTR_DPIPE_HEADER_GLOBAL (line 3032) | DEVLINK_ATTR_DPIPE_HEADER_GLOBAL = 0x36 constant DEVLINK_ATTR_DPIPE_HEADER_INDEX (line 3033) | DEVLINK_ATTR_DPIPE_HEADER_INDEX = 0x37 constant DEVLINK_ATTR_DPIPE_FIELD (line 3034) | DEVLINK_ATTR_DPIPE_FIELD = 0x38 constant DEVLINK_ATTR_DPIPE_FIELD_NAME (line 3035) | DEVLINK_ATTR_DPIPE_FIELD_NAME = 0x39 constant DEVLINK_ATTR_DPIPE_FIELD_ID (line 3036) | DEVLINK_ATTR_DPIPE_FIELD_ID = 0x3a constant DEVLINK_ATTR_DPIPE_FIELD_BITWIDTH (line 3037) | DEVLINK_ATTR_DPIPE_FIELD_BITWIDTH = 0x3b constant DEVLINK_ATTR_DPIPE_FIELD_MAPPING_TYPE (line 3038) | DEVLINK_ATTR_DPIPE_FIELD_MAPPING_TYPE = 0x3c constant DEVLINK_ATTR_PAD (line 3039) | DEVLINK_ATTR_PAD = 0x3d constant DEVLINK_ATTR_ESWITCH_ENCAP_MODE (line 3040) | DEVLINK_ATTR_ESWITCH_ENCAP_MODE = 0x3e constant DEVLINK_ATTR_RESOURCE_LIST (line 3041) | DEVLINK_ATTR_RESOURCE_LIST = 0x3f constant DEVLINK_ATTR_RESOURCE (line 3042) | DEVLINK_ATTR_RESOURCE = 0x40 constant DEVLINK_ATTR_RESOURCE_NAME (line 3043) | DEVLINK_ATTR_RESOURCE_NAME = 0x41 constant DEVLINK_ATTR_RESOURCE_ID (line 3044) | DEVLINK_ATTR_RESOURCE_ID = 0x42 constant DEVLINK_ATTR_RESOURCE_SIZE (line 3045) | DEVLINK_ATTR_RESOURCE_SIZE = 0x43 constant DEVLINK_ATTR_RESOURCE_SIZE_NEW (line 3046) | DEVLINK_ATTR_RESOURCE_SIZE_NEW = 0x44 constant DEVLINK_ATTR_RESOURCE_SIZE_VALID (line 3047) | DEVLINK_ATTR_RESOURCE_SIZE_VALID = 0x45 constant DEVLINK_ATTR_RESOURCE_SIZE_MIN (line 3048) | DEVLINK_ATTR_RESOURCE_SIZE_MIN = 0x46 constant DEVLINK_ATTR_RESOURCE_SIZE_MAX (line 3049) | DEVLINK_ATTR_RESOURCE_SIZE_MAX = 0x47 constant DEVLINK_ATTR_RESOURCE_SIZE_GRAN (line 3050) | DEVLINK_ATTR_RESOURCE_SIZE_GRAN = 0x48 constant DEVLINK_ATTR_RESOURCE_UNIT (line 3051) | DEVLINK_ATTR_RESOURCE_UNIT = 0x49 constant DEVLINK_ATTR_RESOURCE_OCC (line 3052) | DEVLINK_ATTR_RESOURCE_OCC = 0x4a constant DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_ID (line 3053) | DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_ID = 0x4b constant DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_UNITS (line 3054) | DEVLINK_ATTR_DPIPE_TABLE_RESOURCE_UNITS = 0x4c constant DEVLINK_ATTR_PORT_FLAVOUR (line 3055) | DEVLINK_ATTR_PORT_FLAVOUR = 0x4d constant DEVLINK_ATTR_PORT_NUMBER (line 3056) | DEVLINK_ATTR_PORT_NUMBER = 0x4e constant DEVLINK_ATTR_PORT_SPLIT_SUBPORT_NUMBER (line 3057) | DEVLINK_ATTR_PORT_SPLIT_SUBPORT_NUMBER = 0x4f constant DEVLINK_ATTR_PARAM (line 3058) | DEVLINK_ATTR_PARAM = 0x50 constant DEVLINK_ATTR_PARAM_NAME (line 3059) | DEVLINK_ATTR_PARAM_NAME = 0x51 constant DEVLINK_ATTR_PARAM_GENERIC (line 3060) | DEVLINK_ATTR_PARAM_GENERIC = 0x52 constant DEVLINK_ATTR_PARAM_TYPE (line 3061) | DEVLINK_ATTR_PARAM_TYPE = 0x53 constant DEVLINK_ATTR_PARAM_VALUES_LIST (line 3062) | DEVLINK_ATTR_PARAM_VALUES_LIST = 0x54 constant DEVLINK_ATTR_PARAM_VALUE (line 3063) | DEVLINK_ATTR_PARAM_VALUE = 0x55 constant DEVLINK_ATTR_PARAM_VALUE_DATA (line 3064) | DEVLINK_ATTR_PARAM_VALUE_DATA = 0x56 constant DEVLINK_ATTR_PARAM_VALUE_CMODE (line 3065) | DEVLINK_ATTR_PARAM_VALUE_CMODE = 0x57 constant DEVLINK_ATTR_REGION_NAME (line 3066) | DEVLINK_ATTR_REGION_NAME = 0x58 constant DEVLINK_ATTR_REGION_SIZE (line 3067) | DEVLINK_ATTR_REGION_SIZE = 0x59 constant DEVLINK_ATTR_REGION_SNAPSHOTS (line 3068) | DEVLINK_ATTR_REGION_SNAPSHOTS = 0x5a constant DEVLINK_ATTR_REGION_SNAPSHOT (line 3069) | DEVLINK_ATTR_REGION_SNAPSHOT = 0x5b constant DEVLINK_ATTR_REGION_SNAPSHOT_ID (line 3070) | DEVLINK_ATTR_REGION_SNAPSHOT_ID = 0x5c constant DEVLINK_ATTR_REGION_CHUNKS (line 3071) | DEVLINK_ATTR_REGION_CHUNKS = 0x5d constant DEVLINK_ATTR_REGION_CHUNK (line 3072) | DEVLINK_ATTR_REGION_CHUNK = 0x5e constant DEVLINK_ATTR_REGION_CHUNK_DATA (line 3073) | DEVLINK_ATTR_REGION_CHUNK_DATA = 0x5f constant DEVLINK_ATTR_REGION_CHUNK_ADDR (line 3074) | DEVLINK_ATTR_REGION_CHUNK_ADDR = 0x60 constant DEVLINK_ATTR_REGION_CHUNK_LEN (line 3075) | DEVLINK_ATTR_REGION_CHUNK_LEN = 0x61 constant DEVLINK_ATTR_INFO_DRIVER_NAME (line 3076) | DEVLINK_ATTR_INFO_DRIVER_NAME = 0x62 constant DEVLINK_ATTR_INFO_SERIAL_NUMBER (line 3077) | DEVLINK_ATTR_INFO_SERIAL_NUMBER = 0x63 constant DEVLINK_ATTR_INFO_VERSION_FIXED (line 3078) | DEVLINK_ATTR_INFO_VERSION_FIXED = 0x64 constant DEVLINK_ATTR_INFO_VERSION_RUNNING (line 3079) | DEVLINK_ATTR_INFO_VERSION_RUNNING = 0x65 constant DEVLINK_ATTR_INFO_VERSION_STORED (line 3080) | DEVLINK_ATTR_INFO_VERSION_STORED = 0x66 constant DEVLINK_ATTR_INFO_VERSION_NAME (line 3081) | DEVLINK_ATTR_INFO_VERSION_NAME = 0x67 constant DEVLINK_ATTR_INFO_VERSION_VALUE (line 3082) | DEVLINK_ATTR_INFO_VERSION_VALUE = 0x68 constant DEVLINK_ATTR_SB_POOL_CELL_SIZE (line 3083) | DEVLINK_ATTR_SB_POOL_CELL_SIZE = 0x69 constant DEVLINK_ATTR_FMSG (line 3084) | DEVLINK_ATTR_FMSG = 0x6a constant DEVLINK_ATTR_FMSG_OBJ_NEST_START (line 3085) | DEVLINK_ATTR_FMSG_OBJ_NEST_START = 0x6b constant DEVLINK_ATTR_FMSG_PAIR_NEST_START (line 3086) | DEVLINK_ATTR_FMSG_PAIR_NEST_START = 0x6c constant DEVLINK_ATTR_FMSG_ARR_NEST_START (line 3087) | DEVLINK_ATTR_FMSG_ARR_NEST_START = 0x6d constant DEVLINK_ATTR_FMSG_NEST_END (line 3088) | DEVLINK_ATTR_FMSG_NEST_END = 0x6e constant DEVLINK_ATTR_FMSG_OBJ_NAME (line 3089) | DEVLINK_ATTR_FMSG_OBJ_NAME = 0x6f constant DEVLINK_ATTR_FMSG_OBJ_VALUE_TYPE (line 3090) | DEVLINK_ATTR_FMSG_OBJ_VALUE_TYPE = 0x70 constant DEVLINK_ATTR_FMSG_OBJ_VALUE_DATA (line 3091) | DEVLINK_ATTR_FMSG_OBJ_VALUE_DATA = 0x71 constant DEVLINK_ATTR_HEALTH_REPORTER (line 3092) | DEVLINK_ATTR_HEALTH_REPORTER = 0x72 constant DEVLINK_ATTR_HEALTH_REPORTER_NAME (line 3093) | DEVLINK_ATTR_HEALTH_REPORTER_NAME = 0x73 constant DEVLINK_ATTR_HEALTH_REPORTER_STATE (line 3094) | DEVLINK_ATTR_HEALTH_REPORTER_STATE = 0x74 constant DEVLINK_ATTR_HEALTH_REPORTER_ERR_COUNT (line 3095) | DEVLINK_ATTR_HEALTH_REPORTER_ERR_COUNT = 0x75 constant DEVLINK_ATTR_HEALTH_REPORTER_RECOVER_COUNT (line 3096) | DEVLINK_ATTR_HEALTH_REPORTER_RECOVER_COUNT = 0x76 constant DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS (line 3097) | DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS = 0x77 constant DEVLINK_ATTR_HEALTH_REPORTER_GRACEFUL_PERIOD (line 3098) | DEVLINK_ATTR_HEALTH_REPORTER_GRACEFUL_PERIOD = 0x78 constant DEVLINK_ATTR_HEALTH_REPORTER_AUTO_RECOVER (line 3099) | DEVLINK_ATTR_HEALTH_REPORTER_AUTO_RECOVER = 0x79 constant DEVLINK_ATTR_FLASH_UPDATE_FILE_NAME (line 3100) | DEVLINK_ATTR_FLASH_UPDATE_FILE_NAME = 0x7a constant DEVLINK_ATTR_FLASH_UPDATE_COMPONENT (line 3101) | DEVLINK_ATTR_FLASH_UPDATE_COMPONENT = 0x7b constant DEVLINK_ATTR_FLASH_UPDATE_STATUS_MSG (line 3102) | DEVLINK_ATTR_FLASH_UPDATE_STATUS_MSG = 0x7c constant DEVLINK_ATTR_FLASH_UPDATE_STATUS_DONE (line 3103) | DEVLINK_ATTR_FLASH_UPDATE_STATUS_DONE = 0x7d constant DEVLINK_ATTR_FLASH_UPDATE_STATUS_TOTAL (line 3104) | DEVLINK_ATTR_FLASH_UPDATE_STATUS_TOTAL = 0x7e constant DEVLINK_ATTR_PORT_PCI_PF_NUMBER (line 3105) | DEVLINK_ATTR_PORT_PCI_PF_NUMBER = 0x7f constant DEVLINK_ATTR_PORT_PCI_VF_NUMBER (line 3106) | DEVLINK_ATTR_PORT_PCI_VF_NUMBER = 0x80 constant DEVLINK_ATTR_STATS (line 3107) | DEVLINK_ATTR_STATS = 0x81 constant DEVLINK_ATTR_TRAP_NAME (line 3108) | DEVLINK_ATTR_TRAP_NAME = 0x82 constant DEVLINK_ATTR_TRAP_ACTION (line 3109) | DEVLINK_ATTR_TRAP_ACTION = 0x83 constant DEVLINK_ATTR_TRAP_TYPE (line 3110) | DEVLINK_ATTR_TRAP_TYPE = 0x84 constant DEVLINK_ATTR_TRAP_GENERIC (line 3111) | DEVLINK_ATTR_TRAP_GENERIC = 0x85 constant DEVLINK_ATTR_TRAP_METADATA (line 3112) | DEVLINK_ATTR_TRAP_METADATA = 0x86 constant DEVLINK_ATTR_TRAP_GROUP_NAME (line 3113) | DEVLINK_ATTR_TRAP_GROUP_NAME = 0x87 constant DEVLINK_ATTR_RELOAD_FAILED (line 3114) | DEVLINK_ATTR_RELOAD_FAILED = 0x88 constant DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS_NS (line 3115) | DEVLINK_ATTR_HEALTH_REPORTER_DUMP_TS_NS = 0x89 constant DEVLINK_ATTR_NETNS_FD (line 3116) | DEVLINK_ATTR_NETNS_FD = 0x8a constant DEVLINK_ATTR_NETNS_PID (line 3117) | DEVLINK_ATTR_NETNS_PID = 0x8b constant DEVLINK_ATTR_NETNS_ID (line 3118) | DEVLINK_ATTR_NETNS_ID = 0x8c constant DEVLINK_ATTR_HEALTH_REPORTER_AUTO_DUMP (line 3119) | DEVLINK_ATTR_HEALTH_REPORTER_AUTO_DUMP = 0x8d constant DEVLINK_ATTR_TRAP_POLICER_ID (line 3120) | DEVLINK_ATTR_TRAP_POLICER_ID = 0x8e constant DEVLINK_ATTR_TRAP_POLICER_RATE (line 3121) | DEVLINK_ATTR_TRAP_POLICER_RATE = 0x8f constant DEVLINK_ATTR_TRAP_POLICER_BURST (line 3122) | DEVLINK_ATTR_TRAP_POLICER_BURST = 0x90 constant DEVLINK_ATTR_PORT_FUNCTION (line 3123) | DEVLINK_ATTR_PORT_FUNCTION = 0x91 constant DEVLINK_ATTR_INFO_BOARD_SERIAL_NUMBER (line 3124) | DEVLINK_ATTR_INFO_BOARD_SERIAL_NUMBER = 0x92 constant DEVLINK_ATTR_PORT_LANES (line 3125) | DEVLINK_ATTR_PORT_LANES = 0x93 constant DEVLINK_ATTR_PORT_SPLITTABLE (line 3126) | DEVLINK_ATTR_PORT_SPLITTABLE = 0x94 constant DEVLINK_ATTR_PORT_EXTERNAL (line 3127) | DEVLINK_ATTR_PORT_EXTERNAL = 0x95 constant DEVLINK_ATTR_PORT_CONTROLLER_NUMBER (line 3128) | DEVLINK_ATTR_PORT_CONTROLLER_NUMBER = 0x96 constant DEVLINK_ATTR_FLASH_UPDATE_STATUS_TIMEOUT (line 3129) | DEVLINK_ATTR_FLASH_UPDATE_STATUS_TIMEOUT = 0x97 constant DEVLINK_ATTR_FLASH_UPDATE_OVERWRITE_MASK (line 3130) | DEVLINK_ATTR_FLASH_UPDATE_OVERWRITE_MASK = 0x98 constant DEVLINK_ATTR_RELOAD_ACTION (line 3131) | DEVLINK_ATTR_RELOAD_ACTION = 0x99 constant DEVLINK_ATTR_RELOAD_ACTIONS_PERFORMED (line 3132) | DEVLINK_ATTR_RELOAD_ACTIONS_PERFORMED = 0x9a constant DEVLINK_ATTR_RELOAD_LIMITS (line 3133) | DEVLINK_ATTR_RELOAD_LIMITS = 0x9b constant DEVLINK_ATTR_DEV_STATS (line 3134) | DEVLINK_ATTR_DEV_STATS = 0x9c constant DEVLINK_ATTR_RELOAD_STATS (line 3135) | DEVLINK_ATTR_RELOAD_STATS = 0x9d constant DEVLINK_ATTR_RELOAD_STATS_ENTRY (line 3136) | DEVLINK_ATTR_RELOAD_STATS_ENTRY = 0x9e constant DEVLINK_ATTR_RELOAD_STATS_LIMIT (line 3137) | DEVLINK_ATTR_RELOAD_STATS_LIMIT = 0x9f constant DEVLINK_ATTR_RELOAD_STATS_VALUE (line 3138) | DEVLINK_ATTR_RELOAD_STATS_VALUE = 0xa0 constant DEVLINK_ATTR_REMOTE_RELOAD_STATS (line 3139) | DEVLINK_ATTR_REMOTE_RELOAD_STATS = 0xa1 constant DEVLINK_ATTR_RELOAD_ACTION_INFO (line 3140) | DEVLINK_ATTR_RELOAD_ACTION_INFO = 0xa2 constant DEVLINK_ATTR_RELOAD_ACTION_STATS (line 3141) | DEVLINK_ATTR_RELOAD_ACTION_STATS = 0xa3 constant DEVLINK_ATTR_PORT_PCI_SF_NUMBER (line 3142) | DEVLINK_ATTR_PORT_PCI_SF_NUMBER = 0xa4 constant DEVLINK_ATTR_MAX (line 3143) | DEVLINK_ATTR_MAX = 0xa4 constant DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE (line 3144) | DEVLINK_DPIPE_FIELD_MAPPING_TYPE_NONE = 0x0 constant DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX (line 3145) | DEVLINK_DPIPE_FIELD_MAPPING_TYPE_IFINDEX = 0x1 constant DEVLINK_DPIPE_MATCH_TYPE_FIELD_EXACT (line 3146) | DEVLINK_DPIPE_MATCH_TYPE_FIELD_EXACT = 0x0 constant DEVLINK_DPIPE_ACTION_TYPE_FIELD_MODIFY (line 3147) | DEVLINK_DPIPE_ACTION_TYPE_FIELD_MODIFY = 0x0 constant DEVLINK_DPIPE_FIELD_ETHERNET_DST_MAC (line 3148) | DEVLINK_DPIPE_FIELD_ETHERNET_DST_MAC = 0x0 constant DEVLINK_DPIPE_FIELD_IPV4_DST_IP (line 3149) | DEVLINK_DPIPE_FIELD_IPV4_DST_IP = 0x0 constant DEVLINK_DPIPE_FIELD_IPV6_DST_IP (line 3150) | DEVLINK_DPIPE_FIELD_IPV6_DST_IP = 0x0 constant DEVLINK_DPIPE_HEADER_ETHERNET (line 3151) | DEVLINK_DPIPE_HEADER_ETHERNET = 0x0 constant DEVLINK_DPIPE_HEADER_IPV4 (line 3152) | DEVLINK_DPIPE_HEADER_IPV4 = 0x1 constant DEVLINK_DPIPE_HEADER_IPV6 (line 3153) | DEVLINK_DPIPE_HEADER_IPV6 = 0x2 constant DEVLINK_RESOURCE_UNIT_ENTRY (line 3154) | DEVLINK_RESOURCE_UNIT_ENTRY = 0x0 constant DEVLINK_PORT_FUNCTION_ATTR_UNSPEC (line 3155) | DEVLINK_PORT_FUNCTION_ATTR_UNSPEC = 0x0 constant DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR (line 3156) | DEVLINK_PORT_FUNCTION_ATTR_HW_ADDR = 0x1 constant DEVLINK_PORT_FN_ATTR_STATE (line 3157) | DEVLINK_PORT_FN_ATTR_STATE = 0x2 constant DEVLINK_PORT_FN_ATTR_OPSTATE (line 3158) | DEVLINK_PORT_FN_ATTR_OPSTATE = 0x3 constant DEVLINK_PORT_FUNCTION_ATTR_MAX (line 3159) | DEVLINK_PORT_FUNCTION_ATTR_MAX = 0x3 type FsverityDigest (line 3162) | type FsverityDigest struct type FsverityEnableArg (line 3167) | type FsverityEnableArg struct type Nhmsg (line 3179) | type Nhmsg struct type NexthopGrp (line 3187) | type NexthopGrp struct constant NHA_UNSPEC (line 3195) | NHA_UNSPEC = 0x0 constant NHA_ID (line 3196) | NHA_ID = 0x1 constant NHA_GROUP (line 3197) | NHA_GROUP = 0x2 constant NHA_GROUP_TYPE (line 3198) | NHA_GROUP_TYPE = 0x3 constant NHA_BLACKHOLE (line 3199) | NHA_BLACKHOLE = 0x4 constant NHA_OIF (line 3200) | NHA_OIF = 0x5 constant NHA_GATEWAY (line 3201) | NHA_GATEWAY = 0x6 constant NHA_ENCAP_TYPE (line 3202) | NHA_ENCAP_TYPE = 0x7 constant NHA_ENCAP (line 3203) | NHA_ENCAP = 0x8 constant NHA_GROUPS (line 3204) | NHA_GROUPS = 0x9 constant NHA_MASTER (line 3205) | NHA_MASTER = 0xa constant CAN_RAW_FILTER (line 3209) | CAN_RAW_FILTER = 0x1 constant CAN_RAW_ERR_FILTER (line 3210) | CAN_RAW_ERR_FILTER = 0x2 constant CAN_RAW_LOOPBACK (line 3211) | CAN_RAW_LOOPBACK = 0x3 constant CAN_RAW_RECV_OWN_MSGS (line 3212) | CAN_RAW_RECV_OWN_MSGS = 0x4 constant CAN_RAW_FD_FRAMES (line 3213) | CAN_RAW_FD_FRAMES = 0x5 constant CAN_RAW_JOIN_FILTERS (line 3214) | CAN_RAW_JOIN_FILTERS = 0x6 type WatchdogInfo (line 3217) | type WatchdogInfo struct type PPSFData (line 3223) | type PPSFData struct type PPSKParams (line 3228) | type PPSKParams struct type PPSKTime (line 3235) | type PPSKTime struct constant LWTUNNEL_ENCAP_NONE (line 3242) | LWTUNNEL_ENCAP_NONE = 0x0 constant LWTUNNEL_ENCAP_MPLS (line 3243) | LWTUNNEL_ENCAP_MPLS = 0x1 constant LWTUNNEL_ENCAP_IP (line 3244) | LWTUNNEL_ENCAP_IP = 0x2 constant LWTUNNEL_ENCAP_ILA (line 3245) | LWTUNNEL_ENCAP_ILA = 0x3 constant LWTUNNEL_ENCAP_IP6 (line 3246) | LWTUNNEL_ENCAP_IP6 = 0x4 constant LWTUNNEL_ENCAP_SEG6 (line 3247) | LWTUNNEL_ENCAP_SEG6 = 0x5 constant LWTUNNEL_ENCAP_BPF (line 3248) | LWTUNNEL_ENCAP_BPF = 0x6 constant LWTUNNEL_ENCAP_SEG6_LOCAL (line 3249) | LWTUNNEL_ENCAP_SEG6_LOCAL = 0x7 constant LWTUNNEL_ENCAP_RPL (line 3250) | LWTUNNEL_ENCAP_RPL = 0x8 constant LWTUNNEL_ENCAP_MAX (line 3251) | LWTUNNEL_ENCAP_MAX = 0x8 constant MPLS_IPTUNNEL_UNSPEC (line 3253) | MPLS_IPTUNNEL_UNSPEC = 0x0 constant MPLS_IPTUNNEL_DST (line 3254) | MPLS_IPTUNNEL_DST = 0x1 constant MPLS_IPTUNNEL_TTL (line 3255) | MPLS_IPTUNNEL_TTL = 0x2 constant MPLS_IPTUNNEL_MAX (line 3256) | MPLS_IPTUNNEL_MAX = 0x2 constant ETHTOOL_ID_UNSPEC (line 3260) | ETHTOOL_ID_UNSPEC ... constant ETHTOOL_RX_COPYBREAK (line 3261) | ETHTOOL_RX_COPYBREAK ... constant ETHTOOL_TX_COPYBREAK (line 3262) | ETHTOOL_TX_COPYBREAK ... constant ETHTOOL_PFC_PREVENTION_TOUT (line 3263) | ETHTOOL_PFC_PREVENTION_TOUT ... constant ETHTOOL_TUNABLE_UNSPEC (line 3264) | ETHTOOL_TUNABLE_UNSPEC ... constant ETHTOOL_TUNABLE_U8 (line 3265) | ETHTOOL_TUNABLE_U8 ... constant ETHTOOL_TUNABLE_U16 (line 3266) | ETHTOOL_TUNABLE_U16 ... constant ETHTOOL_TUNABLE_U32 (line 3267) | ETHTOOL_TUNABLE_U32 ... constant ETHTOOL_TUNABLE_U64 (line 3268) | ETHTOOL_TUNABLE_U64 ... constant ETHTOOL_TUNABLE_STRING (line 3269) | ETHTOOL_TUNABLE_STRING ... constant ETHTOOL_TUNABLE_S8 (line 3270) | ETHTOOL_TUNABLE_S8 ... constant ETHTOOL_TUNABLE_S16 (line 3271) | ETHTOOL_TUNABLE_S16 ... constant ETHTOOL_TUNABLE_S32 (line 3272) | ETHTOOL_TUNABLE_S32 ... constant ETHTOOL_TUNABLE_S64 (line 3273) | ETHTOOL_TUNABLE_S64 ... constant ETHTOOL_PHY_ID_UNSPEC (line 3274) | ETHTOOL_PHY_ID_UNSPEC ... constant ETHTOOL_PHY_DOWNSHIFT (line 3275) | ETHTOOL_PHY_DOWNSHIFT ... constant ETHTOOL_PHY_FAST_LINK_DOWN (line 3276) | ETHTOOL_PHY_FAST_LINK_DOWN ... constant ETHTOOL_PHY_EDPD (line 3277) | ETHTOOL_PHY_EDPD ... constant ETHTOOL_LINK_EXT_STATE_AUTONEG (line 3278) | ETHTOOL_LINK_EXT_STATE_AUTONEG ... constant ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE (line 3279) | ETHTOOL_LINK_EXT_STATE_LINK_TRAINING_FAILURE ... constant ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH (line 3280) | ETHTOOL_LINK_EXT_STATE_LINK_LOGICAL_MISMATCH ... constant ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY (line 3281) | ETHTOOL_LINK_EXT_STATE_BAD_SIGNAL_INTEGRITY ... constant ETHTOOL_LINK_EXT_STATE_NO_CABLE (line 3282) | ETHTOOL_LINK_EXT_STATE_NO_CABLE ... constant ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE (line 3283) | ETHTOOL_LINK_EXT_STATE_CABLE_ISSUE ... constant ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE (line 3284) | ETHTOOL_LINK_EXT_STATE_EEPROM_ISSUE ... constant ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE (line 3285) | ETHTOOL_LINK_EXT_STATE_CALIBRATION_FAILURE ... constant ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED (line 3286) | ETHTOOL_LINK_EXT_STATE_POWER_BUDGET_EXCEEDED ... constant ETHTOOL_LINK_EXT_STATE_OVERHEAT (line 3287) | ETHTOOL_LINK_EXT_STATE_OVERHEAT ... constant ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED (line 3288) | ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED ... constant ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED (line 3289) | ETHTOOL_LINK_EXT_SUBSTATE_AN_ACK_NOT_RECEIVED ... constant ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED (line 3290) | ETHTOOL_LINK_EXT_SUBSTATE_AN_NEXT_PAGE_EXCHANGE_FAILED ... constant ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE (line 3291) | ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_PARTNER_DETECTED_FORCE_MODE ... constant ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE (line 3292) | ETHTOOL_LINK_EXT_SUBSTATE_AN_FEC_MISMATCH_DURING_OVERRIDE ... constant ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD (line 3293) | ETHTOOL_LINK_EXT_SUBSTATE_AN_NO_HCD ... constant ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED (line 3294) | ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_FRAME_LOCK_NOT_ACQUIRED ... constant ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT (line 3295) | ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_INHIBIT_TIMEOUT ... constant ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY (line 3296) | ETHTOOL_LINK_EXT_SUBSTATE_LT_KR_LINK_PARTNER_DID_NOT_SET_RECEIVER_READY ... constant ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT (line 3297) | ETHTOOL_LINK_EXT_SUBSTATE_LT_REMOTE_FAULT ... constant ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK (line 3298) | ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_BLOCK_LOCK ... constant ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK (line 3299) | ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_ACQUIRE_AM_LOCK ... constant ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS (line 3300) | ETHTOOL_LINK_EXT_SUBSTATE_LLM_PCS_DID_NOT_GET_ALIGN_STATUS ... constant ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED (line 3301) | ETHTOOL_LINK_EXT_SUBSTATE_LLM_FC_FEC_IS_NOT_LOCKED ... constant ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED (line 3302) | ETHTOOL_LINK_EXT_SUBSTATE_LLM_RS_FEC_IS_NOT_LOCKED ... constant ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS (line 3303) | ETHTOOL_LINK_EXT_SUBSTATE_BSI_LARGE_NUMBER_OF_PHYSICAL_ERRORS ... constant ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE (line 3304) | ETHTOOL_LINK_EXT_SUBSTATE_BSI_UNSUPPORTED_RATE ... constant ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE (line 3305) | ETHTOOL_LINK_EXT_SUBSTATE_CI_UNSUPPORTED_CABLE ... constant ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE (line 3306) | ETHTOOL_LINK_EXT_SUBSTATE_CI_CABLE_TEST_FAILURE ... constant ETHTOOL_FLASH_ALL_REGIONS (line 3307) | ETHTOOL_FLASH_ALL_REGIONS ... constant ETHTOOL_F_UNSUPPORTED__BIT (line 3308) | ETHTOOL_F_UNSUPPORTED__BIT ... constant ETHTOOL_F_WISH__BIT (line 3309) | ETHTOOL_F_WISH__BIT ... constant ETHTOOL_F_COMPAT__BIT (line 3310) | ETHTOOL_F_COMPAT__BIT ... constant ETHTOOL_FEC_NONE_BIT (line 3311) | ETHTOOL_FEC_NONE_BIT ... constant ETHTOOL_FEC_AUTO_BIT (line 3312) | ETHTOOL_FEC_AUTO_BIT ... constant ETHTOOL_FEC_OFF_BIT (line 3313) | ETHTOOL_FEC_OFF_BIT ... constant ETHTOOL_FEC_RS_BIT (line 3314) | ETHTOOL_FEC_RS_BIT ... constant ETHTOOL_FEC_BASER_BIT (line 3315) | ETHTOOL_FEC_BASER_BIT ... constant ETHTOOL_FEC_LLRS_BIT (line 3316) | ETHTOOL_FEC_LLRS_BIT ... constant ETHTOOL_LINK_MODE_10baseT_Half_BIT (line 3317) | ETHTOOL_LINK_MODE_10baseT_Half_BIT ... constant ETHTOOL_LINK_MODE_10baseT_Full_BIT (line 3318) | ETHTOOL_LINK_MODE_10baseT_Full_BIT ... constant ETHTOOL_LINK_MODE_100baseT_Half_BIT (line 3319) | ETHTOOL_LINK_MODE_100baseT_Half_BIT ... constant ETHTOOL_LINK_MODE_100baseT_Full_BIT (line 3320) | ETHTOOL_LINK_MODE_100baseT_Full_BIT ... constant ETHTOOL_LINK_MODE_1000baseT_Half_BIT (line 3321) | ETHTOOL_LINK_MODE_1000baseT_Half_BIT ... constant ETHTOOL_LINK_MODE_1000baseT_Full_BIT (line 3322) | ETHTOOL_LINK_MODE_1000baseT_Full_BIT ... constant ETHTOOL_LINK_MODE_Autoneg_BIT (line 3323) | ETHTOOL_LINK_MODE_Autoneg_BIT ... constant ETHTOOL_LINK_MODE_TP_BIT (line 3324) | ETHTOOL_LINK_MODE_TP_BIT ... constant ETHTOOL_LINK_MODE_AUI_BIT (line 3325) | ETHTOOL_LINK_MODE_AUI_BIT ... constant ETHTOOL_LINK_MODE_MII_BIT (line 3326) | ETHTOOL_LINK_MODE_MII_BIT ... constant ETHTOOL_LINK_MODE_FIBRE_BIT (line 3327) | ETHTOOL_LINK_MODE_FIBRE_BIT ... constant ETHTOOL_LINK_MODE_BNC_BIT (line 3328) | ETHTOOL_LINK_MODE_BNC_BIT ... constant ETHTOOL_LINK_MODE_10000baseT_Full_BIT (line 3329) | ETHTOOL_LINK_MODE_10000baseT_Full_BIT ... constant ETHTOOL_LINK_MODE_Pause_BIT (line 3330) | ETHTOOL_LINK_MODE_Pause_BIT ... constant ETHTOOL_LINK_MODE_Asym_Pause_BIT (line 3331) | ETHTOOL_LINK_MODE_Asym_Pause_BIT ... constant ETHTOOL_LINK_MODE_2500baseX_Full_BIT (line 3332) | ETHTOOL_LINK_MODE_2500baseX_Full_BIT ... constant ETHTOOL_LINK_MODE_Backplane_BIT (line 3333) | ETHTOOL_LINK_MODE_Backplane_BIT ... constant ETHTOOL_LINK_MODE_1000baseKX_Full_BIT (line 3334) | ETHTOOL_LINK_MODE_1000baseKX_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT (line 3335) | ETHTOOL_LINK_MODE_10000baseKX4_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseKR_Full_BIT (line 3336) | ETHTOOL_LINK_MODE_10000baseKR_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseR_FEC_BIT (line 3337) | ETHTOOL_LINK_MODE_10000baseR_FEC_BIT ... constant ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT (line 3338) | ETHTOOL_LINK_MODE_20000baseMLD2_Full_BIT ... constant ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT (line 3339) | ETHTOOL_LINK_MODE_20000baseKR2_Full_BIT ... constant ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT (line 3340) | ETHTOOL_LINK_MODE_40000baseKR4_Full_BIT ... constant ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT (line 3341) | ETHTOOL_LINK_MODE_40000baseCR4_Full_BIT ... constant ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT (line 3342) | ETHTOOL_LINK_MODE_40000baseSR4_Full_BIT ... constant ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT (line 3343) | ETHTOOL_LINK_MODE_40000baseLR4_Full_BIT ... constant ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT (line 3344) | ETHTOOL_LINK_MODE_56000baseKR4_Full_BIT ... constant ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT (line 3345) | ETHTOOL_LINK_MODE_56000baseCR4_Full_BIT ... constant ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT (line 3346) | ETHTOOL_LINK_MODE_56000baseSR4_Full_BIT ... constant ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT (line 3347) | ETHTOOL_LINK_MODE_56000baseLR4_Full_BIT ... constant ETHTOOL_LINK_MODE_25000baseCR_Full_BIT (line 3348) | ETHTOOL_LINK_MODE_25000baseCR_Full_BIT ... constant ETHTOOL_LINK_MODE_25000baseKR_Full_BIT (line 3349) | ETHTOOL_LINK_MODE_25000baseKR_Full_BIT ... constant ETHTOOL_LINK_MODE_25000baseSR_Full_BIT (line 3350) | ETHTOOL_LINK_MODE_25000baseSR_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT (line 3351) | ETHTOOL_LINK_MODE_50000baseCR2_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT (line 3352) | ETHTOOL_LINK_MODE_50000baseKR2_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT (line 3353) | ETHTOOL_LINK_MODE_100000baseKR4_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT (line 3354) | ETHTOOL_LINK_MODE_100000baseSR4_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT (line 3355) | ETHTOOL_LINK_MODE_100000baseCR4_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT (line 3356) | ETHTOOL_LINK_MODE_100000baseLR4_ER4_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT (line 3357) | ETHTOOL_LINK_MODE_50000baseSR2_Full_BIT ... constant ETHTOOL_LINK_MODE_1000baseX_Full_BIT (line 3358) | ETHTOOL_LINK_MODE_1000baseX_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseCR_Full_BIT (line 3359) | ETHTOOL_LINK_MODE_10000baseCR_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseSR_Full_BIT (line 3360) | ETHTOOL_LINK_MODE_10000baseSR_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseLR_Full_BIT (line 3361) | ETHTOOL_LINK_MODE_10000baseLR_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT (line 3362) | ETHTOOL_LINK_MODE_10000baseLRM_Full_BIT ... constant ETHTOOL_LINK_MODE_10000baseER_Full_BIT (line 3363) | ETHTOOL_LINK_MODE_10000baseER_Full_BIT ... constant ETHTOOL_LINK_MODE_2500baseT_Full_BIT (line 3364) | ETHTOOL_LINK_MODE_2500baseT_Full_BIT ... constant ETHTOOL_LINK_MODE_5000baseT_Full_BIT (line 3365) | ETHTOOL_LINK_MODE_5000baseT_Full_BIT ... constant ETHTOOL_LINK_MODE_FEC_NONE_BIT (line 3366) | ETHTOOL_LINK_MODE_FEC_NONE_BIT ... constant ETHTOOL_LINK_MODE_FEC_RS_BIT (line 3367) | ETHTOOL_LINK_MODE_FEC_RS_BIT ... constant ETHTOOL_LINK_MODE_FEC_BASER_BIT (line 3368) | ETHTOOL_LINK_MODE_FEC_BASER_BIT ... constant ETHTOOL_LINK_MODE_50000baseKR_Full_BIT (line 3369) | ETHTOOL_LINK_MODE_50000baseKR_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseSR_Full_BIT (line 3370) | ETHTOOL_LINK_MODE_50000baseSR_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseCR_Full_BIT (line 3371) | ETHTOOL_LINK_MODE_50000baseCR_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT (line 3372) | ETHTOOL_LINK_MODE_50000baseLR_ER_FR_Full_BIT ... constant ETHTOOL_LINK_MODE_50000baseDR_Full_BIT (line 3373) | ETHTOOL_LINK_MODE_50000baseDR_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT (line 3374) | ETHTOOL_LINK_MODE_100000baseKR2_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT (line 3375) | ETHTOOL_LINK_MODE_100000baseSR2_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT (line 3376) | ETHTOOL_LINK_MODE_100000baseCR2_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT (line 3377) | ETHTOOL_LINK_MODE_100000baseLR2_ER2_FR2_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT (line 3378) | ETHTOOL_LINK_MODE_100000baseDR2_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT (line 3379) | ETHTOOL_LINK_MODE_200000baseKR4_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT (line 3380) | ETHTOOL_LINK_MODE_200000baseSR4_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT (line 3381) | ETHTOOL_LINK_MODE_200000baseLR4_ER4_FR4_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT (line 3382) | ETHTOOL_LINK_MODE_200000baseDR4_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT (line 3383) | ETHTOOL_LINK_MODE_200000baseCR4_Full_BIT ... constant ETHTOOL_LINK_MODE_100baseT1_Full_BIT (line 3384) | ETHTOOL_LINK_MODE_100baseT1_Full_BIT ... constant ETHTOOL_LINK_MODE_1000baseT1_Full_BIT (line 3385) | ETHTOOL_LINK_MODE_1000baseT1_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT (line 3386) | ETHTOOL_LINK_MODE_400000baseKR8_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT (line 3387) | ETHTOOL_LINK_MODE_400000baseSR8_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT (line 3388) | ETHTOOL_LINK_MODE_400000baseLR8_ER8_FR8_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT (line 3389) | ETHTOOL_LINK_MODE_400000baseDR8_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT (line 3390) | ETHTOOL_LINK_MODE_400000baseCR8_Full_BIT ... constant ETHTOOL_LINK_MODE_FEC_LLRS_BIT (line 3391) | ETHTOOL_LINK_MODE_FEC_LLRS_BIT ... constant ETHTOOL_LINK_MODE_100000baseKR_Full_BIT (line 3392) | ETHTOOL_LINK_MODE_100000baseKR_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseSR_Full_BIT (line 3393) | ETHTOOL_LINK_MODE_100000baseSR_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT (line 3394) | ETHTOOL_LINK_MODE_100000baseLR_ER_FR_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseCR_Full_BIT (line 3395) | ETHTOOL_LINK_MODE_100000baseCR_Full_BIT ... constant ETHTOOL_LINK_MODE_100000baseDR_Full_BIT (line 3396) | ETHTOOL_LINK_MODE_100000baseDR_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT (line 3397) | ETHTOOL_LINK_MODE_200000baseKR2_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT (line 3398) | ETHTOOL_LINK_MODE_200000baseSR2_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT (line 3399) | ETHTOOL_LINK_MODE_200000baseLR2_ER2_FR2_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT (line 3400) | ETHTOOL_LINK_MODE_200000baseDR2_Full_BIT ... constant ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT (line 3401) | ETHTOOL_LINK_MODE_200000baseCR2_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT (line 3402) | ETHTOOL_LINK_MODE_400000baseKR4_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT (line 3403) | ETHTOOL_LINK_MODE_400000baseSR4_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT (line 3404) | ETHTOOL_LINK_MODE_400000baseLR4_ER4_FR4_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT (line 3405) | ETHTOOL_LINK_MODE_400000baseDR4_Full_BIT ... constant ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT (line 3406) | ETHTOOL_LINK_MODE_400000baseCR4_Full_BIT ... constant ETHTOOL_LINK_MODE_100baseFX_Half_BIT (line 3407) | ETHTOOL_LINK_MODE_100baseFX_Half_BIT ... constant ETHTOOL_LINK_MODE_100baseFX_Full_BIT (line 3408) | ETHTOOL_LINK_MODE_100baseFX_Full_BIT ... constant ETHTOOL_MSG_USER_NONE (line 3410) | ETHTOOL_MSG_USER_NONE = 0x0 constant ETHTOOL_MSG_STRSET_GET (line 3411) | ETHTOOL_MSG_STRSET_GET = 0x1 constant ETHTOOL_MSG_LINKINFO_GET (line 3412) | ETHTOOL_MSG_LINKINFO_GET = 0x2 constant ETHTOOL_MSG_LINKINFO_SET (line 3413) | ETHTOOL_MSG_LINKINFO_SET = 0x3 constant ETHTOOL_MSG_LINKMODES_GET (line 3414) | ETHTOOL_MSG_LINKMODES_GET = 0x4 constant ETHTOOL_MSG_LINKMODES_SET (line 3415) | ETHTOOL_MSG_LINKMODES_SET = 0x5 constant ETHTOOL_MSG_LINKSTATE_GET (line 3416) | ETHTOOL_MSG_LINKSTATE_GET = 0x6 constant ETHTOOL_MSG_DEBUG_GET (line 3417) | ETHTOOL_MSG_DEBUG_GET = 0x7 constant ETHTOOL_MSG_DEBUG_SET (line 3418) | ETHTOOL_MSG_DEBUG_SET = 0x8 constant ETHTOOL_MSG_WOL_GET (line 3419) | ETHTOOL_MSG_WOL_GET = 0x9 constant ETHTOOL_MSG_WOL_SET (line 3420) | ETHTOOL_MSG_WOL_SET = 0xa constant ETHTOOL_MSG_FEATURES_GET (line 3421) | ETHTOOL_MSG_FEATURES_GET = 0xb constant ETHTOOL_MSG_FEATURES_SET (line 3422) | ETHTOOL_MSG_FEATURES_SET = 0xc constant ETHTOOL_MSG_PRIVFLAGS_GET (line 3423) | ETHTOOL_MSG_PRIVFLAGS_GET = 0xd constant ETHTOOL_MSG_PRIVFLAGS_SET (line 3424) | ETHTOOL_MSG_PRIVFLAGS_SET = 0xe constant ETHTOOL_MSG_RINGS_GET (line 3425) | ETHTOOL_MSG_RINGS_GET = 0xf constant ETHTOOL_MSG_RINGS_SET (line 3426) | ETHTOOL_MSG_RINGS_SET = 0x10 constant ETHTOOL_MSG_CHANNELS_GET (line 3427) | ETHTOOL_MSG_CHANNELS_GET = 0x11 constant ETHTOOL_MSG_CHANNELS_SET (line 3428) | ETHTOOL_MSG_CHANNELS_SET = 0x12 constant ETHTOOL_MSG_COALESCE_GET (line 3429) | ETHTOOL_MSG_COALESCE_GET = 0x13 constant ETHTOOL_MSG_COALESCE_SET (line 3430) | ETHTOOL_MSG_COALESCE_SET = 0x14 constant ETHTOOL_MSG_PAUSE_GET (line 3431) | ETHTOOL_MSG_PAUSE_GET = 0x15 constant ETHTOOL_MSG_PAUSE_SET (line 3432) | ETHTOOL_MSG_PAUSE_SET = 0x16 constant ETHTOOL_MSG_EEE_GET (line 3433) | ETHTOOL_MSG_EEE_GET = 0x17 constant ETHTOOL_MSG_EEE_SET (line 3434) | ETHTOOL_MSG_EEE_SET = 0x18 constant ETHTOOL_MSG_TSINFO_GET (line 3435) | ETHTOOL_MSG_TSINFO_GET = 0x19 constant ETHTOOL_MSG_CABLE_TEST_ACT (line 3436) | ETHTOOL_MSG_CABLE_TEST_ACT = 0x1a constant ETHTOOL_MSG_CABLE_TEST_TDR_ACT (line 3437) | ETHTOOL_MSG_CABLE_TEST_TDR_ACT = 0x1b constant ETHTOOL_MSG_TUNNEL_INFO_GET (line 3438) | ETHTOOL_MSG_TUNNEL_INFO_GET = 0x1c constant ETHTOOL_MSG_USER_MAX (line 3439) | ETHTOOL_MSG_USER_MAX = 0x1c constant ETHTOOL_MSG_KERNEL_NONE (line 3440) | ETHTOOL_MSG_KERNEL_NONE = 0x0 constant ETHTOOL_MSG_STRSET_GET_REPLY (line 3441) | ETHTOOL_MSG_STRSET_GET_REPLY = 0x1 constant ETHTOOL_MSG_LINKINFO_GET_REPLY (line 3442) | ETHTOOL_MSG_LINKINFO_GET_REPLY = 0x2 constant ETHTOOL_MSG_LINKINFO_NTF (line 3443) | ETHTOOL_MSG_LINKINFO_NTF = 0x3 constant ETHTOOL_MSG_LINKMODES_GET_REPLY (line 3444) | ETHTOOL_MSG_LINKMODES_GET_REPLY = 0x4 constant ETHTOOL_MSG_LINKMODES_NTF (line 3445) | ETHTOOL_MSG_LINKMODES_NTF = 0x5 constant ETHTOOL_MSG_LINKSTATE_GET_REPLY (line 3446) | ETHTOOL_MSG_LINKSTATE_GET_REPLY = 0x6 constant ETHTOOL_MSG_DEBUG_GET_REPLY (line 3447) | ETHTOOL_MSG_DEBUG_GET_REPLY = 0x7 constant ETHTOOL_MSG_DEBUG_NTF (line 3448) | ETHTOOL_MSG_DEBUG_NTF = 0x8 constant ETHTOOL_MSG_WOL_GET_REPLY (line 3449) | ETHTOOL_MSG_WOL_GET_REPLY = 0x9 constant ETHTOOL_MSG_WOL_NTF (line 3450) | ETHTOOL_MSG_WOL_NTF = 0xa constant ETHTOOL_MSG_FEATURES_GET_REPLY (line 3451) | ETHTOOL_MSG_FEATURES_GET_REPLY = 0xb constant ETHTOOL_MSG_FEATURES_SET_REPLY (line 3452) | ETHTOOL_MSG_FEATURES_SET_REPLY = 0xc constant ETHTOOL_MSG_FEATURES_NTF (line 3453) | ETHTOOL_MSG_FEATURES_NTF = 0xd constant ETHTOOL_MSG_PRIVFLAGS_GET_REPLY (line 3454) | ETHTOOL_MSG_PRIVFLAGS_GET_REPLY = 0xe constant ETHTOOL_MSG_PRIVFLAGS_NTF (line 3455) | ETHTOOL_MSG_PRIVFLAGS_NTF = 0xf constant ETHTOOL_MSG_RINGS_GET_REPLY (line 3456) | ETHTOOL_MSG_RINGS_GET_REPLY = 0x10 constant ETHTOOL_MSG_RINGS_NTF (line 3457) | ETHTOOL_MSG_RINGS_NTF = 0x11 constant ETHTOOL_MSG_CHANNELS_GET_REPLY (line 3458) | ETHTOOL_MSG_CHANNELS_GET_REPLY = 0x12 constant ETHTOOL_MSG_CHANNELS_NTF (line 3459) | ETHTOOL_MSG_CHANNELS_NTF = 0x13 constant ETHTOOL_MSG_COALESCE_GET_REPLY (line 3460) | ETHTOOL_MSG_COALESCE_GET_REPLY = 0x14 constant ETHTOOL_MSG_COALESCE_NTF (line 3461) | ETHTOOL_MSG_COALESCE_NTF = 0x15 constant ETHTOOL_MSG_PAUSE_GET_REPLY (line 3462) | ETHTOOL_MSG_PAUSE_GET_REPLY = 0x16 constant ETHTOOL_MSG_PAUSE_NTF (line 3463) | ETHTOOL_MSG_PAUSE_NTF = 0x17 constant ETHTOOL_MSG_EEE_GET_REPLY (line 3464) | ETHTOOL_MSG_EEE_GET_REPLY = 0x18 constant ETHTOOL_MSG_EEE_NTF (line 3465) | ETHTOOL_MSG_EEE_NTF = 0x19 constant ETHTOOL_MSG_TSINFO_GET_REPLY (line 3466) | ETHTOOL_MSG_TSINFO_GET_REPLY = 0x1a constant ETHTOOL_MSG_CABLE_TEST_NTF (line 3467) | ETHTOOL_MSG_CABLE_TEST_NTF = 0x1b constant ETHTOOL_MSG_CABLE_TEST_TDR_NTF (line 3468) | ETHTOOL_MSG_CABLE_TEST_TDR_NTF = 0x1c constant ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY (line 3469) | ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY = 0x1d constant ETHTOOL_MSG_KERNEL_MAX (line 3470) | ETHTOOL_MSG_KERNEL_MAX = 0x1d constant ETHTOOL_A_HEADER_UNSPEC (line 3471) | ETHTOOL_A_HEADER_UNSPEC = 0x0 constant ETHTOOL_A_HEADER_DEV_INDEX (line 3472) | ETHTOOL_A_HEADER_DEV_INDEX = 0x1 constant ETHTOOL_A_HEADER_DEV_NAME (line 3473) | ETHTOOL_A_HEADER_DEV_NAME = 0x2 constant ETHTOOL_A_HEADER_FLAGS (line 3474) | ETHTOOL_A_HEADER_FLAGS = 0x3 constant ETHTOOL_A_HEADER_MAX (line 3475) | ETHTOOL_A_HEADER_MAX = 0x3 constant ETHTOOL_A_BITSET_BIT_UNSPEC (line 3476) | ETHTOOL_A_BITSET_BIT_UNSPEC = 0x0 constant ETHTOOL_A_BITSET_BIT_INDEX (line 3477) | ETHTOOL_A_BITSET_BIT_INDEX = 0x1 constant ETHTOOL_A_BITSET_BIT_NAME (line 3478) | ETHTOOL_A_BITSET_BIT_NAME = 0x2 constant ETHTOOL_A_BITSET_BIT_VALUE (line 3479) | ETHTOOL_A_BITSET_BIT_VALUE = 0x3 constant ETHTOOL_A_BITSET_BIT_MAX (line 3480) | ETHTOOL_A_BITSET_BIT_MAX = 0x3 constant ETHTOOL_A_BITSET_BITS_UNSPEC (line 3481) | ETHTOOL_A_BITSET_BITS_UNSPEC = 0x0 constant ETHTOOL_A_BITSET_BITS_BIT (line 3482) | ETHTOOL_A_BITSET_BITS_BIT = 0x1 constant ETHTOOL_A_BITSET_BITS_MAX (line 3483) | ETHTOOL_A_BITSET_BITS_MAX = 0x1 constant ETHTOOL_A_BITSET_UNSPEC (line 3484) | ETHTOOL_A_BITSET_UNSPEC = 0x0 constant ETHTOOL_A_BITSET_NOMASK (line 3485) | ETHTOOL_A_BITSET_NOMASK = 0x1 constant ETHTOOL_A_BITSET_SIZE (line 3486) | ETHTOOL_A_BITSET_SIZE = 0x2 constant ETHTOOL_A_BITSET_BITS (line 3487) | ETHTOOL_A_BITSET_BITS = 0x3 constant ETHTOOL_A_BITSET_VALUE (line 3488) | ETHTOOL_A_BITSET_VALUE = 0x4 constant ETHTOOL_A_BITSET_MASK (line 3489) | ETHTOOL_A_BITSET_MASK = 0x5 constant ETHTOOL_A_BITSET_MAX (line 3490) | ETHTOOL_A_BITSET_MAX = 0x5 constant ETHTOOL_A_STRING_UNSPEC (line 3491) | ETHTOOL_A_STRING_UNSPEC = 0x0 constant ETHTOOL_A_STRING_INDEX (line 3492) | ETHTOOL_A_STRING_INDEX = 0x1 constant ETHTOOL_A_STRING_VALUE (line 3493) | ETHTOOL_A_STRING_VALUE = 0x2 constant ETHTOOL_A_STRING_MAX (line 3494) | ETHTOOL_A_STRING_MAX = 0x2 constant ETHTOOL_A_STRINGS_UNSPEC (line 3495) | ETHTOOL_A_STRINGS_UNSPEC = 0x0 constant ETHTOOL_A_STRINGS_STRING (line 3496) | ETHTOOL_A_STRINGS_STRING = 0x1 constant ETHTOOL_A_STRINGS_MAX (line 3497) | ETHTOOL_A_STRINGS_MAX = 0x1 constant ETHTOOL_A_STRINGSET_UNSPEC (line 3498) | ETHTOOL_A_STRINGSET_UNSPEC = 0x0 constant ETHTOOL_A_STRINGSET_ID (line 3499) | ETHTOOL_A_STRINGSET_ID = 0x1 constant ETHTOOL_A_STRINGSET_COUNT (line 3500) | ETHTOOL_A_STRINGSET_COUNT = 0x2 constant ETHTOOL_A_STRINGSET_STRINGS (line 3501) | ETHTOOL_A_STRINGSET_STRINGS = 0x3 constant ETHTOOL_A_STRINGSET_MAX (line 3502) | ETHTOOL_A_STRINGSET_MAX = 0x3 constant ETHTOOL_A_STRINGSETS_UNSPEC (line 3503) | ETHTOOL_A_STRINGSETS_UNSPEC = 0x0 constant ETHTOOL_A_STRINGSETS_STRINGSET (line 3504) | ETHTOOL_A_STRINGSETS_STRINGSET = 0x1 constant ETHTOOL_A_STRINGSETS_MAX (line 3505) | ETHTOOL_A_STRINGSETS_MAX = 0x1 constant ETHTOOL_A_STRSET_UNSPEC (line 3506) | ETHTOOL_A_STRSET_UNSPEC = 0x0 constant ETHTOOL_A_STRSET_HEADER (line 3507) | ETHTOOL_A_STRSET_HEADER = 0x1 constant ETHTOOL_A_STRSET_STRINGSETS (line 3508) | ETHTOOL_A_STRSET_STRINGSETS = 0x2 constant ETHTOOL_A_STRSET_COUNTS_ONLY (line 3509) | ETHTOOL_A_STRSET_COUNTS_ONLY = 0x3 constant ETHTOOL_A_STRSET_MAX (line 3510) | ETHTOOL_A_STRSET_MAX = 0x3 constant ETHTOOL_A_LINKINFO_UNSPEC (line 3511) | ETHTOOL_A_LINKINFO_UNSPEC = 0x0 constant ETHTOOL_A_LINKINFO_HEADER (line 3512) | ETHTOOL_A_LINKINFO_HEADER = 0x1 constant ETHTOOL_A_LINKINFO_PORT (line 3513) | ETHTOOL_A_LINKINFO_PORT = 0x2 constant ETHTOOL_A_LINKINFO_PHYADDR (line 3514) | ETHTOOL_A_LINKINFO_PHYADDR = 0x3 constant ETHTOOL_A_LINKINFO_TP_MDIX (line 3515) | ETHTOOL_A_LINKINFO_TP_MDIX = 0x4 constant ETHTOOL_A_LINKINFO_TP_MDIX_CTRL (line 3516) | ETHTOOL_A_LINKINFO_TP_MDIX_CTRL = 0x5 constant ETHTOOL_A_LINKINFO_TRANSCEIVER (line 3517) | ETHTOOL_A_LINKINFO_TRANSCEIVER = 0x6 constant ETHTOOL_A_LINKINFO_MAX (line 3518) | ETHTOOL_A_LINKINFO_MAX = 0x6 constant ETHTOOL_A_LINKMODES_UNSPEC (line 3519) | ETHTOOL_A_LINKMODES_UNSPEC = 0x0 constant ETHTOOL_A_LINKMODES_HEADER (line 3520) | ETHTOOL_A_LINKMODES_HEADER = 0x1 constant ETHTOOL_A_LINKMODES_AUTONEG (line 3521) | ETHTOOL_A_LINKMODES_AUTONEG = 0x2 constant ETHTOOL_A_LINKMODES_OURS (line 3522) | ETHTOOL_A_LINKMODES_OURS = 0x3 constant ETHTOOL_A_LINKMODES_PEER (line 3523) | ETHTOOL_A_LINKMODES_PEER = 0x4 constant ETHTOOL_A_LINKMODES_SPEED (line 3524) | ETHTOOL_A_LINKMODES_SPEED = 0x5 constant ETHTOOL_A_LINKMODES_DUPLEX (line 3525) | ETHTOOL_A_LINKMODES_DUPLEX = 0x6 constant ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG (line 3526) | ETHTOOL_A_LINKMODES_MASTER_SLAVE_CFG = 0x7 constant ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE (line 3527) | ETHTOOL_A_LINKMODES_MASTER_SLAVE_STATE = 0x8 constant ETHTOOL_A_LINKMODES_LANES (line 3528) | ETHTOOL_A_LINKMODES_LANES = 0x9 constant ETHTOOL_A_LINKMODES_MAX (line 3529) | ETHTOOL_A_LINKMODES_MAX = 0x9 constant ETHTOOL_A_LINKSTATE_UNSPEC (line 3530) | ETHTOOL_A_LINKSTATE_UNSPEC = 0x0 constant ETHTOOL_A_LINKSTATE_HEADER (line 3531) | ETHTOOL_A_LINKSTATE_HEADER = 0x1 constant ETHTOOL_A_LINKSTATE_LINK (line 3532) | ETHTOOL_A_LINKSTATE_LINK = 0x2 constant ETHTOOL_A_LINKSTATE_SQI (line 3533) | ETHTOOL_A_LINKSTATE_SQI = 0x3 constant ETHTOOL_A_LINKSTATE_SQI_MAX (line 3534) | ETHTOOL_A_LINKSTATE_SQI_MAX = 0x4 constant ETHTOOL_A_LINKSTATE_EXT_STATE (line 3535) | ETHTOOL_A_LINKSTATE_EXT_STATE = 0x5 constant ETHTOOL_A_LINKSTATE_EXT_SUBSTATE (line 3536) | ETHTOOL_A_LINKSTATE_EXT_SUBSTATE = 0x6 constant ETHTOOL_A_LINKSTATE_MAX (line 3537) | ETHTOOL_A_LINKSTATE_MAX = 0x6 constant ETHTOOL_A_DEBUG_UNSPEC (line 3538) | ETHTOOL_A_DEBUG_UNSPEC = 0x0 constant ETHTOOL_A_DEBUG_HEADER (line 3539) | ETHTOOL_A_DEBUG_HEADER = 0x1 constant ETHTOOL_A_DEBUG_MSGMASK (line 3540) | ETHTOOL_A_DEBUG_MSGMASK = 0x2 constant ETHTOOL_A_DEBUG_MAX (line 3541) | ETHTOOL_A_DEBUG_MAX = 0x2 constant ETHTOOL_A_WOL_UNSPEC (line 3542) | ETHTOOL_A_WOL_UNSPEC = 0x0 constant ETHTOOL_A_WOL_HEADER (line 3543) | ETHTOOL_A_WOL_HEADER = 0x1 constant ETHTOOL_A_WOL_MODES (line 3544) | ETHTOOL_A_WOL_MODES = 0x2 constant ETHTOOL_A_WOL_SOPASS (line 3545) | ETHTOOL_A_WOL_SOPASS = 0x3 constant ETHTOOL_A_WOL_MAX (line 3546) | ETHTOOL_A_WOL_MAX = 0x3 constant ETHTOOL_A_FEATURES_UNSPEC (line 3547) | ETHTOOL_A_FEATURES_UNSPEC = 0x0 constant ETHTOOL_A_FEATURES_HEADER (line 3548) | ETHTOOL_A_FEATURES_HEADER = 0x1 constant ETHTOOL_A_FEATURES_HW (line 3549) | ETHTOOL_A_FEATURES_HW = 0x2 constant ETHTOOL_A_FEATURES_WANTED (line 3550) | ETHTOOL_A_FEATURES_WANTED = 0x3 constant ETHTOOL_A_FEATURES_ACTIVE (line 3551) | ETHTOOL_A_FEATURES_ACTIVE = 0x4 constant ETHTOOL_A_FEATURES_NOCHANGE (line 3552) | ETHTOOL_A_FEATURES_NOCHANGE = 0x5 constant ETHTOOL_A_FEATURES_MAX (line 3553) | ETHTOOL_A_FEATURES_MAX = 0x5 constant ETHTOOL_A_PRIVFLAGS_UNSPEC (line 3554) | ETHTOOL_A_PRIVFLAGS_UNSPEC = 0x0 constant ETHTOOL_A_PRIVFLAGS_HEADER (line 3555) | ETHTOOL_A_PRIVFLAGS_HEADER = 0x1 constant ETHTOOL_A_PRIVFLAGS_FLAGS (line 3556) | ETHTOOL_A_PRIVFLAGS_FLAGS = 0x2 constant ETHTOOL_A_PRIVFLAGS_MAX (line 3557) | ETHTOOL_A_PRIVFLAGS_MAX = 0x2 constant ETHTOOL_A_RINGS_UNSPEC (line 3558) | ETHTOOL_A_RINGS_UNSPEC = 0x0 constant ETHTOOL_A_RINGS_HEADER (line 3559) | ETHTOOL_A_RINGS_HEADER = 0x1 constant ETHTOOL_A_RINGS_RX_MAX (line 3560) | ETHTOOL_A_RINGS_RX_MAX = 0x2 constant ETHTOOL_A_RINGS_RX_MINI_MAX (line 3561) | ETHTOOL_A_RINGS_RX_MINI_MAX = 0x3 constant ETHTOOL_A_RINGS_RX_JUMBO_MAX (line 3562) | ETHTOOL_A_RINGS_RX_JUMBO_MAX = 0x4 constant ETHTOOL_A_RINGS_TX_MAX (line 3563) | ETHTOOL_A_RINGS_TX_MAX = 0x5 constant ETHTOOL_A_RINGS_RX (line 3564) | ETHTOOL_A_RINGS_RX = 0x6 constant ETHTOOL_A_RINGS_RX_MINI (line 3565) | ETHTOOL_A_RINGS_RX_MINI = 0x7 constant ETHTOOL_A_RINGS_RX_JUMBO (line 3566) | ETHTOOL_A_RINGS_RX_JUMBO = 0x8 constant ETHTOOL_A_RINGS_TX (line 3567) | ETHTOOL_A_RINGS_TX = 0x9 constant ETHTOOL_A_RINGS_MAX (line 3568) | ETHTOOL_A_RINGS_MAX = 0x9 constant ETHTOOL_A_CHANNELS_UNSPEC (line 3569) | ETHTOOL_A_CHANNELS_UNSPEC = 0x0 constant ETHTOOL_A_CHANNELS_HEADER (line 3570) | ETHTOOL_A_CHANNELS_HEADER = 0x1 constant ETHTOOL_A_CHANNELS_RX_MAX (line 3571) | ETHTOOL_A_CHANNELS_RX_MAX = 0x2 constant ETHTOOL_A_CHANNELS_TX_MAX (line 3572) | ETHTOOL_A_CHANNELS_TX_MAX = 0x3 constant ETHTOOL_A_CHANNELS_OTHER_MAX (line 3573) | ETHTOOL_A_CHANNELS_OTHER_MAX = 0x4 constant ETHTOOL_A_CHANNELS_COMBINED_MAX (line 3574) | ETHTOOL_A_CHANNELS_COMBINED_MAX = 0x5 constant ETHTOOL_A_CHANNELS_RX_COUNT (line 3575) | ETHTOOL_A_CHANNELS_RX_COUNT = 0x6 constant ETHTOOL_A_CHANNELS_TX_COUNT (line 3576) | ETHTOOL_A_CHANNELS_TX_COUNT = 0x7 constant ETHTOOL_A_CHANNELS_OTHER_COUNT (line 3577) | ETHTOOL_A_CHANNELS_OTHER_COUNT = 0x8 constant ETHTOOL_A_CHANNELS_COMBINED_COUNT (line 3578) | ETHTOOL_A_CHANNELS_COMBINED_COUNT = 0x9 constant ETHTOOL_A_CHANNELS_MAX (line 3579) | ETHTOOL_A_CHANNELS_MAX = 0x9 constant ETHTOOL_A_COALESCE_UNSPEC (line 3580) | ETHTOOL_A_COALESCE_UNSPEC = 0x0 constant ETHTOOL_A_COALESCE_HEADER (line 3581) | ETHTOOL_A_COALESCE_HEADER = 0x1 constant ETHTOOL_A_COALESCE_RX_USECS (line 3582) | ETHTOOL_A_COALESCE_RX_USECS = 0x2 constant ETHTOOL_A_COALESCE_RX_MAX_FRAMES (line 3583) | ETHTOOL_A_COALESCE_RX_MAX_FRAMES = 0x3 constant ETHTOOL_A_COALESCE_RX_USECS_IRQ (line 3584) | ETHTOOL_A_COALESCE_RX_USECS_IRQ = 0x4 constant ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ (line 3585) | ETHTOOL_A_COALESCE_RX_MAX_FRAMES_IRQ = 0x5 constant ETHTOOL_A_COALESCE_TX_USECS (line 3586) | ETHTOOL_A_COALESCE_TX_USECS = 0x6 constant ETHTOOL_A_COALESCE_TX_MAX_FRAMES (line 3587) | ETHTOOL_A_COALESCE_TX_MAX_FRAMES = 0x7 constant ETHTOOL_A_COALESCE_TX_USECS_IRQ (line 3588) | ETHTOOL_A_COALESCE_TX_USECS_IRQ = 0x8 constant ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ (line 3589) | ETHTOOL_A_COALESCE_TX_MAX_FRAMES_IRQ = 0x9 constant ETHTOOL_A_COALESCE_STATS_BLOCK_USECS (line 3590) | ETHTOOL_A_COALESCE_STATS_BLOCK_USECS = 0xa constant ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX (line 3591) | ETHTOOL_A_COALESCE_USE_ADAPTIVE_RX = 0xb constant ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX (line 3592) | ETHTOOL_A_COALESCE_USE_ADAPTIVE_TX = 0xc constant ETHTOOL_A_COALESCE_PKT_RATE_LOW (line 3593) | ETHTOOL_A_COALESCE_PKT_RATE_LOW = 0xd constant ETHTOOL_A_COALESCE_RX_USECS_LOW (line 3594) | ETHTOOL_A_COALESCE_RX_USECS_LOW = 0xe constant ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW (line 3595) | ETHTOOL_A_COALESCE_RX_MAX_FRAMES_LOW = 0xf constant ETHTOOL_A_COALESCE_TX_USECS_LOW (line 3596) | ETHTOOL_A_COALESCE_TX_USECS_LOW = 0x10 constant ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW (line 3597) | ETHTOOL_A_COALESCE_TX_MAX_FRAMES_LOW = 0x11 constant ETHTOOL_A_COALESCE_PKT_RATE_HIGH (line 3598) | ETHTOOL_A_COALESCE_PKT_RATE_HIGH = 0x12 constant ETHTOOL_A_COALESCE_RX_USECS_HIGH (line 3599) | ETHTOOL_A_COALESCE_RX_USECS_HIGH = 0x13 constant ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH (line 3600) | ETHTOOL_A_COALESCE_RX_MAX_FRAMES_HIGH = 0x14 constant ETHTOOL_A_COALESCE_TX_USECS_HIGH (line 3601) | ETHTOOL_A_COALESCE_TX_USECS_HIGH = 0x15 constant ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH (line 3602) | ETHTOOL_A_COALESCE_TX_MAX_FRAMES_HIGH = 0x16 constant ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL (line 3603) | ETHTOOL_A_COALESCE_RATE_SAMPLE_INTERVAL = 0x17 constant ETHTOOL_A_COALESCE_MAX (line 3604) | ETHTOOL_A_COALESCE_MAX = 0x17 constant ETHTOOL_A_PAUSE_UNSPEC (line 3605) | ETHTOOL_A_PAUSE_UNSPEC = 0x0 constant ETHTOOL_A_PAUSE_HEADER (line 3606) | ETHTOOL_A_PAUSE_HEADER = 0x1 constant ETHTOOL_A_PAUSE_AUTONEG (line 3607) | ETHTOOL_A_PAUSE_AUTONEG = 0x2 constant ETHTOOL_A_PAUSE_RX (line 3608) | ETHTOOL_A_PAUSE_RX = 0x3 constant ETHTOOL_A_PAUSE_TX (line 3609) | ETHTOOL_A_PAUSE_TX = 0x4 constant ETHTOOL_A_PAUSE_STATS (line 3610) | ETHTOOL_A_PAUSE_STATS = 0x5 constant ETHTOOL_A_PAUSE_MAX (line 3611) | ETHTOOL_A_PAUSE_MAX = 0x5 constant ETHTOOL_A_PAUSE_STAT_UNSPEC (line 3612) | ETHTOOL_A_PAUSE_STAT_UNSPEC = 0x0 constant ETHTOOL_A_PAUSE_STAT_PAD (line 3613) | ETHTOOL_A_PAUSE_STAT_PAD = 0x1 constant ETHTOOL_A_PAUSE_STAT_TX_FRAMES (line 3614) | ETHTOOL_A_PAUSE_STAT_TX_FRAMES = 0x2 constant ETHTOOL_A_PAUSE_STAT_RX_FRAMES (line 3615) | ETHTOOL_A_PAUSE_STAT_RX_FRAMES = 0x3 constant ETHTOOL_A_PAUSE_STAT_MAX (line 3616) | ETHTOOL_A_PAUSE_STAT_MAX = 0x3 constant ETHTOOL_A_EEE_UNSPEC (line 3617) | ETHTOOL_A_EEE_UNSPEC = 0x0 constant ETHTOOL_A_EEE_HEADER (line 3618) | ETHTOOL_A_EEE_HEADER = 0x1 constant ETHTOOL_A_EEE_MODES_OURS (line 3619) | ETHTOOL_A_EEE_MODES_OURS = 0x2 constant ETHTOOL_A_EEE_MODES_PEER (line 3620) | ETHTOOL_A_EEE_MODES_PEER = 0x3 constant ETHTOOL_A_EEE_ACTIVE (line 3621) | ETHTOOL_A_EEE_ACTIVE = 0x4 constant ETHTOOL_A_EEE_ENABLED (line 3622) | ETHTOOL_A_EEE_ENABLED = 0x5 constant ETHTOOL_A_EEE_TX_LPI_ENABLED (line 3623) | ETHTOOL_A_EEE_TX_LPI_ENABLED = 0x6 constant ETHTOOL_A_EEE_TX_LPI_TIMER (line 3624) | ETHTOOL_A_EEE_TX_LPI_TIMER = 0x7 constant ETHTOOL_A_EEE_MAX (line 3625) | ETHTOOL_A_EEE_MAX = 0x7 constant ETHTOOL_A_TSINFO_UNSPEC (line 3626) | ETHTOOL_A_TSINFO_UNSPEC = 0x0 constant ETHTOOL_A_TSINFO_HEADER (line 3627) | ETHTOOL_A_TSINFO_HEADER = 0x1 constant ETHTOOL_A_TSINFO_TIMESTAMPING (line 3628) | ETHTOOL_A_TSINFO_TIMESTAMPING = 0x2 constant ETHTOOL_A_TSINFO_TX_TYPES (line 3629) | ETHTOOL_A_TSINFO_TX_TYPES = 0x3 constant ETHTOOL_A_TSINFO_RX_FILTERS (line 3630) | ETHTOOL_A_TSINFO_RX_FILTERS = 0x4 constant ETHTOOL_A_TSINFO_PHC_INDEX (line 3631) | ETHTOOL_A_TSINFO_PHC_INDEX = 0x5 constant ETHTOOL_A_TSINFO_MAX (line 3632) | ETHTOOL_A_TSINFO_MAX = 0x5 constant ETHTOOL_A_CABLE_TEST_UNSPEC (line 3633) | ETHTOOL_A_CABLE_TEST_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TEST_HEADER (line 3634) | ETHTOOL_A_CABLE_TEST_HEADER = 0x1 constant ETHTOOL_A_CABLE_TEST_MAX (line 3635) | ETHTOOL_A_CABLE_TEST_MAX = 0x1 constant ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC (line 3636) | ETHTOOL_A_CABLE_RESULT_CODE_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_RESULT_CODE_OK (line 3637) | ETHTOOL_A_CABLE_RESULT_CODE_OK = 0x1 constant ETHTOOL_A_CABLE_RESULT_CODE_OPEN (line 3638) | ETHTOOL_A_CABLE_RESULT_CODE_OPEN = 0x2 constant ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT (line 3639) | ETHTOOL_A_CABLE_RESULT_CODE_SAME_SHORT = 0x3 constant ETHTOOL_A_CABLE_RESULT_CODE_CROSS_SHORT (line 3640) | ETHTOOL_A_CABLE_RESULT_CODE_CROSS_SHORT = 0x4 constant ETHTOOL_A_CABLE_PAIR_A (line 3641) | ETHTOOL_A_CABLE_PAIR_A = 0x0 constant ETHTOOL_A_CABLE_PAIR_B (line 3642) | ETHTOOL_A_CABLE_PAIR_B = 0x1 constant ETHTOOL_A_CABLE_PAIR_C (line 3643) | ETHTOOL_A_CABLE_PAIR_C = 0x2 constant ETHTOOL_A_CABLE_PAIR_D (line 3644) | ETHTOOL_A_CABLE_PAIR_D = 0x3 constant ETHTOOL_A_CABLE_RESULT_UNSPEC (line 3645) | ETHTOOL_A_CABLE_RESULT_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_RESULT_PAIR (line 3646) | ETHTOOL_A_CABLE_RESULT_PAIR = 0x1 constant ETHTOOL_A_CABLE_RESULT_CODE (line 3647) | ETHTOOL_A_CABLE_RESULT_CODE = 0x2 constant ETHTOOL_A_CABLE_RESULT_MAX (line 3648) | ETHTOOL_A_CABLE_RESULT_MAX = 0x2 constant ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC (line 3649) | ETHTOOL_A_CABLE_FAULT_LENGTH_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR (line 3650) | ETHTOOL_A_CABLE_FAULT_LENGTH_PAIR = 0x1 constant ETHTOOL_A_CABLE_FAULT_LENGTH_CM (line 3651) | ETHTOOL_A_CABLE_FAULT_LENGTH_CM = 0x2 constant ETHTOOL_A_CABLE_FAULT_LENGTH_MAX (line 3652) | ETHTOOL_A_CABLE_FAULT_LENGTH_MAX = 0x2 constant ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC (line 3653) | ETHTOOL_A_CABLE_TEST_NTF_STATUS_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED (line 3654) | ETHTOOL_A_CABLE_TEST_NTF_STATUS_STARTED = 0x1 constant ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED (line 3655) | ETHTOOL_A_CABLE_TEST_NTF_STATUS_COMPLETED = 0x2 constant ETHTOOL_A_CABLE_NEST_UNSPEC (line 3656) | ETHTOOL_A_CABLE_NEST_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_NEST_RESULT (line 3657) | ETHTOOL_A_CABLE_NEST_RESULT = 0x1 constant ETHTOOL_A_CABLE_NEST_FAULT_LENGTH (line 3658) | ETHTOOL_A_CABLE_NEST_FAULT_LENGTH = 0x2 constant ETHTOOL_A_CABLE_NEST_MAX (line 3659) | ETHTOOL_A_CABLE_NEST_MAX = 0x2 constant ETHTOOL_A_CABLE_TEST_NTF_UNSPEC (line 3660) | ETHTOOL_A_CABLE_TEST_NTF_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TEST_NTF_HEADER (line 3661) | ETHTOOL_A_CABLE_TEST_NTF_HEADER = 0x1 constant ETHTOOL_A_CABLE_TEST_NTF_STATUS (line 3662) | ETHTOOL_A_CABLE_TEST_NTF_STATUS = 0x2 constant ETHTOOL_A_CABLE_TEST_NTF_NEST (line 3663) | ETHTOOL_A_CABLE_TEST_NTF_NEST = 0x3 constant ETHTOOL_A_CABLE_TEST_NTF_MAX (line 3664) | ETHTOOL_A_CABLE_TEST_NTF_MAX = 0x3 constant ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC (line 3665) | ETHTOOL_A_CABLE_TEST_TDR_CFG_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST (line 3666) | ETHTOOL_A_CABLE_TEST_TDR_CFG_FIRST = 0x1 constant ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST (line 3667) | ETHTOOL_A_CABLE_TEST_TDR_CFG_LAST = 0x2 constant ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP (line 3668) | ETHTOOL_A_CABLE_TEST_TDR_CFG_STEP = 0x3 constant ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR (line 3669) | ETHTOOL_A_CABLE_TEST_TDR_CFG_PAIR = 0x4 constant ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX (line 3670) | ETHTOOL_A_CABLE_TEST_TDR_CFG_MAX = 0x4 constant ETHTOOL_A_CABLE_TEST_TDR_UNSPEC (line 3671) | ETHTOOL_A_CABLE_TEST_TDR_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TEST_TDR_HEADER (line 3672) | ETHTOOL_A_CABLE_TEST_TDR_HEADER = 0x1 constant ETHTOOL_A_CABLE_TEST_TDR_CFG (line 3673) | ETHTOOL_A_CABLE_TEST_TDR_CFG = 0x2 constant ETHTOOL_A_CABLE_TEST_TDR_MAX (line 3674) | ETHTOOL_A_CABLE_TEST_TDR_MAX = 0x2 constant ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC (line 3675) | ETHTOOL_A_CABLE_AMPLITUDE_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_AMPLITUDE_PAIR (line 3676) | ETHTOOL_A_CABLE_AMPLITUDE_PAIR = 0x1 constant ETHTOOL_A_CABLE_AMPLITUDE_mV (line 3677) | ETHTOOL_A_CABLE_AMPLITUDE_mV = 0x2 constant ETHTOOL_A_CABLE_AMPLITUDE_MAX (line 3678) | ETHTOOL_A_CABLE_AMPLITUDE_MAX = 0x2 constant ETHTOOL_A_CABLE_PULSE_UNSPEC (line 3679) | ETHTOOL_A_CABLE_PULSE_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_PULSE_mV (line 3680) | ETHTOOL_A_CABLE_PULSE_mV = 0x1 constant ETHTOOL_A_CABLE_PULSE_MAX (line 3681) | ETHTOOL_A_CABLE_PULSE_MAX = 0x1 constant ETHTOOL_A_CABLE_STEP_UNSPEC (line 3682) | ETHTOOL_A_CABLE_STEP_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE (line 3683) | ETHTOOL_A_CABLE_STEP_FIRST_DISTANCE = 0x1 constant ETHTOOL_A_CABLE_STEP_LAST_DISTANCE (line 3684) | ETHTOOL_A_CABLE_STEP_LAST_DISTANCE = 0x2 constant ETHTOOL_A_CABLE_STEP_STEP_DISTANCE (line 3685) | ETHTOOL_A_CABLE_STEP_STEP_DISTANCE = 0x3 constant ETHTOOL_A_CABLE_STEP_MAX (line 3686) | ETHTOOL_A_CABLE_STEP_MAX = 0x3 constant ETHTOOL_A_CABLE_TDR_NEST_UNSPEC (line 3687) | ETHTOOL_A_CABLE_TDR_NEST_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TDR_NEST_STEP (line 3688) | ETHTOOL_A_CABLE_TDR_NEST_STEP = 0x1 constant ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE (line 3689) | ETHTOOL_A_CABLE_TDR_NEST_AMPLITUDE = 0x2 constant ETHTOOL_A_CABLE_TDR_NEST_PULSE (line 3690) | ETHTOOL_A_CABLE_TDR_NEST_PULSE = 0x3 constant ETHTOOL_A_CABLE_TDR_NEST_MAX (line 3691) | ETHTOOL_A_CABLE_TDR_NEST_MAX = 0x3 constant ETHTOOL_A_CABLE_TEST_TDR_NTF_UNSPEC (line 3692) | ETHTOOL_A_CABLE_TEST_TDR_NTF_UNSPEC = 0x0 constant ETHTOOL_A_CABLE_TEST_TDR_NTF_HEADER (line 3693) | ETHTOOL_A_CABLE_TEST_TDR_NTF_HEADER = 0x1 constant ETHTOOL_A_CABLE_TEST_TDR_NTF_STATUS (line 3694) | ETHTOOL_A_CABLE_TEST_TDR_NTF_STATUS = 0x2 constant ETHTOOL_A_CABLE_TEST_TDR_NTF_NEST (line 3695) | ETHTOOL_A_CABLE_TEST_TDR_NTF_NEST = 0x3 constant ETHTOOL_A_CABLE_TEST_TDR_NTF_MAX (line 3696) | ETHTOOL_A_CABLE_TEST_TDR_NTF_MAX = 0x3 constant ETHTOOL_UDP_TUNNEL_TYPE_VXLAN (line 3697) | ETHTOOL_UDP_TUNNEL_TYPE_VXLAN = 0x0 constant ETHTOOL_UDP_TUNNEL_TYPE_GENEVE (line 3698) | ETHTOOL_UDP_TUNNEL_TYPE_GENEVE = 0x1 constant ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE (line 3699) | ETHTOOL_UDP_TUNNEL_TYPE_VXLAN_GPE = 0x2 constant ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC (line 3700) | ETHTOOL_A_TUNNEL_UDP_ENTRY_UNSPEC = 0x0 constant ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT (line 3701) | ETHTOOL_A_TUNNEL_UDP_ENTRY_PORT = 0x1 constant ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE (line 3702) | ETHTOOL_A_TUNNEL_UDP_ENTRY_TYPE = 0x2 constant ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX (line 3703) | ETHTOOL_A_TUNNEL_UDP_ENTRY_MAX = 0x2 constant ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC (line 3704) | ETHTOOL_A_TUNNEL_UDP_TABLE_UNSPEC = 0x0 constant ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE (line 3705) | ETHTOOL_A_TUNNEL_UDP_TABLE_SIZE = 0x1 constant ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES (line 3706) | ETHTOOL_A_TUNNEL_UDP_TABLE_TYPES = 0x2 constant ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY (line 3707) | ETHTOOL_A_TUNNEL_UDP_TABLE_ENTRY = 0x3 constant ETHTOOL_A_TUNNEL_UDP_TABLE_MAX (line 3708) | ETHTOOL_A_TUNNEL_UDP_TABLE_MAX = 0x3 constant ETHTOOL_A_TUNNEL_UDP_UNSPEC (line 3709) | ETHTOOL_A_TUNNEL_UDP_UNSPEC = 0x0 constant ETHTOOL_A_TUNNEL_UDP_TABLE (line 3710) | ETHTOOL_A_TUNNEL_UDP_TABLE = 0x1 constant ETHTOOL_A_TUNNEL_UDP_MAX (line 3711) | ETHTOOL_A_TUNNEL_UDP_MAX = 0x1 constant ETHTOOL_A_TUNNEL_INFO_UNSPEC (line 3712) | ETHTOOL_A_TUNNEL_INFO_UNSPEC = 0x0 constant ETHTOOL_A_TUNNEL_INFO_HEADER (line 3713) | ETHTOOL_A_TUNNEL_INFO_HEADER = 0x1 constant ETHTOOL_A_TUNNEL_INFO_UDP_PORTS (line 3714) | ETHTOOL_A_TUNNEL_INFO_UDP_PORTS = 0x2 constant ETHTOOL_A_TUNNEL_INFO_MAX (line 3715) | ETHTOOL_A_TUNNEL_INFO_MAX = 0x2 type EthtoolDrvinfo (line 3718) | type EthtoolDrvinfo struct type HIDRawReportDescriptor (line 3734) | type HIDRawReportDescriptor struct type HIDRawDevInfo (line 3738) | type HIDRawDevInfo struct constant CLOSE_RANGE_UNSHARE (line 3746) | CLOSE_RANGE_UNSHARE = 0x2 constant CLOSE_RANGE_CLOEXEC (line 3747) | CLOSE_RANGE_CLOEXEC = 0x4 constant NLMSGERR_ATTR_MSG (line 3751) | NLMSGERR_ATTR_MSG = 0x1 constant NLMSGERR_ATTR_OFFS (line 3752) | NLMSGERR_ATTR_OFFS = 0x2 constant NLMSGERR_ATTR_COOKIE (line 3753) | NLMSGERR_ATTR_COOKIE = 0x3 type EraseInfo (line 3757) | type EraseInfo struct type EraseInfo64 (line 3761) | type EraseInfo64 struct type MtdOobBuf (line 3765) | type MtdOobBuf struct type MtdOobBuf64 (line 3770) | type MtdOobBuf64 struct type MtdWriteReq (line 3776) | type MtdWriteReq struct type MtdInfo (line 3785) | type MtdInfo struct type RegionInfo (line 3794) | type RegionInfo struct type OtpInfo (line 3800) | type OtpInfo struct type NandOobinfo (line 3805) | type NandOobinfo struct type NandOobfree (line 3811) | type NandOobfree struct type NandEcclayout (line 3815) | type NandEcclayout struct type MtdEccStats (line 3821) | type MtdEccStats struct constant MTD_OPS_PLACE_OOB (line 3830) | MTD_OPS_PLACE_OOB = 0x0 constant MTD_OPS_AUTO_OOB (line 3831) | MTD_OPS_AUTO_OOB = 0x1 constant MTD_OPS_RAW (line 3832) | MTD_OPS_RAW = 0x2 constant MTD_FILE_MODE_NORMAL (line 3836) | MTD_FILE_MODE_NORMAL = 0x0 constant MTD_FILE_MODE_OTP_FACTORY (line 3837) | MTD_FILE_MODE_OTP_FACTORY = 0x1 constant MTD_FILE_MODE_OTP_USER (line 3838) | MTD_FILE_MODE_OTP_USER = 0x2 constant MTD_FILE_MODE_RAW (line 3839) | MTD_FILE_MODE_RAW = 0x3 constant NFC_CMD_UNSPEC (line 3843) | NFC_CMD_UNSPEC = 0x0 constant NFC_CMD_GET_DEVICE (line 3844) | NFC_CMD_GET_DEVICE = 0x1 constant NFC_CMD_DEV_UP (line 3845) | NFC_CMD_DEV_UP = 0x2 constant NFC_CMD_DEV_DOWN (line 3846) | NFC_CMD_DEV_DOWN = 0x3 constant NFC_CMD_DEP_LINK_UP (line 3847) | NFC_CMD_DEP_LINK_UP = 0x4 constant NFC_CMD_DEP_LINK_DOWN (line 3848) | NFC_CMD_DEP_LINK_DOWN = 0x5 constant NFC_CMD_START_POLL (line 3849) | NFC_CMD_START_POLL = 0x6 constant NFC_CMD_STOP_POLL (line 3850) | NFC_CMD_STOP_POLL = 0x7 constant NFC_CMD_GET_TARGET (line 3851) | NFC_CMD_GET_TARGET = 0x8 constant NFC_EVENT_TARGETS_FOUND (line 3852) | NFC_EVENT_TARGETS_FOUND = 0x9 constant NFC_EVENT_DEVICE_ADDED (line 3853) | NFC_EVENT_DEVICE_ADDED = 0xa constant NFC_EVENT_DEVICE_REMOVED (line 3854) | NFC_EVENT_DEVICE_REMOVED = 0xb constant NFC_EVENT_TARGET_LOST (line 3855) | NFC_EVENT_TARGET_LOST = 0xc constant NFC_EVENT_TM_ACTIVATED (line 3856) | NFC_EVENT_TM_ACTIVATED = 0xd constant NFC_EVENT_TM_DEACTIVATED (line 3857) | NFC_EVENT_TM_DEACTIVATED = 0xe constant NFC_CMD_LLC_GET_PARAMS (line 3858) | NFC_CMD_LLC_GET_PARAMS = 0xf constant NFC_CMD_LLC_SET_PARAMS (line 3859) | NFC_CMD_LLC_SET_PARAMS = 0x10 constant NFC_CMD_ENABLE_SE (line 3860) | NFC_CMD_ENABLE_SE = 0x11 constant NFC_CMD_DISABLE_SE (line 3861) | NFC_CMD_DISABLE_SE = 0x12 constant NFC_CMD_LLC_SDREQ (line 3862) | NFC_CMD_LLC_SDREQ = 0x13 constant NFC_EVENT_LLC_SDRES (line 3863) | NFC_EVENT_LLC_SDRES = 0x14 constant NFC_CMD_FW_DOWNLOAD (line 3864) | NFC_CMD_FW_DOWNLOAD = 0x15 constant NFC_EVENT_SE_ADDED (line 3865) | NFC_EVENT_SE_ADDED = 0x16 constant NFC_EVENT_SE_REMOVED (line 3866) | NFC_EVENT_SE_REMOVED = 0x17 constant NFC_EVENT_SE_CONNECTIVITY (line 3867) | NFC_EVENT_SE_CONNECTIVITY = 0x18 constant NFC_EVENT_SE_TRANSACTION (line 3868) | NFC_EVENT_SE_TRANSACTION = 0x19 constant NFC_CMD_GET_SE (line 3869) | NFC_CMD_GET_SE = 0x1a constant NFC_CMD_SE_IO (line 3870) | NFC_CMD_SE_IO = 0x1b constant NFC_CMD_ACTIVATE_TARGET (line 3871) | NFC_CMD_ACTIVATE_TARGET = 0x1c constant NFC_CMD_VENDOR (line 3872) | NFC_CMD_VENDOR = 0x1d constant NFC_CMD_DEACTIVATE_TARGET (line 3873) | NFC_CMD_DEACTIVATE_TARGET = 0x1e constant NFC_ATTR_UNSPEC (line 3874) | NFC_ATTR_UNSPEC = 0x0 constant NFC_ATTR_DEVICE_INDEX (line 3875) | NFC_ATTR_DEVICE_INDEX = 0x1 constant NFC_ATTR_DEVICE_NAME (line 3876) | NFC_ATTR_DEVICE_NAME = 0x2 constant NFC_ATTR_PROTOCOLS (line 3877) | NFC_ATTR_PROTOCOLS = 0x3 constant NFC_ATTR_TARGET_INDEX (line 3878) | NFC_ATTR_TARGET_INDEX = 0x4 constant NFC_ATTR_TARGET_SENS_RES (line 3879) | NFC_ATTR_TARGET_SENS_RES = 0x5 constant NFC_ATTR_TARGET_SEL_RES (line 3880) | NFC_ATTR_TARGET_SEL_RES = 0x6 constant NFC_ATTR_TARGET_NFCID1 (line 3881) | NFC_ATTR_TARGET_NFCID1 = 0x7 constant NFC_ATTR_TARGET_SENSB_RES (line 3882) | NFC_ATTR_TARGET_SENSB_RES = 0x8 constant NFC_ATTR_TARGET_SENSF_RES (line 3883) | NFC_ATTR_TARGET_SENSF_RES = 0x9 constant NFC_ATTR_COMM_MODE (line 3884) | NFC_ATTR_COMM_MODE = 0xa constant NFC_ATTR_RF_MODE (line 3885) | NFC_ATTR_RF_MODE = 0xb constant NFC_ATTR_DEVICE_POWERED (line 3886) | NFC_ATTR_DEVICE_POWERED = 0xc constant NFC_ATTR_IM_PROTOCOLS (line 3887) | NFC_ATTR_IM_PROTOCOLS = 0xd constant NFC_ATTR_TM_PROTOCOLS (line 3888) | NFC_ATTR_TM_PROTOCOLS = 0xe constant NFC_ATTR_LLC_PARAM_LTO (line 3889) | NFC_ATTR_LLC_PARAM_LTO = 0xf constant NFC_ATTR_LLC_PARAM_RW (line 3890) | NFC_ATTR_LLC_PARAM_RW = 0x10 constant NFC_ATTR_LLC_PARAM_MIUX (line 3891) | NFC_ATTR_LLC_PARAM_MIUX = 0x11 constant NFC_ATTR_SE (line 3892) | NFC_ATTR_SE = 0x12 constant NFC_ATTR_LLC_SDP (line 3893) | NFC_ATTR_LLC_SDP = 0x13 constant NFC_ATTR_FIRMWARE_NAME (line 3894) | NFC_ATTR_FIRMWARE_NAME = 0x14 constant NFC_ATTR_SE_INDEX (line 3895) | NFC_ATTR_SE_INDEX = 0x15 constant NFC_ATTR_SE_TYPE (line 3896) | NFC_ATTR_SE_TYPE = 0x16 constant NFC_ATTR_SE_AID (line 3897) | NFC_ATTR_SE_AID = 0x17 constant NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS (line 3898) | NFC_ATTR_FIRMWARE_DOWNLOAD_STATUS = 0x18 constant NFC_ATTR_SE_APDU (line 3899) | NFC_ATTR_SE_APDU = 0x19 constant NFC_ATTR_TARGET_ISO15693_DSFID (line 3900) | NFC_ATTR_TARGET_ISO15693_DSFID = 0x1a constant NFC_ATTR_TARGET_ISO15693_UID (line 3901) | NFC_ATTR_TARGET_ISO15693_UID = 0x1b constant NFC_ATTR_SE_PARAMS (line 3902) | NFC_ATTR_SE_PARAMS = 0x1c constant NFC_ATTR_VENDOR_ID (line 3903) | NFC_ATTR_VENDOR_ID = 0x1d constant NFC_ATTR_VENDOR_SUBCMD (line 3904) | NFC_ATTR_VENDOR_SUBCMD = 0x1e constant NFC_ATTR_VENDOR_DATA (line 3905) | NFC_ATTR_VENDOR_DATA = 0x1f constant NFC_SDP_ATTR_UNSPEC (line 3906) | NFC_SDP_ATTR_UNSPEC = 0x0 constant NFC_SDP_ATTR_URI (line 3907) | NFC_SDP_ATTR_URI = 0x1 constant NFC_SDP_ATTR_SAP (line 3908) | NFC_SDP_ATTR_SAP = 0x2 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_386.go constant SizeofPtr (line 10) | SizeofPtr = 0x4 constant SizeofLong (line 11) | SizeofLong = 0x4 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 104) | type Dirent struct type Flock_t (line 113) | type Flock_t struct type DmNameList (line 121) | type DmNameList struct constant FADV_DONTNEED (line 127) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 128) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 131) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 142) | type RawSockaddr struct type RawSockaddrAny (line 147) | type RawSockaddrAny struct type Iovec (line 152) | type Iovec struct type Msghdr (line 157) | type Msghdr struct type Cmsghdr (line 167) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 174) | SizeofSockaddrNFCLLCP = 0x58 constant SizeofIovec (line 175) | SizeofIovec = 0x8 constant SizeofMsghdr (line 176) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 177) | SizeofCmsghdr = 0xc constant SizeofSockFprog (line 181) | SizeofSockFprog = 0x8 type PtraceRegs (line 184) | type PtraceRegs struct type FdSet (line 204) | type FdSet struct type Sysinfo_t (line 208) | type Sysinfo_t struct type Ustat_t (line 225) | type Ustat_t struct type EpollEvent (line 232) | type EpollEvent struct constant POLLRDHUP (line 239) | POLLRDHUP = 0x2000 type Sigset_t (line 242) | type Sigset_t struct constant _C__NSIG (line 246) | _C__NSIG = 0x41 type Termios (line 248) | type Termios struct type Taskstats (line 259) | type Taskstats struct type cpuMask (line 311) | type cpuMask constant _NCPUBITS (line 314) | _NCPUBITS = 0x20 constant CBitFieldMaskBit0 (line 318) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 319) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 320) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 321) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 322) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 323) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 324) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 325) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 326) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 327) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 328) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 329) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 330) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 331) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 332) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 333) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 334) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 335) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 336) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 337) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 338) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 339) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 340) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 341) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 342) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 343) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 344) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 345) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 346) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 347) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 348) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 349) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 350) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 351) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 352) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 353) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 354) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 355) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 356) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 357) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 358) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 359) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 360) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 361) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 362) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 363) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 364) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 365) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 366) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 367) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 368) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 369) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 370) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 371) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 372) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 373) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 374) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 375) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 376) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 377) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 378) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 379) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 380) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 381) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 384) | type SockaddrStorage struct type HDGeometry (line 390) | type HDGeometry struct type Statfs_t (line 397) | type Statfs_t struct type TpacketHdr (line 412) | type TpacketHdr struct constant SizeofTpacketHdr (line 423) | SizeofTpacketHdr = 0x18 type RTCPLLInfo (line 426) | type RTCPLLInfo struct type BlkpgPartition (line 436) | type BlkpgPartition struct constant BLKPG (line 445) | BLKPG = 0x1269 type XDPUmemReg (line 448) | type XDPUmemReg struct type CryptoUserAlg (line 456) | type CryptoUserAlg struct type CryptoStatAEAD (line 466) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 475) | type CryptoStatAKCipher struct type CryptoStatCipher (line 486) | type CryptoStatCipher struct type CryptoStatCompress (line 495) | type CryptoStatCompress struct type CryptoStatHash (line 504) | type CryptoStatHash struct type CryptoStatKPP (line 511) | type CryptoStatKPP struct type CryptoStatRNG (line 519) | type CryptoStatRNG struct type CryptoStatLarval (line 527) | type CryptoStatLarval struct type CryptoReportLarval (line 531) | type CryptoReportLarval struct type CryptoReportHash (line 535) | type CryptoReportHash struct type CryptoReportCipher (line 541) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 548) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 557) | type CryptoReportAEAD struct type CryptoReportComp (line 565) | type CryptoReportComp struct type CryptoReportRNG (line 569) | type CryptoReportRNG struct type CryptoReportAKCipher (line 574) | type CryptoReportAKCipher struct type CryptoReportKPP (line 578) | type CryptoReportKPP struct type CryptoReportAcomp (line 582) | type CryptoReportAcomp struct type LoopInfo (line 586) | type LoopInfo struct type TIPCSubscr (line 601) | type TIPCSubscr struct type TIPCSIOCLNReq (line 608) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 614) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 619) | type PPSKInfo struct constant PPS_GETPARAMS (line 628) | PPS_GETPARAMS = 0x800470a1 constant PPS_SETPARAMS (line 629) | PPS_SETPARAMS = 0x400470a2 constant PPS_GETCAP (line 630) | PPS_GETCAP = 0x800470a3 constant PPS_FETCH (line 631) | PPS_FETCH = 0xc00470a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 103) | type Dirent struct type Flock_t (line 112) | type Flock_t struct type DmNameList (line 121) | type DmNameList struct constant FADV_DONTNEED (line 129) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 130) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 133) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 144) | type RawSockaddr struct type RawSockaddrAny (line 149) | type RawSockaddrAny struct type Iovec (line 154) | type Iovec struct type Msghdr (line 159) | type Msghdr struct type Cmsghdr (line 170) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 177) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 178) | SizeofIovec = 0x10 constant SizeofMsghdr (line 179) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 180) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 184) | SizeofSockFprog = 0x10 type PtraceRegs (line 187) | type PtraceRegs struct type FdSet (line 217) | type FdSet struct type Sysinfo_t (line 221) | type Sysinfo_t struct type Ustat_t (line 239) | type Ustat_t struct type EpollEvent (line 247) | type EpollEvent struct constant POLLRDHUP (line 254) | POLLRDHUP = 0x2000 type Sigset_t (line 257) | type Sigset_t struct constant _C__NSIG (line 261) | _C__NSIG = 0x41 type Termios (line 263) | type Termios struct type Taskstats (line 274) | type Taskstats struct type cpuMask (line 324) | type cpuMask constant _NCPUBITS (line 327) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 331) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 332) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 333) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 334) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 335) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 336) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 337) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 338) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 339) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 340) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 341) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 342) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 343) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 344) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 345) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 346) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 347) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 348) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 349) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 350) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 351) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 352) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 353) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 354) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 355) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 356) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 357) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 358) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 359) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 360) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 361) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 362) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 363) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 364) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 365) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 366) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 367) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 368) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 369) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 370) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 371) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 372) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 373) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 374) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 375) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 376) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 377) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 378) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 379) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 380) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 381) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 382) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 383) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 384) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 385) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 386) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 387) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 388) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 389) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 390) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 391) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 392) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 393) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 394) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 397) | type SockaddrStorage struct type HDGeometry (line 403) | type HDGeometry struct type Statfs_t (line 410) | type Statfs_t struct type TpacketHdr (line 425) | type TpacketHdr struct constant SizeofTpacketHdr (line 437) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 440) | type RTCPLLInfo struct type BlkpgPartition (line 450) | type BlkpgPartition struct constant BLKPG (line 460) | BLKPG = 0x1269 type XDPUmemReg (line 463) | type XDPUmemReg struct type CryptoUserAlg (line 472) | type CryptoUserAlg struct type CryptoStatAEAD (line 482) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 491) | type CryptoStatAKCipher struct type CryptoStatCipher (line 502) | type CryptoStatCipher struct type CryptoStatCompress (line 511) | type CryptoStatCompress struct type CryptoStatHash (line 520) | type CryptoStatHash struct type CryptoStatKPP (line 527) | type CryptoStatKPP struct type CryptoStatRNG (line 535) | type CryptoStatRNG struct type CryptoStatLarval (line 543) | type CryptoStatLarval struct type CryptoReportLarval (line 547) | type CryptoReportLarval struct type CryptoReportHash (line 551) | type CryptoReportHash struct type CryptoReportCipher (line 557) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 564) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 573) | type CryptoReportAEAD struct type CryptoReportComp (line 581) | type CryptoReportComp struct type CryptoReportRNG (line 585) | type CryptoReportRNG struct type CryptoReportAKCipher (line 590) | type CryptoReportAKCipher struct type CryptoReportKPP (line 594) | type CryptoReportKPP struct type CryptoReportAcomp (line 598) | type CryptoReportAcomp struct type LoopInfo (line 602) | type LoopInfo struct type TIPCSubscr (line 618) | type TIPCSubscr struct type TIPCSIOCLNReq (line 625) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 631) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 636) | type PPSKInfo struct constant PPS_GETPARAMS (line 646) | PPS_GETPARAMS = 0x800870a1 constant PPS_SETPARAMS (line 647) | PPS_SETPARAMS = 0x400870a2 constant PPS_GETCAP (line 648) | PPS_GETCAP = 0x800870a3 constant PPS_FETCH (line 649) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_arm.go constant SizeofPtr (line 10) | SizeofPtr = 0x4 constant SizeofLong (line 11) | SizeofLong = 0x4 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 106) | type Dirent struct type Flock_t (line 115) | type Flock_t struct type DmNameList (line 125) | type DmNameList struct constant FADV_DONTNEED (line 133) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 134) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 137) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 148) | type RawSockaddr struct type RawSockaddrAny (line 153) | type RawSockaddrAny struct type Iovec (line 158) | type Iovec struct type Msghdr (line 163) | type Msghdr struct type Cmsghdr (line 173) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 180) | SizeofSockaddrNFCLLCP = 0x58 constant SizeofIovec (line 181) | SizeofIovec = 0x8 constant SizeofMsghdr (line 182) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 183) | SizeofCmsghdr = 0xc constant SizeofSockFprog (line 187) | SizeofSockFprog = 0x8 type PtraceRegs (line 190) | type PtraceRegs struct type FdSet (line 194) | type FdSet struct type Sysinfo_t (line 198) | type Sysinfo_t struct type Ustat_t (line 215) | type Ustat_t struct type EpollEvent (line 222) | type EpollEvent struct constant POLLRDHUP (line 230) | POLLRDHUP = 0x2000 type Sigset_t (line 233) | type Sigset_t struct constant _C__NSIG (line 237) | _C__NSIG = 0x41 type Termios (line 239) | type Termios struct type Taskstats (line 250) | type Taskstats struct type cpuMask (line 302) | type cpuMask constant _NCPUBITS (line 305) | _NCPUBITS = 0x20 constant CBitFieldMaskBit0 (line 309) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 310) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 311) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 312) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 313) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 314) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 315) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 316) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 317) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 318) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 319) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 320) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 321) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 322) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 323) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 324) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 325) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 326) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 327) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 328) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 329) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 330) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 331) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 332) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 333) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 334) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 335) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 336) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 337) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 338) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 339) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 340) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 341) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 342) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 343) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 344) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 345) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 346) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 347) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 348) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 349) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 350) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 351) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 352) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 353) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 354) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 355) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 356) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 357) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 358) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 359) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 360) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 361) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 362) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 363) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 364) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 365) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 366) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 367) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 368) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 369) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 370) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 371) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 372) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 375) | type SockaddrStorage struct type HDGeometry (line 381) | type HDGeometry struct type Statfs_t (line 388) | type Statfs_t struct type TpacketHdr (line 404) | type TpacketHdr struct constant SizeofTpacketHdr (line 415) | SizeofTpacketHdr = 0x18 type RTCPLLInfo (line 418) | type RTCPLLInfo struct type BlkpgPartition (line 428) | type BlkpgPartition struct constant BLKPG (line 438) | BLKPG = 0x1269 type XDPUmemReg (line 441) | type XDPUmemReg struct type CryptoUserAlg (line 450) | type CryptoUserAlg struct type CryptoStatAEAD (line 460) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 469) | type CryptoStatAKCipher struct type CryptoStatCipher (line 480) | type CryptoStatCipher struct type CryptoStatCompress (line 489) | type CryptoStatCompress struct type CryptoStatHash (line 498) | type CryptoStatHash struct type CryptoStatKPP (line 505) | type CryptoStatKPP struct type CryptoStatRNG (line 513) | type CryptoStatRNG struct type CryptoStatLarval (line 521) | type CryptoStatLarval struct type CryptoReportLarval (line 525) | type CryptoReportLarval struct type CryptoReportHash (line 529) | type CryptoReportHash struct type CryptoReportCipher (line 535) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 542) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 551) | type CryptoReportAEAD struct type CryptoReportComp (line 559) | type CryptoReportComp struct type CryptoReportRNG (line 563) | type CryptoReportRNG struct type CryptoReportAKCipher (line 568) | type CryptoReportAKCipher struct type CryptoReportKPP (line 572) | type CryptoReportKPP struct type CryptoReportAcomp (line 576) | type CryptoReportAcomp struct type LoopInfo (line 580) | type LoopInfo struct type TIPCSubscr (line 595) | type TIPCSubscr struct type TIPCSIOCLNReq (line 602) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 608) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 613) | type PPSKInfo struct constant PPS_GETPARAMS (line 623) | PPS_GETPARAMS = 0x800470a1 constant PPS_SETPARAMS (line 624) | PPS_SETPARAMS = 0x400470a2 constant PPS_GETCAP (line 625) | PPS_GETCAP = 0x800470a3 constant PPS_FETCH (line 626) | PPS_FETCH = 0xc00470a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 104) | type Dirent struct type Flock_t (line 113) | type Flock_t struct type DmNameList (line 122) | type DmNameList struct constant FADV_DONTNEED (line 130) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 131) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 134) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 145) | type RawSockaddr struct type RawSockaddrAny (line 150) | type RawSockaddrAny struct type Iovec (line 155) | type Iovec struct type Msghdr (line 160) | type Msghdr struct type Cmsghdr (line 171) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 178) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 179) | SizeofIovec = 0x10 constant SizeofMsghdr (line 180) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 181) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 185) | SizeofSockFprog = 0x10 type PtraceRegs (line 188) | type PtraceRegs struct type FdSet (line 195) | type FdSet struct type Sysinfo_t (line 199) | type Sysinfo_t struct type Ustat_t (line 217) | type Ustat_t struct type EpollEvent (line 225) | type EpollEvent struct constant POLLRDHUP (line 233) | POLLRDHUP = 0x2000 type Sigset_t (line 236) | type Sigset_t struct constant _C__NSIG (line 240) | _C__NSIG = 0x41 type Termios (line 242) | type Termios struct type Taskstats (line 253) | type Taskstats struct type cpuMask (line 303) | type cpuMask constant _NCPUBITS (line 306) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 310) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 311) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 312) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 313) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 314) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 315) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 316) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 317) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 318) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 319) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 320) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 321) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 322) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 323) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 324) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 325) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 326) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 327) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 328) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 329) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 330) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 331) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 332) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 333) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 334) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 335) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 336) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 337) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 338) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 339) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 340) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 341) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 342) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 343) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 344) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 345) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 346) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 347) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 348) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 349) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 350) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 351) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 352) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 353) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 354) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 355) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 356) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 357) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 358) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 359) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 360) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 361) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 362) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 363) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 364) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 365) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 366) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 367) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 368) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 369) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 370) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 371) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 372) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 373) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 376) | type SockaddrStorage struct type HDGeometry (line 382) | type HDGeometry struct type Statfs_t (line 389) | type Statfs_t struct type TpacketHdr (line 404) | type TpacketHdr struct constant SizeofTpacketHdr (line 416) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 419) | type RTCPLLInfo struct type BlkpgPartition (line 429) | type BlkpgPartition struct constant BLKPG (line 439) | BLKPG = 0x1269 type XDPUmemReg (line 442) | type XDPUmemReg struct type CryptoUserAlg (line 451) | type CryptoUserAlg struct type CryptoStatAEAD (line 461) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 470) | type CryptoStatAKCipher struct type CryptoStatCipher (line 481) | type CryptoStatCipher struct type CryptoStatCompress (line 490) | type CryptoStatCompress struct type CryptoStatHash (line 499) | type CryptoStatHash struct type CryptoStatKPP (line 506) | type CryptoStatKPP struct type CryptoStatRNG (line 514) | type CryptoStatRNG struct type CryptoStatLarval (line 522) | type CryptoStatLarval struct type CryptoReportLarval (line 526) | type CryptoReportLarval struct type CryptoReportHash (line 530) | type CryptoReportHash struct type CryptoReportCipher (line 536) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 543) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 552) | type CryptoReportAEAD struct type CryptoReportComp (line 560) | type CryptoReportComp struct type CryptoReportRNG (line 564) | type CryptoReportRNG struct type CryptoReportAKCipher (line 569) | type CryptoReportAKCipher struct type CryptoReportKPP (line 573) | type CryptoReportKPP struct type CryptoReportAcomp (line 577) | type CryptoReportAcomp struct type LoopInfo (line 581) | type LoopInfo struct type TIPCSubscr (line 597) | type TIPCSubscr struct type TIPCSIOCLNReq (line 604) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 610) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 615) | type PPSKInfo struct constant PPS_GETPARAMS (line 625) | PPS_GETPARAMS = 0x800870a1 constant PPS_SETPARAMS (line 626) | PPS_SETPARAMS = 0x400870a2 constant PPS_GETCAP (line 627) | PPS_GETCAP = 0x800870a3 constant PPS_FETCH (line 628) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips.go constant SizeofPtr (line 10) | SizeofPtr = 0x4 constant SizeofLong (line 11) | SizeofLong = 0x4 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 105) | type Dirent struct type Flock_t (line 114) | type Flock_t struct type DmNameList (line 124) | type DmNameList struct constant FADV_DONTNEED (line 132) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 133) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 136) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 147) | type RawSockaddr struct type RawSockaddrAny (line 152) | type RawSockaddrAny struct type Iovec (line 157) | type Iovec struct type Msghdr (line 162) | type Msghdr struct type Cmsghdr (line 172) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 179) | SizeofSockaddrNFCLLCP = 0x58 constant SizeofIovec (line 180) | SizeofIovec = 0x8 constant SizeofMsghdr (line 181) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 182) | SizeofCmsghdr = 0xc constant SizeofSockFprog (line 186) | SizeofSockFprog = 0x8 type PtraceRegs (line 189) | type PtraceRegs struct type FdSet (line 199) | type FdSet struct type Sysinfo_t (line 203) | type Sysinfo_t struct type Ustat_t (line 220) | type Ustat_t struct type EpollEvent (line 227) | type EpollEvent struct constant POLLRDHUP (line 235) | POLLRDHUP = 0x2000 type Sigset_t (line 238) | type Sigset_t struct constant _C__NSIG (line 242) | _C__NSIG = 0x80 type Termios (line 244) | type Termios struct type Taskstats (line 255) | type Taskstats struct type cpuMask (line 307) | type cpuMask constant _NCPUBITS (line 310) | _NCPUBITS = 0x20 constant CBitFieldMaskBit0 (line 314) | CBitFieldMaskBit0 = 0x8000000000000000 constant CBitFieldMaskBit1 (line 315) | CBitFieldMaskBit1 = 0x4000000000000000 constant CBitFieldMaskBit2 (line 316) | CBitFieldMaskBit2 = 0x2000000000000000 constant CBitFieldMaskBit3 (line 317) | CBitFieldMaskBit3 = 0x1000000000000000 constant CBitFieldMaskBit4 (line 318) | CBitFieldMaskBit4 = 0x800000000000000 constant CBitFieldMaskBit5 (line 319) | CBitFieldMaskBit5 = 0x400000000000000 constant CBitFieldMaskBit6 (line 320) | CBitFieldMaskBit6 = 0x200000000000000 constant CBitFieldMaskBit7 (line 321) | CBitFieldMaskBit7 = 0x100000000000000 constant CBitFieldMaskBit8 (line 322) | CBitFieldMaskBit8 = 0x80000000000000 constant CBitFieldMaskBit9 (line 323) | CBitFieldMaskBit9 = 0x40000000000000 constant CBitFieldMaskBit10 (line 324) | CBitFieldMaskBit10 = 0x20000000000000 constant CBitFieldMaskBit11 (line 325) | CBitFieldMaskBit11 = 0x10000000000000 constant CBitFieldMaskBit12 (line 326) | CBitFieldMaskBit12 = 0x8000000000000 constant CBitFieldMaskBit13 (line 327) | CBitFieldMaskBit13 = 0x4000000000000 constant CBitFieldMaskBit14 (line 328) | CBitFieldMaskBit14 = 0x2000000000000 constant CBitFieldMaskBit15 (line 329) | CBitFieldMaskBit15 = 0x1000000000000 constant CBitFieldMaskBit16 (line 330) | CBitFieldMaskBit16 = 0x800000000000 constant CBitFieldMaskBit17 (line 331) | CBitFieldMaskBit17 = 0x400000000000 constant CBitFieldMaskBit18 (line 332) | CBitFieldMaskBit18 = 0x200000000000 constant CBitFieldMaskBit19 (line 333) | CBitFieldMaskBit19 = 0x100000000000 constant CBitFieldMaskBit20 (line 334) | CBitFieldMaskBit20 = 0x80000000000 constant CBitFieldMaskBit21 (line 335) | CBitFieldMaskBit21 = 0x40000000000 constant CBitFieldMaskBit22 (line 336) | CBitFieldMaskBit22 = 0x20000000000 constant CBitFieldMaskBit23 (line 337) | CBitFieldMaskBit23 = 0x10000000000 constant CBitFieldMaskBit24 (line 338) | CBitFieldMaskBit24 = 0x8000000000 constant CBitFieldMaskBit25 (line 339) | CBitFieldMaskBit25 = 0x4000000000 constant CBitFieldMaskBit26 (line 340) | CBitFieldMaskBit26 = 0x2000000000 constant CBitFieldMaskBit27 (line 341) | CBitFieldMaskBit27 = 0x1000000000 constant CBitFieldMaskBit28 (line 342) | CBitFieldMaskBit28 = 0x800000000 constant CBitFieldMaskBit29 (line 343) | CBitFieldMaskBit29 = 0x400000000 constant CBitFieldMaskBit30 (line 344) | CBitFieldMaskBit30 = 0x200000000 constant CBitFieldMaskBit31 (line 345) | CBitFieldMaskBit31 = 0x100000000 constant CBitFieldMaskBit32 (line 346) | CBitFieldMaskBit32 = 0x80000000 constant CBitFieldMaskBit33 (line 347) | CBitFieldMaskBit33 = 0x40000000 constant CBitFieldMaskBit34 (line 348) | CBitFieldMaskBit34 = 0x20000000 constant CBitFieldMaskBit35 (line 349) | CBitFieldMaskBit35 = 0x10000000 constant CBitFieldMaskBit36 (line 350) | CBitFieldMaskBit36 = 0x8000000 constant CBitFieldMaskBit37 (line 351) | CBitFieldMaskBit37 = 0x4000000 constant CBitFieldMaskBit38 (line 352) | CBitFieldMaskBit38 = 0x2000000 constant CBitFieldMaskBit39 (line 353) | CBitFieldMaskBit39 = 0x1000000 constant CBitFieldMaskBit40 (line 354) | CBitFieldMaskBit40 = 0x800000 constant CBitFieldMaskBit41 (line 355) | CBitFieldMaskBit41 = 0x400000 constant CBitFieldMaskBit42 (line 356) | CBitFieldMaskBit42 = 0x200000 constant CBitFieldMaskBit43 (line 357) | CBitFieldMaskBit43 = 0x100000 constant CBitFieldMaskBit44 (line 358) | CBitFieldMaskBit44 = 0x80000 constant CBitFieldMaskBit45 (line 359) | CBitFieldMaskBit45 = 0x40000 constant CBitFieldMaskBit46 (line 360) | CBitFieldMaskBit46 = 0x20000 constant CBitFieldMaskBit47 (line 361) | CBitFieldMaskBit47 = 0x10000 constant CBitFieldMaskBit48 (line 362) | CBitFieldMaskBit48 = 0x8000 constant CBitFieldMaskBit49 (line 363) | CBitFieldMaskBit49 = 0x4000 constant CBitFieldMaskBit50 (line 364) | CBitFieldMaskBit50 = 0x2000 constant CBitFieldMaskBit51 (line 365) | CBitFieldMaskBit51 = 0x1000 constant CBitFieldMaskBit52 (line 366) | CBitFieldMaskBit52 = 0x800 constant CBitFieldMaskBit53 (line 367) | CBitFieldMaskBit53 = 0x400 constant CBitFieldMaskBit54 (line 368) | CBitFieldMaskBit54 = 0x200 constant CBitFieldMaskBit55 (line 369) | CBitFieldMaskBit55 = 0x100 constant CBitFieldMaskBit56 (line 370) | CBitFieldMaskBit56 = 0x80 constant CBitFieldMaskBit57 (line 371) | CBitFieldMaskBit57 = 0x40 constant CBitFieldMaskBit58 (line 372) | CBitFieldMaskBit58 = 0x20 constant CBitFieldMaskBit59 (line 373) | CBitFieldMaskBit59 = 0x10 constant CBitFieldMaskBit60 (line 374) | CBitFieldMaskBit60 = 0x8 constant CBitFieldMaskBit61 (line 375) | CBitFieldMaskBit61 = 0x4 constant CBitFieldMaskBit62 (line 376) | CBitFieldMaskBit62 = 0x2 constant CBitFieldMaskBit63 (line 377) | CBitFieldMaskBit63 = 0x1 type SockaddrStorage (line 380) | type SockaddrStorage struct type HDGeometry (line 386) | type HDGeometry struct type Statfs_t (line 393) | type Statfs_t struct type TpacketHdr (line 410) | type TpacketHdr struct constant SizeofTpacketHdr (line 421) | SizeofTpacketHdr = 0x18 type RTCPLLInfo (line 424) | type RTCPLLInfo struct type BlkpgPartition (line 434) | type BlkpgPartition struct constant BLKPG (line 444) | BLKPG = 0x20001269 type XDPUmemReg (line 447) | type XDPUmemReg struct type CryptoUserAlg (line 456) | type CryptoUserAlg struct type CryptoStatAEAD (line 466) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 475) | type CryptoStatAKCipher struct type CryptoStatCipher (line 486) | type CryptoStatCipher struct type CryptoStatCompress (line 495) | type CryptoStatCompress struct type CryptoStatHash (line 504) | type CryptoStatHash struct type CryptoStatKPP (line 511) | type CryptoStatKPP struct type CryptoStatRNG (line 519) | type CryptoStatRNG struct type CryptoStatLarval (line 527) | type CryptoStatLarval struct type CryptoReportLarval (line 531) | type CryptoReportLarval struct type CryptoReportHash (line 535) | type CryptoReportHash struct type CryptoReportCipher (line 541) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 548) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 557) | type CryptoReportAEAD struct type CryptoReportComp (line 565) | type CryptoReportComp struct type CryptoReportRNG (line 569) | type CryptoReportRNG struct type CryptoReportAKCipher (line 574) | type CryptoReportAKCipher struct type CryptoReportKPP (line 578) | type CryptoReportKPP struct type CryptoReportAcomp (line 582) | type CryptoReportAcomp struct type LoopInfo (line 586) | type LoopInfo struct type TIPCSubscr (line 601) | type TIPCSubscr struct type TIPCSIOCLNReq (line 608) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 614) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 619) | type PPSKInfo struct constant PPS_GETPARAMS (line 629) | PPS_GETPARAMS = 0x400470a1 constant PPS_SETPARAMS (line 630) | PPS_SETPARAMS = 0x800470a2 constant PPS_GETCAP (line 631) | PPS_GETCAP = 0x400470a3 constant PPS_FETCH (line 632) | PPS_FETCH = 0xc00470a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 104) | type Dirent struct type Flock_t (line 113) | type Flock_t struct type DmNameList (line 122) | type DmNameList struct constant FADV_DONTNEED (line 130) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 131) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 134) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 145) | type RawSockaddr struct type RawSockaddrAny (line 150) | type RawSockaddrAny struct type Iovec (line 155) | type Iovec struct type Msghdr (line 160) | type Msghdr struct type Cmsghdr (line 171) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 178) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 179) | SizeofIovec = 0x10 constant SizeofMsghdr (line 180) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 181) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 185) | SizeofSockFprog = 0x10 type PtraceRegs (line 188) | type PtraceRegs struct type FdSet (line 198) | type FdSet struct type Sysinfo_t (line 202) | type Sysinfo_t struct type Ustat_t (line 220) | type Ustat_t struct type EpollEvent (line 228) | type EpollEvent struct constant POLLRDHUP (line 236) | POLLRDHUP = 0x2000 type Sigset_t (line 239) | type Sigset_t struct constant _C__NSIG (line 243) | _C__NSIG = 0x80 type Termios (line 245) | type Termios struct type Taskstats (line 256) | type Taskstats struct type cpuMask (line 306) | type cpuMask constant _NCPUBITS (line 309) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 313) | CBitFieldMaskBit0 = 0x8000000000000000 constant CBitFieldMaskBit1 (line 314) | CBitFieldMaskBit1 = 0x4000000000000000 constant CBitFieldMaskBit2 (line 315) | CBitFieldMaskBit2 = 0x2000000000000000 constant CBitFieldMaskBit3 (line 316) | CBitFieldMaskBit3 = 0x1000000000000000 constant CBitFieldMaskBit4 (line 317) | CBitFieldMaskBit4 = 0x800000000000000 constant CBitFieldMaskBit5 (line 318) | CBitFieldMaskBit5 = 0x400000000000000 constant CBitFieldMaskBit6 (line 319) | CBitFieldMaskBit6 = 0x200000000000000 constant CBitFieldMaskBit7 (line 320) | CBitFieldMaskBit7 = 0x100000000000000 constant CBitFieldMaskBit8 (line 321) | CBitFieldMaskBit8 = 0x80000000000000 constant CBitFieldMaskBit9 (line 322) | CBitFieldMaskBit9 = 0x40000000000000 constant CBitFieldMaskBit10 (line 323) | CBitFieldMaskBit10 = 0x20000000000000 constant CBitFieldMaskBit11 (line 324) | CBitFieldMaskBit11 = 0x10000000000000 constant CBitFieldMaskBit12 (line 325) | CBitFieldMaskBit12 = 0x8000000000000 constant CBitFieldMaskBit13 (line 326) | CBitFieldMaskBit13 = 0x4000000000000 constant CBitFieldMaskBit14 (line 327) | CBitFieldMaskBit14 = 0x2000000000000 constant CBitFieldMaskBit15 (line 328) | CBitFieldMaskBit15 = 0x1000000000000 constant CBitFieldMaskBit16 (line 329) | CBitFieldMaskBit16 = 0x800000000000 constant CBitFieldMaskBit17 (line 330) | CBitFieldMaskBit17 = 0x400000000000 constant CBitFieldMaskBit18 (line 331) | CBitFieldMaskBit18 = 0x200000000000 constant CBitFieldMaskBit19 (line 332) | CBitFieldMaskBit19 = 0x100000000000 constant CBitFieldMaskBit20 (line 333) | CBitFieldMaskBit20 = 0x80000000000 constant CBitFieldMaskBit21 (line 334) | CBitFieldMaskBit21 = 0x40000000000 constant CBitFieldMaskBit22 (line 335) | CBitFieldMaskBit22 = 0x20000000000 constant CBitFieldMaskBit23 (line 336) | CBitFieldMaskBit23 = 0x10000000000 constant CBitFieldMaskBit24 (line 337) | CBitFieldMaskBit24 = 0x8000000000 constant CBitFieldMaskBit25 (line 338) | CBitFieldMaskBit25 = 0x4000000000 constant CBitFieldMaskBit26 (line 339) | CBitFieldMaskBit26 = 0x2000000000 constant CBitFieldMaskBit27 (line 340) | CBitFieldMaskBit27 = 0x1000000000 constant CBitFieldMaskBit28 (line 341) | CBitFieldMaskBit28 = 0x800000000 constant CBitFieldMaskBit29 (line 342) | CBitFieldMaskBit29 = 0x400000000 constant CBitFieldMaskBit30 (line 343) | CBitFieldMaskBit30 = 0x200000000 constant CBitFieldMaskBit31 (line 344) | CBitFieldMaskBit31 = 0x100000000 constant CBitFieldMaskBit32 (line 345) | CBitFieldMaskBit32 = 0x80000000 constant CBitFieldMaskBit33 (line 346) | CBitFieldMaskBit33 = 0x40000000 constant CBitFieldMaskBit34 (line 347) | CBitFieldMaskBit34 = 0x20000000 constant CBitFieldMaskBit35 (line 348) | CBitFieldMaskBit35 = 0x10000000 constant CBitFieldMaskBit36 (line 349) | CBitFieldMaskBit36 = 0x8000000 constant CBitFieldMaskBit37 (line 350) | CBitFieldMaskBit37 = 0x4000000 constant CBitFieldMaskBit38 (line 351) | CBitFieldMaskBit38 = 0x2000000 constant CBitFieldMaskBit39 (line 352) | CBitFieldMaskBit39 = 0x1000000 constant CBitFieldMaskBit40 (line 353) | CBitFieldMaskBit40 = 0x800000 constant CBitFieldMaskBit41 (line 354) | CBitFieldMaskBit41 = 0x400000 constant CBitFieldMaskBit42 (line 355) | CBitFieldMaskBit42 = 0x200000 constant CBitFieldMaskBit43 (line 356) | CBitFieldMaskBit43 = 0x100000 constant CBitFieldMaskBit44 (line 357) | CBitFieldMaskBit44 = 0x80000 constant CBitFieldMaskBit45 (line 358) | CBitFieldMaskBit45 = 0x40000 constant CBitFieldMaskBit46 (line 359) | CBitFieldMaskBit46 = 0x20000 constant CBitFieldMaskBit47 (line 360) | CBitFieldMaskBit47 = 0x10000 constant CBitFieldMaskBit48 (line 361) | CBitFieldMaskBit48 = 0x8000 constant CBitFieldMaskBit49 (line 362) | CBitFieldMaskBit49 = 0x4000 constant CBitFieldMaskBit50 (line 363) | CBitFieldMaskBit50 = 0x2000 constant CBitFieldMaskBit51 (line 364) | CBitFieldMaskBit51 = 0x1000 constant CBitFieldMaskBit52 (line 365) | CBitFieldMaskBit52 = 0x800 constant CBitFieldMaskBit53 (line 366) | CBitFieldMaskBit53 = 0x400 constant CBitFieldMaskBit54 (line 367) | CBitFieldMaskBit54 = 0x200 constant CBitFieldMaskBit55 (line 368) | CBitFieldMaskBit55 = 0x100 constant CBitFieldMaskBit56 (line 369) | CBitFieldMaskBit56 = 0x80 constant CBitFieldMaskBit57 (line 370) | CBitFieldMaskBit57 = 0x40 constant CBitFieldMaskBit58 (line 371) | CBitFieldMaskBit58 = 0x20 constant CBitFieldMaskBit59 (line 372) | CBitFieldMaskBit59 = 0x10 constant CBitFieldMaskBit60 (line 373) | CBitFieldMaskBit60 = 0x8 constant CBitFieldMaskBit61 (line 374) | CBitFieldMaskBit61 = 0x4 constant CBitFieldMaskBit62 (line 375) | CBitFieldMaskBit62 = 0x2 constant CBitFieldMaskBit63 (line 376) | CBitFieldMaskBit63 = 0x1 type SockaddrStorage (line 379) | type SockaddrStorage struct type HDGeometry (line 385) | type HDGeometry struct type Statfs_t (line 392) | type Statfs_t struct type TpacketHdr (line 407) | type TpacketHdr struct constant SizeofTpacketHdr (line 419) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 422) | type RTCPLLInfo struct type BlkpgPartition (line 432) | type BlkpgPartition struct constant BLKPG (line 442) | BLKPG = 0x20001269 type XDPUmemReg (line 445) | type XDPUmemReg struct type CryptoUserAlg (line 454) | type CryptoUserAlg struct type CryptoStatAEAD (line 464) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 473) | type CryptoStatAKCipher struct type CryptoStatCipher (line 484) | type CryptoStatCipher struct type CryptoStatCompress (line 493) | type CryptoStatCompress struct type CryptoStatHash (line 502) | type CryptoStatHash struct type CryptoStatKPP (line 509) | type CryptoStatKPP struct type CryptoStatRNG (line 517) | type CryptoStatRNG struct type CryptoStatLarval (line 525) | type CryptoStatLarval struct type CryptoReportLarval (line 529) | type CryptoReportLarval struct type CryptoReportHash (line 533) | type CryptoReportHash struct type CryptoReportCipher (line 539) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 546) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 555) | type CryptoReportAEAD struct type CryptoReportComp (line 563) | type CryptoReportComp struct type CryptoReportRNG (line 567) | type CryptoReportRNG struct type CryptoReportAKCipher (line 572) | type CryptoReportAKCipher struct type CryptoReportKPP (line 576) | type CryptoReportKPP struct type CryptoReportAcomp (line 580) | type CryptoReportAcomp struct type LoopInfo (line 584) | type LoopInfo struct type TIPCSubscr (line 600) | type TIPCSubscr struct type TIPCSIOCLNReq (line 607) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 613) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 618) | type PPSKInfo struct constant PPS_GETPARAMS (line 628) | PPS_GETPARAMS = 0x400870a1 constant PPS_SETPARAMS (line 629) | PPS_SETPARAMS = 0x800870a2 constant PPS_GETCAP (line 630) | PPS_GETCAP = 0x400870a3 constant PPS_FETCH (line 631) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 104) | type Dirent struct type Flock_t (line 113) | type Flock_t struct type DmNameList (line 122) | type DmNameList struct constant FADV_DONTNEED (line 130) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 131) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 134) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 145) | type RawSockaddr struct type RawSockaddrAny (line 150) | type RawSockaddrAny struct type Iovec (line 155) | type Iovec struct type Msghdr (line 160) | type Msghdr struct type Cmsghdr (line 171) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 178) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 179) | SizeofIovec = 0x10 constant SizeofMsghdr (line 180) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 181) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 185) | SizeofSockFprog = 0x10 type PtraceRegs (line 188) | type PtraceRegs struct type FdSet (line 198) | type FdSet struct type Sysinfo_t (line 202) | type Sysinfo_t struct type Ustat_t (line 220) | type Ustat_t struct type EpollEvent (line 228) | type EpollEvent struct constant POLLRDHUP (line 236) | POLLRDHUP = 0x2000 type Sigset_t (line 239) | type Sigset_t struct constant _C__NSIG (line 243) | _C__NSIG = 0x80 type Termios (line 245) | type Termios struct type Taskstats (line 256) | type Taskstats struct type cpuMask (line 306) | type cpuMask constant _NCPUBITS (line 309) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 313) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 314) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 315) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 316) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 317) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 318) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 319) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 320) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 321) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 322) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 323) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 324) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 325) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 326) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 327) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 328) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 329) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 330) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 331) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 332) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 333) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 334) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 335) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 336) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 337) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 338) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 339) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 340) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 341) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 342) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 343) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 344) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 345) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 346) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 347) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 348) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 349) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 350) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 351) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 352) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 353) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 354) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 355) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 356) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 357) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 358) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 359) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 360) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 361) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 362) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 363) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 364) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 365) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 366) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 367) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 368) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 369) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 370) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 371) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 372) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 373) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 374) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 375) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 376) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 379) | type SockaddrStorage struct type HDGeometry (line 385) | type HDGeometry struct type Statfs_t (line 392) | type Statfs_t struct type TpacketHdr (line 407) | type TpacketHdr struct constant SizeofTpacketHdr (line 419) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 422) | type RTCPLLInfo struct type BlkpgPartition (line 432) | type BlkpgPartition struct constant BLKPG (line 442) | BLKPG = 0x20001269 type XDPUmemReg (line 445) | type XDPUmemReg struct type CryptoUserAlg (line 454) | type CryptoUserAlg struct type CryptoStatAEAD (line 464) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 473) | type CryptoStatAKCipher struct type CryptoStatCipher (line 484) | type CryptoStatCipher struct type CryptoStatCompress (line 493) | type CryptoStatCompress struct type CryptoStatHash (line 502) | type CryptoStatHash struct type CryptoStatKPP (line 509) | type CryptoStatKPP struct type CryptoStatRNG (line 517) | type CryptoStatRNG struct type CryptoStatLarval (line 525) | type CryptoStatLarval struct type CryptoReportLarval (line 529) | type CryptoReportLarval struct type CryptoReportHash (line 533) | type CryptoReportHash struct type CryptoReportCipher (line 539) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 546) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 555) | type CryptoReportAEAD struct type CryptoReportComp (line 563) | type CryptoReportComp struct type CryptoReportRNG (line 567) | type CryptoReportRNG struct type CryptoReportAKCipher (line 572) | type CryptoReportAKCipher struct type CryptoReportKPP (line 576) | type CryptoReportKPP struct type CryptoReportAcomp (line 580) | type CryptoReportAcomp struct type LoopInfo (line 584) | type LoopInfo struct type TIPCSubscr (line 600) | type TIPCSubscr struct type TIPCSIOCLNReq (line 607) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 613) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 618) | type PPSKInfo struct constant PPS_GETPARAMS (line 628) | PPS_GETPARAMS = 0x400870a1 constant PPS_SETPARAMS (line 629) | PPS_SETPARAMS = 0x800870a2 constant PPS_GETCAP (line 630) | PPS_GETCAP = 0x400870a3 constant PPS_FETCH (line 631) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go constant SizeofPtr (line 10) | SizeofPtr = 0x4 constant SizeofLong (line 11) | SizeofLong = 0x4 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 105) | type Dirent struct type Flock_t (line 114) | type Flock_t struct type DmNameList (line 124) | type DmNameList struct constant FADV_DONTNEED (line 132) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 133) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 136) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 147) | type RawSockaddr struct type RawSockaddrAny (line 152) | type RawSockaddrAny struct type Iovec (line 157) | type Iovec struct type Msghdr (line 162) | type Msghdr struct type Cmsghdr (line 172) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 179) | SizeofSockaddrNFCLLCP = 0x58 constant SizeofIovec (line 180) | SizeofIovec = 0x8 constant SizeofMsghdr (line 181) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 182) | SizeofCmsghdr = 0xc constant SizeofSockFprog (line 186) | SizeofSockFprog = 0x8 type PtraceRegs (line 189) | type PtraceRegs struct type FdSet (line 199) | type FdSet struct type Sysinfo_t (line 203) | type Sysinfo_t struct type Ustat_t (line 220) | type Ustat_t struct type EpollEvent (line 227) | type EpollEvent struct constant POLLRDHUP (line 235) | POLLRDHUP = 0x2000 type Sigset_t (line 238) | type Sigset_t struct constant _C__NSIG (line 242) | _C__NSIG = 0x80 type Termios (line 244) | type Termios struct type Taskstats (line 255) | type Taskstats struct type cpuMask (line 307) | type cpuMask constant _NCPUBITS (line 310) | _NCPUBITS = 0x20 constant CBitFieldMaskBit0 (line 314) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 315) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 316) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 317) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 318) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 319) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 320) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 321) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 322) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 323) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 324) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 325) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 326) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 327) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 328) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 329) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 330) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 331) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 332) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 333) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 334) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 335) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 336) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 337) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 338) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 339) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 340) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 341) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 342) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 343) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 344) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 345) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 346) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 347) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 348) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 349) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 350) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 351) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 352) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 353) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 354) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 355) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 356) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 357) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 358) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 359) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 360) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 361) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 362) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 363) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 364) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 365) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 366) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 367) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 368) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 369) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 370) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 371) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 372) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 373) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 374) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 375) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 376) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 377) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 380) | type SockaddrStorage struct type HDGeometry (line 386) | type HDGeometry struct type Statfs_t (line 393) | type Statfs_t struct type TpacketHdr (line 410) | type TpacketHdr struct constant SizeofTpacketHdr (line 421) | SizeofTpacketHdr = 0x18 type RTCPLLInfo (line 424) | type RTCPLLInfo struct type BlkpgPartition (line 434) | type BlkpgPartition struct constant BLKPG (line 444) | BLKPG = 0x20001269 type XDPUmemReg (line 447) | type XDPUmemReg struct type CryptoUserAlg (line 456) | type CryptoUserAlg struct type CryptoStatAEAD (line 466) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 475) | type CryptoStatAKCipher struct type CryptoStatCipher (line 486) | type CryptoStatCipher struct type CryptoStatCompress (line 495) | type CryptoStatCompress struct type CryptoStatHash (line 504) | type CryptoStatHash struct type CryptoStatKPP (line 511) | type CryptoStatKPP struct type CryptoStatRNG (line 519) | type CryptoStatRNG struct type CryptoStatLarval (line 527) | type CryptoStatLarval struct type CryptoReportLarval (line 531) | type CryptoReportLarval struct type CryptoReportHash (line 535) | type CryptoReportHash struct type CryptoReportCipher (line 541) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 548) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 557) | type CryptoReportAEAD struct type CryptoReportComp (line 565) | type CryptoReportComp struct type CryptoReportRNG (line 569) | type CryptoReportRNG struct type CryptoReportAKCipher (line 574) | type CryptoReportAKCipher struct type CryptoReportKPP (line 578) | type CryptoReportKPP struct type CryptoReportAcomp (line 582) | type CryptoReportAcomp struct type LoopInfo (line 586) | type LoopInfo struct type TIPCSubscr (line 601) | type TIPCSubscr struct type TIPCSIOCLNReq (line 608) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 614) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 619) | type PPSKInfo struct constant PPS_GETPARAMS (line 629) | PPS_GETPARAMS = 0x400470a1 constant PPS_SETPARAMS (line 630) | PPS_SETPARAMS = 0x800470a2 constant PPS_GETCAP (line 631) | PPS_GETCAP = 0x400470a3 constant PPS_FETCH (line 632) | PPS_FETCH = 0xc00470a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go constant SizeofPtr (line 10) | SizeofPtr = 0x4 constant SizeofLong (line 11) | SizeofLong = 0x4 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 106) | type Dirent struct type Flock_t (line 115) | type Flock_t struct type DmNameList (line 125) | type DmNameList struct constant FADV_DONTNEED (line 133) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 134) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 137) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 148) | type RawSockaddr struct type RawSockaddrAny (line 153) | type RawSockaddrAny struct type Iovec (line 158) | type Iovec struct type Msghdr (line 163) | type Msghdr struct type Cmsghdr (line 173) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 180) | SizeofSockaddrNFCLLCP = 0x58 constant SizeofIovec (line 181) | SizeofIovec = 0x8 constant SizeofMsghdr (line 182) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 183) | SizeofCmsghdr = 0xc constant SizeofSockFprog (line 187) | SizeofSockFprog = 0x8 type PtraceRegs (line 190) | type PtraceRegs struct type FdSet (line 206) | type FdSet struct type Sysinfo_t (line 210) | type Sysinfo_t struct type Ustat_t (line 227) | type Ustat_t struct type EpollEvent (line 234) | type EpollEvent struct constant POLLRDHUP (line 242) | POLLRDHUP = 0x2000 type Sigset_t (line 245) | type Sigset_t struct constant _C__NSIG (line 249) | _C__NSIG = 0x41 type Termios (line 251) | type Termios struct type Taskstats (line 262) | type Taskstats struct type cpuMask (line 314) | type cpuMask constant _NCPUBITS (line 317) | _NCPUBITS = 0x20 constant CBitFieldMaskBit0 (line 321) | CBitFieldMaskBit0 = 0x8000000000000000 constant CBitFieldMaskBit1 (line 322) | CBitFieldMaskBit1 = 0x4000000000000000 constant CBitFieldMaskBit2 (line 323) | CBitFieldMaskBit2 = 0x2000000000000000 constant CBitFieldMaskBit3 (line 324) | CBitFieldMaskBit3 = 0x1000000000000000 constant CBitFieldMaskBit4 (line 325) | CBitFieldMaskBit4 = 0x800000000000000 constant CBitFieldMaskBit5 (line 326) | CBitFieldMaskBit5 = 0x400000000000000 constant CBitFieldMaskBit6 (line 327) | CBitFieldMaskBit6 = 0x200000000000000 constant CBitFieldMaskBit7 (line 328) | CBitFieldMaskBit7 = 0x100000000000000 constant CBitFieldMaskBit8 (line 329) | CBitFieldMaskBit8 = 0x80000000000000 constant CBitFieldMaskBit9 (line 330) | CBitFieldMaskBit9 = 0x40000000000000 constant CBitFieldMaskBit10 (line 331) | CBitFieldMaskBit10 = 0x20000000000000 constant CBitFieldMaskBit11 (line 332) | CBitFieldMaskBit11 = 0x10000000000000 constant CBitFieldMaskBit12 (line 333) | CBitFieldMaskBit12 = 0x8000000000000 constant CBitFieldMaskBit13 (line 334) | CBitFieldMaskBit13 = 0x4000000000000 constant CBitFieldMaskBit14 (line 335) | CBitFieldMaskBit14 = 0x2000000000000 constant CBitFieldMaskBit15 (line 336) | CBitFieldMaskBit15 = 0x1000000000000 constant CBitFieldMaskBit16 (line 337) | CBitFieldMaskBit16 = 0x800000000000 constant CBitFieldMaskBit17 (line 338) | CBitFieldMaskBit17 = 0x400000000000 constant CBitFieldMaskBit18 (line 339) | CBitFieldMaskBit18 = 0x200000000000 constant CBitFieldMaskBit19 (line 340) | CBitFieldMaskBit19 = 0x100000000000 constant CBitFieldMaskBit20 (line 341) | CBitFieldMaskBit20 = 0x80000000000 constant CBitFieldMaskBit21 (line 342) | CBitFieldMaskBit21 = 0x40000000000 constant CBitFieldMaskBit22 (line 343) | CBitFieldMaskBit22 = 0x20000000000 constant CBitFieldMaskBit23 (line 344) | CBitFieldMaskBit23 = 0x10000000000 constant CBitFieldMaskBit24 (line 345) | CBitFieldMaskBit24 = 0x8000000000 constant CBitFieldMaskBit25 (line 346) | CBitFieldMaskBit25 = 0x4000000000 constant CBitFieldMaskBit26 (line 347) | CBitFieldMaskBit26 = 0x2000000000 constant CBitFieldMaskBit27 (line 348) | CBitFieldMaskBit27 = 0x1000000000 constant CBitFieldMaskBit28 (line 349) | CBitFieldMaskBit28 = 0x800000000 constant CBitFieldMaskBit29 (line 350) | CBitFieldMaskBit29 = 0x400000000 constant CBitFieldMaskBit30 (line 351) | CBitFieldMaskBit30 = 0x200000000 constant CBitFieldMaskBit31 (line 352) | CBitFieldMaskBit31 = 0x100000000 constant CBitFieldMaskBit32 (line 353) | CBitFieldMaskBit32 = 0x80000000 constant CBitFieldMaskBit33 (line 354) | CBitFieldMaskBit33 = 0x40000000 constant CBitFieldMaskBit34 (line 355) | CBitFieldMaskBit34 = 0x20000000 constant CBitFieldMaskBit35 (line 356) | CBitFieldMaskBit35 = 0x10000000 constant CBitFieldMaskBit36 (line 357) | CBitFieldMaskBit36 = 0x8000000 constant CBitFieldMaskBit37 (line 358) | CBitFieldMaskBit37 = 0x4000000 constant CBitFieldMaskBit38 (line 359) | CBitFieldMaskBit38 = 0x2000000 constant CBitFieldMaskBit39 (line 360) | CBitFieldMaskBit39 = 0x1000000 constant CBitFieldMaskBit40 (line 361) | CBitFieldMaskBit40 = 0x800000 constant CBitFieldMaskBit41 (line 362) | CBitFieldMaskBit41 = 0x400000 constant CBitFieldMaskBit42 (line 363) | CBitFieldMaskBit42 = 0x200000 constant CBitFieldMaskBit43 (line 364) | CBitFieldMaskBit43 = 0x100000 constant CBitFieldMaskBit44 (line 365) | CBitFieldMaskBit44 = 0x80000 constant CBitFieldMaskBit45 (line 366) | CBitFieldMaskBit45 = 0x40000 constant CBitFieldMaskBit46 (line 367) | CBitFieldMaskBit46 = 0x20000 constant CBitFieldMaskBit47 (line 368) | CBitFieldMaskBit47 = 0x10000 constant CBitFieldMaskBit48 (line 369) | CBitFieldMaskBit48 = 0x8000 constant CBitFieldMaskBit49 (line 370) | CBitFieldMaskBit49 = 0x4000 constant CBitFieldMaskBit50 (line 371) | CBitFieldMaskBit50 = 0x2000 constant CBitFieldMaskBit51 (line 372) | CBitFieldMaskBit51 = 0x1000 constant CBitFieldMaskBit52 (line 373) | CBitFieldMaskBit52 = 0x800 constant CBitFieldMaskBit53 (line 374) | CBitFieldMaskBit53 = 0x400 constant CBitFieldMaskBit54 (line 375) | CBitFieldMaskBit54 = 0x200 constant CBitFieldMaskBit55 (line 376) | CBitFieldMaskBit55 = 0x100 constant CBitFieldMaskBit56 (line 377) | CBitFieldMaskBit56 = 0x80 constant CBitFieldMaskBit57 (line 378) | CBitFieldMaskBit57 = 0x40 constant CBitFieldMaskBit58 (line 379) | CBitFieldMaskBit58 = 0x20 constant CBitFieldMaskBit59 (line 380) | CBitFieldMaskBit59 = 0x10 constant CBitFieldMaskBit60 (line 381) | CBitFieldMaskBit60 = 0x8 constant CBitFieldMaskBit61 (line 382) | CBitFieldMaskBit61 = 0x4 constant CBitFieldMaskBit62 (line 383) | CBitFieldMaskBit62 = 0x2 constant CBitFieldMaskBit63 (line 384) | CBitFieldMaskBit63 = 0x1 type SockaddrStorage (line 387) | type SockaddrStorage struct type HDGeometry (line 393) | type HDGeometry struct type Statfs_t (line 400) | type Statfs_t struct type TpacketHdr (line 416) | type TpacketHdr struct constant SizeofTpacketHdr (line 427) | SizeofTpacketHdr = 0x18 type RTCPLLInfo (line 430) | type RTCPLLInfo struct type BlkpgPartition (line 440) | type BlkpgPartition struct constant BLKPG (line 450) | BLKPG = 0x20001269 type XDPUmemReg (line 453) | type XDPUmemReg struct type CryptoUserAlg (line 462) | type CryptoUserAlg struct type CryptoStatAEAD (line 472) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 481) | type CryptoStatAKCipher struct type CryptoStatCipher (line 492) | type CryptoStatCipher struct type CryptoStatCompress (line 501) | type CryptoStatCompress struct type CryptoStatHash (line 510) | type CryptoStatHash struct type CryptoStatKPP (line 517) | type CryptoStatKPP struct type CryptoStatRNG (line 525) | type CryptoStatRNG struct type CryptoStatLarval (line 533) | type CryptoStatLarval struct type CryptoReportLarval (line 537) | type CryptoReportLarval struct type CryptoReportHash (line 541) | type CryptoReportHash struct type CryptoReportCipher (line 547) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 554) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 563) | type CryptoReportAEAD struct type CryptoReportComp (line 571) | type CryptoReportComp struct type CryptoReportRNG (line 575) | type CryptoReportRNG struct type CryptoReportAKCipher (line 580) | type CryptoReportAKCipher struct type CryptoReportKPP (line 584) | type CryptoReportKPP struct type CryptoReportAcomp (line 588) | type CryptoReportAcomp struct type LoopInfo (line 592) | type LoopInfo struct type TIPCSubscr (line 607) | type TIPCSubscr struct type TIPCSIOCLNReq (line 614) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 620) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 625) | type PPSKInfo struct constant PPS_GETPARAMS (line 635) | PPS_GETPARAMS = 0x400470a1 constant PPS_SETPARAMS (line 636) | PPS_SETPARAMS = 0x800470a2 constant PPS_GETCAP (line 637) | PPS_GETCAP = 0x400470a3 constant PPS_FETCH (line 638) | PPS_FETCH = 0xc00470a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 105) | type Dirent struct type Flock_t (line 114) | type Flock_t struct type DmNameList (line 123) | type DmNameList struct constant FADV_DONTNEED (line 131) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 132) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 135) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 146) | type RawSockaddr struct type RawSockaddrAny (line 151) | type RawSockaddrAny struct type Iovec (line 156) | type Iovec struct type Msghdr (line 161) | type Msghdr struct type Cmsghdr (line 172) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 179) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 180) | SizeofIovec = 0x10 constant SizeofMsghdr (line 181) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 182) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 186) | SizeofSockFprog = 0x10 type PtraceRegs (line 189) | type PtraceRegs struct type FdSet (line 205) | type FdSet struct type Sysinfo_t (line 209) | type Sysinfo_t struct type Ustat_t (line 227) | type Ustat_t struct type EpollEvent (line 235) | type EpollEvent struct constant POLLRDHUP (line 243) | POLLRDHUP = 0x2000 type Sigset_t (line 246) | type Sigset_t struct constant _C__NSIG (line 250) | _C__NSIG = 0x41 type Termios (line 252) | type Termios struct type Taskstats (line 263) | type Taskstats struct type cpuMask (line 313) | type cpuMask constant _NCPUBITS (line 316) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 320) | CBitFieldMaskBit0 = 0x8000000000000000 constant CBitFieldMaskBit1 (line 321) | CBitFieldMaskBit1 = 0x4000000000000000 constant CBitFieldMaskBit2 (line 322) | CBitFieldMaskBit2 = 0x2000000000000000 constant CBitFieldMaskBit3 (line 323) | CBitFieldMaskBit3 = 0x1000000000000000 constant CBitFieldMaskBit4 (line 324) | CBitFieldMaskBit4 = 0x800000000000000 constant CBitFieldMaskBit5 (line 325) | CBitFieldMaskBit5 = 0x400000000000000 constant CBitFieldMaskBit6 (line 326) | CBitFieldMaskBit6 = 0x200000000000000 constant CBitFieldMaskBit7 (line 327) | CBitFieldMaskBit7 = 0x100000000000000 constant CBitFieldMaskBit8 (line 328) | CBitFieldMaskBit8 = 0x80000000000000 constant CBitFieldMaskBit9 (line 329) | CBitFieldMaskBit9 = 0x40000000000000 constant CBitFieldMaskBit10 (line 330) | CBitFieldMaskBit10 = 0x20000000000000 constant CBitFieldMaskBit11 (line 331) | CBitFieldMaskBit11 = 0x10000000000000 constant CBitFieldMaskBit12 (line 332) | CBitFieldMaskBit12 = 0x8000000000000 constant CBitFieldMaskBit13 (line 333) | CBitFieldMaskBit13 = 0x4000000000000 constant CBitFieldMaskBit14 (line 334) | CBitFieldMaskBit14 = 0x2000000000000 constant CBitFieldMaskBit15 (line 335) | CBitFieldMaskBit15 = 0x1000000000000 constant CBitFieldMaskBit16 (line 336) | CBitFieldMaskBit16 = 0x800000000000 constant CBitFieldMaskBit17 (line 337) | CBitFieldMaskBit17 = 0x400000000000 constant CBitFieldMaskBit18 (line 338) | CBitFieldMaskBit18 = 0x200000000000 constant CBitFieldMaskBit19 (line 339) | CBitFieldMaskBit19 = 0x100000000000 constant CBitFieldMaskBit20 (line 340) | CBitFieldMaskBit20 = 0x80000000000 constant CBitFieldMaskBit21 (line 341) | CBitFieldMaskBit21 = 0x40000000000 constant CBitFieldMaskBit22 (line 342) | CBitFieldMaskBit22 = 0x20000000000 constant CBitFieldMaskBit23 (line 343) | CBitFieldMaskBit23 = 0x10000000000 constant CBitFieldMaskBit24 (line 344) | CBitFieldMaskBit24 = 0x8000000000 constant CBitFieldMaskBit25 (line 345) | CBitFieldMaskBit25 = 0x4000000000 constant CBitFieldMaskBit26 (line 346) | CBitFieldMaskBit26 = 0x2000000000 constant CBitFieldMaskBit27 (line 347) | CBitFieldMaskBit27 = 0x1000000000 constant CBitFieldMaskBit28 (line 348) | CBitFieldMaskBit28 = 0x800000000 constant CBitFieldMaskBit29 (line 349) | CBitFieldMaskBit29 = 0x400000000 constant CBitFieldMaskBit30 (line 350) | CBitFieldMaskBit30 = 0x200000000 constant CBitFieldMaskBit31 (line 351) | CBitFieldMaskBit31 = 0x100000000 constant CBitFieldMaskBit32 (line 352) | CBitFieldMaskBit32 = 0x80000000 constant CBitFieldMaskBit33 (line 353) | CBitFieldMaskBit33 = 0x40000000 constant CBitFieldMaskBit34 (line 354) | CBitFieldMaskBit34 = 0x20000000 constant CBitFieldMaskBit35 (line 355) | CBitFieldMaskBit35 = 0x10000000 constant CBitFieldMaskBit36 (line 356) | CBitFieldMaskBit36 = 0x8000000 constant CBitFieldMaskBit37 (line 357) | CBitFieldMaskBit37 = 0x4000000 constant CBitFieldMaskBit38 (line 358) | CBitFieldMaskBit38 = 0x2000000 constant CBitFieldMaskBit39 (line 359) | CBitFieldMaskBit39 = 0x1000000 constant CBitFieldMaskBit40 (line 360) | CBitFieldMaskBit40 = 0x800000 constant CBitFieldMaskBit41 (line 361) | CBitFieldMaskBit41 = 0x400000 constant CBitFieldMaskBit42 (line 362) | CBitFieldMaskBit42 = 0x200000 constant CBitFieldMaskBit43 (line 363) | CBitFieldMaskBit43 = 0x100000 constant CBitFieldMaskBit44 (line 364) | CBitFieldMaskBit44 = 0x80000 constant CBitFieldMaskBit45 (line 365) | CBitFieldMaskBit45 = 0x40000 constant CBitFieldMaskBit46 (line 366) | CBitFieldMaskBit46 = 0x20000 constant CBitFieldMaskBit47 (line 367) | CBitFieldMaskBit47 = 0x10000 constant CBitFieldMaskBit48 (line 368) | CBitFieldMaskBit48 = 0x8000 constant CBitFieldMaskBit49 (line 369) | CBitFieldMaskBit49 = 0x4000 constant CBitFieldMaskBit50 (line 370) | CBitFieldMaskBit50 = 0x2000 constant CBitFieldMaskBit51 (line 371) | CBitFieldMaskBit51 = 0x1000 constant CBitFieldMaskBit52 (line 372) | CBitFieldMaskBit52 = 0x800 constant CBitFieldMaskBit53 (line 373) | CBitFieldMaskBit53 = 0x400 constant CBitFieldMaskBit54 (line 374) | CBitFieldMaskBit54 = 0x200 constant CBitFieldMaskBit55 (line 375) | CBitFieldMaskBit55 = 0x100 constant CBitFieldMaskBit56 (line 376) | CBitFieldMaskBit56 = 0x80 constant CBitFieldMaskBit57 (line 377) | CBitFieldMaskBit57 = 0x40 constant CBitFieldMaskBit58 (line 378) | CBitFieldMaskBit58 = 0x20 constant CBitFieldMaskBit59 (line 379) | CBitFieldMaskBit59 = 0x10 constant CBitFieldMaskBit60 (line 380) | CBitFieldMaskBit60 = 0x8 constant CBitFieldMaskBit61 (line 381) | CBitFieldMaskBit61 = 0x4 constant CBitFieldMaskBit62 (line 382) | CBitFieldMaskBit62 = 0x2 constant CBitFieldMaskBit63 (line 383) | CBitFieldMaskBit63 = 0x1 type SockaddrStorage (line 386) | type SockaddrStorage struct type HDGeometry (line 392) | type HDGeometry struct type Statfs_t (line 399) | type Statfs_t struct type TpacketHdr (line 414) | type TpacketHdr struct constant SizeofTpacketHdr (line 426) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 429) | type RTCPLLInfo struct type BlkpgPartition (line 439) | type BlkpgPartition struct constant BLKPG (line 449) | BLKPG = 0x20001269 type XDPUmemReg (line 452) | type XDPUmemReg struct type CryptoUserAlg (line 461) | type CryptoUserAlg struct type CryptoStatAEAD (line 471) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 480) | type CryptoStatAKCipher struct type CryptoStatCipher (line 491) | type CryptoStatCipher struct type CryptoStatCompress (line 500) | type CryptoStatCompress struct type CryptoStatHash (line 509) | type CryptoStatHash struct type CryptoStatKPP (line 516) | type CryptoStatKPP struct type CryptoStatRNG (line 524) | type CryptoStatRNG struct type CryptoStatLarval (line 532) | type CryptoStatLarval struct type CryptoReportLarval (line 536) | type CryptoReportLarval struct type CryptoReportHash (line 540) | type CryptoReportHash struct type CryptoReportCipher (line 546) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 553) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 562) | type CryptoReportAEAD struct type CryptoReportComp (line 570) | type CryptoReportComp struct type CryptoReportRNG (line 574) | type CryptoReportRNG struct type CryptoReportAKCipher (line 579) | type CryptoReportAKCipher struct type CryptoReportKPP (line 583) | type CryptoReportKPP struct type CryptoReportAcomp (line 587) | type CryptoReportAcomp struct type LoopInfo (line 591) | type LoopInfo struct type TIPCSubscr (line 607) | type TIPCSubscr struct type TIPCSIOCLNReq (line 614) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 620) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 625) | type PPSKInfo struct constant PPS_GETPARAMS (line 635) | PPS_GETPARAMS = 0x400870a1 constant PPS_SETPARAMS (line 636) | PPS_SETPARAMS = 0x800870a2 constant PPS_GETCAP (line 637) | PPS_GETCAP = 0x400870a3 constant PPS_FETCH (line 638) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 105) | type Dirent struct type Flock_t (line 114) | type Flock_t struct type DmNameList (line 123) | type DmNameList struct constant FADV_DONTNEED (line 131) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 132) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 135) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 146) | type RawSockaddr struct type RawSockaddrAny (line 151) | type RawSockaddrAny struct type Iovec (line 156) | type Iovec struct type Msghdr (line 161) | type Msghdr struct type Cmsghdr (line 172) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 179) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 180) | SizeofIovec = 0x10 constant SizeofMsghdr (line 181) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 182) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 186) | SizeofSockFprog = 0x10 type PtraceRegs (line 189) | type PtraceRegs struct type FdSet (line 205) | type FdSet struct type Sysinfo_t (line 209) | type Sysinfo_t struct type Ustat_t (line 227) | type Ustat_t struct type EpollEvent (line 235) | type EpollEvent struct constant POLLRDHUP (line 243) | POLLRDHUP = 0x2000 type Sigset_t (line 246) | type Sigset_t struct constant _C__NSIG (line 250) | _C__NSIG = 0x41 type Termios (line 252) | type Termios struct type Taskstats (line 263) | type Taskstats struct type cpuMask (line 313) | type cpuMask constant _NCPUBITS (line 316) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 320) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 321) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 322) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 323) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 324) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 325) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 326) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 327) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 328) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 329) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 330) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 331) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 332) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 333) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 334) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 335) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 336) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 337) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 338) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 339) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 340) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 341) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 342) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 343) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 344) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 345) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 346) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 347) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 348) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 349) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 350) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 351) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 352) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 353) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 354) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 355) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 356) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 357) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 358) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 359) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 360) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 361) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 362) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 363) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 364) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 365) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 366) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 367) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 368) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 369) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 370) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 371) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 372) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 373) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 374) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 375) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 376) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 377) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 378) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 379) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 380) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 381) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 382) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 383) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 386) | type SockaddrStorage struct type HDGeometry (line 392) | type HDGeometry struct type Statfs_t (line 399) | type Statfs_t struct type TpacketHdr (line 414) | type TpacketHdr struct constant SizeofTpacketHdr (line 426) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 429) | type RTCPLLInfo struct type BlkpgPartition (line 439) | type BlkpgPartition struct constant BLKPG (line 449) | BLKPG = 0x20001269 type XDPUmemReg (line 452) | type XDPUmemReg struct type CryptoUserAlg (line 461) | type CryptoUserAlg struct type CryptoStatAEAD (line 471) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 480) | type CryptoStatAKCipher struct type CryptoStatCipher (line 491) | type CryptoStatCipher struct type CryptoStatCompress (line 500) | type CryptoStatCompress struct type CryptoStatHash (line 509) | type CryptoStatHash struct type CryptoStatKPP (line 516) | type CryptoStatKPP struct type CryptoStatRNG (line 524) | type CryptoStatRNG struct type CryptoStatLarval (line 532) | type CryptoStatLarval struct type CryptoReportLarval (line 536) | type CryptoReportLarval struct type CryptoReportHash (line 540) | type CryptoReportHash struct type CryptoReportCipher (line 546) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 553) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 562) | type CryptoReportAEAD struct type CryptoReportComp (line 570) | type CryptoReportComp struct type CryptoReportRNG (line 574) | type CryptoReportRNG struct type CryptoReportAKCipher (line 579) | type CryptoReportAKCipher struct type CryptoReportKPP (line 583) | type CryptoReportKPP struct type CryptoReportAcomp (line 587) | type CryptoReportAcomp struct type LoopInfo (line 591) | type LoopInfo struct type TIPCSubscr (line 607) | type TIPCSubscr struct type TIPCSIOCLNReq (line 614) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 620) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 625) | type PPSKInfo struct constant PPS_GETPARAMS (line 635) | PPS_GETPARAMS = 0x400870a1 constant PPS_SETPARAMS (line 636) | PPS_SETPARAMS = 0x800870a2 constant PPS_GETCAP (line 637) | PPS_GETCAP = 0x400870a3 constant PPS_FETCH (line 638) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 104) | type Dirent struct type Flock_t (line 113) | type Flock_t struct type DmNameList (line 122) | type DmNameList struct constant FADV_DONTNEED (line 130) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 131) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 134) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 145) | type RawSockaddr struct type RawSockaddrAny (line 150) | type RawSockaddrAny struct type Iovec (line 155) | type Iovec struct type Msghdr (line 160) | type Msghdr struct type Cmsghdr (line 171) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 178) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 179) | SizeofIovec = 0x10 constant SizeofMsghdr (line 180) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 181) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 185) | SizeofSockFprog = 0x10 type PtraceRegs (line 188) | type PtraceRegs struct type FdSet (line 223) | type FdSet struct type Sysinfo_t (line 227) | type Sysinfo_t struct type Ustat_t (line 245) | type Ustat_t struct type EpollEvent (line 253) | type EpollEvent struct constant POLLRDHUP (line 261) | POLLRDHUP = 0x2000 type Sigset_t (line 264) | type Sigset_t struct constant _C__NSIG (line 268) | _C__NSIG = 0x41 type Termios (line 270) | type Termios struct type Taskstats (line 281) | type Taskstats struct type cpuMask (line 331) | type cpuMask constant _NCPUBITS (line 334) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 338) | CBitFieldMaskBit0 = 0x1 constant CBitFieldMaskBit1 (line 339) | CBitFieldMaskBit1 = 0x2 constant CBitFieldMaskBit2 (line 340) | CBitFieldMaskBit2 = 0x4 constant CBitFieldMaskBit3 (line 341) | CBitFieldMaskBit3 = 0x8 constant CBitFieldMaskBit4 (line 342) | CBitFieldMaskBit4 = 0x10 constant CBitFieldMaskBit5 (line 343) | CBitFieldMaskBit5 = 0x20 constant CBitFieldMaskBit6 (line 344) | CBitFieldMaskBit6 = 0x40 constant CBitFieldMaskBit7 (line 345) | CBitFieldMaskBit7 = 0x80 constant CBitFieldMaskBit8 (line 346) | CBitFieldMaskBit8 = 0x100 constant CBitFieldMaskBit9 (line 347) | CBitFieldMaskBit9 = 0x200 constant CBitFieldMaskBit10 (line 348) | CBitFieldMaskBit10 = 0x400 constant CBitFieldMaskBit11 (line 349) | CBitFieldMaskBit11 = 0x800 constant CBitFieldMaskBit12 (line 350) | CBitFieldMaskBit12 = 0x1000 constant CBitFieldMaskBit13 (line 351) | CBitFieldMaskBit13 = 0x2000 constant CBitFieldMaskBit14 (line 352) | CBitFieldMaskBit14 = 0x4000 constant CBitFieldMaskBit15 (line 353) | CBitFieldMaskBit15 = 0x8000 constant CBitFieldMaskBit16 (line 354) | CBitFieldMaskBit16 = 0x10000 constant CBitFieldMaskBit17 (line 355) | CBitFieldMaskBit17 = 0x20000 constant CBitFieldMaskBit18 (line 356) | CBitFieldMaskBit18 = 0x40000 constant CBitFieldMaskBit19 (line 357) | CBitFieldMaskBit19 = 0x80000 constant CBitFieldMaskBit20 (line 358) | CBitFieldMaskBit20 = 0x100000 constant CBitFieldMaskBit21 (line 359) | CBitFieldMaskBit21 = 0x200000 constant CBitFieldMaskBit22 (line 360) | CBitFieldMaskBit22 = 0x400000 constant CBitFieldMaskBit23 (line 361) | CBitFieldMaskBit23 = 0x800000 constant CBitFieldMaskBit24 (line 362) | CBitFieldMaskBit24 = 0x1000000 constant CBitFieldMaskBit25 (line 363) | CBitFieldMaskBit25 = 0x2000000 constant CBitFieldMaskBit26 (line 364) | CBitFieldMaskBit26 = 0x4000000 constant CBitFieldMaskBit27 (line 365) | CBitFieldMaskBit27 = 0x8000000 constant CBitFieldMaskBit28 (line 366) | CBitFieldMaskBit28 = 0x10000000 constant CBitFieldMaskBit29 (line 367) | CBitFieldMaskBit29 = 0x20000000 constant CBitFieldMaskBit30 (line 368) | CBitFieldMaskBit30 = 0x40000000 constant CBitFieldMaskBit31 (line 369) | CBitFieldMaskBit31 = 0x80000000 constant CBitFieldMaskBit32 (line 370) | CBitFieldMaskBit32 = 0x100000000 constant CBitFieldMaskBit33 (line 371) | CBitFieldMaskBit33 = 0x200000000 constant CBitFieldMaskBit34 (line 372) | CBitFieldMaskBit34 = 0x400000000 constant CBitFieldMaskBit35 (line 373) | CBitFieldMaskBit35 = 0x800000000 constant CBitFieldMaskBit36 (line 374) | CBitFieldMaskBit36 = 0x1000000000 constant CBitFieldMaskBit37 (line 375) | CBitFieldMaskBit37 = 0x2000000000 constant CBitFieldMaskBit38 (line 376) | CBitFieldMaskBit38 = 0x4000000000 constant CBitFieldMaskBit39 (line 377) | CBitFieldMaskBit39 = 0x8000000000 constant CBitFieldMaskBit40 (line 378) | CBitFieldMaskBit40 = 0x10000000000 constant CBitFieldMaskBit41 (line 379) | CBitFieldMaskBit41 = 0x20000000000 constant CBitFieldMaskBit42 (line 380) | CBitFieldMaskBit42 = 0x40000000000 constant CBitFieldMaskBit43 (line 381) | CBitFieldMaskBit43 = 0x80000000000 constant CBitFieldMaskBit44 (line 382) | CBitFieldMaskBit44 = 0x100000000000 constant CBitFieldMaskBit45 (line 383) | CBitFieldMaskBit45 = 0x200000000000 constant CBitFieldMaskBit46 (line 384) | CBitFieldMaskBit46 = 0x400000000000 constant CBitFieldMaskBit47 (line 385) | CBitFieldMaskBit47 = 0x800000000000 constant CBitFieldMaskBit48 (line 386) | CBitFieldMaskBit48 = 0x1000000000000 constant CBitFieldMaskBit49 (line 387) | CBitFieldMaskBit49 = 0x2000000000000 constant CBitFieldMaskBit50 (line 388) | CBitFieldMaskBit50 = 0x4000000000000 constant CBitFieldMaskBit51 (line 389) | CBitFieldMaskBit51 = 0x8000000000000 constant CBitFieldMaskBit52 (line 390) | CBitFieldMaskBit52 = 0x10000000000000 constant CBitFieldMaskBit53 (line 391) | CBitFieldMaskBit53 = 0x20000000000000 constant CBitFieldMaskBit54 (line 392) | CBitFieldMaskBit54 = 0x40000000000000 constant CBitFieldMaskBit55 (line 393) | CBitFieldMaskBit55 = 0x80000000000000 constant CBitFieldMaskBit56 (line 394) | CBitFieldMaskBit56 = 0x100000000000000 constant CBitFieldMaskBit57 (line 395) | CBitFieldMaskBit57 = 0x200000000000000 constant CBitFieldMaskBit58 (line 396) | CBitFieldMaskBit58 = 0x400000000000000 constant CBitFieldMaskBit59 (line 397) | CBitFieldMaskBit59 = 0x800000000000000 constant CBitFieldMaskBit60 (line 398) | CBitFieldMaskBit60 = 0x1000000000000000 constant CBitFieldMaskBit61 (line 399) | CBitFieldMaskBit61 = 0x2000000000000000 constant CBitFieldMaskBit62 (line 400) | CBitFieldMaskBit62 = 0x4000000000000000 constant CBitFieldMaskBit63 (line 401) | CBitFieldMaskBit63 = 0x8000000000000000 type SockaddrStorage (line 404) | type SockaddrStorage struct type HDGeometry (line 410) | type HDGeometry struct type Statfs_t (line 417) | type Statfs_t struct type TpacketHdr (line 432) | type TpacketHdr struct constant SizeofTpacketHdr (line 444) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 447) | type RTCPLLInfo struct type BlkpgPartition (line 457) | type BlkpgPartition struct constant BLKPG (line 467) | BLKPG = 0x1269 type XDPUmemReg (line 470) | type XDPUmemReg struct type CryptoUserAlg (line 479) | type CryptoUserAlg struct type CryptoStatAEAD (line 489) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 498) | type CryptoStatAKCipher struct type CryptoStatCipher (line 509) | type CryptoStatCipher struct type CryptoStatCompress (line 518) | type CryptoStatCompress struct type CryptoStatHash (line 527) | type CryptoStatHash struct type CryptoStatKPP (line 534) | type CryptoStatKPP struct type CryptoStatRNG (line 542) | type CryptoStatRNG struct type CryptoStatLarval (line 550) | type CryptoStatLarval struct type CryptoReportLarval (line 554) | type CryptoReportLarval struct type CryptoReportHash (line 558) | type CryptoReportHash struct type CryptoReportCipher (line 564) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 571) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 580) | type CryptoReportAEAD struct type CryptoReportComp (line 588) | type CryptoReportComp struct type CryptoReportRNG (line 592) | type CryptoReportRNG struct type CryptoReportAKCipher (line 597) | type CryptoReportAKCipher struct type CryptoReportKPP (line 601) | type CryptoReportKPP struct type CryptoReportAcomp (line 605) | type CryptoReportAcomp struct type LoopInfo (line 609) | type LoopInfo struct type TIPCSubscr (line 625) | type TIPCSubscr struct type TIPCSIOCLNReq (line 632) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 638) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 643) | type PPSKInfo struct constant PPS_GETPARAMS (line 653) | PPS_GETPARAMS = 0x800870a1 constant PPS_SETPARAMS (line 654) | PPS_SETPARAMS = 0x400870a2 constant PPS_GETCAP (line 655) | PPS_GETCAP = 0x800870a3 constant PPS_FETCH (line 656) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 28) | type Timex struct type Time_t (line 52) | type Time_t type Tms (line 54) | type Tms struct type Utimbuf (line 61) | type Utimbuf struct type Rusage (line 66) | type Rusage struct type Stat_t (line 85) | type Stat_t struct type Dirent (line 103) | type Dirent struct type Flock_t (line 112) | type Flock_t struct type DmNameList (line 121) | type DmNameList struct constant FADV_DONTNEED (line 129) | FADV_DONTNEED = 0x6 constant FADV_NOREUSE (line 130) | FADV_NOREUSE = 0x7 type RawSockaddrNFCLLCP (line 133) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 144) | type RawSockaddr struct type RawSockaddrAny (line 149) | type RawSockaddrAny struct type Iovec (line 154) | type Iovec struct type Msghdr (line 159) | type Msghdr struct type Cmsghdr (line 170) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 177) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 178) | SizeofIovec = 0x10 constant SizeofMsghdr (line 179) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 180) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 184) | SizeofSockFprog = 0x10 type PtraceRegs (line 187) | type PtraceRegs struct type PtracePsw (line 197) | type PtracePsw struct type PtraceFpregs (line 202) | type PtraceFpregs struct type PtracePer (line 207) | type PtracePer struct type FdSet (line 218) | type FdSet struct type Sysinfo_t (line 222) | type Sysinfo_t struct type Ustat_t (line 240) | type Ustat_t struct type EpollEvent (line 248) | type EpollEvent struct constant POLLRDHUP (line 256) | POLLRDHUP = 0x2000 type Sigset_t (line 259) | type Sigset_t struct constant _C__NSIG (line 263) | _C__NSIG = 0x41 type Termios (line 265) | type Termios struct type Taskstats (line 276) | type Taskstats struct type cpuMask (line 326) | type cpuMask constant _NCPUBITS (line 329) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 333) | CBitFieldMaskBit0 = 0x8000000000000000 constant CBitFieldMaskBit1 (line 334) | CBitFieldMaskBit1 = 0x4000000000000000 constant CBitFieldMaskBit2 (line 335) | CBitFieldMaskBit2 = 0x2000000000000000 constant CBitFieldMaskBit3 (line 336) | CBitFieldMaskBit3 = 0x1000000000000000 constant CBitFieldMaskBit4 (line 337) | CBitFieldMaskBit4 = 0x800000000000000 constant CBitFieldMaskBit5 (line 338) | CBitFieldMaskBit5 = 0x400000000000000 constant CBitFieldMaskBit6 (line 339) | CBitFieldMaskBit6 = 0x200000000000000 constant CBitFieldMaskBit7 (line 340) | CBitFieldMaskBit7 = 0x100000000000000 constant CBitFieldMaskBit8 (line 341) | CBitFieldMaskBit8 = 0x80000000000000 constant CBitFieldMaskBit9 (line 342) | CBitFieldMaskBit9 = 0x40000000000000 constant CBitFieldMaskBit10 (line 343) | CBitFieldMaskBit10 = 0x20000000000000 constant CBitFieldMaskBit11 (line 344) | CBitFieldMaskBit11 = 0x10000000000000 constant CBitFieldMaskBit12 (line 345) | CBitFieldMaskBit12 = 0x8000000000000 constant CBitFieldMaskBit13 (line 346) | CBitFieldMaskBit13 = 0x4000000000000 constant CBitFieldMaskBit14 (line 347) | CBitFieldMaskBit14 = 0x2000000000000 constant CBitFieldMaskBit15 (line 348) | CBitFieldMaskBit15 = 0x1000000000000 constant CBitFieldMaskBit16 (line 349) | CBitFieldMaskBit16 = 0x800000000000 constant CBitFieldMaskBit17 (line 350) | CBitFieldMaskBit17 = 0x400000000000 constant CBitFieldMaskBit18 (line 351) | CBitFieldMaskBit18 = 0x200000000000 constant CBitFieldMaskBit19 (line 352) | CBitFieldMaskBit19 = 0x100000000000 constant CBitFieldMaskBit20 (line 353) | CBitFieldMaskBit20 = 0x80000000000 constant CBitFieldMaskBit21 (line 354) | CBitFieldMaskBit21 = 0x40000000000 constant CBitFieldMaskBit22 (line 355) | CBitFieldMaskBit22 = 0x20000000000 constant CBitFieldMaskBit23 (line 356) | CBitFieldMaskBit23 = 0x10000000000 constant CBitFieldMaskBit24 (line 357) | CBitFieldMaskBit24 = 0x8000000000 constant CBitFieldMaskBit25 (line 358) | CBitFieldMaskBit25 = 0x4000000000 constant CBitFieldMaskBit26 (line 359) | CBitFieldMaskBit26 = 0x2000000000 constant CBitFieldMaskBit27 (line 360) | CBitFieldMaskBit27 = 0x1000000000 constant CBitFieldMaskBit28 (line 361) | CBitFieldMaskBit28 = 0x800000000 constant CBitFieldMaskBit29 (line 362) | CBitFieldMaskBit29 = 0x400000000 constant CBitFieldMaskBit30 (line 363) | CBitFieldMaskBit30 = 0x200000000 constant CBitFieldMaskBit31 (line 364) | CBitFieldMaskBit31 = 0x100000000 constant CBitFieldMaskBit32 (line 365) | CBitFieldMaskBit32 = 0x80000000 constant CBitFieldMaskBit33 (line 366) | CBitFieldMaskBit33 = 0x40000000 constant CBitFieldMaskBit34 (line 367) | CBitFieldMaskBit34 = 0x20000000 constant CBitFieldMaskBit35 (line 368) | CBitFieldMaskBit35 = 0x10000000 constant CBitFieldMaskBit36 (line 369) | CBitFieldMaskBit36 = 0x8000000 constant CBitFieldMaskBit37 (line 370) | CBitFieldMaskBit37 = 0x4000000 constant CBitFieldMaskBit38 (line 371) | CBitFieldMaskBit38 = 0x2000000 constant CBitFieldMaskBit39 (line 372) | CBitFieldMaskBit39 = 0x1000000 constant CBitFieldMaskBit40 (line 373) | CBitFieldMaskBit40 = 0x800000 constant CBitFieldMaskBit41 (line 374) | CBitFieldMaskBit41 = 0x400000 constant CBitFieldMaskBit42 (line 375) | CBitFieldMaskBit42 = 0x200000 constant CBitFieldMaskBit43 (line 376) | CBitFieldMaskBit43 = 0x100000 constant CBitFieldMaskBit44 (line 377) | CBitFieldMaskBit44 = 0x80000 constant CBitFieldMaskBit45 (line 378) | CBitFieldMaskBit45 = 0x40000 constant CBitFieldMaskBit46 (line 379) | CBitFieldMaskBit46 = 0x20000 constant CBitFieldMaskBit47 (line 380) | CBitFieldMaskBit47 = 0x10000 constant CBitFieldMaskBit48 (line 381) | CBitFieldMaskBit48 = 0x8000 constant CBitFieldMaskBit49 (line 382) | CBitFieldMaskBit49 = 0x4000 constant CBitFieldMaskBit50 (line 383) | CBitFieldMaskBit50 = 0x2000 constant CBitFieldMaskBit51 (line 384) | CBitFieldMaskBit51 = 0x1000 constant CBitFieldMaskBit52 (line 385) | CBitFieldMaskBit52 = 0x800 constant CBitFieldMaskBit53 (line 386) | CBitFieldMaskBit53 = 0x400 constant CBitFieldMaskBit54 (line 387) | CBitFieldMaskBit54 = 0x200 constant CBitFieldMaskBit55 (line 388) | CBitFieldMaskBit55 = 0x100 constant CBitFieldMaskBit56 (line 389) | CBitFieldMaskBit56 = 0x80 constant CBitFieldMaskBit57 (line 390) | CBitFieldMaskBit57 = 0x40 constant CBitFieldMaskBit58 (line 391) | CBitFieldMaskBit58 = 0x20 constant CBitFieldMaskBit59 (line 392) | CBitFieldMaskBit59 = 0x10 constant CBitFieldMaskBit60 (line 393) | CBitFieldMaskBit60 = 0x8 constant CBitFieldMaskBit61 (line 394) | CBitFieldMaskBit61 = 0x4 constant CBitFieldMaskBit62 (line 395) | CBitFieldMaskBit62 = 0x2 constant CBitFieldMaskBit63 (line 396) | CBitFieldMaskBit63 = 0x1 type SockaddrStorage (line 399) | type SockaddrStorage struct type HDGeometry (line 405) | type HDGeometry struct type Statfs_t (line 412) | type Statfs_t struct type TpacketHdr (line 428) | type TpacketHdr struct constant SizeofTpacketHdr (line 440) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 443) | type RTCPLLInfo struct type BlkpgPartition (line 453) | type BlkpgPartition struct constant BLKPG (line 463) | BLKPG = 0x1269 type XDPUmemReg (line 466) | type XDPUmemReg struct type CryptoUserAlg (line 475) | type CryptoUserAlg struct type CryptoStatAEAD (line 485) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 494) | type CryptoStatAKCipher struct type CryptoStatCipher (line 505) | type CryptoStatCipher struct type CryptoStatCompress (line 514) | type CryptoStatCompress struct type CryptoStatHash (line 523) | type CryptoStatHash struct type CryptoStatKPP (line 530) | type CryptoStatKPP struct type CryptoStatRNG (line 538) | type CryptoStatRNG struct type CryptoStatLarval (line 546) | type CryptoStatLarval struct type CryptoReportLarval (line 550) | type CryptoReportLarval struct type CryptoReportHash (line 554) | type CryptoReportHash struct type CryptoReportCipher (line 560) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 567) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 576) | type CryptoReportAEAD struct type CryptoReportComp (line 584) | type CryptoReportComp struct type CryptoReportRNG (line 588) | type CryptoReportRNG struct type CryptoReportAKCipher (line 593) | type CryptoReportAKCipher struct type CryptoReportKPP (line 597) | type CryptoReportKPP struct type CryptoReportAcomp (line 601) | type CryptoReportAcomp struct type LoopInfo (line 605) | type LoopInfo struct type TIPCSubscr (line 621) | type TIPCSubscr struct type TIPCSIOCLNReq (line 628) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 634) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 639) | type PPSKInfo struct constant PPS_GETPARAMS (line 649) | PPS_GETPARAMS = 0x800870a1 constant PPS_SETPARAMS (line 650) | PPS_SETPARAMS = 0x400870a2 constant PPS_GETCAP (line 651) | PPS_GETCAP = 0x800870a3 constant PPS_FETCH (line 652) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofLong (line 11) | SizeofLong = 0x8 type _C_long (line 15) | type _C_long type Timespec (line 18) | type Timespec struct type Timeval (line 23) | type Timeval struct type Timex (line 29) | type Timex struct type Time_t (line 53) | type Time_t type Tms (line 55) | type Tms struct type Utimbuf (line 62) | type Utimbuf struct type Rusage (line 67) | type Rusage struct type Stat_t (line 86) | type Stat_t struct type Dirent (line 106) | type Dirent struct type Flock_t (line 115) | type Flock_t struct type DmNameList (line 125) | type DmNameList struct constant FADV_DONTNEED (line 133) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 134) | FADV_NOREUSE = 0x5 type RawSockaddrNFCLLCP (line 137) | type RawSockaddrNFCLLCP struct type RawSockaddr (line 148) | type RawSockaddr struct type RawSockaddrAny (line 153) | type RawSockaddrAny struct type Iovec (line 158) | type Iovec struct type Msghdr (line 163) | type Msghdr struct type Cmsghdr (line 174) | type Cmsghdr struct constant SizeofSockaddrNFCLLCP (line 181) | SizeofSockaddrNFCLLCP = 0x60 constant SizeofIovec (line 182) | SizeofIovec = 0x10 constant SizeofMsghdr (line 183) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 184) | SizeofCmsghdr = 0x10 constant SizeofSockFprog (line 188) | SizeofSockFprog = 0x10 type PtraceRegs (line 191) | type PtraceRegs struct type FdSet (line 200) | type FdSet struct type Sysinfo_t (line 204) | type Sysinfo_t struct type Ustat_t (line 222) | type Ustat_t struct type EpollEvent (line 230) | type EpollEvent struct constant POLLRDHUP (line 238) | POLLRDHUP = 0x800 type Sigset_t (line 241) | type Sigset_t struct constant _C__NSIG (line 245) | _C__NSIG = 0x41 type Termios (line 247) | type Termios struct type Taskstats (line 258) | type Taskstats struct type cpuMask (line 308) | type cpuMask constant _NCPUBITS (line 311) | _NCPUBITS = 0x40 constant CBitFieldMaskBit0 (line 315) | CBitFieldMaskBit0 = 0x8000000000000000 constant CBitFieldMaskBit1 (line 316) | CBitFieldMaskBit1 = 0x4000000000000000 constant CBitFieldMaskBit2 (line 317) | CBitFieldMaskBit2 = 0x2000000000000000 constant CBitFieldMaskBit3 (line 318) | CBitFieldMaskBit3 = 0x1000000000000000 constant CBitFieldMaskBit4 (line 319) | CBitFieldMaskBit4 = 0x800000000000000 constant CBitFieldMaskBit5 (line 320) | CBitFieldMaskBit5 = 0x400000000000000 constant CBitFieldMaskBit6 (line 321) | CBitFieldMaskBit6 = 0x200000000000000 constant CBitFieldMaskBit7 (line 322) | CBitFieldMaskBit7 = 0x100000000000000 constant CBitFieldMaskBit8 (line 323) | CBitFieldMaskBit8 = 0x80000000000000 constant CBitFieldMaskBit9 (line 324) | CBitFieldMaskBit9 = 0x40000000000000 constant CBitFieldMaskBit10 (line 325) | CBitFieldMaskBit10 = 0x20000000000000 constant CBitFieldMaskBit11 (line 326) | CBitFieldMaskBit11 = 0x10000000000000 constant CBitFieldMaskBit12 (line 327) | CBitFieldMaskBit12 = 0x8000000000000 constant CBitFieldMaskBit13 (line 328) | CBitFieldMaskBit13 = 0x4000000000000 constant CBitFieldMaskBit14 (line 329) | CBitFieldMaskBit14 = 0x2000000000000 constant CBitFieldMaskBit15 (line 330) | CBitFieldMaskBit15 = 0x1000000000000 constant CBitFieldMaskBit16 (line 331) | CBitFieldMaskBit16 = 0x800000000000 constant CBitFieldMaskBit17 (line 332) | CBitFieldMaskBit17 = 0x400000000000 constant CBitFieldMaskBit18 (line 333) | CBitFieldMaskBit18 = 0x200000000000 constant CBitFieldMaskBit19 (line 334) | CBitFieldMaskBit19 = 0x100000000000 constant CBitFieldMaskBit20 (line 335) | CBitFieldMaskBit20 = 0x80000000000 constant CBitFieldMaskBit21 (line 336) | CBitFieldMaskBit21 = 0x40000000000 constant CBitFieldMaskBit22 (line 337) | CBitFieldMaskBit22 = 0x20000000000 constant CBitFieldMaskBit23 (line 338) | CBitFieldMaskBit23 = 0x10000000000 constant CBitFieldMaskBit24 (line 339) | CBitFieldMaskBit24 = 0x8000000000 constant CBitFieldMaskBit25 (line 340) | CBitFieldMaskBit25 = 0x4000000000 constant CBitFieldMaskBit26 (line 341) | CBitFieldMaskBit26 = 0x2000000000 constant CBitFieldMaskBit27 (line 342) | CBitFieldMaskBit27 = 0x1000000000 constant CBitFieldMaskBit28 (line 343) | CBitFieldMaskBit28 = 0x800000000 constant CBitFieldMaskBit29 (line 344) | CBitFieldMaskBit29 = 0x400000000 constant CBitFieldMaskBit30 (line 345) | CBitFieldMaskBit30 = 0x200000000 constant CBitFieldMaskBit31 (line 346) | CBitFieldMaskBit31 = 0x100000000 constant CBitFieldMaskBit32 (line 347) | CBitFieldMaskBit32 = 0x80000000 constant CBitFieldMaskBit33 (line 348) | CBitFieldMaskBit33 = 0x40000000 constant CBitFieldMaskBit34 (line 349) | CBitFieldMaskBit34 = 0x20000000 constant CBitFieldMaskBit35 (line 350) | CBitFieldMaskBit35 = 0x10000000 constant CBitFieldMaskBit36 (line 351) | CBitFieldMaskBit36 = 0x8000000 constant CBitFieldMaskBit37 (line 352) | CBitFieldMaskBit37 = 0x4000000 constant CBitFieldMaskBit38 (line 353) | CBitFieldMaskBit38 = 0x2000000 constant CBitFieldMaskBit39 (line 354) | CBitFieldMaskBit39 = 0x1000000 constant CBitFieldMaskBit40 (line 355) | CBitFieldMaskBit40 = 0x800000 constant CBitFieldMaskBit41 (line 356) | CBitFieldMaskBit41 = 0x400000 constant CBitFieldMaskBit42 (line 357) | CBitFieldMaskBit42 = 0x200000 constant CBitFieldMaskBit43 (line 358) | CBitFieldMaskBit43 = 0x100000 constant CBitFieldMaskBit44 (line 359) | CBitFieldMaskBit44 = 0x80000 constant CBitFieldMaskBit45 (line 360) | CBitFieldMaskBit45 = 0x40000 constant CBitFieldMaskBit46 (line 361) | CBitFieldMaskBit46 = 0x20000 constant CBitFieldMaskBit47 (line 362) | CBitFieldMaskBit47 = 0x10000 constant CBitFieldMaskBit48 (line 363) | CBitFieldMaskBit48 = 0x8000 constant CBitFieldMaskBit49 (line 364) | CBitFieldMaskBit49 = 0x4000 constant CBitFieldMaskBit50 (line 365) | CBitFieldMaskBit50 = 0x2000 constant CBitFieldMaskBit51 (line 366) | CBitFieldMaskBit51 = 0x1000 constant CBitFieldMaskBit52 (line 367) | CBitFieldMaskBit52 = 0x800 constant CBitFieldMaskBit53 (line 368) | CBitFieldMaskBit53 = 0x400 constant CBitFieldMaskBit54 (line 369) | CBitFieldMaskBit54 = 0x200 constant CBitFieldMaskBit55 (line 370) | CBitFieldMaskBit55 = 0x100 constant CBitFieldMaskBit56 (line 371) | CBitFieldMaskBit56 = 0x80 constant CBitFieldMaskBit57 (line 372) | CBitFieldMaskBit57 = 0x40 constant CBitFieldMaskBit58 (line 373) | CBitFieldMaskBit58 = 0x20 constant CBitFieldMaskBit59 (line 374) | CBitFieldMaskBit59 = 0x10 constant CBitFieldMaskBit60 (line 375) | CBitFieldMaskBit60 = 0x8 constant CBitFieldMaskBit61 (line 376) | CBitFieldMaskBit61 = 0x4 constant CBitFieldMaskBit62 (line 377) | CBitFieldMaskBit62 = 0x2 constant CBitFieldMaskBit63 (line 378) | CBitFieldMaskBit63 = 0x1 type SockaddrStorage (line 381) | type SockaddrStorage struct type HDGeometry (line 387) | type HDGeometry struct type Statfs_t (line 394) | type Statfs_t struct type TpacketHdr (line 409) | type TpacketHdr struct constant SizeofTpacketHdr (line 421) | SizeofTpacketHdr = 0x20 type RTCPLLInfo (line 424) | type RTCPLLInfo struct type BlkpgPartition (line 434) | type BlkpgPartition struct constant BLKPG (line 444) | BLKPG = 0x20001269 type XDPUmemReg (line 447) | type XDPUmemReg struct type CryptoUserAlg (line 456) | type CryptoUserAlg struct type CryptoStatAEAD (line 466) | type CryptoStatAEAD struct type CryptoStatAKCipher (line 475) | type CryptoStatAKCipher struct type CryptoStatCipher (line 486) | type CryptoStatCipher struct type CryptoStatCompress (line 495) | type CryptoStatCompress struct type CryptoStatHash (line 504) | type CryptoStatHash struct type CryptoStatKPP (line 511) | type CryptoStatKPP struct type CryptoStatRNG (line 519) | type CryptoStatRNG struct type CryptoStatLarval (line 527) | type CryptoStatLarval struct type CryptoReportLarval (line 531) | type CryptoReportLarval struct type CryptoReportHash (line 535) | type CryptoReportHash struct type CryptoReportCipher (line 541) | type CryptoReportCipher struct type CryptoReportBlkCipher (line 548) | type CryptoReportBlkCipher struct type CryptoReportAEAD (line 557) | type CryptoReportAEAD struct type CryptoReportComp (line 565) | type CryptoReportComp struct type CryptoReportRNG (line 569) | type CryptoReportRNG struct type CryptoReportAKCipher (line 574) | type CryptoReportAKCipher struct type CryptoReportKPP (line 578) | type CryptoReportKPP struct type CryptoReportAcomp (line 582) | type CryptoReportAcomp struct type LoopInfo (line 586) | type LoopInfo struct type TIPCSubscr (line 602) | type TIPCSubscr struct type TIPCSIOCLNReq (line 609) | type TIPCSIOCLNReq struct type TIPCSIOCNodeIDReq (line 615) | type TIPCSIOCNodeIDReq struct type PPSKInfo (line 620) | type PPSKInfo struct constant PPS_GETPARAMS (line 630) | PPS_GETPARAMS = 0x400870a1 constant PPS_SETPARAMS (line 631) | PPS_SETPARAMS = 0x800870a2 constant PPS_GETCAP (line 632) | PPS_GETCAP = 0x400870a3 constant PPS_FETCH (line 633) | PPS_FETCH = 0xc00870a4 FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_386.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 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 80) | type Statfs_t type Statvfs_t (line 82) | type Statvfs_t struct type Flock_t (line 109) | type Flock_t struct type Dirent (line 117) | type Dirent struct type Fsid (line 126) | type Fsid struct constant PathMax (line 131) | PathMax = 0x400 constant ST_WAIT (line 135) | ST_WAIT = 0x1 constant ST_NOWAIT (line 136) | ST_NOWAIT = 0x2 constant FADV_NORMAL (line 140) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 141) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 142) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 143) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 144) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 145) | FADV_NOREUSE = 0x5 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 Inet6Pktinfo (line 231) | type Inet6Pktinfo struct type IPv6MTUInfo (line 236) | type IPv6MTUInfo struct type ICMPv6Filter (line 241) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 246) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 247) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 248) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 249) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 250) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 251) | SizeofLinger = 0x8 constant SizeofIovec (line 252) | SizeofIovec = 0x8 constant SizeofIPMreq (line 253) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 254) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 255) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 256) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 257) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 258) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 259) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 263) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 264) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 265) | PTRACE_KILL = 0x8 type Kevent_t (line 268) | type Kevent_t struct type FdSet (line 277) | type FdSet struct constant SizeofIfMsghdr (line 282) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 283) | SizeofIfData = 0x84 constant SizeofIfaMsghdr (line 284) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 285) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 286) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 287) | SizeofRtMetrics = 0x50 type IfMsghdr (line 290) | type IfMsghdr struct type IfData (line 302) | type IfData struct type IfaMsghdr (line 325) | type IfaMsghdr struct type IfAnnounceMsghdr (line 336) | type IfAnnounceMsghdr struct type RtMsghdr (line 345) | type RtMsghdr struct type RtMetrics (line 362) | type RtMetrics struct type Mclpool (line 375) | type Mclpool constant SizeofBpfVersion (line 378) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 379) | SizeofBpfStat = 0x80 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 397) | type BpfProgram struct type BpfInsn (line 402) | type BpfInsn struct type BpfHdr (line 409) | type BpfHdr struct type BpfTimeval (line 417) | type BpfTimeval struct type Termios (line 422) | type Termios struct type Winsize (line 432) | type Winsize struct type Ptmget (line 439) | type Ptmget struct constant AT_FDCWD (line 447) | AT_FDCWD = -0x64 constant AT_EACCESS (line 448) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 449) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 450) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 451) | AT_REMOVEDIR = 0x800 type PollFd (line 454) | type PollFd struct constant POLLERR (line 461) | POLLERR = 0x8 constant POLLHUP (line 462) | POLLHUP = 0x10 constant POLLIN (line 463) | POLLIN = 0x1 constant POLLNVAL (line 464) | POLLNVAL = 0x20 constant POLLOUT (line 465) | POLLOUT = 0x4 constant POLLPRI (line 466) | POLLPRI = 0x2 constant POLLRDBAND (line 467) | POLLRDBAND = 0x80 constant POLLRDNORM (line 468) | POLLRDNORM = 0x40 constant POLLWRBAND (line 469) | POLLWRBAND = 0x100 constant POLLWRNORM (line 470) | POLLWRNORM = 0x4 type Sysctlnode (line 473) | type Sysctlnode struct type Utsname (line 486) | type Utsname struct constant SizeofClockinfo (line 494) | SizeofClockinfo = 0x14 type Clockinfo (line 496) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 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 Statvfs_t (line 86) | type Statvfs_t struct type Flock_t (line 114) | type Flock_t struct type Dirent (line 122) | type Dirent struct type Fsid (line 131) | type Fsid struct constant PathMax (line 136) | PathMax = 0x400 constant ST_WAIT (line 140) | ST_WAIT = 0x1 constant ST_NOWAIT (line 141) | ST_NOWAIT = 0x2 constant FADV_NORMAL (line 145) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 146) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 147) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 148) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 149) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 150) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 153) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 161) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 170) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 176) | type RawSockaddrDatalink struct type RawSockaddr (line 187) | type RawSockaddr struct type RawSockaddrAny (line 193) | type RawSockaddrAny struct type _Socklen (line 198) | type _Socklen type Linger (line 200) | type Linger struct type Iovec (line 205) | type Iovec struct type IPMreq (line 210) | type IPMreq struct type IPv6Mreq (line 215) | type IPv6Mreq struct type Msghdr (line 220) | type Msghdr struct type Cmsghdr (line 232) | type Cmsghdr struct type 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 SizeofIovec (line 259) | SizeofIovec = 0x10 constant SizeofIPMreq (line 260) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 261) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 262) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 263) | SizeofCmsghdr = 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 285) | type FdSet struct constant SizeofIfMsghdr (line 290) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 291) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 292) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 293) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 294) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 295) | SizeofRtMetrics = 0x50 type IfMsghdr (line 298) | type IfMsghdr struct type IfData (line 309) | type IfData struct type IfaMsghdr (line 332) | type IfaMsghdr struct type IfAnnounceMsghdr (line 343) | type IfAnnounceMsghdr struct type RtMsghdr (line 352) | type RtMsghdr struct type RtMetrics (line 369) | type RtMetrics struct type Mclpool (line 382) | type Mclpool constant SizeofBpfVersion (line 385) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 386) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 387) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 388) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 389) | SizeofBpfHdr = 0x20 type BpfVersion (line 392) | type BpfVersion struct type BpfStat (line 397) | type BpfStat struct type BpfProgram (line 404) | type BpfProgram struct type BpfInsn (line 410) | type BpfInsn struct type BpfHdr (line 417) | type BpfHdr struct type BpfTimeval (line 425) | type BpfTimeval struct type Termios (line 430) | type Termios struct type Winsize (line 440) | type Winsize struct type Ptmget (line 447) | type Ptmget struct constant AT_FDCWD (line 455) | AT_FDCWD = -0x64 constant AT_EACCESS (line 456) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 457) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 458) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 459) | AT_REMOVEDIR = 0x800 type PollFd (line 462) | type PollFd struct constant POLLERR (line 469) | POLLERR = 0x8 constant POLLHUP (line 470) | POLLHUP = 0x10 constant POLLIN (line 471) | POLLIN = 0x1 constant POLLNVAL (line 472) | POLLNVAL = 0x20 constant POLLOUT (line 473) | POLLOUT = 0x4 constant POLLPRI (line 474) | POLLPRI = 0x2 constant POLLRDBAND (line 475) | POLLRDBAND = 0x80 constant POLLRDNORM (line 476) | POLLRDNORM = 0x40 constant POLLWRBAND (line 477) | POLLWRBAND = 0x100 constant POLLWRNORM (line 478) | POLLWRNORM = 0x4 type Sysctlnode (line 481) | type Sysctlnode struct type Utsname (line 494) | type Utsname struct constant SizeofClockinfo (line 502) | SizeofClockinfo = 0x14 type Clockinfo (line 504) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_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 30) | type Timeval struct 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 85) | type Statfs_t type Statvfs_t (line 87) | type Statvfs_t struct type Flock_t (line 114) | type Flock_t struct type Dirent (line 122) | type Dirent struct type Fsid (line 131) | type Fsid struct constant PathMax (line 136) | PathMax = 0x400 constant ST_WAIT (line 140) | ST_WAIT = 0x1 constant ST_NOWAIT (line 141) | ST_NOWAIT = 0x2 constant FADV_NORMAL (line 145) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 146) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 147) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 148) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 149) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 150) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 153) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 161) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 170) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 176) | type RawSockaddrDatalink struct type RawSockaddr (line 187) | type RawSockaddr struct type RawSockaddrAny (line 193) | type RawSockaddrAny struct type _Socklen (line 198) | type _Socklen type Linger (line 200) | type Linger struct type Iovec (line 205) | type Iovec struct type IPMreq (line 210) | type IPMreq struct type IPv6Mreq (line 215) | type IPv6Mreq struct type Msghdr (line 220) | type Msghdr struct type Cmsghdr (line 230) | type Cmsghdr struct type Inet6Pktinfo (line 236) | type Inet6Pktinfo struct type IPv6MTUInfo (line 241) | type IPv6MTUInfo struct type ICMPv6Filter (line 246) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 251) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 252) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 253) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 254) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 255) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 256) | SizeofLinger = 0x8 constant SizeofIovec (line 257) | SizeofIovec = 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 SizeofInet6Pktinfo (line 262) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 263) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 264) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 268) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 269) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 270) | PTRACE_KILL = 0x8 type Kevent_t (line 273) | type Kevent_t struct type FdSet (line 283) | type FdSet struct constant SizeofIfMsghdr (line 288) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 289) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 290) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 291) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 292) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 293) | SizeofRtMetrics = 0x50 type IfMsghdr (line 296) | type IfMsghdr struct type IfData (line 307) | type IfData struct type IfaMsghdr (line 330) | type IfaMsghdr struct type IfAnnounceMsghdr (line 341) | type IfAnnounceMsghdr struct type RtMsghdr (line 350) | type RtMsghdr struct type RtMetrics (line 367) | type RtMetrics struct type Mclpool (line 380) | type Mclpool constant SizeofBpfVersion (line 383) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 384) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 385) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 386) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 387) | SizeofBpfHdr = 0x14 type BpfVersion (line 390) | type BpfVersion struct type BpfStat (line 395) | type BpfStat struct type BpfProgram (line 402) | type BpfProgram struct type BpfInsn (line 407) | type BpfInsn struct type BpfHdr (line 414) | type BpfHdr struct type BpfTimeval (line 422) | type BpfTimeval struct type Termios (line 427) | type Termios struct type Winsize (line 437) | type Winsize struct type Ptmget (line 444) | type Ptmget struct constant AT_FDCWD (line 452) | AT_FDCWD = -0x64 constant AT_EACCESS (line 453) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 454) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 455) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 456) | AT_REMOVEDIR = 0x800 type PollFd (line 459) | type PollFd struct constant POLLERR (line 466) | POLLERR = 0x8 constant POLLHUP (line 467) | POLLHUP = 0x10 constant POLLIN (line 468) | POLLIN = 0x1 constant POLLNVAL (line 469) | POLLNVAL = 0x20 constant POLLOUT (line 470) | POLLOUT = 0x4 constant POLLPRI (line 471) | POLLPRI = 0x2 constant POLLRDBAND (line 472) | POLLRDBAND = 0x80 constant POLLRDNORM (line 473) | POLLRDNORM = 0x40 constant POLLWRBAND (line 474) | POLLWRBAND = 0x100 constant POLLWRNORM (line 475) | POLLWRNORM = 0x4 type Sysctlnode (line 478) | type Sysctlnode struct type Utsname (line 491) | type Utsname struct constant SizeofClockinfo (line 499) | SizeofClockinfo = 0x14 type Clockinfo (line 501) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 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 Statvfs_t (line 86) | type Statvfs_t struct type Flock_t (line 114) | type Flock_t struct type Dirent (line 122) | type Dirent struct type Fsid (line 131) | type Fsid struct constant PathMax (line 136) | PathMax = 0x400 constant ST_WAIT (line 140) | ST_WAIT = 0x1 constant ST_NOWAIT (line 141) | ST_NOWAIT = 0x2 constant FADV_NORMAL (line 145) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 146) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 147) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 148) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 149) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 150) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 153) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 161) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 170) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 176) | type RawSockaddrDatalink struct type RawSockaddr (line 187) | type RawSockaddr struct type RawSockaddrAny (line 193) | type RawSockaddrAny struct type _Socklen (line 198) | type _Socklen type Linger (line 200) | type Linger struct type Iovec (line 205) | type Iovec struct type IPMreq (line 210) | type IPMreq struct type IPv6Mreq (line 215) | type IPv6Mreq struct type Msghdr (line 220) | type Msghdr struct type Cmsghdr (line 232) | type Cmsghdr struct type 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 SizeofIovec (line 259) | SizeofIovec = 0x10 constant SizeofIPMreq (line 260) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 261) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 262) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 263) | SizeofCmsghdr = 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 285) | type FdSet struct constant SizeofIfMsghdr (line 290) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 291) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 292) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 293) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 294) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 295) | SizeofRtMetrics = 0x50 type IfMsghdr (line 298) | type IfMsghdr struct type IfData (line 309) | type IfData struct type IfaMsghdr (line 332) | type IfaMsghdr struct type IfAnnounceMsghdr (line 343) | type IfAnnounceMsghdr struct type RtMsghdr (line 352) | type RtMsghdr struct type RtMetrics (line 369) | type RtMetrics struct type Mclpool (line 382) | type Mclpool constant SizeofBpfVersion (line 385) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 386) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 387) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 388) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 389) | SizeofBpfHdr = 0x20 type BpfVersion (line 392) | type BpfVersion struct type BpfStat (line 397) | type BpfStat struct type BpfProgram (line 404) | type BpfProgram struct type BpfInsn (line 410) | type BpfInsn struct type BpfHdr (line 417) | type BpfHdr struct type BpfTimeval (line 425) | type BpfTimeval struct type Termios (line 430) | type Termios struct type Winsize (line 440) | type Winsize struct type Ptmget (line 447) | type Ptmget struct constant AT_FDCWD (line 455) | AT_FDCWD = -0x64 constant AT_EACCESS (line 456) | AT_EACCESS = 0x100 constant AT_SYMLINK_NOFOLLOW (line 457) | AT_SYMLINK_NOFOLLOW = 0x200 constant AT_SYMLINK_FOLLOW (line 458) | AT_SYMLINK_FOLLOW = 0x400 constant AT_REMOVEDIR (line 459) | AT_REMOVEDIR = 0x800 type PollFd (line 462) | type PollFd struct constant POLLERR (line 469) | POLLERR = 0x8 constant POLLHUP (line 470) | POLLHUP = 0x10 constant POLLIN (line 471) | POLLIN = 0x1 constant POLLNVAL (line 472) | POLLNVAL = 0x20 constant POLLOUT (line 473) | POLLOUT = 0x4 constant POLLPRI (line 474) | POLLPRI = 0x2 constant POLLRDBAND (line 475) | POLLRDBAND = 0x80 constant POLLRDNORM (line 476) | POLLRDNORM = 0x40 constant POLLWRBAND (line 477) | POLLWRBAND = 0x100 constant POLLWRNORM (line 478) | POLLWRNORM = 0x4 type Sysctlnode (line 481) | type Sysctlnode struct type Utsname (line 494) | type Utsname struct constant SizeofClockinfo (line 502) | SizeofClockinfo = 0x14 type Clockinfo (line 504) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_386.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 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 79) | type Statfs_t struct type Flock_t (line 105) | type Flock_t struct type Dirent (line 113) | type Dirent struct type Fsid (line 123) | type Fsid struct constant PathMax (line 128) | PathMax = 0x400 type RawSockaddrInet4 (line 131) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 139) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 148) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 154) | type RawSockaddrDatalink struct type RawSockaddr (line 165) | type RawSockaddr struct type RawSockaddrAny (line 171) | type RawSockaddrAny struct type _Socklen (line 176) | type _Socklen type Linger (line 178) | type Linger struct type Iovec (line 183) | type Iovec struct type IPMreq (line 188) | type IPMreq struct type IPv6Mreq (line 193) | type IPv6Mreq struct type Msghdr (line 198) | 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 = 0x1c constant SizeofSockaddrAny (line 231) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 232) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 233) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 234) | SizeofLinger = 0x8 constant SizeofIovec (line 235) | SizeofIovec = 0x8 constant SizeofIPMreq (line 236) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 237) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 238) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 239) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 240) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 241) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 242) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 246) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 247) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 248) | PTRACE_KILL = 0x8 type Kevent_t (line 251) | type Kevent_t struct type FdSet (line 260) | type FdSet struct constant SizeofIfMsghdr (line 265) | SizeofIfMsghdr = 0xec constant SizeofIfData (line 266) | SizeofIfData = 0xd4 constant SizeofIfaMsghdr (line 267) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 268) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 269) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 270) | SizeofRtMetrics = 0x38 type IfMsghdr (line 273) | type IfMsghdr struct type IfData (line 288) | type IfData struct type IfaMsghdr (line 313) | type IfaMsghdr struct type IfAnnounceMsghdr (line 327) | type IfAnnounceMsghdr struct type RtMsghdr (line 337) | type RtMsghdr struct type RtMetrics (line 356) | type RtMetrics struct type Mclpool (line 371) | type Mclpool struct constant SizeofBpfVersion (line 380) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 381) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 382) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 383) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 384) | SizeofBpfHdr = 0x14 type BpfVersion (line 387) | type BpfVersion struct type BpfStat (line 392) | type BpfStat struct type BpfProgram (line 397) | type BpfProgram struct type BpfInsn (line 402) | type BpfInsn struct type BpfHdr (line 409) | type BpfHdr struct type BpfTimeval (line 417) | type BpfTimeval struct type Termios (line 422) | type Termios struct type Winsize (line 432) | type Winsize struct constant AT_FDCWD (line 440) | AT_FDCWD = -0x64 constant AT_EACCESS (line 441) | AT_EACCESS = 0x1 constant AT_SYMLINK_NOFOLLOW (line 442) | AT_SYMLINK_NOFOLLOW = 0x2 constant AT_SYMLINK_FOLLOW (line 443) | AT_SYMLINK_FOLLOW = 0x4 constant AT_REMOVEDIR (line 444) | AT_REMOVEDIR = 0x8 type PollFd (line 447) | type PollFd struct constant POLLERR (line 454) | POLLERR = 0x8 constant POLLHUP (line 455) | POLLHUP = 0x10 constant POLLIN (line 456) | POLLIN = 0x1 constant POLLNVAL (line 457) | POLLNVAL = 0x20 constant POLLOUT (line 458) | POLLOUT = 0x4 constant POLLPRI (line 459) | POLLPRI = 0x2 constant POLLRDBAND (line 460) | POLLRDBAND = 0x80 constant POLLRDNORM (line 461) | POLLRDNORM = 0x40 constant POLLWRBAND (line 462) | POLLWRBAND = 0x100 constant POLLWRNORM (line 463) | POLLWRNORM = 0x4 type Sigset_t (line 466) | type Sigset_t type Utsname (line 468) | type Utsname struct constant SizeofUvmexp (line 476) | SizeofUvmexp = 0x158 type Uvmexp (line 478) | type Uvmexp struct constant SizeofClockinfo (line 567) | SizeofClockinfo = 0x14 type Clockinfo (line 569) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 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 80) | type Statfs_t struct type Flock_t (line 107) | type Flock_t struct type Dirent (line 115) | 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 167) | type RawSockaddr struct type RawSockaddrAny (line 173) | type RawSockaddrAny struct type _Socklen (line 178) | type _Socklen type Linger (line 180) | type Linger struct type Iovec (line 185) | type Iovec struct type IPMreq (line 190) | type IPMreq struct type IPv6Mreq (line 195) | type IPv6Mreq struct type Msghdr (line 200) | type Msghdr struct type Cmsghdr (line 212) | type Cmsghdr struct type Inet6Pktinfo (line 218) | type Inet6Pktinfo struct type IPv6MTUInfo (line 223) | type IPv6MTUInfo struct type ICMPv6Filter (line 228) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 233) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 234) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 235) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 236) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 237) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 238) | SizeofLinger = 0x8 constant SizeofIovec (line 239) | SizeofIovec = 0x10 constant SizeofIPMreq (line 240) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 241) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 242) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 243) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 244) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 245) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 246) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 250) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 251) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 252) | PTRACE_KILL = 0x8 type Kevent_t (line 255) | 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 = 0x10 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 402) | type BpfInsn struct type BpfHdr (line 409) | type BpfHdr struct type BpfTimeval (line 417) | type BpfTimeval struct type Termios (line 422) | type Termios struct type Winsize (line 432) | type Winsize struct constant AT_FDCWD (line 440) | AT_FDCWD = -0x64 constant AT_EACCESS (line 441) | AT_EACCESS = 0x1 constant AT_SYMLINK_NOFOLLOW (line 442) | AT_SYMLINK_NOFOLLOW = 0x2 constant AT_SYMLINK_FOLLOW (line 443) | AT_SYMLINK_FOLLOW = 0x4 constant AT_REMOVEDIR (line 444) | AT_REMOVEDIR = 0x8 type PollFd (line 447) | type PollFd struct constant POLLERR (line 454) | POLLERR = 0x8 constant POLLHUP (line 455) | POLLHUP = 0x10 constant POLLIN (line 456) | POLLIN = 0x1 constant POLLNVAL (line 457) | POLLNVAL = 0x20 constant POLLOUT (line 458) | POLLOUT = 0x4 constant POLLPRI (line 459) | POLLPRI = 0x2 constant POLLRDBAND (line 460) | POLLRDBAND = 0x80 constant POLLRDNORM (line 461) | POLLRDNORM = 0x40 constant POLLWRBAND (line 462) | POLLWRBAND = 0x100 constant POLLWRNORM (line 463) | POLLWRNORM = 0x4 type Sigset_t (line 466) | type Sigset_t type Utsname (line 468) | type Utsname struct constant SizeofUvmexp (line 476) | SizeofUvmexp = 0x158 type Uvmexp (line 478) | type Uvmexp struct constant SizeofClockinfo (line 567) | SizeofClockinfo = 0x14 type Clockinfo (line 569) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_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 30) | type Timeval struct 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 82) | type Statfs_t struct type Flock_t (line 109) | type Flock_t struct type Dirent (line 117) | type Dirent struct type Fsid (line 127) | type Fsid struct constant PathMax (line 132) | PathMax = 0x400 type RawSockaddrInet4 (line 135) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 143) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 152) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 158) | 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 212) | type Cmsghdr struct type Inet6Pktinfo (line 218) | type Inet6Pktinfo struct type IPv6MTUInfo (line 223) | type IPv6MTUInfo struct type ICMPv6Filter (line 228) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 233) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 234) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 235) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 236) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 237) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 238) | SizeofLinger = 0x8 constant SizeofIovec (line 239) | SizeofIovec = 0x8 constant SizeofIPMreq (line 240) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 241) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 242) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 243) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 244) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 245) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 246) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 250) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 251) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 252) | PTRACE_KILL = 0x8 type Kevent_t (line 255) | type Kevent_t struct type FdSet (line 266) | type FdSet struct constant SizeofIfMsghdr (line 271) | SizeofIfMsghdr = 0xa8 constant SizeofIfData (line 272) | SizeofIfData = 0x90 constant SizeofIfaMsghdr (line 273) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 274) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 275) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 276) | SizeofRtMetrics = 0x38 type IfMsghdr (line 279) | type IfMsghdr struct type IfData (line 294) | type IfData struct type IfaMsghdr (line 320) | type IfaMsghdr struct type IfAnnounceMsghdr (line 334) | type IfAnnounceMsghdr struct type RtMsghdr (line 344) | type RtMsghdr struct type RtMetrics (line 363) | type RtMetrics struct type Mclpool (line 378) | type Mclpool struct constant SizeofBpfVersion (line 381) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 382) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 383) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 384) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 385) | SizeofBpfHdr = 0x14 type BpfVersion (line 388) | type BpfVersion struct type BpfStat (line 393) | type BpfStat struct type BpfProgram (line 398) | type BpfProgram struct type BpfInsn (line 403) | type BpfInsn struct type BpfHdr (line 410) | type BpfHdr struct type BpfTimeval (line 418) | type BpfTimeval struct type Termios (line 423) | type Termios struct type Winsize (line 433) | type Winsize struct constant AT_FDCWD (line 441) | AT_FDCWD = -0x64 constant AT_EACCESS (line 442) | AT_EACCESS = 0x1 constant AT_SYMLINK_NOFOLLOW (line 443) | AT_SYMLINK_NOFOLLOW = 0x2 constant AT_SYMLINK_FOLLOW (line 444) | AT_SYMLINK_FOLLOW = 0x4 constant AT_REMOVEDIR (line 445) | AT_REMOVEDIR = 0x8 type PollFd (line 448) | type PollFd struct constant POLLERR (line 455) | POLLERR = 0x8 constant POLLHUP (line 456) | POLLHUP = 0x10 constant POLLIN (line 457) | POLLIN = 0x1 constant POLLNVAL (line 458) | POLLNVAL = 0x20 constant POLLOUT (line 459) | POLLOUT = 0x4 constant POLLPRI (line 460) | POLLPRI = 0x2 constant POLLRDBAND (line 461) | POLLRDBAND = 0x80 constant POLLRDNORM (line 462) | POLLRDNORM = 0x40 constant POLLWRBAND (line 463) | POLLWRBAND = 0x100 constant POLLWRNORM (line 464) | POLLWRNORM = 0x4 type Sigset_t (line 467) | type Sigset_t type Utsname (line 469) | type Utsname struct constant SizeofUvmexp (line 477) | SizeofUvmexp = 0x158 type Uvmexp (line 479) | type Uvmexp struct constant SizeofClockinfo (line 568) | SizeofClockinfo = 0x14 type Clockinfo (line 570) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 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 79) | type Statfs_t struct type Flock_t (line 105) | type Flock_t struct type Dirent (line 113) | type Dirent struct type Fsid (line 123) | type Fsid struct constant PathMax (line 128) | PathMax = 0x400 type RawSockaddrInet4 (line 131) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 139) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 148) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 154) | type RawSockaddrDatalink struct type RawSockaddr (line 165) | type RawSockaddr struct type RawSockaddrAny (line 171) | type RawSockaddrAny struct type _Socklen (line 176) | type _Socklen type Linger (line 178) | type Linger struct type Iovec (line 183) | type Iovec struct type IPMreq (line 188) | type IPMreq struct type IPv6Mreq (line 193) | type IPv6Mreq struct type Msghdr (line 198) | 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 = 0x1c constant SizeofSockaddrAny (line 231) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 232) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 233) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 234) | SizeofLinger = 0x8 constant SizeofIovec (line 235) | SizeofIovec = 0x10 constant SizeofIPMreq (line 236) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 237) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 238) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 239) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 240) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 241) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 242) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 246) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 247) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 248) | PTRACE_KILL = 0x8 type Kevent_t (line 251) | type Kevent_t struct type FdSet (line 260) | type FdSet struct constant SizeofIfMsghdr (line 265) | SizeofIfMsghdr = 0xa8 constant SizeofIfData (line 266) | SizeofIfData = 0x90 constant SizeofIfaMsghdr (line 267) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 268) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 269) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 270) | SizeofRtMetrics = 0x38 type IfMsghdr (line 273) | type IfMsghdr struct type IfData (line 288) | type IfData struct type IfaMsghdr (line 313) | type IfaMsghdr struct type IfAnnounceMsghdr (line 327) | type IfAnnounceMsghdr struct type RtMsghdr (line 337) | type RtMsghdr struct type RtMetrics (line 356) | type RtMetrics struct type Mclpool (line 371) | type Mclpool struct constant SizeofBpfVersion (line 374) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 375) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 376) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 377) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 378) | SizeofBpfHdr = 0x14 type BpfVersion (line 381) | type BpfVersion struct type BpfStat (line 386) | type BpfStat struct type BpfProgram (line 391) | type BpfProgram struct type BpfInsn (line 396) | type BpfInsn struct type BpfHdr (line 403) | type BpfHdr struct type BpfTimeval (line 411) | type BpfTimeval struct type Termios (line 416) | type Termios struct type Winsize (line 426) | type Winsize struct constant AT_FDCWD (line 434) | AT_FDCWD = -0x64 constant AT_EACCESS (line 435) | AT_EACCESS = 0x1 constant AT_SYMLINK_NOFOLLOW (line 436) | AT_SYMLINK_NOFOLLOW = 0x2 constant AT_SYMLINK_FOLLOW (line 437) | AT_SYMLINK_FOLLOW = 0x4 constant AT_REMOVEDIR (line 438) | AT_REMOVEDIR = 0x8 type PollFd (line 441) | type PollFd struct constant POLLERR (line 448) | POLLERR = 0x8 constant POLLHUP (line 449) | POLLHUP = 0x10 constant POLLIN (line 450) | POLLIN = 0x1 constant POLLNVAL (line 451) | POLLNVAL = 0x20 constant POLLOUT (line 452) | POLLOUT = 0x4 constant POLLPRI (line 453) | POLLPRI = 0x2 constant POLLRDBAND (line 454) | POLLRDBAND = 0x80 constant POLLRDNORM (line 455) | POLLRDNORM = 0x40 constant POLLWRBAND (line 456) | POLLWRBAND = 0x100 constant POLLWRNORM (line 457) | POLLWRNORM = 0x4 type Sigset_t (line 460) | type Sigset_t type Utsname (line 462) | type Utsname struct constant SizeofUvmexp (line 470) | SizeofUvmexp = 0x158 type Uvmexp (line 472) | type Uvmexp struct constant SizeofClockinfo (line 561) | SizeofClockinfo = 0x14 type Clockinfo (line 563) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 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 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 79) | type Statfs_t struct type Flock_t (line 105) | type Flock_t struct type Dirent (line 113) | type Dirent struct type Fsid (line 123) | type Fsid struct constant PathMax (line 128) | PathMax = 0x400 type RawSockaddrInet4 (line 131) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 139) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 148) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 154) | type RawSockaddrDatalink struct type RawSockaddr (line 165) | type RawSockaddr struct type RawSockaddrAny (line 171) | type RawSockaddrAny struct type _Socklen (line 176) | type _Socklen type Linger (line 178) | type Linger struct type Iovec (line 183) | type Iovec struct type IPMreq (line 188) | type IPMreq struct type IPv6Mreq (line 193) | type IPv6Mreq struct type Msghdr (line 198) | 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 = 0x1c constant SizeofSockaddrAny (line 231) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 232) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 233) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 234) | SizeofLinger = 0x8 constant SizeofIovec (line 235) | SizeofIovec = 0x10 constant SizeofIPMreq (line 236) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 237) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 238) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 239) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 240) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 241) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 242) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 246) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 247) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 248) | PTRACE_KILL = 0x8 type Kevent_t (line 251) | type Kevent_t struct type FdSet (line 260) | type FdSet struct constant SizeofIfMsghdr (line 265) | SizeofIfMsghdr = 0xa8 constant SizeofIfData (line 266) | SizeofIfData = 0x90 constant SizeofIfaMsghdr (line 267) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 268) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 269) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 270) | SizeofRtMetrics = 0x38 type IfMsghdr (line 273) | type IfMsghdr struct type IfData (line 288) | type IfData struct type IfaMsghdr (line 313) | type IfaMsghdr struct type IfAnnounceMsghdr (line 327) | type IfAnnounceMsghdr struct type RtMsghdr (line 337) | type RtMsghdr struct type RtMetrics (line 356) | type RtMetrics struct type Mclpool (line 371) | type Mclpool struct constant SizeofBpfVersion (line 374) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 375) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 376) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 377) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 378) | SizeofBpfHdr = 0x14 type BpfVersion (line 381) | type BpfVersion struct type BpfStat (line 386) | type BpfStat struct type BpfProgram (line 391) | type BpfProgram struct type BpfInsn (line 396) | type BpfInsn struct type BpfHdr (line 403) | type BpfHdr struct type BpfTimeval (line 411) | type BpfTimeval struct type Termios (line 416) | type Termios struct type Winsize (line 426) | type Winsize struct constant AT_FDCWD (line 434) | AT_FDCWD = -0x64 constant AT_EACCESS (line 435) | AT_EACCESS = 0x1 constant AT_SYMLINK_NOFOLLOW (line 436) | AT_SYMLINK_NOFOLLOW = 0x2 constant AT_SYMLINK_FOLLOW (line 437) | AT_SYMLINK_FOLLOW = 0x4 constant AT_REMOVEDIR (line 438) | AT_REMOVEDIR = 0x8 type PollFd (line 441) | type PollFd struct constant POLLERR (line 448) | POLLERR = 0x8 constant POLLHUP (line 449) | POLLHUP = 0x10 constant POLLIN (line 450) | POLLIN = 0x1 constant POLLNVAL (line 451) | POLLNVAL = 0x20 constant POLLOUT (line 452) | POLLOUT = 0x4 constant POLLPRI (line 453) | POLLPRI = 0x2 constant POLLRDBAND (line 454) | POLLRDBAND = 0x80 constant POLLRDNORM (line 455) | POLLRDNORM = 0x40 constant POLLWRBAND (line 456) | POLLWRBAND = 0x100 constant POLLWRNORM (line 457) | POLLWRNORM = 0x4 type Sigset_t (line 460) | type Sigset_t type Utsname (line 462) | type Utsname struct constant SizeofUvmexp (line 470) | SizeofUvmexp = 0x158 type Uvmexp (line 472) | type Uvmexp struct constant SizeofClockinfo (line 561) | SizeofClockinfo = 0x14 type Clockinfo (line 563) | type Clockinfo struct FILE: vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go constant SizeofPtr (line 10) | SizeofPtr = 0x8 constant SizeofShort (line 11) | SizeofShort = 0x2 constant SizeofInt (line 12) | SizeofInt = 0x4 constant SizeofLong (line 13) | SizeofLong = 0x8 constant SizeofLongLong (line 14) | SizeofLongLong = 0x8 constant PathMax (line 15) | PathMax = 0x400 constant MaxHostNameLen (line 16) | MaxHostNameLen = 0x100 type _C_short (line 20) | type _C_short type _C_int (line 21) | type _C_int type _C_long (line 22) | type _C_long type _C_long_long (line 23) | type _C_long_long type Timespec (line 26) | type Timespec struct type Timeval (line 31) | type Timeval struct type Timeval32 (line 36) | type Timeval32 struct type Tms (line 41) | type Tms struct type Utimbuf (line 48) | type Utimbuf struct type Rusage (line 53) | type Rusage struct type Rlimit (line 72) | type Rlimit struct type _Gid_t (line 77) | type _Gid_t type Stat_t (line 79) | type Stat_t struct type Flock_t (line 96) | type Flock_t struct type Dirent (line 106) | type Dirent struct type _Fsblkcnt_t (line 114) | type _Fsblkcnt_t type Statvfs_t (line 116) | type Statvfs_t struct type RawSockaddrInet4 (line 132) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 139) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 148) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 153) | type RawSockaddrDatalink struct type RawSockaddr (line 163) | type RawSockaddr struct type RawSockaddrAny (line 168) | type RawSockaddrAny struct type _Socklen (line 173) | type _Socklen type Linger (line 175) | type Linger struct type Iovec (line 180) | type Iovec struct type IPMreq (line 185) | type IPMreq struct type IPv6Mreq (line 190) | type IPv6Mreq struct type Msghdr (line 195) | type Msghdr struct type Cmsghdr (line 205) | type Cmsghdr struct type Inet4Pktinfo (line 211) | type Inet4Pktinfo 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 = 0x20 constant SizeofSockaddrAny (line 234) | SizeofSockaddrAny = 0xfc constant SizeofSockaddrUnix (line 235) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrDatalink (line 236) | SizeofSockaddrDatalink = 0xfc constant SizeofLinger (line 237) | SizeofLinger = 0x8 constant SizeofIovec (line 238) | SizeofIovec = 0x10 constant SizeofIPMreq (line 239) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 240) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 241) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 242) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 243) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 244) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 245) | SizeofIPv6MTUInfo = 0x24 constant SizeofICMPv6Filter (line 246) | SizeofICMPv6Filter = 0x20 type FdSet (line 249) | type FdSet struct type Utsname (line 253) | type Utsname struct type Ustat_t (line 261) | type Ustat_t struct constant AT_FDCWD (line 270) | AT_FDCWD = 0xffd19553 constant AT_SYMLINK_NOFOLLOW (line 271) | AT_SYMLINK_NOFOLLOW = 0x1000 constant AT_SYMLINK_FOLLOW (line 272) | AT_SYMLINK_FOLLOW = 0x2000 constant AT_REMOVEDIR (line 273) | AT_REMOVEDIR = 0x1 constant AT_EACCESS (line 274) | AT_EACCESS = 0x4 constant SizeofIfMsghdr (line 278) | SizeofIfMsghdr = 0x54 constant SizeofIfData (line 279) | SizeofIfData = 0x44 constant SizeofIfaMsghdr (line 280) | SizeofIfaMsghdr = 0x14 constant SizeofRtMsghdr (line 281) | SizeofRtMsghdr = 0x4c constant SizeofRtMetrics (line 282) | SizeofRtMetrics = 0x28 type IfMsghdr (line 285) | type IfMsghdr struct type IfData (line 295) | type IfData struct type IfaMsghdr (line 316) | type IfaMsghdr struct type RtMsghdr (line 326) | type RtMsghdr struct type RtMetrics (line 341) | type RtMetrics struct constant SizeofBpfVersion (line 355) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 356) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 357) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 358) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 359) | SizeofBpfHdr = 0x14 type BpfVersion (line 362) | type BpfVersion struct type BpfStat (line 367) | type BpfStat struct type BpfProgram (line 374) | 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/sys/unix/ztypes_zos_s390x.go constant SizeofPtr (line 14) | SizeofPtr = 0x8 constant SizeofShort (line 15) | SizeofShort = 0x2 constant SizeofInt (line 16) | SizeofInt = 0x4 constant SizeofLong (line 17) | SizeofLong = 0x8 constant SizeofLongLong (line 18) | SizeofLongLong = 0x8 constant PathMax (line 19) | PathMax = 0x1000 constant SizeofSockaddrAny (line 23) | SizeofSockaddrAny = 128 constant SizeofCmsghdr (line 24) | SizeofCmsghdr = 12 constant SizeofIPMreq (line 25) | SizeofIPMreq = 8 constant SizeofIPv6Mreq (line 26) | SizeofIPv6Mreq = 20 constant SizeofICMPv6Filter (line 27) | SizeofICMPv6Filter = 32 constant SizeofIPv6MTUInfo (line 28) | SizeofIPv6MTUInfo = 32 constant SizeofLinger (line 29) | SizeofLinger = 8 constant SizeofSockaddrInet4 (line 30) | SizeofSockaddrInet4 = 16 constant SizeofSockaddrInet6 (line 31) | SizeofSockaddrInet6 = 28 constant SizeofTCPInfo (line 32) | SizeofTCPInfo = 0x68 type _C_short (line 36) | type _C_short type _C_int (line 37) | type _C_int type _C_long (line 38) | type _C_long type _C_long_long (line 39) | type _C_long_long type Timespec (line 42) | type Timespec struct type Timeval (line 47) | type Timeval struct type timeval_zos (line 52) | type timeval_zos struct type Tms (line 58) | type Tms struct type Time_t (line 65) | type Time_t type Utimbuf (line 67) | type Utimbuf struct type Utsname (line 72) | type Utsname struct type RawSockaddrInet4 (line 81) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 89) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 98) | type RawSockaddrUnix struct type RawSockaddr (line 104) | type RawSockaddr struct type RawSockaddrAny (line 110) | type RawSockaddrAny struct type _Socklen (line 115) | type _Socklen type Linger (line 117) | type Linger struct type Iovec (line 122) | type Iovec struct type IPMreq (line 127) | type IPMreq struct type IPv6Mreq (line 132) | type IPv6Mreq struct type Msghdr (line 137) | type Msghdr struct type Cmsghdr (line 147) | type Cmsghdr struct type Inet4Pktinfo (line 153) | type Inet4Pktinfo struct type Inet6Pktinfo (line 158) | type Inet6Pktinfo struct type IPv6MTUInfo (line 163) | type IPv6MTUInfo struct type ICMPv6Filter (line 168) | type ICMPv6Filter struct type TCPInfo (line 172) | type TCPInfo struct type _Gid_t (line 205) | type _Gid_t type rusage_zos (line 207) | type rusage_zos struct type Rusage (line 212) | type Rusage struct type Rlimit (line 231) | type Rlimit struct type PollFd (line 237) | type PollFd struct type Stat_t (line 243) | type Stat_t struct type Stat_LE_t (line 261) | type Stat_LE_t struct type Statvfs_t (line 306) | type Statvfs_t struct type Statfs_t (line 328) | type Statfs_t struct type Dirent (line 342) | type Dirent struct type FdSet (line 350) | type FdSet struct type Flock_t (line 355) | type Flock_t struct type Termios (line 363) | type Termios struct type Winsize (line 371) | type Winsize struct type W_Mnth (line 378) | type W_Mnth struct type W_Mntent (line 387) | type W_Mntent struct FILE: vendor/golang.org/x/text/transform/transform.go type Transformer (line 41) | type Transformer interface type SpanningTransformer (line 69) | type SpanningTransformer interface type NopResetter (line 104) | type NopResetter struct method Reset (line 107) | func (NopResetter) Reset() {} type Reader (line 110) | type Reader struct method Read (line 145) | func (r *Reader) Read(p []byte) (int, error) { constant defaultBufSize (line 130) | defaultBufSize = 4096 function NewReader (line 134) | func NewReader(r io.Reader, t Transformer) *Reader { type Writer (line 209) | type Writer struct method Write (line 234) | func (w *Writer) Write(data []byte) (n int, err error) { method Close (line 296) | func (w *Writer) Close() error { function NewWriter (line 221) | func NewWriter(w io.Writer, t Transformer) *Writer { type nop (line 310) | type nop struct method Transform (line 312) | func (nop) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err... method Span (line 320) | func (nop) Span(src []byte, atEOF bool) (n int, err error) { type discard (line 324) | type discard struct method Transform (line 326) | func (discard) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int,... type chain (line 345) | type chain struct method fatalError (line 354) | func (c *chain) fatalError(errIndex int, err error) { method Reset (line 395) | func (c *chain) Reset() { method Transform (line 407) | func (c *chain) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int... type link (line 361) | type link struct method src (line 369) | func (l *link) src() []byte { method dst (line 373) | func (l *link) dst() []byte { function Chain (line 378) | func Chain(t ...Transformer) Transformer { function RemoveFunc (line 497) | func RemoveFunc(f func(r rune) bool) Transformer { type removeF (line 501) | type removeF method Reset (line 503) | func (removeF) Reset() {} method Transform (line 506) | func (t removeF) Transform(dst, src []byte, atEOF bool) (nDst, nSrc in... function grow (line 550) | func grow(b []byte, n int) []byte { constant initialBufSize (line 564) | initialBufSize = 128 function String (line 568) | func String(t Transformer, s string) (result string, n int, err error) { function Bytes (line 677) | func Bytes(t Transformer, b []byte) (result []byte, n int, err error) { function Append (line 683) | func Append(t Transformer, dst, src []byte) (result []byte, n int, err e... function doAppend (line 692) | func doAppend(t Transformer, pDst int, dst, src []byte) (result []byte, ... FILE: vendor/golang.org/x/text/unicode/norm/composition.go constant maxNonStarters (line 10) | maxNonStarters = 30 constant maxBufferSize (line 13) | maxBufferSize = maxNonStarters + 2 constant maxNFCExpansion (line 14) | maxNFCExpansion = 3 constant maxNFKCExpansion (line 15) | maxNFKCExpansion = 18 constant maxByteBufferSize (line 17) | maxByteBufferSize = utf8.UTFMax * maxBufferSize type ssState (line 22) | type ssState constant ssSuccess (line 26) | ssSuccess ssState = iota constant ssStarter (line 28) | ssStarter constant ssOverflow (line 30) | ssOverflow type streamSafe (line 34) | type streamSafe method first (line 38) | func (ss *streamSafe) first(p Properties) { method next (line 44) | func (ss *streamSafe) next(p Properties) ssState { method backwards (line 71) | func (ss *streamSafe) backwards(p Properties) ssState { method isMax (line 86) | func (ss streamSafe) isMax() bool { constant GraphemeJoiner (line 91) | GraphemeJoiner = "\u034F" type reorderBuffer (line 98) | type reorderBuffer struct method init (line 114) | func (rb *reorderBuffer) init(f Form, src []byte) { method initString (line 121) | func (rb *reorderBuffer) initString(f Form, src string) { method setFlusher (line 128) | func (rb *reorderBuffer) setFlusher(out []byte, f func(*reorderBuffer)... method reset (line 134) | func (rb *reorderBuffer) reset() { method doFlush (line 139) | func (rb *reorderBuffer) doFlush() bool { method flush (line 159) | func (rb *reorderBuffer) flush(out []byte) []byte { method flushCopy (line 171) | func (rb *reorderBuffer) flushCopy(buf []byte) int { method insertOrdered (line 184) | func (rb *reorderBuffer) insertOrdered(info Properties) { method insertFlush (line 218) | func (rb *reorderBuffer) insertFlush(src input, i int, info Properties... method insertUnsafe (line 234) | func (rb *reorderBuffer) insertUnsafe(src input, i int, info Propertie... method insertDecomposed (line 249) | func (rb *reorderBuffer) insertDecomposed(dcomp []byte) insertErr { method insertSingle (line 267) | func (rb *reorderBuffer) insertSingle(src input, i int, info Propertie... method insertCGJ (line 273) | func (rb *reorderBuffer) insertCGJ() { method appendRune (line 278) | func (rb *reorderBuffer) appendRune(r rune) { method assignRune (line 287) | func (rb *reorderBuffer) assignRune(pos int, r rune) { method runeAt (line 294) | func (rb *reorderBuffer) runeAt(n int) rune { method bytesAt (line 302) | func (rb *reorderBuffer) bytesAt(n int) []byte { method decomposeHangul (line 411) | func (rb *reorderBuffer) decomposeHangul(r rune) { method combineHangul (line 424) | func (rb *reorderBuffer) combineHangul(s, i, k int) { method compose (line 463) | func (rb *reorderBuffer) compose() { function appendFlush (line 149) | func appendFlush(rb *reorderBuffer) bool { type insertErr (line 206) | type insertErr constant iSuccess (line 209) | iSuccess insertErr = -iota constant iShortDst (line 210) | iShortDst constant iShortSrc (line 211) | iShortSrc constant hangulBase (line 309) | hangulBase = 0xAC00 constant hangulBase0 (line 310) | hangulBase0 = 0xEA constant hangulBase1 (line 311) | hangulBase1 = 0xB0 constant hangulBase2 (line 312) | hangulBase2 = 0x80 constant hangulEnd (line 314) | hangulEnd = hangulBase + jamoLVTCount constant hangulEnd0 (line 315) | hangulEnd0 = 0xED constant hangulEnd1 (line 316) | hangulEnd1 = 0x9E constant hangulEnd2 (line 317) | hangulEnd2 = 0xA4 constant jamoLBase (line 319) | jamoLBase = 0x1100 constant jamoLBase0 (line 320) | jamoLBase0 = 0xE1 constant jamoLBase1 (line 321) | jamoLBase1 = 0x84 constant jamoLEnd (line 322) | jamoLEnd = 0x1113 constant jamoVBase (line 323) | jamoVBase = 0x1161 constant jamoVEnd (line 324) | jamoVEnd = 0x1176 constant jamoTBase (line 325) | jamoTBase = 0x11A7 constant jamoTEnd (line 326) | jamoTEnd = 0x11C3 constant jamoTCount (line 328) | jamoTCount = 28 constant jamoVCount (line 329) | jamoVCount = 21 constant jamoVTCount (line 330) | jamoVTCount = 21 * 28 constant jamoLVTCount (line 331) | jamoLVTCount = 19 * 21 * 28 constant hangulUTF8Size (line 334) | hangulUTF8Size = 3 function isHangul (line 336) | func isHangul(b []byte) bool { function isHangulString (line 358) | func isHangulString(b string) bool { function isJamoVT (line 381) | func isJamoVT(b []byte) bool { function isHangulWithoutJamoT (line 386) | func isHangulWithoutJamoT(b []byte) bool { function decomposeHangul (line 394) | func decomposeHangul(buf []byte, r rune) int { FILE: vendor/golang.org/x/text/unicode/norm/forminfo.go constant qcInfoMask (line 34) | qcInfoMask = 0x3F constant headerLenMask (line 35) | headerLenMask = 0x3F constant headerFlagsMask (line 36) | headerFlagsMask = 0xC0 type Properties (line 40) | type Properties struct method BoundaryBefore (line 95) | func (p Properties) BoundaryBefore() bool { method BoundaryAfter (line 107) | func (p Properties) BoundaryAfter() bool { method isYesC (line 122) | func (p Properties) isYesC() bool { return p.flags&0x10 == 0 } method isYesD (line 123) | func (p Properties) isYesD() bool { return p.flags&0x4 == 0 } method combinesForward (line 125) | func (p Properties) combinesForward() bool { return p.flags&0x20 != 0 } method combinesBackward (line 126) | func (p Properties) combinesBackward() bool { return p.flags&0x8 != 0 } method hasDecomposition (line 127) | func (p Properties) hasDecomposition() bool { return p.flags&0x4 != 0 } method isInert (line 129) | func (p Properties) isInert() bool { method multiSegment (line 133) | func (p Properties) multiSegment() bool { method nLeadingNonStarters (line 137) | func (p Properties) nLeadingNonStarters() uint8 { method nTrailingNonStarters (line 141) | func (p Properties) nTrailingNonStarters() uint8 { method Decomposition (line 147) | func (p Properties) Decomposition() []byte { method Size (line 159) | func (p Properties) Size() int { method CCC (line 164) | func (p Properties) CCC() uint8 { method LeadCCC (line 173) | func (p Properties) LeadCCC() uint8 { method TrailCCC (line 179) | func (p Properties) TrailCCC() uint8 { type lookupFunc (line 51) | type lookupFunc type formInfo (line 54) | type formInfo struct type qcInfo (line 120) | type qcInfo function buildRecompMap (line 183) | func buildRecompMap() { function combine (line 205) | func combine(a, b rune) rune { function lookupInfoNFC (line 213) | func lookupInfoNFC(b input, i int) Properties { function lookupInfoNFKC (line 218) | func lookupInfoNFKC(b input, i int) Properties { method Properties (line 224) | func (f Form) Properties(s []byte) Properties { method PropertiesString (line 232) | func (f Form) PropertiesString(s string) Properties { function compInfo (line 242) | func compInfo(v uint16, sz int) Properties { FILE: vendor/golang.org/x/text/unicode/norm/input.go type input (line 9) | type input struct method setBytes (line 22) | func (in *input) setBytes(str []byte) { method setString (line 27) | func (in *input) setString(str string) { method _byte (line 32) | func (in *input) _byte(p int) byte { method skipASCII (line 39) | func (in *input) skipASCII(p, max int) int { method skipContinuationBytes (line 50) | func (in *input) skipContinuationBytes(p int) int { method appendSlice (line 61) | func (in *input) appendSlice(buf []byte, b, e int) []byte { method copySlice (line 71) | func (in *input) copySlice(buf []byte, b, e int) int { method charinfoNFC (line 78) | func (in *input) charinfoNFC(p int) (uint16, int) { method charinfoNFKC (line 85) | func (in *input) charinfoNFKC(p int) (uint16, int) { method hangul (line 92) | func (in *input) hangul(p int) (r rune) { function inputBytes (line 14) | func inputBytes(str []byte) input { function inputString (line 18) | func inputString(str string) input { FILE: vendor/golang.org/x/text/unicode/norm/iter.go constant MaxSegmentSize (line 14) | MaxSegmentSize = maxByteBufferSize type Iter (line 18) | type Iter struct method Init (line 32) | func (i *Iter) Init(f Form, src []byte) { method InitString (line 48) | func (i *Iter) InitString(f Form, src string) { method Seek (line 66) | func (i *Iter) Seek(offset int64, whence int) (int64, error) { method returnSlice (line 97) | func (i *Iter) returnSlice(a, b int) []byte { method Pos (line 105) | func (i *Iter) Pos() int { method setDone (line 109) | func (i *Iter) setDone() { method Done (line 115) | func (i *Iter) Done() bool { method Next (line 124) | func (i *Iter) Next() []byte { type iterFunc (line 29) | type iterFunc function nextASCIIBytes (line 128) | func nextASCIIBytes(i *Iter) []byte { function nextASCIIString (line 145) | func nextASCIIString(i *Iter) []byte { function nextHangul (line 162) | func nextHangul(i *Iter) []byte { function nextDone (line 177) | func nextDone(i *Iter) []byte { function nextMulti (line 183) | func nextMulti(i *Iter) []byte { function nextMultiNorm (line 204) | func nextMultiNorm(i *Iter) []byte { function nextDecomposed (line 225) | func nextDecomposed(i *Iter) (next []byte) { function doNormDecomposed (line 341) | func doNormDecomposed(i *Iter) []byte { function nextCGJDecompose (line 361) | func nextCGJDecompose(i *Iter) []byte { function nextComposed (line 371) | func nextComposed(i *Iter) []byte { function doNormComposed (line 427) | func doNormComposed(i *Iter) []byte { function nextCGJCompose (line 448) | func nextCGJCompose(i *Iter) []byte { FILE: vendor/golang.org/x/text/unicode/norm/normalize.go type Form (line 34) | type Form method Bytes (line 44) | func (f Form) Bytes(b []byte) []byte { method String (line 58) | func (f Form) String(s string) string { method IsNormal (line 72) | func (f Form) IsNormal(b []byte) bool { method IsNormalString (line 111) | func (f Form) IsNormalString(s string) bool { method Append (line 192) | func (f Form) Append(out []byte, src ...byte) []byte { method doAppend (line 196) | func (f Form) doAppend(out []byte, src input, n int) []byte { method AppendString (line 260) | func (f Form) AppendString(out []byte, src string) []byte { method QuickSpan (line 266) | func (f Form) QuickSpan(b []byte) int { method Span (line 273) | func (f Form) Span(b []byte, atEOF bool) (n int, err error) { method SpanString (line 287) | func (f Form) SpanString(s string, atEOF bool) (n int, err error) { method QuickSpanString (line 358) | func (f Form) QuickSpanString(s string) int { method FirstBoundary (line 365) | func (f Form) FirstBoundary(b []byte) int { method firstBoundary (line 369) | func (f Form) firstBoundary(src input, nsrc int) int { method FirstBoundaryInString (line 399) | func (f Form) FirstBoundaryInString(s string) int { method NextBoundary (line 406) | func (f Form) NextBoundary(b []byte, atEOF bool) int { method NextBoundaryInString (line 413) | func (f Form) NextBoundaryInString(s string, atEOF bool) int { method nextBoundary (line 417) | func (f Form) nextBoundary(src input, nsrc int, atEOF bool) int { method LastBoundary (line 457) | func (f Form) LastBoundary(b []byte) int { constant NFC (line 37) | NFC Form = iota constant NFD (line 38) | NFD constant NFKC (line 39) | NFKC constant NFKD (line 40) | NFKD function cmpNormalBytes (line 91) | func cmpNormalBytes(rb *reorderBuffer) bool { function patchTail (line 148) | func patchTail(rb *reorderBuffer) bool { function appendQuick (line 181) | func appendQuick(rb *reorderBuffer, i int) int { function doAppend (line 215) | func doAppend(rb *reorderBuffer, out []byte, p int) []byte { function doAppendInner (line 250) | func doAppendInner(rb *reorderBuffer, p int) []byte { method quickSpan (line 303) | func (f *formInfo) quickSpan(src input, i, end int, atEOF bool) (n int, ... function lastBoundary (line 461) | func lastBoundary(fd *formInfo, b []byte) int { function decomposeSegment (line 503) | func decomposeSegment(rb *reorderBuffer, sp int, atEOF bool) int { function lastRuneStart (line 555) | func lastRuneStart(fd *formInfo, buf []byte) (Properties, int) { function decomposeToLastBoundary (line 567) | func decomposeToLastBoundary(rb *reorderBuffer) { FILE: vendor/golang.org/x/text/unicode/norm/readwriter.go type normWriter (line 9) | type normWriter struct method Write (line 18) | func (w *normWriter) Write(data []byte) (n int, err error) { method Close (line 52) | func (w *normWriter) Close() error { method Writer (line 66) | func (f Form) Writer(w io.Writer) io.WriteCloser { type normReader (line 72) | type normReader struct method Read (line 83) | func (r *normReader) Read(p []byte) (int, error) { method Reader (line 119) | func (f Form) Reader(r io.Reader) io.Reader { FILE: vendor/golang.org/x/text/unicode/norm/tables10.0.0.go constant Version (line 11) | Version = "10.0.0" constant MaxTransformChunkSize (line 17) | MaxTransformChunkSize = 35 + maxNonStarters*4 constant firstMulti (line 31) | firstMulti = 0x186D constant firstCCC (line 32) | firstCCC = 0x2C9E constant endMulti (line 33) | endMulti = 0x2F60 constant firstLeadingCCC (line 34) | firstLeadingCCC = 0x49AE constant firstCCCZeroExcept (line 35) | firstCCCZeroExcept = 0x4A78 constant firstStarterWithNLead (line 36) | firstStarterWithNLead = 0x4A9F constant lastDecomp (line 37) | lastDecomp = 0x4AA1 constant maxDecomp (line 38) | maxDecomp = 0x8000 type nfcTrie (line 2904) | type nfcTrie struct method lookup (line 2736) | func (t *nfcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 2798) | func (t *nfcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 2821) | func (t *nfcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 2883) | func (t *nfcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 2911) | func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 { function newNfcTrie (line 2906) | func newNfcTrie(i int) *nfcTrie { type nfkcTrie (line 4535) | type nfkcTrie struct method lookup (line 4367) | func (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 4429) | func (t *nfkcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 4452) | func (t *nfkcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 4514) | func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 4542) | func (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 { function newNfkcTrie (line 4537) | func newNfkcTrie(i int) *nfkcTrie { constant recompMapPacked (line 6715) | recompMapPacked = "" + FILE: vendor/golang.org/x/text/unicode/norm/tables11.0.0.go constant Version (line 11) | Version = "11.0.0" constant MaxTransformChunkSize (line 17) | MaxTransformChunkSize = 35 + maxNonStarters*4 constant firstMulti (line 31) | firstMulti = 0x186D constant firstCCC (line 32) | firstCCC = 0x2C9E constant endMulti (line 33) | endMulti = 0x2F60 constant firstLeadingCCC (line 34) | firstLeadingCCC = 0x49AE constant firstCCCZeroExcept (line 35) | firstCCCZeroExcept = 0x4A78 constant firstStarterWithNLead (line 36) | firstStarterWithNLead = 0x4A9F constant lastDecomp (line 37) | lastDecomp = 0x4AA1 constant maxDecomp (line 38) | maxDecomp = 0x8000 type nfcTrie (line 2904) | type nfcTrie struct method lookup (line 2736) | func (t *nfcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 2798) | func (t *nfcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 2821) | func (t *nfcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 2883) | func (t *nfcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 2911) | func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 { function newNfcTrie (line 2906) | func newNfcTrie(i int) *nfcTrie { type nfkcTrie (line 4553) | type nfkcTrie struct method lookup (line 4385) | func (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 4447) | func (t *nfkcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 4470) | func (t *nfkcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 4532) | func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 4560) | func (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 { function newNfkcTrie (line 4555) | func newNfkcTrie(i int) *nfkcTrie { constant recompMapPacked (line 6751) | recompMapPacked = "" + FILE: vendor/golang.org/x/text/unicode/norm/tables12.0.0.go constant Version (line 11) | Version = "12.0.0" constant MaxTransformChunkSize (line 17) | MaxTransformChunkSize = 35 + maxNonStarters*4 constant firstMulti (line 31) | firstMulti = 0x186D constant firstCCC (line 32) | firstCCC = 0x2CA1 constant endMulti (line 33) | endMulti = 0x2F63 constant firstLeadingCCC (line 34) | firstLeadingCCC = 0x49B1 constant firstCCCZeroExcept (line 35) | firstCCCZeroExcept = 0x4A7B constant firstStarterWithNLead (line 36) | firstStarterWithNLead = 0x4AA2 constant lastDecomp (line 37) | lastDecomp = 0x4AA4 constant maxDecomp (line 38) | maxDecomp = 0x8000 type nfcTrie (line 2904) | type nfcTrie struct method lookup (line 2736) | func (t *nfcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 2798) | func (t *nfcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 2821) | func (t *nfcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 2883) | func (t *nfcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 2911) | func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 { function newNfcTrie (line 2906) | func newNfcTrie(i int) *nfcTrie { type nfkcTrie (line 4561) | type nfkcTrie struct method lookup (line 4393) | func (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 4455) | func (t *nfkcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 4478) | func (t *nfkcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 4540) | func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 4568) | func (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 { function newNfkcTrie (line 4563) | func newNfkcTrie(i int) *nfkcTrie { constant recompMapPacked (line 6768) | recompMapPacked = "" + FILE: vendor/golang.org/x/text/unicode/norm/tables13.0.0.go constant Version (line 11) | Version = "13.0.0" constant MaxTransformChunkSize (line 17) | MaxTransformChunkSize = 35 + maxNonStarters*4 constant firstMulti (line 31) | firstMulti = 0x1870 constant firstCCC (line 32) | firstCCC = 0x2CAB constant endMulti (line 33) | endMulti = 0x2F77 constant firstLeadingCCC (line 34) | firstLeadingCCC = 0x49C5 constant firstCCCZeroExcept (line 35) | firstCCCZeroExcept = 0x4A8F constant firstStarterWithNLead (line 36) | firstStarterWithNLead = 0x4AB6 constant lastDecomp (line 37) | lastDecomp = 0x4AB8 constant maxDecomp (line 38) | maxDecomp = 0x8000 type nfcTrie (line 2906) | type nfcTrie struct method lookup (line 2738) | func (t *nfcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 2800) | func (t *nfcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 2823) | func (t *nfcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 2885) | func (t *nfcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 2913) | func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 { function newNfcTrie (line 2908) | func newNfcTrie(i int) *nfcTrie { type nfkcTrie (line 4584) | type nfkcTrie struct method lookup (line 4416) | func (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 4478) | func (t *nfkcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 4501) | func (t *nfkcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 4563) | func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 4591) | func (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 { function newNfkcTrie (line 4586) | func newNfkcTrie(i int) *nfkcTrie { constant recompMapPacked (line 6817) | recompMapPacked = "" + FILE: vendor/golang.org/x/text/unicode/norm/tables9.0.0.go constant Version (line 11) | Version = "9.0.0" constant MaxTransformChunkSize (line 17) | MaxTransformChunkSize = 35 + maxNonStarters*4 constant firstMulti (line 31) | firstMulti = 0x186D constant firstCCC (line 32) | firstCCC = 0x2C9E constant endMulti (line 33) | endMulti = 0x2F60 constant firstLeadingCCC (line 34) | firstLeadingCCC = 0x49AE constant firstCCCZeroExcept (line 35) | firstCCCZeroExcept = 0x4A78 constant firstStarterWithNLead (line 36) | firstStarterWithNLead = 0x4A9F constant lastDecomp (line 37) | lastDecomp = 0x4AA1 constant maxDecomp (line 38) | maxDecomp = 0x8000 type nfcTrie (line 2904) | type nfcTrie struct method lookup (line 2736) | func (t *nfcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 2798) | func (t *nfcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 2821) | func (t *nfcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 2883) | func (t *nfcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 2911) | func (t *nfcTrie) lookupValue(n uint32, b byte) uint16 { function newNfcTrie (line 2906) | func newNfcTrie(i int) *nfcTrie { type nfkcTrie (line 4525) | type nfkcTrie struct method lookup (line 4357) | func (t *nfkcTrie) lookup(s []byte) (v uint16, sz int) { method lookupUnsafe (line 4419) | func (t *nfkcTrie) lookupUnsafe(s []byte) uint16 { method lookupString (line 4442) | func (t *nfkcTrie) lookupString(s string) (v uint16, sz int) { method lookupStringUnsafe (line 4504) | func (t *nfkcTrie) lookupStringUnsafe(s string) uint16 { method lookupValue (line 4532) | func (t *nfkcTrie) lookupValue(n uint32, b byte) uint16 { function newNfkcTrie (line 4527) | func newNfkcTrie(i int) *nfkcTrie { constant recompMapPacked (line 6695) | recompMapPacked = "" + FILE: vendor/golang.org/x/text/unicode/norm/transform.go method Reset (line 14) | func (Form) Reset() {} method Transform (line 20) | func (f Form) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, er... function flushTransform (line 42) | func flushTransform(rb *reorderBuffer) bool { method transform (line 55) | func (f Form) transform(dst, src []byte, atEOF bool) (nDst, nSrc int, er... FILE: vendor/golang.org/x/text/unicode/norm/trie.go type valueRange (line 7) | type valueRange struct type sparseBlocks (line 12) | type sparseBlocks struct method lookup (line 36) | func (t *sparseBlocks) lookup(n uint32, b byte) uint16 { 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 85) | func yaml_emitter_initialize(emitter *yaml_emitter_t) { function yaml_emitter_delete (line 98) | func yaml_emitter_delete(emitter *yaml_emitter_t) { function yaml_string_write_handler (line 103) | func yaml_string_write_handler(emitter *yaml_emitter_t, buffer []byte) e... function yaml_writer_write_handler (line 110) | func yaml_writer_write_handler(emitter *yaml_emitter_t, buffer []byte) e... function yaml_emitter_set_output_string (line 116) | func yaml_emitter_set_output_string(emitter *yaml_emitter_t, output_buff... function yaml_emitter_set_output_writer (line 125) | func yaml_emitter_set_output_writer(emitter *yaml_emitter_t, w io.Writer) { function yaml_emitter_set_encoding (line 134) | func yaml_emitter_set_encoding(emitter *yaml_emitter_t, encoding yaml_en... function yaml_emitter_set_canonical (line 142) | func yaml_emitter_set_canonical(emitter *yaml_emitter_t, canonical bool) { function yaml_emitter_set_indent (line 147) | func yaml_emitter_set_indent(emitter *yaml_emitter_t, indent int) { function yaml_emitter_set_width (line 155) | func yaml_emitter_set_width(emitter *yaml_emitter_t, width int) { function yaml_emitter_set_unicode (line 163) | func yaml_emitter_set_unicode(emitter *yaml_emitter_t, unicode bool) { function yaml_emitter_set_break (line 168) | func yaml_emitter_set_break(emitter *yaml_emitter_t, line_break yaml_bre... function yaml_stream_start_event_initialize (line 259) | func yaml_stream_start_event_initialize(event *yaml_event_t, encoding ya... function yaml_stream_end_event_initialize (line 267) | func yaml_stream_end_event_initialize(event *yaml_event_t) { function yaml_document_start_event_initialize (line 274) | func yaml_document_start_event_initialize( function yaml_document_end_event_initialize (line 289) | func yaml_document_end_event_initialize(event *yaml_event_t, implicit bo... function yaml_scalar_event_initialize (line 321) | func yaml_scalar_event_initialize(event *yaml_event_t, anchor, tag, valu... function yaml_sequence_start_event_initialize (line 335) | func yaml_sequence_start_event_initialize(event *yaml_event_t, anchor, t... function yaml_sequence_end_event_initialize (line 347) | func yaml_sequence_end_event_initialize(event *yaml_event_t) bool { function yaml_mapping_start_event_initialize (line 355) | func yaml_mapping_start_event_initialize(event *yaml_event_t, anchor, ta... function yaml_mapping_end_event_initialize (line 366) | func yaml_mapping_end_event_initialize(event *yaml_event_t) { function yaml_event_delete (line 373) | 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 253) | func (d *decoder) terror(n *node, tag string, out reflect.Value) { method callUnmarshaler (line 268) | func (d *decoder) callUnmarshaler(n *node, u Unmarshaler) (good bool) { method prepare (line 297) | func (d *decoder) prepare(n *node, out reflect.Value) (newout reflect.... method unmarshal (line 350) | func (d *decoder) unmarshal(n *node, out reflect.Value) (good bool) { method document (line 381) | func (d *decoder) document(n *node, out reflect.Value) (good bool) { method alias (line 390) | func (d *decoder) alias(n *node, out reflect.Value) (good bool) { method scalar (line 411) | func (d *decoder) scalar(n *node, out reflect.Value) bool { method sequence (line 585) | func (d *decoder) sequence(n *node, out reflect.Value) (good bool) { method mapping (line 623) | func (d *decoder) mapping(n *node, out reflect.Value) (good bool) { method setMapIndex (line 685) | func (d *decoder) setMapIndex(n *node, out, k, v reflect.Value) { method mappingSlice (line 693) | func (d *decoder) mappingSlice(n *node, out reflect.Value) (good bool) { method mappingStruct (line 724) | func (d *decoder) mappingStruct(n *node, out reflect.Value) (good bool) { method merge (line 786) | func (d *decoder) merge(n *node, out reflect.Value) { function newDecoder (line 247) | func newDecoder(strict bool) *decoder { constant alias_ratio_range_low (line 324) | alias_ratio_range_low = 400000 constant alias_ratio_range_high (line 328) | alias_ratio_range_high = 4000000 constant alias_ratio_range (line 331) | alias_ratio_range = float64(alias_ratio_range_high - alias_ratio_range_low) function allowedAliasRatio (line 334) | func allowedAliasRatio(decodeCount int) float64 { function resetMap (line 405) | func resetMap(out reflect.Value) { function settableValueOf (line 578) | func settableValueOf(i interface{}) reflect.Value { function failWantMap (line 782) | func failWantMap() { function isMerge (line 813) | 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 652) | func yaml_parser_fetch_next_token(parser *yaml_parser_t) bool { function yaml_simple_key_is_valid (line 822) | func yaml_simple_key_is_valid(parser *yaml_parser_t, simple_key *yaml_si... function yaml_parser_save_simple_key (line 850) | func yaml_parser_save_simple_key(parser *yaml_parser_t) bool { function yaml_parser_remove_simple_key (line 878) | func yaml_parser_remove_simple_key(parser *yaml_parser_t) bool { constant max_flow_level (line 895) | max_flow_level = 10000 function yaml_parser_increase_flow_level (line 898) | func yaml_parser_increase_flow_level(parser *yaml_parser_t) bool { function yaml_parser_decrease_flow_level (line 918) | func yaml_parser_decrease_flow_level(parser *yaml_parser_t) bool { constant max_indents (line 929) | max_indents = 10000 function yaml_parser_roll_indent (line 934) | func yaml_parser_roll_indent(parser *yaml_parser_t, column, number int, ... function yaml_parser_unroll_indent (line 968) | func yaml_parser_unroll_indent(parser *yaml_parser_t, column int) bool { function yaml_parser_fetch_stream_start (line 992) | func yaml_parser_fetch_stream_start(parser *yaml_parser_t) bool { function yaml_parser_fetch_stream_end (line 1020) | func yaml_parser_fetch_stream_end(parser *yaml_parser_t) bool { function yaml_parser_fetch_directive (line 1051) | func yaml_parser_fetch_directive(parser *yaml_parser_t) bool { function yaml_parser_fetch_document_indicator (line 1075) | func yaml_parser_fetch_document_indicator(parser *yaml_parser_t, typ yam... function yaml_parser_fetch_flow_collection_start (line 1109) | func yaml_parser_fetch_flow_collection_start(parser *yaml_parser_t, typ ... function yaml_parser_fetch_flow_collection_end (line 1140) | func yaml_parser_fetch_flow_collection_end(parser *yaml_parser_t, typ ya... function yaml_parser_fetch_flow_entry (line 1172) | func yaml_parser_fetch_flow_entry(parser *yaml_parser_t) bool { function yaml_parser_fetch_block_entry (line 1197) | func yaml_parser_fetch_block_entry(parser *yaml_parser_t) bool { function yaml_parser_fetch_key (line 1239) | func yaml_parser_fetch_key(parser *yaml_parser_t) bool { function yaml_parser_fetch_value (line 1278) | func yaml_parser_fetch_value(parser *yaml_parser_t) bool { function yaml_parser_fetch_anchor (line 1348) | func yaml_parser_fetch_anchor(parser *yaml_parser_t, typ yaml_token_type... function yaml_parser_fetch_tag (line 1367) | func yaml_parser_fetch_tag(parser *yaml_parser_t) bool { function yaml_parser_fetch_block_scalar (line 1386) | func yaml_parser_fetch_block_scalar(parser *yaml_parser_t, literal bool)... function yaml_parser_fetch_flow_scalar (line 1405) | func yaml_parser_fetch_flow_scalar(parser *yaml_parser_t, single bool) b... function yaml_parser_fetch_plain_scalar (line 1424) | func yaml_parser_fetch_plain_scalar(parser *yaml_parser_t) bool { function yaml_parser_scan_to_next_token (line 1443) | func yaml_parser_scan_to_next_token(parser *yaml_parser_t) bool { function yaml_parser_scan_directive (line 1508) | func yaml_parser_scan_directive(parser *yaml_parser_t, token *yaml_token... function yaml_parser_scan_directive_name (line 1609) | func yaml_parser_scan_directive_name(parser *yaml_parser_t, start_mark y... function yaml_parser_scan_version_directive_value (line 1645) | func yaml_parser_scan_version_directive_value(parser *yaml_parser_t, sta... constant max_number_length (line 1677) | max_number_length = 2 function yaml_parser_scan_version_directive_number (line 1686) | func yaml_parser_scan_version_directive_number(parser *yaml_parser_t, st... function yaml_parser_scan_tag_directive_value (line 1722) | func yaml_parser_scan_tag_directive_value(parser *yaml_parser_t, start_m... function yaml_parser_scan_anchor (line 1780) | func yaml_parser_scan_anchor(parser *yaml_parser_t, token *yaml_token_t,... function yaml_parser_scan_tag (line 1838) | func yaml_parser_scan_tag(parser *yaml_parser_t, token *yaml_token_t) bo... function yaml_parser_scan_tag_handle (line 1923) | func yaml_parser_scan_tag_handle(parser *yaml_parser_t, directive bool, ... function yaml_parser_scan_tag_uri (line 1968) | func yaml_parser_scan_tag_uri(parser *yaml_parser_t, directive bool, hea... function yaml_parser_scan_uri_escapes (line 2026) | func yaml_parser_scan_uri_escapes(parser *yaml_parser_t, directive bool,... function yaml_parser_scan_block_scalar (line 2072) | func yaml_parser_scan_block_scalar(parser *yaml_parser_t, token *yaml_to... function yaml_parser_scan_block_scalar_breaks (line 2260) | func yaml_parser_scan_block_scalar_breaks(parser *yaml_parser_t, indent ... function yaml_parser_scan_flow_scalar (line 2314) | func yaml_parser_scan_flow_scalar(parser *yaml_parser_t, token *yaml_tok... function yaml_parser_scan_plain_scalar (line 2570) | 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 { function FutureLineWrap (line 476) | func FutureLineWrap() { 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 614) | type yaml_write_handler_t type yaml_emitter_state_t (line 616) | type yaml_emitter_state_t constant yaml_EMIT_STREAM_START_STATE (line 621) | yaml_EMIT_STREAM_START_STATE yaml_emitter_state_t = iota constant yaml_EMIT_FIRST_DOCUMENT_START_STATE (line 623) | yaml_EMIT_FIRST_DOCUMENT_START_STATE constant yaml_EMIT_DOCUMENT_START_STATE (line 624) | yaml_EMIT_DOCUMENT_START_STATE constant yaml_EMIT_DOCUMENT_CONTENT_STATE (line 625) | yaml_EMIT_DOCUMENT_CONTENT_STATE constant yaml_EMIT_DOCUMENT_END_STATE (line 626) | yaml_EMIT_DOCUMENT_END_STATE constant yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE (line 627) | yaml_EMIT_FLOW_SEQUENCE_FIRST_ITEM_STATE constant yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE (line 628) | yaml_EMIT_FLOW_SEQUENCE_ITEM_STATE constant yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE (line 629) | yaml_EMIT_FLOW_MAPPING_FIRST_KEY_STATE constant yaml_EMIT_FLOW_MAPPING_KEY_STATE (line 630) | yaml_EMIT_FLOW_MAPPING_KEY_STATE constant yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE (line 631) | yaml_EMIT_FLOW_MAPPING_SIMPLE_VALUE_STATE constant yaml_EMIT_FLOW_MAPPING_VALUE_STATE (line 632) | yaml_EMIT_FLOW_MAPPING_VALUE_STATE constant yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE (line 633) | yaml_EMIT_BLOCK_SEQUENCE_FIRST_ITEM_STATE constant yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE (line 634) | yaml_EMIT_BLOCK_SEQUENCE_ITEM_STATE constant yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE (line 635) | yaml_EMIT_BLOCK_MAPPING_FIRST_KEY_STATE constant yaml_EMIT_BLOCK_MAPPING_KEY_STATE (line 636) | yaml_EMIT_BLOCK_MAPPING_KEY_STATE constant yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE (line 637) | yaml_EMIT_BLOCK_MAPPING_SIMPLE_VALUE_STATE constant yaml_EMIT_BLOCK_MAPPING_VALUE_STATE (line 638) | yaml_EMIT_BLOCK_MAPPING_VALUE_STATE constant yaml_EMIT_END_STATE (line 639) | yaml_EMIT_END_STATE type yaml_emitter_t (line 646) | 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 {