SYMBOL INDEX (62150 symbols across 483 files) FILE: daemon.go type TCPMessage (line 25) | type TCPMessage struct type StatsOptionsEntry (line 35) | type StatsOptionsEntry struct type ContainerEvent (line 43) | type ContainerEvent struct type Daemon (line 55) | type Daemon struct method Init (line 91) | func (d *Daemon) Init() error { method Serve (line 112) | func (d *Daemon) Serve() { method StartMonitoringEvents (line 134) | func (d *Daemon) StartMonitoringEvents() { method handleConn (line 158) | func (d *Daemon) handleConn(conn net.Conn) { method handleMessage (line 221) | func (d *Daemon) handleMessage(message []byte) { method eventCallback (line 247) | func (d *Daemon) eventCallback(event events.Message) { method statCallback (line 331) | func (d *Daemon) statCallback(id string, stats *types.StatsJSON, args ... method execDockerCmd (line 373) | func (d *Daemon) execDockerCmd(args []string) { method listContainers (line 385) | func (d *Daemon) listContainers() { method startStatsMonitoring (line 441) | func (d *Daemon) startStatsMonitoring(containerID string) { method apiEventToContainerEvent (line 544) | func (d *Daemon) apiEventToContainerEvent(event events.Message) (Conta... function NewDaemon (line 78) | func NewDaemon() *Daemon { type CPUStats (line 85) | type CPUStats struct function calculateCPUPercent (line 498) | func calculateCPUPercent(previousCPUStats *CPUStats, newCPUStats *types.... function splitRepoAndTag (line 513) | func splitRepoAndTag(repoTag string) (string, string) { function containerEventToTCPMsg (line 531) | func containerEventToTCPMsg(containerEvent ContainerEvent) ([]byte, erro... FILE: main.go function main (line 17) | func main() { FILE: setup.go constant downloadURL (line 17) | downloadURL = "https://download.docker.com/linux/static/stable/x86_64/... constant rcDownloadURL (line 18) | rcDownloadURL = "https://test.docker.com/builds/Linux/x86_64/docker-" method GetDockerBinary (line 23) | func (d *Daemon) GetDockerBinary() error { type copier (line 77) | type copier function compareVersions (line 79) | func compareVersions(v1 string, v2 string) (comp int, err error) { function getClient (line 109) | func getClient(out *os.File, URL string, cp copier) error { function copyClient (line 119) | func copyClient(out *os.File, resp *http.Response) error { function extractClient (line 124) | func extractClient(out *os.File, resp *http.Response) error { FILE: vendor/github.com/Microsoft/go-winio/backup.go constant BackupData (line 21) | BackupData = uint32(iota + 1) constant BackupEaData (line 22) | BackupEaData constant BackupSecurity (line 23) | BackupSecurity constant BackupAlternateData (line 24) | BackupAlternateData constant BackupLink (line 25) | BackupLink constant BackupPropertyData (line 26) | BackupPropertyData constant BackupObjectId (line 27) | BackupObjectId constant BackupReparseData (line 28) | BackupReparseData constant BackupSparseBlock (line 29) | BackupSparseBlock constant BackupTxfsData (line 30) | BackupTxfsData constant StreamSparseAttributes (line 34) | StreamSparseAttributes = uint32(8) constant WRITE_DAC (line 38) | WRITE_DAC = 0x40000 constant WRITE_OWNER (line 39) | WRITE_OWNER = 0x80000 constant ACCESS_SYSTEM_SECURITY (line 40) | ACCESS_SYSTEM_SECURITY = 0x1000000 type BackupHeader (line 44) | type BackupHeader struct type win32StreamId (line 52) | type win32StreamId struct type BackupStreamReader (line 61) | type BackupStreamReader struct method Next (line 73) | func (r *BackupStreamReader) Next() (*BackupHeader, error) { method Read (line 106) | func (r *BackupStreamReader) Read(b []byte) (int, error) { function NewBackupStreamReader (line 67) | func NewBackupStreamReader(r io.Reader) *BackupStreamReader { type BackupStreamWriter (line 124) | type BackupStreamWriter struct method WriteHeader (line 135) | func (w *BackupStreamWriter) WriteHeader(hdr *BackupHeader) error { method Write (line 168) | func (w *BackupStreamWriter) Write(b []byte) (int, error) { function NewBackupStreamWriter (line 130) | func NewBackupStreamWriter(w io.Writer) *BackupStreamWriter { type BackupFileReader (line 178) | type BackupFileReader struct method Read (line 193) | func (r *BackupFileReader) Read(b []byte) (int, error) { method Close (line 207) | func (r *BackupFileReader) Close() error { function NewBackupFileReader (line 186) | func NewBackupFileReader(f *os.File, includeSecurity bool) *BackupFileRe... type BackupFileWriter (line 216) | type BackupFileWriter struct method Write (line 231) | func (w *BackupFileWriter) Write(b []byte) (int, error) { method Close (line 245) | func (w *BackupFileWriter) Close() error { function NewBackupFileWriter (line 224) | func NewBackupFileWriter(f *os.File, includeSecurity bool) *BackupFileWr... function OpenForBackup (line 257) | func OpenForBackup(path string, access uint32, share uint32, createmode ... FILE: vendor/github.com/Microsoft/go-winio/file.go constant cFILE_SKIP_COMPLETION_PORT_ON_SUCCESS (line 21) | cFILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1 constant cFILE_SKIP_SET_EVENT_ON_HANDLE (line 22) | cFILE_SKIP_SET_EVENT_ON_HANDLE = 2 type timeoutError (line 30) | type timeoutError struct method Error (line 32) | func (e *timeoutError) Error() string { return "i/o timeout" } method Timeout (line 33) | func (e *timeoutError) Timeout() bool { return true } method Temporary (line 34) | func (e *timeoutError) Temporary() bool { return true } type ioResult (line 40) | type ioResult struct type ioOperation (line 46) | type ioOperation struct function initIo (line 51) | func initIo() { type win32File (line 62) | type win32File struct method closeHandle (line 91) | func (f *win32File) closeHandle() { method Close (line 104) | func (f *win32File) Close() error { method prepareIo (line 111) | func (f *win32File) prepareIo() (*ioOperation, error) { method asyncIo (line 139) | func (f *win32File) asyncIo(c *ioOperation, deadline time.Time, bytes ... method Read (line 183) | func (f *win32File) Read(b []byte) (int, error) { method Write (line 203) | func (f *win32File) Write(b []byte) (int, error) { method SetReadDeadline (line 213) | func (f *win32File) SetReadDeadline(t time.Time) error { method SetWriteDeadline (line 218) | func (f *win32File) SetWriteDeadline(t time.Time) error { function makeWin32File (line 71) | func makeWin32File(h syscall.Handle) (*win32File, error) { function MakeOpenFile (line 86) | func MakeOpenFile(h syscall.Handle) (io.ReadWriteCloser, error) { function ioCompletionProcessor (line 122) | func ioCompletionProcessor(h syscall.Handle) { FILE: vendor/github.com/Microsoft/go-winio/fileinfo.go constant fileBasicInfo (line 15) | fileBasicInfo = 0 constant fileIDInfo (line 16) | fileIDInfo = 0x12 type FileBasicInfo (line 20) | type FileBasicInfo struct function GetFileBasicInfo (line 26) | func GetFileBasicInfo(f *os.File) (*FileBasicInfo, error) { function SetFileBasicInfo (line 35) | func SetFileBasicInfo(f *os.File, bi *FileBasicInfo) error { type FileIDInfo (line 44) | type FileIDInfo struct function GetFileID (line 50) | func GetFileID(f *os.File) (*FileIDInfo, error) { FILE: vendor/github.com/Microsoft/go-winio/pipe.go type securityAttributes (line 22) | type securityAttributes struct constant cERROR_PIPE_BUSY (line 29) | cERROR_PIPE_BUSY = syscall.Errno(231) constant cERROR_PIPE_CONNECTED (line 30) | cERROR_PIPE_CONNECTED = syscall.Errno(535) constant cERROR_SEM_TIMEOUT (line 31) | cERROR_SEM_TIMEOUT = syscall.Errno(121) constant cPIPE_ACCESS_DUPLEX (line 33) | cPIPE_ACCESS_DUPLEX = 0x3 constant cFILE_FLAG_FIRST_PIPE_INSTANCE (line 34) | cFILE_FLAG_FIRST_PIPE_INSTANCE = 0x80000 constant cSECURITY_SQOS_PRESENT (line 35) | cSECURITY_SQOS_PRESENT = 0x100000 constant cSECURITY_ANONYMOUS (line 36) | cSECURITY_ANONYMOUS = 0 constant cPIPE_REJECT_REMOTE_CLIENTS (line 38) | cPIPE_REJECT_REMOTE_CLIENTS = 0x8 constant cPIPE_UNLIMITED_INSTANCES (line 40) | cPIPE_UNLIMITED_INSTANCES = 255 constant cNMPWAIT_USE_DEFAULT_WAIT (line 42) | cNMPWAIT_USE_DEFAULT_WAIT = 0 constant cNMPWAIT_NOWAIT (line 43) | cNMPWAIT_NOWAIT = 1 constant cPIPE_TYPE_MESSAGE (line 45) | cPIPE_TYPE_MESSAGE = 4 constant cPIPE_READMODE_MESSAGE (line 47) | cPIPE_READMODE_MESSAGE = 2 type win32Pipe (line 58) | type win32Pipe struct method LocalAddr (line 71) | func (f *win32Pipe) LocalAddr() net.Addr { method RemoteAddr (line 75) | func (f *win32Pipe) RemoteAddr() net.Addr { method SetDeadline (line 79) | func (f *win32Pipe) SetDeadline(t time.Time) error { type win32MessageBytePipe (line 63) | type win32MessageBytePipe struct method CloseWrite (line 86) | func (f *win32MessageBytePipe) CloseWrite() error { method Write (line 100) | func (f *win32MessageBytePipe) Write(b []byte) (int, error) { method Read (line 112) | func (f *win32MessageBytePipe) Read(b []byte) (int, error) { type pipeAddress (line 69) | type pipeAddress method Network (line 128) | func (s pipeAddress) Network() string { method String (line 132) | func (s pipeAddress) String() string { function DialPipe (line 139) | func DialPipe(path string, timeout *time.Duration) (net.Conn, error) { type acceptResponse (line 204) | type acceptResponse struct type win32PipeListener (line 209) | type win32PipeListener struct method makeServerPipe (line 242) | func (l *win32PipeListener) makeServerPipe() (*win32File, error) { method listenerRoutine (line 255) | func (l *win32PipeListener) listenerRoutine() { method Accept (line 369) | func (l *win32PipeListener) Accept() (net.Conn, error) { method Close (line 389) | func (l *win32PipeListener) Close() error { method Addr (line 398) | func (l *win32PipeListener) Addr() net.Addr { function makeServerPipeHandle (line 219) | func makeServerPipeHandle(path string, securityDescriptor []byte, c *Pip... type PipeConfig (line 296) | type PipeConfig struct function ListenPipe (line 317) | func ListenPipe(path string, c *PipeConfig) (net.Listener, error) { function connectPipe (line 356) | func connectPipe(p *win32File) error { FILE: vendor/github.com/Microsoft/go-winio/privilege.go constant SE_PRIVILEGE_ENABLED (line 27) | SE_PRIVILEGE_ENABLED = 2 constant ERROR_NOT_ALL_ASSIGNED (line 29) | ERROR_NOT_ALL_ASSIGNED syscall.Errno = 1300 constant SeBackupPrivilege (line 31) | SeBackupPrivilege = "SeBackupPrivilege" constant SeRestorePrivilege (line 32) | SeRestorePrivilege = "SeRestorePrivilege" constant securityAnonymous (line 36) | securityAnonymous = iota constant securityIdentification (line 37) | securityIdentification constant securityImpersonation (line 38) | securityImpersonation constant securityDelegation (line 39) | securityDelegation type PrivilegeError (line 48) | type PrivilegeError struct method Error (line 52) | func (e *PrivilegeError) Error() string { function RunWithPrivilege (line 71) | func RunWithPrivilege(name string, fn func() error) error { function RunWithPrivileges (line 76) | func RunWithPrivileges(names []string, fn func() error) error { function mapPrivileges (line 95) | func mapPrivileges(names []string) ([]uint64, error) { function EnableProcessPrivileges (line 114) | func EnableProcessPrivileges(names []string) error { function DisableProcessPrivileges (line 119) | func DisableProcessPrivileges(names []string) error { function enableDisableProcessPrivilege (line 123) | func enableDisableProcessPrivilege(names []string, action uint32) error { function adjustPrivileges (line 140) | func adjustPrivileges(token windows.Token, privileges []uint64, action u... function getPrivilegeName (line 159) | func getPrivilegeName(luid uint64) string { function newThreadToken (line 178) | func newThreadToken() (windows.Token, error) { function releaseThreadToken (line 196) | func releaseThreadToken(h windows.Token) { FILE: vendor/github.com/Microsoft/go-winio/reparse.go constant reparseTagMountPoint (line 13) | reparseTagMountPoint = 0xA0000003 constant reparseTagSymlink (line 14) | reparseTagSymlink = 0xA000000C type reparseDataBuffer (line 17) | type reparseDataBuffer struct type ReparsePoint (line 28) | type ReparsePoint struct type UnsupportedReparsePointError (line 35) | type UnsupportedReparsePointError struct method Error (line 39) | func (e *UnsupportedReparsePointError) Error() string { function DecodeReparsePoint (line 45) | func DecodeReparsePoint(b []byte) (*ReparsePoint, error) { function DecodeReparsePointData (line 50) | func DecodeReparsePointData(tag uint32, b []byte) (*ReparsePoint, error) { function isDriveLetter (line 72) | func isDriveLetter(c byte) bool { function EncodeReparsePoint (line 78) | func EncodeReparsePoint(rp *ReparsePoint) []byte { FILE: vendor/github.com/Microsoft/go-winio/sd.go constant cERROR_NONE_MAPPED (line 18) | cERROR_NONE_MAPPED = syscall.Errno(1332) type AccountLookupError (line 21) | type AccountLookupError struct method Error (line 26) | func (e *AccountLookupError) Error() string { type SddlConversionError (line 40) | type SddlConversionError struct method Error (line 45) | func (e *SddlConversionError) Error() string { function LookupSidByName (line 50) | func LookupSidByName(name string) (sid string, err error) { function SddlToSecurityDescriptor (line 76) | func SddlToSecurityDescriptor(sddl string) ([]byte, error) { function SecurityDescriptorToSddl (line 88) | func SecurityDescriptorToSddl(sd []byte) (string, error) { FILE: vendor/github.com/Microsoft/go-winio/zsyscall_windows.go function cancelIoEx (line 50) | func cancelIoEx(file syscall.Handle, o *syscall.Overlapped) (err error) { function createIoCompletionPort (line 62) | func createIoCompletionPort(file syscall.Handle, port syscall.Handle, ke... function getQueuedCompletionStatus (line 75) | func getQueuedCompletionStatus(port syscall.Handle, bytes *uint32, key *... function setFileCompletionNotificationModes (line 87) | func setFileCompletionNotificationModes(h syscall.Handle, flags uint8) (... function timeBeginPeriod (line 99) | func timeBeginPeriod(period uint32) (n int32) { function connectNamedPipe (line 105) | func connectNamedPipe(pipe syscall.Handle, o *syscall.Overlapped) (err e... function createNamedPipe (line 117) | func createNamedPipe(name string, flags uint32, pipeMode uint32, maxInst... function _createNamedPipe (line 126) | func _createNamedPipe(name *uint16, flags uint32, pipeMode uint32, maxIn... function createFile (line 139) | func createFile(name string, access uint32, mode uint32, sa *securityAtt... function _createFile (line 148) | func _createFile(name *uint16, access uint32, mode uint32, sa *securityA... function waitNamedPipe (line 161) | func waitNamedPipe(name string, timeout uint32) (err error) { function _waitNamedPipe (line 170) | func _waitNamedPipe(name *uint16, timeout uint32) (err error) { function getNamedPipeInfo (line 182) | func getNamedPipeInfo(pipe syscall.Handle, flags *uint32, outSize *uint3... function getNamedPipeHandleState (line 194) | func getNamedPipeHandleState(pipe syscall.Handle, state *uint32, curInst... function lookupAccountName (line 206) | func lookupAccountName(systemName *uint16, accountName string, sid *byte... function _lookupAccountName (line 215) | func _lookupAccountName(systemName *uint16, accountName *uint16, sid *by... function convertSidToStringSid (line 227) | func convertSidToStringSid(sid *byte, str **uint16) (err error) { function convertStringSecurityDescriptorToSecurityDescriptor (line 239) | func convertStringSecurityDescriptorToSecurityDescriptor(str string, rev... function _convertStringSecurityDescriptorToSecurityDescriptor (line 248) | func _convertStringSecurityDescriptorToSecurityDescriptor(str *uint16, r... function convertSecurityDescriptorToStringSecurityDescriptor (line 260) | func convertSecurityDescriptorToStringSecurityDescriptor(sd *byte, revis... function localFree (line 272) | func localFree(mem uintptr) { function getSecurityDescriptorLength (line 277) | func getSecurityDescriptorLength(sd uintptr) (len uint32) { function getFileInformationByHandleEx (line 283) | func getFileInformationByHandleEx(h syscall.Handle, class uint32, buffer... function setFileInformationByHandle (line 295) | func setFileInformationByHandle(h syscall.Handle, class uint32, buffer *... function adjustTokenPrivileges (line 307) | func adjustTokenPrivileges(token windows.Token, releaseAll bool, input *... function impersonateSelf (line 326) | func impersonateSelf(level uint32) (err error) { function revertToSelf (line 338) | func revertToSelf() (err error) { function openThreadToken (line 350) | func openThreadToken(thread syscall.Handle, accessMask uint32, openAsSel... function getCurrentThread (line 368) | func getCurrentThread() (h syscall.Handle) { function lookupPrivilegeValue (line 374) | func lookupPrivilegeValue(systemName string, name string, luid *uint64) ... function _lookupPrivilegeValue (line 388) | func _lookupPrivilegeValue(systemName *uint16, name *uint16, luid *uint6... function lookupPrivilegeName (line 400) | func lookupPrivilegeName(systemName string, luid *uint64, buffer *uint16... function _lookupPrivilegeName (line 409) | func _lookupPrivilegeName(systemName *uint16, luid *uint64, buffer *uint... function lookupPrivilegeDisplayName (line 421) | func lookupPrivilegeDisplayName(systemName string, name *uint16, buffer ... function _lookupPrivilegeDisplayName (line 430) | func _lookupPrivilegeDisplayName(systemName *uint16, name *uint16, buffe... function backupRead (line 442) | func backupRead(h syscall.Handle, b []byte, bytesRead *uint32, abort boo... function backupWrite (line 470) | func backupWrite(h syscall.Handle, b []byte, bytesWritten *uint32, abort... FILE: vendor/github.com/Sirupsen/logrus/alt_exit.go function runHandler (line 32) | func runHandler(handler func()) { function runHandlers (line 42) | func runHandlers() { function Exit (line 49) | func Exit(code int) { function RegisterExitHandler (line 62) | func RegisterExitHandler(handler func()) { FILE: vendor/github.com/Sirupsen/logrus/entry.go function init (line 13) | func init() { type Entry (line 28) | type Entry struct method String (line 57) | func (entry *Entry) String() (string, error) { method WithError (line 67) | func (entry *Entry) WithError(err error) *Entry { method WithField (line 72) | func (entry *Entry) WithField(key string, value interface{}) *Entry { method WithFields (line 77) | func (entry *Entry) WithFields(fields Fields) *Entry { method log (line 90) | func (entry Entry) log(level Level, msg string) { method Debug (line 128) | func (entry *Entry) Debug(args ...interface{}) { method Print (line 134) | func (entry *Entry) Print(args ...interface{}) { method Info (line 138) | func (entry *Entry) Info(args ...interface{}) { method Warn (line 144) | func (entry *Entry) Warn(args ...interface{}) { method Warning (line 150) | func (entry *Entry) Warning(args ...interface{}) { method Error (line 154) | func (entry *Entry) Error(args ...interface{}) { method Fatal (line 160) | func (entry *Entry) Fatal(args ...interface{}) { method Panic (line 167) | func (entry *Entry) Panic(args ...interface{}) { method Debugf (line 176) | func (entry *Entry) Debugf(format string, args ...interface{}) { method Infof (line 182) | func (entry *Entry) Infof(format string, args ...interface{}) { method Printf (line 188) | func (entry *Entry) Printf(format string, args ...interface{}) { method Warnf (line 192) | func (entry *Entry) Warnf(format string, args ...interface{}) { method Warningf (line 198) | func (entry *Entry) Warningf(format string, args ...interface{}) { method Errorf (line 202) | func (entry *Entry) Errorf(format string, args ...interface{}) { method Fatalf (line 208) | func (entry *Entry) Fatalf(format string, args ...interface{}) { method Panicf (line 215) | func (entry *Entry) Panicf(format string, args ...interface{}) { method Debugln (line 223) | func (entry *Entry) Debugln(args ...interface{}) { method Infoln (line 229) | func (entry *Entry) Infoln(args ...interface{}) { method Println (line 235) | func (entry *Entry) Println(args ...interface{}) { method Warnln (line 239) | func (entry *Entry) Warnln(args ...interface{}) { method Warningln (line 245) | func (entry *Entry) Warningln(args ...interface{}) { method Errorln (line 249) | func (entry *Entry) Errorln(args ...interface{}) { method Fatalln (line 255) | func (entry *Entry) Fatalln(args ...interface{}) { method Panicln (line 262) | func (entry *Entry) Panicln(args ...interface{}) { method sprintlnn (line 272) | func (entry *Entry) sprintlnn(args ...interface{}) string { function NewEntry (line 47) | func NewEntry(logger *Logger) *Entry { FILE: vendor/github.com/Sirupsen/logrus/exported.go function StandardLogger (line 12) | func StandardLogger() *Logger { function SetOutput (line 17) | func SetOutput(out io.Writer) { function SetFormatter (line 24) | func SetFormatter(formatter Formatter) { function SetLevel (line 31) | func SetLevel(level Level) { function GetLevel (line 38) | func GetLevel() Level { function AddHook (line 45) | func AddHook(hook Hook) { function WithError (line 52) | func WithError(err error) *Entry { function WithField (line 61) | func WithField(key string, value interface{}) *Entry { function WithFields (line 71) | func WithFields(fields Fields) *Entry { function Debug (line 76) | func Debug(args ...interface{}) { function Print (line 81) | func Print(args ...interface{}) { function Info (line 86) | func Info(args ...interface{}) { function Warn (line 91) | func Warn(args ...interface{}) { function Warning (line 96) | func Warning(args ...interface{}) { function Error (line 101) | func Error(args ...interface{}) { function Panic (line 106) | func Panic(args ...interface{}) { function Fatal (line 111) | func Fatal(args ...interface{}) { function Debugf (line 116) | func Debugf(format string, args ...interface{}) { function Printf (line 121) | func Printf(format string, args ...interface{}) { function Infof (line 126) | func Infof(format string, args ...interface{}) { function Warnf (line 131) | func Warnf(format string, args ...interface{}) { function Warningf (line 136) | func Warningf(format string, args ...interface{}) { function Errorf (line 141) | func Errorf(format string, args ...interface{}) { function Panicf (line 146) | func Panicf(format string, args ...interface{}) { function Fatalf (line 151) | func Fatalf(format string, args ...interface{}) { function Debugln (line 156) | func Debugln(args ...interface{}) { function Println (line 161) | func Println(args ...interface{}) { function Infoln (line 166) | func Infoln(args ...interface{}) { function Warnln (line 171) | func Warnln(args ...interface{}) { function Warningln (line 176) | func Warningln(args ...interface{}) { function Errorln (line 181) | func Errorln(args ...interface{}) { function Panicln (line 186) | func Panicln(args ...interface{}) { function Fatalln (line 191) | func Fatalln(args ...interface{}) { FILE: vendor/github.com/Sirupsen/logrus/formatter.go constant DefaultTimestampFormat (line 5) | DefaultTimestampFormat = time.RFC3339 type Formatter (line 17) | type Formatter interface function prefixFieldClashes (line 33) | func prefixFieldClashes(data Fields) { FILE: vendor/github.com/Sirupsen/logrus/hooks.go type Hook (line 8) | type Hook interface type LevelHooks (line 14) | type LevelHooks method Add (line 18) | func (hooks LevelHooks) Add(hook Hook) { method Fire (line 26) | func (hooks LevelHooks) Fire(level Level, entry *Entry) error { FILE: vendor/github.com/Sirupsen/logrus/json_formatter.go type fieldKey (line 8) | type fieldKey type FieldMap (line 9) | type FieldMap method resolve (line 17) | func (f FieldMap) resolve(key fieldKey) string { constant FieldKeyMsg (line 12) | FieldKeyMsg = "msg" constant FieldKeyLevel (line 13) | FieldKeyLevel = "level" constant FieldKeyTime (line 14) | FieldKeyTime = "time" type JSONFormatter (line 25) | type JSONFormatter struct method Format (line 44) | func (f *JSONFormatter) Format(entry *Entry) ([]byte, error) { FILE: vendor/github.com/Sirupsen/logrus/logger.go type Logger (line 9) | type Logger struct method newEntry (line 77) | func (logger *Logger) newEntry() *Entry { method releaseEntry (line 85) | func (logger *Logger) releaseEntry(entry *Entry) { method WithField (line 92) | func (logger *Logger) WithField(key string, value interface{}) *Entry { method WithFields (line 100) | func (logger *Logger) WithFields(fields Fields) *Entry { method WithError (line 108) | func (logger *Logger) WithError(err error) *Entry { method Debugf (line 114) | func (logger *Logger) Debugf(format string, args ...interface{}) { method Infof (line 122) | func (logger *Logger) Infof(format string, args ...interface{}) { method Printf (line 130) | func (logger *Logger) Printf(format string, args ...interface{}) { method Warnf (line 136) | func (logger *Logger) Warnf(format string, args ...interface{}) { method Warningf (line 144) | func (logger *Logger) Warningf(format string, args ...interface{}) { method Errorf (line 152) | func (logger *Logger) Errorf(format string, args ...interface{}) { method Fatalf (line 160) | func (logger *Logger) Fatalf(format string, args ...interface{}) { method Panicf (line 169) | func (logger *Logger) Panicf(format string, args ...interface{}) { method Debug (line 177) | func (logger *Logger) Debug(args ...interface{}) { method Info (line 185) | func (logger *Logger) Info(args ...interface{}) { method Print (line 193) | func (logger *Logger) Print(args ...interface{}) { method Warn (line 199) | func (logger *Logger) Warn(args ...interface{}) { method Warning (line 207) | func (logger *Logger) Warning(args ...interface{}) { method Error (line 215) | func (logger *Logger) Error(args ...interface{}) { method Fatal (line 223) | func (logger *Logger) Fatal(args ...interface{}) { method Panic (line 232) | func (logger *Logger) Panic(args ...interface{}) { method Debugln (line 240) | func (logger *Logger) Debugln(args ...interface{}) { method Infoln (line 248) | func (logger *Logger) Infoln(args ...interface{}) { method Println (line 256) | func (logger *Logger) Println(args ...interface{}) { method Warnln (line 262) | func (logger *Logger) Warnln(args ...interface{}) { method Warningln (line 270) | func (logger *Logger) Warningln(args ...interface{}) { method Errorln (line 278) | func (logger *Logger) Errorln(args ...interface{}) { method Fatalln (line 286) | func (logger *Logger) Fatalln(args ...interface{}) { method Panicln (line 295) | func (logger *Logger) Panicln(args ...interface{}) { method SetNoLock (line 306) | func (logger *Logger) SetNoLock() { type MutexWrap (line 35) | type MutexWrap struct method Lock (line 40) | func (mw *MutexWrap) Lock() { method Unlock (line 46) | func (mw *MutexWrap) Unlock() { method Disable (line 52) | func (mw *MutexWrap) Disable() { function New (line 68) | func New() *Logger { FILE: vendor/github.com/Sirupsen/logrus/logrus.go type Fields (line 10) | type Fields type Level (line 13) | type Level method String (line 16) | func (level Level) String() string { function ParseLevel (line 36) | func ParseLevel(lvl string) (Level, error) { constant PanicLevel (line 71) | PanicLevel Level = iota constant FatalLevel (line 74) | FatalLevel constant ErrorLevel (line 77) | ErrorLevel constant WarnLevel (line 79) | WarnLevel constant InfoLevel (line 82) | InfoLevel constant DebugLevel (line 84) | DebugLevel type StdLogger (line 97) | type StdLogger interface type FieldLogger (line 112) | type FieldLogger interface FILE: vendor/github.com/Sirupsen/logrus/terminal_appengine.go function IsTerminal (line 8) | func IsTerminal(f io.Writer) bool { FILE: vendor/github.com/Sirupsen/logrus/terminal_bsd.go constant ioctlReadTermios (line 8) | ioctlReadTermios = syscall.TIOCGETA type Termios (line 10) | type Termios FILE: vendor/github.com/Sirupsen/logrus/terminal_linux.go constant ioctlReadTermios (line 12) | ioctlReadTermios = syscall.TCGETS type Termios (line 14) | type Termios FILE: vendor/github.com/Sirupsen/logrus/terminal_notwindows.go function IsTerminal (line 19) | func IsTerminal(f io.Writer) bool { FILE: vendor/github.com/Sirupsen/logrus/terminal_solaris.go function IsTerminal (line 13) | func IsTerminal(f io.Writer) bool { FILE: vendor/github.com/Sirupsen/logrus/terminal_windows.go function IsTerminal (line 24) | func IsTerminal(f io.Writer) bool { FILE: vendor/github.com/Sirupsen/logrus/text_formatter.go constant nocolor (line 13) | nocolor = 0 constant red (line 14) | red = 31 constant green (line 15) | green = 32 constant yellow (line 16) | yellow = 33 constant blue (line 17) | blue = 34 constant gray (line 18) | gray = 37 function init (line 25) | func init() { type TextFormatter (line 29) | type TextFormatter struct method init (line 65) | func (f *TextFormatter) init(entry *Entry) { method Format (line 74) | func (f *TextFormatter) Format(entry *Entry) ([]byte, error) { method printColored (line 119) | func (f *TextFormatter) printColored(b *bytes.Buffer, entry *Entry, ke... method needsQuoting (line 148) | func (f *TextFormatter) needsQuoting(text string) bool { method appendKeyValue (line 163) | func (f *TextFormatter) appendKeyValue(b *bytes.Buffer, key string, va... method appendValue (line 171) | func (f *TextFormatter) appendValue(b *bytes.Buffer, value interface{}) { FILE: vendor/github.com/Sirupsen/logrus/writer.go method Writer (line 9) | func (logger *Logger) Writer() *io.PipeWriter { method WriterLevel (line 13) | func (logger *Logger) WriterLevel(level Level) *io.PipeWriter { method Writer (line 17) | func (entry *Entry) Writer() *io.PipeWriter { method WriterLevel (line 21) | func (entry *Entry) WriterLevel(level Level) *io.PipeWriter { method writerScanner (line 49) | func (entry *Entry) writerScanner(reader *io.PipeReader, printFunc func(... function writerFinalizer (line 60) | func writerFinalizer(writer *io.PipeWriter) { FILE: vendor/github.com/docker/distribution/digestset/set.go type Set (line 32) | type Set struct method Lookup (line 69) | func (dst *Set) Lookup(d string) (digest.Digest, error) { method Add (line 113) | func (dst *Set) Add(d digest.Digest) error { method Remove (line 144) | func (dst *Set) Remove(d digest.Digest) error { method All (line 172) | func (dst *Set) All() []digest.Digest { function NewSet (line 39) | func NewSet() *Set { function checkShortMatch (line 49) | func checkShortMatch(alg digest.Algorithm, hex, shortAlg, shortHex strin... function ShortCodeTable (line 188) | func ShortCodeTable(dst *Set, length int) map[digest.Digest]string { type digestEntry (line 226) | type digestEntry struct type digestEntries (line 232) | type digestEntries method Len (line 234) | func (d digestEntries) Len() int { method Less (line 238) | func (d digestEntries) Less(i, j int) bool { method Swap (line 245) | func (d digestEntries) Swap(i, j int) { FILE: vendor/github.com/docker/distribution/reference/helpers.go function IsNameOnly (line 6) | func IsNameOnly(ref Named) bool { function FamiliarName (line 18) | func FamiliarName(ref Named) string { function FamiliarString (line 27) | func FamiliarString(ref Reference) string { function FamiliarMatch (line 36) | func FamiliarMatch(pattern string, ref Reference) (bool, error) { FILE: vendor/github.com/docker/distribution/reference/normalize.go type normalizedNamed (line 24) | type normalizedNamed interface function ParseNormalizedNamed (line 33) | func ParseNormalizedNamed(s string) (Named, error) { function splitDockerDomain (line 62) | func splitDockerDomain(name string) (domain, remainder string) { function familiarizeName (line 84) | func familiarizeName(named namedRepository) repository { method Familiar (line 100) | func (r reference) Familiar() Named { method Familiar (line 108) | func (r repository) Familiar() Named { method Familiar (line 112) | func (t taggedReference) Familiar() Named { method Familiar (line 119) | func (c canonicalReference) Familiar() Named { function TagNameOnly (line 128) | func TagNameOnly(ref Named) Named { function ParseAnyReference (line 144) | func ParseAnyReference(ref string) (Reference, error) { function ParseAnyReferenceWithSet (line 157) | func ParseAnyReferenceWithSet(ref string, ds *digestset.Set) (Reference,... FILE: vendor/github.com/docker/distribution/reference/reference.go constant NameTotalLengthMax (line 37) | NameTotalLengthMax = 255 type Reference (line 65) | type Reference interface type Field (line 72) | type Field struct method Reference (line 85) | func (f Field) Reference() Reference { method MarshalText (line 91) | func (f Field) MarshalText() (p []byte, err error) { method UnmarshalText (line 98) | func (f *Field) UnmarshalText(p []byte) error { function AsField (line 77) | func AsField(reference Reference) Field { type Named (line 109) | type Named interface type Tagged (line 115) | type Tagged interface type NamedTagged (line 121) | type NamedTagged interface type Digested (line 128) | type Digested interface type Canonical (line 135) | type Canonical interface type namedRepository (line 142) | type namedRepository interface function Domain (line 149) | func Domain(named Named) string { function Path (line 158) | func Path(named Named) (name string) { function splitDomain (line 166) | func splitDomain(name string) (string, string) { function SplitHostname (line 179) | func SplitHostname(named Named) (string, string) { function Parse (line 189) | func Parse(s string) (Reference, error) { function ParseNamed (line 241) | func ParseNamed(s string) (Named, error) { function WithName (line 254) | func WithName(name string) (Named, error) { function WithTag (line 271) | func WithTag(name Named, tag string) (NamedTagged, error) { function WithDigest (line 297) | func WithDigest(name Named, digest digest.Digest) (Canonical, error) { function TrimNamed (line 322) | func TrimNamed(ref Named) Named { function getBestReferenceType (line 330) | func getBestReferenceType(ref reference) Reference { type reference (line 357) | type reference struct method String (line 363) | func (r reference) String() string { method Tag (line 367) | func (r reference) Tag() string { method Digest (line 371) | func (r reference) Digest() digest.Digest { type repository (line 375) | type repository struct method String (line 380) | func (r repository) String() string { method Name (line 384) | func (r repository) Name() string { method Domain (line 391) | func (r repository) Domain() string { method Path (line 395) | func (r repository) Path() string { type digestReference (line 399) | type digestReference method String (line 401) | func (d digestReference) String() string { method Digest (line 405) | func (d digestReference) Digest() digest.Digest { type taggedReference (line 409) | type taggedReference struct method String (line 414) | func (t taggedReference) String() string { method Tag (line 418) | func (t taggedReference) Tag() string { type canonicalReference (line 422) | type canonicalReference struct method String (line 427) | func (c canonicalReference) String() string { method Digest (line 431) | func (c canonicalReference) Digest() digest.Digest { FILE: vendor/github.com/docker/distribution/reference/regexp.go function literal (line 97) | func literal(s string) *regexp.Regexp { function expression (line 109) | func expression(res ...*regexp.Regexp) *regexp.Regexp { function optional (line 120) | func optional(res ...*regexp.Regexp) *regexp.Regexp { function repeated (line 126) | func repeated(res ...*regexp.Regexp) *regexp.Regexp { function group (line 131) | func group(res ...*regexp.Regexp) *regexp.Regexp { function capture (line 136) | func capture(res ...*regexp.Regexp) *regexp.Regexp { function anchored (line 141) | func anchored(res ...*regexp.Regexp) *regexp.Regexp { FILE: vendor/github.com/docker/docker/api/common.go constant DefaultVersion (line 24) | DefaultVersion string = "1.30" constant NoBaseImageSpecifier (line 28) | NoBaseImageSpecifier string = "scratch" type byPortInfo (line 32) | type byPortInfo method Len (line 34) | func (r byPortInfo) Len() int { return len(r) } method Swap (line 35) | func (r byPortInfo) Swap(i, j int) { r[i], r[j] = r[j], r[i] } method Less (line 36) | func (r byPortInfo) Less(i, j int) bool { function DisplayablePorts (line 55) | func DisplayablePorts(ports []types.Port) string { function formGroup (line 99) | func formGroup(key string, start, last uint16) string { function MatchesContentType (line 118) | func MatchesContentType(contentType, expectedType string) bool { function LoadOrCreateTrustKey (line 128) | func LoadOrCreateTrustKey(trustKeyPath string) (libtrust.PrivateKey, err... function serializePrivateKey (line 152) | func serializePrivateKey(key libtrust.PrivateKey, ext string) (encoded [... FILE: vendor/github.com/docker/docker/api/common_unix.go constant MinVersion (line 6) | MinVersion string = "1.12" FILE: vendor/github.com/docker/docker/api/common_windows.go constant MinVersion (line 8) | MinVersion string = "1.24" FILE: vendor/github.com/docker/docker/api/names.go constant RestrictedNameChars (line 6) | RestrictedNameChars = `[a-zA-Z0-9][a-zA-Z0-9_.-]` FILE: vendor/github.com/docker/docker/api/types/auth.go type AuthConfig (line 4) | type AuthConfig struct FILE: vendor/github.com/docker/docker/api/types/blkiodev/blkio.go type WeightDevice (line 6) | type WeightDevice struct method String (line 11) | func (w *WeightDevice) String() string { type ThrottleDevice (line 16) | type ThrottleDevice struct method String (line 21) | func (t *ThrottleDevice) String() string { FILE: vendor/github.com/docker/docker/api/types/client.go type CheckpointCreateOptions (line 14) | type CheckpointCreateOptions struct type CheckpointListOptions (line 21) | type CheckpointListOptions struct type CheckpointDeleteOptions (line 26) | type CheckpointDeleteOptions struct type ContainerAttachOptions (line 32) | type ContainerAttachOptions struct type ContainerCommitOptions (line 42) | type ContainerCommitOptions struct type ContainerExecInspect (line 52) | type ContainerExecInspect struct type ContainerListOptions (line 61) | type ContainerListOptions struct type ContainerLogsOptions (line 73) | type ContainerLogsOptions struct type ContainerRemoveOptions (line 84) | type ContainerRemoveOptions struct type ContainerStartOptions (line 91) | type ContainerStartOptions struct type CopyToContainerOptions (line 98) | type CopyToContainerOptions struct type EventsOptions (line 104) | type EventsOptions struct type NetworkListOptions (line 111) | type NetworkListOptions struct type HijackedResponse (line 116) | type HijackedResponse struct method Close (line 122) | func (h *HijackedResponse) Close() { method CloseWrite (line 133) | func (h *HijackedResponse) CloseWrite() error { type CloseWriter (line 128) | type CloseWriter interface type ImageBuildOptions (line 142) | type ImageBuildOptions struct type ImageBuildResponse (line 186) | type ImageBuildResponse struct type ImageCreateOptions (line 192) | type ImageCreateOptions struct type ImageImportSource (line 197) | type ImageImportSource struct type ImageImportOptions (line 203) | type ImageImportOptions struct type ImageListOptions (line 210) | type ImageListOptions struct type ImageLoadResponse (line 216) | type ImageLoadResponse struct type ImagePullOptions (line 223) | type ImagePullOptions struct type RequestPrivilegeFunc (line 235) | type RequestPrivilegeFunc type ImagePushOptions (line 238) | type ImagePushOptions type ImageRemoveOptions (line 241) | type ImageRemoveOptions struct type ImageSearchOptions (line 247) | type ImageSearchOptions struct type ResizeOptions (line 257) | type ResizeOptions struct type NodeListOptions (line 263) | type NodeListOptions struct type NodeRemoveOptions (line 268) | type NodeRemoveOptions struct type ServiceCreateOptions (line 273) | type ServiceCreateOptions struct type ServiceCreateResponse (line 283) | type ServiceCreateResponse struct constant RegistryAuthFromSpec (line 292) | RegistryAuthFromSpec = "spec" constant RegistryAuthFromPreviousSpec (line 293) | RegistryAuthFromPreviousSpec = "previous-spec" type ServiceUpdateOptions (line 297) | type ServiceUpdateOptions struct type ServiceListOptions (line 321) | type ServiceListOptions struct type ServiceInspectOptions (line 327) | type ServiceInspectOptions struct type TaskListOptions (line 332) | type TaskListOptions struct type PluginRemoveOptions (line 337) | type PluginRemoveOptions struct type PluginEnableOptions (line 342) | type PluginEnableOptions struct type PluginDisableOptions (line 347) | type PluginDisableOptions struct type PluginInstallOptions (line 352) | type PluginInstallOptions struct type SwarmUnlockKeyResponse (line 364) | type SwarmUnlockKeyResponse struct type PluginCreateOptions (line 370) | type PluginCreateOptions struct FILE: vendor/github.com/docker/docker/api/types/configs.go type ContainerCreateConfig (line 13) | type ContainerCreateConfig struct type ContainerRmConfig (line 24) | type ContainerRmConfig struct type ContainerCommitConfig (line 30) | type ContainerCommitConfig struct type ExecConfig (line 43) | type ExecConfig struct type PluginRmConfig (line 57) | type PluginRmConfig struct type PluginEnableConfig (line 62) | type PluginEnableConfig struct type PluginDisableConfig (line 67) | type PluginDisableConfig struct FILE: vendor/github.com/docker/docker/api/types/container/config.go type HealthConfig (line 11) | type HealthConfig struct type Config (line 37) | type Config struct FILE: vendor/github.com/docker/docker/api/types/container/container_changes.go type ContainerChangeResponseItem (line 12) | type ContainerChangeResponseItem struct FILE: vendor/github.com/docker/docker/api/types/container/container_create.go type ContainerCreateCreatedBody (line 12) | type ContainerCreateCreatedBody struct FILE: vendor/github.com/docker/docker/api/types/container/container_top.go type ContainerTopOKBody (line 12) | type ContainerTopOKBody struct FILE: vendor/github.com/docker/docker/api/types/container/container_update.go type ContainerUpdateOKBody (line 12) | type ContainerUpdateOKBody struct FILE: vendor/github.com/docker/docker/api/types/container/container_wait.go type ContainerWaitOKBody (line 12) | type ContainerWaitOKBody struct FILE: vendor/github.com/docker/docker/api/types/container/host_config.go type Isolation (line 15) | type Isolation method IsDefault (line 19) | func (i Isolation) IsDefault() bool { type IpcMode (line 24) | type IpcMode method IsPrivate (line 27) | func (n IpcMode) IsPrivate() bool { method IsHost (line 32) | func (n IpcMode) IsHost() bool { method IsContainer (line 37) | func (n IpcMode) IsContainer() bool { method Valid (line 43) | func (n IpcMode) Valid() bool { method Container (line 58) | func (n IpcMode) Container() string { type NetworkMode (line 67) | type NetworkMode method IsNone (line 70) | func (n NetworkMode) IsNone() bool { method IsDefault (line 75) | func (n NetworkMode) IsDefault() bool { method IsPrivate (line 80) | func (n NetworkMode) IsPrivate() bool { method IsContainer (line 85) | func (n NetworkMode) IsContainer() bool { method ConnectedContainer (line 91) | func (n NetworkMode) ConnectedContainer() string { method UserDefined (line 100) | func (n NetworkMode) UserDefined() string { type UsernsMode (line 108) | type UsernsMode method IsHost (line 111) | func (n UsernsMode) IsHost() bool { method IsPrivate (line 116) | func (n UsernsMode) IsPrivate() bool { method Valid (line 121) | func (n UsernsMode) Valid() bool { type CgroupSpec (line 132) | type CgroupSpec method IsContainer (line 135) | func (c CgroupSpec) IsContainer() bool { method Valid (line 141) | func (c CgroupSpec) Valid() bool { method Container (line 146) | func (c CgroupSpec) Container() string { type UTSMode (line 155) | type UTSMode method IsPrivate (line 158) | func (n UTSMode) IsPrivate() bool { method IsHost (line 163) | func (n UTSMode) IsHost() bool { method Valid (line 168) | func (n UTSMode) Valid() bool { type PidMode (line 179) | type PidMode method IsPrivate (line 182) | func (n PidMode) IsPrivate() bool { method IsHost (line 187) | func (n PidMode) IsHost() bool { method IsContainer (line 192) | func (n PidMode) IsContainer() bool { method Valid (line 198) | func (n PidMode) Valid() bool { method Container (line 213) | func (n PidMode) Container() string { type DeviceMapping (line 222) | type DeviceMapping struct type RestartPolicy (line 229) | type RestartPolicy struct method IsNone (line 236) | func (rp *RestartPolicy) IsNone() bool { method IsAlways (line 242) | func (rp *RestartPolicy) IsAlways() bool { method IsOnFailure (line 248) | func (rp *RestartPolicy) IsOnFailure() bool { method IsUnlessStopped (line 255) | func (rp *RestartPolicy) IsUnlessStopped() bool { method IsSame (line 260) | func (rp *RestartPolicy) IsSame(tp *RestartPolicy) bool { type LogMode (line 266) | type LogMode constant LogModeUnset (line 270) | LogModeUnset = "" constant LogModeBlocking (line 271) | LogModeBlocking LogMode = "blocking" constant LogModeNonBlock (line 272) | LogModeNonBlock LogMode = "non-blocking" type LogConfig (line 276) | type LogConfig struct type Resources (line 282) | type Resources struct type UpdateConfig (line 322) | type UpdateConfig struct type HostConfig (line 331) | type HostConfig struct FILE: vendor/github.com/docker/docker/api/types/container/hostconfig_unix.go method IsValid (line 6) | func (i Isolation) IsValid() bool { method NetworkName (line 11) | func (n NetworkMode) NetworkName() string { method IsBridge (line 29) | func (n NetworkMode) IsBridge() bool { method IsHost (line 34) | func (n NetworkMode) IsHost() bool { method IsUserDefined (line 39) | func (n NetworkMode) IsUserDefined() bool { FILE: vendor/github.com/docker/docker/api/types/container/hostconfig_windows.go method IsBridge (line 9) | func (n NetworkMode) IsBridge() bool { method IsHost (line 15) | func (n NetworkMode) IsHost() bool { method IsUserDefined (line 20) | func (n NetworkMode) IsUserDefined() bool { method IsHyperV (line 25) | func (i Isolation) IsHyperV() bool { method IsProcess (line 30) | func (i Isolation) IsProcess() bool { method IsValid (line 35) | func (i Isolation) IsValid() bool { method NetworkName (line 40) | func (n NetworkMode) NetworkName() string { FILE: vendor/github.com/docker/docker/api/types/error_response.go type ErrorResponse (line 8) | type ErrorResponse struct FILE: vendor/github.com/docker/docker/api/types/events/events.go constant ContainerEventType (line 5) | ContainerEventType = "container" constant DaemonEventType (line 7) | DaemonEventType = "daemon" constant ImageEventType (line 9) | ImageEventType = "image" constant NetworkEventType (line 11) | NetworkEventType = "network" constant PluginEventType (line 13) | PluginEventType = "plugin" constant VolumeEventType (line 15) | VolumeEventType = "volume" type Actor (line 23) | type Actor struct type Message (line 29) | type Message struct FILE: vendor/github.com/docker/docker/api/types/filters/parse.go type Args (line 21) | type Args struct method Get (line 122) | func (filters Args) Get(field string) []string { method Add (line 135) | func (filters Args) Add(name, value string) { method Del (line 144) | func (filters Args) Del(name, value string) { method Len (line 154) | func (filters Args) Len() int { method MatchKVList (line 163) | func (filters Args) MatchKVList(field string, sources map[string]strin... method Match (line 194) | func (filters Args) Match(field, source string) bool { method ExactMatch (line 213) | func (filters Args) ExactMatch(field, source string) bool { method UniqueExactMatch (line 225) | func (filters Args) UniqueExactMatch(field, source string) bool { method FuzzyMatch (line 241) | func (filters Args) FuzzyMatch(field, source string) bool { method Include (line 256) | func (filters Args) Include(field string) bool { method Validate (line 263) | func (filters Args) Validate(accepted map[string]bool) error { method WalkValues (line 274) | func (filters Args) WalkValues(field string, op func(value string) err... function NewArgs (line 26) | func NewArgs() Args { function ParseFlag (line 36) | func ParseFlag(arg string, prev Args) (Args, error) { function ToParam (line 60) | func ToParam(a Args) (string, error) { function ToParamWithVersion (line 75) | func ToParamWithVersion(version string, a Args) (string, error) { function FromParam (line 96) | func FromParam(p string) (Args, error) { function deprecatedArgs (line 286) | func deprecatedArgs(d map[string][]string) map[string]map[string]bool { function convertArgsToSlice (line 298) | func convertArgsToSlice(f map[string]map[string]bool) map[string][]string { FILE: vendor/github.com/docker/docker/api/types/graph_driver_data.go type GraphDriverData (line 8) | type GraphDriverData struct FILE: vendor/github.com/docker/docker/api/types/id_response.go type IDResponse (line 8) | type IDResponse struct FILE: vendor/github.com/docker/docker/api/types/image/image_history.go type HistoryResponseItem (line 12) | type HistoryResponseItem struct FILE: vendor/github.com/docker/docker/api/types/image_delete_response_item.go type ImageDeleteResponseItem (line 8) | type ImageDeleteResponseItem struct FILE: vendor/github.com/docker/docker/api/types/image_summary.go type ImageSummary (line 8) | type ImageSummary struct FILE: vendor/github.com/docker/docker/api/types/mount/mount.go type Type (line 8) | type Type constant TypeBind (line 13) | TypeBind Type = "bind" constant TypeVolume (line 15) | TypeVolume Type = "volume" constant TypeTmpfs (line 17) | TypeTmpfs Type = "tmpfs" type Mount (line 21) | type Mount struct type Propagation (line 37) | type Propagation constant PropagationRPrivate (line 41) | PropagationRPrivate Propagation = "rprivate" constant PropagationPrivate (line 43) | PropagationPrivate Propagation = "private" constant PropagationRShared (line 45) | PropagationRShared Propagation = "rshared" constant PropagationShared (line 47) | PropagationShared Propagation = "shared" constant PropagationRSlave (line 49) | PropagationRSlave Propagation = "rslave" constant PropagationSlave (line 51) | PropagationSlave Propagation = "slave" type Consistency (line 65) | type Consistency constant ConsistencyFull (line 69) | ConsistencyFull Consistency = "consistent" constant ConsistencyCached (line 71) | ConsistencyCached Consistency = "cached" constant ConsistencyDelegated (line 73) | ConsistencyDelegated Consistency = "delegated" constant ConsistencyDefault (line 75) | ConsistencyDefault Consistency = "default" type BindOptions (line 79) | type BindOptions struct type VolumeOptions (line 84) | type VolumeOptions struct type Driver (line 91) | type Driver struct type TmpfsOptions (line 97) | type TmpfsOptions struct FILE: vendor/github.com/docker/docker/api/types/network/network.go type Address (line 4) | type Address struct type IPAM (line 10) | type IPAM struct type IPAMConfig (line 17) | type IPAMConfig struct type EndpointIPAMConfig (line 25) | type EndpointIPAMConfig struct method Copy (line 32) | func (cfg *EndpointIPAMConfig) Copy() *EndpointIPAMConfig { type PeerInfo (line 40) | type PeerInfo struct type EndpointSettings (line 46) | type EndpointSettings struct method Copy (line 80) | func (es *EndpointSettings) Copy() *EndpointSettings { type Task (line 64) | type Task struct type ServiceInfo (line 72) | type ServiceInfo struct type NetworkingConfig (line 100) | type NetworkingConfig struct FILE: vendor/github.com/docker/docker/api/types/plugin.go type Plugin (line 8) | type Plugin struct type PluginConfig (line 35) | type PluginConfig struct type PluginConfigArgs (line 101) | type PluginConfigArgs struct type PluginConfigInterface (line 122) | type PluginConfigInterface struct type PluginConfigLinux (line 135) | type PluginConfigLinux struct type PluginConfigNetwork (line 152) | type PluginConfigNetwork struct type PluginConfigRootfs (line 161) | type PluginConfigRootfs struct type PluginConfigUser (line 172) | type PluginConfigUser struct type PluginSettings (line 183) | type PluginSettings struct FILE: vendor/github.com/docker/docker/api/types/plugin_device.go type PluginDevice (line 8) | type PluginDevice struct FILE: vendor/github.com/docker/docker/api/types/plugin_env.go type PluginEnv (line 8) | type PluginEnv struct FILE: vendor/github.com/docker/docker/api/types/plugin_interface_type.go type PluginInterfaceType (line 8) | type PluginInterfaceType struct FILE: vendor/github.com/docker/docker/api/types/plugin_mount.go type PluginMount (line 8) | type PluginMount struct FILE: vendor/github.com/docker/docker/api/types/plugin_responses.go type PluginsListResponse (line 10) | type PluginsListResponse constant authzDriver (line 13) | authzDriver = "AuthzDriver" constant graphDriver (line 14) | graphDriver = "GraphDriver" constant ipamDriver (line 15) | ipamDriver = "IpamDriver" constant networkDriver (line 16) | networkDriver = "NetworkDriver" constant volumeDriver (line 17) | volumeDriver = "VolumeDriver" method UnmarshalJSON (line 21) | func (t *PluginInterfaceType) UnmarshalJSON(p []byte) error { method MarshalJSON (line 47) | func (t *PluginInterfaceType) MarshalJSON() ([]byte, error) { method String (line 52) | func (t PluginInterfaceType) String() string { type PluginPrivilege (line 58) | type PluginPrivilege struct type PluginPrivileges (line 65) | type PluginPrivileges method Len (line 67) | func (s PluginPrivileges) Len() int { method Less (line 71) | func (s PluginPrivileges) Less(i, j int) bool { method Swap (line 75) | func (s PluginPrivileges) Swap(i, j int) { FILE: vendor/github.com/docker/docker/api/types/port.go type Port (line 8) | type Port struct FILE: vendor/github.com/docker/docker/api/types/registry/authenticate.go type AuthenticateOKBody (line 12) | type AuthenticateOKBody struct FILE: vendor/github.com/docker/docker/api/types/registry/registry.go type ServiceConfig (line 9) | type ServiceConfig struct type NetIPNet (line 17) | type NetIPNet method String (line 20) | func (ipnet *NetIPNet) String() string { method MarshalJSON (line 25) | func (ipnet *NetIPNet) MarshalJSON() ([]byte, error) { method UnmarshalJSON (line 30) | func (ipnet *NetIPNet) UnmarshalJSON(b []byte) (err error) { type IndexInfo (line 69) | type IndexInfo struct type SearchResult (line 83) | type SearchResult struct type SearchResults (line 97) | type SearchResults struct FILE: vendor/github.com/docker/docker/api/types/seccomp.go type Seccomp (line 4) | type Seccomp struct type Architecture (line 15) | type Architecture struct type Arch (line 21) | type Arch constant ArchX86 (line 26) | ArchX86 Arch = "SCMP_ARCH_X86" constant ArchX86_64 (line 27) | ArchX86_64 Arch = "SCMP_ARCH_X86_64" constant ArchX32 (line 28) | ArchX32 Arch = "SCMP_ARCH_X32" constant ArchARM (line 29) | ArchARM Arch = "SCMP_ARCH_ARM" constant ArchAARCH64 (line 30) | ArchAARCH64 Arch = "SCMP_ARCH_AARCH64" constant ArchMIPS (line 31) | ArchMIPS Arch = "SCMP_ARCH_MIPS" constant ArchMIPS64 (line 32) | ArchMIPS64 Arch = "SCMP_ARCH_MIPS64" constant ArchMIPS64N32 (line 33) | ArchMIPS64N32 Arch = "SCMP_ARCH_MIPS64N32" constant ArchMIPSEL (line 34) | ArchMIPSEL Arch = "SCMP_ARCH_MIPSEL" constant ArchMIPSEL64 (line 35) | ArchMIPSEL64 Arch = "SCMP_ARCH_MIPSEL64" constant ArchMIPSEL64N32 (line 36) | ArchMIPSEL64N32 Arch = "SCMP_ARCH_MIPSEL64N32" constant ArchPPC (line 37) | ArchPPC Arch = "SCMP_ARCH_PPC" constant ArchPPC64 (line 38) | ArchPPC64 Arch = "SCMP_ARCH_PPC64" constant ArchPPC64LE (line 39) | ArchPPC64LE Arch = "SCMP_ARCH_PPC64LE" constant ArchS390 (line 40) | ArchS390 Arch = "SCMP_ARCH_S390" constant ArchS390X (line 41) | ArchS390X Arch = "SCMP_ARCH_S390X" type Action (line 45) | type Action constant ActKill (line 49) | ActKill Action = "SCMP_ACT_KILL" constant ActTrap (line 50) | ActTrap Action = "SCMP_ACT_TRAP" constant ActErrno (line 51) | ActErrno Action = "SCMP_ACT_ERRNO" constant ActTrace (line 52) | ActTrace Action = "SCMP_ACT_TRACE" constant ActAllow (line 53) | ActAllow Action = "SCMP_ACT_ALLOW" type Operator (line 57) | type Operator constant OpNotEqual (line 61) | OpNotEqual Operator = "SCMP_CMP_NE" constant OpLessThan (line 62) | OpLessThan Operator = "SCMP_CMP_LT" constant OpLessEqual (line 63) | OpLessEqual Operator = "SCMP_CMP_LE" constant OpEqualTo (line 64) | OpEqualTo Operator = "SCMP_CMP_EQ" constant OpGreaterEqual (line 65) | OpGreaterEqual Operator = "SCMP_CMP_GE" constant OpGreaterThan (line 66) | OpGreaterThan Operator = "SCMP_CMP_GT" constant OpMaskedEqual (line 67) | OpMaskedEqual Operator = "SCMP_CMP_MASKED_EQ" type Arg (line 71) | type Arg struct type Filter (line 79) | type Filter struct type Syscall (line 85) | type Syscall struct FILE: vendor/github.com/docker/docker/api/types/service_update_response.go type ServiceUpdateResponse (line 8) | type ServiceUpdateResponse struct FILE: vendor/github.com/docker/docker/api/types/stats.go type ThrottlingData (line 9) | type ThrottlingData struct type CPUUsage (line 19) | type CPUUsage struct type CPUStats (line 43) | type CPUStats struct type MemoryStats (line 59) | type MemoryStats struct type BlkioStatEntry (line 86) | type BlkioStatEntry struct type BlkioStats (line 97) | type BlkioStats struct type StorageStats (line 110) | type StorageStats struct type NetworkStats (line 118) | type NetworkStats struct type PidsStats (line 144) | type PidsStats struct type Stats (line 153) | type Stats struct type StatsJSON (line 173) | type StatsJSON struct FILE: vendor/github.com/docker/docker/api/types/strslice/strslice.go type StrSlice (line 7) | type StrSlice method UnmarshalJSON (line 11) | func (e *StrSlice) UnmarshalJSON(b []byte) error { FILE: vendor/github.com/docker/docker/api/types/swarm/common.go type Version (line 6) | type Version struct type Meta (line 11) | type Meta struct type Annotations (line 18) | type Annotations struct type Driver (line 24) | type Driver struct FILE: vendor/github.com/docker/docker/api/types/swarm/container.go type DNSConfig (line 15) | type DNSConfig struct type SELinuxContext (line 25) | type SELinuxContext struct type CredentialSpec (line 35) | type CredentialSpec struct type Privileges (line 41) | type Privileges struct type ContainerSpec (line 47) | type ContainerSpec struct FILE: vendor/github.com/docker/docker/api/types/swarm/network.go type Endpoint (line 4) | type Endpoint struct type EndpointSpec (line 11) | type EndpointSpec struct type ResolutionMode (line 17) | type ResolutionMode constant ResolutionModeVIP (line 21) | ResolutionModeVIP ResolutionMode = "vip" constant ResolutionModeDNSRR (line 23) | ResolutionModeDNSRR ResolutionMode = "dnsrr" type PortConfig (line 27) | type PortConfig struct type PortConfigPublishMode (line 40) | type PortConfigPublishMode constant PortConfigPublishModeIngress (line 45) | PortConfigPublishModeIngress PortConfigPublishMode = "ingress" constant PortConfigPublishModeHost (line 48) | PortConfigPublishModeHost PortConfigPublishMode = "host" type PortConfigProtocol (line 52) | type PortConfigProtocol constant PortConfigProtocolTCP (line 58) | PortConfigProtocolTCP PortConfigProtocol = "tcp" constant PortConfigProtocolUDP (line 60) | PortConfigProtocolUDP PortConfigProtocol = "udp" type EndpointVirtualIP (line 64) | type EndpointVirtualIP struct type Network (line 70) | type Network struct type NetworkSpec (line 79) | type NetworkSpec struct type NetworkAttachmentConfig (line 90) | type NetworkAttachmentConfig struct type NetworkAttachment (line 96) | type NetworkAttachment struct type IPAMOptions (line 102) | type IPAMOptions struct type IPAMConfig (line 108) | type IPAMConfig struct FILE: vendor/github.com/docker/docker/api/types/swarm/node.go type Node (line 4) | type Node struct type NodeSpec (line 21) | type NodeSpec struct type NodeRole (line 28) | type NodeRole constant NodeRoleWorker (line 32) | NodeRoleWorker NodeRole = "worker" constant NodeRoleManager (line 34) | NodeRoleManager NodeRole = "manager" type NodeAvailability (line 38) | type NodeAvailability constant NodeAvailabilityActive (line 42) | NodeAvailabilityActive NodeAvailability = "active" constant NodeAvailabilityPause (line 44) | NodeAvailabilityPause NodeAvailability = "pause" constant NodeAvailabilityDrain (line 46) | NodeAvailabilityDrain NodeAvailability = "drain" type NodeDescription (line 50) | type NodeDescription struct type Platform (line 58) | type Platform struct type EngineDescription (line 64) | type EngineDescription struct type PluginDescription (line 71) | type PluginDescription struct type NodeStatus (line 77) | type NodeStatus struct type Reachability (line 84) | type Reachability constant ReachabilityUnknown (line 88) | ReachabilityUnknown Reachability = "unknown" constant ReachabilityUnreachable (line 90) | ReachabilityUnreachable Reachability = "unreachable" constant ReachabilityReachable (line 92) | ReachabilityReachable Reachability = "reachable" type ManagerStatus (line 96) | type ManagerStatus struct type NodeState (line 103) | type NodeState constant NodeStateUnknown (line 107) | NodeStateUnknown NodeState = "unknown" constant NodeStateDown (line 109) | NodeStateDown NodeState = "down" constant NodeStateReady (line 111) | NodeStateReady NodeState = "ready" constant NodeStateDisconnected (line 113) | NodeStateDisconnected NodeState = "disconnected" FILE: vendor/github.com/docker/docker/api/types/swarm/runtime.go type RuntimeType (line 4) | type RuntimeType type RuntimeURL (line 7) | type RuntimeURL constant RuntimeContainer (line 11) | RuntimeContainer RuntimeType = "container" constant RuntimePlugin (line 13) | RuntimePlugin RuntimeType = "plugin" constant RuntimeURLContainer (line 16) | RuntimeURLContainer RuntimeURL = "types.docker.com/RuntimeContainer" constant RuntimeURLPlugin (line 18) | RuntimeURLPlugin RuntimeURL = "types.docker.com/RuntimePlugin" FILE: vendor/github.com/docker/docker/api/types/swarm/secret.go type Secret (line 6) | type Secret struct type SecretSpec (line 13) | type SecretSpec struct type SecretReferenceFileTarget (line 19) | type SecretReferenceFileTarget struct type SecretReference (line 27) | type SecretReference struct FILE: vendor/github.com/docker/docker/api/types/swarm/service.go type Service (line 6) | type Service struct type ServiceSpec (line 16) | type ServiceSpec struct type ServiceMode (line 34) | type ServiceMode struct type UpdateState (line 40) | type UpdateState constant UpdateStateUpdating (line 44) | UpdateStateUpdating UpdateState = "updating" constant UpdateStatePaused (line 46) | UpdateStatePaused UpdateState = "paused" constant UpdateStateCompleted (line 48) | UpdateStateCompleted UpdateState = "completed" constant UpdateStateRollbackStarted (line 50) | UpdateStateRollbackStarted UpdateState = "rollback_started" constant UpdateStateRollbackPaused (line 52) | UpdateStateRollbackPaused UpdateState = "rollback_paused" constant UpdateStateRollbackCompleted (line 54) | UpdateStateRollbackCompleted UpdateState = "rollback_completed" type UpdateStatus (line 58) | type UpdateStatus struct type ReplicatedService (line 66) | type ReplicatedService struct type GlobalService (line 71) | type GlobalService struct constant UpdateFailureActionPause (line 75) | UpdateFailureActionPause = "pause" constant UpdateFailureActionContinue (line 77) | UpdateFailureActionContinue = "continue" constant UpdateFailureActionRollback (line 79) | UpdateFailureActionRollback = "rollback" constant UpdateOrderStopFirst (line 82) | UpdateOrderStopFirst = "stop-first" constant UpdateOrderStartFirst (line 84) | UpdateOrderStartFirst = "start-first" type UpdateConfig (line 88) | type UpdateConfig struct FILE: vendor/github.com/docker/docker/api/types/swarm/swarm.go type ClusterInfo (line 7) | type ClusterInfo struct type Swarm (line 14) | type Swarm struct type JoinTokens (line 20) | type JoinTokens struct type Spec (line 28) | type Spec struct type OrchestrationConfig (line 40) | type OrchestrationConfig struct type TaskDefaults (line 47) | type TaskDefaults struct type EncryptionConfig (line 58) | type EncryptionConfig struct type RaftConfig (line 66) | type RaftConfig struct type DispatcherConfig (line 96) | type DispatcherConfig struct type CAConfig (line 103) | type CAConfig struct type ExternalCAProtocol (line 113) | type ExternalCAProtocol constant ExternalCAProtocolCFSSL (line 116) | ExternalCAProtocolCFSSL ExternalCAProtocol = "cfssl" type ExternalCA (line 119) | type ExternalCA struct type InitRequest (line 132) | type InitRequest struct type JoinRequest (line 142) | type JoinRequest struct type UnlockRequest (line 151) | type UnlockRequest struct type LocalNodeState (line 157) | type LocalNodeState constant LocalNodeStateInactive (line 161) | LocalNodeStateInactive LocalNodeState = "inactive" constant LocalNodeStatePending (line 163) | LocalNodeStatePending LocalNodeState = "pending" constant LocalNodeStateActive (line 165) | LocalNodeStateActive LocalNodeState = "active" constant LocalNodeStateError (line 167) | LocalNodeStateError LocalNodeState = "error" constant LocalNodeStateLocked (line 169) | LocalNodeStateLocked LocalNodeState = "locked" type Info (line 173) | type Info struct type Peer (line 189) | type Peer struct type UpdateFlags (line 195) | type UpdateFlags struct FILE: vendor/github.com/docker/docker/api/types/swarm/task.go type TaskState (line 6) | type TaskState constant TaskStateNew (line 10) | TaskStateNew TaskState = "new" constant TaskStateAllocated (line 12) | TaskStateAllocated TaskState = "allocated" constant TaskStatePending (line 14) | TaskStatePending TaskState = "pending" constant TaskStateAssigned (line 16) | TaskStateAssigned TaskState = "assigned" constant TaskStateAccepted (line 18) | TaskStateAccepted TaskState = "accepted" constant TaskStatePreparing (line 20) | TaskStatePreparing TaskState = "preparing" constant TaskStateReady (line 22) | TaskStateReady TaskState = "ready" constant TaskStateStarting (line 24) | TaskStateStarting TaskState = "starting" constant TaskStateRunning (line 26) | TaskStateRunning TaskState = "running" constant TaskStateComplete (line 28) | TaskStateComplete TaskState = "complete" constant TaskStateShutdown (line 30) | TaskStateShutdown TaskState = "shutdown" constant TaskStateFailed (line 32) | TaskStateFailed TaskState = "failed" constant TaskStateRejected (line 34) | TaskStateRejected TaskState = "rejected" type Task (line 38) | type Task struct type TaskSpec (line 53) | type TaskSpec struct type Resources (line 76) | type Resources struct type ResourceRequirements (line 82) | type ResourceRequirements struct type Placement (line 88) | type Placement struct type PlacementPreference (line 95) | type PlacementPreference struct type SpreadOver (line 101) | type SpreadOver struct type RestartPolicy (line 107) | type RestartPolicy struct type RestartPolicyCondition (line 115) | type RestartPolicyCondition constant RestartPolicyConditionNone (line 119) | RestartPolicyConditionNone RestartPolicyCondition = "none" constant RestartPolicyConditionOnFailure (line 121) | RestartPolicyConditionOnFailure RestartPolicyCondition = "on-failure" constant RestartPolicyConditionAny (line 123) | RestartPolicyConditionAny RestartPolicyCondition = "any" type TaskStatus (line 127) | type TaskStatus struct type ContainerStatus (line 137) | type ContainerStatus struct type PortStatus (line 145) | type PortStatus struct FILE: vendor/github.com/docker/docker/api/types/time/duration_convert.go function DurationToSecondsString (line 10) | func DurationToSecondsString(duration time.Duration) string { FILE: vendor/github.com/docker/docker/api/types/time/timestamp.go constant rFC3339Local (line 14) | rFC3339Local = "2006-01-02T15:04:05" constant rFC3339NanoLocal (line 15) | rFC3339NanoLocal = "2006-01-02T15:04:05.999999999" constant dateWithZone (line 16) | dateWithZone = "2006-01-02Z07:00" constant dateLocal (line 17) | dateLocal = "2006-01-02" function GetTimestamp (line 26) | func GetTimestamp(value string, reference time.Time) (string, error) { function ParseTimestamps (line 105) | func ParseTimestamps(value string, def int64) (int64, int64, error) { FILE: vendor/github.com/docker/docker/api/types/types.go type RootFS (line 21) | type RootFS struct type ImageInspect (line 29) | type ImageInspect struct type Container (line 52) | type Container struct type CopyConfig (line 74) | type CopyConfig struct type ContainerPathStat (line 81) | type ContainerPathStat struct type ContainerStats (line 91) | type ContainerStats struct type Ping (line 98) | type Ping struct type Version (line 106) | type Version struct type Commit (line 121) | type Commit struct type Info (line 128) | type Info struct type KeyValue (line 191) | type KeyValue struct type SecurityOpt (line 196) | type SecurityOpt struct function DecodeSecurityOptions (line 203) | func DecodeSecurityOptions(opts []string) ([]SecurityOpt, error) { type PluginsInfo (line 234) | type PluginsInfo struct type ExecStartCheck (line 245) | type ExecStartCheck struct type HealthcheckResult (line 253) | type HealthcheckResult struct constant NoHealthcheck (line 262) | NoHealthcheck = "none" constant Starting (line 263) | Starting = "starting" constant Healthy (line 264) | Healthy = "healthy" constant Unhealthy (line 265) | Unhealthy = "unhealthy" type Health (line 269) | type Health struct type ContainerState (line 277) | type ContainerState struct type ContainerNode (line 294) | type ContainerNode struct type ContainerJSONBase (line 306) | type ContainerJSONBase struct type ContainerJSON (line 332) | type ContainerJSON struct type NetworkSettings (line 340) | type NetworkSettings struct type SummaryNetworkSettings (line 348) | type SummaryNetworkSettings struct type NetworkSettingsBase (line 353) | type NetworkSettingsBase struct type DefaultNetworkSettings (line 368) | type DefaultNetworkSettings struct type MountPoint (line 381) | type MountPoint struct type NetworkResource (line 393) | type NetworkResource struct type EndpointResource (line 412) | type EndpointResource struct type NetworkCreate (line 421) | type NetworkCreate struct type NetworkCreateRequest (line 441) | type NetworkCreateRequest struct type NetworkCreateResponse (line 447) | type NetworkCreateResponse struct type NetworkConnect (line 453) | type NetworkConnect struct type NetworkDisconnect (line 459) | type NetworkDisconnect struct type Checkpoint (line 465) | type Checkpoint struct type Runtime (line 470) | type Runtime struct type DiskUsage (line 477) | type DiskUsage struct type ContainersPruneReport (line 486) | type ContainersPruneReport struct type VolumesPruneReport (line 493) | type VolumesPruneReport struct type ImagesPruneReport (line 500) | type ImagesPruneReport struct type NetworksPruneReport (line 507) | type NetworksPruneReport struct type SecretCreateResponse (line 513) | type SecretCreateResponse struct type SecretListOptions (line 519) | type SecretListOptions struct type PushResult (line 526) | type PushResult struct FILE: vendor/github.com/docker/docker/api/types/versions/compare.go function compare (line 10) | func compare(v1, v2 string) int { function LessThan (line 40) | func LessThan(v, other string) bool { function LessThanOrEqualTo (line 45) | func LessThanOrEqualTo(v, other string) bool { function GreaterThan (line 50) | func GreaterThan(v, other string) bool { function GreaterThanOrEqualTo (line 55) | func GreaterThanOrEqualTo(v, other string) bool { function Equal (line 60) | func Equal(v, other string) bool { FILE: vendor/github.com/docker/docker/api/types/volume.go type Volume (line 8) | type Volume struct type VolumeUsageData (line 49) | type VolumeUsageData struct FILE: vendor/github.com/docker/docker/api/types/volume/volumes_create.go type VolumesCreateBody (line 12) | type VolumesCreateBody struct FILE: vendor/github.com/docker/docker/api/types/volume/volumes_list.go type VolumesListOKBody (line 14) | type VolumesListOKBody struct FILE: vendor/github.com/docker/docker/client/checkpoint_create.go method CheckpointCreate (line 9) | func (cli *Client) CheckpointCreate(ctx context.Context, container strin... FILE: vendor/github.com/docker/docker/client/checkpoint_delete.go method CheckpointDelete (line 11) | func (cli *Client) CheckpointDelete(ctx context.Context, containerID str... FILE: vendor/github.com/docker/docker/client/checkpoint_list.go method CheckpointList (line 13) | func (cli *Client) CheckpointList(ctx context.Context, container string,... FILE: vendor/github.com/docker/docker/client/client.go type Client (line 63) | type Client struct method Close (line 181) | func (cli *Client) Close() error { method getAPIPath (line 192) | func (cli *Client) getAPIPath(p string, query url.Values) string { method ClientVersion (line 214) | func (cli *Client) ClientVersion() string { method UpdateClientVersion (line 220) | func (cli *Client) UpdateClientVersion(v string) { method CustomHTTPHeaders (line 249) | func (cli *Client) CustomHTTPHeaders() map[string]string { method SetCustomHTTPHeaders (line 259) | func (cli *Client) SetCustomHTTPHeaders(headers map[string]string) { function NewEnvClient (line 89) | func NewEnvClient() (*Client, error) { function NewClient (line 136) | func NewClient(host string, version string, client *http.Client, httpHea... function ParseHost (line 228) | func ParseHost(host string) (string, string, string, error) { FILE: vendor/github.com/docker/docker/client/client_unix.go constant DefaultDockerHost (line 6) | DefaultDockerHost = "unix:///var/run/docker.sock" FILE: vendor/github.com/docker/docker/client/client_windows.go constant DefaultDockerHost (line 4) | DefaultDockerHost = "npipe:////./pipe/docker_engine" FILE: vendor/github.com/docker/docker/client/container_attach.go method ContainerAttach (line 14) | func (cli *Client) ContainerAttach(ctx context.Context, container string... FILE: vendor/github.com/docker/docker/client/container_commit.go method ContainerCommit (line 14) | func (cli *Client) ContainerCommit(ctx context.Context, container string... FILE: vendor/github.com/docker/docker/client/container_copy.go method ContainerStatPath (line 19) | func (cli *Client) ContainerStatPath(ctx context.Context, containerID, p... method CopyToContainer (line 33) | func (cli *Client) CopyToContainer(ctx context.Context, container, path ... method CopyFromContainer (line 62) | func (cli *Client) CopyFromContainer(ctx context.Context, container, src... function getContainerPathStatFromHeader (line 89) | func getContainerPathStatFromHeader(header http.Header) (types.Container... FILE: vendor/github.com/docker/docker/client/container_create.go type configWrapper (line 14) | type configWrapper struct method ContainerCreate (line 22) | func (cli *Client) ContainerCreate(ctx context.Context, config *containe... FILE: vendor/github.com/docker/docker/client/container_diff.go method ContainerDiff (line 12) | func (cli *Client) ContainerDiff(ctx context.Context, containerID string... FILE: vendor/github.com/docker/docker/client/container_exec.go method ContainerExecCreate (line 11) | func (cli *Client) ContainerExecCreate(ctx context.Context, container st... method ContainerExecStart (line 28) | func (cli *Client) ContainerExecStart(ctx context.Context, execID string... method ContainerExecAttach (line 38) | func (cli *Client) ContainerExecAttach(ctx context.Context, execID strin... method ContainerExecInspect (line 44) | func (cli *Client) ContainerExecInspect(ctx context.Context, execID stri... FILE: vendor/github.com/docker/docker/client/container_export.go method ContainerExport (line 13) | func (cli *Client) ContainerExport(ctx context.Context, containerID stri... FILE: vendor/github.com/docker/docker/client/container_inspect.go method ContainerInspect (line 15) | func (cli *Client) ContainerInspect(ctx context.Context, containerID str... method ContainerInspectWithRaw (line 31) | func (cli *Client) ContainerInspectWithRaw(ctx context.Context, containe... FILE: vendor/github.com/docker/docker/client/container_kill.go method ContainerKill (line 10) | func (cli *Client) ContainerKill(ctx context.Context, containerID, signa... FILE: vendor/github.com/docker/docker/client/container_list.go method ContainerList (line 14) | func (cli *Client) ContainerList(ctx context.Context, options types.Cont... FILE: vendor/github.com/docker/docker/client/container_logs.go method ContainerLogs (line 16) | func (cli *Client) ContainerLogs(ctx context.Context, container string, ... FILE: vendor/github.com/docker/docker/client/container_pause.go method ContainerPause (line 6) | func (cli *Client) ContainerPause(ctx context.Context, containerID strin... FILE: vendor/github.com/docker/docker/client/container_prune.go method ContainersPrune (line 13) | func (cli *Client) ContainersPrune(ctx context.Context, pruneFilters fil... FILE: vendor/github.com/docker/docker/client/container_remove.go method ContainerRemove (line 11) | func (cli *Client) ContainerRemove(ctx context.Context, containerID stri... FILE: vendor/github.com/docker/docker/client/container_rename.go method ContainerRename (line 10) | func (cli *Client) ContainerRename(ctx context.Context, containerID, new... FILE: vendor/github.com/docker/docker/client/container_resize.go method ContainerResize (line 12) | func (cli *Client) ContainerResize(ctx context.Context, containerID stri... method ContainerExecResize (line 17) | func (cli *Client) ContainerExecResize(ctx context.Context, execID strin... method resize (line 21) | func (cli *Client) resize(ctx context.Context, basePath string, height, ... FILE: vendor/github.com/docker/docker/client/container_restart.go method ContainerRestart (line 14) | func (cli *Client) ContainerRestart(ctx context.Context, containerID str... FILE: vendor/github.com/docker/docker/client/container_start.go method ContainerStart (line 12) | func (cli *Client) ContainerStart(ctx context.Context, containerID strin... FILE: vendor/github.com/docker/docker/client/container_stats.go method ContainerStats (line 12) | func (cli *Client) ContainerStats(ctx context.Context, containerID strin... FILE: vendor/github.com/docker/docker/client/container_stop.go method ContainerStop (line 13) | func (cli *Client) ContainerStop(ctx context.Context, containerID string... FILE: vendor/github.com/docker/docker/client/container_top.go method ContainerTop (line 13) | func (cli *Client) ContainerTop(ctx context.Context, containerID string,... FILE: vendor/github.com/docker/docker/client/container_unpause.go method ContainerUnpause (line 6) | func (cli *Client) ContainerUnpause(ctx context.Context, containerID str... FILE: vendor/github.com/docker/docker/client/container_update.go method ContainerUpdate (line 11) | func (cli *Client) ContainerUpdate(ctx context.Context, containerID stri... FILE: vendor/github.com/docker/docker/client/container_wait.go method ContainerWait (line 13) | func (cli *Client) ContainerWait(ctx context.Context, containerID string... FILE: vendor/github.com/docker/docker/client/disk_usage.go method DiskUsage (line 12) | func (cli *Client) DiskUsage(ctx context.Context) (types.DiskUsage, erro... FILE: vendor/github.com/docker/docker/client/errors.go type errConnectionFailed (line 11) | type errConnectionFailed struct method Error (line 16) | func (err errConnectionFailed) Error() string { function IsErrConnectionFailed (line 24) | func IsErrConnectionFailed(err error) bool { function ErrorConnectionFailed (line 30) | func ErrorConnectionFailed(host string) error { type notFound (line 34) | type notFound interface function IsErrNotFound (line 41) | func IsErrNotFound(err error) bool { type imageNotFoundError (line 47) | type imageNotFoundError struct method NotFound (line 52) | func (e imageNotFoundError) NotFound() bool { method Error (line 57) | func (e imageNotFoundError) Error() string { function IsErrImageNotFound (line 63) | func IsErrImageNotFound(err error) bool { type containerNotFoundError (line 68) | type containerNotFoundError struct method NotFound (line 73) | func (e containerNotFoundError) NotFound() bool { method Error (line 78) | func (e containerNotFoundError) Error() string { function IsErrContainerNotFound (line 84) | func IsErrContainerNotFound(err error) bool { type networkNotFoundError (line 89) | type networkNotFoundError struct method NotFound (line 94) | func (e networkNotFoundError) NotFound() bool { method Error (line 99) | func (e networkNotFoundError) Error() string { function IsErrNetworkNotFound (line 105) | func IsErrNetworkNotFound(err error) bool { type volumeNotFoundError (line 110) | type volumeNotFoundError struct method NotFound (line 115) | func (e volumeNotFoundError) NotFound() bool { method Error (line 120) | func (e volumeNotFoundError) Error() string { function IsErrVolumeNotFound (line 126) | func IsErrVolumeNotFound(err error) bool { type unauthorizedError (line 131) | type unauthorizedError struct method Error (line 136) | func (u unauthorizedError) Error() string { function IsErrUnauthorized (line 142) | func IsErrUnauthorized(err error) bool { type nodeNotFoundError (line 148) | type nodeNotFoundError struct method Error (line 153) | func (e nodeNotFoundError) Error() string { method NotFound (line 158) | func (e nodeNotFoundError) NotFound() bool { function IsErrNodeNotFound (line 164) | func IsErrNodeNotFound(err error) bool { type serviceNotFoundError (line 170) | type serviceNotFoundError struct method Error (line 175) | func (e serviceNotFoundError) Error() string { method NotFound (line 180) | func (e serviceNotFoundError) NotFound() bool { function IsErrServiceNotFound (line 186) | func IsErrServiceNotFound(err error) bool { type taskNotFoundError (line 192) | type taskNotFoundError struct method Error (line 197) | func (e taskNotFoundError) Error() string { method NotFound (line 202) | func (e taskNotFoundError) NotFound() bool { function IsErrTaskNotFound (line 208) | func IsErrTaskNotFound(err error) bool { type pluginPermissionDenied (line 213) | type pluginPermissionDenied struct method Error (line 217) | func (e pluginPermissionDenied) Error() string { function IsErrPluginPermissionDenied (line 223) | func IsErrPluginPermissionDenied(err error) bool { method NewVersionError (line 230) | func (cli *Client) NewVersionError(APIrequired, feature string) error { type secretNotFoundError (line 238) | type secretNotFoundError struct method Error (line 243) | func (e secretNotFoundError) Error() string { method NotFound (line 248) | func (e secretNotFoundError) NotFound() bool { function IsErrSecretNotFound (line 254) | func IsErrSecretNotFound(err error) bool { type pluginNotFoundError (line 260) | type pluginNotFoundError struct method NotFound (line 265) | func (e pluginNotFoundError) NotFound() bool { method Error (line 270) | func (e pluginNotFoundError) Error() string { function IsErrPluginNotFound (line 276) | func IsErrPluginNotFound(err error) bool { FILE: vendor/github.com/docker/docker/client/events.go method Events (line 20) | func (cli *Client) Events(ctx context.Context, options types.EventsOptio... function buildEventsQueryParams (line 73) | func buildEventsQueryParams(cliVersion string, options types.EventsOptio... FILE: vendor/github.com/docker/docker/client/hijack.go type tlsClientCon (line 21) | type tlsClientCon struct method CloseWrite (line 26) | func (c *tlsClientCon) CloseWrite() error { method postHijacked (line 36) | func (cli *Client) postHijacked(ctx context.Context, path string, query ... function tlsDial (line 82) | func tlsDial(network, addr string, config *tls.Config) (net.Conn, error) { function tlsDialWithDialer (line 91) | func tlsDialWithDialer(dialer *net.Dialer, network, addr string, config ... function dial (line 168) | func dial(proto, addr string, tlsConfig *tls.Config) (net.Conn, error) { FILE: vendor/github.com/docker/docker/client/image_build.go method ImageBuild (line 20) | func (cli *Client) ImageBuild(ctx context.Context, buildContext io.Reade... method imageBuildOptionsToQuery (line 47) | func (cli *Client) imageBuildOptionsToQuery(options types.ImageBuildOpti... FILE: vendor/github.com/docker/docker/client/image_create.go method ImageCreate (line 15) | func (cli *Client) ImageCreate(ctx context.Context, parentReference stri... method tryImageCreate (line 31) | func (cli *Client) tryImageCreate(ctx context.Context, query url.Values,... FILE: vendor/github.com/docker/docker/client/image_history.go method ImageHistory (line 12) | func (cli *Client) ImageHistory(ctx context.Context, imageID string) ([]... FILE: vendor/github.com/docker/docker/client/image_import.go method ImageImport (line 15) | func (cli *Client) ImageImport(ctx context.Context, source types.ImageIm... FILE: vendor/github.com/docker/docker/client/image_inspect.go method ImageInspectWithRaw (line 14) | func (cli *Client) ImageInspectWithRaw(ctx context.Context, imageID stri... FILE: vendor/github.com/docker/docker/client/image_list.go method ImageList (line 14) | func (cli *Client) ImageList(ctx context.Context, options types.ImageLis... FILE: vendor/github.com/docker/docker/client/image_load.go method ImageLoad (line 15) | func (cli *Client) ImageLoad(ctx context.Context, input io.Reader, quiet... FILE: vendor/github.com/docker/docker/client/image_prune.go method ImagesPrune (line 13) | func (cli *Client) ImagesPrune(ctx context.Context, pruneFilters filters... FILE: vendor/github.com/docker/docker/client/image_pull.go method ImagePull (line 22) | func (cli *Client) ImagePull(ctx context.Context, refStr string, options... function getAPITagFromNamedRef (line 52) | func getAPITagFromNamedRef(ref reference.Named) string { FILE: vendor/github.com/docker/docker/client/image_push.go method ImagePush (line 19) | func (cli *Client) ImagePush(ctx context.Context, image string, options ... method tryImagePush (line 53) | func (cli *Client) tryImagePush(ctx context.Context, imageID string, que... FILE: vendor/github.com/docker/docker/client/image_remove.go method ImageRemove (line 12) | func (cli *Client) ImageRemove(ctx context.Context, imageID string, opti... FILE: vendor/github.com/docker/docker/client/image_save.go method ImageSave (line 12) | func (cli *Client) ImageSave(ctx context.Context, imageIDs []string) (io... FILE: vendor/github.com/docker/docker/client/image_search.go method ImageSearch (line 17) | func (cli *Client) ImageSearch(ctx context.Context, term string, options... method tryImageSearch (line 48) | func (cli *Client) tryImageSearch(ctx context.Context, query url.Values,... FILE: vendor/github.com/docker/docker/client/image_tag.go method ImageTag (line 12) | func (cli *Client) ImageTag(ctx context.Context, source, target string) ... FILE: vendor/github.com/docker/docker/client/info.go method Info (line 13) | func (cli *Client) Info(ctx context.Context) (types.Info, error) { FILE: vendor/github.com/docker/docker/client/interface.go type CommonAPIClient (line 20) | type CommonAPIClient interface type ContainerAPIClient (line 37) | type ContainerAPIClient interface type ImageAPIClient (line 72) | type ImageAPIClient interface type NetworkAPIClient (line 90) | type NetworkAPIClient interface type NodeAPIClient (line 102) | type NodeAPIClient interface type PluginAPIClient (line 110) | type PluginAPIClient interface type ServiceAPIClient (line 124) | type ServiceAPIClient interface type SwarmAPIClient (line 137) | type SwarmAPIClient interface type SystemAPIClient (line 148) | type SystemAPIClient interface type VolumeAPIClient (line 157) | type VolumeAPIClient interface type SecretAPIClient (line 167) | type SecretAPIClient interface FILE: vendor/github.com/docker/docker/client/interface_experimental.go type apiClientExperimental (line 8) | type apiClientExperimental interface type CheckpointAPIClient (line 13) | type CheckpointAPIClient interface FILE: vendor/github.com/docker/docker/client/interface_stable.go type APIClient (line 4) | type APIClient interface FILE: vendor/github.com/docker/docker/client/login.go method RegistryLogin (line 15) | func (cli *Client) RegistryLogin(ctx context.Context, auth types.AuthCon... FILE: vendor/github.com/docker/docker/client/network_connect.go method NetworkConnect (line 10) | func (cli *Client) NetworkConnect(ctx context.Context, networkID, contai... FILE: vendor/github.com/docker/docker/client/network_create.go method NetworkCreate (line 11) | func (cli *Client) NetworkCreate(ctx context.Context, name string, optio... FILE: vendor/github.com/docker/docker/client/network_disconnect.go method NetworkDisconnect (line 9) | func (cli *Client) NetworkDisconnect(ctx context.Context, networkID, con... FILE: vendor/github.com/docker/docker/client/network_inspect.go method NetworkInspect (line 15) | func (cli *Client) NetworkInspect(ctx context.Context, networkID string,... method NetworkInspectWithRaw (line 21) | func (cli *Client) NetworkInspectWithRaw(ctx context.Context, networkID ... FILE: vendor/github.com/docker/docker/client/network_list.go method NetworkList (line 13) | func (cli *Client) NetworkList(ctx context.Context, options types.Networ... FILE: vendor/github.com/docker/docker/client/network_prune.go method NetworksPrune (line 13) | func (cli *Client) NetworksPrune(ctx context.Context, pruneFilters filte... FILE: vendor/github.com/docker/docker/client/network_remove.go method NetworkRemove (line 6) | func (cli *Client) NetworkRemove(ctx context.Context, networkID string) ... FILE: vendor/github.com/docker/docker/client/node_inspect.go method NodeInspectWithRaw (line 14) | func (cli *Client) NodeInspectWithRaw(ctx context.Context, nodeID string... FILE: vendor/github.com/docker/docker/client/node_list.go method NodeList (line 14) | func (cli *Client) NodeList(ctx context.Context, options types.NodeListO... FILE: vendor/github.com/docker/docker/client/node_remove.go method NodeRemove (line 12) | func (cli *Client) NodeRemove(ctx context.Context, nodeID string, option... FILE: vendor/github.com/docker/docker/client/node_update.go method NodeUpdate (line 12) | func (cli *Client) NodeUpdate(ctx context.Context, nodeID string, versio... FILE: vendor/github.com/docker/docker/client/ping.go method Ping (line 11) | func (cli *Client) Ping(ctx context.Context) (types.Ping, error) { FILE: vendor/github.com/docker/docker/client/plugin_create.go method PluginCreate (line 13) | func (cli *Client) PluginCreate(ctx context.Context, createContext io.Re... FILE: vendor/github.com/docker/docker/client/plugin_disable.go method PluginDisable (line 11) | func (cli *Client) PluginDisable(ctx context.Context, name string, optio... FILE: vendor/github.com/docker/docker/client/plugin_enable.go method PluginEnable (line 12) | func (cli *Client) PluginEnable(ctx context.Context, name string, option... FILE: vendor/github.com/docker/docker/client/plugin_inspect.go method PluginInspectWithRaw (line 14) | func (cli *Client) PluginInspectWithRaw(ctx context.Context, name string... FILE: vendor/github.com/docker/docker/client/plugin_install.go method PluginInstall (line 16) | func (cli *Client) PluginInstall(ctx context.Context, name string, optio... method tryPluginPrivileges (line 69) | func (cli *Client) tryPluginPrivileges(ctx context.Context, query url.Va... method tryPluginPull (line 74) | func (cli *Client) tryPluginPull(ctx context.Context, query url.Values, ... method checkPluginPermissions (line 79) | func (cli *Client) checkPluginPermissions(ctx context.Context, query url... FILE: vendor/github.com/docker/docker/client/plugin_list.go method PluginList (line 13) | func (cli *Client) PluginList(ctx context.Context, filter filters.Args) ... FILE: vendor/github.com/docker/docker/client/plugin_push.go method PluginPush (line 10) | func (cli *Client) PluginPush(ctx context.Context, name string, registry... FILE: vendor/github.com/docker/docker/client/plugin_remove.go method PluginRemove (line 11) | func (cli *Client) PluginRemove(ctx context.Context, name string, option... FILE: vendor/github.com/docker/docker/client/plugin_set.go method PluginSet (line 8) | func (cli *Client) PluginSet(ctx context.Context, name string, args []st... FILE: vendor/github.com/docker/docker/client/plugin_upgrade.go method PluginUpgrade (line 15) | func (cli *Client) PluginUpgrade(ctx context.Context, name string, optio... method tryPluginUpgrade (line 34) | func (cli *Client) tryPluginUpgrade(ctx context.Context, query url.Value... FILE: vendor/github.com/docker/docker/client/request.go type serverResponse (line 23) | type serverResponse struct method head (line 30) | func (cli *Client) head(ctx context.Context, path string, query url.Valu... method get (line 35) | func (cli *Client) get(ctx context.Context, path string, query url.Value... method post (line 40) | func (cli *Client) post(ctx context.Context, path string, query url.Valu... method postRaw (line 48) | func (cli *Client) postRaw(ctx context.Context, path string, query url.V... method put (line 53) | func (cli *Client) put(ctx context.Context, path string, query url.Value... method putRaw (line 62) | func (cli *Client) putRaw(ctx context.Context, path string, query url.Va... method delete (line 67) | func (cli *Client) delete(ctx context.Context, path string, query url.Va... type headers (line 71) | type headers function encodeBody (line 73) | func encodeBody(obj interface{}, headers headers) (io.Reader, headers, e... method buildRequest (line 89) | func (cli *Client) buildRequest(method, path string, body io.Reader, hea... method sendRequest (line 116) | func (cli *Client) sendRequest(ctx context.Context, method, path string,... method doRequest (line 124) | func (cli *Client) doRequest(ctx context.Context, req *http.Request) (se... method addHeaders (line 213) | func (cli *Client) addHeaders(req *http.Request, headers headers) *http.... function encodeData (line 231) | func encodeData(data interface{}) (*bytes.Buffer, error) { function ensureReaderClosed (line 241) | func ensureReaderClosed(response serverResponse) { FILE: vendor/github.com/docker/docker/client/secret_create.go method SecretCreate (line 12) | func (cli *Client) SecretCreate(ctx context.Context, secret swarm.Secret... FILE: vendor/github.com/docker/docker/client/secret_inspect.go method SecretInspectWithRaw (line 14) | func (cli *Client) SecretInspectWithRaw(ctx context.Context, id string) ... FILE: vendor/github.com/docker/docker/client/secret_list.go method SecretList (line 14) | func (cli *Client) SecretList(ctx context.Context, options types.SecretL... FILE: vendor/github.com/docker/docker/client/secret_remove.go method SecretRemove (line 6) | func (cli *Client) SecretRemove(ctx context.Context, id string) error { FILE: vendor/github.com/docker/docker/client/secret_update.go method SecretUpdate (line 12) | func (cli *Client) SecretUpdate(ctx context.Context, id string, version ... FILE: vendor/github.com/docker/docker/client/service_create.go method ServiceCreate (line 12) | func (cli *Client) ServiceCreate(ctx context.Context, service swarm.Serv... FILE: vendor/github.com/docker/docker/client/service_inspect.go method ServiceInspectWithRaw (line 17) | func (cli *Client) ServiceInspectWithRaw(ctx context.Context, serviceID ... FILE: vendor/github.com/docker/docker/client/service_list.go method ServiceList (line 14) | func (cli *Client) ServiceList(ctx context.Context, options types.Servic... FILE: vendor/github.com/docker/docker/client/service_logs.go method ServiceLogs (line 16) | func (cli *Client) ServiceLogs(ctx context.Context, serviceID string, op... FILE: vendor/github.com/docker/docker/client/service_remove.go method ServiceRemove (line 6) | func (cli *Client) ServiceRemove(ctx context.Context, serviceID string) ... FILE: vendor/github.com/docker/docker/client/service_update.go method ServiceUpdate (line 14) | func (cli *Client) ServiceUpdate(ctx context.Context, serviceID string, ... FILE: vendor/github.com/docker/docker/client/swarm_get_unlock_key.go method SwarmGetUnlockKey (line 11) | func (cli *Client) SwarmGetUnlockKey(ctx context.Context) (types.SwarmUn... FILE: vendor/github.com/docker/docker/client/swarm_init.go method SwarmInit (line 11) | func (cli *Client) SwarmInit(ctx context.Context, req swarm.InitRequest)... FILE: vendor/github.com/docker/docker/client/swarm_inspect.go method SwarmInspect (line 11) | func (cli *Client) SwarmInspect(ctx context.Context) (swarm.Swarm, error) { FILE: vendor/github.com/docker/docker/client/swarm_join.go method SwarmJoin (line 9) | func (cli *Client) SwarmJoin(ctx context.Context, req swarm.JoinRequest)... FILE: vendor/github.com/docker/docker/client/swarm_leave.go method SwarmLeave (line 10) | func (cli *Client) SwarmLeave(ctx context.Context, force bool) error { FILE: vendor/github.com/docker/docker/client/swarm_unlock.go method SwarmUnlock (line 9) | func (cli *Client) SwarmUnlock(ctx context.Context, req swarm.UnlockRequ... FILE: vendor/github.com/docker/docker/client/swarm_update.go method SwarmUpdate (line 13) | func (cli *Client) SwarmUpdate(ctx context.Context, version swarm.Versio... FILE: vendor/github.com/docker/docker/client/task_inspect.go method TaskInspectWithRaw (line 15) | func (cli *Client) TaskInspectWithRaw(ctx context.Context, taskID string... FILE: vendor/github.com/docker/docker/client/task_list.go method TaskList (line 14) | func (cli *Client) TaskList(ctx context.Context, options types.TaskListO... FILE: vendor/github.com/docker/docker/client/task_logs.go method TaskLogs (line 16) | func (cli *Client) TaskLogs(ctx context.Context, taskID string, options ... FILE: vendor/github.com/docker/docker/client/transport.go type transportFunc (line 10) | type transportFunc method RoundTrip (line 12) | func (tf transportFunc) RoundTrip(req *http.Request) (*http.Response, ... function resolveTLSConfig (line 18) | func resolveTLSConfig(transport http.RoundTripper) *tls.Config { FILE: vendor/github.com/docker/docker/client/utils.go function getDockerOS (line 12) | func getDockerOS(serverHeader string) string { function getFiltersQuery (line 23) | func getFiltersQuery(f filters.Args) (url.Values, error) { FILE: vendor/github.com/docker/docker/client/version.go method ServerVersion (line 11) | func (cli *Client) ServerVersion(ctx context.Context) (types.Version, er... FILE: vendor/github.com/docker/docker/client/volume_create.go method VolumeCreate (line 12) | func (cli *Client) VolumeCreate(ctx context.Context, options volumetypes... FILE: vendor/github.com/docker/docker/client/volume_inspect.go method VolumeInspect (line 14) | func (cli *Client) VolumeInspect(ctx context.Context, volumeID string) (... method VolumeInspectWithRaw (line 20) | func (cli *Client) VolumeInspectWithRaw(ctx context.Context, volumeID st... FILE: vendor/github.com/docker/docker/client/volume_list.go method VolumeList (line 13) | func (cli *Client) VolumeList(ctx context.Context, filter filters.Args) ... FILE: vendor/github.com/docker/docker/client/volume_prune.go method VolumesPrune (line 13) | func (cli *Client) VolumesPrune(ctx context.Context, pruneFilters filter... FILE: vendor/github.com/docker/docker/client/volume_remove.go method VolumeRemove (line 11) | func (cli *Client) VolumeRemove(ctx context.Context, volumeID string, fo... FILE: vendor/github.com/docker/docker/pkg/ioutils/buffer.go type fixedBuffer (line 10) | type fixedBuffer struct method Write (line 16) | func (b *fixedBuffer) Write(p []byte) (int, error) { method Read (line 29) | func (b *fixedBuffer) Read(p []byte) (int, error) { method Len (line 35) | func (b *fixedBuffer) Len() int { method Cap (line 39) | func (b *fixedBuffer) Cap() int { method Reset (line 43) | func (b *fixedBuffer) Reset() { method String (line 49) | func (b *fixedBuffer) String() string { FILE: vendor/github.com/docker/docker/pkg/ioutils/bytespipe.go constant maxCap (line 10) | maxCap = 1e6 constant minCap (line 13) | minCap = 64 constant blockThreshold (line 17) | blockThreshold = 1e6 type BytesPipe (line 31) | type BytesPipe struct method Write (line 51) | func (bp *BytesPipe) Write(p []byte) (int, error) { method CloseWithError (line 108) | func (bp *BytesPipe) CloseWithError(err error) error { method Close (line 121) | func (bp *BytesPipe) Close() error { method Read (line 127) | func (bp *BytesPipe) Read(p []byte) (n int, err error) { function NewBytesPipe (line 42) | func NewBytesPipe() *BytesPipe { function returnBuffer (line 167) | func returnBuffer(b *fixedBuffer) { function getBuffer (line 177) | func getBuffer(size int) *fixedBuffer { FILE: vendor/github.com/docker/docker/pkg/ioutils/fmt.go function FprintfIfNotEmpty (line 9) | func FprintfIfNotEmpty(w io.Writer, format, value string) (int, error) { function FprintfIfTrue (line 17) | func FprintfIfTrue(w io.Writer, format string, ok bool) (int, error) { FILE: vendor/github.com/docker/docker/pkg/ioutils/fswriters.go function NewAtomicFileWriter (line 13) | func NewAtomicFileWriter(filename string, perm os.FileMode) (io.WriteClo... function AtomicWriteFile (line 31) | func AtomicWriteFile(filename string, data []byte, perm os.FileMode) err... type atomicFileWriter (line 47) | type atomicFileWriter struct method Write (line 54) | func (w *atomicFileWriter) Write(dt []byte) (int, error) { method Close (line 62) | func (w *atomicFileWriter) Close() (retErr error) { type AtomicWriteSet (line 87) | type AtomicWriteSet struct method WriteFile (line 109) | func (ws *AtomicWriteSet) WriteFile(filename string, data []byte, perm... method FileWriter (line 138) | func (ws *AtomicWriteSet) FileWriter(name string, flag int, perm os.Fi... method Cancel (line 148) | func (ws *AtomicWriteSet) Cancel() error { method Commit (line 155) | func (ws *AtomicWriteSet) Commit(target string) error { method String (line 160) | func (ws *AtomicWriteSet) String() string { function NewAtomicWriteSet (line 96) | func NewAtomicWriteSet(tmpDir string) (*AtomicWriteSet, error) { type syncFileCloser (line 124) | type syncFileCloser struct method Close (line 128) | func (w syncFileCloser) Close() error { FILE: vendor/github.com/docker/docker/pkg/ioutils/multireader.go type pos (line 10) | type pos struct type multiReadSeeker (line 15) | type multiReadSeeker struct method Seek (line 21) | func (r *multiReadSeeker) Seek(offset int64, whence int) (int64, error) { method getReaderForOffset (line 99) | func (r *multiReadSeeker) getReaderForOffset(offset int64) (io.ReadSee... method getCurOffset (line 120) | func (r *multiReadSeeker) getCurOffset() (int64, error) { method getOffsetToReader (line 137) | func (r *multiReadSeeker) getOffsetToReader(rdr io.ReadSeeker) (int64,... method Read (line 153) | func (r *multiReadSeeker) Read(b []byte) (int, error) { function getReadSeekerSize (line 183) | func getReadSeekerSize(rdr io.ReadSeeker) (int64, error) { function MultiReadSeeker (line 212) | func MultiReadSeeker(readers ...io.ReadSeeker) io.ReadSeeker { FILE: vendor/github.com/docker/docker/pkg/ioutils/readers.go type readCloserWrapper (line 11) | type readCloserWrapper struct method Close (line 16) | func (r *readCloserWrapper) Close() error { function NewReadCloserWrapper (line 21) | func NewReadCloserWrapper(r io.Reader, closer func() error) io.ReadCloser { type readerErrWrapper (line 28) | type readerErrWrapper struct method Read (line 33) | func (r *readerErrWrapper) Read(p []byte) (int, error) { function NewReaderErrWrapper (line 42) | func NewReaderErrWrapper(r io.Reader, closer func()) io.Reader { function HashData (line 50) | func HashData(src io.Reader) (string, error) { type OnEOFReader (line 60) | type OnEOFReader struct method Read (line 65) | func (r *OnEOFReader) Read(p []byte) (n int, err error) { method Close (line 74) | func (r *OnEOFReader) Close() error { method runFunc (line 80) | func (r *OnEOFReader) runFunc() { type cancelReadCloser (line 89) | type cancelReadCloser struct method Read (line 138) | func (p *cancelReadCloser) Read(buf []byte) (n int, err error) { method closeWithError (line 144) | func (p *cancelReadCloser) closeWithError(err error) { method Close (line 151) | func (p *cancelReadCloser) Close() error { function NewCancelReadCloser (line 98) | func NewCancelReadCloser(ctx context.Context, in io.ReadCloser) io.ReadC... FILE: vendor/github.com/docker/docker/pkg/ioutils/temp_unix.go function TempDir (line 8) | func TempDir(dir, prefix string) (string, error) { FILE: vendor/github.com/docker/docker/pkg/ioutils/temp_windows.go function TempDir (line 12) | func TempDir(dir, prefix string) (string, error) { FILE: vendor/github.com/docker/docker/pkg/ioutils/writeflusher.go type WriteFlusher (line 11) | type WriteFlusher struct method Write (line 26) | func (wf *WriteFlusher) Write(b []byte) (n int, err error) { method Flush (line 39) | func (wf *WriteFlusher) Flush() { method Flushed (line 54) | func (wf *WriteFlusher) Flushed() bool { method Close (line 70) | func (wf *WriteFlusher) Close() error { type flusher (line 20) | type flusher interface function NewWriteFlusher (line 84) | func NewWriteFlusher(w io.Writer) *WriteFlusher { FILE: vendor/github.com/docker/docker/pkg/ioutils/writers.go type NopWriter (line 6) | type NopWriter struct method Write (line 8) | func (*NopWriter) Write(buf []byte) (int, error) { type nopWriteCloser (line 12) | type nopWriteCloser struct method Close (line 16) | func (w *nopWriteCloser) Close() error { return nil } function NopWriteCloser (line 19) | func NopWriteCloser(w io.Writer) io.WriteCloser { type NopFlusher (line 24) | type NopFlusher struct method Flush (line 27) | func (f *NopFlusher) Flush() {} type writeCloserWrapper (line 29) | type writeCloserWrapper struct method Close (line 34) | func (r *writeCloserWrapper) Close() error { function NewWriteCloserWrapper (line 39) | func NewWriteCloserWrapper(r io.Writer, closer func() error) io.WriteClo... type WriteCounter (line 50) | type WriteCounter struct method Write (line 62) | func (wc *WriteCounter) Write(p []byte) (count int, err error) { function NewWriteCounter (line 56) | func NewWriteCounter(w io.Writer) *WriteCounter { FILE: vendor/github.com/docker/docker/pkg/longpath/longpath.go constant Prefix (line 12) | Prefix = `\\?\` function AddPrefix (line 16) | func AddPrefix(path string) string { FILE: vendor/github.com/docker/docker/pkg/system/chtimes.go function init (line 14) | func init() { function Chtimes (line 26) | func Chtimes(name string, atime time.Time, mtime time.Time) error { FILE: vendor/github.com/docker/docker/pkg/system/chtimes_unix.go function setCTime (line 12) | func setCTime(path string, ctime time.Time) error { FILE: vendor/github.com/docker/docker/pkg/system/chtimes_windows.go function setCTime (line 12) | func setCTime(path string, ctime time.Time) error { FILE: vendor/github.com/docker/docker/pkg/system/events_windows.go function CreateEvent (line 22) | func CreateEvent(eventAttributes *syscall.SecurityAttributes, manualRese... function OpenEvent (line 42) | func OpenEvent(desiredAccess uint32, inheritHandle bool, name string) (h... function SetEvent (line 58) | func SetEvent(handle syscall.Handle) (err error) { function ResetEvent (line 63) | func ResetEvent(handle syscall.Handle) (err error) { function PulseEvent (line 68) | func PulseEvent(handle syscall.Handle) (err error) { function setResetPulse (line 72) | func setResetPulse(handle syscall.Handle, proc *windows.LazyProc) (err e... function use (line 83) | func use(p unsafe.Pointer) { FILE: vendor/github.com/docker/docker/pkg/system/exitcode.go function GetExitCode (line 11) | func GetExitCode(err error) (int, error) { function ProcessExitCode (line 23) | func ProcessExitCode(err error) (exitCode int) { FILE: vendor/github.com/docker/docker/pkg/system/filesys.go function MkdirAllWithACL (line 13) | func MkdirAllWithACL(path string, perm os.FileMode) error { function MkdirAll (line 19) | func MkdirAll(path string, perm os.FileMode) error { function IsAbs (line 24) | func IsAbs(path string) bool { function CreateSequential (line 36) | func CreateSequential(name string) (*os.File, error) { function OpenSequential (line 44) | func OpenSequential(name string) (*os.File, error) { function OpenFileSequential (line 53) | func OpenFileSequential(name string, flag int, perm os.FileMode) (*os.Fi... function TempFileSequential (line 66) | func TempFileSequential(dir, prefix string) (f *os.File, err error) { FILE: vendor/github.com/docker/docker/pkg/system/filesys_windows.go function MkdirAllWithACL (line 21) | func MkdirAllWithACL(path string, perm os.FileMode) error { function MkdirAll (line 26) | func MkdirAll(path string, _ os.FileMode) error { function mkdirall (line 33) | func mkdirall(path string, adminAndLocalSystem bool) error { function mkdirWithACL (line 99) | func mkdirWithACL(name string) error { function IsAbs (line 129) | func IsAbs(path string) bool { function CreateSequential (line 151) | func CreateSequential(name string) (*os.File, error) { function OpenSequential (line 159) | func OpenSequential(name string) (*os.File, error) { function OpenFileSequential (line 166) | func OpenFileSequential(name string, flag int, _ os.FileMode) (*os.File,... function syscallOpenFileSequential (line 177) | func syscallOpenFileSequential(name string, flag int, _ os.FileMode) (fi... function makeInheritSa (line 185) | func makeInheritSa() *syscall.SecurityAttributes { function syscallOpenSequential (line 192) | func syscallOpenSequential(path string, mode int, _ uint32) (fd syscall.... function reseed (line 245) | func reseed() uint32 { function nextSuffix (line 248) | func nextSuffix() string { function TempFileSequential (line 271) | func TempFileSequential(dir, prefix string) (f *os.File, err error) { FILE: vendor/github.com/docker/docker/pkg/system/lstat_unix.go function Lstat (line 11) | func Lstat(path string) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/lstat_windows.go function Lstat (line 7) | func Lstat(path string) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/meminfo.go type MemInfo (line 4) | type MemInfo struct FILE: vendor/github.com/docker/docker/pkg/system/meminfo_linux.go function ReadMemInfo (line 15) | func ReadMemInfo() (*MemInfo, error) { function parseMemInfo (line 27) | func parseMemInfo(reader io.Reader) (*MemInfo, error) { FILE: vendor/github.com/docker/docker/pkg/system/meminfo_solaris.go function getTotalMem (line 70) | func getTotalMem() int64 { function getFreeMem (line 76) | func getFreeMem() int64 { function ReadMemInfo (line 84) | func ReadMemInfo() (*MemInfo, error) { function getSysSwap (line 106) | func getSysSwap() (int64, int64, error) { FILE: vendor/github.com/docker/docker/pkg/system/meminfo_unsupported.go function ReadMemInfo (line 6) | func ReadMemInfo() (*MemInfo, error) { FILE: vendor/github.com/docker/docker/pkg/system/meminfo_windows.go type memorystatusex (line 17) | type memorystatusex struct function ReadMemInfo (line 31) | func ReadMemInfo() (*MemInfo, error) { FILE: vendor/github.com/docker/docker/pkg/system/mknod.go function Mknod (line 11) | func Mknod(path string, mode uint32, dev int) error { function Mkdev (line 20) | func Mkdev(major int64, minor int64) uint32 { FILE: vendor/github.com/docker/docker/pkg/system/mknod_windows.go function Mknod (line 6) | func Mknod(path string, mode uint32, dev int) error { function Mkdev (line 11) | func Mkdev(major int64, minor int64) uint32 { FILE: vendor/github.com/docker/docker/pkg/system/path_unix.go constant DefaultPathEnv (line 8) | DefaultPathEnv = "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbi... function CheckSystemDriveAndRemoveDriveLetter (line 12) | func CheckSystemDriveAndRemoveDriveLetter(path string) (string, error) { FILE: vendor/github.com/docker/docker/pkg/system/path_windows.go constant DefaultPathEnv (line 13) | DefaultPathEnv = "" function CheckSystemDriveAndRemoveDriveLetter (line 26) | func CheckSystemDriveAndRemoveDriveLetter(path string) (string, error) { FILE: vendor/github.com/docker/docker/pkg/system/process_unix.go function IsProcessAlive (line 10) | func IsProcessAlive(pid int) bool { function KillProcess (line 20) | func KillProcess(pid int) { FILE: vendor/github.com/docker/docker/pkg/system/stat_darwin.go function fromStatT (line 6) | func fromStatT(s *syscall.Stat_t) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/stat_freebsd.go function fromStatT (line 6) | func fromStatT(s *syscall.Stat_t) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/stat_linux.go function fromStatT (line 6) | func fromStatT(s *syscall.Stat_t) (*StatT, error) { function FromStatT (line 17) | func FromStatT(s *syscall.Stat_t) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/stat_openbsd.go function fromStatT (line 6) | func fromStatT(s *syscall.Stat_t) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/stat_solaris.go function fromStatT (line 6) | func fromStatT(s *syscall.Stat_t) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/stat_unix.go type StatT (line 9) | type StatT struct method Mode (line 19) | func (s StatT) Mode() uint32 { method UID (line 24) | func (s StatT) UID() uint32 { method GID (line 29) | func (s StatT) GID() uint32 { method Rdev (line 34) | func (s StatT) Rdev() uint64 { method Size (line 39) | func (s StatT) Size() int64 { method Mtim (line 44) | func (s StatT) Mtim() syscall.Timespec { function Stat (line 52) | func Stat(path string) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/stat_windows.go type StatT (line 10) | type StatT struct method Size (line 17) | func (s StatT) Size() int64 { method Mode (line 22) | func (s StatT) Mode() os.FileMode { method Mtim (line 27) | func (s StatT) Mtim() time.Time { function Stat (line 35) | func Stat(path string) (*StatT, error) { function fromStatT (line 44) | func fromStatT(fi *os.FileInfo) (*StatT, error) { FILE: vendor/github.com/docker/docker/pkg/system/syscall_unix.go function Unmount (line 9) | func Unmount(dest string) error { function CommandLineToArgv (line 15) | func CommandLineToArgv(commandLine string) ([]string, error) { FILE: vendor/github.com/docker/docker/pkg/system/syscall_windows.go type OSVersion (line 17) | type OSVersion struct type osVersionInfoEx (line 25) | type osVersionInfoEx struct function GetOSVersion (line 41) | func GetOSVersion() OSVersion { function IsWindowsClient (line 58) | func IsWindowsClient() bool { function Unmount (line 71) | func Unmount(dest string) error { function CommandLineToArgv (line 76) | func CommandLineToArgv(commandLine string) ([]string, error) { function HasWin32KSupport (line 100) | func HasWin32KSupport() bool { FILE: vendor/github.com/docker/docker/pkg/system/umask.go function Umask (line 11) | func Umask(newmask int) (oldmask int, err error) { FILE: vendor/github.com/docker/docker/pkg/system/umask_windows.go function Umask (line 6) | func Umask(newmask int) (oldmask int, err error) { FILE: vendor/github.com/docker/docker/pkg/system/utimes_freebsd.go function LUtimesNano (line 10) | func LUtimesNano(path string, ts []syscall.Timespec) error { FILE: vendor/github.com/docker/docker/pkg/system/utimes_linux.go function LUtimesNano (line 10) | func LUtimesNano(path string, ts []syscall.Timespec) error { FILE: vendor/github.com/docker/docker/pkg/system/utimes_unsupported.go function LUtimesNano (line 8) | func LUtimesNano(path string, ts []syscall.Timespec) error { FILE: vendor/github.com/docker/docker/pkg/system/xattrs_linux.go function Lgetxattr (line 11) | func Lgetxattr(path string, attr string) ([]byte, error) { function Lsetxattr (line 43) | func Lsetxattr(path string, attr string, data []byte, flags int) error { FILE: vendor/github.com/docker/docker/pkg/system/xattrs_unsupported.go function Lgetxattr (line 6) | func Lgetxattr(path string, attr string) ([]byte, error) { function Lsetxattr (line 11) | func Lsetxattr(path string, attr string, data []byte, flags int) error { FILE: vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone.go function Clone (line 9) | func Clone(c *tls.Config) *tls.Config { FILE: vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go16.go function Clone (line 9) | func Clone(c *tls.Config) *tls.Config { FILE: vendor/github.com/docker/docker/pkg/tlsconfig/tlsconfig_clone_go17.go function Clone (line 9) | func Clone(c *tls.Config) *tls.Config { FILE: vendor/github.com/docker/docker/vendor/github.com/docker/docker-credential-helpers/osxkeychain/osxkeychain_darwin.c type Server (line 17) | struct Server type Server (line 54) | struct Server type Server (line 96) | struct Server function freeListData (line 223) | void freeListData(char *** data, unsigned int length) { FILE: vendor/github.com/docker/docker/vendor/github.com/docker/docker-credential-helpers/osxkeychain/osxkeychain_darwin.go constant errCredentialsNotFound (line 23) | errCredentialsNotFound = "The specified item could not be found in the k... type Osxkeychain (line 26) | type Osxkeychain struct method Add (line 29) | func (h Osxkeychain) Add(creds *credentials.Credentials) error { method Delete (line 55) | func (h Osxkeychain) Delete(serverURL string) error { method Get (line 72) | func (h Osxkeychain) Get(serverURL string) (string, string, error) { method List (line 103) | func (h Osxkeychain) List() (map[string]string, error) { function splitServer (line 137) | func splitServer(serverURL string) (*C.struct_Server, error) { function freeServer (line 167) | func freeServer(s *C.struct_Server) { FILE: vendor/github.com/docker/docker/vendor/github.com/docker/docker-credential-helpers/osxkeychain/osxkeychain_darwin.h type Server (line 3) | struct Server { type Server (line 10) | struct Server type Server (line 11) | struct Server type Server (line 12) | struct Server FILE: vendor/github.com/docker/docker/vendor/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.c function SecretSchema (line 5) | const SecretSchema *docker_get_schema(void) function GError (line 20) | GError *add(char *label, char *server, char *username, char *secret) { function GError (line 33) | GError *delete(char *server) { function GError (line 60) | GError *get(char *server, char **username, char **secret) { function GError (line 103) | GError *list(char *ref_label, char *** paths, char *** accts, unsigned i... function freeListData (line 156) | void freeListData(char *** data, unsigned int length) { FILE: vendor/github.com/docker/docker/vendor/github.com/docker/docker-credential-helpers/secretservice/secretservice_linux.go type Secretservice (line 18) | type Secretservice struct method Add (line 21) | func (h Secretservice) Add(creds *credentials.Credentials) error { method Delete (line 43) | func (h Secretservice) Delete(serverURL string) error { method Get (line 59) | func (h Secretservice) Get(serverURL string) (string, string, error) { method List (line 85) | func (h Secretservice) List() (map[string]string, error) { FILE: vendor/github.com/docker/docker/vendor/github.com/google/certificate-transparency/cpp/third_party/curl/hostcheck.c function Curl_raw_toupper (line 54) | static char Curl_raw_toupper(char in) { function Curl_raw_equal (line 122) | static int Curl_raw_equal(const char *first, const char *second) { function Curl_raw_nequal (line 136) | static int Curl_raw_nequal(const char *first, const char *second, size_t... function hostmatch (line 160) | static int hostmatch(const char *hostname, const char *pattern) { function Curl_cert_hostcheck (line 203) | int Curl_cert_hostcheck(const char *match_pattern, const char *hostname) { FILE: vendor/github.com/docker/docker/vendor/github.com/google/certificate-transparency/cpp/third_party/isec_partners/openssl_hostname_validation.c function HostnameValidationResult (line 55) | static HostnameValidationResult matches_common_name(const char *hostname, function HostnameValidationResult (line 110) | static HostnameValidationResult matches_subject_alternative_name( function HostnameValidationResult (line 165) | HostnameValidationResult validate_hostname(const char *hostname, FILE: vendor/github.com/docker/docker/vendor/github.com/google/certificate-transparency/cpp/third_party/isec_partners/openssl_hostname_validation.h type HostnameValidationResult (line 37) | typedef enum { FILE: vendor/github.com/docker/docker/vendor/github.com/google/certificate-transparency/cpp/version.h function namespace (line 4) | namespace cert_trans { FILE: vendor/github.com/docker/docker/vendor/github.com/miekg/pkcs11/const.go constant CKU_SO (line 8) | CKU_SO uint = 0 constant CKU_USER (line 9) | CKU_USER uint = 1 constant CKU_CONTEXT_SPECIFIC (line 10) | CKU_CONTEXT_SPECIFIC uint = 2 constant CKO_DATA (line 14) | CKO_DATA uint = 0x00000000 constant CKO_CERTIFICATE (line 15) | CKO_CERTIFICATE uint = 0x00000001 constant CKO_PUBLIC_KEY (line 16) | CKO_PUBLIC_KEY uint = 0x00000002 constant CKO_PRIVATE_KEY (line 17) | CKO_PRIVATE_KEY uint = 0x00000003 constant CKO_SECRET_KEY (line 18) | CKO_SECRET_KEY uint = 0x00000004 constant CKO_HW_FEATURE (line 19) | CKO_HW_FEATURE uint = 0x00000005 constant CKO_DOMAIN_PARAMETERS (line 20) | CKO_DOMAIN_PARAMETERS uint = 0x00000006 constant CKO_MECHANISM (line 21) | CKO_MECHANISM uint = 0x00000007 constant CKO_OTP_KEY (line 22) | CKO_OTP_KEY uint = 0x00000008 constant CKO_VENDOR_DEFINED (line 23) | CKO_VENDOR_DEFINED uint = 0x80000000 constant CKF_TOKEN_PRESENT (line 31) | CKF_TOKEN_PRESENT = 0x00000001 constant CKF_REMOVABLE_DEVICE (line 32) | CKF_REMOVABLE_DEVICE = 0x00000002 constant CKF_HW_SLOT (line 33) | CKF_HW_SLOT = 0x00000004 constant CKF_RNG (line 34) | CKF_RNG = 0x00000001 constant CKF_WRITE_PROTECTED (line 35) | CKF_WRITE_PROTECTED = 0x00000002 constant CKF_LOGIN_REQUIRED (line 36) | CKF_LOGIN_REQUIRED = 0x00000004 constant CKF_USER_PIN_INITIALIZED (line 37) | CKF_USER_PIN_INITIALIZED = 0x00000008 constant CKF_RESTORE_KEY_NOT_NEEDED (line 38) | CKF_RESTORE_KEY_NOT_NEEDED = 0x00000020 constant CKF_CLOCK_ON_TOKEN (line 39) | CKF_CLOCK_ON_TOKEN = 0x00000040 constant CKF_PROTECTED_AUTHENTICATION_PATH (line 40) | CKF_PROTECTED_AUTHENTICATION_PATH = 0x00000100 constant CKF_DUAL_CRYPTO_OPERATIONS (line 41) | CKF_DUAL_CRYPTO_OPERATIONS = 0x00000200 constant CKF_TOKEN_INITIALIZED (line 42) | CKF_TOKEN_INITIALIZED = 0x00000400 constant CKF_SECONDARY_AUTHENTICATION (line 43) | CKF_SECONDARY_AUTHENTICATION = 0x00000800 constant CKF_USER_PIN_COUNT_LOW (line 44) | CKF_USER_PIN_COUNT_LOW = 0x00010000 constant CKF_USER_PIN_FINAL_TRY (line 45) | CKF_USER_PIN_FINAL_TRY = 0x00020000 constant CKF_USER_PIN_LOCKED (line 46) | CKF_USER_PIN_LOCKED = 0x00040000 constant CKF_USER_PIN_TO_BE_CHANGED (line 47) | CKF_USER_PIN_TO_BE_CHANGED = 0x00080000 constant CKF_SO_PIN_COUNT_LOW (line 48) | CKF_SO_PIN_COUNT_LOW = 0x00100000 constant CKF_SO_PIN_FINAL_TRY (line 49) | CKF_SO_PIN_FINAL_TRY = 0x00200000 constant CKF_SO_PIN_LOCKED (line 50) | CKF_SO_PIN_LOCKED = 0x00400000 constant CKF_SO_PIN_TO_BE_CHANGED (line 51) | CKF_SO_PIN_TO_BE_CHANGED = 0x00800000 constant CKF_RW_SESSION (line 52) | CKF_RW_SESSION = 0x00000002 constant CKF_SERIAL_SESSION (line 53) | CKF_SERIAL_SESSION = 0x00000004 constant CKK_RSA (line 54) | CKK_RSA = 0x00000000 constant CKK_DSA (line 55) | CKK_DSA = 0x00000001 constant CKK_DH (line 56) | CKK_DH = 0x00000002 constant CKK_ECDSA (line 57) | CKK_ECDSA = 0x00000003 constant CKK_EC (line 58) | CKK_EC = 0x00000003 constant CKK_X9_42_DH (line 59) | CKK_X9_42_DH = 0x00000004 constant CKK_KEA (line 60) | CKK_KEA = 0x00000005 constant CKK_GENERIC_SECRET (line 61) | CKK_GENERIC_SECRET = 0x00000010 constant CKK_RC2 (line 62) | CKK_RC2 = 0x00000011 constant CKK_RC4 (line 63) | CKK_RC4 = 0x00000012 constant CKK_DES (line 64) | CKK_DES = 0x00000013 constant CKK_DES2 (line 65) | CKK_DES2 = 0x00000014 constant CKK_DES3 (line 66) | CKK_DES3 = 0x00000015 constant CKK_CAST (line 67) | CKK_CAST = 0x00000016 constant CKK_CAST3 (line 68) | CKK_CAST3 = 0x00000017 constant CKK_CAST5 (line 69) | CKK_CAST5 = 0x00000018 constant CKK_CAST128 (line 70) | CKK_CAST128 = 0x00000018 constant CKK_RC5 (line 71) | CKK_RC5 = 0x00000019 constant CKK_IDEA (line 72) | CKK_IDEA = 0x0000001A constant CKK_SKIPJACK (line 73) | CKK_SKIPJACK = 0x0000001B constant CKK_BATON (line 74) | CKK_BATON = 0x0000001C constant CKK_JUNIPER (line 75) | CKK_JUNIPER = 0x0000001D constant CKK_CDMF (line 76) | CKK_CDMF = 0x0000001E constant CKK_AES (line 77) | CKK_AES = 0x0000001F constant CKK_BLOWFISH (line 78) | CKK_BLOWFISH = 0x00000020 constant CKK_TWOFISH (line 79) | CKK_TWOFISH = 0x00000021 constant CKK_SECURID (line 80) | CKK_SECURID = 0x00000022 constant CKK_HOTP (line 81) | CKK_HOTP = 0x00000023 constant CKK_ACTI (line 82) | CKK_ACTI = 0x00000024 constant CKK_CAMELLIA (line 83) | CKK_CAMELLIA = 0x00000025 constant CKK_ARIA (line 84) | CKK_ARIA = 0x00000026 constant CKK_VENDOR_DEFINED (line 85) | CKK_VENDOR_DEFINED = 0x80000000 constant CKC_X_509 (line 86) | CKC_X_509 = 0x00000000 constant CKC_X_509_ATTR_CERT (line 87) | CKC_X_509_ATTR_CERT = 0x00000001 constant CKC_WTLS (line 88) | CKC_WTLS = 0x00000002 constant CKC_VENDOR_DEFINED (line 89) | CKC_VENDOR_DEFINED = 0x80000000 constant CKF_ARRAY_ATTRIBUTE (line 90) | CKF_ARRAY_ATTRIBUTE = 0x40000000 constant CKA_CLASS (line 91) | CKA_CLASS = 0x00000000 constant CKA_TOKEN (line 92) | CKA_TOKEN = 0x00000001 constant CKA_PRIVATE (line 93) | CKA_PRIVATE = 0x00000002 constant CKA_LABEL (line 94) | CKA_LABEL = 0x00000003 constant CKA_APPLICATION (line 95) | CKA_APPLICATION = 0x00000010 constant CKA_VALUE (line 96) | CKA_VALUE = 0x00000011 constant CKA_OBJECT_ID (line 97) | CKA_OBJECT_ID = 0x00000012 constant CKA_CERTIFICATE_TYPE (line 98) | CKA_CERTIFICATE_TYPE = 0x00000080 constant CKA_ISSUER (line 99) | CKA_ISSUER = 0x00000081 constant CKA_SERIAL_NUMBER (line 100) | CKA_SERIAL_NUMBER = 0x00000082 constant CKA_AC_ISSUER (line 101) | CKA_AC_ISSUER = 0x00000083 constant CKA_OWNER (line 102) | CKA_OWNER = 0x00000084 constant CKA_ATTR_TYPES (line 103) | CKA_ATTR_TYPES = 0x00000085 constant CKA_TRUSTED (line 104) | CKA_TRUSTED = 0x00000086 constant CKA_CERTIFICATE_CATEGORY (line 105) | CKA_CERTIFICATE_CATEGORY = 0x00000087 constant CKA_JAVA_MIDP_SECURITY_DOMAIN (line 106) | CKA_JAVA_MIDP_SECURITY_DOMAIN = 0x00000088 constant CKA_URL (line 107) | CKA_URL = 0x00000089 constant CKA_HASH_OF_SUBJECT_PUBLIC_KEY (line 108) | CKA_HASH_OF_SUBJECT_PUBLIC_KEY = 0x0000008A constant CKA_HASH_OF_ISSUER_PUBLIC_KEY (line 109) | CKA_HASH_OF_ISSUER_PUBLIC_KEY = 0x0000008B constant CKA_CHECK_VALUE (line 110) | CKA_CHECK_VALUE = 0x00000090 constant CKA_KEY_TYPE (line 111) | CKA_KEY_TYPE = 0x00000100 constant CKA_SUBJECT (line 112) | CKA_SUBJECT = 0x00000101 constant CKA_ID (line 113) | CKA_ID = 0x00000102 constant CKA_SENSITIVE (line 114) | CKA_SENSITIVE = 0x00000103 constant CKA_ENCRYPT (line 115) | CKA_ENCRYPT = 0x00000104 constant CKA_DECRYPT (line 116) | CKA_DECRYPT = 0x00000105 constant CKA_WRAP (line 117) | CKA_WRAP = 0x00000106 constant CKA_UNWRAP (line 118) | CKA_UNWRAP = 0x00000107 constant CKA_SIGN (line 119) | CKA_SIGN = 0x00000108 constant CKA_SIGN_RECOVER (line 120) | CKA_SIGN_RECOVER = 0x00000109 constant CKA_VERIFY (line 121) | CKA_VERIFY = 0x0000010A constant CKA_VERIFY_RECOVER (line 122) | CKA_VERIFY_RECOVER = 0x0000010B constant CKA_DERIVE (line 123) | CKA_DERIVE = 0x0000010C constant CKA_START_DATE (line 124) | CKA_START_DATE = 0x00000110 constant CKA_END_DATE (line 125) | CKA_END_DATE = 0x00000111 constant CKA_MODULUS (line 126) | CKA_MODULUS = 0x00000120 constant CKA_MODULUS_BITS (line 127) | CKA_MODULUS_BITS = 0x00000121 constant CKA_PUBLIC_EXPONENT (line 128) | CKA_PUBLIC_EXPONENT = 0x00000122 constant CKA_PRIVATE_EXPONENT (line 129) | CKA_PRIVATE_EXPONENT = 0x00000123 constant CKA_PRIME_1 (line 130) | CKA_PRIME_1 = 0x00000124 constant CKA_PRIME_2 (line 131) | CKA_PRIME_2 = 0x00000125 constant CKA_EXPONENT_1 (line 132) | CKA_EXPONENT_1 = 0x00000126 constant CKA_EXPONENT_2 (line 133) | CKA_EXPONENT_2 = 0x00000127 constant CKA_COEFFICIENT (line 134) | CKA_COEFFICIENT = 0x00000128 constant CKA_PRIME (line 135) | CKA_PRIME = 0x00000130 constant CKA_SUBPRIME (line 136) | CKA_SUBPRIME = 0x00000131 constant CKA_BASE (line 137) | CKA_BASE = 0x00000132 constant CKA_PRIME_BITS (line 138) | CKA_PRIME_BITS = 0x00000133 constant CKA_SUBPRIME_BITS (line 139) | CKA_SUBPRIME_BITS = 0x00000134 constant CKA_SUB_PRIME_BITS (line 140) | CKA_SUB_PRIME_BITS = CKA_SUBPRIME_BITS constant CKA_VALUE_BITS (line 141) | CKA_VALUE_BITS = 0x00000160 constant CKA_VALUE_LEN (line 142) | CKA_VALUE_LEN = 0x00000161 constant CKA_EXTRACTABLE (line 143) | CKA_EXTRACTABLE = 0x00000162 constant CKA_LOCAL (line 144) | CKA_LOCAL = 0x00000163 constant CKA_NEVER_EXTRACTABLE (line 145) | CKA_NEVER_EXTRACTABLE = 0x00000164 constant CKA_ALWAYS_SENSITIVE (line 146) | CKA_ALWAYS_SENSITIVE = 0x00000165 constant CKA_KEY_GEN_MECHANISM (line 147) | CKA_KEY_GEN_MECHANISM = 0x00000166 constant CKA_MODIFIABLE (line 148) | CKA_MODIFIABLE = 0x00000170 constant CKA_ECDSA_PARAMS (line 149) | CKA_ECDSA_PARAMS = 0x00000180 constant CKA_EC_PARAMS (line 150) | CKA_EC_PARAMS = 0x00000180 constant CKA_EC_POINT (line 151) | CKA_EC_POINT = 0x00000181 constant CKA_SECONDARY_AUTH (line 152) | CKA_SECONDARY_AUTH = 0x00000200 constant CKA_AUTH_PIN_FLAGS (line 153) | CKA_AUTH_PIN_FLAGS = 0x00000201 constant CKA_ALWAYS_AUTHENTICATE (line 154) | CKA_ALWAYS_AUTHENTICATE = 0x00000202 constant CKA_WRAP_WITH_TRUSTED (line 155) | CKA_WRAP_WITH_TRUSTED = 0x00000210 constant CKA_WRAP_TEMPLATE (line 156) | CKA_WRAP_TEMPLATE = (CKF_ARRAY_ATTRIBUTE | 0x00000211) constant CKA_UNWRAP_TEMPLATE (line 157) | CKA_UNWRAP_TEMPLATE = (CKF_ARRAY_ATTRIBUTE | 0x00000212) constant CKA_OTP_FORMAT (line 158) | CKA_OTP_FORMAT = 0x00000220 constant CKA_OTP_LENGTH (line 159) | CKA_OTP_LENGTH = 0x00000221 constant CKA_OTP_TIME_INTERVAL (line 160) | CKA_OTP_TIME_INTERVAL = 0x00000222 constant CKA_OTP_USER_FRIENDLY_MODE (line 161) | CKA_OTP_USER_FRIENDLY_MODE = 0x00000223 constant CKA_OTP_CHALLENGE_REQUIREMENT (line 162) | CKA_OTP_CHALLENGE_REQUIREMENT = 0x00000224 constant CKA_OTP_TIME_REQUIREMENT (line 163) | CKA_OTP_TIME_REQUIREMENT = 0x00000225 constant CKA_OTP_COUNTER_REQUIREMENT (line 164) | CKA_OTP_COUNTER_REQUIREMENT = 0x00000226 constant CKA_OTP_PIN_REQUIREMENT (line 165) | CKA_OTP_PIN_REQUIREMENT = 0x00000227 constant CKA_OTP_COUNTER (line 166) | CKA_OTP_COUNTER = 0x0000022E constant CKA_OTP_TIME (line 167) | CKA_OTP_TIME = 0x0000022F constant CKA_OTP_USER_IDENTIFIER (line 168) | CKA_OTP_USER_IDENTIFIER = 0x0000022A constant CKA_OTP_SERVICE_IDENTIFIER (line 169) | CKA_OTP_SERVICE_IDENTIFIER = 0x0000022B constant CKA_OTP_SERVICE_LOGO (line 170) | CKA_OTP_SERVICE_LOGO = 0x0000022C constant CKA_OTP_SERVICE_LOGO_TYPE (line 171) | CKA_OTP_SERVICE_LOGO_TYPE = 0x0000022D constant CKA_HW_FEATURE_TYPE (line 172) | CKA_HW_FEATURE_TYPE = 0x00000300 constant CKA_RESET_ON_INIT (line 173) | CKA_RESET_ON_INIT = 0x00000301 constant CKA_HAS_RESET (line 174) | CKA_HAS_RESET = 0x00000302 constant CKA_PIXEL_X (line 175) | CKA_PIXEL_X = 0x00000400 constant CKA_PIXEL_Y (line 176) | CKA_PIXEL_Y = 0x00000401 constant CKA_RESOLUTION (line 177) | CKA_RESOLUTION = 0x00000402 constant CKA_CHAR_ROWS (line 178) | CKA_CHAR_ROWS = 0x00000403 constant CKA_CHAR_COLUMNS (line 179) | CKA_CHAR_COLUMNS = 0x00000404 constant CKA_COLOR (line 180) | CKA_COLOR = 0x00000405 constant CKA_BITS_PER_PIXEL (line 181) | CKA_BITS_PER_PIXEL = 0x00000406 constant CKA_CHAR_SETS (line 182) | CKA_CHAR_SETS = 0x00000480 constant CKA_ENCODING_METHODS (line 183) | CKA_ENCODING_METHODS = 0x00000481 constant CKA_MIME_TYPES (line 184) | CKA_MIME_TYPES = 0x00000482 constant CKA_MECHANISM_TYPE (line 185) | CKA_MECHANISM_TYPE = 0x00000500 constant CKA_REQUIRED_CMS_ATTRIBUTES (line 186) | CKA_REQUIRED_CMS_ATTRIBUTES = 0x00000501 constant CKA_DEFAULT_CMS_ATTRIBUTES (line 187) | CKA_DEFAULT_CMS_ATTRIBUTES = 0x00000502 constant CKA_SUPPORTED_CMS_ATTRIBUTES (line 188) | CKA_SUPPORTED_CMS_ATTRIBUTES = 0x00000503 constant CKA_ALLOWED_MECHANISMS (line 189) | CKA_ALLOWED_MECHANISMS = (CKF_ARRAY_ATTRIBUTE | 0x00000600) constant CKA_VENDOR_DEFINED (line 190) | CKA_VENDOR_DEFINED = 0x80000000 constant CKM_RSA_PKCS_KEY_PAIR_GEN (line 191) | CKM_RSA_PKCS_KEY_PAIR_GEN = 0x00000000 constant CKM_RSA_PKCS (line 192) | CKM_RSA_PKCS = 0x00000001 constant CKM_RSA_9796 (line 193) | CKM_RSA_9796 = 0x00000002 constant CKM_RSA_X_509 (line 194) | CKM_RSA_X_509 = 0x00000003 constant CKM_MD2_RSA_PKCS (line 195) | CKM_MD2_RSA_PKCS = 0x00000004 constant CKM_MD5_RSA_PKCS (line 196) | CKM_MD5_RSA_PKCS = 0x00000005 constant CKM_SHA1_RSA_PKCS (line 197) | CKM_SHA1_RSA_PKCS = 0x00000006 constant CKM_RIPEMD128_RSA_PKCS (line 198) | CKM_RIPEMD128_RSA_PKCS = 0x00000007 constant CKM_RIPEMD160_RSA_PKCS (line 199) | CKM_RIPEMD160_RSA_PKCS = 0x00000008 constant CKM_RSA_PKCS_OAEP (line 200) | CKM_RSA_PKCS_OAEP = 0x00000009 constant CKM_RSA_X9_31_KEY_PAIR_GEN (line 201) | CKM_RSA_X9_31_KEY_PAIR_GEN = 0x0000000A constant CKM_RSA_X9_31 (line 202) | CKM_RSA_X9_31 = 0x0000000B constant CKM_SHA1_RSA_X9_31 (line 203) | CKM_SHA1_RSA_X9_31 = 0x0000000C constant CKM_RSA_PKCS_PSS (line 204) | CKM_RSA_PKCS_PSS = 0x0000000D constant CKM_SHA1_RSA_PKCS_PSS (line 205) | CKM_SHA1_RSA_PKCS_PSS = 0x0000000E constant CKM_DSA_KEY_PAIR_GEN (line 206) | CKM_DSA_KEY_PAIR_GEN = 0x00000010 constant CKM_DSA (line 207) | CKM_DSA = 0x00000011 constant CKM_DSA_SHA1 (line 208) | CKM_DSA_SHA1 = 0x00000012 constant CKM_DH_PKCS_KEY_PAIR_GEN (line 209) | CKM_DH_PKCS_KEY_PAIR_GEN = 0x00000020 constant CKM_DH_PKCS_DERIVE (line 210) | CKM_DH_PKCS_DERIVE = 0x00000021 constant CKM_X9_42_DH_KEY_PAIR_GEN (line 211) | CKM_X9_42_DH_KEY_PAIR_GEN = 0x00000030 constant CKM_X9_42_DH_DERIVE (line 212) | CKM_X9_42_DH_DERIVE = 0x00000031 constant CKM_X9_42_DH_HYBRID_DERIVE (line 213) | CKM_X9_42_DH_HYBRID_DERIVE = 0x00000032 constant CKM_X9_42_MQV_DERIVE (line 214) | CKM_X9_42_MQV_DERIVE = 0x00000033 constant CKM_SHA256_RSA_PKCS (line 215) | CKM_SHA256_RSA_PKCS = 0x00000040 constant CKM_SHA384_RSA_PKCS (line 216) | CKM_SHA384_RSA_PKCS = 0x00000041 constant CKM_SHA512_RSA_PKCS (line 217) | CKM_SHA512_RSA_PKCS = 0x00000042 constant CKM_SHA256_RSA_PKCS_PSS (line 218) | CKM_SHA256_RSA_PKCS_PSS = 0x00000043 constant CKM_SHA384_RSA_PKCS_PSS (line 219) | CKM_SHA384_RSA_PKCS_PSS = 0x00000044 constant CKM_SHA512_RSA_PKCS_PSS (line 220) | CKM_SHA512_RSA_PKCS_PSS = 0x00000045 constant CKM_SHA224_RSA_PKCS (line 221) | CKM_SHA224_RSA_PKCS = 0x00000046 constant CKM_SHA224_RSA_PKCS_PSS (line 222) | CKM_SHA224_RSA_PKCS_PSS = 0x00000047 constant CKM_RC2_KEY_GEN (line 223) | CKM_RC2_KEY_GEN = 0x00000100 constant CKM_RC2_ECB (line 224) | CKM_RC2_ECB = 0x00000101 constant CKM_RC2_CBC (line 225) | CKM_RC2_CBC = 0x00000102 constant CKM_RC2_MAC (line 226) | CKM_RC2_MAC = 0x00000103 constant CKM_RC2_MAC_GENERAL (line 227) | CKM_RC2_MAC_GENERAL = 0x00000104 constant CKM_RC2_CBC_PAD (line 228) | CKM_RC2_CBC_PAD = 0x00000105 constant CKM_RC4_KEY_GEN (line 229) | CKM_RC4_KEY_GEN = 0x00000110 constant CKM_RC4 (line 230) | CKM_RC4 = 0x00000111 constant CKM_DES_KEY_GEN (line 231) | CKM_DES_KEY_GEN = 0x00000120 constant CKM_DES_ECB (line 232) | CKM_DES_ECB = 0x00000121 constant CKM_DES_CBC (line 233) | CKM_DES_CBC = 0x00000122 constant CKM_DES_MAC (line 234) | CKM_DES_MAC = 0x00000123 constant CKM_DES_MAC_GENERAL (line 235) | CKM_DES_MAC_GENERAL = 0x00000124 constant CKM_DES_CBC_PAD (line 236) | CKM_DES_CBC_PAD = 0x00000125 constant CKM_DES2_KEY_GEN (line 237) | CKM_DES2_KEY_GEN = 0x00000130 constant CKM_DES3_KEY_GEN (line 238) | CKM_DES3_KEY_GEN = 0x00000131 constant CKM_DES3_ECB (line 239) | CKM_DES3_ECB = 0x00000132 constant CKM_DES3_CBC (line 240) | CKM_DES3_CBC = 0x00000133 constant CKM_DES3_MAC (line 241) | CKM_DES3_MAC = 0x00000134 constant CKM_DES3_MAC_GENERAL (line 242) | CKM_DES3_MAC_GENERAL = 0x00000135 constant CKM_DES3_CBC_PAD (line 243) | CKM_DES3_CBC_PAD = 0x00000136 constant CKM_CDMF_KEY_GEN (line 244) | CKM_CDMF_KEY_GEN = 0x00000140 constant CKM_CDMF_ECB (line 245) | CKM_CDMF_ECB = 0x00000141 constant CKM_CDMF_CBC (line 246) | CKM_CDMF_CBC = 0x00000142 constant CKM_CDMF_MAC (line 247) | CKM_CDMF_MAC = 0x00000143 constant CKM_CDMF_MAC_GENERAL (line 248) | CKM_CDMF_MAC_GENERAL = 0x00000144 constant CKM_CDMF_CBC_PAD (line 249) | CKM_CDMF_CBC_PAD = 0x00000145 constant CKM_DES_OFB64 (line 250) | CKM_DES_OFB64 = 0x00000150 constant CKM_DES_OFB8 (line 251) | CKM_DES_OFB8 = 0x00000151 constant CKM_DES_CFB64 (line 252) | CKM_DES_CFB64 = 0x00000152 constant CKM_DES_CFB8 (line 253) | CKM_DES_CFB8 = 0x00000153 constant CKM_MD2 (line 254) | CKM_MD2 = 0x00000200 constant CKM_MD2_HMAC (line 255) | CKM_MD2_HMAC = 0x00000201 constant CKM_MD2_HMAC_GENERAL (line 256) | CKM_MD2_HMAC_GENERAL = 0x00000202 constant CKM_MD5 (line 257) | CKM_MD5 = 0x00000210 constant CKM_MD5_HMAC (line 258) | CKM_MD5_HMAC = 0x00000211 constant CKM_MD5_HMAC_GENERAL (line 259) | CKM_MD5_HMAC_GENERAL = 0x00000212 constant CKM_SHA_1 (line 260) | CKM_SHA_1 = 0x00000220 constant CKM_SHA_1_HMAC (line 261) | CKM_SHA_1_HMAC = 0x00000221 constant CKM_SHA_1_HMAC_GENERAL (line 262) | CKM_SHA_1_HMAC_GENERAL = 0x00000222 constant CKM_RIPEMD128 (line 263) | CKM_RIPEMD128 = 0x00000230 constant CKM_RIPEMD128_HMAC (line 264) | CKM_RIPEMD128_HMAC = 0x00000231 constant CKM_RIPEMD128_HMAC_GENERAL (line 265) | CKM_RIPEMD128_HMAC_GENERAL = 0x00000232 constant CKM_RIPEMD160 (line 266) | CKM_RIPEMD160 = 0x00000240 constant CKM_RIPEMD160_HMAC (line 267) | CKM_RIPEMD160_HMAC = 0x00000241 constant CKM_RIPEMD160_HMAC_GENERAL (line 268) | CKM_RIPEMD160_HMAC_GENERAL = 0x00000242 constant CKM_SHA256 (line 269) | CKM_SHA256 = 0x00000250 constant CKM_SHA256_HMAC (line 270) | CKM_SHA256_HMAC = 0x00000251 constant CKM_SHA256_HMAC_GENERAL (line 271) | CKM_SHA256_HMAC_GENERAL = 0x00000252 constant CKM_SHA224 (line 272) | CKM_SHA224 = 0x00000255 constant CKM_SHA224_HMAC (line 273) | CKM_SHA224_HMAC = 0x00000256 constant CKM_SHA224_HMAC_GENERAL (line 274) | CKM_SHA224_HMAC_GENERAL = 0x00000257 constant CKM_SHA384 (line 275) | CKM_SHA384 = 0x00000260 constant CKM_SHA384_HMAC (line 276) | CKM_SHA384_HMAC = 0x00000261 constant CKM_SHA384_HMAC_GENERAL (line 277) | CKM_SHA384_HMAC_GENERAL = 0x00000262 constant CKM_SHA512 (line 278) | CKM_SHA512 = 0x00000270 constant CKM_SHA512_HMAC (line 279) | CKM_SHA512_HMAC = 0x00000271 constant CKM_SHA512_HMAC_GENERAL (line 280) | CKM_SHA512_HMAC_GENERAL = 0x00000272 constant CKM_SECURID_KEY_GEN (line 281) | CKM_SECURID_KEY_GEN = 0x00000280 constant CKM_SECURID (line 282) | CKM_SECURID = 0x00000282 constant CKM_HOTP_KEY_GEN (line 283) | CKM_HOTP_KEY_GEN = 0x00000290 constant CKM_HOTP (line 284) | CKM_HOTP = 0x00000291 constant CKM_ACTI (line 285) | CKM_ACTI = 0x000002A0 constant CKM_ACTI_KEY_GEN (line 286) | CKM_ACTI_KEY_GEN = 0x000002A1 constant CKM_CAST_KEY_GEN (line 287) | CKM_CAST_KEY_GEN = 0x00000300 constant CKM_CAST_ECB (line 288) | CKM_CAST_ECB = 0x00000301 constant CKM_CAST_CBC (line 289) | CKM_CAST_CBC = 0x00000302 constant CKM_CAST_MAC (line 290) | CKM_CAST_MAC = 0x00000303 constant CKM_CAST_MAC_GENERAL (line 291) | CKM_CAST_MAC_GENERAL = 0x00000304 constant CKM_CAST_CBC_PAD (line 292) | CKM_CAST_CBC_PAD = 0x00000305 constant CKM_CAST3_KEY_GEN (line 293) | CKM_CAST3_KEY_GEN = 0x00000310 constant CKM_CAST3_ECB (line 294) | CKM_CAST3_ECB = 0x00000311 constant CKM_CAST3_CBC (line 295) | CKM_CAST3_CBC = 0x00000312 constant CKM_CAST3_MAC (line 296) | CKM_CAST3_MAC = 0x00000313 constant CKM_CAST3_MAC_GENERAL (line 297) | CKM_CAST3_MAC_GENERAL = 0x00000314 constant CKM_CAST3_CBC_PAD (line 298) | CKM_CAST3_CBC_PAD = 0x00000315 constant CKM_CAST5_KEY_GEN (line 299) | CKM_CAST5_KEY_GEN = 0x00000320 constant CKM_CAST128_KEY_GEN (line 300) | CKM_CAST128_KEY_GEN = 0x00000320 constant CKM_CAST5_ECB (line 301) | CKM_CAST5_ECB = 0x00000321 constant CKM_CAST128_ECB (line 302) | CKM_CAST128_ECB = 0x00000321 constant CKM_CAST5_CBC (line 303) | CKM_CAST5_CBC = 0x00000322 constant CKM_CAST128_CBC (line 304) | CKM_CAST128_CBC = 0x00000322 constant CKM_CAST5_MAC (line 305) | CKM_CAST5_MAC = 0x00000323 constant CKM_CAST128_MAC (line 306) | CKM_CAST128_MAC = 0x00000323 constant CKM_CAST5_MAC_GENERAL (line 307) | CKM_CAST5_MAC_GENERAL = 0x00000324 constant CKM_CAST128_MAC_GENERAL (line 308) | CKM_CAST128_MAC_GENERAL = 0x00000324 constant CKM_CAST5_CBC_PAD (line 309) | CKM_CAST5_CBC_PAD = 0x00000325 constant CKM_CAST128_CBC_PAD (line 310) | CKM_CAST128_CBC_PAD = 0x00000325 constant CKM_RC5_KEY_GEN (line 311) | CKM_RC5_KEY_GEN = 0x00000330 constant CKM_RC5_ECB (line 312) | CKM_RC5_ECB = 0x00000331 constant CKM_RC5_CBC (line 313) | CKM_RC5_CBC = 0x00000332 constant CKM_RC5_MAC (line 314) | CKM_RC5_MAC = 0x00000333 constant CKM_RC5_MAC_GENERAL (line 315) | CKM_RC5_MAC_GENERAL = 0x00000334 constant CKM_RC5_CBC_PAD (line 316) | CKM_RC5_CBC_PAD = 0x00000335 constant CKM_IDEA_KEY_GEN (line 317) | CKM_IDEA_KEY_GEN = 0x00000340 constant CKM_IDEA_ECB (line 318) | CKM_IDEA_ECB = 0x00000341 constant CKM_IDEA_CBC (line 319) | CKM_IDEA_CBC = 0x00000342 constant CKM_IDEA_MAC (line 320) | CKM_IDEA_MAC = 0x00000343 constant CKM_IDEA_MAC_GENERAL (line 321) | CKM_IDEA_MAC_GENERAL = 0x00000344 constant CKM_IDEA_CBC_PAD (line 322) | CKM_IDEA_CBC_PAD = 0x00000345 constant CKM_GENERIC_SECRET_KEY_GEN (line 323) | CKM_GENERIC_SECRET_KEY_GEN = 0x00000350 constant CKM_CONCATENATE_BASE_AND_KEY (line 324) | CKM_CONCATENATE_BASE_AND_KEY = 0x00000360 constant CKM_CONCATENATE_BASE_AND_DATA (line 325) | CKM_CONCATENATE_BASE_AND_DATA = 0x00000362 constant CKM_CONCATENATE_DATA_AND_BASE (line 326) | CKM_CONCATENATE_DATA_AND_BASE = 0x00000363 constant CKM_XOR_BASE_AND_DATA (line 327) | CKM_XOR_BASE_AND_DATA = 0x00000364 constant CKM_EXTRACT_KEY_FROM_KEY (line 328) | CKM_EXTRACT_KEY_FROM_KEY = 0x00000365 constant CKM_SSL3_PRE_MASTER_KEY_GEN (line 329) | CKM_SSL3_PRE_MASTER_KEY_GEN = 0x00000370 constant CKM_SSL3_MASTER_KEY_DERIVE (line 330) | CKM_SSL3_MASTER_KEY_DERIVE = 0x00000371 constant CKM_SSL3_KEY_AND_MAC_DERIVE (line 331) | CKM_SSL3_KEY_AND_MAC_DERIVE = 0x00000372 constant CKM_SSL3_MASTER_KEY_DERIVE_DH (line 332) | CKM_SSL3_MASTER_KEY_DERIVE_DH = 0x00000373 constant CKM_TLS_PRE_MASTER_KEY_GEN (line 333) | CKM_TLS_PRE_MASTER_KEY_GEN = 0x00000374 constant CKM_TLS_MASTER_KEY_DERIVE (line 334) | CKM_TLS_MASTER_KEY_DERIVE = 0x00000375 constant CKM_TLS_KEY_AND_MAC_DERIVE (line 335) | CKM_TLS_KEY_AND_MAC_DERIVE = 0x00000376 constant CKM_TLS_MASTER_KEY_DERIVE_DH (line 336) | CKM_TLS_MASTER_KEY_DERIVE_DH = 0x00000377 constant CKM_TLS_PRF (line 337) | CKM_TLS_PRF = 0x00000378 constant CKM_SSL3_MD5_MAC (line 338) | CKM_SSL3_MD5_MAC = 0x00000380 constant CKM_SSL3_SHA1_MAC (line 339) | CKM_SSL3_SHA1_MAC = 0x00000381 constant CKM_MD5_KEY_DERIVATION (line 340) | CKM_MD5_KEY_DERIVATION = 0x00000390 constant CKM_MD2_KEY_DERIVATION (line 341) | CKM_MD2_KEY_DERIVATION = 0x00000391 constant CKM_SHA1_KEY_DERIVATION (line 342) | CKM_SHA1_KEY_DERIVATION = 0x00000392 constant CKM_SHA256_KEY_DERIVATION (line 343) | CKM_SHA256_KEY_DERIVATION = 0x00000393 constant CKM_SHA384_KEY_DERIVATION (line 344) | CKM_SHA384_KEY_DERIVATION = 0x00000394 constant CKM_SHA512_KEY_DERIVATION (line 345) | CKM_SHA512_KEY_DERIVATION = 0x00000395 constant CKM_SHA224_KEY_DERIVATION (line 346) | CKM_SHA224_KEY_DERIVATION = 0x00000396 constant CKM_PBE_MD2_DES_CBC (line 347) | CKM_PBE_MD2_DES_CBC = 0x000003A0 constant CKM_PBE_MD5_DES_CBC (line 348) | CKM_PBE_MD5_DES_CBC = 0x000003A1 constant CKM_PBE_MD5_CAST_CBC (line 349) | CKM_PBE_MD5_CAST_CBC = 0x000003A2 constant CKM_PBE_MD5_CAST3_CBC (line 350) | CKM_PBE_MD5_CAST3_CBC = 0x000003A3 constant CKM_PBE_MD5_CAST5_CBC (line 351) | CKM_PBE_MD5_CAST5_CBC = 0x000003A4 constant CKM_PBE_MD5_CAST128_CBC (line 352) | CKM_PBE_MD5_CAST128_CBC = 0x000003A4 constant CKM_PBE_SHA1_CAST5_CBC (line 353) | CKM_PBE_SHA1_CAST5_CBC = 0x000003A5 constant CKM_PBE_SHA1_CAST128_CBC (line 354) | CKM_PBE_SHA1_CAST128_CBC = 0x000003A5 constant CKM_PBE_SHA1_RC4_128 (line 355) | CKM_PBE_SHA1_RC4_128 = 0x000003A6 constant CKM_PBE_SHA1_RC4_40 (line 356) | CKM_PBE_SHA1_RC4_40 = 0x000003A7 constant CKM_PBE_SHA1_DES3_EDE_CBC (line 357) | CKM_PBE_SHA1_DES3_EDE_CBC = 0x000003A8 constant CKM_PBE_SHA1_DES2_EDE_CBC (line 358) | CKM_PBE_SHA1_DES2_EDE_CBC = 0x000003A9 constant CKM_PBE_SHA1_RC2_128_CBC (line 359) | CKM_PBE_SHA1_RC2_128_CBC = 0x000003AA constant CKM_PBE_SHA1_RC2_40_CBC (line 360) | CKM_PBE_SHA1_RC2_40_CBC = 0x000003AB constant CKM_PKCS5_PBKD2 (line 361) | CKM_PKCS5_PBKD2 = 0x000003B0 constant CKM_PBA_SHA1_WITH_SHA1_HMAC (line 362) | CKM_PBA_SHA1_WITH_SHA1_HMAC = 0x000003C0 constant CKM_WTLS_PRE_MASTER_KEY_GEN (line 363) | CKM_WTLS_PRE_MASTER_KEY_GEN = 0x000003D0 constant CKM_WTLS_MASTER_KEY_DERIVE (line 364) | CKM_WTLS_MASTER_KEY_DERIVE = 0x000003D1 constant CKM_WTLS_MASTER_KEY_DERIVE_DH_ECC (line 365) | CKM_WTLS_MASTER_KEY_DERIVE_DH_ECC = 0x000003D2 constant CKM_WTLS_PRF (line 366) | CKM_WTLS_PRF = 0x000003D3 constant CKM_WTLS_SERVER_KEY_AND_MAC_DERIVE (line 367) | CKM_WTLS_SERVER_KEY_AND_MAC_DERIVE = 0x000003D4 constant CKM_WTLS_CLIENT_KEY_AND_MAC_DERIVE (line 368) | CKM_WTLS_CLIENT_KEY_AND_MAC_DERIVE = 0x000003D5 constant CKM_KEY_WRAP_LYNKS (line 369) | CKM_KEY_WRAP_LYNKS = 0x00000400 constant CKM_KEY_WRAP_SET_OAEP (line 370) | CKM_KEY_WRAP_SET_OAEP = 0x00000401 constant CKM_CMS_SIG (line 371) | CKM_CMS_SIG = 0x00000500 constant CKM_KIP_DERIVE (line 372) | CKM_KIP_DERIVE = 0x00000510 constant CKM_KIP_WRAP (line 373) | CKM_KIP_WRAP = 0x00000511 constant CKM_KIP_MAC (line 374) | CKM_KIP_MAC = 0x00000512 constant CKM_CAMELLIA_KEY_GEN (line 375) | CKM_CAMELLIA_KEY_GEN = 0x00000550 constant CKM_CAMELLIA_ECB (line 376) | CKM_CAMELLIA_ECB = 0x00000551 constant CKM_CAMELLIA_CBC (line 377) | CKM_CAMELLIA_CBC = 0x00000552 constant CKM_CAMELLIA_MAC (line 378) | CKM_CAMELLIA_MAC = 0x00000553 constant CKM_CAMELLIA_MAC_GENERAL (line 379) | CKM_CAMELLIA_MAC_GENERAL = 0x00000554 constant CKM_CAMELLIA_CBC_PAD (line 380) | CKM_CAMELLIA_CBC_PAD = 0x00000555 constant CKM_CAMELLIA_ECB_ENCRYPT_DATA (line 381) | CKM_CAMELLIA_ECB_ENCRYPT_DATA = 0x00000556 constant CKM_CAMELLIA_CBC_ENCRYPT_DATA (line 382) | CKM_CAMELLIA_CBC_ENCRYPT_DATA = 0x00000557 constant CKM_CAMELLIA_CTR (line 383) | CKM_CAMELLIA_CTR = 0x00000558 constant CKM_ARIA_KEY_GEN (line 384) | CKM_ARIA_KEY_GEN = 0x00000560 constant CKM_ARIA_ECB (line 385) | CKM_ARIA_ECB = 0x00000561 constant CKM_ARIA_CBC (line 386) | CKM_ARIA_CBC = 0x00000562 constant CKM_ARIA_MAC (line 387) | CKM_ARIA_MAC = 0x00000563 constant CKM_ARIA_MAC_GENERAL (line 388) | CKM_ARIA_MAC_GENERAL = 0x00000564 constant CKM_ARIA_CBC_PAD (line 389) | CKM_ARIA_CBC_PAD = 0x00000565 constant CKM_ARIA_ECB_ENCRYPT_DATA (line 390) | CKM_ARIA_ECB_ENCRYPT_DATA = 0x00000566 constant CKM_ARIA_CBC_ENCRYPT_DATA (line 391) | CKM_ARIA_CBC_ENCRYPT_DATA = 0x00000567 constant CKM_SKIPJACK_KEY_GEN (line 392) | CKM_SKIPJACK_KEY_GEN = 0x00001000 constant CKM_SKIPJACK_ECB64 (line 393) | CKM_SKIPJACK_ECB64 = 0x00001001 constant CKM_SKIPJACK_CBC64 (line 394) | CKM_SKIPJACK_CBC64 = 0x00001002 constant CKM_SKIPJACK_OFB64 (line 395) | CKM_SKIPJACK_OFB64 = 0x00001003 constant CKM_SKIPJACK_CFB64 (line 396) | CKM_SKIPJACK_CFB64 = 0x00001004 constant CKM_SKIPJACK_CFB32 (line 397) | CKM_SKIPJACK_CFB32 = 0x00001005 constant CKM_SKIPJACK_CFB16 (line 398) | CKM_SKIPJACK_CFB16 = 0x00001006 constant CKM_SKIPJACK_CFB8 (line 399) | CKM_SKIPJACK_CFB8 = 0x00001007 constant CKM_SKIPJACK_WRAP (line 400) | CKM_SKIPJACK_WRAP = 0x00001008 constant CKM_SKIPJACK_PRIVATE_WRAP (line 401) | CKM_SKIPJACK_PRIVATE_WRAP = 0x00001009 constant CKM_SKIPJACK_RELAYX (line 402) | CKM_SKIPJACK_RELAYX = 0x0000100a constant CKM_KEA_KEY_PAIR_GEN (line 403) | CKM_KEA_KEY_PAIR_GEN = 0x00001010 constant CKM_KEA_KEY_DERIVE (line 404) | CKM_KEA_KEY_DERIVE = 0x00001011 constant CKM_FORTEZZA_TIMESTAMP (line 405) | CKM_FORTEZZA_TIMESTAMP = 0x00001020 constant CKM_BATON_KEY_GEN (line 406) | CKM_BATON_KEY_GEN = 0x00001030 constant CKM_BATON_ECB128 (line 407) | CKM_BATON_ECB128 = 0x00001031 constant CKM_BATON_ECB96 (line 408) | CKM_BATON_ECB96 = 0x00001032 constant CKM_BATON_CBC128 (line 409) | CKM_BATON_CBC128 = 0x00001033 constant CKM_BATON_COUNTER (line 410) | CKM_BATON_COUNTER = 0x00001034 constant CKM_BATON_SHUFFLE (line 411) | CKM_BATON_SHUFFLE = 0x00001035 constant CKM_BATON_WRAP (line 412) | CKM_BATON_WRAP = 0x00001036 constant CKM_ECDSA_KEY_PAIR_GEN (line 413) | CKM_ECDSA_KEY_PAIR_GEN = 0x00001040 constant CKM_EC_KEY_PAIR_GEN (line 414) | CKM_EC_KEY_PAIR_GEN = 0x00001040 constant CKM_ECDSA (line 415) | CKM_ECDSA = 0x00001041 constant CKM_ECDSA_SHA1 (line 416) | CKM_ECDSA_SHA1 = 0x00001042 constant CKM_ECDH1_DERIVE (line 417) | CKM_ECDH1_DERIVE = 0x00001050 constant CKM_ECDH1_COFACTOR_DERIVE (line 418) | CKM_ECDH1_COFACTOR_DERIVE = 0x00001051 constant CKM_ECMQV_DERIVE (line 419) | CKM_ECMQV_DERIVE = 0x00001052 constant CKM_JUNIPER_KEY_GEN (line 420) | CKM_JUNIPER_KEY_GEN = 0x00001060 constant CKM_JUNIPER_ECB128 (line 421) | CKM_JUNIPER_ECB128 = 0x00001061 constant CKM_JUNIPER_CBC128 (line 422) | CKM_JUNIPER_CBC128 = 0x00001062 constant CKM_JUNIPER_COUNTER (line 423) | CKM_JUNIPER_COUNTER = 0x00001063 constant CKM_JUNIPER_SHUFFLE (line 424) | CKM_JUNIPER_SHUFFLE = 0x00001064 constant CKM_JUNIPER_WRAP (line 425) | CKM_JUNIPER_WRAP = 0x00001065 constant CKM_FASTHASH (line 426) | CKM_FASTHASH = 0x00001070 constant CKM_AES_KEY_GEN (line 427) | CKM_AES_KEY_GEN = 0x00001080 constant CKM_AES_ECB (line 428) | CKM_AES_ECB = 0x00001081 constant CKM_AES_CBC (line 429) | CKM_AES_CBC = 0x00001082 constant CKM_AES_MAC (line 430) | CKM_AES_MAC = 0x00001083 constant CKM_AES_MAC_GENERAL (line 431) | CKM_AES_MAC_GENERAL = 0x00001084 constant CKM_AES_CBC_PAD (line 432) | CKM_AES_CBC_PAD = 0x00001085 constant CKM_AES_CTR (line 433) | CKM_AES_CTR = 0x00001086 constant CKM_BLOWFISH_KEY_GEN (line 434) | CKM_BLOWFISH_KEY_GEN = 0x00001090 constant CKM_BLOWFISH_CBC (line 435) | CKM_BLOWFISH_CBC = 0x00001091 constant CKM_TWOFISH_KEY_GEN (line 436) | CKM_TWOFISH_KEY_GEN = 0x00001092 constant CKM_TWOFISH_CBC (line 437) | CKM_TWOFISH_CBC = 0x00001093 constant CKM_DES_ECB_ENCRYPT_DATA (line 438) | CKM_DES_ECB_ENCRYPT_DATA = 0x00001100 constant CKM_DES_CBC_ENCRYPT_DATA (line 439) | CKM_DES_CBC_ENCRYPT_DATA = 0x00001101 constant CKM_DES3_ECB_ENCRYPT_DATA (line 440) | CKM_DES3_ECB_ENCRYPT_DATA = 0x00001102 constant CKM_DES3_CBC_ENCRYPT_DATA (line 441) | CKM_DES3_CBC_ENCRYPT_DATA = 0x00001103 constant CKM_AES_ECB_ENCRYPT_DATA (line 442) | CKM_AES_ECB_ENCRYPT_DATA = 0x00001104 constant CKM_AES_CBC_ENCRYPT_DATA (line 443) | CKM_AES_CBC_ENCRYPT_DATA = 0x00001105 constant CKM_DSA_PARAMETER_GEN (line 444) | CKM_DSA_PARAMETER_GEN = 0x00002000 constant CKM_DH_PKCS_PARAMETER_GEN (line 445) | CKM_DH_PKCS_PARAMETER_GEN = 0x00002001 constant CKM_X9_42_DH_PARAMETER_GEN (line 446) | CKM_X9_42_DH_PARAMETER_GEN = 0x00002002 constant CKM_VENDOR_DEFINED (line 447) | CKM_VENDOR_DEFINED = 0x80000000 constant CKF_HW (line 448) | CKF_HW = 0x00000001 constant CKF_ENCRYPT (line 449) | CKF_ENCRYPT = 0x00000100 constant CKF_DECRYPT (line 450) | CKF_DECRYPT = 0x00000200 constant CKF_DIGEST (line 451) | CKF_DIGEST = 0x00000400 constant CKF_SIGN (line 452) | CKF_SIGN = 0x00000800 constant CKF_SIGN_RECOVER (line 453) | CKF_SIGN_RECOVER = 0x00001000 constant CKF_VERIFY (line 454) | CKF_VERIFY = 0x00002000 constant CKF_VERIFY_RECOVER (line 455) | CKF_VERIFY_RECOVER = 0x00004000 constant CKF_GENERATE (line 456) | CKF_GENERATE = 0x00008000 constant CKF_GENERATE_KEY_PAIR (line 457) | CKF_GENERATE_KEY_PAIR = 0x00010000 constant CKF_WRAP (line 458) | CKF_WRAP = 0x00020000 constant CKF_UNWRAP (line 459) | CKF_UNWRAP = 0x00040000 constant CKF_DERIVE (line 460) | CKF_DERIVE = 0x00080000 constant CKF_EC_F_P (line 461) | CKF_EC_F_P = 0x00100000 constant CKF_EC_F_2M (line 462) | CKF_EC_F_2M = 0x00200000 constant CKF_EC_ECPARAMETERS (line 463) | CKF_EC_ECPARAMETERS = 0x00400000 constant CKF_EC_NAMEDCURVE (line 464) | CKF_EC_NAMEDCURVE = 0x00800000 constant CKF_EC_UNCOMPRESS (line 465) | CKF_EC_UNCOMPRESS = 0x01000000 constant CKF_EC_COMPRESS (line 466) | CKF_EC_COMPRESS = 0x02000000 constant CKF_EXTENSION (line 467) | CKF_EXTENSION = 0x80000000 constant CKR_OK (line 468) | CKR_OK = 0x00000000 constant CKR_CANCEL (line 469) | CKR_CANCEL = 0x00000001 constant CKR_HOST_MEMORY (line 470) | CKR_HOST_MEMORY = 0x00000002 constant CKR_SLOT_ID_INVALID (line 471) | CKR_SLOT_ID_INVALID = 0x00000003 constant CKR_GENERAL_ERROR (line 472) | CKR_GENERAL_ERROR = 0x00000005 constant CKR_FUNCTION_FAILED (line 473) | CKR_FUNCTION_FAILED = 0x00000006 constant CKR_ARGUMENTS_BAD (line 474) | CKR_ARGUMENTS_BAD = 0x00000007 constant CKR_NO_EVENT (line 475) | CKR_NO_EVENT = 0x00000008 constant CKR_NEED_TO_CREATE_THREADS (line 476) | CKR_NEED_TO_CREATE_THREADS = 0x00000009 constant CKR_CANT_LOCK (line 477) | CKR_CANT_LOCK = 0x0000000A constant CKR_ATTRIBUTE_READ_ONLY (line 478) | CKR_ATTRIBUTE_READ_ONLY = 0x00000010 constant CKR_ATTRIBUTE_SENSITIVE (line 479) | CKR_ATTRIBUTE_SENSITIVE = 0x00000011 constant CKR_ATTRIBUTE_TYPE_INVALID (line 480) | CKR_ATTRIBUTE_TYPE_INVALID = 0x00000012 constant CKR_ATTRIBUTE_VALUE_INVALID (line 481) | CKR_ATTRIBUTE_VALUE_INVALID = 0x00000013 constant CKR_DATA_INVALID (line 482) | CKR_DATA_INVALID = 0x00000020 constant CKR_DATA_LEN_RANGE (line 483) | CKR_DATA_LEN_RANGE = 0x00000021 constant CKR_DEVICE_ERROR (line 484) | CKR_DEVICE_ERROR = 0x00000030 constant CKR_DEVICE_MEMORY (line 485) | CKR_DEVICE_MEMORY = 0x00000031 constant CKR_DEVICE_REMOVED (line 486) | CKR_DEVICE_REMOVED = 0x00000032 constant CKR_ENCRYPTED_DATA_INVALID (line 487) | CKR_ENCRYPTED_DATA_INVALID = 0x00000040 constant CKR_ENCRYPTED_DATA_LEN_RANGE (line 488) | CKR_ENCRYPTED_DATA_LEN_RANGE = 0x00000041 constant CKR_FUNCTION_CANCELED (line 489) | CKR_FUNCTION_CANCELED = 0x00000050 constant CKR_FUNCTION_NOT_PARALLEL (line 490) | CKR_FUNCTION_NOT_PARALLEL = 0x00000051 constant CKR_FUNCTION_NOT_SUPPORTED (line 491) | CKR_FUNCTION_NOT_SUPPORTED = 0x00000054 constant CKR_KEY_HANDLE_INVALID (line 492) | CKR_KEY_HANDLE_INVALID = 0x00000060 constant CKR_KEY_SIZE_RANGE (line 493) | CKR_KEY_SIZE_RANGE = 0x00000062 constant CKR_KEY_TYPE_INCONSISTENT (line 494) | CKR_KEY_TYPE_INCONSISTENT = 0x00000063 constant CKR_KEY_NOT_NEEDED (line 495) | CKR_KEY_NOT_NEEDED = 0x00000064 constant CKR_KEY_CHANGED (line 496) | CKR_KEY_CHANGED = 0x00000065 constant CKR_KEY_NEEDED (line 497) | CKR_KEY_NEEDED = 0x00000066 constant CKR_KEY_INDIGESTIBLE (line 498) | CKR_KEY_INDIGESTIBLE = 0x00000067 constant CKR_KEY_FUNCTION_NOT_PERMITTED (line 499) | CKR_KEY_FUNCTION_NOT_PERMITTED = 0x00000068 constant CKR_KEY_NOT_WRAPPABLE (line 500) | CKR_KEY_NOT_WRAPPABLE = 0x00000069 constant CKR_KEY_UNEXTRACTABLE (line 501) | CKR_KEY_UNEXTRACTABLE = 0x0000006A constant CKR_MECHANISM_INVALID (line 502) | CKR_MECHANISM_INVALID = 0x00000070 constant CKR_MECHANISM_PARAM_INVALID (line 503) | CKR_MECHANISM_PARAM_INVALID = 0x00000071 constant CKR_OBJECT_HANDLE_INVALID (line 504) | CKR_OBJECT_HANDLE_INVALID = 0x00000082 constant CKR_OPERATION_ACTIVE (line 505) | CKR_OPERATION_ACTIVE = 0x00000090 constant CKR_OPERATION_NOT_INITIALIZED (line 506) | CKR_OPERATION_NOT_INITIALIZED = 0x00000091 constant CKR_PIN_INCORRECT (line 507) | CKR_PIN_INCORRECT = 0x000000A0 constant CKR_PIN_INVALID (line 508) | CKR_PIN_INVALID = 0x000000A1 constant CKR_PIN_LEN_RANGE (line 509) | CKR_PIN_LEN_RANGE = 0x000000A2 constant CKR_PIN_EXPIRED (line 510) | CKR_PIN_EXPIRED = 0x000000A3 constant CKR_PIN_LOCKED (line 511) | CKR_PIN_LOCKED = 0x000000A4 constant CKR_SESSION_CLOSED (line 512) | CKR_SESSION_CLOSED = 0x000000B0 constant CKR_SESSION_COUNT (line 513) | CKR_SESSION_COUNT = 0x000000B1 constant CKR_SESSION_HANDLE_INVALID (line 514) | CKR_SESSION_HANDLE_INVALID = 0x000000B3 constant CKR_SESSION_PARALLEL_NOT_SUPPORTED (line 515) | CKR_SESSION_PARALLEL_NOT_SUPPORTED = 0x000000B4 constant CKR_SESSION_READ_ONLY (line 516) | CKR_SESSION_READ_ONLY = 0x000000B5 constant CKR_SESSION_EXISTS (line 517) | CKR_SESSION_EXISTS = 0x000000B6 constant CKR_SESSION_READ_ONLY_EXISTS (line 518) | CKR_SESSION_READ_ONLY_EXISTS = 0x000000B7 constant CKR_SESSION_READ_WRITE_SO_EXISTS (line 519) | CKR_SESSION_READ_WRITE_SO_EXISTS = 0x000000B8 constant CKR_SIGNATURE_INVALID (line 520) | CKR_SIGNATURE_INVALID = 0x000000C0 constant CKR_SIGNATURE_LEN_RANGE (line 521) | CKR_SIGNATURE_LEN_RANGE = 0x000000C1 constant CKR_TEMPLATE_INCOMPLETE (line 522) | CKR_TEMPLATE_INCOMPLETE = 0x000000D0 constant CKR_TEMPLATE_INCONSISTENT (line 523) | CKR_TEMPLATE_INCONSISTENT = 0x000000D1 constant CKR_TOKEN_NOT_PRESENT (line 524) | CKR_TOKEN_NOT_PRESENT = 0x000000E0 constant CKR_TOKEN_NOT_RECOGNIZED (line 525) | CKR_TOKEN_NOT_RECOGNIZED = 0x000000E1 constant CKR_TOKEN_WRITE_PROTECTED (line 526) | CKR_TOKEN_WRITE_PROTECTED = 0x000000E2 constant CKR_UNWRAPPING_KEY_HANDLE_INVALID (line 527) | CKR_UNWRAPPING_KEY_HANDLE_INVALID = 0x000000F0 constant CKR_UNWRAPPING_KEY_SIZE_RANGE (line 528) | CKR_UNWRAPPING_KEY_SIZE_RANGE = 0x000000F1 constant CKR_UNWRAPPING_KEY_TYPE_INCONSISTENT (line 529) | CKR_UNWRAPPING_KEY_TYPE_INCONSISTENT = 0x000000F2 constant CKR_USER_ALREADY_LOGGED_IN (line 530) | CKR_USER_ALREADY_LOGGED_IN = 0x00000100 constant CKR_USER_NOT_LOGGED_IN (line 531) | CKR_USER_NOT_LOGGED_IN = 0x00000101 constant CKR_USER_PIN_NOT_INITIALIZED (line 532) | CKR_USER_PIN_NOT_INITIALIZED = 0x00000102 constant CKR_USER_TYPE_INVALID (line 533) | CKR_USER_TYPE_INVALID = 0x00000103 constant CKR_USER_ANOTHER_ALREADY_LOGGED_IN (line 534) | CKR_USER_ANOTHER_ALREADY_LOGGED_IN = 0x00000104 constant CKR_USER_TOO_MANY_TYPES (line 535) | CKR_USER_TOO_MANY_TYPES = 0x00000105 constant CKR_WRAPPED_KEY_INVALID (line 536) | CKR_WRAPPED_KEY_INVALID = 0x00000110 constant CKR_WRAPPED_KEY_LEN_RANGE (line 537) | CKR_WRAPPED_KEY_LEN_RANGE = 0x00000112 constant CKR_WRAPPING_KEY_HANDLE_INVALID (line 538) | CKR_WRAPPING_KEY_HANDLE_INVALID = 0x00000113 constant CKR_WRAPPING_KEY_SIZE_RANGE (line 539) | CKR_WRAPPING_KEY_SIZE_RANGE = 0x00000114 constant CKR_WRAPPING_KEY_TYPE_INCONSISTENT (line 540) | CKR_WRAPPING_KEY_TYPE_INCONSISTENT = 0x00000115 constant CKR_RANDOM_SEED_NOT_SUPPORTED (line 541) | CKR_RANDOM_SEED_NOT_SUPPORTED = 0x00000120 constant CKR_RANDOM_NO_RNG (line 542) | CKR_RANDOM_NO_RNG = 0x00000121 constant CKR_DOMAIN_PARAMS_INVALID (line 543) | CKR_DOMAIN_PARAMS_INVALID = 0x00000130 constant CKR_BUFFER_TOO_SMALL (line 544) | CKR_BUFFER_TOO_SMALL = 0x00000150 constant CKR_SAVED_STATE_INVALID (line 545) | CKR_SAVED_STATE_INVALID = 0x00000160 constant CKR_INFORMATION_SENSITIVE (line 546) | CKR_INFORMATION_SENSITIVE = 0x00000170 constant CKR_STATE_UNSAVEABLE (line 547) | CKR_STATE_UNSAVEABLE = 0x00000180 constant CKR_CRYPTOKI_NOT_INITIALIZED (line 548) | CKR_CRYPTOKI_NOT_INITIALIZED = 0x00000190 constant CKR_CRYPTOKI_ALREADY_INITIALIZED (line 549) | CKR_CRYPTOKI_ALREADY_INITIALIZED = 0x00000191 constant CKR_MUTEX_BAD (line 550) | CKR_MUTEX_BAD = 0x000001A0 constant CKR_MUTEX_NOT_LOCKED (line 551) | CKR_MUTEX_NOT_LOCKED = 0x000001A1 constant CKR_NEW_PIN_MODE (line 552) | CKR_NEW_PIN_MODE = 0x000001B0 constant CKR_NEXT_OTP (line 553) | CKR_NEXT_OTP = 0x000001B1 constant CKR_FUNCTION_REJECTED (line 554) | CKR_FUNCTION_REJECTED = 0x00000200 constant CKR_VENDOR_DEFINED (line 555) | CKR_VENDOR_DEFINED = 0x80000000 constant CKF_LIBRARY_CANT_CREATE_OS_THREADS (line 556) | CKF_LIBRARY_CANT_CREATE_OS_THREADS = 0x00000001 constant CKF_OS_LOCKING_OK (line 557) | CKF_OS_LOCKING_OK = 0x00000002 constant CKF_DONT_BLOCK (line 558) | CKF_DONT_BLOCK = 1 constant CKF_NEXT_OTP (line 559) | CKF_NEXT_OTP = 0x00000001 constant CKF_EXCLUDE_TIME (line 560) | CKF_EXCLUDE_TIME = 0x00000002 constant CKF_EXCLUDE_COUNTER (line 561) | CKF_EXCLUDE_COUNTER = 0x00000004 constant CKF_EXCLUDE_CHALLENGE (line 562) | CKF_EXCLUDE_CHALLENGE = 0x00000008 constant CKF_EXCLUDE_PIN (line 563) | CKF_EXCLUDE_PIN = 0x00000010 constant CKF_USER_FRIENDLY_OTP (line 564) | CKF_USER_FRIENDLY_OTP = 0x00000020 FILE: vendor/github.com/docker/docker/vendor/github.com/miekg/pkcs11/pkcs11.go type Ctx (line 745) | type Ctx struct method Destroy (line 762) | func (c *Ctx) Destroy() { method Initialize (line 771) | func (c *Ctx) Initialize() error { method Finalize (line 778) | func (c *Ctx) Finalize() error { method GetInfo (line 787) | func (c *Ctx) GetInfo() (Info, error) { method GetSlotList (line 801) | func (c *Ctx) GetSlotList(tokenPresent bool) ([]uint, error) { method GetSlotInfo (line 815) | func (c *Ctx) GetSlotInfo(slotID uint) (SlotInfo, error) { method GetTokenInfo (line 830) | func (c *Ctx) GetTokenInfo(slotID uint) (TokenInfo, error) { method GetMechanismList (line 857) | func (c *Ctx) GetMechanismList(slotID uint) ([]*Mechanism, error) { method GetMechanismInfo (line 877) | func (c *Ctx) GetMechanismInfo(slotID uint, m []*Mechanism) (Mechanism... method InitToken (line 892) | func (c *Ctx) InitToken(slotID uint, pin string, label string) error { method InitPIN (line 907) | func (c *Ctx) InitPIN(sh SessionHandle, pin string) error { method SetPIN (line 915) | func (c *Ctx) SetPIN(sh SessionHandle, oldpin string, newpin string) e... method OpenSession (line 925) | func (c *Ctx) OpenSession(slotID uint, flags uint) (SessionHandle, err... method CloseSession (line 932) | func (c *Ctx) CloseSession(sh SessionHandle) error { method CloseAllSessions (line 941) | func (c *Ctx) CloseAllSessions(slotID uint) error { method GetSessionInfo (line 950) | func (c *Ctx) GetSessionInfo(sh SessionHandle) (SessionInfo, error) { method GetOperationState (line 962) | func (c *Ctx) GetOperationState(sh SessionHandle) ([]byte, error) { method SetOperationState (line 977) | func (c *Ctx) SetOperationState(sh SessionHandle, state []byte, encryp... method Login (line 984) | func (c *Ctx) Login(sh SessionHandle, userType uint, pin string) error { method Logout (line 992) | func (c *Ctx) Logout(sh SessionHandle) error { method CreateObject (line 1001) | func (c *Ctx) CreateObject(sh SessionHandle, temp []*Attribute) (Objec... method CopyObject (line 1014) | func (c *Ctx) CopyObject(sh SessionHandle, o ObjectHandle, temp []*Att... method DestroyObject (line 1028) | func (c *Ctx) DestroyObject(sh SessionHandle, oh ObjectHandle) error { method GetObjectSize (line 1034) | func (c *Ctx) GetObjectSize(sh SessionHandle, oh ObjectHandle) (uint, ... method GetAttributeValue (line 1041) | func (c *Ctx) GetAttributeValue(sh SessionHandle, o ObjectHandle, a []... method SetAttributeValue (line 1066) | func (c *Ctx) SetAttributeValue(sh SessionHandle, o ObjectHandle, a []... method FindObjectsInit (line 1075) | func (c *Ctx) FindObjectsInit(sh SessionHandle, temp []*Attribute) err... method FindObjects (line 1086) | func (c *Ctx) FindObjects(sh SessionHandle, max int) ([]ObjectHandle, ... method FindObjectsFinal (line 1106) | func (c *Ctx) FindObjectsFinal(sh SessionHandle) error { method EncryptInit (line 1112) | func (c *Ctx) EncryptInit(sh SessionHandle, m []*Mechanism, o ObjectHa... method Encrypt (line 1120) | func (c *Ctx) Encrypt(sh SessionHandle, message []byte) ([]byte, error) { method EncryptUpdate (line 1135) | func (c *Ctx) EncryptUpdate(sh SessionHandle, plain []byte) ([]byte, e... method EncryptFinal (line 1150) | func (c *Ctx) EncryptFinal(sh SessionHandle) ([]byte, error) { method DecryptInit (line 1165) | func (c *Ctx) DecryptInit(sh SessionHandle, m []*Mechanism, o ObjectHa... method Decrypt (line 1173) | func (c *Ctx) Decrypt(sh SessionHandle, cypher []byte) ([]byte, error) { method DecryptUpdate (line 1188) | func (c *Ctx) DecryptUpdate(sh SessionHandle, cipher []byte) ([]byte, ... method DecryptFinal (line 1203) | func (c *Ctx) DecryptFinal(sh SessionHandle) ([]byte, error) { method DigestInit (line 1218) | func (c *Ctx) DigestInit(sh SessionHandle, m []*Mechanism) error { method Digest (line 1226) | func (c *Ctx) Digest(sh SessionHandle, message []byte) ([]byte, error) { method DigestUpdate (line 1241) | func (c *Ctx) DigestUpdate(sh SessionHandle, message []byte) error { method DigestKey (line 1252) | func (c *Ctx) DigestKey(sh SessionHandle, key ObjectHandle) error { method DigestFinal (line 1261) | func (c *Ctx) DigestFinal(sh SessionHandle) ([]byte, error) { method SignInit (line 1279) | func (c *Ctx) SignInit(sh SessionHandle, m []*Mechanism, o ObjectHandl... method Sign (line 1288) | func (c *Ctx) Sign(sh SessionHandle, message []byte) ([]byte, error) { method SignUpdate (line 1305) | func (c *Ctx) SignUpdate(sh SessionHandle, message []byte) error { method SignFinal (line 1311) | func (c *Ctx) SignFinal(sh SessionHandle) ([]byte, error) { method SignRecoverInit (line 1327) | func (c *Ctx) SignRecoverInit(sh SessionHandle, m []*Mechanism, key Ob... method SignRecover (line 1336) | func (c *Ctx) SignRecover(sh SessionHandle, data []byte) ([]byte, erro... method VerifyInit (line 1353) | func (c *Ctx) VerifyInit(sh SessionHandle, m []*Mechanism, key ObjectH... method Verify (line 1363) | func (c *Ctx) Verify(sh SessionHandle, data []byte, signature []byte) ... method VerifyUpdate (line 1371) | func (c *Ctx) VerifyUpdate(sh SessionHandle, part []byte) error { method VerifyFinal (line 1378) | func (c *Ctx) VerifyFinal(sh SessionHandle, signature []byte) error { method VerifyRecoverInit (line 1385) | func (c *Ctx) VerifyRecoverInit(sh SessionHandle, m []*Mechanism, key ... method VerifyRecover (line 1394) | func (c *Ctx) VerifyRecover(sh SessionHandle, signature []byte) ([]byt... method DigestEncryptUpdate (line 1410) | func (c *Ctx) DigestEncryptUpdate(sh SessionHandle, part []byte) ([]by... method DecryptDigestUpdate (line 1425) | func (c *Ctx) DecryptDigestUpdate(sh SessionHandle, cipher []byte) ([]... method SignEncryptUpdate (line 1440) | func (c *Ctx) SignEncryptUpdate(sh SessionHandle, part []byte) ([]byte... method DecryptVerifyUpdate (line 1455) | func (c *Ctx) DecryptVerifyUpdate(sh SessionHandle, cipher []byte) ([]... method GenerateKey (line 1470) | func (c *Ctx) GenerateKey(sh SessionHandle, m []*Mechanism, temp []*At... method GenerateKeyPair (line 1485) | func (c *Ctx) GenerateKeyPair(sh SessionHandle, m []*Mechanism, public... method WrapKey (line 1505) | func (c *Ctx) WrapKey(sh SessionHandle, m []*Mechanism, wrappingkey, k... method UnwrapKey (line 1522) | func (c *Ctx) UnwrapKey(sh SessionHandle, m []*Mechanism, unwrappingke... method DeriveKey (line 1533) | func (c *Ctx) DeriveKey(sh SessionHandle, m []*Mechanism, basekey Obje... method SeedRandom (line 1545) | func (c *Ctx) SeedRandom(sh SessionHandle, seed []byte) error { method GenerateRandom (line 1551) | func (c *Ctx) GenerateRandom(sh SessionHandle, length int) ([]byte, er... method WaitForSlotEvent (line 1564) | func (c *Ctx) WaitForSlotEvent(flags uint) chan SlotEvent { method waitForSlotEventHelper (line 1570) | func (c *Ctx) waitForSlotEventHelper(f uint, sl chan SlotEvent) { function New (line 750) | func New(module string) *Ctx { FILE: vendor/github.com/docker/docker/vendor/github.com/miekg/pkcs11/pkcs11.h type CK_FUNCTION_LIST (line 279) | struct CK_FUNCTION_LIST { FILE: vendor/github.com/docker/docker/vendor/github.com/miekg/pkcs11/pkcs11t.h type CK_BYTE (line 44) | typedef unsigned char CK_BYTE; type CK_BYTE (line 47) | typedef CK_BYTE CK_CHAR; type CK_BYTE (line 50) | typedef CK_BYTE CK_UTF8CHAR; type CK_BYTE (line 53) | typedef CK_BYTE CK_BBOOL; type CK_ULONG (line 56) | typedef unsigned long int CK_ULONG; type CK_LONG (line 60) | typedef long int CK_LONG; type CK_ULONG (line 63) | typedef CK_ULONG CK_FLAGS; type CK_BYTE (line 71) | typedef CK_BYTE CK_PTR CK_BYTE_PTR; type CK_CHAR (line 72) | typedef CK_CHAR CK_PTR CK_CHAR_PTR; type CK_UTF8CHAR (line 73) | typedef CK_UTF8CHAR CK_PTR CK_UTF8CHAR_PTR; type CK_ULONG (line 74) | typedef CK_ULONG CK_PTR CK_ULONG_PTR; type CK_VOID_PTR (line 75) | typedef void CK_PTR CK_VOID_PTR; type CK_VOID_PTR (line 78) | typedef CK_VOID_PTR CK_PTR CK_VOID_PTR_PTR; type CK_VERSION (line 86) | typedef struct CK_VERSION { type CK_VERSION (line 91) | typedef CK_VERSION CK_PTR CK_VERSION_PTR; type CK_INFO (line 94) | typedef struct CK_INFO { type CK_INFO (line 106) | typedef CK_INFO CK_PTR CK_INFO_PTR; type CK_ULONG (line 113) | typedef CK_ULONG CK_NOTIFICATION; type CK_ULONG (line 120) | typedef CK_ULONG CK_SLOT_ID; type CK_SLOT_ID (line 122) | typedef CK_SLOT_ID CK_PTR CK_SLOT_ID_PTR; type CK_SLOT_INFO (line 126) | typedef struct CK_SLOT_INFO { type CK_SLOT_INFO (line 145) | typedef CK_SLOT_INFO CK_PTR CK_SLOT_INFO_PTR; type CK_TOKEN_INFO (line 149) | typedef struct CK_TOKEN_INFO { type CK_TOKEN_INFO (line 268) | typedef CK_TOKEN_INFO CK_PTR CK_TOKEN_INFO_PTR; type CK_ULONG (line 273) | typedef CK_ULONG CK_SESSION_HANDLE; type CK_SESSION_HANDLE (line 275) | typedef CK_SESSION_HANDLE CK_PTR CK_SESSION_HANDLE_PTR; type CK_ULONG (line 281) | typedef CK_ULONG CK_USER_TYPE; type CK_ULONG (line 292) | typedef CK_ULONG CK_STATE; type CK_SESSION_INFO (line 301) | typedef struct CK_SESSION_INFO { type CK_SESSION_INFO (line 317) | typedef CK_SESSION_INFO CK_PTR CK_SESSION_INFO_PTR; type CK_ULONG (line 322) | typedef CK_ULONG CK_OBJECT_HANDLE; type CK_OBJECT_HANDLE (line 324) | typedef CK_OBJECT_HANDLE CK_PTR CK_OBJECT_HANDLE_PTR; type CK_ULONG (line 332) | typedef CK_ULONG CK_OBJECT_CLASS; type CK_OBJECT_CLASS (line 352) | typedef CK_OBJECT_CLASS CK_PTR CK_OBJECT_CLASS_PTR; type CK_ULONG (line 357) | typedef CK_ULONG CK_HW_FEATURE_TYPE; type CK_ULONG (line 368) | typedef CK_ULONG CK_KEY_TYPE; type CK_ULONG (line 425) | typedef CK_ULONG CK_CERTIFICATE_TYPE; type CK_ULONG (line 440) | typedef CK_ULONG CK_ATTRIBUTE_TYPE; type CK_ATTRIBUTE (line 606) | typedef struct CK_ATTRIBUTE { type CK_ATTRIBUTE (line 614) | typedef CK_ATTRIBUTE CK_PTR CK_ATTRIBUTE_PTR; type CK_DATE (line 618) | typedef struct CK_DATE{ type CK_ULONG (line 629) | typedef CK_ULONG CK_MECHANISM_TYPE; type CK_MECHANISM_TYPE (line 998) | typedef CK_MECHANISM_TYPE CK_PTR CK_MECHANISM_TYPE_PTR; type CK_MECHANISM (line 1003) | typedef struct CK_MECHANISM { type CK_MECHANISM (line 1012) | typedef CK_MECHANISM CK_PTR CK_MECHANISM_PTR; type CK_MECHANISM_INFO (line 1017) | typedef struct CK_MECHANISM_INFO { type CK_MECHANISM_INFO (line 1058) | typedef CK_MECHANISM_INFO CK_PTR CK_MECHANISM_INFO_PTR; type CK_ULONG (line 1064) | typedef CK_ULONG CK_RV; type CK_FUNCTION_LIST (line 1215) | typedef struct CK_FUNCTION_LIST CK_FUNCTION_LIST; type CK_FUNCTION_LIST (line 1217) | typedef CK_FUNCTION_LIST CK_PTR CK_FUNCTION_LIST_PTR; type CK_FUNCTION_LIST_PTR (line 1219) | typedef CK_FUNCTION_LIST_PTR CK_PTR CK_FUNCTION_LIST_PTR_PTR; type CK_C_INITIALIZE_ARGS (line 1251) | typedef struct CK_C_INITIALIZE_ARGS { type CK_C_INITIALIZE_ARGS (line 1266) | typedef CK_C_INITIALIZE_ARGS CK_PTR CK_C_INITIALIZE_ARGS_PTR; type CK_ULONG (line 1279) | typedef CK_ULONG CK_RSA_PKCS_MGF_TYPE; type CK_RSA_PKCS_MGF_TYPE (line 1281) | typedef CK_RSA_PKCS_MGF_TYPE CK_PTR CK_RSA_PKCS_MGF_TYPE_PTR; type CK_ULONG (line 1297) | typedef CK_ULONG CK_RSA_PKCS_OAEP_SOURCE_TYPE; type CK_RSA_PKCS_OAEP_SOURCE_TYPE (line 1299) | typedef CK_RSA_PKCS_OAEP_SOURCE_TYPE CK_PTR CK_RSA_PKCS_OAEP_SOURCE_TYPE... type CK_RSA_PKCS_OAEP_PARAMS (line 1307) | typedef struct CK_RSA_PKCS_OAEP_PARAMS { type CK_RSA_PKCS_OAEP_PARAMS (line 1315) | typedef CK_RSA_PKCS_OAEP_PARAMS CK_PTR CK_RSA_PKCS_OAEP_PARAMS_PTR; type CK_RSA_PKCS_PSS_PARAMS (line 1320) | typedef struct CK_RSA_PKCS_PSS_PARAMS { type CK_RSA_PKCS_PSS_PARAMS (line 1326) | typedef CK_RSA_PKCS_PSS_PARAMS CK_PTR CK_RSA_PKCS_PSS_PARAMS_PTR; type CK_ULONG (line 1329) | typedef CK_ULONG CK_EC_KDF_TYPE; type CK_ECDH1_DERIVE_PARAMS (line 1340) | typedef struct CK_ECDH1_DERIVE_PARAMS { type CK_ECDH1_DERIVE_PARAMS (line 1348) | typedef CK_ECDH1_DERIVE_PARAMS CK_PTR CK_ECDH1_DERIVE_PARAMS_PTR; type CK_ECDH2_DERIVE_PARAMS (line 1354) | typedef struct CK_ECDH2_DERIVE_PARAMS { type CK_ECDH2_DERIVE_PARAMS (line 1366) | typedef CK_ECDH2_DERIVE_PARAMS CK_PTR CK_ECDH2_DERIVE_PARAMS_PTR; type CK_ECMQV_DERIVE_PARAMS (line 1368) | typedef struct CK_ECMQV_DERIVE_PARAMS { type CK_ECMQV_DERIVE_PARAMS (line 1381) | typedef CK_ECMQV_DERIVE_PARAMS CK_PTR CK_ECMQV_DERIVE_PARAMS_PTR; type CK_ULONG (line 1385) | typedef CK_ULONG CK_X9_42_DH_KDF_TYPE; type CK_X9_42_DH_KDF_TYPE (line 1386) | typedef CK_X9_42_DH_KDF_TYPE CK_PTR CK_X9_42_DH_KDF_TYPE_PTR; type CK_X9_42_DH1_DERIVE_PARAMS (line 1397) | typedef struct CK_X9_42_DH1_DERIVE_PARAMS { type CK_X9_42_DH1_DERIVE_PARAMS_PTR (line 1405) | typedef struct CK_X9_42_DH1_DERIVE_PARAMS CK_PTR CK_X9_42_DH1_DERIVE_PAR... type CK_X9_42_DH2_DERIVE_PARAMS (line 1411) | typedef struct CK_X9_42_DH2_DERIVE_PARAMS { type CK_X9_42_DH2_DERIVE_PARAMS (line 1423) | typedef CK_X9_42_DH2_DERIVE_PARAMS CK_PTR CK_X9_42_DH2_DERIVE_PARAMS_PTR; type CK_X9_42_MQV_DERIVE_PARAMS (line 1425) | typedef struct CK_X9_42_MQV_DERIVE_PARAMS { type CK_X9_42_MQV_DERIVE_PARAMS (line 1438) | typedef CK_X9_42_MQV_DERIVE_PARAMS CK_PTR CK_X9_42_MQV_DERIVE_PARAMS_PTR; type CK_KEA_DERIVE_PARAMS (line 1443) | typedef struct CK_KEA_DERIVE_PARAMS { type CK_KEA_DERIVE_PARAMS (line 1452) | typedef CK_KEA_DERIVE_PARAMS CK_PTR CK_KEA_DERIVE_PARAMS_PTR; type CK_ULONG (line 1458) | typedef CK_ULONG CK_RC2_PARAMS; type CK_RC2_PARAMS (line 1460) | typedef CK_RC2_PARAMS CK_PTR CK_RC2_PARAMS_PTR; type CK_RC2_CBC_PARAMS (line 1465) | typedef struct CK_RC2_CBC_PARAMS { type CK_RC2_CBC_PARAMS (line 1473) | typedef CK_RC2_CBC_PARAMS CK_PTR CK_RC2_CBC_PARAMS_PTR; type CK_RC2_MAC_GENERAL_PARAMS (line 1479) | typedef struct CK_RC2_MAC_GENERAL_PARAMS { type CK_RC2_MAC_GENERAL_PARAMS (line 1484) | typedef CK_RC2_MAC_GENERAL_PARAMS CK_PTR \ type CK_RC5_PARAMS (line 1491) | typedef struct CK_RC5_PARAMS { type CK_RC5_PARAMS (line 1496) | typedef CK_RC5_PARAMS CK_PTR CK_RC5_PARAMS_PTR; type CK_RC5_CBC_PARAMS (line 1502) | typedef struct CK_RC5_CBC_PARAMS { type CK_RC5_CBC_PARAMS (line 1509) | typedef CK_RC5_CBC_PARAMS CK_PTR CK_RC5_CBC_PARAMS_PTR; type CK_RC5_MAC_GENERAL_PARAMS (line 1515) | typedef struct CK_RC5_MAC_GENERAL_PARAMS { type CK_RC5_MAC_GENERAL_PARAMS (line 1521) | typedef CK_RC5_MAC_GENERAL_PARAMS CK_PTR \ type CK_ULONG (line 1529) | typedef CK_ULONG CK_MAC_GENERAL_PARAMS; type CK_MAC_GENERAL_PARAMS (line 1531) | typedef CK_MAC_GENERAL_PARAMS CK_PTR CK_MAC_GENERAL_PARAMS_PTR; type CK_DES_CBC_ENCRYPT_DATA_PARAMS (line 1534) | typedef struct CK_DES_CBC_ENCRYPT_DATA_PARAMS { type CK_DES_CBC_ENCRYPT_DATA_PARAMS (line 1540) | typedef CK_DES_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_DES_CBC_ENCRYPT_DATA_PA... type CK_AES_CBC_ENCRYPT_DATA_PARAMS (line 1542) | typedef struct CK_AES_CBC_ENCRYPT_DATA_PARAMS { type CK_AES_CBC_ENCRYPT_DATA_PARAMS (line 1548) | typedef CK_AES_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_AES_CBC_ENCRYPT_DATA_PA... type CK_SKIPJACK_PRIVATE_WRAP_PARAMS (line 1553) | typedef struct CK_SKIPJACK_PRIVATE_WRAP_PARAMS { type CK_SKIPJACK_PRIVATE_WRAP_PARAMS (line 1567) | typedef CK_SKIPJACK_PRIVATE_WRAP_PARAMS CK_PTR \ type CK_SKIPJACK_RELAYX_PARAMS (line 1574) | typedef struct CK_SKIPJACK_RELAYX_PARAMS { type CK_SKIPJACK_RELAYX_PARAMS (line 1591) | typedef CK_SKIPJACK_RELAYX_PARAMS CK_PTR \ type CK_PBE_PARAMS (line 1595) | typedef struct CK_PBE_PARAMS { type CK_PBE_PARAMS (line 1604) | typedef CK_PBE_PARAMS CK_PTR CK_PBE_PARAMS_PTR; type CK_KEY_WRAP_SET_OAEP_PARAMS (line 1610) | typedef struct CK_KEY_WRAP_SET_OAEP_PARAMS { type CK_KEY_WRAP_SET_OAEP_PARAMS (line 1616) | typedef CK_KEY_WRAP_SET_OAEP_PARAMS CK_PTR \ type CK_SSL3_RANDOM_DATA (line 1620) | typedef struct CK_SSL3_RANDOM_DATA { type CK_SSL3_MASTER_KEY_DERIVE_PARAMS (line 1628) | typedef struct CK_SSL3_MASTER_KEY_DERIVE_PARAMS { type CK_SSL3_MASTER_KEY_DERIVE_PARAMS_PTR (line 1633) | typedef struct CK_SSL3_MASTER_KEY_DERIVE_PARAMS CK_PTR \ type CK_SSL3_KEY_MAT_OUT (line 1637) | typedef struct CK_SSL3_KEY_MAT_OUT { type CK_SSL3_KEY_MAT_OUT (line 1646) | typedef CK_SSL3_KEY_MAT_OUT CK_PTR CK_SSL3_KEY_MAT_OUT_PTR; type CK_SSL3_KEY_MAT_PARAMS (line 1649) | typedef struct CK_SSL3_KEY_MAT_PARAMS { type CK_SSL3_KEY_MAT_PARAMS (line 1658) | typedef CK_SSL3_KEY_MAT_PARAMS CK_PTR CK_SSL3_KEY_MAT_PARAMS_PTR; type CK_TLS_PRF_PARAMS (line 1661) | typedef struct CK_TLS_PRF_PARAMS { type CK_TLS_PRF_PARAMS (line 1670) | typedef CK_TLS_PRF_PARAMS CK_PTR CK_TLS_PRF_PARAMS_PTR; type CK_WTLS_RANDOM_DATA (line 1673) | typedef struct CK_WTLS_RANDOM_DATA { type CK_WTLS_RANDOM_DATA (line 1680) | typedef CK_WTLS_RANDOM_DATA CK_PTR CK_WTLS_RANDOM_DATA_PTR; type CK_WTLS_MASTER_KEY_DERIVE_PARAMS (line 1682) | typedef struct CK_WTLS_MASTER_KEY_DERIVE_PARAMS { type CK_WTLS_MASTER_KEY_DERIVE_PARAMS (line 1688) | typedef CK_WTLS_MASTER_KEY_DERIVE_PARAMS CK_PTR \ type CK_WTLS_PRF_PARAMS (line 1691) | typedef struct CK_WTLS_PRF_PARAMS { type CK_WTLS_PRF_PARAMS (line 1701) | typedef CK_WTLS_PRF_PARAMS CK_PTR CK_WTLS_PRF_PARAMS_PTR; type CK_WTLS_KEY_MAT_OUT (line 1703) | typedef struct CK_WTLS_KEY_MAT_OUT { type CK_WTLS_KEY_MAT_OUT (line 1709) | typedef CK_WTLS_KEY_MAT_OUT CK_PTR CK_WTLS_KEY_MAT_OUT_PTR; type CK_WTLS_KEY_MAT_PARAMS (line 1711) | typedef struct CK_WTLS_KEY_MAT_PARAMS { type CK_WTLS_KEY_MAT_PARAMS (line 1722) | typedef CK_WTLS_KEY_MAT_PARAMS CK_PTR CK_WTLS_KEY_MAT_PARAMS_PTR; type CK_CMS_SIG_PARAMS (line 1725) | typedef struct CK_CMS_SIG_PARAMS { type CK_CMS_SIG_PARAMS (line 1736) | typedef CK_CMS_SIG_PARAMS CK_PTR CK_CMS_SIG_PARAMS_PTR; type CK_KEY_DERIVATION_STRING_DATA (line 1738) | typedef struct CK_KEY_DERIVATION_STRING_DATA { type CK_KEY_DERIVATION_STRING_DATA (line 1743) | typedef CK_KEY_DERIVATION_STRING_DATA CK_PTR \ type CK_ULONG (line 1752) | typedef CK_ULONG CK_EXTRACT_PARAMS; type CK_EXTRACT_PARAMS (line 1754) | typedef CK_EXTRACT_PARAMS CK_PTR CK_EXTRACT_PARAMS_PTR; type CK_ULONG (line 1760) | typedef CK_ULONG CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE; type CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE (line 1762) | typedef CK_PKCS5_PBKD2_PSEUDO_RANDOM_FUNCTION_TYPE CK_PTR CK_PKCS5_PBKD2... type CK_ULONG (line 1772) | typedef CK_ULONG CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE; type CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE (line 1774) | typedef CK_PKCS5_PBKDF2_SALT_SOURCE_TYPE CK_PTR CK_PKCS5_PBKDF2_SALT_SOU... type CK_PKCS5_PBKD2_PARAMS (line 1782) | typedef struct CK_PKCS5_PBKD2_PARAMS { type CK_PKCS5_PBKD2_PARAMS (line 1794) | typedef CK_PKCS5_PBKD2_PARAMS CK_PTR CK_PKCS5_PBKD2_PARAMS_PTR; type CK_ULONG (line 1798) | typedef CK_ULONG CK_OTP_PARAM_TYPE; type CK_OTP_PARAM_TYPE (line 1799) | typedef CK_OTP_PARAM_TYPE CK_PARAM_TYPE; type CK_OTP_PARAM (line 1801) | typedef struct CK_OTP_PARAM { type CK_OTP_PARAM (line 1807) | typedef CK_OTP_PARAM CK_PTR CK_OTP_PARAM_PTR; type CK_OTP_PARAMS (line 1809) | typedef struct CK_OTP_PARAMS { type CK_OTP_PARAMS (line 1814) | typedef CK_OTP_PARAMS CK_PTR CK_OTP_PARAMS_PTR; type CK_OTP_SIGNATURE_INFO (line 1816) | typedef struct CK_OTP_SIGNATURE_INFO { type CK_OTP_SIGNATURE_INFO (line 1821) | typedef CK_OTP_SIGNATURE_INFO CK_PTR CK_OTP_SIGNATURE_INFO_PTR; type CK_KIP_PARAMS (line 1842) | typedef struct CK_KIP_PARAMS { type CK_KIP_PARAMS (line 1849) | typedef CK_KIP_PARAMS CK_PTR CK_KIP_PARAMS_PTR; type CK_AES_CTR_PARAMS (line 1852) | typedef struct CK_AES_CTR_PARAMS { type CK_AES_CTR_PARAMS (line 1857) | typedef CK_AES_CTR_PARAMS CK_PTR CK_AES_CTR_PARAMS_PTR; type CK_CAMELLIA_CTR_PARAMS (line 1860) | typedef struct CK_CAMELLIA_CTR_PARAMS { type CK_CAMELLIA_CTR_PARAMS (line 1865) | typedef CK_CAMELLIA_CTR_PARAMS CK_PTR CK_CAMELLIA_CTR_PARAMS_PTR; type CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS (line 1868) | typedef struct CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS { type CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS (line 1874) | typedef CK_CAMELLIA_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_CAMELLIA_CBC_ENCRY... type CK_ARIA_CBC_ENCRYPT_DATA_PARAMS (line 1877) | typedef struct CK_ARIA_CBC_ENCRYPT_DATA_PARAMS { type CK_ARIA_CBC_ENCRYPT_DATA_PARAMS (line 1883) | typedef CK_ARIA_CBC_ENCRYPT_DATA_PARAMS CK_PTR CK_ARIA_CBC_ENCRYPT_DATA_... FILE: vendor/github.com/docker/docker/vendor/github.com/miekg/pkcs11/types.go type arena (line 34) | type arena method Allocate (line 36) | func (a *arena) Allocate(obj []byte) (C.CK_VOID_PTR, C.CK_ULONG) { method Free (line 43) | func (a arena) Free() { function toList (line 50) | func toList(clist C.CK_ULONG_PTR, size C.CK_ULONG) []uint { function cBBool (line 60) | func cBBool(x bool) C.CK_BBOOL { function uintToBytes (line 67) | func uintToBytes(x uint64) []byte { type Error (line 73) | type Error method Error (line 75) | func (e Error) Error() string { function toError (line 79) | func toError(e C.CK_RV) error { type SessionHandle (line 87) | type SessionHandle type ObjectHandle (line 90) | type ObjectHandle type Version (line 93) | type Version struct function toVersion (line 98) | func toVersion(version C.CK_VERSION) Version { type SlotEvent (line 104) | type SlotEvent struct type Info (line 109) | type Info struct type SlotInfo (line 118) | type SlotInfo struct type TokenInfo (line 127) | type TokenInfo struct type SessionInfo (line 149) | type SessionInfo struct type Attribute (line 157) | type Attribute struct function NewAttribute (line 166) | func NewAttribute(typ uint, x interface{}) *Attribute { function cAttributeList (line 199) | func cAttributeList(a []*Attribute) (arena, C.CK_ATTRIBUTE_PTR, C.CK_ULO... function cDate (line 215) | func cDate(t time.Time) []byte { type Mechanism (line 228) | type Mechanism struct function NewMechanism (line 233) | func NewMechanism(mech uint, x interface{}) *Mechanism { function cMechanismList (line 246) | func cMechanismList(m []*Mechanism) (arena, C.CK_MECHANISM_PTR, C.CK_ULO... type MechanismInfo (line 263) | type MechanismInfo struct FILE: vendor/github.com/docker/docker/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsenter_gccgo.go function init (line 18) | func init() { FILE: vendor/github.com/docker/docker/vendor/github.com/opencontainers/runc/libcontainer/nsenter/nsexec.c type sync_t (line 31) | enum sync_t { type clone_t (line 50) | struct clone_t { type nlconfig_t (line 63) | struct nlconfig_t { function setns (line 103) | int setns(int fd, int nstype) function write_file (line 127) | static int write_file(char *data, size_t data_len, char *pathfmt, ...) type policy_t (line 156) | enum policy_t { function update_setgroups (line 163) | static void update_setgroups(int pid, enum policy_t setgroup) function update_uidmap (line 189) | static void update_uidmap(int pid, char *map, int map_len) function update_gidmap (line 198) | static void update_gidmap(int pid, char *map, int map_len) function child_func (line 209) | static int child_func(void *arg) function clone_parent (line 216) | static int clone_parent(jmp_buf *env, int jmpval) function initpipe (line 231) | static int initpipe(void) function nsflag (line 248) | static int nsflag(char *name) function readint32 (line 269) | static uint32_t readint32(char *buf) function readint8 (line 274) | static uint8_t readint8(char *buf) function nl_parse (line 279) | static void nl_parse(int fd, struct nlconfig_t *config) function nl_free (line 353) | void nl_free(struct nlconfig_t *config) function join_namespaces (line 358) | void join_namespaces(char *nslist) function nsexec (line 423) | void nsexec(void) FILE: vendor/github.com/docker/go-connections/nat/nat.go constant portSpecTemplate (line 13) | portSpecTemplate = "ip:hostPort:containerPort" type PortBinding (line 17) | type PortBinding struct type PortMap (line 25) | type PortMap type PortSet (line 28) | type PortSet type Port (line 31) | type Port method Proto (line 74) | func (p Port) Proto() string { method Port (line 80) | func (p Port) Port() string { method Int (line 86) | func (p Port) Int() int { method Range (line 95) | func (p Port) Range() (int, int, error) { function NewPort (line 34) | func NewPort(proto, port string) (Port, error) { function ParsePort (line 50) | func ParsePort(rawPort string) (int, error) { function ParsePortRangeToInt (line 62) | func ParsePortRangeToInt(rawPort string) (int, int, error) { function SplitProtoPort (line 100) | func SplitProtoPort(rawPort string) (string, string) { function validateProto (line 115) | func validateProto(proto string) bool { function ParsePortSpecs (line 126) | func ParsePortSpecs(ports []string) (map[Port]struct{}, map[Port][]PortB... type PortMapping (line 153) | type PortMapping struct function splitParts (line 158) | func splitParts(rawport string) (string, string, string) { function ParsePortSpec (line 176) | func ParsePortSpec(rawPort string) ([]PortMapping, error) { FILE: vendor/github.com/docker/go-connections/nat/parse.go function PartParser (line 12) | func PartParser(template, data string) (map[string]string, error) { function ParsePortRange (line 34) | func ParsePortRange(ports string) (uint64, uint64, error) { FILE: vendor/github.com/docker/go-connections/nat/sort.go type portSorter (line 8) | type portSorter struct method Len (line 13) | func (s *portSorter) Len() int { method Swap (line 17) | func (s *portSorter) Swap(i, j int) { method Less (line 21) | func (s *portSorter) Less(i, j int) bool { function Sort (line 31) | func Sort(ports []Port, predicate func(i, j Port) bool) { type portMapEntry (line 36) | type portMapEntry struct type portMapSorter (line 41) | type portMapSorter method Len (line 43) | func (s portMapSorter) Len() int { return len(s) } method Swap (line 44) | func (s portMapSorter) Swap(i, j int) { s[i], s[j] = s[j], s[i] } method Less (line 50) | func (s portMapSorter) Less(i, j int) bool { function SortPortMap (line 58) | func SortPortMap(ports []Port, bindings PortMap) { function toInt (line 90) | func toInt(s string) uint64 { FILE: vendor/github.com/docker/go-connections/sockets/inmem_socket.go type InmemSocket (line 12) | type InmemSocket struct method Addr (line 35) | func (s *InmemSocket) Addr() net.Addr { method Accept (line 40) | func (s *InmemSocket) Accept() (net.Conn, error) { method Close (line 50) | func (s *InmemSocket) Close() error { method Dial (line 62) | func (s *InmemSocket) Dial(network, addr string) (net.Conn, error) { type dummyAddr (line 21) | type dummyAddr method Network (line 74) | func (a dummyAddr) Network() string { method String (line 79) | func (a dummyAddr) String() string { function NewInmemSocket (line 26) | func NewInmemSocket(addr string, bufSize int) *InmemSocket { FILE: vendor/github.com/docker/go-connections/sockets/proxy.go function GetProxyEnv (line 15) | func GetProxyEnv(key string) string { function DialerFromEnvironment (line 26) | func DialerFromEnvironment(direct *net.Dialer) (proxy.Dialer, error) { FILE: vendor/github.com/docker/go-connections/sockets/sockets.go constant defaultTimeout (line 12) | defaultTimeout = 32 * time.Second function ConfigureTransport (line 21) | func ConfigureTransport(tr *http.Transport, proto, addr string) error { FILE: vendor/github.com/docker/go-connections/sockets/sockets_unix.go constant maxUnixSocketPathSize (line 13) | maxUnixSocketPathSize = len(syscall.RawSockaddrUnix{}.Path) function configureUnixTransport (line 15) | func configureUnixTransport(tr *http.Transport, proto, addr string) error { function configureNpipeTransport (line 27) | func configureNpipeTransport(tr *http.Transport, proto, addr string) err... function DialPipe (line 33) | func DialPipe(_ string, _ time.Duration) (net.Conn, error) { FILE: vendor/github.com/docker/go-connections/sockets/sockets_windows.go function configureUnixTransport (line 11) | func configureUnixTransport(tr *http.Transport, proto, addr string) error { function configureNpipeTransport (line 15) | func configureNpipeTransport(tr *http.Transport, proto, addr string) err... function DialPipe (line 25) | func DialPipe(addr string, timeout time.Duration) (net.Conn, error) { FILE: vendor/github.com/docker/go-connections/sockets/tcp_socket.go function NewTCPSocket (line 12) | func NewTCPSocket(addr string, tlsConfig *tls.Config) (net.Listener, err... FILE: vendor/github.com/docker/go-connections/sockets/unix_socket.go function NewUnixSocket (line 12) | func NewUnixSocket(path string, gid int) (net.Listener, error) { FILE: vendor/github.com/docker/go-connections/tlsconfig/certpool_go17.go function SystemCertPool (line 14) | func SystemCertPool() (*x509.CertPool, error) { FILE: vendor/github.com/docker/go-connections/tlsconfig/certpool_other.go function SystemCertPool (line 13) | func SystemCertPool() (*x509.CertPool, error) { FILE: vendor/github.com/docker/go-connections/tlsconfig/config.go type Options (line 21) | type Options struct function ServerDefault (line 69) | func ServerDefault() *tls.Config { function ClientDefault (line 79) | func ClientDefault() *tls.Config { function certPool (line 88) | func certPool(caFile string, exclusivePool bool) (*x509.CertPool, error) { function isValidMinVersion (line 114) | func isValidMinVersion(version uint16) bool { function adjustMinVersion (line 121) | func adjustMinVersion(options Options, config *tls.Config) error { function IsErrEncryptedKey (line 137) | func IsErrEncryptedKey(err error) bool { function getPrivateKey (line 144) | func getPrivateKey(keyBytes []byte, passphrase string) ([]byte, error) { function getCert (line 166) | func getCert(options Options) ([]tls.Certificate, error) { function Client (line 197) | func Client(options Options) (*tls.Config, error) { function Server (line 222) | func Server(options Options) (*tls.Config, error) { FILE: vendor/github.com/docker/go-units/duration.go function HumanDuration (line 12) | func HumanDuration(d time.Duration) string { FILE: vendor/github.com/docker/go-units/size.go constant KB (line 14) | KB = 1000 constant MB (line 15) | MB = 1000 * KB constant GB (line 16) | GB = 1000 * MB constant TB (line 17) | TB = 1000 * GB constant PB (line 18) | PB = 1000 * TB constant KiB (line 22) | KiB = 1024 constant MiB (line 23) | MiB = 1024 * KiB constant GiB (line 24) | GiB = 1024 * MiB constant TiB (line 25) | TiB = 1024 * GiB constant PiB (line 26) | PiB = 1024 * TiB type unitMap (line 29) | type unitMap function getSizeAndUnit (line 40) | func getSizeAndUnit(size float64, base float64, _map []string) (float64,... function CustomSize (line 52) | func CustomSize(format string, size float64, base float64, _map []string... function HumanSizeWithPrecision (line 59) | func HumanSizeWithPrecision(size float64, precision int) string { function HumanSize (line 66) | func HumanSize(size float64) string { function BytesSize (line 72) | func BytesSize(size float64) string { function FromHumanSize (line 78) | func FromHumanSize(size string) (int64, error) { function RAMInBytes (line 86) | func RAMInBytes(size string) (int64, error) { function parseSize (line 91) | func parseSize(sizeStr string, uMap unitMap) (int64, error) { FILE: vendor/github.com/docker/go-units/ulimit.go type Ulimit (line 10) | type Ulimit struct method GetRlimit (line 107) | func (u *Ulimit) GetRlimit() (*Rlimit, error) { method String (line 116) | func (u *Ulimit) String() string { type Rlimit (line 17) | type Rlimit struct constant rlimitAs (line 28) | rlimitAs = 9 constant rlimitCore (line 29) | rlimitCore = 4 constant rlimitCPU (line 30) | rlimitCPU = 0 constant rlimitData (line 31) | rlimitData = 2 constant rlimitFsize (line 32) | rlimitFsize = 1 constant rlimitLocks (line 33) | rlimitLocks = 10 constant rlimitMemlock (line 34) | rlimitMemlock = 8 constant rlimitMsgqueue (line 35) | rlimitMsgqueue = 12 constant rlimitNice (line 36) | rlimitNice = 13 constant rlimitNofile (line 37) | rlimitNofile = 7 constant rlimitNproc (line 38) | rlimitNproc = 6 constant rlimitRss (line 39) | rlimitRss = 5 constant rlimitRtprio (line 40) | rlimitRtprio = 14 constant rlimitRttime (line 41) | rlimitRttime = 15 constant rlimitSigpending (line 42) | rlimitSigpending = 11 constant rlimitStack (line 43) | rlimitStack = 3 function ParseUlimit (line 66) | func ParseUlimit(val string) (*Ulimit, error) { FILE: vendor/github.com/docker/libtrust/certificates.go type certTemplateInfo (line 15) | type certTemplateInfo struct function generateCertTemplate (line 24) | func generateCertTemplate(info *certTemplateInfo) *x509.Certificate { function generateCert (line 61) | func generateCert(pub PublicKey, priv PrivateKey, subInfo, issInfo *cert... function GenerateSelfSignedServerCert (line 84) | func GenerateSelfSignedServerCert(key PrivateKey, domains []string, ipAd... function GenerateSelfSignedClientCert (line 97) | func GenerateSelfSignedClientCert(key PrivateKey) (*x509.Certificate, er... function GenerateCACert (line 108) | func GenerateCACert(signer PrivateKey, trustedKey PublicKey) (*x509.Cert... function GenerateCACertPool (line 123) | func GenerateCACertPool(signer PrivateKey, trustedKeys []PublicKey) (*x5... function LoadCertificateBundle (line 140) | func LoadCertificateBundle(filename string) ([]*x509.Certificate, error) { function LoadCertificatePool (line 165) | func LoadCertificatePool(filename string) (*x509.CertPool, error) { FILE: vendor/github.com/docker/libtrust/ec_key.go type ecPublicKey (line 23) | type ecPublicKey struct method KeyType (line 46) | func (k *ecPublicKey) KeyType() string { method CurveName (line 52) | func (k *ecPublicKey) CurveName() string { method KeyID (line 57) | func (k *ecPublicKey) KeyID() string { method String (line 61) | func (k *ecPublicKey) String() string { method Verify (line 69) | func (k *ecPublicKey) Verify(data io.Reader, alg string, signature []b... method CryptoPublicKey (line 104) | func (k *ecPublicKey) CryptoPublicKey() crypto.PublicKey { method toMap (line 108) | func (k *ecPublicKey) toMap() map[string]interface{} { method MarshalJSON (line 135) | func (k *ecPublicKey) MarshalJSON() (data []byte, err error) { method PEMBlock (line 140) | func (k *ecPublicKey) PEMBlock() (*pem.Block, error) { method AddExtendedField (line 149) | func (k *ecPublicKey) AddExtendedField(field string, value interface{}) { method GetExtendedField (line 153) | func (k *ecPublicKey) GetExtendedField(field string) interface{} { function fromECPublicKey (line 30) | func fromECPublicKey(cryptoPublicKey *ecdsa.PublicKey) (*ecPublicKey, er... function ecPublicKeyFromMap (line 161) | func ecPublicKeyFromMap(jwk map[string]interface{}) (*ecPublicKey, error) { type ecPrivateKey (line 238) | type ecPrivateKey struct method PublicKey (line 253) | func (k *ecPrivateKey) PublicKey() PublicKey { method String (line 257) | func (k *ecPrivateKey) String() string { method Sign (line 267) | func (k *ecPrivateKey) Sign(data io.Reader, hashID crypto.Hash) (signa... method CryptoPrivateKey (line 301) | func (k *ecPrivateKey) CryptoPrivateKey() crypto.PrivateKey { method toMap (line 305) | func (k *ecPrivateKey) toMap() map[string]interface{} { method MarshalJSON (line 330) | func (k *ecPrivateKey) MarshalJSON() (data []byte, err error) { method PEMBlock (line 335) | func (k *ecPrivateKey) PEMBlock() (*pem.Block, error) { function fromECPrivateKey (line 243) | func fromECPrivateKey(cryptoPrivateKey *ecdsa.PrivateKey) (*ecPrivateKey... function ecPrivateKeyFromMap (line 344) | func ecPrivateKeyFromMap(jwk map[string]interface{}) (*ecPrivateKey, err... function generateECPrivateKey (line 378) | func generateECPrivateKey(curve elliptic.Curve) (k *ecPrivateKey, err er... function GenerateECP256PrivateKey (line 392) | func GenerateECP256PrivateKey() (PrivateKey, error) { function GenerateECP384PrivateKey (line 405) | func GenerateECP384PrivateKey() (PrivateKey, error) { function GenerateECP521PrivateKey (line 418) | func GenerateECP521PrivateKey() (PrivateKey, error) { FILE: vendor/github.com/docker/libtrust/filter.go function FilterByHosts (line 10) | func FilterByHosts(keys []PublicKey, host string, includeEmpty bool) ([]... FILE: vendor/github.com/docker/libtrust/hash.go type signatureAlgorithm (line 10) | type signatureAlgorithm struct method HeaderParam (line 15) | func (h *signatureAlgorithm) HeaderParam() string { method HashID (line 19) | func (h *signatureAlgorithm) HashID() crypto.Hash { function rsaSignatureAlgorithmByName (line 32) | func rsaSignatureAlgorithmByName(alg string) (*signatureAlgorithm, error) { function rsaPKCS1v15SignatureAlgorithmForHashID (line 45) | func rsaPKCS1v15SignatureAlgorithmForHashID(hashID crypto.Hash) *signatu... FILE: vendor/github.com/docker/libtrust/jsonsign.go type jsHeader (line 28) | type jsHeader struct type jsSignature (line 34) | type jsSignature struct type jsSignaturesSorted (line 40) | type jsSignaturesSorted method Swap (line 42) | func (jsbkid jsSignaturesSorted) Swap(i, j int) { jsbkid[i], jsbkid[j]... method Len (line 43) | func (jsbkid jsSignaturesSorted) Len() int { return len(jsbkid) } method Less (line 45) | func (jsbkid jsSignaturesSorted) Less(i, j int) bool { type signKey (line 56) | type signKey struct type JSONSignature (line 62) | type JSONSignature struct method Payload (line 78) | func (js *JSONSignature) Payload() ([]byte, error) { method protectedHeader (line 82) | func (js *JSONSignature) protectedHeader() (string, error) { method signBytes (line 96) | func (js *JSONSignature) signBytes(protectedHeader string) ([]byte, er... method Sign (line 105) | func (js *JSONSignature) Sign(key PrivateKey) error { method SignWithChain (line 134) | func (js *JSONSignature) SignWithChain(key PrivateKey, chain []*x509.C... method Verify (line 173) | func (js *JSONSignature) Verify() ([]PublicKey, error) { method VerifyChains (line 218) | func (js *JSONSignature) VerifyChains(ca *x509.CertPool) ([][]*x509.Ce... method JWS (line 283) | func (js *JSONSignature) JWS() ([]byte, error) { method PrettySignature (line 578) | func (js *JSONSignature) PrettySignature(signatureKey string) ([]byte,... method Signatures (line 627) | func (js *JSONSignature) Signatures() ([][]byte, error) { method Merge (line 646) | func (js *JSONSignature) Merge(others ...*JSONSignature) error { function newJSONSignature (line 70) | func newJSONSignature() *JSONSignature { function notSpace (line 298) | func notSpace(r rune) bool { function detectJSONIndent (line 302) | func detectJSONIndent(jsonContent []byte) (indent string) { type jsParsedHeader (line 312) | type jsParsedHeader struct type jsParsedSignature (line 318) | type jsParsedSignature struct function ParseJWS (line 325) | func ParseJWS(content []byte) (*JSONSignature, error) { function NewJSONSignature (line 378) | func NewJSONSignature(content []byte, signatures ...[]byte) (*JSONSignat... function NewJSONSignatureFromMap (line 441) | func NewJSONSignatureFromMap(content interface{}) (*JSONSignature, error) { function readIntFromMap (line 465) | func readIntFromMap(key string, m map[string]interface{}) (int, bool) { function readStringFromMap (line 480) | func readStringFromMap(key string, m map[string]interface{}) (v string, ... function ParsePrettySignature (line 493) | func ParsePrettySignature(content []byte, signatureKey string) (*JSONSig... FILE: vendor/github.com/docker/libtrust/key.go type PublicKey (line 16) | type PublicKey interface type PrivateKey (line 48) | type PrivateKey interface function FromCryptoPublicKey (line 71) | func FromCryptoPublicKey(cryptoPublicKey crypto.PublicKey) (PublicKey, e... function FromCryptoPrivateKey (line 85) | func FromCryptoPrivateKey(cryptoPrivateKey crypto.PrivateKey) (PrivateKe... function UnmarshalPublicKeyPEM (line 98) | func UnmarshalPublicKeyPEM(data []byte) (PublicKey, error) { function UnmarshalPublicKeyPEMBundle (line 112) | func UnmarshalPublicKeyPEMBundle(data []byte) ([]PublicKey, error) { function UnmarshalPrivateKeyPEM (line 137) | func UnmarshalPrivateKeyPEM(data []byte) (PrivateKey, error) { function UnmarshalPublicKeyJWK (line 172) | func UnmarshalPublicKeyJWK(data []byte) (PublicKey, error) { function UnmarshalPublicKeyJWKSet (line 204) | func UnmarshalPublicKeyJWKSet(data []byte) ([]PublicKey, error) { function UnmarshalPrivateKeyJWK (line 225) | func UnmarshalPrivateKeyJWK(data []byte) (PrivateKey, error) { FILE: vendor/github.com/docker/libtrust/key_files.go function readKeyFileBytes (line 18) | func readKeyFileBytes(filename string) ([]byte, error) { function LoadKeyFile (line 39) | func LoadKeyFile(filename string) (PrivateKey, error) { function LoadPublicKeyFile (line 64) | func LoadPublicKeyFile(filename string) (PublicKey, error) { function SaveKey (line 89) | func SaveKey(filename string, key PrivateKey) error { function SavePublicKey (line 117) | func SavePublicKey(filename string, key PublicKey) error { type jwkSet (line 146) | type jwkSet struct function LoadKeySetFile (line 151) | func LoadKeySetFile(filename string) ([]PublicKey, error) { function loadJSONKeySetRaw (line 160) | func loadJSONKeySetRaw(data []byte) ([]json.RawMessage, error) { function loadJSONKeySetFile (line 176) | func loadJSONKeySetFile(filename string) ([]PublicKey, error) { function loadPEMKeySetFile (line 185) | func loadPEMKeySetFile(filename string) ([]PublicKey, error) { function AddKeySetFile (line 195) | func AddKeySetFile(filename string, key PublicKey) error { function addKeySetJSONFile (line 204) | func addKeySetJSONFile(filename string, key PublicKey) error { function addKeySetPEMFile (line 236) | func addKeySetPEMFile(filename string, key PublicKey) error { FILE: vendor/github.com/docker/libtrust/key_manager.go type ClientKeyManager (line 15) | type ClientKeyManager struct method loadKeys (line 43) | func (c *ClientKeyManager) loadKeys() (err error) { method RegisterTLSConfig (line 78) | func (c *ClientKeyManager) RegisterTLSConfig(tlsConfig *tls.Config) er... function NewClientKeyManager (line 29) | func NewClientKeyManager(trustKey PrivateKey, clientFile, clientDir stri... function NewIdentityAuthTLSConfig (line 97) | func NewIdentityAuthTLSConfig(trustKey PrivateKey, clients *ClientKeyMan... function NewCertAuthTLSConfig (line 127) | func NewCertAuthTLSConfig(caPath, certPath, keyPath string) (*tls.Config... function newTLSConfig (line 152) | func newTLSConfig() *tls.Config { function parseAddr (line 161) | func parseAddr(addr string) ([]net.IP, []string, error) { FILE: vendor/github.com/docker/libtrust/rsa_key.go type rsaPublicKey (line 21) | type rsaPublicKey struct method KeyType (line 31) | func (k *rsaPublicKey) KeyType() string { method KeyID (line 36) | func (k *rsaPublicKey) KeyID() string { method String (line 40) | func (k *rsaPublicKey) String() string { method Verify (line 48) | func (k *rsaPublicKey) Verify(data io.Reader, alg string, signature []... method CryptoPublicKey (line 73) | func (k *rsaPublicKey) CryptoPublicKey() crypto.PublicKey { method toMap (line 77) | func (k *rsaPublicKey) toMap() map[string]interface{} { method MarshalJSON (line 92) | func (k *rsaPublicKey) MarshalJSON() (data []byte, err error) { method PEMBlock (line 97) | func (k *rsaPublicKey) PEMBlock() (*pem.Block, error) { method AddExtendedField (line 106) | func (k *rsaPublicKey) AddExtendedField(field string, value interface{... method GetExtendedField (line 110) | func (k *rsaPublicKey) GetExtendedField(field string) interface{} { function fromRSAPublicKey (line 26) | func fromRSAPublicKey(cryptoPublicKey *rsa.PublicKey) *rsaPublicKey { function rsaPublicKeyFromMap (line 118) | func rsaPublicKeyFromMap(jwk map[string]interface{}) (*rsaPublicKey, err... type rsaPrivateKey (line 175) | type rsaPrivateKey struct method PublicKey (line 188) | func (k *rsaPrivateKey) PublicKey() PublicKey { method String (line 192) | func (k *rsaPrivateKey) String() string { method Sign (line 202) | func (k *rsaPrivateKey) Sign(data io.Reader, hashID crypto.Hash) (sign... method CryptoPrivateKey (line 226) | func (k *rsaPrivateKey) CryptoPrivateKey() crypto.PrivateKey { method toMap (line 230) | func (k *rsaPrivateKey) toMap() map[string]interface{} { method MarshalJSON (line 261) | func (k *rsaPrivateKey) MarshalJSON() (data []byte, err error) { method PEMBlock (line 266) | func (k *rsaPrivateKey) PEMBlock() (*pem.Block, error) { function fromRSAPrivateKey (line 180) | func fromRSAPrivateKey(cryptoPrivateKey *rsa.PrivateKey) *rsaPrivateKey { function rsaPrivateKeyFromMap (line 272) | func rsaPrivateKeyFromMap(jwk map[string]interface{}) (*rsaPrivateKey, e... function generateRSAPrivateKey (line 386) | func generateRSAPrivateKey(bits int) (k *rsaPrivateKey, err error) { function GenerateRSA2048PrivateKey (line 400) | func GenerateRSA2048PrivateKey() (PrivateKey, error) { function GenerateRSA3072PrivateKey (line 410) | func GenerateRSA3072PrivateKey() (PrivateKey, error) { function GenerateRSA4096PrivateKey (line 420) | func GenerateRSA4096PrivateKey() (PrivateKey, error) { FILE: vendor/github.com/docker/libtrust/util.go function LoadOrCreateTrustKey (line 24) | func LoadOrCreateTrustKey(trustKeyPath string) (PrivateKey, error) { function NewIdentityAuthTLSClientConfig (line 55) | func NewIdentityAuthTLSClientConfig(dockerUrl string, trustUnknownHosts ... function joseBase64UrlEncode (line 158) | func joseBase64UrlEncode(b []byte) string { function joseBase64UrlDecode (line 166) | func joseBase64UrlDecode(s string) ([]byte, error) { function keyIDEncode (line 181) | func keyIDEncode(b []byte) string { function keyIDFromCryptoKey (line 194) | func keyIDFromCryptoKey(pubKey PublicKey) string { function stringFromMap (line 209) | func stringFromMap(m map[string]interface{}, key string) (string, error) { function parseECCoordinate (line 224) | func parseECCoordinate(cB64Url string, curve elliptic.Curve) (*big.Int, ... function parseECPrivateParam (line 238) | func parseECPrivateParam(dB64Url string, curve elliptic.Curve) (*big.Int... function parseRSAModulusParam (line 263) | func parseRSAModulusParam(nB64Url string) (*big.Int, error) { function serializeRSAPublicExponentParam (line 272) | func serializeRSAPublicExponentParam(e int) []byte { function parseRSAPublicExponentParam (line 288) | func parseRSAPublicExponentParam(eB64Url string) (int, error) { function parseRSAPrivateKeyParamFromMap (line 303) | func parseRSAPrivateKeyParamFromMap(m map[string]interface{}, key string... function createPemBlock (line 317) | func createPemBlock(name string, derBytes []byte, headers map[string]int... function pubKeyFromPEMBlock (line 337) | func pubKeyFromPEMBlock(pemBlock *pem.Block) (PublicKey, error) { function addPEMHeadersToKey (line 353) | func addPEMHeadersToKey(pemBlock *pem.Block, pubKey PublicKey) { FILE: vendor/github.com/opencontainers/go-digest/algorithm.go type Algorithm (line 27) | type Algorithm method Available (line 57) | func (a Algorithm) Available() bool { method String (line 67) | func (a Algorithm) String() string { method Size (line 72) | func (a Algorithm) Size() int { method Set (line 81) | func (a *Algorithm) Set(value string) error { method Digester (line 99) | func (a Algorithm) Digester() Digester { method Hash (line 108) | func (a Algorithm) Hash() hash.Hash { method FromReader (line 129) | func (a Algorithm) FromReader(rd io.Reader) (Digest, error) { method FromBytes (line 140) | func (a Algorithm) FromBytes(p []byte) Digest { method FromString (line 156) | func (a Algorithm) FromString(s string) Digest { constant SHA256 (line 31) | SHA256 Algorithm = "sha256" constant SHA384 (line 32) | SHA384 Algorithm = "sha384" constant SHA512 (line 33) | SHA512 Algorithm = "sha512" constant Canonical (line 38) | Canonical = SHA256 FILE: vendor/github.com/opencontainers/go-digest/digest.go type Digest (line 36) | type Digest method Validate (line 97) | func (d Digest) Validate() error { method Algorithm (line 123) | func (d Digest) Algorithm() Algorithm { method Verifier (line 129) | func (d Digest) Verifier() Verifier { method Hex (line 138) | func (d Digest) Hex() string { method String (line 142) | func (d Digest) String() string { method sepIndex (line 146) | func (d Digest) sepIndex() int { function NewDigest (line 39) | func NewDigest(alg Algorithm, h hash.Hash) Digest { function NewDigestFromBytes (line 47) | func NewDigestFromBytes(alg Algorithm, p []byte) Digest { function NewDigestFromHex (line 52) | func NewDigestFromHex(alg, hex string) Digest { function Parse (line 75) | func Parse(s string) (Digest, error) { function FromReader (line 81) | func FromReader(rd io.Reader) (Digest, error) { function FromBytes (line 86) | func FromBytes(p []byte) Digest { function FromString (line 91) | func FromString(s string) Digest { FILE: vendor/github.com/opencontainers/go-digest/digester.go type Digester (line 22) | type Digester interface type digester (line 28) | type digester struct method Hash (line 33) | func (d *digester) Hash() hash.Hash { method Digest (line 37) | func (d *digester) Digest() Digest { FILE: vendor/github.com/opencontainers/go-digest/verifiers.go type Verifier (line 26) | type Verifier interface type hashVerifier (line 34) | type hashVerifier struct method Write (line 39) | func (hv hashVerifier) Write(p []byte) (n int, err error) { method Verified (line 43) | func (hv hashVerifier) Verified() bool { FILE: vendor/github.com/pkg/errors/errors.go function New (line 101) | func New(message string) error { function Errorf (line 111) | func Errorf(format string, args ...interface{}) error { type fundamental (line 119) | type fundamental struct method Error (line 124) | func (f *fundamental) Error() string { return f.msg } method Format (line 126) | func (f *fundamental) Format(s fmt.State, verb rune) { function WithStack (line 144) | func WithStack(err error) error { type withStack (line 154) | type withStack struct method Cause (line 159) | func (w *withStack) Cause() error { return w.error } method Format (line 161) | func (w *withStack) Format(s fmt.State, verb rune) { function Wrap (line 180) | func Wrap(err error, message string) error { function Wrapf (line 197) | func Wrapf(err error, format string, args ...interface{}) error { function WithMessage (line 213) | func WithMessage(err error, message string) error { type withMessage (line 223) | type withMessage struct method Error (line 228) | func (w *withMessage) Error() string { return w.msg + ": " + w.cause.E... method Cause (line 229) | func (w *withMessage) Cause() error { return w.cause } method Format (line 231) | func (w *withMessage) Format(s fmt.State, verb rune) { function Cause (line 256) | func Cause(err error) error { FILE: vendor/github.com/pkg/errors/stack.go type Frame (line 12) | type Frame method pc (line 16) | func (f Frame) pc() uintptr { return uintptr(f) - 1 } method file (line 20) | func (f Frame) file() string { method line (line 31) | func (f Frame) line() int { method Format (line 51) | func (f Frame) Format(s fmt.State, verb rune) { type StackTrace (line 80) | type StackTrace method Format (line 82) | func (st StackTrace) Format(s fmt.State, verb rune) { type stack (line 101) | type stack method Format (line 103) | func (s *stack) Format(st fmt.State, verb rune) { method StackTrace (line 116) | func (s *stack) StackTrace() StackTrace { function callers (line 124) | func callers() *stack { function funcname (line 133) | func funcname(name string) string { function trimGOPATH (line 140) | func trimGOPATH(name, file string) string { FILE: vendor/golang.org/x/net/context/context.go type Context (line 45) | type Context interface function Background (line 140) | func Background() Context { function TODO (line 149) | func TODO() Context { type CancelFunc (line 156) | type CancelFunc FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp.go function Do (line 26) | func Do(ctx context.Context, client *http.Client, req *http.Request) (*h... function Get (line 44) | func Get(ctx context.Context, client *http.Client, url string) (*http.Re... function Head (line 53) | func Head(ctx context.Context, client *http.Client, url string) (*http.R... function Post (line 62) | func Post(ctx context.Context, client *http.Client, url string, bodyType... function PostForm (line 72) | func PostForm(ctx context.Context, client *http.Client, url string, data... FILE: vendor/golang.org/x/net/context/ctxhttp/ctxhttp_pre17.go function nop (line 18) | func nop() {} function Do (line 29) | func Do(ctx context.Context, client *http.Client, req *http.Request) (*h... function Get (line 92) | func Get(ctx context.Context, client *http.Client, url string) (*http.Re... function Head (line 101) | func Head(ctx context.Context, client *http.Client, url string) (*http.R... function Post (line 110) | func Post(ctx context.Context, client *http.Client, url string, bodyType... function PostForm (line 120) | func PostForm(ctx context.Context, client *http.Client, url string, data... type notifyingReader (line 126) | type notifyingReader struct method Read (line 131) | func (r *notifyingReader) Read(p []byte) (int, error) { method Close (line 140) | func (r *notifyingReader) Close() error { FILE: vendor/golang.org/x/net/context/go17.go function WithCancel (line 32) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { function WithDeadline (line 46) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu... function WithTimeout (line 61) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel... function WithValue (line 70) | func WithValue(parent Context, key interface{}, val interface{}) Context { FILE: vendor/golang.org/x/net/context/pre_go17.go type emptyCtx (line 18) | type emptyCtx method Deadline (line 20) | func (*emptyCtx) Deadline() (deadline time.Time, ok bool) { method Done (line 24) | func (*emptyCtx) Done() <-chan struct{} { method Err (line 28) | func (*emptyCtx) Err() error { method Value (line 32) | func (*emptyCtx) Value(key interface{}) interface{} { method String (line 36) | func (e *emptyCtx) String() string { function WithCancel (line 64) | func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { function newCancelCtx (line 71) | func newCancelCtx(parent Context) *cancelCtx { function propagateCancel (line 79) | func propagateCancel(parent Context, child canceler) { function parentCancelCtx (line 109) | func parentCancelCtx(parent Context) (*cancelCtx, bool) { function removeChild (line 125) | func removeChild(parent Context, child canceler) { type canceler (line 139) | type canceler interface type cancelCtx (line 146) | type cancelCtx struct method Done (line 156) | func (c *cancelCtx) Done() <-chan struct{} { method Err (line 160) | func (c *cancelCtx) Err() error { method String (line 166) | func (c *cancelCtx) String() string { method cancel (line 172) | func (c *cancelCtx) cancel(removeFromParent bool, err error) { function WithDeadline (line 204) | func WithDeadline(parent Context, deadline time.Time) (Context, CancelFu... type timerCtx (line 232) | type timerCtx struct method Deadline (line 239) | func (c *timerCtx) Deadline() (deadline time.Time, ok bool) { method String (line 243) | func (c *timerCtx) String() string { method cancel (line 247) | func (c *timerCtx) cancel(removeFromParent bool, err error) { function WithTimeout (line 271) | func WithTimeout(parent Context, timeout time.Duration) (Context, Cancel... function WithValue (line 280) | func WithValue(parent Context, key interface{}, val interface{}) Context { type valueCtx (line 286) | type valueCtx struct method String (line 291) | func (c *valueCtx) String() string { method Value (line 295) | func (c *valueCtx) Value(key interface{}) interface{} { FILE: vendor/golang.org/x/net/proxy/direct.go type direct (line 11) | type direct struct method Dial (line 16) | func (direct) Dial(network, addr string) (net.Conn, error) { FILE: vendor/golang.org/x/net/proxy/per_host.go type PerHost (line 14) | type PerHost struct method Dial (line 35) | func (p *PerHost) Dial(network, addr string) (c net.Conn, err error) { method dialerForRequest (line 44) | func (p *PerHost) dialerForRequest(host string) Dialer { method AddFromString (line 82) | func (p *PerHost) AddFromString(s string) { method AddIP (line 111) | func (p *PerHost) AddIP(ip net.IP) { method AddNetwork (line 118) | func (p *PerHost) AddNetwork(net *net.IPNet) { method AddZone (line 124) | func (p *PerHost) AddZone(zone string) { method AddHost (line 135) | func (p *PerHost) AddHost(host string) { function NewPerHost (line 26) | func NewPerHost(defaultDialer, bypass Dialer) *PerHost { FILE: vendor/golang.org/x/net/proxy/proxy.go type Dialer (line 17) | type Dialer interface type Auth (line 23) | type Auth struct function FromEnvironment (line 29) | func FromEnvironment() Dialer { function RegisterDialerType (line 61) | func RegisterDialerType(scheme string, f func(*url.URL, Dialer) (Dialer,... function FromURL (line 70) | func FromURL(u *url.URL, forward Dialer) (Dialer, error) { FILE: vendor/golang.org/x/net/proxy/socks5.go function SOCKS5 (line 16) | func SOCKS5(network, addr string, auth *Auth, forward Dialer) (Dialer, e... type socks5 (line 30) | type socks5 struct method Dial (line 64) | func (s *socks5) Dial(network, addr string) (net.Conn, error) { method connect (line 85) | func (s *socks5) connect(conn net.Conn, target string) error { constant socks5Version (line 36) | socks5Version = 5 constant socks5AuthNone (line 39) | socks5AuthNone = 0 constant socks5AuthPassword (line 40) | socks5AuthPassword = 2 constant socks5Connect (line 43) | socks5Connect = 1 constant socks5IP4 (line 46) | socks5IP4 = 1 constant socks5Domain (line 47) | socks5Domain = 3 constant socks5IP6 (line 48) | socks5IP6 = 4 FILE: vendor/golang.org/x/sys/unix/bluetooth_linux.go constant BTPROTO_L2CAP (line 11) | BTPROTO_L2CAP = 0 constant BTPROTO_HCI (line 12) | BTPROTO_HCI = 1 constant BTPROTO_SCO (line 13) | BTPROTO_SCO = 2 constant BTPROTO_RFCOMM (line 14) | BTPROTO_RFCOMM = 3 constant BTPROTO_BNEP (line 15) | BTPROTO_BNEP = 4 constant BTPROTO_CMTP (line 16) | BTPROTO_CMTP = 5 constant BTPROTO_HIDP (line 17) | BTPROTO_HIDP = 6 constant BTPROTO_AVDTP (line 18) | BTPROTO_AVDTP = 7 constant HCI_CHANNEL_RAW (line 22) | HCI_CHANNEL_RAW = 0 constant HCI_CHANNEL_USER (line 23) | HCI_CHANNEL_USER = 1 constant HCI_CHANNEL_MONITOR (line 24) | HCI_CHANNEL_MONITOR = 2 constant HCI_CHANNEL_CONTROL (line 25) | HCI_CHANNEL_CONTROL = 3 constant SOL_BLUETOOTH (line 30) | SOL_BLUETOOTH = 0x112 constant SOL_HCI (line 31) | SOL_HCI = 0x0 constant SOL_L2CAP (line 32) | SOL_L2CAP = 0x6 constant SOL_RFCOMM (line 33) | SOL_RFCOMM = 0x12 constant SOL_SCO (line 34) | SOL_SCO = 0x11 FILE: vendor/golang.org/x/sys/unix/constants.go constant R_OK (line 10) | R_OK = 0x4 constant W_OK (line 11) | W_OK = 0x2 constant X_OK (line 12) | X_OK = 0x1 FILE: vendor/golang.org/x/sys/unix/dirent.go function readInt (line 12) | func readInt(b []byte, off, size uintptr) (u uint64, ok bool) { function readIntBE (line 22) | func readIntBE(b []byte, size uintptr) uint64 { function readIntLE (line 41) | func readIntLE(b []byte, size uintptr) uint64 { function ParseDirent (line 64) | func ParseDirent(buf []byte, max int, names []string) (consumed int, cou... FILE: vendor/golang.org/x/sys/unix/endian_big.go constant isBigEndian (line 9) | isBigEndian = true FILE: vendor/golang.org/x/sys/unix/endian_little.go constant isBigEndian (line 9) | isBigEndian = false FILE: vendor/golang.org/x/sys/unix/env_unix.go function Getenv (line 13) | func Getenv(key string) (value string, found bool) { function Setenv (line 17) | func Setenv(key, value string) error { function Clearenv (line 21) | func Clearenv() { function Environ (line 25) | func Environ() []string { FILE: vendor/golang.org/x/sys/unix/env_unset.go function Unsetenv (line 11) | func Unsetenv(key string) error { FILE: vendor/golang.org/x/sys/unix/flock.go function FcntlFlock (line 18) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error { FILE: vendor/golang.org/x/sys/unix/flock_linux_32bit.go function init (line 9) | func init() { FILE: vendor/golang.org/x/sys/unix/gccgo.go function realSyscall (line 15) | func realSyscall(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r, e... function Syscall (line 17) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errn... function Syscall6 (line 24) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function Syscall9 (line 31) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function RawSyscall (line 38) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 43) | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, ... FILE: vendor/golang.org/x/sys/unix/gccgo_c.c type ret (line 18) | struct ret { function gccgoRealSyscall (line 23) | struct ret function use (line 38) | void FILE: vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go function realGettimeofday (line 12) | func realGettimeofday(*Timeval, *byte) int32 function gettimeofday (line 14) | func gettimeofday(tv *Timeval) (err syscall.Errno) { FILE: vendor/golang.org/x/sys/unix/gccgo_linux_sparc64.go function realSysconf (line 12) | func realSysconf(name int) int64 function sysconf (line 14) | func sysconf(name int) (n int64, err syscall.Errno) { FILE: vendor/golang.org/x/sys/unix/mkpost.go function main (line 23) | func main() { FILE: vendor/golang.org/x/sys/unix/openbsd_pledge.go constant SYS_PLEDGE (line 16) | SYS_PLEDGE = 108 function Pledge (line 20) | func Pledge(promises string, paths []string) error { FILE: vendor/golang.org/x/sys/unix/race.go constant raceenabled (line 14) | raceenabled = true function raceAcquire (line 16) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 20) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 24) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 28) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/unix/race0.go constant raceenabled (line 13) | raceenabled = false function raceAcquire (line 15) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 18) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 21) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 24) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_linux.go function UnixCredentials (line 14) | func UnixCredentials(ucred *Ucred) []byte { function ParseUnixCredentials (line 27) | func ParseUnixCredentials(m *SocketControlMessage) (*Ucred, error) { FILE: vendor/golang.org/x/sys/unix/sockcmsg_unix.go function cmsgAlignOf (line 14) | func cmsgAlignOf(salen int) int { function CmsgLen (line 26) | func CmsgLen(datalen int) int { function CmsgSpace (line 32) | func CmsgSpace(datalen int) int { function cmsgData (line 36) | func cmsgData(h *Cmsghdr) unsafe.Pointer { type SocketControlMessage (line 41) | type SocketControlMessage struct function ParseSocketControlMessage (line 48) | func ParseSocketControlMessage(b []byte) ([]SocketControlMessage, error) { function socketControlMessageHeaderAndData (line 63) | func socketControlMessageHeaderAndData(b []byte) (*Cmsghdr, []byte, erro... function UnixRights (line 73) | func UnixRights(fds ...int) []byte { function ParseUnixRights (line 90) | func ParseUnixRights(m *SocketControlMessage) ([]int, error) { FILE: vendor/golang.org/x/sys/unix/str.go function itoa (line 9) | func itoa(val int) string { // do it here rather than with fmt to avoid ... function uitoa (line 16) | func uitoa(val uint) string { FILE: vendor/golang.org/x/sys/unix/syscall.go function ByteSliceFromString (line 27) | func ByteSliceFromString(s string) ([]byte, error) { function BytePtrFromString (line 41) | func BytePtrFromString(s string) (*byte, error) { method Unix (line 53) | func (ts *Timespec) Unix() (sec int64, nsec int64) { method Unix (line 57) | func (tv *Timeval) Unix() (sec int64, nsec int64) { method Nano (line 61) | func (ts *Timespec) Nano() int64 { method Nano (line 65) | func (tv *Timeval) Nano() int64 { function TimevalToNsec (line 69) | func TimevalToNsec(tv Timeval) int64 { return int64(tv.Sec)*1e9 + int64(... FILE: vendor/golang.org/x/sys/unix/syscall_bsd.go function Getgroups (line 28) | func Getgroups() (gids []int, err error) { function Setgroups (line 54) | func Setgroups(gids []int) (err error) { function ReadDirent (line 66) | func ReadDirent(fd int, buf []byte) (n int, err error) { type WaitStatus (line 81) | type WaitStatus method Exited (line 92) | func (w WaitStatus) Exited() bool { return w&mask == exited } method ExitStatus (line 94) | func (w WaitStatus) ExitStatus() int { method Signaled (line 101) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Signal (line 103) | func (w WaitStatus) Signal() syscall.Signal { method CoreDump (line 111) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method Stopped (line 113) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca... method Continued (line 115) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys... method StopSignal (line 117) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 124) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 84) | mask = 0x7F constant core (line 85) | core = 0x80 constant shift (line 86) | shift = 8 constant exited (line 88) | exited = 0 constant stopped (line 89) | stopped = 0x7F function Wait4 (line 128) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... method sockaddr (line 147) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 162) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 178) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 192) | func (sa *SockaddrDatalink) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddr (line 209) | func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 274) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Getsockname (line 297) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptByte (line 314) | func GetsockoptByte(fd, level, opt int) (value byte, err error) { function GetsockoptInet4Addr (line 321) | func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) { function GetsockoptIPMreq (line 327) | func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) { function GetsockoptIPv6Mreq (line 334) | func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) { function GetsockoptIPv6MTUInfo (line 341) | func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) { function GetsockoptICMPv6Filter (line 348) | func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) { function Recvmsg (line 359) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 395) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 400) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Kevent (line 440) | func Kevent(kq int, changes, events []Kevent_t, timeout *Timespec) (n in... function sysctlmib (line 454) | func sysctlmib(name string, args ...int) ([]_C_int, error) { function Sysctl (line 468) | func Sysctl(name string) (string, error) { function SysctlArgs (line 472) | func SysctlArgs(name string, args ...int) (string, error) { function SysctlUint32 (line 486) | func SysctlUint32(name string) (uint32, error) { function SysctlUint32Args (line 490) | func SysctlUint32Args(name string, args ...int) (uint32, error) { function SysctlUint64 (line 507) | func SysctlUint64(name string, args ...int) (uint64, error) { function SysctlRaw (line 524) | func SysctlRaw(name string, args ...int) ([]byte, error) { function Utimes (line 552) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 562) | func UtimesNano(path string, ts []Timespec) error { function Futimes (line 582) | func Futimes(fd int, tv []Timeval) error { function Mmap (line 608) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 612) | func Munmap(b []byte) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_darwin.go constant ImplementsGetwd (line 21) | ImplementsGetwd = true function Getwd (line 23) | func Getwd() (string, error) { type SockaddrDatalink (line 39) | type SockaddrDatalink struct function nametomib (line 52) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 79) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 83) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 87) | func direntNamlen(buf []byte) (uint64, bool) { function PtraceAttach (line 92) | func PtraceAttach(pid int) (err error) { return ptrace(PT_ATTACH, pid, 0... function PtraceDetach (line 93) | func PtraceDetach(pid int) (err error) { return ptrace(PT_DETACH, pid, 0... constant attrBitMapCount (line 96) | attrBitMapCount = 5 constant attrCmnFullpath (line 97) | attrCmnFullpath = 0x08000000 type attrList (line 100) | type attrList struct function getAttrList (line 110) | func getAttrList(path string, attrList attrList, attrBuf []byte, options... function Pipe (line 167) | func Pipe(p []int) (err error) { function Getfsstat (line 175) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function Kill (line 196) | func Kill(pid int, signum syscall.Signal) (err error) { return kill(pid,... FILE: vendor/golang.org/x/sys/unix/syscall_darwin_386.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 32) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 42) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 48) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 52) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 56) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 60) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 73) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... constant SYS___SYSCTL (line 77) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go function Getpagesize (line 16) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 18) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 20) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 26) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 34) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 44) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 50) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 54) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 58) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 62) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 75) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... constant SYS___SYSCTL (line 79) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm.go function Getpagesize (line 12) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 14) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 16) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 22) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 30) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 40) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 46) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 50) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 54) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 58) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 71) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go function Getpagesize (line 14) | func Getpagesize() int { return 16384 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Gettimeofday (line 32) | func Gettimeofday(tv *Timeval) (err error) { function SetKevent (line 42) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 48) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 52) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 56) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 60) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 73) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... constant SYS___SYSCTL (line 77) | SYS___SYSCTL = SYS_SYSCTL FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly.go type SockaddrDatalink (line 17) | type SockaddrDatalink struct function nametomib (line 32) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 59) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 63) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 71) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 77) | func Pipe(p []int) (err error) { function Pread (line 86) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 91) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Getfsstat (line 95) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd.go type SockaddrDatalink (line 17) | type SockaddrDatalink struct function nametomib (line 30) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 57) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 61) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 65) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 71) | func Pipe(p []int) (err error) { function GetsockoptIPMreqn (line 79) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function SetsockoptIPMreqn (line 86) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function Accept4 (line 90) | func Accept4(fd, flags int) (nfd int, sa Sockaddr, err error) { function Getfsstat (line 108) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { function xattrnamespace (line 125) | func xattrnamespace(fullattr string) (ns int, attr string, err error) { function initxattrdest (line 151) | func initxattrdest(dest []byte, idx int) (d unsafe.Pointer) { function Getxattr (line 161) | func Getxattr(file string, attr string, dest []byte) (sz int, err error) { function Fgetxattr (line 173) | func Fgetxattr(fd int, attr string, dest []byte) (sz int, err error) { function Lgetxattr (line 185) | func Lgetxattr(link string, attr string, dest []byte) (sz int, err error) { function Fsetxattr (line 199) | func Fsetxattr(fd int, attr string, data []byte, flags int) (err error) { function Setxattr (line 212) | func Setxattr(file string, attr string, data []byte, flags int) (err err... function Lsetxattr (line 225) | func Lsetxattr(link string, attr string, data []byte, flags int) (err er... function Removexattr (line 238) | func Removexattr(file string, attr string) (err error) { function Fremovexattr (line 248) | func Fremovexattr(fd int, attr string) (err error) { function Lremovexattr (line 258) | func Lremovexattr(link string, attr string) (err error) { function Listxattr (line 268) | func Listxattr(file string, dest []byte) (sz int, err error) { function Flistxattr (line 303) | func Flistxattr(fd int, dest []byte) (sz int, err error) { function Llistxattr (line 329) | func Llistxattr(link string, dest []byte) (sz int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_386.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return ts.Sec*1e9 + int64(ts.Ns... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 31) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 37) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 41) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 45) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 49) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Syscall9 (line 61) | func Syscall9(num, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 u... FILE: vendor/golang.org/x/sys/unix/syscall_linux.go function Access (line 23) | func Access(path string, mode uint32) (err error) { function Chmod (line 27) | func Chmod(path string, mode uint32) (err error) { function Chown (line 31) | func Chown(path string, uid int, gid int) (err error) { function Creat (line 35) | func Creat(path string, mode uint32) (fd int, err error) { function Link (line 41) | func Link(oldpath string, newpath string) (err error) { function Mkdir (line 45) | func Mkdir(path string, mode uint32) (err error) { function Mknod (line 49) | func Mknod(path string, mode uint32, dev int) (err error) { function Open (line 53) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 59) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function Ppoll (line 65) | func Ppoll(fds []PollFd, timeout *Timespec, sigmask *Sigset_t) (n int, e... function Readlink (line 74) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 78) | func Rename(oldpath string, newpath string) (err error) { function Rmdir (line 82) | func Rmdir(path string) error { function Symlink (line 88) | func Symlink(oldpath string, newpath string) (err error) { function Unlink (line 92) | func Unlink(path string) error { function Utimes (line 100) | func Utimes(path string, tv []Timeval) error { function UtimesNano (line 123) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 147) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function Futimesat (line 159) | func Futimesat(dirfd int, path string, tv []Timeval) error { function Futimes (line 173) | func Futimes(fd int, tv []Timeval) (err error) { constant ImplementsGetwd (line 179) | ImplementsGetwd = true function Getwd (line 183) | func Getwd() (wd string, err error) { function Getgroups (line 196) | func Getgroups() (gids []int, err error) { function Setgroups (line 222) | func Setgroups(gids []int) (err error) { type WaitStatus (line 234) | type WaitStatus method Exited (line 253) | func (w WaitStatus) Exited() bool { return w&mask == exited } method Signaled (line 255) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Stopped (line 257) | func (w WaitStatus) Stopped() bool { return w&0xFF == stopped } method Continued (line 259) | func (w WaitStatus) Continued() bool { return w == 0xFFFF } method CoreDump (line 261) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method ExitStatus (line 263) | func (w WaitStatus) ExitStatus() int { method Signal (line 270) | func (w WaitStatus) Signal() syscall.Signal { method StopSignal (line 277) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 284) | func (w WaitStatus) TrapCause() int { constant mask (line 246) | mask = 0x7F constant core (line 247) | core = 0x80 constant exited (line 248) | exited = 0x00 constant stopped (line 249) | stopped = 0x7F constant shift (line 250) | shift = 8 function Wait4 (line 293) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (w... function Mkfifo (line 302) | func Mkfifo(path string, mode uint32) (err error) { method sockaddr (line 306) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 320) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 335) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrLinklayer (line 359) | type SockaddrLinklayer struct method sockaddr (line 369) | func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, err... type SockaddrNetlink (line 385) | type SockaddrNetlink struct method sockaddr (line 393) | func (sa *SockaddrNetlink) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrHCI (line 401) | type SockaddrHCI struct method sockaddr (line 407) | func (sa *SockaddrHCI) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrCAN (line 431) | type SockaddrCAN struct method sockaddr (line 438) | func (sa *SockaddrCAN) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrALG (line 518) | type SockaddrALG struct method sockaddr (line 526) | func (sa *SockaddrALG) sockaddr() (unsafe.Pointer, _Socklen, error) { type SockaddrVM (line 558) | type SockaddrVM struct method sockaddr (line 568) | func (sa *SockaddrVM) sockaddr() (unsafe.Pointer, _Socklen, error) { function anyToSockaddr (line 576) | func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 657) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Accept4 (line 672) | func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) { function Getsockname (line 690) | func Getsockname(fd int) (sa Sockaddr, err error) { function GetsockoptInet4Addr (line 699) | func GetsockoptInet4Addr(fd, level, opt int) (value [4]byte, err error) { function GetsockoptIPMreq (line 705) | func GetsockoptIPMreq(fd, level, opt int) (*IPMreq, error) { function GetsockoptIPMreqn (line 712) | func GetsockoptIPMreqn(fd, level, opt int) (*IPMreqn, error) { function GetsockoptIPv6Mreq (line 719) | func GetsockoptIPv6Mreq(fd, level, opt int) (*IPv6Mreq, error) { function GetsockoptIPv6MTUInfo (line 726) | func GetsockoptIPv6MTUInfo(fd, level, opt int) (*IPv6MTUInfo, error) { function GetsockoptICMPv6Filter (line 733) | func GetsockoptICMPv6Filter(fd, level, opt int) (*ICMPv6Filter, error) { function GetsockoptUcred (line 740) | func GetsockoptUcred(fd, level, opt int) (*Ucred, error) { function GetsockoptTCPInfo (line 747) | func GetsockoptTCPInfo(fd, level, opt int) (*TCPInfo, error) { function SetsockoptIPMreqn (line 754) | func SetsockoptIPMreqn(fd, level, opt int, mreq *IPMreqn) (err error) { function Recvmsg (line 758) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 792) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 797) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function BindToDevice (line 837) | func BindToDevice(fd int, device string) (err error) { function ptracePeek (line 843) | func ptracePeek(req int, pid int, addr uintptr, out []byte) (count int, ... function PtracePeekText (line 883) | func PtracePeekText(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekData (line 887) | func PtracePeekData(pid int, addr uintptr, out []byte) (count int, err e... function PtracePeekUser (line 891) | func PtracePeekUser(pid int, addr uintptr, out []byte) (count int, err e... function ptracePoke (line 895) | func ptracePoke(pokeReq int, peekReq int, pid int, addr uintptr, data []... function PtracePokeText (line 946) | func PtracePokeText(pid int, addr uintptr, data []byte) (count int, err ... function PtracePokeData (line 950) | func PtracePokeData(pid int, addr uintptr, data []byte) (count int, err ... function PtraceGetRegs (line 954) | func PtraceGetRegs(pid int, regsout *PtraceRegs) (err error) { function PtraceSetRegs (line 958) | func PtraceSetRegs(pid int, regs *PtraceRegs) (err error) { function PtraceSetOptions (line 962) | func PtraceSetOptions(pid int, options int) (err error) { function PtraceGetEventMsg (line 966) | func PtraceGetEventMsg(pid int) (msg uint, err error) { function PtraceCont (line 973) | func PtraceCont(pid int, signal int) (err error) { function PtraceSyscall (line 977) | func PtraceSyscall(pid int, signal int) (err error) { function PtraceSingleStep (line 981) | func PtraceSingleStep(pid int) (err error) { return ptrace(PTRACE_SINGLE... function PtraceAttach (line 983) | func PtraceAttach(pid int) (err error) { return ptrace(PTRACE_ATTACH, pi... function PtraceDetach (line 985) | func PtraceDetach(pid int) (err error) { return ptrace(PTRACE_DETACH, pi... function Reboot (line 989) | func Reboot(cmd int) (err error) { function ReadDirent (line 993) | func ReadDirent(fd int, buf []byte) (n int, err error) { function direntIno (line 997) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 1001) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 1005) | func direntNamlen(buf []byte) (uint64, bool) { function Mount (line 1015) | func Mount(source string, target string, fstype string, flags uintptr, d... function Getpgrp (line 1060) | func Getpgrp() (pid int) { function Setuid (line 1100) | func Setuid(uid int) (err error) { function Setgid (line 1104) | func Setgid(uid int) (err error) { function Mmap (line 1134) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 1138) | func Munmap(b []byte) (err error) { function Vmsplice (line 1151) | func Vmsplice(fd int, iovs []Iovec, flags int) (int, error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_386.go function Getpagesize (line 17) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 19) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 21) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 27) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 36) | func Pipe(p []int) (err error) { function Pipe2 (line 49) | func Pipe2(p []int, flags int) (err error) { function mmap (line 97) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... type rlimit32 (line 105) | type rlimit32 struct constant rlimInf32 (line 112) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 113) | rlimInf64 = ^uint64(0) function Getrlimit (line 115) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 143) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function seek (line 170) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal... function Seek (line 172) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { constant _SOCKET (line 195) | _SOCKET = 1 constant _BIND (line 196) | _BIND = 2 constant _CONNECT (line 197) | _CONNECT = 3 constant _LISTEN (line 198) | _LISTEN = 4 constant _ACCEPT (line 199) | _ACCEPT = 5 constant _GETSOCKNAME (line 200) | _GETSOCKNAME = 6 constant _GETPEERNAME (line 201) | _GETPEERNAME = 7 constant _SOCKETPAIR (line 202) | _SOCKETPAIR = 8 constant _SEND (line 203) | _SEND = 9 constant _RECV (line 204) | _RECV = 10 constant _SENDTO (line 205) | _SENDTO = 11 constant _RECVFROM (line 206) | _RECVFROM = 12 constant _SHUTDOWN (line 207) | _SHUTDOWN = 13 constant _SETSOCKOPT (line 208) | _SETSOCKOPT = 14 constant _GETSOCKOPT (line 209) | _GETSOCKOPT = 15 constant _SENDMSG (line 210) | _SENDMSG = 16 constant _RECVMSG (line 211) | _RECVMSG = 17 constant _ACCEPT4 (line 212) | _ACCEPT4 = 18 constant _RECVMMSG (line 213) | _RECVMMSG = 19 constant _SENDMMSG (line 214) | _SENDMMSG = 20 function socketcall (line 217) | func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err sy... function rawsocketcall (line 218) | func rawsocketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err... function accept (line 220) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 228) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function getsockname (line 236) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err... function getpeername (line 244) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (err err... function socketpair (line 252) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { function bind (line 260) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 268) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 276) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 284) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 292) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 300) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ... function sendto (line 312) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock... function recvmsg (line 324) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 332) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function Listen (line 340) | func Listen(s int, n int) (err error) { function Shutdown (line 348) | func Shutdown(s, how int) (err error) { function Fstatfs (line 356) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 364) | func Statfs(path string, buf *Statfs_t) (err error) { method PC (line 376) | func (r *PtraceRegs) PC() uint64 { return uint64(uint32(r.Eip)) } method SetPC (line 378) | func (r *PtraceRegs) SetPC(pc uint64) { r.Eip = int32(pc) } method SetLen (line 380) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 384) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 388) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 394) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_amd64.go function Gettimeofday (line 64) | func Gettimeofday(tv *Timeval) (err error) { function Getpagesize (line 72) | func Getpagesize() int { return 4096 } function Time (line 74) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 88) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 90) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 96) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 105) | func Pipe(p []int) (err error) { function Pipe2 (line 118) | func Pipe2(p []int, flags int) (err error) { method PC (line 129) | func (r *PtraceRegs) PC() uint64 { return r.Rip } method SetPC (line 131) | func (r *PtraceRegs) SetPC(pc uint64) { r.Rip = pc } method SetLen (line 133) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 137) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 141) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 147) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go function gettimeofday (line 13) | func gettimeofday(tv *Timeval) (err syscall.Errno) FILE: vendor/golang.org/x/sys/unix/syscall_linux_arm.go function Getpagesize (line 14) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 16) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 18) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 24) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 31) | func Pipe(p []int) (err error) { function Pipe2 (line 44) | func Pipe2(p []int, flags int) (err error) { function seek (line 57) | func seek(fd int, offset int64, whence int) (newoffset int64, err syscal... function Seek (line 59) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Time (line 114) | func Time(t *Time_t) (Time_t, error) { function Utime (line 126) | func Utime(path string, buf *Utimbuf) error { function Fadvise (line 139) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fstatfs (line 149) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 157) | func Statfs(path string, buf *Statfs_t) (err error) { function mmap (line 169) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... type rlimit32 (line 177) | type rlimit32 struct constant rlimInf32 (line 184) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 185) | rlimInf64 = ^uint64(0) function Getrlimit (line 187) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 215) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 240) | func (r *PtraceRegs) PC() uint64 { return uint64(r.Uregs[15]) } method SetPC (line 242) | func (r *PtraceRegs) SetPC(pc uint64) { r.Uregs[15] = uint32(pc) } method SetLen (line 244) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 248) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 252) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 258) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_arm64.go function Stat (line 36) | func Stat(path string, stat *Stat_t) (err error) { function Lchown (line 40) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 44) | func Lstat(path string, stat *Stat_t) (err error) { function Getpagesize (line 69) | func Getpagesize() int { return 65536 } function TimespecToNsec (line 73) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 75) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 81) | func NsecToTimeval(nsec int64) (tv Timeval) { function Time (line 88) | func Time(t *Time_t) (Time_t, error) { function Utime (line 100) | func Utime(path string, buf *Utimbuf) error { function Pipe (line 108) | func Pipe(p []int) (err error) { function Pipe2 (line 121) | func Pipe2(p []int, flags int) (err error) { method PC (line 132) | func (r *PtraceRegs) PC() uint64 { return r.Pc } method SetPC (line 134) | func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc } method SetLen (line 136) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 140) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 144) | func (cmsg *Cmsghdr) SetLen(length int) { function InotifyInit (line 148) | func InotifyInit() (fd int, err error) { function Dup2 (line 152) | func Dup2(oldfd int, newfd int) (err error) { function Pause (line 156) | func Pause() (err error) { constant SYS_GETPGRP (line 168) | SYS_GETPGRP = 1060 constant SYS_UTIMES (line 169) | SYS_UTIMES = 1037 constant SYS_FUTIMESAT (line 170) | SYS_FUTIMESAT = 1066 constant SYS_PAUSE (line 171) | SYS_PAUSE = 1061 constant SYS_USTAT (line 172) | SYS_USTAT = 1070 constant SYS_UTIME (line 173) | SYS_UTIME = 1063 constant SYS_LCHOWN (line 174) | SYS_LCHOWN = 1032 constant SYS_TIME (line 175) | SYS_TIME = 1062 constant SYS_EPOLL_CREATE (line 176) | SYS_EPOLL_CREATE = 1042 constant SYS_EPOLL_WAIT (line 177) | SYS_EPOLL_WAIT = 1069 function Poll (line 180) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go function Getpagesize (line 57) | func Getpagesize() int { return 65536 } function Time (line 61) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 75) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 77) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 83) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 90) | func Pipe(p []int) (err error) { function Pipe2 (line 103) | func Pipe2(p []int, flags int) (err error) { function Ioperm (line 114) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 118) | func Iopl(level int) (err error) { type stat_t (line 122) | type stat_t struct function Fstat (line 148) | func Fstat(fd int, s *Stat_t) (err error) { function Lstat (line 155) | func Lstat(path string, s *Stat_t) (err error) { function Stat (line 162) | func Stat(path string, s *Stat_t) (err error) { function fillStat_t (line 169) | func fillStat_t(s *Stat_t, st *stat_t) { method PC (line 185) | func (r *PtraceRegs) PC() uint64 { return r.Regs[64] } method SetPC (line 187) | func (r *PtraceRegs) SetPC(pc uint64) { r.Regs[64] = pc } method SetLen (line 189) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 193) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 197) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 203) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go function Syscall9 (line 15) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function Fstatfs (line 74) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Statfs (line 82) | func Statfs(path string, buf *Statfs_t) (err error) { function Seek (line 94) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function TimespecToNsec (line 102) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 104) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 110) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe2 (line 119) | func Pipe2(p []int, flags int) (err error) { function Pipe (line 130) | func Pipe(p []int) (err error) { function mmap (line 143) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... constant rlimInf32 (line 151) | rlimInf32 = ^uint32(0) constant rlimInf64 (line 152) | rlimInf64 = ^uint64(0) type rlimit32 (line 154) | type rlimit32 struct function Getrlimit (line 161) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Setrlimit (line 189) | func Setrlimit(resource int, rlim *Rlimit) (err error) { method PC (line 214) | func (r *PtraceRegs) PC() uint64 { return uint64(r.Regs[64]) } method SetPC (line 216) | func (r *PtraceRegs) SetPC(pc uint64) { r.Regs[64] = uint32(pc) } method SetLen (line 218) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 222) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 226) | func (cmsg *Cmsghdr) SetLen(length int) { function Poll (line 232) | func Poll(fds []PollFd, timeout int) (n int, err error) { function Getpagesize (line 239) | func Getpagesize() int { return 4096 } FILE: vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go function Getpagesize (line 64) | func Getpagesize() int { return 65536 } function TimespecToNsec (line 71) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 73) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 79) | func NsecToTimeval(nsec int64) (tv Timeval) { method PC (line 86) | func (r *PtraceRegs) PC() uint64 { return r.Nip } method SetPC (line 88) | func (r *PtraceRegs) SetPC(pc uint64) { r.Nip = pc } method SetLen (line 90) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 94) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 98) | func (cmsg *Cmsghdr) SetLen(length int) { function Pipe (line 104) | func Pipe(p []int) (err error) { function Pipe2 (line 117) | func Pipe2(p []int, flags int) (err error) { function Poll (line 130) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_s390x.go function Getpagesize (line 49) | func Getpagesize() int { return 4096 } function Time (line 53) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 67) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 69) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 75) | func NsecToTimeval(nsec int64) (tv Timeval) { function Pipe (line 84) | func Pipe(p []int) (err error) { function Pipe2 (line 95) | func Pipe2(p []int, flags int) (err error) { function Ioperm (line 106) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 110) | func Iopl(level int) (err error) { method PC (line 114) | func (r *PtraceRegs) PC() uint64 { return r.Psw.Addr } method SetPC (line 116) | func (r *PtraceRegs) SetPC(pc uint64) { r.Psw.Addr = pc } method SetLen (line 118) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 122) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 126) | func (cmsg *Cmsghdr) SetLen(length int) { function mmap (line 132) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... constant netSocket (line 147) | netSocket = 1 constant netBind (line 148) | netBind = 2 constant netConnect (line 149) | netConnect = 3 constant netListen (line 150) | netListen = 4 constant netAccept (line 151) | netAccept = 5 constant netGetSockName (line 152) | netGetSockName = 6 constant netGetPeerName (line 153) | netGetPeerName = 7 constant netSocketPair (line 154) | netSocketPair = 8 constant netSend (line 155) | netSend = 9 constant netRecv (line 156) | netRecv = 10 constant netSendTo (line 157) | netSendTo = 11 constant netRecvFrom (line 158) | netRecvFrom = 12 constant netShutdown (line 159) | netShutdown = 13 constant netSetSockOpt (line 160) | netSetSockOpt = 14 constant netGetSockOpt (line 161) | netGetSockOpt = 15 constant netSendMsg (line 162) | netSendMsg = 16 constant netRecvMsg (line 163) | netRecvMsg = 17 constant netAccept4 (line 164) | netAccept4 = 18 constant netRecvMMsg (line 165) | netRecvMMsg = 19 constant netSendMMsg (line 166) | netSendMMsg = 20 function accept (line 169) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (int, error) { function accept4 (line 178) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function getsockname (line 187) | func getsockname(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error { function getpeername (line 196) | func getpeername(s int, rsa *RawSockaddrAny, addrlen *_Socklen) error { function socketpair (line 205) | func socketpair(domain int, typ int, flags int, fd *[2]int32) error { function bind (line 214) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) error { function connect (line 223) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) error { function socket (line 232) | func socket(domain int, typ int, proto int) (int, error) { function getsockopt (line 241) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 250) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 259) | func recvfrom(s int, p []byte, flags int, from *RawSockaddrAny, fromlen ... function sendto (line 272) | func sendto(s int, p []byte, flags int, to unsafe.Pointer, addrlen _Sock... function recvmsg (line 285) | func recvmsg(s int, msg *Msghdr, flags int) (int, error) { function sendmsg (line 294) | func sendmsg(s int, msg *Msghdr, flags int) (int, error) { function Listen (line 303) | func Listen(s int, n int) error { function Shutdown (line 312) | func Shutdown(s, how int) error { function Poll (line 323) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go function sysconf (line 66) | func sysconf(name int) (n int64, err syscall.Errno) function Getpagesize (line 72) | func Getpagesize() int { function Ioperm (line 81) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 85) | func Iopl(level int) (err error) { function Time (line 91) | func Time(t *Time_t) (tt Time_t, err error) { function TimespecToNsec (line 105) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 107) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 113) | func NsecToTimeval(nsec int64) (tv Timeval) { method PC (line 120) | func (r *PtraceRegs) PC() uint64 { return r.Tpc } method SetPC (line 122) | func (r *PtraceRegs) SetPC(pc uint64) { r.Tpc = pc } method SetLen (line 124) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 128) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 132) | func (cmsg *Cmsghdr) SetLen(length int) { function Pipe (line 138) | func Pipe(p []int) (err error) { function Pipe2 (line 151) | func Pipe2(p []int, flags int) (err error) { function Poll (line 164) | func Poll(fds []PollFd, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd.go type SockaddrDatalink (line 20) | type SockaddrDatalink struct function Syscall9 (line 32) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function sysctlNodes (line 34) | func sysctlNodes(mib []_C_int) (nodes []Sysctlnode, err error) { function nametomib (line 57) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 96) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 100) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 104) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 109) | func Pipe(p []int) (err error) { function Getdirentries (line 118) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function sendfile (line 123) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_386.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_no_getwd.go constant ImplementsGetwd (line 9) | ImplementsGetwd = false function Getwd (line 11) | func Getwd() (string, error) { return "", ENOTSUP } FILE: vendor/golang.org/x/sys/unix/syscall_openbsd.go type SockaddrDatalink (line 20) | type SockaddrDatalink struct function Syscall9 (line 32) | func Syscall9(trap, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 ... function nametomib (line 34) | func nametomib(name string) (mib []_C_int, err error) { function direntIno (line 56) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 60) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 64) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 69) | func Pipe(p []int) (err error) { function Getdirentries (line 81) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function sendfile (line 86) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Getfsstat (line 90) | func Getfsstat(buf []Statfs_t, flags int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_386.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go function Getpagesize (line 9) | func Getpagesize() int { return 4096 } function TimespecToNsec (line 11) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 13) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 19) | func NsecToTimeval(nsec int64) (tv Timeval) { function SetKevent (line 26) | func SetKevent(k *Kevent_t, fd, mode, flags int) { method SetLen (line 32) | func (iov *Iovec) SetLen(length int) { method SetControllen (line 36) | func (msghdr *Msghdr) SetControllen(length int) { method SetLen (line 40) | func (cmsg *Cmsghdr) SetLen(length int) { FILE: vendor/golang.org/x/sys/unix/syscall_solaris.go type syscallFunc (line 22) | type syscallFunc function rawSysvicall6 (line 24) | func rawSysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 ... function sysvicall6 (line 25) | func sysvicall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uin... type SockaddrDatalink (line 27) | type SockaddrDatalink struct function clen (line 38) | func clen(n []byte) int { function direntIno (line 47) | func direntIno(buf []byte) (uint64, bool) { function direntReclen (line 51) | func direntReclen(buf []byte) (uint64, bool) { function direntNamlen (line 55) | func direntNamlen(buf []byte) (uint64, bool) { function Pipe (line 65) | func Pipe(p []int) (err error) { method sockaddr (line 79) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 93) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, _Socklen, error) { method sockaddr (line 108) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) { function Getsockname (line 134) | func Getsockname(fd int) (sa Sockaddr, err error) { constant ImplementsGetwd (line 143) | ImplementsGetwd = true function Getwd (line 147) | func Getwd() (wd string, err error) { function Getgroups (line 168) | func Getgroups() (gids []int, err error) { function Setgroups (line 193) | func Setgroups(gids []int) (err error) { function ReadDirent (line 205) | func ReadDirent(fd int, buf []byte) (n int, err error) { type WaitStatus (line 217) | type WaitStatus method Exited (line 228) | func (w WaitStatus) Exited() bool { return w&mask == exited } method ExitStatus (line 230) | func (w WaitStatus) ExitStatus() int { method Signaled (line 237) | func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&ma... method Signal (line 239) | func (w WaitStatus) Signal() syscall.Signal { method CoreDump (line 247) | func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core !=... method Stopped (line 249) | func (w WaitStatus) Stopped() bool { return w&mask == stopped && sysca... method Continued (line 251) | func (w WaitStatus) Continued() bool { return w&mask == stopped && sys... method StopSignal (line 253) | func (w WaitStatus) StopSignal() syscall.Signal { method TrapCause (line 260) | func (w WaitStatus) TrapCause() int { return -1 } constant mask (line 220) | mask = 0x7F constant core (line 221) | core = 0x80 constant shift (line 222) | shift = 8 constant exited (line 224) | exited = 0 constant stopped (line 225) | stopped = 0x7F function Wait4 (line 264) | func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (i... function Gethostname (line 279) | func Gethostname() (name string, err error) { function Utimes (line 294) | func Utimes(path string, tv []Timeval) (err error) { function UtimesNano (line 306) | func UtimesNano(path string, ts []Timespec) error { function UtimesNanoAt (line 316) | func UtimesNanoAt(dirfd int, path string, ts []Timespec, flags int) error { function FcntlFlock (line 329) | func FcntlFlock(fd uintptr, cmd int, lk *Flock_t) error { function Futimesat (line 339) | func Futimesat(dirfd int, path string, tv []Timeval) error { function Futimes (line 356) | func Futimes(fd int, tv []Timeval) error { function anyToSockaddr (line 366) | func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) { function Accept (line 410) | func Accept(fd int) (nfd int, sa Sockaddr, err error) { function Recvmsg (line 427) | func Recvmsg(fd int, p, oob []byte, flags int) (n, oobn int, recvflags i... function Sendmsg (line 459) | func Sendmsg(fd int, p, oob []byte, to Sockaddr, flags int) (err error) { function SendmsgN (line 466) | func SendmsgN(fd int, p, oob []byte, to Sockaddr, flags int) (n int, err... function Acct (line 505) | func Acct(path string) (err error) { function IoctlSetInt (line 524) | func IoctlSetInt(fd int, req int, value int) (err error) { function IoctlSetWinsize (line 528) | func IoctlSetWinsize(fd int, req int, value *Winsize) (err error) { function IoctlSetTermios (line 532) | func IoctlSetTermios(fd int, req int, value *Termios) (err error) { function IoctlSetTermio (line 536) | func IoctlSetTermio(fd int, req int, value *Termio) (err error) { function IoctlGetInt (line 540) | func IoctlGetInt(fd int, req int) (int, error) { function IoctlGetWinsize (line 546) | func IoctlGetWinsize(fd int, req int) (*Winsize, error) { function IoctlGetTermios (line 552) | func IoctlGetTermios(fd int, req int) (*Termios, error) { function IoctlGetTermio (line 558) | func IoctlGetTermio(fd int, req int) (*Termio, error) { function readlen (line 668) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 677) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function Mmap (line 692) | func Mmap(fd int, offset int64, length int, prot int, flags int) (data [... function Munmap (line 696) | func Munmap(b []byte) (err error) { function Getpagesize (line 706) | func Getpagesize() int { FILE: vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go function TimespecToNsec (line 9) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 11) | func NsecToTimespec(nsec int64) (ts Timespec) { function NsecToTimeval (line 17) | func NsecToTimeval(nsec int64) (tv Timeval) { method SetLen (line 24) | func (iov *Iovec) SetLen(length int) { method SetLen (line 28) | func (cmsg *Cmsghdr) SetLen(length int) { function sendfile (line 32) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... FILE: vendor/golang.org/x/sys/unix/syscall_unix.go constant darwin64Bit (line 23) | darwin64Bit = runtime.GOOS == "darwin" && sizeofPtr == 8 constant dragonfly64Bit (line 24) | dragonfly64Bit = runtime.GOOS == "dragonfly" && sizeofPtr == 8 constant netbsd32Bit (line 25) | netbsd32Bit = runtime.GOOS == "netbsd" && sizeofPtr == 4 function errnoErr (line 38) | func errnoErr(e syscall.Errno) error { type mmapper (line 54) | type mmapper struct method Mmap (line 61) | func (m *mmapper) Mmap(fd int, offset int64, length int, prot int, fla... method Munmap (line 90) | func (m *mmapper) Munmap(data []byte) (err error) { function Read (line 112) | func Read(fd int, p []byte) (n int, err error) { function Write (line 125) | func Write(fd int, p []byte) (n int, err error) { type Sockaddr (line 140) | type Sockaddr interface type SockaddrInet4 (line 144) | type SockaddrInet4 struct type SockaddrInet6 (line 150) | type SockaddrInet6 struct type SockaddrUnix (line 157) | type SockaddrUnix struct function Bind (line 162) | func Bind(fd int, sa Sockaddr) (err error) { function Connect (line 170) | func Connect(fd int, sa Sockaddr) (err error) { function Getpeername (line 178) | func Getpeername(fd int) (sa Sockaddr, err error) { function GetsockoptInt (line 187) | func GetsockoptInt(fd, level, opt int) (value int, err error) { function Recvfrom (line 194) | func Recvfrom(fd int, p []byte, flags int) (n int, from Sockaddr, err er... function Sendto (line 206) | func Sendto(fd int, p []byte, flags int, to Sockaddr) (err error) { function SetsockoptByte (line 214) | func SetsockoptByte(fd, level, opt int, value byte) (err error) { function SetsockoptInt (line 218) | func SetsockoptInt(fd, level, opt int, value int) (err error) { function SetsockoptInet4Addr (line 223) | func SetsockoptInet4Addr(fd, level, opt int, value [4]byte) (err error) { function SetsockoptIPMreq (line 227) | func SetsockoptIPMreq(fd, level, opt int, mreq *IPMreq) (err error) { function SetsockoptIPv6Mreq (line 231) | func SetsockoptIPv6Mreq(fd, level, opt int, mreq *IPv6Mreq) (err error) { function SetsockoptICMPv6Filter (line 235) | func SetsockoptICMPv6Filter(fd, level, opt int, filter *ICMPv6Filter) er... function SetsockoptLinger (line 239) | func SetsockoptLinger(fd, level, opt int, l *Linger) (err error) { function SetsockoptString (line 243) | func SetsockoptString(fd, level, opt int, s string) (err error) { function SetsockoptTimeval (line 247) | func SetsockoptTimeval(fd, level, opt int, tv *Timeval) (err error) { function Socket (line 251) | func Socket(domain, typ, proto int) (fd int, err error) { function Socketpair (line 259) | func Socketpair(domain, typ, proto int) (fd [2]int, err error) { function Sendfile (line 269) | func Sendfile(outfd int, infd int, offset *int64, count int) (written in... function CloseOnExec (line 278) | func CloseOnExec(fd int) { fcntl(fd, F_SETFD, FD_CLOEXEC) } function SetNonblock (line 280) | func SetNonblock(fd int, nonblocking bool) (err error) { FILE: vendor/golang.org/x/sys/unix/syscall_unix_gc.go function Syscall (line 12) | func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) function Syscall6 (line 13) | func Syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err... function RawSyscall (line 14) | func RawSyscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.E... function RawSyscall6 (line 15) | func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, ... FILE: vendor/golang.org/x/sys/unix/types_darwin.go constant sizeofPtr (line 74) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 75) | sizeofShort = C.sizeof_short constant sizeofInt (line 76) | sizeofInt = C.sizeof_int constant sizeofLong (line 77) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 78) | sizeofLongLong = C.sizeof_longlong type _C_short (line 84) | type _C_short type _C_int (line 85) | type _C_int type _C_long (line 86) | type _C_long type _C_long_long (line 87) | type _C_long_long type Timespec (line 92) | type Timespec type Timeval (line 94) | type Timeval type Timeval32 (line 96) | type Timeval32 type Rusage (line 100) | type Rusage type Rlimit (line 102) | type Rlimit type _Gid_t (line 104) | type _Gid_t type Stat_t (line 108) | type Stat_t type Statfs_t (line 110) | type Statfs_t type Flock_t (line 112) | type Flock_t type Fstore_t (line 114) | type Fstore_t type Radvisory_t (line 116) | type Radvisory_t type Fbootstraptransfer_t (line 118) | type Fbootstraptransfer_t type Log2phys_t (line 120) | type Log2phys_t type Fsid (line 122) | type Fsid type Dirent (line 124) | type Dirent type RawSockaddrInet4 (line 128) | type RawSockaddrInet4 type RawSockaddrInet6 (line 130) | type RawSockaddrInet6 type RawSockaddrUnix (line 132) | type RawSockaddrUnix type RawSockaddrDatalink (line 134) | type RawSockaddrDatalink type RawSockaddr (line 136) | type RawSockaddr type RawSockaddrAny (line 138) | type RawSockaddrAny type _Socklen (line 140) | type _Socklen type Linger (line 142) | type Linger type Iovec (line 144) | type Iovec type IPMreq (line 146) | type IPMreq type IPv6Mreq (line 148) | type IPv6Mreq type Msghdr (line 150) | type Msghdr type Cmsghdr (line 152) | type Cmsghdr type Inet4Pktinfo (line 154) | type Inet4Pktinfo type Inet6Pktinfo (line 156) | type Inet6Pktinfo type IPv6MTUInfo (line 158) | type IPv6MTUInfo type ICMPv6Filter (line 160) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 163) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 164) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 165) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 166) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 167) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 168) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 169) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 170) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 171) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 172) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet4Pktinfo (line 173) | SizeofInet4Pktinfo = C.sizeof_struct_in_pktinfo constant SizeofInet6Pktinfo (line 174) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 175) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 176) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 182) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 183) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 184) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 189) | type Kevent_t type FdSet (line 193) | type FdSet constant SizeofIfMsghdr (line 198) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 199) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 200) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfmaMsghdr (line 201) | SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr constant SizeofIfmaMsghdr2 (line 202) | SizeofIfmaMsghdr2 = C.sizeof_struct_ifma_msghdr2 constant SizeofRtMsghdr (line 203) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 204) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 207) | type IfMsghdr type IfData (line 209) | type IfData type IfaMsghdr (line 211) | type IfaMsghdr type IfmaMsghdr (line 213) | type IfmaMsghdr type IfmaMsghdr2 (line 215) | type IfmaMsghdr2 type RtMsghdr (line 217) | type RtMsghdr type RtMetrics (line 219) | type RtMetrics constant SizeofBpfVersion (line 224) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 225) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 226) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 227) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 228) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 231) | type BpfVersion type BpfStat (line 233) | type BpfStat type BpfProgram (line 235) | type BpfProgram type BpfInsn (line 237) | type BpfInsn type BpfHdr (line 239) | type BpfHdr type Termios (line 243) | type Termios constant AT_FDCWD (line 248) | AT_FDCWD = C.AT_FDCWD constant AT_SYMLINK_NOFOLLOW (line 249) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW FILE: vendor/golang.org/x/sys/unix/types_dragonfly.go constant sizeofPtr (line 69) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 70) | sizeofShort = C.sizeof_short constant sizeofInt (line 71) | sizeofInt = C.sizeof_int constant sizeofLong (line 72) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 73) | sizeofLongLong = C.sizeof_longlong type _C_short (line 79) | type _C_short type _C_int (line 80) | type _C_int type _C_long (line 81) | type _C_long type _C_long_long (line 82) | type _C_long_long type Timespec (line 87) | type Timespec type Timeval (line 89) | type Timeval type Rusage (line 93) | type Rusage type Rlimit (line 95) | type Rlimit type _Gid_t (line 97) | type _Gid_t constant S_IFMT (line 102) | S_IFMT = C.S_IFMT constant S_IFIFO (line 103) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 104) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 105) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 106) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 107) | S_IFREG = C.S_IFREG constant S_IFLNK (line 108) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 109) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 110) | S_ISUID = C.S_ISUID constant S_ISGID (line 111) | S_ISGID = C.S_ISGID constant S_ISVTX (line 112) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 113) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 114) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 115) | S_IXUSR = C.S_IXUSR type Stat_t (line 118) | type Stat_t type Statfs_t (line 120) | type Statfs_t type Flock_t (line 122) | type Flock_t type Dirent (line 124) | type Dirent type Fsid (line 126) | type Fsid type RawSockaddrInet4 (line 130) | type RawSockaddrInet4 type RawSockaddrInet6 (line 132) | type RawSockaddrInet6 type RawSockaddrUnix (line 134) | type RawSockaddrUnix type RawSockaddrDatalink (line 136) | type RawSockaddrDatalink type RawSockaddr (line 138) | type RawSockaddr type RawSockaddrAny (line 140) | type RawSockaddrAny type _Socklen (line 142) | type _Socklen type Linger (line 144) | type Linger type Iovec (line 146) | type Iovec type IPMreq (line 148) | type IPMreq type IPv6Mreq (line 150) | type IPv6Mreq type Msghdr (line 152) | type Msghdr type Cmsghdr (line 154) | type Cmsghdr type Inet6Pktinfo (line 156) | type Inet6Pktinfo type IPv6MTUInfo (line 158) | type IPv6MTUInfo type ICMPv6Filter (line 160) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 163) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 164) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 165) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 166) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 167) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 168) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 169) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 170) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 171) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 172) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 173) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 174) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 175) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 181) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 182) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 183) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 188) | type Kevent_t type FdSet (line 192) | type FdSet constant SizeofIfMsghdr (line 197) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 198) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 199) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfmaMsghdr (line 200) | SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr constant SizeofIfAnnounceMsghdr (line 201) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 202) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 203) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 206) | type IfMsghdr type IfData (line 208) | type IfData type IfaMsghdr (line 210) | type IfaMsghdr type IfmaMsghdr (line 212) | type IfmaMsghdr type IfAnnounceMsghdr (line 214) | type IfAnnounceMsghdr type RtMsghdr (line 216) | type RtMsghdr type RtMetrics (line 218) | type RtMetrics constant SizeofBpfVersion (line 223) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 224) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 225) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 226) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 227) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 230) | type BpfVersion type BpfStat (line 232) | type BpfStat type BpfProgram (line 234) | type BpfProgram type BpfInsn (line 236) | type BpfInsn type BpfHdr (line 238) | type BpfHdr type Termios (line 242) | type Termios FILE: vendor/golang.org/x/sys/unix/types_freebsd.go constant sizeofPtr (line 154) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 155) | sizeofShort = C.sizeof_short constant sizeofInt (line 156) | sizeofInt = C.sizeof_int constant sizeofLong (line 157) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 158) | sizeofLongLong = C.sizeof_longlong type _C_short (line 164) | type _C_short type _C_int (line 165) | type _C_int type _C_long (line 166) | type _C_long type _C_long_long (line 167) | type _C_long_long type Timespec (line 172) | type Timespec type Timeval (line 174) | type Timeval type Rusage (line 178) | type Rusage type Rlimit (line 180) | type Rlimit type _Gid_t (line 182) | type _Gid_t constant S_IFMT (line 187) | S_IFMT = C.S_IFMT constant S_IFIFO (line 188) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 189) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 190) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 191) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 192) | S_IFREG = C.S_IFREG constant S_IFLNK (line 193) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 194) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 195) | S_ISUID = C.S_ISUID constant S_ISGID (line 196) | S_ISGID = C.S_ISGID constant S_ISVTX (line 197) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 198) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 199) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 200) | S_IXUSR = C.S_IXUSR type Stat_t (line 203) | type Stat_t type Statfs_t (line 205) | type Statfs_t type Flock_t (line 207) | type Flock_t type Dirent (line 209) | type Dirent type Fsid (line 211) | type Fsid constant FADV_NORMAL (line 216) | FADV_NORMAL = C.POSIX_FADV_NORMAL constant FADV_RANDOM (line 217) | FADV_RANDOM = C.POSIX_FADV_RANDOM constant FADV_SEQUENTIAL (line 218) | FADV_SEQUENTIAL = C.POSIX_FADV_SEQUENTIAL constant FADV_WILLNEED (line 219) | FADV_WILLNEED = C.POSIX_FADV_WILLNEED constant FADV_DONTNEED (line 220) | FADV_DONTNEED = C.POSIX_FADV_DONTNEED constant FADV_NOREUSE (line 221) | FADV_NOREUSE = C.POSIX_FADV_NOREUSE type RawSockaddrInet4 (line 226) | type RawSockaddrInet4 type RawSockaddrInet6 (line 228) | type RawSockaddrInet6 type RawSockaddrUnix (line 230) | type RawSockaddrUnix type RawSockaddrDatalink (line 232) | type RawSockaddrDatalink type RawSockaddr (line 234) | type RawSockaddr type RawSockaddrAny (line 236) | type RawSockaddrAny type _Socklen (line 238) | type _Socklen type Linger (line 240) | type Linger type Iovec (line 242) | type Iovec type IPMreq (line 244) | type IPMreq type IPMreqn (line 246) | type IPMreqn type IPv6Mreq (line 248) | type IPv6Mreq type Msghdr (line 250) | type Msghdr type Cmsghdr (line 252) | type Cmsghdr type Inet6Pktinfo (line 254) | type Inet6Pktinfo type IPv6MTUInfo (line 256) | type IPv6MTUInfo type ICMPv6Filter (line 258) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 261) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 262) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 263) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 264) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 265) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 266) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 267) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPMreqn (line 268) | SizeofIPMreqn = C.sizeof_struct_ip_mreqn constant SizeofIPv6Mreq (line 269) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 270) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 271) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 272) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 273) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 274) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 280) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 281) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 282) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 287) | type Kevent_t type FdSet (line 291) | type FdSet constant sizeofIfMsghdr (line 296) | sizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfMsghdr (line 297) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr8 constant sizeofIfData (line 298) | sizeofIfData = C.sizeof_struct_if_data constant SizeofIfData (line 299) | SizeofIfData = C.sizeof_struct_if_data8 constant SizeofIfaMsghdr (line 300) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfmaMsghdr (line 301) | SizeofIfmaMsghdr = C.sizeof_struct_ifma_msghdr constant SizeofIfAnnounceMsghdr (line 302) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 303) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 304) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type ifMsghdr (line 307) | type ifMsghdr type IfMsghdr (line 309) | type IfMsghdr type ifData (line 311) | type ifData type IfData (line 313) | type IfData type IfaMsghdr (line 315) | type IfaMsghdr type IfmaMsghdr (line 317) | type IfmaMsghdr type IfAnnounceMsghdr (line 319) | type IfAnnounceMsghdr type RtMsghdr (line 321) | type RtMsghdr type RtMetrics (line 323) | type RtMetrics constant SizeofBpfVersion (line 328) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 329) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfZbuf (line 330) | SizeofBpfZbuf = C.sizeof_struct_bpf_zbuf constant SizeofBpfProgram (line 331) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 332) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 333) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr constant SizeofBpfZbufHeader (line 334) | SizeofBpfZbufHeader = C.sizeof_struct_bpf_zbuf_header type BpfVersion (line 337) | type BpfVersion type BpfStat (line 339) | type BpfStat type BpfZbuf (line 341) | type BpfZbuf type BpfProgram (line 343) | type BpfProgram type BpfInsn (line 345) | type BpfInsn type BpfHdr (line 347) | type BpfHdr type BpfZbufHeader (line 349) | type BpfZbufHeader type Termios (line 353) | type Termios FILE: vendor/golang.org/x/sys/unix/types_linux.go constant sizeofPtr (line 148) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 149) | sizeofShort = C.sizeof_short constant sizeofInt (line 150) | sizeofInt = C.sizeof_int constant sizeofLong (line 151) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 152) | sizeofLongLong = C.sizeof_longlong constant PathMax (line 153) | PathMax = C.PATH_MAX type _C_short (line 159) | type _C_short type _C_int (line 160) | type _C_int type _C_long (line 161) | type _C_long type _C_long_long (line 162) | type _C_long_long type Timespec (line 167) | type Timespec type Timeval (line 169) | type Timeval type Timex (line 171) | type Timex type Time_t (line 173) | type Time_t type Tms (line 175) | type Tms type Utimbuf (line 177) | type Utimbuf type Rusage (line 181) | type Rusage type Rlimit (line 183) | type Rlimit type _Gid_t (line 185) | type _Gid_t type Stat_t (line 189) | type Stat_t type Statfs_t (line 191) | type Statfs_t type Dirent (line 193) | type Dirent type Fsid (line 195) | type Fsid type Flock_t (line 197) | type Flock_t constant FADV_NORMAL (line 202) | FADV_NORMAL = C.POSIX_FADV_NORMAL constant FADV_RANDOM (line 203) | FADV_RANDOM = C.POSIX_FADV_RANDOM constant FADV_SEQUENTIAL (line 204) | FADV_SEQUENTIAL = C.POSIX_FADV_SEQUENTIAL constant FADV_WILLNEED (line 205) | FADV_WILLNEED = C.POSIX_FADV_WILLNEED constant FADV_DONTNEED (line 206) | FADV_DONTNEED = C.POSIX_FADV_DONTNEED constant FADV_NOREUSE (line 207) | FADV_NOREUSE = C.POSIX_FADV_NOREUSE type RawSockaddrInet4 (line 212) | type RawSockaddrInet4 type RawSockaddrInet6 (line 214) | type RawSockaddrInet6 type RawSockaddrUnix (line 216) | type RawSockaddrUnix type RawSockaddrLinklayer (line 218) | type RawSockaddrLinklayer type RawSockaddrNetlink (line 220) | type RawSockaddrNetlink type RawSockaddrHCI (line 222) | type RawSockaddrHCI type RawSockaddrCAN (line 224) | type RawSockaddrCAN type RawSockaddrALG (line 226) | type RawSockaddrALG type RawSockaddrVM (line 228) | type RawSockaddrVM type RawSockaddr (line 230) | type RawSockaddr type RawSockaddrAny (line 232) | type RawSockaddrAny type _Socklen (line 234) | type _Socklen type Linger (line 236) | type Linger type Iovec (line 238) | type Iovec type IPMreq (line 240) | type IPMreq type IPMreqn (line 242) | type IPMreqn type IPv6Mreq (line 244) | type IPv6Mreq type Msghdr (line 246) | type Msghdr type Cmsghdr (line 248) | type Cmsghdr type Inet4Pktinfo (line 250) | type Inet4Pktinfo type Inet6Pktinfo (line 252) | type Inet6Pktinfo type IPv6MTUInfo (line 254) | type IPv6MTUInfo type ICMPv6Filter (line 256) | type ICMPv6Filter type Ucred (line 258) | type Ucred type TCPInfo (line 260) | type TCPInfo constant SizeofSockaddrInet4 (line 263) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 264) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 265) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 266) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrLinklayer (line 267) | SizeofSockaddrLinklayer = C.sizeof_struct_sockaddr_ll constant SizeofSockaddrNetlink (line 268) | SizeofSockaddrNetlink = C.sizeof_struct_sockaddr_nl constant SizeofSockaddrHCI (line 269) | SizeofSockaddrHCI = C.sizeof_struct_sockaddr_hci constant SizeofSockaddrCAN (line 270) | SizeofSockaddrCAN = C.sizeof_struct_sockaddr_can constant SizeofSockaddrALG (line 271) | SizeofSockaddrALG = C.sizeof_struct_sockaddr_alg constant SizeofSockaddrVM (line 272) | SizeofSockaddrVM = C.sizeof_struct_sockaddr_vm constant SizeofLinger (line 273) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 274) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPMreqn (line 275) | SizeofIPMreqn = C.sizeof_struct_ip_mreqn constant SizeofIPv6Mreq (line 276) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 277) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 278) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet4Pktinfo (line 279) | SizeofInet4Pktinfo = C.sizeof_struct_in_pktinfo constant SizeofInet6Pktinfo (line 280) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 281) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 282) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant SizeofUcred (line 283) | SizeofUcred = C.sizeof_struct_ucred constant SizeofTCPInfo (line 284) | SizeofTCPInfo = C.sizeof_struct_tcp_info constant IFA_UNSPEC (line 290) | IFA_UNSPEC = C.IFA_UNSPEC constant IFA_ADDRESS (line 291) | IFA_ADDRESS = C.IFA_ADDRESS constant IFA_LOCAL (line 292) | IFA_LOCAL = C.IFA_LOCAL constant IFA_LABEL (line 293) | IFA_LABEL = C.IFA_LABEL constant IFA_BROADCAST (line 294) | IFA_BROADCAST = C.IFA_BROADCAST constant IFA_ANYCAST (line 295) | IFA_ANYCAST = C.IFA_ANYCAST constant IFA_CACHEINFO (line 296) | IFA_CACHEINFO = C.IFA_CACHEINFO constant IFA_MULTICAST (line 297) | IFA_MULTICAST = C.IFA_MULTICAST constant IFLA_UNSPEC (line 298) | IFLA_UNSPEC = C.IFLA_UNSPEC constant IFLA_ADDRESS (line 299) | IFLA_ADDRESS = C.IFLA_ADDRESS constant IFLA_BROADCAST (line 300) | IFLA_BROADCAST = C.IFLA_BROADCAST constant IFLA_IFNAME (line 301) | IFLA_IFNAME = C.IFLA_IFNAME constant IFLA_MTU (line 302) | IFLA_MTU = C.IFLA_MTU constant IFLA_LINK (line 303) | IFLA_LINK = C.IFLA_LINK constant IFLA_QDISC (line 304) | IFLA_QDISC = C.IFLA_QDISC constant IFLA_STATS (line 305) | IFLA_STATS = C.IFLA_STATS constant IFLA_COST (line 306) | IFLA_COST = C.IFLA_COST constant IFLA_PRIORITY (line 307) | IFLA_PRIORITY = C.IFLA_PRIORITY constant IFLA_MASTER (line 308) | IFLA_MASTER = C.IFLA_MASTER constant IFLA_WIRELESS (line 309) | IFLA_WIRELESS = C.IFLA_WIRELESS constant IFLA_PROTINFO (line 310) | IFLA_PROTINFO = C.IFLA_PROTINFO constant IFLA_TXQLEN (line 311) | IFLA_TXQLEN = C.IFLA_TXQLEN constant IFLA_MAP (line 312) | IFLA_MAP = C.IFLA_MAP constant IFLA_WEIGHT (line 313) | IFLA_WEIGHT = C.IFLA_WEIGHT constant IFLA_OPERSTATE (line 314) | IFLA_OPERSTATE = C.IFLA_OPERSTATE constant IFLA_LINKMODE (line 315) | IFLA_LINKMODE = C.IFLA_LINKMODE constant IFLA_LINKINFO (line 316) | IFLA_LINKINFO = C.IFLA_LINKINFO constant IFLA_NET_NS_PID (line 317) | IFLA_NET_NS_PID = C.IFLA_NET_NS_PID constant IFLA_IFALIAS (line 318) | IFLA_IFALIAS = C.IFLA_IFALIAS constant IFLA_MAX (line 319) | IFLA_MAX = C.IFLA_MAX constant RT_SCOPE_UNIVERSE (line 320) | RT_SCOPE_UNIVERSE = C.RT_SCOPE_UNIVERSE constant RT_SCOPE_SITE (line 321) | RT_SCOPE_SITE = C.RT_SCOPE_SITE constant RT_SCOPE_LINK (line 322) | RT_SCOPE_LINK = C.RT_SCOPE_LINK constant RT_SCOPE_HOST (line 323) | RT_SCOPE_HOST = C.RT_SCOPE_HOST constant RT_SCOPE_NOWHERE (line 324) | RT_SCOPE_NOWHERE = C.RT_SCOPE_NOWHERE constant RT_TABLE_UNSPEC (line 325) | RT_TABLE_UNSPEC = C.RT_TABLE_UNSPEC constant RT_TABLE_COMPAT (line 326) | RT_TABLE_COMPAT = C.RT_TABLE_COMPAT constant RT_TABLE_DEFAULT (line 327) | RT_TABLE_DEFAULT = C.RT_TABLE_DEFAULT constant RT_TABLE_MAIN (line 328) | RT_TABLE_MAIN = C.RT_TABLE_MAIN constant RT_TABLE_LOCAL (line 329) | RT_TABLE_LOCAL = C.RT_TABLE_LOCAL constant RT_TABLE_MAX (line 330) | RT_TABLE_MAX = C.RT_TABLE_MAX constant RTA_UNSPEC (line 331) | RTA_UNSPEC = C.RTA_UNSPEC constant RTA_DST (line 332) | RTA_DST = C.RTA_DST constant RTA_SRC (line 333) | RTA_SRC = C.RTA_SRC constant RTA_IIF (line 334) | RTA_IIF = C.RTA_IIF constant RTA_OIF (line 335) | RTA_OIF = C.RTA_OIF constant RTA_GATEWAY (line 336) | RTA_GATEWAY = C.RTA_GATEWAY constant RTA_PRIORITY (line 337) | RTA_PRIORITY = C.RTA_PRIORITY constant RTA_PREFSRC (line 338) | RTA_PREFSRC = C.RTA_PREFSRC constant RTA_METRICS (line 339) | RTA_METRICS = C.RTA_METRICS constant RTA_MULTIPATH (line 340) | RTA_MULTIPATH = C.RTA_MULTIPATH constant RTA_FLOW (line 341) | RTA_FLOW = C.RTA_FLOW constant RTA_CACHEINFO (line 342) | RTA_CACHEINFO = C.RTA_CACHEINFO constant RTA_TABLE (line 343) | RTA_TABLE = C.RTA_TABLE constant RTN_UNSPEC (line 344) | RTN_UNSPEC = C.RTN_UNSPEC constant RTN_UNICAST (line 345) | RTN_UNICAST = C.RTN_UNICAST constant RTN_LOCAL (line 346) | RTN_LOCAL = C.RTN_LOCAL constant RTN_BROADCAST (line 347) | RTN_BROADCAST = C.RTN_BROADCAST constant RTN_ANYCAST (line 348) | RTN_ANYCAST = C.RTN_ANYCAST constant RTN_MULTICAST (line 349) | RTN_MULTICAST = C.RTN_MULTICAST constant RTN_BLACKHOLE (line 350) | RTN_BLACKHOLE = C.RTN_BLACKHOLE constant RTN_UNREACHABLE (line 351) | RTN_UNREACHABLE = C.RTN_UNREACHABLE constant RTN_PROHIBIT (line 352) | RTN_PROHIBIT = C.RTN_PROHIBIT constant RTN_THROW (line 353) | RTN_THROW = C.RTN_THROW constant RTN_NAT (line 354) | RTN_NAT = C.RTN_NAT constant RTN_XRESOLVE (line 355) | RTN_XRESOLVE = C.RTN_XRESOLVE constant RTNLGRP_NONE (line 356) | RTNLGRP_NONE = C.RTNLGRP_NONE constant RTNLGRP_LINK (line 357) | RTNLGRP_LINK = C.RTNLGRP_LINK constant RTNLGRP_NOTIFY (line 358) | RTNLGRP_NOTIFY = C.RTNLGRP_NOTIFY constant RTNLGRP_NEIGH (line 359) | RTNLGRP_NEIGH = C.RTNLGRP_NEIGH constant RTNLGRP_TC (line 360) | RTNLGRP_TC = C.RTNLGRP_TC constant RTNLGRP_IPV4_IFADDR (line 361) | RTNLGRP_IPV4_IFADDR = C.RTNLGRP_IPV4_IFADDR constant RTNLGRP_IPV4_MROUTE (line 362) | RTNLGRP_IPV4_MROUTE = C.RTNLGRP_IPV4_MROUTE constant RTNLGRP_IPV4_ROUTE (line 363) | RTNLGRP_IPV4_ROUTE = C.RTNLGRP_IPV4_ROUTE constant RTNLGRP_IPV4_RULE (line 364) | RTNLGRP_IPV4_RULE = C.RTNLGRP_IPV4_RULE constant RTNLGRP_IPV6_IFADDR (line 365) | RTNLGRP_IPV6_IFADDR = C.RTNLGRP_IPV6_IFADDR constant RTNLGRP_IPV6_MROUTE (line 366) | RTNLGRP_IPV6_MROUTE = C.RTNLGRP_IPV6_MROUTE constant RTNLGRP_IPV6_ROUTE (line 367) | RTNLGRP_IPV6_ROUTE = C.RTNLGRP_IPV6_ROUTE constant RTNLGRP_IPV6_IFINFO (line 368) | RTNLGRP_IPV6_IFINFO = C.RTNLGRP_IPV6_IFINFO constant RTNLGRP_IPV6_PREFIX (line 369) | RTNLGRP_IPV6_PREFIX = C.RTNLGRP_IPV6_PREFIX constant RTNLGRP_IPV6_RULE (line 370) | RTNLGRP_IPV6_RULE = C.RTNLGRP_IPV6_RULE constant RTNLGRP_ND_USEROPT (line 371) | RTNLGRP_ND_USEROPT = C.RTNLGRP_ND_USEROPT constant SizeofNlMsghdr (line 372) | SizeofNlMsghdr = C.sizeof_struct_nlmsghdr constant SizeofNlMsgerr (line 373) | SizeofNlMsgerr = C.sizeof_struct_nlmsgerr constant SizeofRtGenmsg (line 374) | SizeofRtGenmsg = C.sizeof_struct_rtgenmsg constant SizeofNlAttr (line 375) | SizeofNlAttr = C.sizeof_struct_nlattr constant SizeofRtAttr (line 376) | SizeofRtAttr = C.sizeof_struct_rtattr constant SizeofIfInfomsg (line 377) | SizeofIfInfomsg = C.sizeof_struct_ifinfomsg constant SizeofIfAddrmsg (line 378) | SizeofIfAddrmsg = C.sizeof_struct_ifaddrmsg constant SizeofRtMsg (line 379) | SizeofRtMsg = C.sizeof_struct_rtmsg constant SizeofRtNexthop (line 380) | SizeofRtNexthop = C.sizeof_struct_rtnexthop type NlMsghdr (line 383) | type NlMsghdr type NlMsgerr (line 385) | type NlMsgerr type RtGenmsg (line 387) | type RtGenmsg type NlAttr (line 389) | type NlAttr type RtAttr (line 391) | type RtAttr type IfInfomsg (line 393) | type IfInfomsg type IfAddrmsg (line 395) | type IfAddrmsg type RtMsg (line 397) | type RtMsg type RtNexthop (line 399) | type RtNexthop constant SizeofSockFilter (line 404) | SizeofSockFilter = C.sizeof_struct_sock_filter constant SizeofSockFprog (line 405) | SizeofSockFprog = C.sizeof_struct_sock_fprog type SockFilter (line 408) | type SockFilter type SockFprog (line 410) | type SockFprog type InotifyEvent (line 414) | type InotifyEvent constant SizeofInotifyEvent (line 416) | SizeofInotifyEvent = C.sizeof_struct_inotify_event type PtraceRegs (line 421) | type PtraceRegs type ptracePsw (line 424) | type ptracePsw type ptraceFpregs (line 426) | type ptraceFpregs type ptracePer (line 428) | type ptracePer type FdSet (line 432) | type FdSet type Sysinfo_t (line 434) | type Sysinfo_t type Utsname (line 436) | type Utsname type Ustat_t (line 438) | type Ustat_t type EpollEvent (line 440) | type EpollEvent constant AT_FDCWD (line 443) | AT_FDCWD = C.AT_FDCWD constant AT_REMOVEDIR (line 444) | AT_REMOVEDIR = C.AT_REMOVEDIR constant AT_SYMLINK_FOLLOW (line 445) | AT_SYMLINK_FOLLOW = C.AT_SYMLINK_FOLLOW constant AT_SYMLINK_NOFOLLOW (line 446) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW type PollFd (line 449) | type PollFd constant POLLIN (line 452) | POLLIN = C.POLLIN constant POLLPRI (line 453) | POLLPRI = C.POLLPRI constant POLLOUT (line 454) | POLLOUT = C.POLLOUT constant POLLRDHUP (line 455) | POLLRDHUP = C.POLLRDHUP constant POLLERR (line 456) | POLLERR = C.POLLERR constant POLLHUP (line 457) | POLLHUP = C.POLLHUP constant POLLNVAL (line 458) | POLLNVAL = C.POLLNVAL type Sigset_t (line 461) | type Sigset_t constant _SC_PAGESIZE (line 465) | _SC_PAGESIZE = C._SC_PAGESIZE type Termios (line 469) | type Termios FILE: vendor/golang.org/x/sys/unix/types_netbsd.go constant sizeofPtr (line 71) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 72) | sizeofShort = C.sizeof_short constant sizeofInt (line 73) | sizeofInt = C.sizeof_int constant sizeofLong (line 74) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 75) | sizeofLongLong = C.sizeof_longlong type _C_short (line 81) | type _C_short type _C_int (line 82) | type _C_int type _C_long (line 83) | type _C_long type _C_long_long (line 84) | type _C_long_long type Timespec (line 89) | type Timespec type Timeval (line 91) | type Timeval type Rusage (line 95) | type Rusage type Rlimit (line 97) | type Rlimit type _Gid_t (line 99) | type _Gid_t type Stat_t (line 103) | type Stat_t type Statfs_t (line 105) | type Statfs_t type Flock_t (line 107) | type Flock_t type Dirent (line 109) | type Dirent type Fsid (line 111) | type Fsid type RawSockaddrInet4 (line 115) | type RawSockaddrInet4 type RawSockaddrInet6 (line 117) | type RawSockaddrInet6 type RawSockaddrUnix (line 119) | type RawSockaddrUnix type RawSockaddrDatalink (line 121) | type RawSockaddrDatalink type RawSockaddr (line 123) | type RawSockaddr type RawSockaddrAny (line 125) | type RawSockaddrAny type _Socklen (line 127) | type _Socklen type Linger (line 129) | type Linger type Iovec (line 131) | type Iovec type IPMreq (line 133) | type IPMreq type IPv6Mreq (line 135) | type IPv6Mreq type Msghdr (line 137) | type Msghdr type Cmsghdr (line 139) | type Cmsghdr type Inet6Pktinfo (line 141) | type Inet6Pktinfo type IPv6MTUInfo (line 143) | type IPv6MTUInfo type ICMPv6Filter (line 145) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 148) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 149) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 150) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 151) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 152) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 153) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 154) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 155) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 156) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 157) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 158) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 159) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 160) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 166) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 167) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 168) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 173) | type Kevent_t type FdSet (line 177) | type FdSet constant SizeofIfMsghdr (line 182) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 183) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 184) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfAnnounceMsghdr (line 185) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 186) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 187) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 190) | type IfMsghdr type IfData (line 192) | type IfData type IfaMsghdr (line 194) | type IfaMsghdr type IfAnnounceMsghdr (line 196) | type IfAnnounceMsghdr type RtMsghdr (line 198) | type RtMsghdr type RtMetrics (line 200) | type RtMetrics type Mclpool (line 202) | type Mclpool constant SizeofBpfVersion (line 207) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 208) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 209) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 210) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 211) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 214) | type BpfVersion type BpfStat (line 216) | type BpfStat type BpfProgram (line 218) | type BpfProgram type BpfInsn (line 220) | type BpfInsn type BpfHdr (line 222) | type BpfHdr type BpfTimeval (line 224) | type BpfTimeval type Termios (line 228) | type Termios type Sysctlnode (line 232) | type Sysctlnode FILE: vendor/golang.org/x/sys/unix/types_openbsd.go constant sizeofPtr (line 70) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 71) | sizeofShort = C.sizeof_short constant sizeofInt (line 72) | sizeofInt = C.sizeof_int constant sizeofLong (line 73) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 74) | sizeofLongLong = C.sizeof_longlong type _C_short (line 80) | type _C_short type _C_int (line 81) | type _C_int type _C_long (line 82) | type _C_long type _C_long_long (line 83) | type _C_long_long type Timespec (line 88) | type Timespec type Timeval (line 90) | type Timeval type Rusage (line 94) | type Rusage type Rlimit (line 96) | type Rlimit type _Gid_t (line 98) | type _Gid_t constant S_IFMT (line 103) | S_IFMT = C.S_IFMT constant S_IFIFO (line 104) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 105) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 106) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 107) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 108) | S_IFREG = C.S_IFREG constant S_IFLNK (line 109) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 110) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 111) | S_ISUID = C.S_ISUID constant S_ISGID (line 112) | S_ISGID = C.S_ISGID constant S_ISVTX (line 113) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 114) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 115) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 116) | S_IXUSR = C.S_IXUSR type Stat_t (line 119) | type Stat_t type Statfs_t (line 121) | type Statfs_t type Flock_t (line 123) | type Flock_t type Dirent (line 125) | type Dirent type Fsid (line 127) | type Fsid type RawSockaddrInet4 (line 131) | type RawSockaddrInet4 type RawSockaddrInet6 (line 133) | type RawSockaddrInet6 type RawSockaddrUnix (line 135) | type RawSockaddrUnix type RawSockaddrDatalink (line 137) | type RawSockaddrDatalink type RawSockaddr (line 139) | type RawSockaddr type RawSockaddrAny (line 141) | type RawSockaddrAny type _Socklen (line 143) | type _Socklen type Linger (line 145) | type Linger type Iovec (line 147) | type Iovec type IPMreq (line 149) | type IPMreq type IPv6Mreq (line 151) | type IPv6Mreq type Msghdr (line 153) | type Msghdr type Cmsghdr (line 155) | type Cmsghdr type Inet6Pktinfo (line 157) | type Inet6Pktinfo type IPv6MTUInfo (line 159) | type IPv6MTUInfo type ICMPv6Filter (line 161) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 164) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 165) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 166) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 167) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 168) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 169) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 170) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 171) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 172) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 173) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 174) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 175) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 176) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter constant PTRACE_TRACEME (line 182) | PTRACE_TRACEME = C.PT_TRACE_ME constant PTRACE_CONT (line 183) | PTRACE_CONT = C.PT_CONTINUE constant PTRACE_KILL (line 184) | PTRACE_KILL = C.PT_KILL type Kevent_t (line 189) | type Kevent_t type FdSet (line 193) | type FdSet constant SizeofIfMsghdr (line 198) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 199) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 200) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofIfAnnounceMsghdr (line 201) | SizeofIfAnnounceMsghdr = C.sizeof_struct_if_announcemsghdr constant SizeofRtMsghdr (line 202) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 203) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 206) | type IfMsghdr type IfData (line 208) | type IfData type IfaMsghdr (line 210) | type IfaMsghdr type IfAnnounceMsghdr (line 212) | type IfAnnounceMsghdr type RtMsghdr (line 214) | type RtMsghdr type RtMetrics (line 216) | type RtMetrics type Mclpool (line 218) | type Mclpool constant SizeofBpfVersion (line 223) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 224) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 225) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 226) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 227) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 230) | type BpfVersion type BpfStat (line 232) | type BpfStat type BpfProgram (line 234) | type BpfProgram type BpfInsn (line 236) | type BpfInsn type BpfHdr (line 238) | type BpfHdr type BpfTimeval (line 240) | type BpfTimeval type Termios (line 244) | type Termios FILE: vendor/golang.org/x/sys/unix/types_solaris.go constant sizeofPtr (line 79) | sizeofPtr = C.sizeofPtr constant sizeofShort (line 80) | sizeofShort = C.sizeof_short constant sizeofInt (line 81) | sizeofInt = C.sizeof_int constant sizeofLong (line 82) | sizeofLong = C.sizeof_long constant sizeofLongLong (line 83) | sizeofLongLong = C.sizeof_longlong constant PathMax (line 84) | PathMax = C.PATH_MAX constant MaxHostNameLen (line 85) | MaxHostNameLen = C.MAXHOSTNAMELEN type _C_short (line 91) | type _C_short type _C_int (line 92) | type _C_int type _C_long (line 93) | type _C_long type _C_long_long (line 94) | type _C_long_long type Timespec (line 99) | type Timespec type Timeval (line 101) | type Timeval type Timeval32 (line 103) | type Timeval32 type Tms (line 105) | type Tms type Utimbuf (line 107) | type Utimbuf type Rusage (line 111) | type Rusage type Rlimit (line 113) | type Rlimit type _Gid_t (line 115) | type _Gid_t constant S_IFMT (line 120) | S_IFMT = C.S_IFMT constant S_IFIFO (line 121) | S_IFIFO = C.S_IFIFO constant S_IFCHR (line 122) | S_IFCHR = C.S_IFCHR constant S_IFDIR (line 123) | S_IFDIR = C.S_IFDIR constant S_IFBLK (line 124) | S_IFBLK = C.S_IFBLK constant S_IFREG (line 125) | S_IFREG = C.S_IFREG constant S_IFLNK (line 126) | S_IFLNK = C.S_IFLNK constant S_IFSOCK (line 127) | S_IFSOCK = C.S_IFSOCK constant S_ISUID (line 128) | S_ISUID = C.S_ISUID constant S_ISGID (line 129) | S_ISGID = C.S_ISGID constant S_ISVTX (line 130) | S_ISVTX = C.S_ISVTX constant S_IRUSR (line 131) | S_IRUSR = C.S_IRUSR constant S_IWUSR (line 132) | S_IWUSR = C.S_IWUSR constant S_IXUSR (line 133) | S_IXUSR = C.S_IXUSR type Stat_t (line 136) | type Stat_t type Flock_t (line 138) | type Flock_t type Dirent (line 140) | type Dirent type RawSockaddrInet4 (line 144) | type RawSockaddrInet4 type RawSockaddrInet6 (line 146) | type RawSockaddrInet6 type RawSockaddrUnix (line 148) | type RawSockaddrUnix type RawSockaddrDatalink (line 150) | type RawSockaddrDatalink type RawSockaddr (line 152) | type RawSockaddr type RawSockaddrAny (line 154) | type RawSockaddrAny type _Socklen (line 156) | type _Socklen type Linger (line 158) | type Linger type Iovec (line 160) | type Iovec type IPMreq (line 162) | type IPMreq type IPv6Mreq (line 164) | type IPv6Mreq type Msghdr (line 166) | type Msghdr type Cmsghdr (line 168) | type Cmsghdr type Inet6Pktinfo (line 170) | type Inet6Pktinfo type IPv6MTUInfo (line 172) | type IPv6MTUInfo type ICMPv6Filter (line 174) | type ICMPv6Filter constant SizeofSockaddrInet4 (line 177) | SizeofSockaddrInet4 = C.sizeof_struct_sockaddr_in constant SizeofSockaddrInet6 (line 178) | SizeofSockaddrInet6 = C.sizeof_struct_sockaddr_in6 constant SizeofSockaddrAny (line 179) | SizeofSockaddrAny = C.sizeof_struct_sockaddr_any constant SizeofSockaddrUnix (line 180) | SizeofSockaddrUnix = C.sizeof_struct_sockaddr_un constant SizeofSockaddrDatalink (line 181) | SizeofSockaddrDatalink = C.sizeof_struct_sockaddr_dl constant SizeofLinger (line 182) | SizeofLinger = C.sizeof_struct_linger constant SizeofIPMreq (line 183) | SizeofIPMreq = C.sizeof_struct_ip_mreq constant SizeofIPv6Mreq (line 184) | SizeofIPv6Mreq = C.sizeof_struct_ipv6_mreq constant SizeofMsghdr (line 185) | SizeofMsghdr = C.sizeof_struct_msghdr constant SizeofCmsghdr (line 186) | SizeofCmsghdr = C.sizeof_struct_cmsghdr constant SizeofInet6Pktinfo (line 187) | SizeofInet6Pktinfo = C.sizeof_struct_in6_pktinfo constant SizeofIPv6MTUInfo (line 188) | SizeofIPv6MTUInfo = C.sizeof_struct_ip6_mtuinfo constant SizeofICMPv6Filter (line 189) | SizeofICMPv6Filter = C.sizeof_struct_icmp6_filter type FdSet (line 194) | type FdSet type Utsname (line 198) | type Utsname type Ustat_t (line 200) | type Ustat_t constant AT_FDCWD (line 203) | AT_FDCWD = C.AT_FDCWD constant AT_SYMLINK_NOFOLLOW (line 204) | AT_SYMLINK_NOFOLLOW = C.AT_SYMLINK_NOFOLLOW constant AT_SYMLINK_FOLLOW (line 205) | AT_SYMLINK_FOLLOW = C.AT_SYMLINK_FOLLOW constant AT_REMOVEDIR (line 206) | AT_REMOVEDIR = C.AT_REMOVEDIR constant AT_EACCESS (line 207) | AT_EACCESS = C.AT_EACCESS constant SizeofIfMsghdr (line 213) | SizeofIfMsghdr = C.sizeof_struct_if_msghdr constant SizeofIfData (line 214) | SizeofIfData = C.sizeof_struct_if_data constant SizeofIfaMsghdr (line 215) | SizeofIfaMsghdr = C.sizeof_struct_ifa_msghdr constant SizeofRtMsghdr (line 216) | SizeofRtMsghdr = C.sizeof_struct_rt_msghdr constant SizeofRtMetrics (line 217) | SizeofRtMetrics = C.sizeof_struct_rt_metrics type IfMsghdr (line 220) | type IfMsghdr type IfData (line 222) | type IfData type IfaMsghdr (line 224) | type IfaMsghdr type RtMsghdr (line 226) | type RtMsghdr type RtMetrics (line 228) | type RtMetrics constant SizeofBpfVersion (line 233) | SizeofBpfVersion = C.sizeof_struct_bpf_version constant SizeofBpfStat (line 234) | SizeofBpfStat = C.sizeof_struct_bpf_stat constant SizeofBpfProgram (line 235) | SizeofBpfProgram = C.sizeof_struct_bpf_program constant SizeofBpfInsn (line 236) | SizeofBpfInsn = C.sizeof_struct_bpf_insn constant SizeofBpfHdr (line 237) | SizeofBpfHdr = C.sizeof_struct_bpf_hdr type BpfVersion (line 240) | type BpfVersion type BpfStat (line 242) | type BpfStat type BpfProgram (line 244) | type BpfProgram type BpfInsn (line 246) | type BpfInsn type BpfTimeval (line 248) | type BpfTimeval type BpfHdr (line 250) | type BpfHdr constant _SC_PAGESIZE (line 254) | _SC_PAGESIZE = C._SC_PAGESIZE type Termios (line 258) | type Termios type Termio (line 260) | type Termio type Winsize (line 262) | type Winsize FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant 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 B4800 (line 66) | B4800 = 0x12c0 constant B50 (line 67) | B50 = 0x32 constant B57600 (line 68) | B57600 = 0xe100 constant B600 (line 69) | B600 = 0x258 constant B7200 (line 70) | B7200 = 0x1c20 constant B75 (line 71) | B75 = 0x4b constant B76800 (line 72) | B76800 = 0x12c00 constant B9600 (line 73) | B9600 = 0x2580 constant BIOCFLUSH (line 74) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 75) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 76) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 77) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 78) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 79) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 80) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 81) | BIOCGRTIMEOUT = 0x4008426e constant BIOCGSEESENT (line 82) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 83) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 84) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 85) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 86) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 87) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 88) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 89) | BIOCSETFNR = 0x8008427e constant BIOCSETIF (line 90) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 91) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 92) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 93) | BIOCSRTIMEOUT = 0x8008426d constant BIOCSSEESENT (line 94) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 95) | BIOCVERSION = 0x40044271 constant BPF_A (line 96) | BPF_A = 0x10 constant BPF_ABS (line 97) | BPF_ABS = 0x20 constant BPF_ADD (line 98) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 99) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 100) | BPF_ALU = 0x4 constant BPF_AND (line 101) | BPF_AND = 0x50 constant BPF_B (line 102) | BPF_B = 0x10 constant BPF_DIV (line 103) | BPF_DIV = 0x30 constant BPF_H (line 104) | BPF_H = 0x8 constant BPF_IMM (line 105) | BPF_IMM = 0x0 constant BPF_IND (line 106) | BPF_IND = 0x40 constant BPF_JA (line 107) | BPF_JA = 0x0 constant BPF_JEQ (line 108) | BPF_JEQ = 0x10 constant BPF_JGE (line 109) | BPF_JGE = 0x30 constant BPF_JGT (line 110) | BPF_JGT = 0x20 constant BPF_JMP (line 111) | BPF_JMP = 0x5 constant BPF_JSET (line 112) | BPF_JSET = 0x40 constant BPF_K (line 113) | BPF_K = 0x0 constant BPF_LD (line 114) | BPF_LD = 0x0 constant BPF_LDX (line 115) | BPF_LDX = 0x1 constant BPF_LEN (line 116) | BPF_LEN = 0x80 constant BPF_LSH (line 117) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 118) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 119) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 120) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 121) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 122) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 123) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 124) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 125) | BPF_MISC = 0x7 constant BPF_MSH (line 126) | BPF_MSH = 0xa0 constant BPF_MUL (line 127) | BPF_MUL = 0x20 constant BPF_NEG (line 128) | BPF_NEG = 0x80 constant BPF_OR (line 129) | BPF_OR = 0x40 constant BPF_RELEASE (line 130) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 131) | BPF_RET = 0x6 constant BPF_RSH (line 132) | BPF_RSH = 0x70 constant BPF_ST (line 133) | BPF_ST = 0x2 constant BPF_STX (line 134) | BPF_STX = 0x3 constant BPF_SUB (line 135) | BPF_SUB = 0x10 constant BPF_TAX (line 136) | BPF_TAX = 0x0 constant BPF_TXA (line 137) | BPF_TXA = 0x80 constant BPF_W (line 138) | BPF_W = 0x0 constant BPF_X (line 139) | BPF_X = 0x8 constant BRKINT (line 140) | BRKINT = 0x2 constant CFLUSH (line 141) | CFLUSH = 0xf constant CLOCAL (line 142) | CLOCAL = 0x8000 constant CREAD (line 143) | CREAD = 0x800 constant CS5 (line 144) | CS5 = 0x0 constant CS6 (line 145) | CS6 = 0x100 constant CS7 (line 146) | CS7 = 0x200 constant CS8 (line 147) | CS8 = 0x300 constant CSIZE (line 148) | CSIZE = 0x300 constant CSTART (line 149) | CSTART = 0x11 constant CSTATUS (line 150) | CSTATUS = 0x14 constant CSTOP (line 151) | CSTOP = 0x13 constant CSTOPB (line 152) | CSTOPB = 0x400 constant CSUSP (line 153) | CSUSP = 0x1a constant CTL_MAXNAME (line 154) | CTL_MAXNAME = 0xc constant CTL_NET (line 155) | CTL_NET = 0x4 constant DLT_A429 (line 156) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 157) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 158) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 159) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 160) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 161) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 162) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 163) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 165) | DLT_AURORA = 0x7e constant DLT_AX25 (line 166) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 167) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 168) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 169) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 170) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 171) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 172) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 173) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 174) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 175) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 176) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 177) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 178) | DLT_DBUS = 0xe7 constant DLT_DECT (line 179) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 180) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 181) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 182) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 183) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 184) | DLT_EN3MB = 0x2 constant DLT_ENC (line 185) | DLT_ENC = 0x6d constant DLT_ERF (line 186) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 187) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 188) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 189) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 190) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 191) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 192) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 193) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 194) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 195) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 196) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 197) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 198) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 199) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 200) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 201) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 202) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 203) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 204) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 205) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 206) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 207) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 208) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 209) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 210) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 211) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 212) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 213) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 214) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 215) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 216) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 217) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 218) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 219) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 220) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 221) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 222) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 223) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 224) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 225) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 226) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 227) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 228) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 229) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 230) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 231) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 232) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 233) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 234) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 235) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 236) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 237) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 238) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 239) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 240) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 241) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 242) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 243) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 244) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 245) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 246) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 247) | DLT_LAPD = 0xcb constant DLT_LIN (line 248) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 249) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 250) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 251) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 252) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 253) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 254) | DLT_LOOP = 0x6c constant DLT_LTALK (line 255) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 256) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 257) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 258) | DLT_MFR = 0xb6 constant DLT_MOST (line 259) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 260) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 261) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 262) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 263) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 264) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 265) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 266) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 267) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 268) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 269) | DLT_NFLOG = 0xef constant DLT_NG40 (line 270) | DLT_NG40 = 0xf4 constant DLT_NULL (line 271) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 272) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 273) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 274) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 275) | DLT_PPI = 0xc0 constant DLT_PPP (line 276) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 277) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 278) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 279) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 280) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 281) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 282) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 283) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 284) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 285) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 286) | DLT_RAW = 0xc constant DLT_RIO (line 287) | DLT_RIO = 0x7c constant DLT_SCCP (line 288) | DLT_SCCP = 0x8e constant DLT_SITA (line 289) | DLT_SITA = 0xc4 constant DLT_SLIP (line 290) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 291) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 292) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 293) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 294) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 295) | DLT_TZSP = 0x80 constant DLT_USB (line 296) | DLT_USB = 0xba constant DLT_USB_LINUX (line 297) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 298) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 299) | DLT_USER0 = 0x93 constant DLT_USER1 (line 300) | DLT_USER1 = 0x94 constant DLT_USER10 (line 301) | DLT_USER10 = 0x9d constant DLT_USER11 (line 302) | DLT_USER11 = 0x9e constant DLT_USER12 (line 303) | DLT_USER12 = 0x9f constant DLT_USER13 (line 304) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 305) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 306) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 307) | DLT_USER2 = 0x95 constant DLT_USER3 (line 308) | DLT_USER3 = 0x96 constant DLT_USER4 (line 309) | DLT_USER4 = 0x97 constant DLT_USER5 (line 310) | DLT_USER5 = 0x98 constant DLT_USER6 (line 311) | DLT_USER6 = 0x99 constant DLT_USER7 (line 312) | DLT_USER7 = 0x9a constant DLT_USER8 (line 313) | DLT_USER8 = 0x9b constant DLT_USER9 (line 314) | DLT_USER9 = 0x9c constant DLT_WIHART (line 315) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 316) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 317) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 318) | DT_BLK = 0x6 constant DT_CHR (line 319) | DT_CHR = 0x2 constant DT_DIR (line 320) | DT_DIR = 0x4 constant DT_FIFO (line 321) | DT_FIFO = 0x1 constant DT_LNK (line 322) | DT_LNK = 0xa constant DT_REG (line 323) | DT_REG = 0x8 constant DT_SOCK (line 324) | DT_SOCK = 0xc constant DT_UNKNOWN (line 325) | DT_UNKNOWN = 0x0 constant DT_WHT (line 326) | DT_WHT = 0xe constant ECHO (line 327) | ECHO = 0x8 constant ECHOCTL (line 328) | ECHOCTL = 0x40 constant ECHOE (line 329) | ECHOE = 0x2 constant ECHOK (line 330) | ECHOK = 0x4 constant ECHOKE (line 331) | ECHOKE = 0x1 constant ECHONL (line 332) | ECHONL = 0x10 constant ECHOPRT (line 333) | ECHOPRT = 0x20 constant EVFILT_AIO (line 334) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 335) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 336) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 337) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 338) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 339) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 340) | EVFILT_SYSCOUNT = 0xe constant EVFILT_THREADMARKER (line 341) | EVFILT_THREADMARKER = 0xe constant EVFILT_TIMER (line 342) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 343) | EVFILT_USER = -0xa constant EVFILT_VM (line 344) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 345) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 346) | EVFILT_WRITE = -0x2 constant EV_ADD (line 347) | EV_ADD = 0x1 constant EV_CLEAR (line 348) | EV_CLEAR = 0x20 constant EV_DELETE (line 349) | EV_DELETE = 0x2 constant EV_DISABLE (line 350) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 351) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 352) | EV_ENABLE = 0x4 constant EV_EOF (line 353) | EV_EOF = 0x8000 constant EV_ERROR (line 354) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 355) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 356) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 357) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 358) | EV_OOBAND = 0x2000 constant EV_POLL (line 359) | EV_POLL = 0x1000 constant EV_RECEIPT (line 360) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 361) | EV_SYSFLAGS = 0xf000 constant EXTA (line 362) | EXTA = 0x4b00 constant EXTB (line 363) | EXTB = 0x9600 constant EXTPROC (line 364) | EXTPROC = 0x800 constant FD_CLOEXEC (line 365) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 366) | FD_SETSIZE = 0x400 constant FLUSHO (line 367) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 368) | F_ADDFILESIGS = 0x3d constant F_ADDSIGS (line 369) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 370) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 371) | F_ALLOCATECONTIG = 0x2 constant F_CHKCLEAN (line 372) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 373) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 374) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 375) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 376) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 377) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 378) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 379) | F_GETCODEDIR = 0x48 constant F_GETFD (line 380) | F_GETFD = 0x1 constant F_GETFL (line 381) | F_GETFL = 0x3 constant F_GETLK (line 382) | F_GETLK = 0x7 constant F_GETLKPID (line 383) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 384) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 385) | F_GETOWN = 0x5 constant F_GETPATH (line 386) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 387) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 388) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 389) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 390) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 391) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 392) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 393) | F_NOCACHE = 0x30 constant F_NODIRECT (line 394) | F_NODIRECT = 0x3e constant F_OK (line 395) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 396) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 397) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 398) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 399) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 400) | F_RDAHEAD = 0x2d constant F_RDLCK (line 401) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 402) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 403) | F_SETFD = 0x2 constant F_SETFL (line 404) | F_SETFL = 0x4 constant F_SETLK (line 405) | F_SETLK = 0x8 constant F_SETLKW (line 406) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 407) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 408) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 409) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 410) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 411) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 412) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 413) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 414) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 415) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 416) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 417) | F_WRLCK = 0x3 constant HUPCL (line 418) | HUPCL = 0x4000 constant ICANON (line 419) | ICANON = 0x100 constant ICMP6_FILTER (line 420) | ICMP6_FILTER = 0x12 constant ICRNL (line 421) | ICRNL = 0x100 constant IEXTEN (line 422) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 423) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 424) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 425) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 426) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 427) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 428) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 429) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 430) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 431) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 432) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 433) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 434) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 435) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 436) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 437) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 438) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 439) | IFF_UP = 0x1 constant IFNAMSIZ (line 440) | IFNAMSIZ = 0x10 constant IFT_1822 (line 441) | IFT_1822 = 0x2 constant IFT_AAL5 (line 442) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 443) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 444) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 445) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 446) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 447) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 448) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 449) | IFT_CEPT = 0x13 constant IFT_DS3 (line 450) | IFT_DS3 = 0x1e constant IFT_ENC (line 451) | IFT_ENC = 0xf4 constant IFT_EON (line 452) | IFT_EON = 0x19 constant IFT_ETHER (line 453) | IFT_ETHER = 0x6 constant IFT_FAITH (line 454) | IFT_FAITH = 0x38 constant IFT_FDDI (line 455) | IFT_FDDI = 0xf constant IFT_FRELAY (line 456) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 457) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 458) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 459) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 460) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 461) | IFT_HSSI = 0x2e constant IFT_HY (line 462) | IFT_HY = 0xe constant IFT_IEEE1394 (line 463) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 464) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 465) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 466) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 467) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 468) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 469) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 470) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 471) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 472) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 473) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 474) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 475) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 476) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 477) | IFT_MODEM = 0x30 constant IFT_NSIP (line 478) | IFT_NSIP = 0x1b constant IFT_OTHER (line 479) | IFT_OTHER = 0x1 constant IFT_P10 (line 480) | IFT_P10 = 0xc constant IFT_P80 (line 481) | IFT_P80 = 0xd constant IFT_PARA (line 482) | IFT_PARA = 0x22 constant IFT_PDP (line 483) | IFT_PDP = 0xff constant IFT_PFLOG (line 484) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 485) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 486) | IFT_PKTAP = 0xfe constant IFT_PPP (line 487) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 488) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 489) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 490) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 491) | IFT_RS232 = 0x21 constant IFT_SDLC (line 492) | IFT_SDLC = 0x11 constant IFT_SIP (line 493) | IFT_SIP = 0x1f constant IFT_SLIP (line 494) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 495) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 496) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 497) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 498) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 499) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 500) | IFT_STARLAN = 0xb constant IFT_STF (line 501) | IFT_STF = 0x39 constant IFT_T1 (line 502) | IFT_T1 = 0x12 constant IFT_ULTRA (line 503) | IFT_ULTRA = 0x1d constant IFT_V35 (line 504) | IFT_V35 = 0x2d constant IFT_X25 (line 505) | IFT_X25 = 0x5 constant IFT_X25DDN (line 506) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 507) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 508) | IFT_XETHER = 0x1a constant IGNBRK (line 509) | IGNBRK = 0x1 constant IGNCR (line 510) | IGNCR = 0x80 constant IGNPAR (line 511) | IGNPAR = 0x4 constant IMAXBEL (line 512) | IMAXBEL = 0x2000 constant INLCR (line 513) | INLCR = 0x40 constant INPCK (line 514) | INPCK = 0x10 constant IN_CLASSA_HOST (line 515) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 516) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 517) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 518) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 519) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 520) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 521) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 522) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 523) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 524) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 525) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 526) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 527) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 528) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 529) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 530) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 531) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 532) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 533) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 534) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 535) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 536) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 537) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 538) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 539) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 540) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 541) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 542) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 543) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 544) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 545) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 546) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 547) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 548) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 549) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 550) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 551) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 552) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 553) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 554) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 555) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 556) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 557) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 558) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 559) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 560) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 561) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 562) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 563) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 564) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 565) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 566) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 567) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 568) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 569) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 570) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 571) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 572) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 573) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 574) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 575) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 576) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 577) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 578) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 579) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 580) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 581) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 582) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 583) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 584) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 585) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 586) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 587) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 588) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 589) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 590) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 591) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 592) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 593) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 594) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 595) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 596) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 597) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 598) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 599) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 600) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 601) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 602) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 603) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 604) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 605) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 606) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 607) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 608) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 609) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 610) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 611) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 612) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 613) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 614) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 615) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 616) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 617) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 618) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 619) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 620) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 621) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 622) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 623) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 624) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 625) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 626) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 627) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 628) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 629) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 630) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 631) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 632) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 633) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 634) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 635) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 636) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 637) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 638) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 639) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 640) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 641) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 642) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 643) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 644) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 645) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 646) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 647) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 648) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 649) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 650) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 651) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 652) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 653) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 654) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 655) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 656) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 657) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 658) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 659) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 660) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 661) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 662) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 663) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 664) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 665) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 666) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 667) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 668) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 669) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 670) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 671) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 672) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 673) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 674) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 675) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 676) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 677) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 678) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 679) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 680) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 681) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 682) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 683) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 684) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 685) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 686) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 687) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 688) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 689) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 690) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 691) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 692) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 693) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 694) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 695) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 696) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 697) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 698) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 699) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 700) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 701) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 702) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 703) | IP_FAITH = 0x16 constant IP_FW_ADD (line 704) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 705) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 706) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 707) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 708) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 709) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 710) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 711) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 712) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 713) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 714) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 715) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 716) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 717) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 718) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 719) | IP_MSFILTER = 0x4a constant IP_MSS (line 720) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 721) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 722) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 723) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 724) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 725) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 726) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 727) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 728) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 729) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 730) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 731) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 732) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 733) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 734) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 735) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 736) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 737) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 738) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 739) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 740) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 741) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 742) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 743) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 744) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 745) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 746) | IP_RETOPTS = 0x8 constant IP_RF (line 747) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 748) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 749) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 750) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 751) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 752) | IP_STRIPHDR = 0x17 constant IP_TOS (line 753) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 754) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 755) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 756) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 757) | ISIG = 0x80 constant ISTRIP (line 758) | ISTRIP = 0x20 constant IUTF8 (line 759) | IUTF8 = 0x4000 constant IXANY (line 760) | IXANY = 0x800 constant IXOFF (line 761) | IXOFF = 0x400 constant IXON (line 762) | IXON = 0x200 constant LOCK_EX (line 763) | LOCK_EX = 0x2 constant LOCK_NB (line 764) | LOCK_NB = 0x4 constant LOCK_SH (line 765) | LOCK_SH = 0x1 constant LOCK_UN (line 766) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 767) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 768) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 769) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 770) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 771) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 772) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 773) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 774) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 775) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 776) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 777) | MAP_ANON = 0x1000 constant MAP_COPY (line 778) | MAP_COPY = 0x2 constant MAP_FILE (line 779) | MAP_FILE = 0x0 constant MAP_FIXED (line 780) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 781) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 782) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 783) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 784) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 785) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 786) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 787) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 788) | MAP_RESERVED0080 = 0x80 constant MAP_SHARED (line 789) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 790) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 791) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 792) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 793) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 794) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 795) | MSG_EOF = 0x100 constant MSG_EOR (line 796) | MSG_EOR = 0x8 constant MSG_FLUSH (line 797) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 798) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 799) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 800) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 801) | MSG_OOB = 0x1 constant MSG_PEEK (line 802) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 803) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 804) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 805) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 806) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 807) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 808) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 809) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 810) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 811) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 812) | MS_SYNC = 0x10 constant NAME_MAX (line 813) | NAME_MAX = 0xff constant NET_RT_DUMP (line 814) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 815) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 816) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 817) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 818) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 819) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 820) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 821) | NET_RT_TRASH = 0x5 constant NOFLSH (line 822) | NOFLSH = 0x80000000 constant NOTE_ABSOLUTE (line 823) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 824) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 825) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 826) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 827) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 828) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 829) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 830) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 831) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 832) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 833) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 834) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 835) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 836) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 837) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 838) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 839) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 840) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 841) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 842) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 843) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 844) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 845) | NOTE_FORK = 0x40000000 constant NOTE_LEEWAY (line 846) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 847) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 848) | NOTE_LOWAT = 0x1 constant NOTE_NONE (line 849) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 850) | NOTE_NSECONDS = 0x4 constant NOTE_PCTRLMASK (line 851) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 852) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 853) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 854) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 855) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 856) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 857) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 858) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 859) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 860) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 861) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 862) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 863) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 864) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 865) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 866) | NOTE_WRITE = 0x2 constant OCRNL (line 867) | OCRNL = 0x10 constant OFDEL (line 868) | OFDEL = 0x20000 constant OFILL (line 869) | OFILL = 0x80 constant ONLCR (line 870) | ONLCR = 0x2 constant ONLRET (line 871) | ONLRET = 0x40 constant ONOCR (line 872) | ONOCR = 0x20 constant ONOEOT (line 873) | ONOEOT = 0x8 constant OPOST (line 874) | OPOST = 0x1 constant O_ACCMODE (line 875) | O_ACCMODE = 0x3 constant O_ALERT (line 876) | O_ALERT = 0x20000000 constant O_APPEND (line 877) | O_APPEND = 0x8 constant O_ASYNC (line 878) | O_ASYNC = 0x40 constant O_CLOEXEC (line 879) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 880) | O_CREAT = 0x200 constant O_DIRECTORY (line 881) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 882) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DSYNC (line 883) | O_DSYNC = 0x400000 constant O_EVTONLY (line 884) | O_EVTONLY = 0x8000 constant O_EXCL (line 885) | O_EXCL = 0x800 constant O_EXLOCK (line 886) | O_EXLOCK = 0x20 constant O_FSYNC (line 887) | O_FSYNC = 0x80 constant O_NDELAY (line 888) | O_NDELAY = 0x4 constant O_NOCTTY (line 889) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 890) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 891) | O_NONBLOCK = 0x4 constant O_POPUP (line 892) | O_POPUP = 0x80000000 constant O_RDONLY (line 893) | O_RDONLY = 0x0 constant O_RDWR (line 894) | O_RDWR = 0x2 constant O_SHLOCK (line 895) | O_SHLOCK = 0x10 constant O_SYMLINK (line 896) | O_SYMLINK = 0x200000 constant O_SYNC (line 897) | O_SYNC = 0x80 constant O_TRUNC (line 898) | O_TRUNC = 0x400 constant O_WRONLY (line 899) | O_WRONLY = 0x1 constant PARENB (line 900) | PARENB = 0x1000 constant PARMRK (line 901) | PARMRK = 0x8 constant PARODD (line 902) | PARODD = 0x2000 constant PENDIN (line 903) | PENDIN = 0x20000000 constant PRIO_PGRP (line 904) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 905) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 906) | PRIO_USER = 0x2 constant PROT_EXEC (line 907) | PROT_EXEC = 0x4 constant PROT_NONE (line 908) | PROT_NONE = 0x0 constant PROT_READ (line 909) | PROT_READ = 0x1 constant PROT_WRITE (line 910) | PROT_WRITE = 0x2 constant PT_ATTACH (line 911) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 912) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 913) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 914) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 915) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 916) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 917) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 918) | PT_KILL = 0x8 constant PT_READ_D (line 919) | PT_READ_D = 0x2 constant PT_READ_I (line 920) | PT_READ_I = 0x1 constant PT_READ_U (line 921) | PT_READ_U = 0x3 constant PT_SIGEXC (line 922) | PT_SIGEXC = 0xc constant PT_STEP (line 923) | PT_STEP = 0x9 constant PT_THUPDATE (line 924) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 925) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 926) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 927) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 928) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 929) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 930) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 931) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 932) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 933) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 934) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 935) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 936) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 937) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 938) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 939) | RTAX_BRD = 0x7 constant RTAX_DST (line 940) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 941) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 942) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 943) | RTAX_IFA = 0x5 constant RTAX_IFP (line 944) | RTAX_IFP = 0x4 constant RTAX_MAX (line 945) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 946) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 947) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 948) | RTA_BRD = 0x80 constant RTA_DST (line 949) | RTA_DST = 0x1 constant RTA_GATEWAY (line 950) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 951) | RTA_GENMASK = 0x8 constant RTA_IFA (line 952) | RTA_IFA = 0x20 constant RTA_IFP (line 953) | RTA_IFP = 0x10 constant RTA_NETMASK (line 954) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 955) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 956) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 957) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 958) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 959) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 960) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 961) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 962) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 963) | RTF_HOST = 0x4 constant RTF_IFREF (line 964) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 965) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 966) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 967) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 968) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 969) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 970) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 971) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 972) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 973) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 974) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 975) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 976) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 977) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 978) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 979) | RTF_STATIC = 0x800 constant RTF_UP (line 980) | RTF_UP = 0x1 constant RTF_WASCLONED (line 981) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 982) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 983) | RTM_ADD = 0x1 constant RTM_CHANGE (line 984) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 985) | RTM_DELADDR = 0xd constant RTM_DELETE (line 986) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 987) | RTM_DELMADDR = 0x10 constant RTM_GET (line 988) | RTM_GET = 0x4 constant RTM_GET2 (line 989) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 990) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 991) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 992) | RTM_LOCK = 0x8 constant RTM_LOSING (line 993) | RTM_LOSING = 0x5 constant RTM_MISS (line 994) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 995) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 996) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 997) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 998) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 999) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1000) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1001) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1002) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1003) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1004) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1005) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1006) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1007) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1008) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1009) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1010) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1011) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1012) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1013) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1014) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1015) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1016) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1017) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1018) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1019) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1020) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1021) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1022) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1023) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1024) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1025) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1026) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1027) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1028) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1029) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1030) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETVLAN (line 1031) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1032) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1033) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1034) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1035) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1036) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1037) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1038) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1039) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDEVMTU (line 1040) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1041) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1042) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1043) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1044) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1045) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1046) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1047) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1048) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1049) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1050) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1051) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1052) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1053) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1054) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1055) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1056) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1057) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1058) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1059) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1060) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1061) | SIOCIFGCLONERS = 0xc00c6981 constant SIOCRSLVMULTI (line 1062) | SIOCRSLVMULTI = 0xc008693b constant SIOCSDRVSPEC (line 1063) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETVLAN (line 1064) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1065) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1066) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1067) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1068) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1069) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1070) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1071) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1072) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1073) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1074) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1075) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1076) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1077) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1078) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1079) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1080) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1081) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1082) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1083) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1084) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1085) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1086) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1087) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1088) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1089) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1090) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1091) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1092) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1093) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1094) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1095) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1096) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1097) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1098) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1099) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1100) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1101) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1102) | SO_LABEL = 0x1010 constant SO_LINGER (line 1103) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1104) | SO_LINGER_SEC = 0x1080 constant SO_NKE (line 1105) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1106) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1107) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1108) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1109) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1110) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1111) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1112) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1113) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1114) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1115) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1116) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1117) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1118) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1119) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1120) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1121) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1122) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1123) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1124) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1125) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1126) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1127) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1128) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1129) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1130) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1131) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1132) | S_IEXEC = 0x40 constant S_IFBLK (line 1133) | S_IFBLK = 0x6000 constant S_IFCHR (line 1134) | S_IFCHR = 0x2000 constant S_IFDIR (line 1135) | S_IFDIR = 0x4000 constant S_IFIFO (line 1136) | S_IFIFO = 0x1000 constant S_IFLNK (line 1137) | S_IFLNK = 0xa000 constant S_IFMT (line 1138) | S_IFMT = 0xf000 constant S_IFREG (line 1139) | S_IFREG = 0x8000 constant S_IFSOCK (line 1140) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1141) | S_IFWHT = 0xe000 constant S_IREAD (line 1142) | S_IREAD = 0x100 constant S_IRGRP (line 1143) | S_IRGRP = 0x20 constant S_IROTH (line 1144) | S_IROTH = 0x4 constant S_IRUSR (line 1145) | S_IRUSR = 0x100 constant S_IRWXG (line 1146) | S_IRWXG = 0x38 constant S_IRWXO (line 1147) | S_IRWXO = 0x7 constant S_IRWXU (line 1148) | S_IRWXU = 0x1c0 constant S_ISGID (line 1149) | S_ISGID = 0x400 constant S_ISTXT (line 1150) | S_ISTXT = 0x200 constant S_ISUID (line 1151) | S_ISUID = 0x800 constant S_ISVTX (line 1152) | S_ISVTX = 0x200 constant S_IWGRP (line 1153) | S_IWGRP = 0x10 constant S_IWOTH (line 1154) | S_IWOTH = 0x2 constant S_IWRITE (line 1155) | S_IWRITE = 0x80 constant S_IWUSR (line 1156) | S_IWUSR = 0x80 constant S_IXGRP (line 1157) | S_IXGRP = 0x8 constant S_IXOTH (line 1158) | S_IXOTH = 0x1 constant S_IXUSR (line 1159) | S_IXUSR = 0x40 constant TCIFLUSH (line 1160) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1161) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1162) | TCOFLUSH = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1163) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_ENABLE_ECN (line 1164) | TCP_ENABLE_ECN = 0x104 constant TCP_KEEPALIVE (line 1165) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1166) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1167) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1168) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1169) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1170) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1171) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1172) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1173) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1174) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1175) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1176) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1177) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1178) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1179) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1180) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1181) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1182) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1183) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1184) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1185) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1186) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1187) | TIOCDCDTIMESTAMP = 0x40087458 constant TIOCDRAIN (line 1188) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1189) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1190) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1191) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1192) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1193) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1194) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1195) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1196) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1197) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1198) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1199) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1200) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1201) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1202) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1203) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1204) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1205) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1206) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1207) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1208) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1209) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1210) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1211) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1212) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1213) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1214) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1215) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1216) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1217) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1218) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1219) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1220) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1221) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1222) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1223) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1224) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1225) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1226) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1227) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1228) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1229) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1230) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1231) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1232) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1233) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1234) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1235) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1236) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1237) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1238) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1239) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1240) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1241) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1242) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1243) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1244) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1245) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1246) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1247) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1248) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1249) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1250) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1251) | TIOCTIMESTAMP = 0x40087459 constant TIOCUCNTL (line 1252) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1253) | TOSTOP = 0x400000 constant VDISCARD (line 1254) | VDISCARD = 0xf constant VDSUSP (line 1255) | VDSUSP = 0xb constant VEOF (line 1256) | VEOF = 0x0 constant VEOL (line 1257) | VEOL = 0x1 constant VEOL2 (line 1258) | VEOL2 = 0x2 constant VERASE (line 1259) | VERASE = 0x3 constant VINTR (line 1260) | VINTR = 0x8 constant VKILL (line 1261) | VKILL = 0x5 constant VLNEXT (line 1262) | VLNEXT = 0xe constant VMIN (line 1263) | VMIN = 0x10 constant VQUIT (line 1264) | VQUIT = 0x9 constant VREPRINT (line 1265) | VREPRINT = 0x6 constant VSTART (line 1266) | VSTART = 0xc constant VSTATUS (line 1267) | VSTATUS = 0x12 constant VSTOP (line 1268) | VSTOP = 0xd constant VSUSP (line 1269) | VSUSP = 0xa constant VT0 (line 1270) | VT0 = 0x0 constant VT1 (line 1271) | VT1 = 0x10000 constant VTDLY (line 1272) | VTDLY = 0x10000 constant VTIME (line 1273) | VTIME = 0x11 constant VWERASE (line 1274) | VWERASE = 0x4 constant WCONTINUED (line 1275) | WCONTINUED = 0x10 constant WCOREFLAG (line 1276) | WCOREFLAG = 0x80 constant WEXITED (line 1277) | WEXITED = 0x4 constant WNOHANG (line 1278) | WNOHANG = 0x1 constant WNOWAIT (line 1279) | WNOWAIT = 0x20 constant WORDSIZE (line 1280) | WORDSIZE = 0x20 constant WSTOPPED (line 1281) | WSTOPPED = 0x8 constant WUNTRACED (line 1282) | WUNTRACED = 0x2 constant E2BIG (line 1287) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1288) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1289) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1290) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1291) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1292) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1293) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1294) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1295) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1296) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1297) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1298) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1299) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1300) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1301) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1302) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1303) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1304) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1305) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1306) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1307) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1308) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1309) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1310) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1311) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1312) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1313) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1314) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1315) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1316) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1317) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1318) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1319) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1320) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1321) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1322) | EINVAL = syscall.Errno(0x16) constant EIO (line 1323) | EIO = syscall.Errno(0x5) constant EISCONN (line 1324) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1325) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1326) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1327) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1328) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1329) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1330) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1331) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1332) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1333) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1334) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1335) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1336) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1337) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1338) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1339) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1340) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1341) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1342) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1343) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1344) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1345) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1346) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1347) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1348) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1349) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1350) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1351) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1352) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1353) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1354) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1355) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1356) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1357) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1358) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1359) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1360) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1361) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1362) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1363) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1364) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1365) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1366) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1367) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1368) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1369) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1370) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1371) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1372) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1373) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1374) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1375) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1376) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1377) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1378) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1379) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1380) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1381) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1382) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1383) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1384) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1385) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1386) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1387) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1388) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1389) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1390) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1391) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1392) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1393) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1394) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1399) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1400) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1401) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1402) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1403) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1404) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1405) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1406) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1407) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1408) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1409) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1410) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1411) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1412) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1413) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1414) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1415) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1416) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1417) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1418) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1419) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1420) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1421) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1422) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1423) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1424) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1425) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1426) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1427) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1428) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1429) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1430) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant 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 B4800 (line 66) | B4800 = 0x12c0 constant B50 (line 67) | B50 = 0x32 constant B57600 (line 68) | B57600 = 0xe100 constant B600 (line 69) | B600 = 0x258 constant B7200 (line 70) | B7200 = 0x1c20 constant B75 (line 71) | B75 = 0x4b constant B76800 (line 72) | B76800 = 0x12c00 constant B9600 (line 73) | B9600 = 0x2580 constant BIOCFLUSH (line 74) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 75) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 76) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 77) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 78) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 79) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 80) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 81) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 82) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 83) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 84) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 85) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 86) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 87) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 88) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 89) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 90) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 91) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 92) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 93) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 94) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 95) | BIOCVERSION = 0x40044271 constant BPF_A (line 96) | BPF_A = 0x10 constant BPF_ABS (line 97) | BPF_ABS = 0x20 constant BPF_ADD (line 98) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 99) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 100) | BPF_ALU = 0x4 constant BPF_AND (line 101) | BPF_AND = 0x50 constant BPF_B (line 102) | BPF_B = 0x10 constant BPF_DIV (line 103) | BPF_DIV = 0x30 constant BPF_H (line 104) | BPF_H = 0x8 constant BPF_IMM (line 105) | BPF_IMM = 0x0 constant BPF_IND (line 106) | BPF_IND = 0x40 constant BPF_JA (line 107) | BPF_JA = 0x0 constant BPF_JEQ (line 108) | BPF_JEQ = 0x10 constant BPF_JGE (line 109) | BPF_JGE = 0x30 constant BPF_JGT (line 110) | BPF_JGT = 0x20 constant BPF_JMP (line 111) | BPF_JMP = 0x5 constant BPF_JSET (line 112) | BPF_JSET = 0x40 constant BPF_K (line 113) | BPF_K = 0x0 constant BPF_LD (line 114) | BPF_LD = 0x0 constant BPF_LDX (line 115) | BPF_LDX = 0x1 constant BPF_LEN (line 116) | BPF_LEN = 0x80 constant BPF_LSH (line 117) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 118) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 119) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 120) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 121) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 122) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 123) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 124) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 125) | BPF_MISC = 0x7 constant BPF_MSH (line 126) | BPF_MSH = 0xa0 constant BPF_MUL (line 127) | BPF_MUL = 0x20 constant BPF_NEG (line 128) | BPF_NEG = 0x80 constant BPF_OR (line 129) | BPF_OR = 0x40 constant BPF_RELEASE (line 130) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 131) | BPF_RET = 0x6 constant BPF_RSH (line 132) | BPF_RSH = 0x70 constant BPF_ST (line 133) | BPF_ST = 0x2 constant BPF_STX (line 134) | BPF_STX = 0x3 constant BPF_SUB (line 135) | BPF_SUB = 0x10 constant BPF_TAX (line 136) | BPF_TAX = 0x0 constant BPF_TXA (line 137) | BPF_TXA = 0x80 constant BPF_W (line 138) | BPF_W = 0x0 constant BPF_X (line 139) | BPF_X = 0x8 constant BRKINT (line 140) | BRKINT = 0x2 constant CFLUSH (line 141) | CFLUSH = 0xf constant CLOCAL (line 142) | CLOCAL = 0x8000 constant CREAD (line 143) | CREAD = 0x800 constant CS5 (line 144) | CS5 = 0x0 constant CS6 (line 145) | CS6 = 0x100 constant CS7 (line 146) | CS7 = 0x200 constant CS8 (line 147) | CS8 = 0x300 constant CSIZE (line 148) | CSIZE = 0x300 constant CSTART (line 149) | CSTART = 0x11 constant CSTATUS (line 150) | CSTATUS = 0x14 constant CSTOP (line 151) | CSTOP = 0x13 constant CSTOPB (line 152) | CSTOPB = 0x400 constant CSUSP (line 153) | CSUSP = 0x1a constant CTL_MAXNAME (line 154) | CTL_MAXNAME = 0xc constant CTL_NET (line 155) | CTL_NET = 0x4 constant DLT_A429 (line 156) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 157) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 158) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 159) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 160) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 161) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 162) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 163) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 165) | DLT_AURORA = 0x7e constant DLT_AX25 (line 166) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 167) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 168) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 169) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 170) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 171) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 172) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 173) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 174) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 175) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 176) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 177) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 178) | DLT_DBUS = 0xe7 constant DLT_DECT (line 179) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 180) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 181) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 182) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 183) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 184) | DLT_EN3MB = 0x2 constant DLT_ENC (line 185) | DLT_ENC = 0x6d constant DLT_ERF (line 186) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 187) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 188) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 189) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 190) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 191) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 192) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 193) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 194) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 195) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 196) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 197) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 198) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 199) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 200) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 201) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 202) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 203) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 204) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 205) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 206) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 207) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 208) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 209) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 210) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 211) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 212) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 213) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 214) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 215) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 216) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 217) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 218) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 219) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 220) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 221) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 222) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 223) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 224) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 225) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 226) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 227) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 228) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 229) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 230) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 231) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 232) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 233) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 234) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 235) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 236) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 237) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 238) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 239) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 240) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 241) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 242) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 243) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 244) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 245) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 246) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 247) | DLT_LAPD = 0xcb constant DLT_LIN (line 248) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 249) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 250) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 251) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 252) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 253) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 254) | DLT_LOOP = 0x6c constant DLT_LTALK (line 255) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 256) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 257) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 258) | DLT_MFR = 0xb6 constant DLT_MOST (line 259) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 260) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 261) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 262) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 263) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 264) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 265) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 266) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 267) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 268) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 269) | DLT_NFLOG = 0xef constant DLT_NG40 (line 270) | DLT_NG40 = 0xf4 constant DLT_NULL (line 271) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 272) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 273) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 274) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 275) | DLT_PPI = 0xc0 constant DLT_PPP (line 276) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 277) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 278) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 279) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 280) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 281) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 282) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 283) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 284) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 285) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 286) | DLT_RAW = 0xc constant DLT_RIO (line 287) | DLT_RIO = 0x7c constant DLT_SCCP (line 288) | DLT_SCCP = 0x8e constant DLT_SITA (line 289) | DLT_SITA = 0xc4 constant DLT_SLIP (line 290) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 291) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 292) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 293) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 294) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 295) | DLT_TZSP = 0x80 constant DLT_USB (line 296) | DLT_USB = 0xba constant DLT_USB_LINUX (line 297) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 298) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 299) | DLT_USER0 = 0x93 constant DLT_USER1 (line 300) | DLT_USER1 = 0x94 constant DLT_USER10 (line 301) | DLT_USER10 = 0x9d constant DLT_USER11 (line 302) | DLT_USER11 = 0x9e constant DLT_USER12 (line 303) | DLT_USER12 = 0x9f constant DLT_USER13 (line 304) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 305) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 306) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 307) | DLT_USER2 = 0x95 constant DLT_USER3 (line 308) | DLT_USER3 = 0x96 constant DLT_USER4 (line 309) | DLT_USER4 = 0x97 constant DLT_USER5 (line 310) | DLT_USER5 = 0x98 constant DLT_USER6 (line 311) | DLT_USER6 = 0x99 constant DLT_USER7 (line 312) | DLT_USER7 = 0x9a constant DLT_USER8 (line 313) | DLT_USER8 = 0x9b constant DLT_USER9 (line 314) | DLT_USER9 = 0x9c constant DLT_WIHART (line 315) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 316) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 317) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 318) | DT_BLK = 0x6 constant DT_CHR (line 319) | DT_CHR = 0x2 constant DT_DIR (line 320) | DT_DIR = 0x4 constant DT_FIFO (line 321) | DT_FIFO = 0x1 constant DT_LNK (line 322) | DT_LNK = 0xa constant DT_REG (line 323) | DT_REG = 0x8 constant DT_SOCK (line 324) | DT_SOCK = 0xc constant DT_UNKNOWN (line 325) | DT_UNKNOWN = 0x0 constant DT_WHT (line 326) | DT_WHT = 0xe constant ECHO (line 327) | ECHO = 0x8 constant ECHOCTL (line 328) | ECHOCTL = 0x40 constant ECHOE (line 329) | ECHOE = 0x2 constant ECHOK (line 330) | ECHOK = 0x4 constant ECHOKE (line 331) | ECHOKE = 0x1 constant ECHONL (line 332) | ECHONL = 0x10 constant ECHOPRT (line 333) | ECHOPRT = 0x20 constant EVFILT_AIO (line 334) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 335) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 336) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 337) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 338) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 339) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 340) | EVFILT_SYSCOUNT = 0xe constant EVFILT_THREADMARKER (line 341) | EVFILT_THREADMARKER = 0xe constant EVFILT_TIMER (line 342) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 343) | EVFILT_USER = -0xa constant EVFILT_VM (line 344) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 345) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 346) | EVFILT_WRITE = -0x2 constant EV_ADD (line 347) | EV_ADD = 0x1 constant EV_CLEAR (line 348) | EV_CLEAR = 0x20 constant EV_DELETE (line 349) | EV_DELETE = 0x2 constant EV_DISABLE (line 350) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 351) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 352) | EV_ENABLE = 0x4 constant EV_EOF (line 353) | EV_EOF = 0x8000 constant EV_ERROR (line 354) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 355) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 356) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 357) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 358) | EV_OOBAND = 0x2000 constant EV_POLL (line 359) | EV_POLL = 0x1000 constant EV_RECEIPT (line 360) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 361) | EV_SYSFLAGS = 0xf000 constant EXTA (line 362) | EXTA = 0x4b00 constant EXTB (line 363) | EXTB = 0x9600 constant EXTPROC (line 364) | EXTPROC = 0x800 constant FD_CLOEXEC (line 365) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 366) | FD_SETSIZE = 0x400 constant FLUSHO (line 367) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 368) | F_ADDFILESIGS = 0x3d constant F_ADDSIGS (line 369) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 370) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 371) | F_ALLOCATECONTIG = 0x2 constant F_CHKCLEAN (line 372) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 373) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 374) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 375) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 376) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 377) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 378) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 379) | F_GETCODEDIR = 0x48 constant F_GETFD (line 380) | F_GETFD = 0x1 constant F_GETFL (line 381) | F_GETFL = 0x3 constant F_GETLK (line 382) | F_GETLK = 0x7 constant F_GETLKPID (line 383) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 384) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 385) | F_GETOWN = 0x5 constant F_GETPATH (line 386) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 387) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 388) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 389) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 390) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 391) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 392) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 393) | F_NOCACHE = 0x30 constant F_NODIRECT (line 394) | F_NODIRECT = 0x3e constant F_OK (line 395) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 396) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 397) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 398) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 399) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 400) | F_RDAHEAD = 0x2d constant F_RDLCK (line 401) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 402) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 403) | F_SETFD = 0x2 constant F_SETFL (line 404) | F_SETFL = 0x4 constant F_SETLK (line 405) | F_SETLK = 0x8 constant F_SETLKW (line 406) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 407) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 408) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 409) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 410) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 411) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 412) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 413) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 414) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 415) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 416) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 417) | F_WRLCK = 0x3 constant HUPCL (line 418) | HUPCL = 0x4000 constant ICANON (line 419) | ICANON = 0x100 constant ICMP6_FILTER (line 420) | ICMP6_FILTER = 0x12 constant ICRNL (line 421) | ICRNL = 0x100 constant IEXTEN (line 422) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 423) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 424) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 425) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 426) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 427) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 428) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 429) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 430) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 431) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 432) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 433) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 434) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 435) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 436) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 437) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 438) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 439) | IFF_UP = 0x1 constant IFNAMSIZ (line 440) | IFNAMSIZ = 0x10 constant IFT_1822 (line 441) | IFT_1822 = 0x2 constant IFT_AAL5 (line 442) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 443) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 444) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 445) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 446) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 447) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 448) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 449) | IFT_CEPT = 0x13 constant IFT_DS3 (line 450) | IFT_DS3 = 0x1e constant IFT_ENC (line 451) | IFT_ENC = 0xf4 constant IFT_EON (line 452) | IFT_EON = 0x19 constant IFT_ETHER (line 453) | IFT_ETHER = 0x6 constant IFT_FAITH (line 454) | IFT_FAITH = 0x38 constant IFT_FDDI (line 455) | IFT_FDDI = 0xf constant IFT_FRELAY (line 456) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 457) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 458) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 459) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 460) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 461) | IFT_HSSI = 0x2e constant IFT_HY (line 462) | IFT_HY = 0xe constant IFT_IEEE1394 (line 463) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 464) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 465) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 466) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 467) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 468) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 469) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 470) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 471) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 472) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 473) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 474) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 475) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 476) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 477) | IFT_MODEM = 0x30 constant IFT_NSIP (line 478) | IFT_NSIP = 0x1b constant IFT_OTHER (line 479) | IFT_OTHER = 0x1 constant IFT_P10 (line 480) | IFT_P10 = 0xc constant IFT_P80 (line 481) | IFT_P80 = 0xd constant IFT_PARA (line 482) | IFT_PARA = 0x22 constant IFT_PDP (line 483) | IFT_PDP = 0xff constant IFT_PFLOG (line 484) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 485) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 486) | IFT_PKTAP = 0xfe constant IFT_PPP (line 487) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 488) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 489) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 490) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 491) | IFT_RS232 = 0x21 constant IFT_SDLC (line 492) | IFT_SDLC = 0x11 constant IFT_SIP (line 493) | IFT_SIP = 0x1f constant IFT_SLIP (line 494) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 495) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 496) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 497) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 498) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 499) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 500) | IFT_STARLAN = 0xb constant IFT_STF (line 501) | IFT_STF = 0x39 constant IFT_T1 (line 502) | IFT_T1 = 0x12 constant IFT_ULTRA (line 503) | IFT_ULTRA = 0x1d constant IFT_V35 (line 504) | IFT_V35 = 0x2d constant IFT_X25 (line 505) | IFT_X25 = 0x5 constant IFT_X25DDN (line 506) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 507) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 508) | IFT_XETHER = 0x1a constant IGNBRK (line 509) | IGNBRK = 0x1 constant IGNCR (line 510) | IGNCR = 0x80 constant IGNPAR (line 511) | IGNPAR = 0x4 constant IMAXBEL (line 512) | IMAXBEL = 0x2000 constant INLCR (line 513) | INLCR = 0x40 constant INPCK (line 514) | INPCK = 0x10 constant IN_CLASSA_HOST (line 515) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 516) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 517) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 518) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 519) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 520) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 521) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 522) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 523) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 524) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 525) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 526) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 527) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 528) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 529) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 530) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 531) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 532) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 533) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 534) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 535) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 536) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 537) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 538) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 539) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 540) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 541) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 542) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 543) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 544) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 545) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 546) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 547) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 548) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 549) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 550) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 551) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 552) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 553) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 554) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 555) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 556) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 557) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 558) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 559) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 560) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 561) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 562) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 563) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 564) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 565) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 566) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 567) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 568) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 569) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 570) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 571) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 572) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 573) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 574) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 575) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 576) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 577) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 578) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 579) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 580) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 581) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 582) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 583) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 584) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 585) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 586) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 587) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 588) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 589) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 590) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 591) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 592) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 593) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 594) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 595) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 596) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 597) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 598) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 599) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 600) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 601) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 602) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 603) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 604) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 605) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 606) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 607) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 608) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 609) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 610) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 611) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 612) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 613) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 614) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 615) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 616) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 617) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 618) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 619) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 620) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 621) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 622) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 623) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 624) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 625) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 626) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 627) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 628) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 629) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 630) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 631) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 632) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 633) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 634) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 635) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 636) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 637) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 638) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 639) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 640) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 641) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 642) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 643) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 644) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 645) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 646) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 647) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 648) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 649) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 650) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 651) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 652) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 653) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 654) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 655) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 656) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 657) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 658) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 659) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 660) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 661) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 662) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 663) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 664) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 665) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 666) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 667) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 668) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 669) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 670) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 671) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 672) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 673) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 674) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 675) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 676) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 677) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 678) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 679) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 680) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 681) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 682) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 683) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 684) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 685) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 686) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 687) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 688) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 689) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 690) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 691) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 692) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 693) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 694) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 695) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 696) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 697) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 698) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 699) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 700) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 701) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 702) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 703) | IP_FAITH = 0x16 constant IP_FW_ADD (line 704) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 705) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 706) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 707) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 708) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 709) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 710) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 711) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 712) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 713) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 714) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 715) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 716) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 717) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 718) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 719) | IP_MSFILTER = 0x4a constant IP_MSS (line 720) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 721) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 722) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 723) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 724) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 725) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 726) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 727) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 728) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 729) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 730) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 731) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 732) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 733) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 734) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 735) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 736) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 737) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 738) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 739) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 740) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 741) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 742) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 743) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 744) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 745) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 746) | IP_RETOPTS = 0x8 constant IP_RF (line 747) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 748) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 749) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 750) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 751) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 752) | IP_STRIPHDR = 0x17 constant IP_TOS (line 753) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 754) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 755) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 756) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 757) | ISIG = 0x80 constant ISTRIP (line 758) | ISTRIP = 0x20 constant IUTF8 (line 759) | IUTF8 = 0x4000 constant IXANY (line 760) | IXANY = 0x800 constant IXOFF (line 761) | IXOFF = 0x400 constant IXON (line 762) | IXON = 0x200 constant LOCK_EX (line 763) | LOCK_EX = 0x2 constant LOCK_NB (line 764) | LOCK_NB = 0x4 constant LOCK_SH (line 765) | LOCK_SH = 0x1 constant LOCK_UN (line 766) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 767) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 768) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 769) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 770) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 771) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 772) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 773) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 774) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 775) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 776) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 777) | MAP_ANON = 0x1000 constant MAP_COPY (line 778) | MAP_COPY = 0x2 constant MAP_FILE (line 779) | MAP_FILE = 0x0 constant MAP_FIXED (line 780) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 781) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 782) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 783) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 784) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 785) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 786) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 787) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 788) | MAP_RESERVED0080 = 0x80 constant MAP_SHARED (line 789) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 790) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 791) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 792) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 793) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 794) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 795) | MSG_EOF = 0x100 constant MSG_EOR (line 796) | MSG_EOR = 0x8 constant MSG_FLUSH (line 797) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 798) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 799) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 800) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 801) | MSG_OOB = 0x1 constant MSG_PEEK (line 802) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 803) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 804) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 805) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 806) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 807) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 808) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 809) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 810) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 811) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 812) | MS_SYNC = 0x10 constant NAME_MAX (line 813) | NAME_MAX = 0xff constant NET_RT_DUMP (line 814) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 815) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 816) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 817) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 818) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 819) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 820) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 821) | NET_RT_TRASH = 0x5 constant NOFLSH (line 822) | NOFLSH = 0x80000000 constant NOTE_ABSOLUTE (line 823) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 824) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 825) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 826) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 827) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 828) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 829) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 830) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 831) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 832) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 833) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 834) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 835) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 836) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 837) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 838) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 839) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 840) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 841) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 842) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 843) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 844) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 845) | NOTE_FORK = 0x40000000 constant NOTE_LEEWAY (line 846) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 847) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 848) | NOTE_LOWAT = 0x1 constant NOTE_NONE (line 849) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 850) | NOTE_NSECONDS = 0x4 constant NOTE_PCTRLMASK (line 851) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 852) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 853) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 854) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 855) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 856) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 857) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 858) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 859) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 860) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 861) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 862) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 863) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 864) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 865) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 866) | NOTE_WRITE = 0x2 constant OCRNL (line 867) | OCRNL = 0x10 constant OFDEL (line 868) | OFDEL = 0x20000 constant OFILL (line 869) | OFILL = 0x80 constant ONLCR (line 870) | ONLCR = 0x2 constant ONLRET (line 871) | ONLRET = 0x40 constant ONOCR (line 872) | ONOCR = 0x20 constant ONOEOT (line 873) | ONOEOT = 0x8 constant OPOST (line 874) | OPOST = 0x1 constant O_ACCMODE (line 875) | O_ACCMODE = 0x3 constant O_ALERT (line 876) | O_ALERT = 0x20000000 constant O_APPEND (line 877) | O_APPEND = 0x8 constant O_ASYNC (line 878) | O_ASYNC = 0x40 constant O_CLOEXEC (line 879) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 880) | O_CREAT = 0x200 constant O_DIRECTORY (line 881) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 882) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DSYNC (line 883) | O_DSYNC = 0x400000 constant O_EVTONLY (line 884) | O_EVTONLY = 0x8000 constant O_EXCL (line 885) | O_EXCL = 0x800 constant O_EXLOCK (line 886) | O_EXLOCK = 0x20 constant O_FSYNC (line 887) | O_FSYNC = 0x80 constant O_NDELAY (line 888) | O_NDELAY = 0x4 constant O_NOCTTY (line 889) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 890) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 891) | O_NONBLOCK = 0x4 constant O_POPUP (line 892) | O_POPUP = 0x80000000 constant O_RDONLY (line 893) | O_RDONLY = 0x0 constant O_RDWR (line 894) | O_RDWR = 0x2 constant O_SHLOCK (line 895) | O_SHLOCK = 0x10 constant O_SYMLINK (line 896) | O_SYMLINK = 0x200000 constant O_SYNC (line 897) | O_SYNC = 0x80 constant O_TRUNC (line 898) | O_TRUNC = 0x400 constant O_WRONLY (line 899) | O_WRONLY = 0x1 constant PARENB (line 900) | PARENB = 0x1000 constant PARMRK (line 901) | PARMRK = 0x8 constant PARODD (line 902) | PARODD = 0x2000 constant PENDIN (line 903) | PENDIN = 0x20000000 constant PRIO_PGRP (line 904) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 905) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 906) | PRIO_USER = 0x2 constant PROT_EXEC (line 907) | PROT_EXEC = 0x4 constant PROT_NONE (line 908) | PROT_NONE = 0x0 constant PROT_READ (line 909) | PROT_READ = 0x1 constant PROT_WRITE (line 910) | PROT_WRITE = 0x2 constant PT_ATTACH (line 911) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 912) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 913) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 914) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 915) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 916) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 917) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 918) | PT_KILL = 0x8 constant PT_READ_D (line 919) | PT_READ_D = 0x2 constant PT_READ_I (line 920) | PT_READ_I = 0x1 constant PT_READ_U (line 921) | PT_READ_U = 0x3 constant PT_SIGEXC (line 922) | PT_SIGEXC = 0xc constant PT_STEP (line 923) | PT_STEP = 0x9 constant PT_THUPDATE (line 924) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 925) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 926) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 927) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 928) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 929) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 930) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 931) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 932) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 933) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 934) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 935) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 936) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 937) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 938) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 939) | RTAX_BRD = 0x7 constant RTAX_DST (line 940) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 941) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 942) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 943) | RTAX_IFA = 0x5 constant RTAX_IFP (line 944) | RTAX_IFP = 0x4 constant RTAX_MAX (line 945) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 946) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 947) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 948) | RTA_BRD = 0x80 constant RTA_DST (line 949) | RTA_DST = 0x1 constant RTA_GATEWAY (line 950) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 951) | RTA_GENMASK = 0x8 constant RTA_IFA (line 952) | RTA_IFA = 0x20 constant RTA_IFP (line 953) | RTA_IFP = 0x10 constant RTA_NETMASK (line 954) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 955) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 956) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 957) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 958) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 959) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 960) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 961) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 962) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 963) | RTF_HOST = 0x4 constant RTF_IFREF (line 964) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 965) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 966) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 967) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 968) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 969) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 970) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 971) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 972) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 973) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 974) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 975) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 976) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 977) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 978) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 979) | RTF_STATIC = 0x800 constant RTF_UP (line 980) | RTF_UP = 0x1 constant RTF_WASCLONED (line 981) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 982) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 983) | RTM_ADD = 0x1 constant RTM_CHANGE (line 984) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 985) | RTM_DELADDR = 0xd constant RTM_DELETE (line 986) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 987) | RTM_DELMADDR = 0x10 constant RTM_GET (line 988) | RTM_GET = 0x4 constant RTM_GET2 (line 989) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 990) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 991) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 992) | RTM_LOCK = 0x8 constant RTM_LOSING (line 993) | RTM_LOSING = 0x5 constant RTM_MISS (line 994) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 995) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 996) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 997) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 998) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 999) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1000) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1001) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1002) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1003) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1004) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1005) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1006) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1007) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1008) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1009) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1010) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1011) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1012) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1013) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1014) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1015) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1016) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1017) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1018) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1019) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1020) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1021) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1022) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1023) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1024) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1025) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1026) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1027) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1028) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1029) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1030) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1031) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1032) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1033) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1034) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1035) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1036) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1037) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1038) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1039) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1040) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1041) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1042) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1043) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1044) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1045) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1046) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1047) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1048) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1049) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1050) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1051) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1052) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1053) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1054) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1055) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1056) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1057) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1058) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1059) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1060) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1061) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1062) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1063) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1064) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1065) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1066) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1067) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1068) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1069) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1070) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1071) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1072) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1073) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1074) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1075) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1076) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1077) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1078) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1079) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1080) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1081) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1082) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1083) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1084) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1085) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1086) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1087) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1088) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1089) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1090) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1091) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1092) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1093) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1094) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1095) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1096) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1097) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1098) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1099) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1100) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1101) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1102) | SO_LABEL = 0x1010 constant SO_LINGER (line 1103) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1104) | SO_LINGER_SEC = 0x1080 constant SO_NKE (line 1105) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1106) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1107) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1108) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1109) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1110) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1111) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1112) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1113) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1114) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1115) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1116) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1117) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1118) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1119) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1120) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1121) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1122) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1123) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1124) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1125) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1126) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1127) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1128) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1129) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1130) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1131) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1132) | S_IEXEC = 0x40 constant S_IFBLK (line 1133) | S_IFBLK = 0x6000 constant S_IFCHR (line 1134) | S_IFCHR = 0x2000 constant S_IFDIR (line 1135) | S_IFDIR = 0x4000 constant S_IFIFO (line 1136) | S_IFIFO = 0x1000 constant S_IFLNK (line 1137) | S_IFLNK = 0xa000 constant S_IFMT (line 1138) | S_IFMT = 0xf000 constant S_IFREG (line 1139) | S_IFREG = 0x8000 constant S_IFSOCK (line 1140) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1141) | S_IFWHT = 0xe000 constant S_IREAD (line 1142) | S_IREAD = 0x100 constant S_IRGRP (line 1143) | S_IRGRP = 0x20 constant S_IROTH (line 1144) | S_IROTH = 0x4 constant S_IRUSR (line 1145) | S_IRUSR = 0x100 constant S_IRWXG (line 1146) | S_IRWXG = 0x38 constant S_IRWXO (line 1147) | S_IRWXO = 0x7 constant S_IRWXU (line 1148) | S_IRWXU = 0x1c0 constant S_ISGID (line 1149) | S_ISGID = 0x400 constant S_ISTXT (line 1150) | S_ISTXT = 0x200 constant S_ISUID (line 1151) | S_ISUID = 0x800 constant S_ISVTX (line 1152) | S_ISVTX = 0x200 constant S_IWGRP (line 1153) | S_IWGRP = 0x10 constant S_IWOTH (line 1154) | S_IWOTH = 0x2 constant S_IWRITE (line 1155) | S_IWRITE = 0x80 constant S_IWUSR (line 1156) | S_IWUSR = 0x80 constant S_IXGRP (line 1157) | S_IXGRP = 0x8 constant S_IXOTH (line 1158) | S_IXOTH = 0x1 constant S_IXUSR (line 1159) | S_IXUSR = 0x40 constant TCIFLUSH (line 1160) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1161) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1162) | TCOFLUSH = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1163) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_ENABLE_ECN (line 1164) | TCP_ENABLE_ECN = 0x104 constant TCP_KEEPALIVE (line 1165) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1166) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1167) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1168) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1169) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1170) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1171) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1172) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1173) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1174) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1175) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1176) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1177) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1178) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1179) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1180) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1181) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1182) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1183) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1184) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1185) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1186) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1187) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1188) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1189) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1190) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1191) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1192) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1193) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1194) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1195) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1196) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1197) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1198) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1199) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1200) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1201) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1202) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1203) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1204) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1205) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1206) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1207) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1208) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1209) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1210) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1211) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1212) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1213) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1214) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1215) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1216) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1217) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1218) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1219) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1220) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1221) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1222) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1223) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1224) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1225) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1226) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1227) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1228) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1229) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1230) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1231) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1232) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1233) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1234) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1235) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1236) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1237) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1238) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1239) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1240) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1241) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1242) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1243) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1244) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1245) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1246) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1247) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1248) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1249) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1250) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1251) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1252) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1253) | TOSTOP = 0x400000 constant VDISCARD (line 1254) | VDISCARD = 0xf constant VDSUSP (line 1255) | VDSUSP = 0xb constant VEOF (line 1256) | VEOF = 0x0 constant VEOL (line 1257) | VEOL = 0x1 constant VEOL2 (line 1258) | VEOL2 = 0x2 constant VERASE (line 1259) | VERASE = 0x3 constant VINTR (line 1260) | VINTR = 0x8 constant VKILL (line 1261) | VKILL = 0x5 constant VLNEXT (line 1262) | VLNEXT = 0xe constant VMIN (line 1263) | VMIN = 0x10 constant VQUIT (line 1264) | VQUIT = 0x9 constant VREPRINT (line 1265) | VREPRINT = 0x6 constant VSTART (line 1266) | VSTART = 0xc constant VSTATUS (line 1267) | VSTATUS = 0x12 constant VSTOP (line 1268) | VSTOP = 0xd constant VSUSP (line 1269) | VSUSP = 0xa constant VT0 (line 1270) | VT0 = 0x0 constant VT1 (line 1271) | VT1 = 0x10000 constant VTDLY (line 1272) | VTDLY = 0x10000 constant VTIME (line 1273) | VTIME = 0x11 constant VWERASE (line 1274) | VWERASE = 0x4 constant WCONTINUED (line 1275) | WCONTINUED = 0x10 constant WCOREFLAG (line 1276) | WCOREFLAG = 0x80 constant WEXITED (line 1277) | WEXITED = 0x4 constant WNOHANG (line 1278) | WNOHANG = 0x1 constant WNOWAIT (line 1279) | WNOWAIT = 0x20 constant WORDSIZE (line 1280) | WORDSIZE = 0x40 constant WSTOPPED (line 1281) | WSTOPPED = 0x8 constant WUNTRACED (line 1282) | WUNTRACED = 0x2 constant E2BIG (line 1287) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1288) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1289) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1290) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1291) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1292) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1293) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1294) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1295) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1296) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1297) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1298) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1299) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1300) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1301) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1302) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1303) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1304) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1305) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1306) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1307) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1308) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1309) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1310) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1311) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1312) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1313) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1314) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1315) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1316) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1317) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1318) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1319) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1320) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1321) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1322) | EINVAL = syscall.Errno(0x16) constant EIO (line 1323) | EIO = syscall.Errno(0x5) constant EISCONN (line 1324) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1325) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1326) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1327) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1328) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1329) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1330) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1331) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1332) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1333) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1334) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1335) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1336) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1337) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1338) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1339) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1340) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1341) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1342) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1343) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1344) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1345) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1346) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1347) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1348) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1349) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1350) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1351) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1352) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1353) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1354) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1355) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1356) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1357) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1358) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1359) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1360) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1361) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1362) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1363) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1364) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1365) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1366) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1367) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1368) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1369) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1370) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1371) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1372) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1373) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1374) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1375) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1376) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1377) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1378) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1379) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1380) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1381) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1382) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1383) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1384) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1385) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1386) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1387) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1388) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1389) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1390) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1391) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1392) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1393) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1394) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1399) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1400) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1401) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1402) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1403) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1404) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1405) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1406) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1407) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1408) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1409) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1410) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1411) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1412) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1413) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1414) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1415) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1416) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1417) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1418) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1419) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1420) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1421) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1422) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1423) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1424) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1425) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1426) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1427) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1428) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1429) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1430) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant 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 B4800 (line 66) | B4800 = 0x12c0 constant B50 (line 67) | B50 = 0x32 constant B57600 (line 68) | B57600 = 0xe100 constant B600 (line 69) | B600 = 0x258 constant B7200 (line 70) | B7200 = 0x1c20 constant B75 (line 71) | B75 = 0x4b constant B76800 (line 72) | B76800 = 0x12c00 constant B9600 (line 73) | B9600 = 0x2580 constant BIOCFLUSH (line 74) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 75) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 76) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 77) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 78) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 79) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 80) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 81) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 82) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 83) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 84) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 85) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 86) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 87) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 88) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 89) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 90) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 91) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 92) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 93) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 94) | BIOCVERSION = 0x40044271 constant BPF_A (line 95) | BPF_A = 0x10 constant BPF_ABS (line 96) | BPF_ABS = 0x20 constant BPF_ADD (line 97) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 98) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 99) | BPF_ALU = 0x4 constant BPF_AND (line 100) | BPF_AND = 0x50 constant BPF_B (line 101) | BPF_B = 0x10 constant BPF_DIV (line 102) | BPF_DIV = 0x30 constant BPF_H (line 103) | BPF_H = 0x8 constant BPF_IMM (line 104) | BPF_IMM = 0x0 constant BPF_IND (line 105) | BPF_IND = 0x40 constant BPF_JA (line 106) | BPF_JA = 0x0 constant BPF_JEQ (line 107) | BPF_JEQ = 0x10 constant BPF_JGE (line 108) | BPF_JGE = 0x30 constant BPF_JGT (line 109) | BPF_JGT = 0x20 constant BPF_JMP (line 110) | BPF_JMP = 0x5 constant BPF_JSET (line 111) | BPF_JSET = 0x40 constant BPF_K (line 112) | BPF_K = 0x0 constant BPF_LD (line 113) | BPF_LD = 0x0 constant BPF_LDX (line 114) | BPF_LDX = 0x1 constant BPF_LEN (line 115) | BPF_LEN = 0x80 constant BPF_LSH (line 116) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 117) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 118) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 119) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 120) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 121) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 122) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 123) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 124) | BPF_MISC = 0x7 constant BPF_MSH (line 125) | BPF_MSH = 0xa0 constant BPF_MUL (line 126) | BPF_MUL = 0x20 constant BPF_NEG (line 127) | BPF_NEG = 0x80 constant BPF_OR (line 128) | BPF_OR = 0x40 constant BPF_RELEASE (line 129) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 130) | BPF_RET = 0x6 constant BPF_RSH (line 131) | BPF_RSH = 0x70 constant BPF_ST (line 132) | BPF_ST = 0x2 constant BPF_STX (line 133) | BPF_STX = 0x3 constant BPF_SUB (line 134) | BPF_SUB = 0x10 constant BPF_TAX (line 135) | BPF_TAX = 0x0 constant BPF_TXA (line 136) | BPF_TXA = 0x80 constant BPF_W (line 137) | BPF_W = 0x0 constant BPF_X (line 138) | BPF_X = 0x8 constant BRKINT (line 139) | BRKINT = 0x2 constant CFLUSH (line 140) | CFLUSH = 0xf constant CLOCAL (line 141) | CLOCAL = 0x8000 constant CREAD (line 142) | CREAD = 0x800 constant CS5 (line 143) | CS5 = 0x0 constant CS6 (line 144) | CS6 = 0x100 constant CS7 (line 145) | CS7 = 0x200 constant CS8 (line 146) | CS8 = 0x300 constant CSIZE (line 147) | CSIZE = 0x300 constant CSTART (line 148) | CSTART = 0x11 constant CSTATUS (line 149) | CSTATUS = 0x14 constant CSTOP (line 150) | CSTOP = 0x13 constant CSTOPB (line 151) | CSTOPB = 0x400 constant CSUSP (line 152) | CSUSP = 0x1a constant CTL_MAXNAME (line 153) | CTL_MAXNAME = 0xc constant CTL_NET (line 154) | CTL_NET = 0x4 constant DLT_APPLE_IP_OVER_IEEE1394 (line 155) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 156) | DLT_ARCNET = 0x7 constant DLT_ATM_CLIP (line 157) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 158) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 159) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 160) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 161) | DLT_CHDLC = 0x68 constant DLT_C_HDLC (line 162) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 163) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 164) | DLT_EN3MB = 0x2 constant DLT_FDDI (line 165) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 166) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 167) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 168) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 169) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_LINUX_SLL (line 170) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 171) | DLT_LOOP = 0x6c constant DLT_NULL (line 172) | DLT_NULL = 0x0 constant DLT_PFLOG (line 173) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 174) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 175) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 176) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_SERIAL (line 177) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 178) | DLT_PRONET = 0x4 constant DLT_RAW (line 179) | DLT_RAW = 0xc constant DLT_SLIP (line 180) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 181) | DLT_SLIP_BSDOS = 0xf constant DT_BLK (line 182) | DT_BLK = 0x6 constant DT_CHR (line 183) | DT_CHR = 0x2 constant DT_DIR (line 184) | DT_DIR = 0x4 constant DT_FIFO (line 185) | DT_FIFO = 0x1 constant DT_LNK (line 186) | DT_LNK = 0xa constant DT_REG (line 187) | DT_REG = 0x8 constant DT_SOCK (line 188) | DT_SOCK = 0xc constant DT_UNKNOWN (line 189) | DT_UNKNOWN = 0x0 constant DT_WHT (line 190) | DT_WHT = 0xe constant ECHO (line 191) | ECHO = 0x8 constant ECHOCTL (line 192) | ECHOCTL = 0x40 constant ECHOE (line 193) | ECHOE = 0x2 constant ECHOK (line 194) | ECHOK = 0x4 constant ECHOKE (line 195) | ECHOKE = 0x1 constant ECHONL (line 196) | ECHONL = 0x10 constant ECHOPRT (line 197) | ECHOPRT = 0x20 constant EVFILT_AIO (line 198) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 199) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 200) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 201) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 202) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 203) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 204) | EVFILT_SYSCOUNT = 0xe constant EVFILT_THREADMARKER (line 205) | EVFILT_THREADMARKER = 0xe constant EVFILT_TIMER (line 206) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 207) | EVFILT_USER = -0xa constant EVFILT_VM (line 208) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 209) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 210) | EVFILT_WRITE = -0x2 constant EV_ADD (line 211) | EV_ADD = 0x1 constant EV_CLEAR (line 212) | EV_CLEAR = 0x20 constant EV_DELETE (line 213) | EV_DELETE = 0x2 constant EV_DISABLE (line 214) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 215) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 216) | EV_ENABLE = 0x4 constant EV_EOF (line 217) | EV_EOF = 0x8000 constant EV_ERROR (line 218) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 219) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 220) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 221) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 222) | EV_OOBAND = 0x2000 constant EV_POLL (line 223) | EV_POLL = 0x1000 constant EV_RECEIPT (line 224) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 225) | EV_SYSFLAGS = 0xf000 constant EXTA (line 226) | EXTA = 0x4b00 constant EXTB (line 227) | EXTB = 0x9600 constant EXTPROC (line 228) | EXTPROC = 0x800 constant FD_CLOEXEC (line 229) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 230) | FD_SETSIZE = 0x400 constant FLUSHO (line 231) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 232) | F_ADDFILESIGS = 0x3d constant F_ADDSIGS (line 233) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 234) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 235) | F_ALLOCATECONTIG = 0x2 constant F_CHKCLEAN (line 236) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 237) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 238) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 239) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 240) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 241) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 242) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 243) | F_GETCODEDIR = 0x48 constant F_GETFD (line 244) | F_GETFD = 0x1 constant F_GETFL (line 245) | F_GETFL = 0x3 constant F_GETLK (line 246) | F_GETLK = 0x7 constant F_GETLKPID (line 247) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 248) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 249) | F_GETOWN = 0x5 constant F_GETPATH (line 250) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 251) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 252) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 253) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 254) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 255) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 256) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 257) | F_NOCACHE = 0x30 constant F_NODIRECT (line 258) | F_NODIRECT = 0x3e constant F_OK (line 259) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 260) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 261) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 262) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 263) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 264) | F_RDAHEAD = 0x2d constant F_RDLCK (line 265) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 266) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 267) | F_SETFD = 0x2 constant F_SETFL (line 268) | F_SETFL = 0x4 constant F_SETLK (line 269) | F_SETLK = 0x8 constant F_SETLKW (line 270) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 271) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 272) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 273) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 274) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 275) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 276) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 277) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 278) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 279) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 280) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 281) | F_WRLCK = 0x3 constant HUPCL (line 282) | HUPCL = 0x4000 constant ICANON (line 283) | ICANON = 0x100 constant ICMP6_FILTER (line 284) | ICMP6_FILTER = 0x12 constant ICRNL (line 285) | ICRNL = 0x100 constant IEXTEN (line 286) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 287) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 288) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 289) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 290) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 291) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 292) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 293) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 294) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 295) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 296) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 297) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 298) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 299) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 300) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 301) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 302) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 303) | IFF_UP = 0x1 constant IFNAMSIZ (line 304) | IFNAMSIZ = 0x10 constant IFT_1822 (line 305) | IFT_1822 = 0x2 constant IFT_AAL5 (line 306) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 307) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 308) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 309) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 310) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 311) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 312) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 313) | IFT_CEPT = 0x13 constant IFT_DS3 (line 314) | IFT_DS3 = 0x1e constant IFT_ENC (line 315) | IFT_ENC = 0xf4 constant IFT_EON (line 316) | IFT_EON = 0x19 constant IFT_ETHER (line 317) | IFT_ETHER = 0x6 constant IFT_FAITH (line 318) | IFT_FAITH = 0x38 constant IFT_FDDI (line 319) | IFT_FDDI = 0xf constant IFT_FRELAY (line 320) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 321) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 322) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 323) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 324) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 325) | IFT_HSSI = 0x2e constant IFT_HY (line 326) | IFT_HY = 0xe constant IFT_IEEE1394 (line 327) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 328) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 329) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 330) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 331) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 332) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 333) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 334) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 335) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 336) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 337) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 338) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 339) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 340) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 341) | IFT_MODEM = 0x30 constant IFT_NSIP (line 342) | IFT_NSIP = 0x1b constant IFT_OTHER (line 343) | IFT_OTHER = 0x1 constant IFT_P10 (line 344) | IFT_P10 = 0xc constant IFT_P80 (line 345) | IFT_P80 = 0xd constant IFT_PARA (line 346) | IFT_PARA = 0x22 constant IFT_PDP (line 347) | IFT_PDP = 0xff constant IFT_PFLOG (line 348) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 349) | IFT_PFSYNC = 0xf6 constant IFT_PPP (line 350) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 351) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 352) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 353) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 354) | IFT_RS232 = 0x21 constant IFT_SDLC (line 355) | IFT_SDLC = 0x11 constant IFT_SIP (line 356) | IFT_SIP = 0x1f constant IFT_SLIP (line 357) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 358) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 359) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 360) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 361) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 362) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 363) | IFT_STARLAN = 0xb constant IFT_STF (line 364) | IFT_STF = 0x39 constant IFT_T1 (line 365) | IFT_T1 = 0x12 constant IFT_ULTRA (line 366) | IFT_ULTRA = 0x1d constant IFT_V35 (line 367) | IFT_V35 = 0x2d constant IFT_X25 (line 368) | IFT_X25 = 0x5 constant IFT_X25DDN (line 369) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 370) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 371) | IFT_XETHER = 0x1a constant IGNBRK (line 372) | IGNBRK = 0x1 constant IGNCR (line 373) | IGNCR = 0x80 constant IGNPAR (line 374) | IGNPAR = 0x4 constant IMAXBEL (line 375) | IMAXBEL = 0x2000 constant INLCR (line 376) | INLCR = 0x40 constant INPCK (line 377) | INPCK = 0x10 constant IN_CLASSA_HOST (line 378) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 379) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 380) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 381) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 382) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 383) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 384) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 385) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 386) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 387) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 388) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 389) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 390) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 391) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 392) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 393) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 394) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 395) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 396) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 397) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 398) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 399) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 400) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 401) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 402) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 403) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 404) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 405) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 406) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 407) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 408) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 409) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 410) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 411) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 412) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 413) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 414) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 415) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 416) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 417) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 418) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 419) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 420) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 421) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 422) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 423) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 424) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 425) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 426) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 427) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 428) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 429) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 430) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 431) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 432) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 433) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 434) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 435) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 436) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 437) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 438) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 439) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 440) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 441) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 442) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 443) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 444) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 445) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 446) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 447) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 448) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 449) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 450) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 451) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 452) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 453) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 454) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 455) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 456) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 457) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 458) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 459) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 460) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 461) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 462) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 463) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 464) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 465) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 466) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 467) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 468) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 469) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 470) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 471) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 472) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 473) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 474) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 475) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 476) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 477) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 478) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 479) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 480) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 481) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 482) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 483) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 484) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 485) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 486) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 487) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 488) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 489) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 490) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 491) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 492) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 493) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 494) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 495) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 496) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 497) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 498) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 499) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 500) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 501) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 502) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 503) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 504) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 505) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 506) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 507) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 508) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 509) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 510) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 511) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 512) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 513) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 514) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 515) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 516) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 517) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 518) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 519) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 520) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 521) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 522) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 523) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 524) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 525) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 526) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 527) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 528) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 529) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 530) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 531) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 532) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 533) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 534) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 535) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 536) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 537) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 538) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 539) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 540) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 541) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 542) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 543) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 544) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 545) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 546) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 547) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 548) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 549) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 550) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 551) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 552) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 553) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 554) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 555) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 556) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 557) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 558) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 559) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 560) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 561) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 562) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 563) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 564) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 565) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 566) | IP_FAITH = 0x16 constant IP_FW_ADD (line 567) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 568) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 569) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 570) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 571) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 572) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 573) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 574) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 575) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 576) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 577) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 578) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 579) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 580) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 581) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 582) | IP_MSFILTER = 0x4a constant IP_MSS (line 583) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 584) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 585) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 586) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 587) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 588) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 589) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 590) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 591) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 592) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 593) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 594) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 595) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 596) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 597) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 598) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 599) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 600) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 601) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 602) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 603) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 604) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 605) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 606) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 607) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 608) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 609) | IP_RETOPTS = 0x8 constant IP_RF (line 610) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 611) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 612) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 613) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 614) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 615) | IP_STRIPHDR = 0x17 constant IP_TOS (line 616) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 617) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 618) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 619) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 620) | ISIG = 0x80 constant ISTRIP (line 621) | ISTRIP = 0x20 constant IUTF8 (line 622) | IUTF8 = 0x4000 constant IXANY (line 623) | IXANY = 0x800 constant IXOFF (line 624) | IXOFF = 0x400 constant IXON (line 625) | IXON = 0x200 constant LOCK_EX (line 626) | LOCK_EX = 0x2 constant LOCK_NB (line 627) | LOCK_NB = 0x4 constant LOCK_SH (line 628) | LOCK_SH = 0x1 constant LOCK_UN (line 629) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 630) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 631) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 632) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 633) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 634) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 635) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 636) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 637) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 638) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 639) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 640) | MAP_ANON = 0x1000 constant MAP_COPY (line 641) | MAP_COPY = 0x2 constant MAP_FILE (line 642) | MAP_FILE = 0x0 constant MAP_FIXED (line 643) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 644) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 645) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 646) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 647) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 648) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 649) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 650) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 651) | MAP_RESERVED0080 = 0x80 constant MAP_SHARED (line 652) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 653) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 654) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 655) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 656) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 657) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 658) | MSG_EOF = 0x100 constant MSG_EOR (line 659) | MSG_EOR = 0x8 constant MSG_FLUSH (line 660) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 661) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 662) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 663) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 664) | MSG_OOB = 0x1 constant MSG_PEEK (line 665) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 666) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 667) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 668) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 669) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 670) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 671) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 672) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 673) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 674) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 675) | MS_SYNC = 0x10 constant NAME_MAX (line 676) | NAME_MAX = 0xff constant NET_RT_DUMP (line 677) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 678) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 679) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 680) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 681) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 682) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 683) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 684) | NET_RT_TRASH = 0x5 constant NOFLSH (line 685) | NOFLSH = 0x80000000 constant NOTE_ABSOLUTE (line 686) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 687) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 688) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 689) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 690) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 691) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 692) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 693) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 694) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 695) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 696) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 697) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 698) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 699) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 700) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 701) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 702) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 703) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 704) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 705) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 706) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 707) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 708) | NOTE_FORK = 0x40000000 constant NOTE_LEEWAY (line 709) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 710) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 711) | NOTE_LOWAT = 0x1 constant NOTE_NONE (line 712) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 713) | NOTE_NSECONDS = 0x4 constant NOTE_PCTRLMASK (line 714) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 715) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 716) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 717) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 718) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 719) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 720) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 721) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 722) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 723) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 724) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 725) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 726) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 727) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 728) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 729) | NOTE_WRITE = 0x2 constant OCRNL (line 730) | OCRNL = 0x10 constant OFDEL (line 731) | OFDEL = 0x20000 constant OFILL (line 732) | OFILL = 0x80 constant ONLCR (line 733) | ONLCR = 0x2 constant ONLRET (line 734) | ONLRET = 0x40 constant ONOCR (line 735) | ONOCR = 0x20 constant ONOEOT (line 736) | ONOEOT = 0x8 constant OPOST (line 737) | OPOST = 0x1 constant O_ACCMODE (line 738) | O_ACCMODE = 0x3 constant O_ALERT (line 739) | O_ALERT = 0x20000000 constant O_APPEND (line 740) | O_APPEND = 0x8 constant O_ASYNC (line 741) | O_ASYNC = 0x40 constant O_CLOEXEC (line 742) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 743) | O_CREAT = 0x200 constant O_DIRECTORY (line 744) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 745) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DSYNC (line 746) | O_DSYNC = 0x400000 constant O_EVTONLY (line 747) | O_EVTONLY = 0x8000 constant O_EXCL (line 748) | O_EXCL = 0x800 constant O_EXLOCK (line 749) | O_EXLOCK = 0x20 constant O_FSYNC (line 750) | O_FSYNC = 0x80 constant O_NDELAY (line 751) | O_NDELAY = 0x4 constant O_NOCTTY (line 752) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 753) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 754) | O_NONBLOCK = 0x4 constant O_POPUP (line 755) | O_POPUP = 0x80000000 constant O_RDONLY (line 756) | O_RDONLY = 0x0 constant O_RDWR (line 757) | O_RDWR = 0x2 constant O_SHLOCK (line 758) | O_SHLOCK = 0x10 constant O_SYMLINK (line 759) | O_SYMLINK = 0x200000 constant O_SYNC (line 760) | O_SYNC = 0x80 constant O_TRUNC (line 761) | O_TRUNC = 0x400 constant O_WRONLY (line 762) | O_WRONLY = 0x1 constant PARENB (line 763) | PARENB = 0x1000 constant PARMRK (line 764) | PARMRK = 0x8 constant PARODD (line 765) | PARODD = 0x2000 constant PENDIN (line 766) | PENDIN = 0x20000000 constant PRIO_PGRP (line 767) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 768) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 769) | PRIO_USER = 0x2 constant PROT_EXEC (line 770) | PROT_EXEC = 0x4 constant PROT_NONE (line 771) | PROT_NONE = 0x0 constant PROT_READ (line 772) | PROT_READ = 0x1 constant PROT_WRITE (line 773) | PROT_WRITE = 0x2 constant PT_ATTACH (line 774) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 775) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 776) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 777) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 778) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 779) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 780) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 781) | PT_KILL = 0x8 constant PT_READ_D (line 782) | PT_READ_D = 0x2 constant PT_READ_I (line 783) | PT_READ_I = 0x1 constant PT_READ_U (line 784) | PT_READ_U = 0x3 constant PT_SIGEXC (line 785) | PT_SIGEXC = 0xc constant PT_STEP (line 786) | PT_STEP = 0x9 constant PT_THUPDATE (line 787) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 788) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 789) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 790) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 791) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 792) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 793) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 794) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 795) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 796) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 797) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 798) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 799) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 800) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 801) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 802) | RTAX_BRD = 0x7 constant RTAX_DST (line 803) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 804) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 805) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 806) | RTAX_IFA = 0x5 constant RTAX_IFP (line 807) | RTAX_IFP = 0x4 constant RTAX_MAX (line 808) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 809) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 810) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 811) | RTA_BRD = 0x80 constant RTA_DST (line 812) | RTA_DST = 0x1 constant RTA_GATEWAY (line 813) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 814) | RTA_GENMASK = 0x8 constant RTA_IFA (line 815) | RTA_IFA = 0x20 constant RTA_IFP (line 816) | RTA_IFP = 0x10 constant RTA_NETMASK (line 817) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 818) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 819) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 820) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 821) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 822) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 823) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 824) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 825) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 826) | RTF_HOST = 0x4 constant RTF_IFREF (line 827) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 828) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 829) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 830) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 831) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 832) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 833) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 834) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 835) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 836) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 837) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 838) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 839) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 840) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 841) | RTF_STATIC = 0x800 constant RTF_UP (line 842) | RTF_UP = 0x1 constant RTF_WASCLONED (line 843) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 844) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 845) | RTM_ADD = 0x1 constant RTM_CHANGE (line 846) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 847) | RTM_DELADDR = 0xd constant RTM_DELETE (line 848) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 849) | RTM_DELMADDR = 0x10 constant RTM_GET (line 850) | RTM_GET = 0x4 constant RTM_GET2 (line 851) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 852) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 853) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 854) | RTM_LOCK = 0x8 constant RTM_LOSING (line 855) | RTM_LOSING = 0x5 constant RTM_MISS (line 856) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 857) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 858) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 859) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 860) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 861) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 862) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 863) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 864) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 865) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 866) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 867) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 868) | RTV_MTU = 0x1 constant RTV_RPIPE (line 869) | RTV_RPIPE = 0x8 constant RTV_RTT (line 870) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 871) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 872) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 873) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 874) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 875) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 876) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 877) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 878) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 879) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 880) | SHUT_RD = 0x0 constant SHUT_RDWR (line 881) | SHUT_RDWR = 0x2 constant SHUT_WR (line 882) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 883) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 884) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 885) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 886) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 887) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 888) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 889) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 890) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 891) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 892) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 893) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 894) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 895) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 896) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 897) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 898) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 899) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 900) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 901) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 902) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 903) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 904) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 905) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 906) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 907) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 908) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 909) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 910) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 911) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 912) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 913) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 914) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 915) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 916) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 917) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 918) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 919) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 920) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 921) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 922) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 923) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 924) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 925) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 926) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 927) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 928) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 929) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 930) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 931) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 932) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 933) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 934) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 935) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 936) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 937) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 938) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 939) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 940) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 941) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 942) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 943) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 944) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 945) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 946) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 947) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 948) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 949) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 950) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 951) | SOCK_RAW = 0x3 constant SOCK_RDM (line 952) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 953) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 954) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 955) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 956) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 957) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 958) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 959) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 960) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 961) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 962) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 963) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 964) | SO_LABEL = 0x1010 constant SO_LINGER (line 965) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 966) | SO_LINGER_SEC = 0x1080 constant SO_NKE (line 967) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 968) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 969) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 970) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 971) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 972) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 973) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 974) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 975) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 976) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 977) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 978) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 979) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 980) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 981) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 982) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 983) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 984) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 985) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 986) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 987) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 988) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 989) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 990) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 991) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 992) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 993) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 994) | S_IEXEC = 0x40 constant S_IFBLK (line 995) | S_IFBLK = 0x6000 constant S_IFCHR (line 996) | S_IFCHR = 0x2000 constant S_IFDIR (line 997) | S_IFDIR = 0x4000 constant S_IFIFO (line 998) | S_IFIFO = 0x1000 constant S_IFLNK (line 999) | S_IFLNK = 0xa000 constant S_IFMT (line 1000) | S_IFMT = 0xf000 constant S_IFREG (line 1001) | S_IFREG = 0x8000 constant S_IFSOCK (line 1002) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1003) | S_IFWHT = 0xe000 constant S_IREAD (line 1004) | S_IREAD = 0x100 constant S_IRGRP (line 1005) | S_IRGRP = 0x20 constant S_IROTH (line 1006) | S_IROTH = 0x4 constant S_IRUSR (line 1007) | S_IRUSR = 0x100 constant S_IRWXG (line 1008) | S_IRWXG = 0x38 constant S_IRWXO (line 1009) | S_IRWXO = 0x7 constant S_IRWXU (line 1010) | S_IRWXU = 0x1c0 constant S_ISGID (line 1011) | S_ISGID = 0x400 constant S_ISTXT (line 1012) | S_ISTXT = 0x200 constant S_ISUID (line 1013) | S_ISUID = 0x800 constant S_ISVTX (line 1014) | S_ISVTX = 0x200 constant S_IWGRP (line 1015) | S_IWGRP = 0x10 constant S_IWOTH (line 1016) | S_IWOTH = 0x2 constant S_IWRITE (line 1017) | S_IWRITE = 0x80 constant S_IWUSR (line 1018) | S_IWUSR = 0x80 constant S_IXGRP (line 1019) | S_IXGRP = 0x8 constant S_IXOTH (line 1020) | S_IXOTH = 0x1 constant S_IXUSR (line 1021) | S_IXUSR = 0x40 constant TCIFLUSH (line 1022) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1023) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1024) | TCOFLUSH = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1025) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_ENABLE_ECN (line 1026) | TCP_ENABLE_ECN = 0x104 constant TCP_KEEPALIVE (line 1027) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1028) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1029) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1030) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1031) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1032) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1033) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1034) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1035) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1036) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1037) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1038) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1039) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1040) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1041) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1042) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1043) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1044) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1045) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1046) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1047) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1048) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1049) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1050) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1051) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1052) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1053) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1054) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1055) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1056) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1057) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1058) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1059) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1060) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1061) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1062) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1063) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1064) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1065) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1066) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1067) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1068) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1069) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1070) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1071) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1072) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1073) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1074) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1075) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1076) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1077) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1078) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1079) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1080) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1081) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1082) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1083) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1084) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1085) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1086) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1087) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1088) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1089) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1090) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1091) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1092) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1093) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1094) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1095) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1096) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1097) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1098) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1099) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1100) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1101) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1102) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1103) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1104) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1105) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1106) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1107) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1108) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1109) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1110) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1111) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1112) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1113) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1114) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1115) | TOSTOP = 0x400000 constant VDISCARD (line 1116) | VDISCARD = 0xf constant VDSUSP (line 1117) | VDSUSP = 0xb constant VEOF (line 1118) | VEOF = 0x0 constant VEOL (line 1119) | VEOL = 0x1 constant VEOL2 (line 1120) | VEOL2 = 0x2 constant VERASE (line 1121) | VERASE = 0x3 constant VINTR (line 1122) | VINTR = 0x8 constant VKILL (line 1123) | VKILL = 0x5 constant VLNEXT (line 1124) | VLNEXT = 0xe constant VMIN (line 1125) | VMIN = 0x10 constant VQUIT (line 1126) | VQUIT = 0x9 constant VREPRINT (line 1127) | VREPRINT = 0x6 constant VSTART (line 1128) | VSTART = 0xc constant VSTATUS (line 1129) | VSTATUS = 0x12 constant VSTOP (line 1130) | VSTOP = 0xd constant VSUSP (line 1131) | VSUSP = 0xa constant VT0 (line 1132) | VT0 = 0x0 constant VT1 (line 1133) | VT1 = 0x10000 constant VTDLY (line 1134) | VTDLY = 0x10000 constant VTIME (line 1135) | VTIME = 0x11 constant VWERASE (line 1136) | VWERASE = 0x4 constant WCONTINUED (line 1137) | WCONTINUED = 0x10 constant WCOREFLAG (line 1138) | WCOREFLAG = 0x80 constant WEXITED (line 1139) | WEXITED = 0x4 constant WNOHANG (line 1140) | WNOHANG = 0x1 constant WNOWAIT (line 1141) | WNOWAIT = 0x20 constant WORDSIZE (line 1142) | WORDSIZE = 0x40 constant WSTOPPED (line 1143) | WSTOPPED = 0x8 constant WUNTRACED (line 1144) | WUNTRACED = 0x2 constant E2BIG (line 1149) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1150) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1151) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1152) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1153) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1154) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1155) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1156) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1157) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1158) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1159) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1160) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1161) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1162) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1163) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1164) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1165) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1166) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1167) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1168) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1169) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1170) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1171) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1172) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1173) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1174) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1175) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1176) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1177) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1178) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1179) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1180) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1181) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1182) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1183) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1184) | EINVAL = syscall.Errno(0x16) constant EIO (line 1185) | EIO = syscall.Errno(0x5) constant EISCONN (line 1186) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1187) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1188) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1189) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1190) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1191) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1192) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1193) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1194) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1195) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1196) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1197) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1198) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1199) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1200) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1201) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1202) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1203) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1204) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1205) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1206) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1207) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1208) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1209) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1210) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1211) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1212) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1213) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1214) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1215) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1216) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1217) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1218) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1219) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1220) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1221) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1222) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1223) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1224) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1225) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1226) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1227) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1228) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1229) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1230) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1231) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1232) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1233) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1234) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1235) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1236) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1237) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1238) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1239) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1240) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1241) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1242) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1243) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1244) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1245) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1246) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1247) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1248) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1249) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1250) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1251) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1252) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1253) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1254) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1255) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1256) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1261) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1262) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1263) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1264) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1265) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1266) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1267) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1268) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1269) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1270) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1271) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1272) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1273) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1274) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1275) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1276) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1277) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1278) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1279) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1280) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1281) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1282) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1283) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1284) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1285) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1286) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1287) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1288) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1289) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1290) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1291) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1292) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_CCITT (line 15) | AF_CCITT = 0xa constant AF_CHAOS (line 16) | AF_CHAOS = 0x5 constant AF_CNT (line 17) | AF_CNT = 0x15 constant AF_COIP (line 18) | AF_COIP = 0x14 constant AF_DATAKIT (line 19) | AF_DATAKIT = 0x9 constant AF_DECnet (line 20) | AF_DECnet = 0xc constant AF_DLI (line 21) | AF_DLI = 0xd constant AF_E164 (line 22) | AF_E164 = 0x1c constant AF_ECMA (line 23) | AF_ECMA = 0x8 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 25) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 26) | AF_IMPLINK = 0x3 constant AF_INET (line 27) | AF_INET = 0x2 constant AF_INET6 (line 28) | AF_INET6 = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_ISDN (line 30) | AF_ISDN = 0x1c constant AF_ISO (line 31) | AF_ISO = 0x7 constant AF_LAT (line 32) | AF_LAT = 0xe constant AF_LINK (line 33) | AF_LINK = 0x12 constant AF_LOCAL (line 34) | AF_LOCAL = 0x1 constant AF_MAX (line 35) | AF_MAX = 0x28 constant AF_NATM (line 36) | AF_NATM = 0x1f constant AF_NDRV (line 37) | AF_NDRV = 0x1b constant AF_NETBIOS (line 38) | AF_NETBIOS = 0x21 constant AF_NS (line 39) | AF_NS = 0x6 constant AF_OSI (line 40) | AF_OSI = 0x7 constant AF_PPP (line 41) | AF_PPP = 0x22 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_RESERVED_36 (line 43) | AF_RESERVED_36 = 0x24 constant AF_ROUTE (line 44) | AF_ROUTE = 0x11 constant AF_SIP (line 45) | AF_SIP = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_SYSTEM (line 47) | AF_SYSTEM = 0x20 constant AF_UNIX (line 48) | AF_UNIX = 0x1 constant AF_UNSPEC (line 49) | AF_UNSPEC = 0x0 constant AF_UTUN (line 50) | AF_UTUN = 0x26 constant 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 B4800 (line 66) | B4800 = 0x12c0 constant B50 (line 67) | B50 = 0x32 constant B57600 (line 68) | B57600 = 0xe100 constant B600 (line 69) | B600 = 0x258 constant B7200 (line 70) | B7200 = 0x1c20 constant B75 (line 71) | B75 = 0x4b constant B76800 (line 72) | B76800 = 0x12c00 constant B9600 (line 73) | B9600 = 0x2580 constant BIOCFLUSH (line 74) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 75) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 76) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 77) | BIOCGDLTLIST = 0xc00c4279 constant BIOCGETIF (line 78) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 79) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 80) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 81) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 82) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 83) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 84) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 85) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 86) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 87) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 88) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 89) | BIOCSETFNR = 0x8010427e constant BIOCSETIF (line 90) | BIOCSETIF = 0x8020426c constant BIOCSHDRCMPLT (line 91) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 92) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 93) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 94) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 95) | BIOCVERSION = 0x40044271 constant BPF_A (line 96) | BPF_A = 0x10 constant BPF_ABS (line 97) | BPF_ABS = 0x20 constant BPF_ADD (line 98) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 99) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 100) | BPF_ALU = 0x4 constant BPF_AND (line 101) | BPF_AND = 0x50 constant BPF_B (line 102) | BPF_B = 0x10 constant BPF_DIV (line 103) | BPF_DIV = 0x30 constant BPF_H (line 104) | BPF_H = 0x8 constant BPF_IMM (line 105) | BPF_IMM = 0x0 constant BPF_IND (line 106) | BPF_IND = 0x40 constant BPF_JA (line 107) | BPF_JA = 0x0 constant BPF_JEQ (line 108) | BPF_JEQ = 0x10 constant BPF_JGE (line 109) | BPF_JGE = 0x30 constant BPF_JGT (line 110) | BPF_JGT = 0x20 constant BPF_JMP (line 111) | BPF_JMP = 0x5 constant BPF_JSET (line 112) | BPF_JSET = 0x40 constant BPF_K (line 113) | BPF_K = 0x0 constant BPF_LD (line 114) | BPF_LD = 0x0 constant BPF_LDX (line 115) | BPF_LDX = 0x1 constant BPF_LEN (line 116) | BPF_LEN = 0x80 constant BPF_LSH (line 117) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 118) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 119) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 120) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 121) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 122) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 123) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 124) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 125) | BPF_MISC = 0x7 constant BPF_MSH (line 126) | BPF_MSH = 0xa0 constant BPF_MUL (line 127) | BPF_MUL = 0x20 constant BPF_NEG (line 128) | BPF_NEG = 0x80 constant BPF_OR (line 129) | BPF_OR = 0x40 constant BPF_RELEASE (line 130) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 131) | BPF_RET = 0x6 constant BPF_RSH (line 132) | BPF_RSH = 0x70 constant BPF_ST (line 133) | BPF_ST = 0x2 constant BPF_STX (line 134) | BPF_STX = 0x3 constant BPF_SUB (line 135) | BPF_SUB = 0x10 constant BPF_TAX (line 136) | BPF_TAX = 0x0 constant BPF_TXA (line 137) | BPF_TXA = 0x80 constant BPF_W (line 138) | BPF_W = 0x0 constant BPF_X (line 139) | BPF_X = 0x8 constant BRKINT (line 140) | BRKINT = 0x2 constant CFLUSH (line 141) | CFLUSH = 0xf constant CLOCAL (line 142) | CLOCAL = 0x8000 constant CREAD (line 143) | CREAD = 0x800 constant CS5 (line 144) | CS5 = 0x0 constant CS6 (line 145) | CS6 = 0x100 constant CS7 (line 146) | CS7 = 0x200 constant CS8 (line 147) | CS8 = 0x300 constant CSIZE (line 148) | CSIZE = 0x300 constant CSTART (line 149) | CSTART = 0x11 constant CSTATUS (line 150) | CSTATUS = 0x14 constant CSTOP (line 151) | CSTOP = 0x13 constant CSTOPB (line 152) | CSTOPB = 0x400 constant CSUSP (line 153) | CSUSP = 0x1a constant CTL_MAXNAME (line 154) | CTL_MAXNAME = 0xc constant CTL_NET (line 155) | CTL_NET = 0x4 constant DLT_A429 (line 156) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 157) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 158) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 159) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 160) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 161) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 162) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 163) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 165) | DLT_AURORA = 0x7e constant DLT_AX25 (line 166) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 167) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 168) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 169) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 170) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 171) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 172) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 173) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 174) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 175) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 176) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 177) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 178) | DLT_DBUS = 0xe7 constant DLT_DECT (line 179) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 180) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 181) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 182) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 183) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 184) | DLT_EN3MB = 0x2 constant DLT_ENC (line 185) | DLT_ENC = 0x6d constant DLT_ERF (line 186) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 187) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 188) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 189) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 190) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 191) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 192) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 193) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 194) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 195) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 196) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 197) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 198) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 199) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 200) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 201) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 202) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 203) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 204) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 205) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 206) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 207) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 208) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 209) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 210) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 211) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 212) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 213) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 214) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 215) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 216) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 217) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 218) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 219) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 220) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 221) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 222) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 223) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 224) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 225) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 226) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 227) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 228) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 229) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 230) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 231) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 232) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 233) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 234) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 235) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 236) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 237) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 238) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 239) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 240) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 241) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 242) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 243) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 244) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 245) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 246) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 247) | DLT_LAPD = 0xcb constant DLT_LIN (line 248) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 249) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 250) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 251) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 252) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 253) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 254) | DLT_LOOP = 0x6c constant DLT_LTALK (line 255) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 256) | DLT_MATCHING_MAX = 0xf5 constant DLT_MATCHING_MIN (line 257) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 258) | DLT_MFR = 0xb6 constant DLT_MOST (line 259) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 260) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 261) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 262) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 263) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 264) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 265) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 266) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 267) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 268) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 269) | DLT_NFLOG = 0xef constant DLT_NG40 (line 270) | DLT_NG40 = 0xf4 constant DLT_NULL (line 271) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 272) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 273) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 274) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 275) | DLT_PPI = 0xc0 constant DLT_PPP (line 276) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 277) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 278) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 279) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 280) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 281) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 282) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 283) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 284) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 285) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 286) | DLT_RAW = 0xc constant DLT_RIO (line 287) | DLT_RIO = 0x7c constant DLT_SCCP (line 288) | DLT_SCCP = 0x8e constant DLT_SITA (line 289) | DLT_SITA = 0xc4 constant DLT_SLIP (line 290) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 291) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 292) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 293) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 294) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 295) | DLT_TZSP = 0x80 constant DLT_USB (line 296) | DLT_USB = 0xba constant DLT_USB_LINUX (line 297) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 298) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 299) | DLT_USER0 = 0x93 constant DLT_USER1 (line 300) | DLT_USER1 = 0x94 constant DLT_USER10 (line 301) | DLT_USER10 = 0x9d constant DLT_USER11 (line 302) | DLT_USER11 = 0x9e constant DLT_USER12 (line 303) | DLT_USER12 = 0x9f constant DLT_USER13 (line 304) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 305) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 306) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 307) | DLT_USER2 = 0x95 constant DLT_USER3 (line 308) | DLT_USER3 = 0x96 constant DLT_USER4 (line 309) | DLT_USER4 = 0x97 constant DLT_USER5 (line 310) | DLT_USER5 = 0x98 constant DLT_USER6 (line 311) | DLT_USER6 = 0x99 constant DLT_USER7 (line 312) | DLT_USER7 = 0x9a constant DLT_USER8 (line 313) | DLT_USER8 = 0x9b constant DLT_USER9 (line 314) | DLT_USER9 = 0x9c constant DLT_WIHART (line 315) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 316) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 317) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 318) | DT_BLK = 0x6 constant DT_CHR (line 319) | DT_CHR = 0x2 constant DT_DIR (line 320) | DT_DIR = 0x4 constant DT_FIFO (line 321) | DT_FIFO = 0x1 constant DT_LNK (line 322) | DT_LNK = 0xa constant DT_REG (line 323) | DT_REG = 0x8 constant DT_SOCK (line 324) | DT_SOCK = 0xc constant DT_UNKNOWN (line 325) | DT_UNKNOWN = 0x0 constant DT_WHT (line 326) | DT_WHT = 0xe constant ECHO (line 327) | ECHO = 0x8 constant ECHOCTL (line 328) | ECHOCTL = 0x40 constant ECHOE (line 329) | ECHOE = 0x2 constant ECHOK (line 330) | ECHOK = 0x4 constant ECHOKE (line 331) | ECHOKE = 0x1 constant ECHONL (line 332) | ECHONL = 0x10 constant ECHOPRT (line 333) | ECHOPRT = 0x20 constant EVFILT_AIO (line 334) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 335) | EVFILT_FS = -0x9 constant EVFILT_MACHPORT (line 336) | EVFILT_MACHPORT = -0x8 constant EVFILT_PROC (line 337) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 338) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 339) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 340) | EVFILT_SYSCOUNT = 0xe constant EVFILT_THREADMARKER (line 341) | EVFILT_THREADMARKER = 0xe constant EVFILT_TIMER (line 342) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 343) | EVFILT_USER = -0xa constant EVFILT_VM (line 344) | EVFILT_VM = -0xc constant EVFILT_VNODE (line 345) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 346) | EVFILT_WRITE = -0x2 constant EV_ADD (line 347) | EV_ADD = 0x1 constant EV_CLEAR (line 348) | EV_CLEAR = 0x20 constant EV_DELETE (line 349) | EV_DELETE = 0x2 constant EV_DISABLE (line 350) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 351) | EV_DISPATCH = 0x80 constant EV_ENABLE (line 352) | EV_ENABLE = 0x4 constant EV_EOF (line 353) | EV_EOF = 0x8000 constant EV_ERROR (line 354) | EV_ERROR = 0x4000 constant EV_FLAG0 (line 355) | EV_FLAG0 = 0x1000 constant EV_FLAG1 (line 356) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 357) | EV_ONESHOT = 0x10 constant EV_OOBAND (line 358) | EV_OOBAND = 0x2000 constant EV_POLL (line 359) | EV_POLL = 0x1000 constant EV_RECEIPT (line 360) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 361) | EV_SYSFLAGS = 0xf000 constant EXTA (line 362) | EXTA = 0x4b00 constant EXTB (line 363) | EXTB = 0x9600 constant EXTPROC (line 364) | EXTPROC = 0x800 constant FD_CLOEXEC (line 365) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 366) | FD_SETSIZE = 0x400 constant FLUSHO (line 367) | FLUSHO = 0x800000 constant F_ADDFILESIGS (line 368) | F_ADDFILESIGS = 0x3d constant F_ADDSIGS (line 369) | F_ADDSIGS = 0x3b constant F_ALLOCATEALL (line 370) | F_ALLOCATEALL = 0x4 constant F_ALLOCATECONTIG (line 371) | F_ALLOCATECONTIG = 0x2 constant F_CHKCLEAN (line 372) | F_CHKCLEAN = 0x29 constant F_DUPFD (line 373) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 374) | F_DUPFD_CLOEXEC = 0x43 constant F_FINDSIGS (line 375) | F_FINDSIGS = 0x4e constant F_FLUSH_DATA (line 376) | F_FLUSH_DATA = 0x28 constant F_FREEZE_FS (line 377) | F_FREEZE_FS = 0x35 constant F_FULLFSYNC (line 378) | F_FULLFSYNC = 0x33 constant F_GETCODEDIR (line 379) | F_GETCODEDIR = 0x48 constant F_GETFD (line 380) | F_GETFD = 0x1 constant F_GETFL (line 381) | F_GETFL = 0x3 constant F_GETLK (line 382) | F_GETLK = 0x7 constant F_GETLKPID (line 383) | F_GETLKPID = 0x42 constant F_GETNOSIGPIPE (line 384) | F_GETNOSIGPIPE = 0x4a constant F_GETOWN (line 385) | F_GETOWN = 0x5 constant F_GETPATH (line 386) | F_GETPATH = 0x32 constant F_GETPATH_MTMINFO (line 387) | F_GETPATH_MTMINFO = 0x47 constant F_GETPROTECTIONCLASS (line 388) | F_GETPROTECTIONCLASS = 0x3f constant F_GETPROTECTIONLEVEL (line 389) | F_GETPROTECTIONLEVEL = 0x4d constant F_GLOBAL_NOCACHE (line 390) | F_GLOBAL_NOCACHE = 0x37 constant F_LOG2PHYS (line 391) | F_LOG2PHYS = 0x31 constant F_LOG2PHYS_EXT (line 392) | F_LOG2PHYS_EXT = 0x41 constant F_NOCACHE (line 393) | F_NOCACHE = 0x30 constant F_NODIRECT (line 394) | F_NODIRECT = 0x3e constant F_OK (line 395) | F_OK = 0x0 constant F_PATHPKG_CHECK (line 396) | F_PATHPKG_CHECK = 0x34 constant F_PEOFPOSMODE (line 397) | F_PEOFPOSMODE = 0x3 constant F_PREALLOCATE (line 398) | F_PREALLOCATE = 0x2a constant F_RDADVISE (line 399) | F_RDADVISE = 0x2c constant F_RDAHEAD (line 400) | F_RDAHEAD = 0x2d constant F_RDLCK (line 401) | F_RDLCK = 0x1 constant F_SETBACKINGSTORE (line 402) | F_SETBACKINGSTORE = 0x46 constant F_SETFD (line 403) | F_SETFD = 0x2 constant F_SETFL (line 404) | F_SETFL = 0x4 constant F_SETLK (line 405) | F_SETLK = 0x8 constant F_SETLKW (line 406) | F_SETLKW = 0x9 constant F_SETLKWTIMEOUT (line 407) | F_SETLKWTIMEOUT = 0xa constant F_SETNOSIGPIPE (line 408) | F_SETNOSIGPIPE = 0x49 constant F_SETOWN (line 409) | F_SETOWN = 0x6 constant F_SETPROTECTIONCLASS (line 410) | F_SETPROTECTIONCLASS = 0x40 constant F_SETSIZE (line 411) | F_SETSIZE = 0x2b constant F_SINGLE_WRITER (line 412) | F_SINGLE_WRITER = 0x4c constant F_THAW_FS (line 413) | F_THAW_FS = 0x36 constant F_TRANSCODEKEY (line 414) | F_TRANSCODEKEY = 0x4b constant F_UNLCK (line 415) | F_UNLCK = 0x2 constant F_VOLPOSMODE (line 416) | F_VOLPOSMODE = 0x4 constant F_WRLCK (line 417) | F_WRLCK = 0x3 constant HUPCL (line 418) | HUPCL = 0x4000 constant ICANON (line 419) | ICANON = 0x100 constant ICMP6_FILTER (line 420) | ICMP6_FILTER = 0x12 constant ICRNL (line 421) | ICRNL = 0x100 constant IEXTEN (line 422) | IEXTEN = 0x400 constant IFF_ALLMULTI (line 423) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 424) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 425) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 426) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 427) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 428) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 429) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 430) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 431) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 432) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 433) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 434) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 435) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 436) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 437) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 438) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 439) | IFF_UP = 0x1 constant IFNAMSIZ (line 440) | IFNAMSIZ = 0x10 constant IFT_1822 (line 441) | IFT_1822 = 0x2 constant IFT_AAL5 (line 442) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 443) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 444) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 445) | IFT_ATM = 0x25 constant IFT_BRIDGE (line 446) | IFT_BRIDGE = 0xd1 constant IFT_CARP (line 447) | IFT_CARP = 0xf8 constant IFT_CELLULAR (line 448) | IFT_CELLULAR = 0xff constant IFT_CEPT (line 449) | IFT_CEPT = 0x13 constant IFT_DS3 (line 450) | IFT_DS3 = 0x1e constant IFT_ENC (line 451) | IFT_ENC = 0xf4 constant IFT_EON (line 452) | IFT_EON = 0x19 constant IFT_ETHER (line 453) | IFT_ETHER = 0x6 constant IFT_FAITH (line 454) | IFT_FAITH = 0x38 constant IFT_FDDI (line 455) | IFT_FDDI = 0xf constant IFT_FRELAY (line 456) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 457) | IFT_FRELAYDCE = 0x2c constant IFT_GIF (line 458) | IFT_GIF = 0x37 constant IFT_HDH1822 (line 459) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 460) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 461) | IFT_HSSI = 0x2e constant IFT_HY (line 462) | IFT_HY = 0xe constant IFT_IEEE1394 (line 463) | IFT_IEEE1394 = 0x90 constant IFT_IEEE8023ADLAG (line 464) | IFT_IEEE8023ADLAG = 0x88 constant IFT_ISDNBASIC (line 465) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 466) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 467) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 468) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 469) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 470) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 471) | IFT_ISO88026 = 0xa constant IFT_L2VLAN (line 472) | IFT_L2VLAN = 0x87 constant IFT_LAPB (line 473) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 474) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 475) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 476) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 477) | IFT_MODEM = 0x30 constant IFT_NSIP (line 478) | IFT_NSIP = 0x1b constant IFT_OTHER (line 479) | IFT_OTHER = 0x1 constant IFT_P10 (line 480) | IFT_P10 = 0xc constant IFT_P80 (line 481) | IFT_P80 = 0xd constant IFT_PARA (line 482) | IFT_PARA = 0x22 constant IFT_PDP (line 483) | IFT_PDP = 0xff constant IFT_PFLOG (line 484) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 485) | IFT_PFSYNC = 0xf6 constant IFT_PKTAP (line 486) | IFT_PKTAP = 0xfe constant IFT_PPP (line 487) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 488) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 489) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 490) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 491) | IFT_RS232 = 0x21 constant IFT_SDLC (line 492) | IFT_SDLC = 0x11 constant IFT_SIP (line 493) | IFT_SIP = 0x1f constant IFT_SLIP (line 494) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 495) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 496) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 497) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 498) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 499) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 500) | IFT_STARLAN = 0xb constant IFT_STF (line 501) | IFT_STF = 0x39 constant IFT_T1 (line 502) | IFT_T1 = 0x12 constant IFT_ULTRA (line 503) | IFT_ULTRA = 0x1d constant IFT_V35 (line 504) | IFT_V35 = 0x2d constant IFT_X25 (line 505) | IFT_X25 = 0x5 constant IFT_X25DDN (line 506) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 507) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 508) | IFT_XETHER = 0x1a constant IGNBRK (line 509) | IGNBRK = 0x1 constant IGNCR (line 510) | IGNCR = 0x80 constant IGNPAR (line 511) | IGNPAR = 0x4 constant IMAXBEL (line 512) | IMAXBEL = 0x2000 constant INLCR (line 513) | INLCR = 0x40 constant INPCK (line 514) | INPCK = 0x10 constant IN_CLASSA_HOST (line 515) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 516) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 517) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 518) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 519) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 520) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 521) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 522) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 523) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 524) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 525) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 526) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 527) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 528) | IN_CLASSD_NSHIFT = 0x1c constant IN_LINKLOCALNETNUM (line 529) | IN_LINKLOCALNETNUM = 0xa9fe0000 constant IN_LOOPBACKNET (line 530) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 531) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 532) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 533) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 534) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 535) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 536) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 537) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 538) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 539) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 540) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CFTP (line 541) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 542) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 543) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 544) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 545) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 546) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 547) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 548) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 549) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 550) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 551) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 552) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 553) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 554) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 555) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 556) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 557) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 558) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 559) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 560) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 561) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 562) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 563) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 564) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 565) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 566) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 567) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 568) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 569) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 570) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 571) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 572) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 573) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 574) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 575) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 576) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 577) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 578) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 579) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 580) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 581) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 582) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 583) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 584) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 585) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 586) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 587) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 588) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 589) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 590) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 591) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 592) | IPPROTO_MICP = 0x5f constant IPPROTO_MTP (line 593) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 594) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 595) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 596) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 597) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 598) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 599) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 600) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PGM (line 601) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 602) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 603) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 604) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 605) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 606) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 607) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 608) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 609) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 610) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 611) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 612) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 613) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 614) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 615) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 616) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 617) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 618) | IPPROTO_SEP = 0x21 constant IPPROTO_SRPC (line 619) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 620) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 621) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 622) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 623) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 624) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 625) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 626) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 627) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 628) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 629) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 630) | IPPROTO_UDP = 0x11 constant IPPROTO_VINES (line 631) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 632) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 633) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 634) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 635) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 636) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 637) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 638) | IPPROTO_XTP = 0x24 constant IPV6_2292DSTOPTS (line 639) | IPV6_2292DSTOPTS = 0x17 constant IPV6_2292HOPLIMIT (line 640) | IPV6_2292HOPLIMIT = 0x14 constant IPV6_2292HOPOPTS (line 641) | IPV6_2292HOPOPTS = 0x16 constant IPV6_2292NEXTHOP (line 642) | IPV6_2292NEXTHOP = 0x15 constant IPV6_2292PKTINFO (line 643) | IPV6_2292PKTINFO = 0x13 constant IPV6_2292PKTOPTIONS (line 644) | IPV6_2292PKTOPTIONS = 0x19 constant IPV6_2292RTHDR (line 645) | IPV6_2292RTHDR = 0x18 constant IPV6_BINDV6ONLY (line 646) | IPV6_BINDV6ONLY = 0x1b constant IPV6_BOUND_IF (line 647) | IPV6_BOUND_IF = 0x7d constant IPV6_CHECKSUM (line 648) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 649) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 650) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 651) | IPV6_DEFHLIM = 0x40 constant IPV6_FAITH (line 652) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 653) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 654) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 655) | IPV6_FRAGTTL = 0x3c constant IPV6_FW_ADD (line 656) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 657) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 658) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 659) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 660) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 661) | IPV6_HLIMDEC = 0x1 constant IPV6_IPSEC_POLICY (line 662) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 663) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 664) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 665) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 666) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 667) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 668) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 669) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 670) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 671) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 672) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 673) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 674) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 675) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_PORTRANGE (line 676) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 677) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 678) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 679) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVTCLASS (line 680) | IPV6_RECVTCLASS = 0x23 constant IPV6_RTHDR_LOOSE (line 681) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 682) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 683) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 684) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 685) | IPV6_TCLASS = 0x24 constant IPV6_UNICAST_HOPS (line 686) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_V6ONLY (line 687) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 688) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 689) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 690) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 691) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BLOCK_SOURCE (line 692) | IP_BLOCK_SOURCE = 0x48 constant IP_BOUND_IF (line 693) | IP_BOUND_IF = 0x19 constant IP_DEFAULT_MULTICAST_LOOP (line 694) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 695) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 696) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 697) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 698) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET_CONFIGURE (line 699) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 700) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 701) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 702) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 703) | IP_FAITH = 0x16 constant IP_FW_ADD (line 704) | IP_FW_ADD = 0x28 constant IP_FW_DEL (line 705) | IP_FW_DEL = 0x29 constant IP_FW_FLUSH (line 706) | IP_FW_FLUSH = 0x2a constant IP_FW_GET (line 707) | IP_FW_GET = 0x2c constant IP_FW_RESETLOG (line 708) | IP_FW_RESETLOG = 0x2d constant IP_FW_ZERO (line 709) | IP_FW_ZERO = 0x2b constant IP_HDRINCL (line 710) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 711) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 712) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 713) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 714) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 715) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 716) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MF (line 717) | IP_MF = 0x2000 constant IP_MIN_MEMBERSHIPS (line 718) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 719) | IP_MSFILTER = 0x4a constant IP_MSS (line 720) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 721) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_IFINDEX (line 722) | IP_MULTICAST_IFINDEX = 0x42 constant IP_MULTICAST_LOOP (line 723) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 724) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 725) | IP_MULTICAST_VIF = 0xe constant IP_NAT__XXX (line 726) | IP_NAT__XXX = 0x37 constant IP_OFFMASK (line 727) | IP_OFFMASK = 0x1fff constant IP_OLD_FW_ADD (line 728) | IP_OLD_FW_ADD = 0x32 constant IP_OLD_FW_DEL (line 729) | IP_OLD_FW_DEL = 0x33 constant IP_OLD_FW_FLUSH (line 730) | IP_OLD_FW_FLUSH = 0x34 constant IP_OLD_FW_GET (line 731) | IP_OLD_FW_GET = 0x36 constant IP_OLD_FW_RESETLOG (line 732) | IP_OLD_FW_RESETLOG = 0x38 constant IP_OLD_FW_ZERO (line 733) | IP_OLD_FW_ZERO = 0x35 constant IP_OPTIONS (line 734) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 735) | IP_PKTINFO = 0x1a constant IP_PORTRANGE (line 736) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 737) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 738) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 739) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 740) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 741) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 742) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 743) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 744) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 745) | IP_RECVTTL = 0x18 constant IP_RETOPTS (line 746) | IP_RETOPTS = 0x8 constant IP_RF (line 747) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 748) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 749) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 750) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 751) | IP_RSVP_VIF_ON = 0x11 constant IP_STRIPHDR (line 752) | IP_STRIPHDR = 0x17 constant IP_TOS (line 753) | IP_TOS = 0x3 constant IP_TRAFFIC_MGT_BACKGROUND (line 754) | IP_TRAFFIC_MGT_BACKGROUND = 0x41 constant IP_TTL (line 755) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 756) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 757) | ISIG = 0x80 constant ISTRIP (line 758) | ISTRIP = 0x20 constant IUTF8 (line 759) | IUTF8 = 0x4000 constant IXANY (line 760) | IXANY = 0x800 constant IXOFF (line 761) | IXOFF = 0x400 constant IXON (line 762) | IXON = 0x200 constant LOCK_EX (line 763) | LOCK_EX = 0x2 constant LOCK_NB (line 764) | LOCK_NB = 0x4 constant LOCK_SH (line 765) | LOCK_SH = 0x1 constant LOCK_UN (line 766) | LOCK_UN = 0x8 constant MADV_CAN_REUSE (line 767) | MADV_CAN_REUSE = 0x9 constant MADV_DONTNEED (line 768) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 769) | MADV_FREE = 0x5 constant MADV_FREE_REUSABLE (line 770) | MADV_FREE_REUSABLE = 0x7 constant MADV_FREE_REUSE (line 771) | MADV_FREE_REUSE = 0x8 constant MADV_NORMAL (line 772) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 773) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 774) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 775) | MADV_WILLNEED = 0x3 constant MADV_ZERO_WIRED_PAGES (line 776) | MADV_ZERO_WIRED_PAGES = 0x6 constant MAP_ANON (line 777) | MAP_ANON = 0x1000 constant MAP_COPY (line 778) | MAP_COPY = 0x2 constant MAP_FILE (line 779) | MAP_FILE = 0x0 constant MAP_FIXED (line 780) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 781) | MAP_HASSEMAPHORE = 0x200 constant MAP_JIT (line 782) | MAP_JIT = 0x800 constant MAP_NOCACHE (line 783) | MAP_NOCACHE = 0x400 constant MAP_NOEXTEND (line 784) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 785) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 786) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 787) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 788) | MAP_RESERVED0080 = 0x80 constant MAP_SHARED (line 789) | MAP_SHARED = 0x1 constant MCL_CURRENT (line 790) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 791) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 792) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 793) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 794) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 795) | MSG_EOF = 0x100 constant MSG_EOR (line 796) | MSG_EOR = 0x8 constant MSG_FLUSH (line 797) | MSG_FLUSH = 0x400 constant MSG_HAVEMORE (line 798) | MSG_HAVEMORE = 0x2000 constant MSG_HOLD (line 799) | MSG_HOLD = 0x800 constant MSG_NEEDSA (line 800) | MSG_NEEDSA = 0x10000 constant MSG_OOB (line 801) | MSG_OOB = 0x1 constant MSG_PEEK (line 802) | MSG_PEEK = 0x2 constant MSG_RCVMORE (line 803) | MSG_RCVMORE = 0x4000 constant MSG_SEND (line 804) | MSG_SEND = 0x1000 constant MSG_TRUNC (line 805) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 806) | MSG_WAITALL = 0x40 constant MSG_WAITSTREAM (line 807) | MSG_WAITSTREAM = 0x200 constant MS_ASYNC (line 808) | MS_ASYNC = 0x1 constant MS_DEACTIVATE (line 809) | MS_DEACTIVATE = 0x8 constant MS_INVALIDATE (line 810) | MS_INVALIDATE = 0x2 constant MS_KILLPAGES (line 811) | MS_KILLPAGES = 0x4 constant MS_SYNC (line 812) | MS_SYNC = 0x10 constant NAME_MAX (line 813) | NAME_MAX = 0xff constant NET_RT_DUMP (line 814) | NET_RT_DUMP = 0x1 constant NET_RT_DUMP2 (line 815) | NET_RT_DUMP2 = 0x7 constant NET_RT_FLAGS (line 816) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 817) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLIST2 (line 818) | NET_RT_IFLIST2 = 0x6 constant NET_RT_MAXID (line 819) | NET_RT_MAXID = 0xa constant NET_RT_STAT (line 820) | NET_RT_STAT = 0x4 constant NET_RT_TRASH (line 821) | NET_RT_TRASH = 0x5 constant NOFLSH (line 822) | NOFLSH = 0x80000000 constant NOTE_ABSOLUTE (line 823) | NOTE_ABSOLUTE = 0x8 constant NOTE_ATTRIB (line 824) | NOTE_ATTRIB = 0x8 constant NOTE_BACKGROUND (line 825) | NOTE_BACKGROUND = 0x40 constant NOTE_CHILD (line 826) | NOTE_CHILD = 0x4 constant NOTE_CRITICAL (line 827) | NOTE_CRITICAL = 0x20 constant NOTE_DELETE (line 828) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 829) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 830) | NOTE_EXIT = 0x80000000 constant NOTE_EXITSTATUS (line 831) | NOTE_EXITSTATUS = 0x4000000 constant NOTE_EXIT_CSERROR (line 832) | NOTE_EXIT_CSERROR = 0x40000 constant NOTE_EXIT_DECRYPTFAIL (line 833) | NOTE_EXIT_DECRYPTFAIL = 0x10000 constant NOTE_EXIT_DETAIL (line 834) | NOTE_EXIT_DETAIL = 0x2000000 constant NOTE_EXIT_DETAIL_MASK (line 835) | NOTE_EXIT_DETAIL_MASK = 0x70000 constant NOTE_EXIT_MEMORY (line 836) | NOTE_EXIT_MEMORY = 0x20000 constant NOTE_EXIT_REPARENTED (line 837) | NOTE_EXIT_REPARENTED = 0x80000 constant NOTE_EXTEND (line 838) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 839) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 840) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 841) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 842) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 843) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 844) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 845) | NOTE_FORK = 0x40000000 constant NOTE_LEEWAY (line 846) | NOTE_LEEWAY = 0x10 constant NOTE_LINK (line 847) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 848) | NOTE_LOWAT = 0x1 constant NOTE_NONE (line 849) | NOTE_NONE = 0x80 constant NOTE_NSECONDS (line 850) | NOTE_NSECONDS = 0x4 constant NOTE_PCTRLMASK (line 851) | NOTE_PCTRLMASK = -0x100000 constant NOTE_PDATAMASK (line 852) | NOTE_PDATAMASK = 0xfffff constant NOTE_REAP (line 853) | NOTE_REAP = 0x10000000 constant NOTE_RENAME (line 854) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 855) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 856) | NOTE_SECONDS = 0x1 constant NOTE_SIGNAL (line 857) | NOTE_SIGNAL = 0x8000000 constant NOTE_TRACK (line 858) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 859) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 860) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 861) | NOTE_USECONDS = 0x2 constant NOTE_VM_ERROR (line 862) | NOTE_VM_ERROR = 0x10000000 constant NOTE_VM_PRESSURE (line 863) | NOTE_VM_PRESSURE = 0x80000000 constant NOTE_VM_PRESSURE_SUDDEN_TERMINATE (line 864) | NOTE_VM_PRESSURE_SUDDEN_TERMINATE = 0x20000000 constant NOTE_VM_PRESSURE_TERMINATE (line 865) | NOTE_VM_PRESSURE_TERMINATE = 0x40000000 constant NOTE_WRITE (line 866) | NOTE_WRITE = 0x2 constant OCRNL (line 867) | OCRNL = 0x10 constant OFDEL (line 868) | OFDEL = 0x20000 constant OFILL (line 869) | OFILL = 0x80 constant ONLCR (line 870) | ONLCR = 0x2 constant ONLRET (line 871) | ONLRET = 0x40 constant ONOCR (line 872) | ONOCR = 0x20 constant ONOEOT (line 873) | ONOEOT = 0x8 constant OPOST (line 874) | OPOST = 0x1 constant O_ACCMODE (line 875) | O_ACCMODE = 0x3 constant O_ALERT (line 876) | O_ALERT = 0x20000000 constant O_APPEND (line 877) | O_APPEND = 0x8 constant O_ASYNC (line 878) | O_ASYNC = 0x40 constant O_CLOEXEC (line 879) | O_CLOEXEC = 0x1000000 constant O_CREAT (line 880) | O_CREAT = 0x200 constant O_DIRECTORY (line 881) | O_DIRECTORY = 0x100000 constant O_DP_GETRAWENCRYPTED (line 882) | O_DP_GETRAWENCRYPTED = 0x1 constant O_DSYNC (line 883) | O_DSYNC = 0x400000 constant O_EVTONLY (line 884) | O_EVTONLY = 0x8000 constant O_EXCL (line 885) | O_EXCL = 0x800 constant O_EXLOCK (line 886) | O_EXLOCK = 0x20 constant O_FSYNC (line 887) | O_FSYNC = 0x80 constant O_NDELAY (line 888) | O_NDELAY = 0x4 constant O_NOCTTY (line 889) | O_NOCTTY = 0x20000 constant O_NOFOLLOW (line 890) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 891) | O_NONBLOCK = 0x4 constant O_POPUP (line 892) | O_POPUP = 0x80000000 constant O_RDONLY (line 893) | O_RDONLY = 0x0 constant O_RDWR (line 894) | O_RDWR = 0x2 constant O_SHLOCK (line 895) | O_SHLOCK = 0x10 constant O_SYMLINK (line 896) | O_SYMLINK = 0x200000 constant O_SYNC (line 897) | O_SYNC = 0x80 constant O_TRUNC (line 898) | O_TRUNC = 0x400 constant O_WRONLY (line 899) | O_WRONLY = 0x1 constant PARENB (line 900) | PARENB = 0x1000 constant PARMRK (line 901) | PARMRK = 0x8 constant PARODD (line 902) | PARODD = 0x2000 constant PENDIN (line 903) | PENDIN = 0x20000000 constant PRIO_PGRP (line 904) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 905) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 906) | PRIO_USER = 0x2 constant PROT_EXEC (line 907) | PROT_EXEC = 0x4 constant PROT_NONE (line 908) | PROT_NONE = 0x0 constant PROT_READ (line 909) | PROT_READ = 0x1 constant PROT_WRITE (line 910) | PROT_WRITE = 0x2 constant PT_ATTACH (line 911) | PT_ATTACH = 0xa constant PT_ATTACHEXC (line 912) | PT_ATTACHEXC = 0xe constant PT_CONTINUE (line 913) | PT_CONTINUE = 0x7 constant PT_DENY_ATTACH (line 914) | PT_DENY_ATTACH = 0x1f constant PT_DETACH (line 915) | PT_DETACH = 0xb constant PT_FIRSTMACH (line 916) | PT_FIRSTMACH = 0x20 constant PT_FORCEQUOTA (line 917) | PT_FORCEQUOTA = 0x1e constant PT_KILL (line 918) | PT_KILL = 0x8 constant PT_READ_D (line 919) | PT_READ_D = 0x2 constant PT_READ_I (line 920) | PT_READ_I = 0x1 constant PT_READ_U (line 921) | PT_READ_U = 0x3 constant PT_SIGEXC (line 922) | PT_SIGEXC = 0xc constant PT_STEP (line 923) | PT_STEP = 0x9 constant PT_THUPDATE (line 924) | PT_THUPDATE = 0xd constant PT_TRACE_ME (line 925) | PT_TRACE_ME = 0x0 constant PT_WRITE_D (line 926) | PT_WRITE_D = 0x5 constant PT_WRITE_I (line 927) | PT_WRITE_I = 0x4 constant PT_WRITE_U (line 928) | PT_WRITE_U = 0x6 constant RLIMIT_AS (line 929) | RLIMIT_AS = 0x5 constant RLIMIT_CORE (line 930) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 931) | RLIMIT_CPU = 0x0 constant RLIMIT_CPU_USAGE_MONITOR (line 932) | RLIMIT_CPU_USAGE_MONITOR = 0x2 constant RLIMIT_DATA (line 933) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 934) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 935) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 936) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 937) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 938) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 939) | RTAX_BRD = 0x7 constant RTAX_DST (line 940) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 941) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 942) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 943) | RTAX_IFA = 0x5 constant RTAX_IFP (line 944) | RTAX_IFP = 0x4 constant RTAX_MAX (line 945) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 946) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 947) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 948) | RTA_BRD = 0x80 constant RTA_DST (line 949) | RTA_DST = 0x1 constant RTA_GATEWAY (line 950) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 951) | RTA_GENMASK = 0x8 constant RTA_IFA (line 952) | RTA_IFA = 0x20 constant RTA_IFP (line 953) | RTA_IFP = 0x10 constant RTA_NETMASK (line 954) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 955) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 956) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 957) | RTF_CLONING = 0x100 constant RTF_CONDEMNED (line 958) | RTF_CONDEMNED = 0x2000000 constant RTF_DELCLONE (line 959) | RTF_DELCLONE = 0x80 constant RTF_DONE (line 960) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 961) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 962) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 963) | RTF_HOST = 0x4 constant RTF_IFREF (line 964) | RTF_IFREF = 0x4000000 constant RTF_IFSCOPE (line 965) | RTF_IFSCOPE = 0x1000000 constant RTF_LLINFO (line 966) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 967) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 968) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 969) | RTF_MULTICAST = 0x800000 constant RTF_NOIFREF (line 970) | RTF_NOIFREF = 0x2000 constant RTF_PINNED (line 971) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 972) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 973) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 974) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 975) | RTF_PROTO3 = 0x40000 constant RTF_PROXY (line 976) | RTF_PROXY = 0x8000000 constant RTF_REJECT (line 977) | RTF_REJECT = 0x8 constant RTF_ROUTER (line 978) | RTF_ROUTER = 0x10000000 constant RTF_STATIC (line 979) | RTF_STATIC = 0x800 constant RTF_UP (line 980) | RTF_UP = 0x1 constant RTF_WASCLONED (line 981) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 982) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 983) | RTM_ADD = 0x1 constant RTM_CHANGE (line 984) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 985) | RTM_DELADDR = 0xd constant RTM_DELETE (line 986) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 987) | RTM_DELMADDR = 0x10 constant RTM_GET (line 988) | RTM_GET = 0x4 constant RTM_GET2 (line 989) | RTM_GET2 = 0x14 constant RTM_IFINFO (line 990) | RTM_IFINFO = 0xe constant RTM_IFINFO2 (line 991) | RTM_IFINFO2 = 0x12 constant RTM_LOCK (line 992) | RTM_LOCK = 0x8 constant RTM_LOSING (line 993) | RTM_LOSING = 0x5 constant RTM_MISS (line 994) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 995) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 996) | RTM_NEWMADDR = 0xf constant RTM_NEWMADDR2 (line 997) | RTM_NEWMADDR2 = 0x13 constant RTM_OLDADD (line 998) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 999) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1000) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1001) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1002) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1003) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1004) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1005) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1006) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1007) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1008) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1009) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1010) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1011) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1012) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1013) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1014) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1015) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1016) | SCM_TIMESTAMP = 0x2 constant SCM_TIMESTAMP_MONOTONIC (line 1017) | SCM_TIMESTAMP_MONOTONIC = 0x4 constant SHUT_RD (line 1018) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1019) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1020) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1021) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1022) | SIOCAIFADDR = 0x8040691a constant SIOCARPIPLL (line 1023) | SIOCARPIPLL = 0xc0206928 constant SIOCATMARK (line 1024) | SIOCATMARK = 0x40047307 constant SIOCAUTOADDR (line 1025) | SIOCAUTOADDR = 0xc0206926 constant SIOCAUTONETMASK (line 1026) | SIOCAUTONETMASK = 0x80206927 constant SIOCDELMULTI (line 1027) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1028) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1029) | SIOCDIFPHYADDR = 0x80206941 constant SIOCGDRVSPEC (line 1030) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETVLAN (line 1031) | SIOCGETVLAN = 0xc020697f constant SIOCGHIWAT (line 1032) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1033) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFALTMTU (line 1034) | SIOCGIFALTMTU = 0xc0206948 constant SIOCGIFASYNCMAP (line 1035) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBOND (line 1036) | SIOCGIFBOND = 0xc0206947 constant SIOCGIFBRDADDR (line 1037) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1038) | SIOCGIFCAP = 0xc020695b constant SIOCGIFCONF (line 1039) | SIOCGIFCONF = 0xc00c6924 constant SIOCGIFDEVMTU (line 1040) | SIOCGIFDEVMTU = 0xc0206944 constant SIOCGIFDSTADDR (line 1041) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1042) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1043) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFKPI (line 1044) | SIOCGIFKPI = 0xc0206987 constant SIOCGIFMAC (line 1045) | SIOCGIFMAC = 0xc0206982 constant SIOCGIFMEDIA (line 1046) | SIOCGIFMEDIA = 0xc02c6938 constant SIOCGIFMETRIC (line 1047) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1048) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1049) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1050) | SIOCGIFPDSTADDR = 0xc0206940 constant SIOCGIFPHYS (line 1051) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1052) | SIOCGIFPSRCADDR = 0xc020693f constant SIOCGIFSTATUS (line 1053) | SIOCGIFSTATUS = 0xc331693d constant SIOCGIFVLAN (line 1054) | SIOCGIFVLAN = 0xc020697f constant SIOCGIFWAKEFLAGS (line 1055) | SIOCGIFWAKEFLAGS = 0xc0206988 constant SIOCGLOWAT (line 1056) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1057) | SIOCGPGRP = 0x40047309 constant SIOCIFCREATE (line 1058) | SIOCIFCREATE = 0xc0206978 constant SIOCIFCREATE2 (line 1059) | SIOCIFCREATE2 = 0xc020697a constant SIOCIFDESTROY (line 1060) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1061) | SIOCIFGCLONERS = 0xc0106981 constant SIOCRSLVMULTI (line 1062) | SIOCRSLVMULTI = 0xc010693b constant SIOCSDRVSPEC (line 1063) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETVLAN (line 1064) | SIOCSETVLAN = 0x8020697e constant SIOCSHIWAT (line 1065) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1066) | SIOCSIFADDR = 0x8020690c constant SIOCSIFALTMTU (line 1067) | SIOCSIFALTMTU = 0x80206945 constant SIOCSIFASYNCMAP (line 1068) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBOND (line 1069) | SIOCSIFBOND = 0x80206946 constant SIOCSIFBRDADDR (line 1070) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1071) | SIOCSIFCAP = 0x8020695a constant SIOCSIFDSTADDR (line 1072) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1073) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1074) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFKPI (line 1075) | SIOCSIFKPI = 0x80206986 constant SIOCSIFLLADDR (line 1076) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1077) | SIOCSIFMAC = 0x80206983 constant SIOCSIFMEDIA (line 1078) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1079) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1080) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNETMASK (line 1081) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1082) | SIOCSIFPHYADDR = 0x8040693e constant SIOCSIFPHYS (line 1083) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFVLAN (line 1084) | SIOCSIFVLAN = 0x8020697e constant SIOCSLOWAT (line 1085) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1086) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1087) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1088) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1089) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1090) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1091) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1092) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1093) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1094) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1095) | SO_ACCEPTCONN = 0x2 constant SO_BROADCAST (line 1096) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1097) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1098) | SO_DONTROUTE = 0x10 constant SO_DONTTRUNC (line 1099) | SO_DONTTRUNC = 0x2000 constant SO_ERROR (line 1100) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1101) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1102) | SO_LABEL = 0x1010 constant SO_LINGER (line 1103) | SO_LINGER = 0x80 constant SO_LINGER_SEC (line 1104) | SO_LINGER_SEC = 0x1080 constant SO_NKE (line 1105) | SO_NKE = 0x1021 constant SO_NOADDRERR (line 1106) | SO_NOADDRERR = 0x1023 constant SO_NOSIGPIPE (line 1107) | SO_NOSIGPIPE = 0x1022 constant SO_NOTIFYCONFLICT (line 1108) | SO_NOTIFYCONFLICT = 0x1026 constant SO_NP_EXTENSIONS (line 1109) | SO_NP_EXTENSIONS = 0x1083 constant SO_NREAD (line 1110) | SO_NREAD = 0x1020 constant SO_NUMRCVPKT (line 1111) | SO_NUMRCVPKT = 0x1112 constant SO_NWRITE (line 1112) | SO_NWRITE = 0x1024 constant SO_OOBINLINE (line 1113) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1114) | SO_PEERLABEL = 0x1011 constant SO_RANDOMPORT (line 1115) | SO_RANDOMPORT = 0x1082 constant SO_RCVBUF (line 1116) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1117) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1118) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1119) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1120) | SO_REUSEPORT = 0x200 constant SO_REUSESHAREUID (line 1121) | SO_REUSESHAREUID = 0x1025 constant SO_SNDBUF (line 1122) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1123) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1124) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1125) | SO_TIMESTAMP = 0x400 constant SO_TIMESTAMP_MONOTONIC (line 1126) | SO_TIMESTAMP_MONOTONIC = 0x800 constant SO_TYPE (line 1127) | SO_TYPE = 0x1008 constant SO_UPCALLCLOSEWAIT (line 1128) | SO_UPCALLCLOSEWAIT = 0x1027 constant SO_USELOOPBACK (line 1129) | SO_USELOOPBACK = 0x40 constant SO_WANTMORE (line 1130) | SO_WANTMORE = 0x4000 constant SO_WANTOOBFLAG (line 1131) | SO_WANTOOBFLAG = 0x8000 constant S_IEXEC (line 1132) | S_IEXEC = 0x40 constant S_IFBLK (line 1133) | S_IFBLK = 0x6000 constant S_IFCHR (line 1134) | S_IFCHR = 0x2000 constant S_IFDIR (line 1135) | S_IFDIR = 0x4000 constant S_IFIFO (line 1136) | S_IFIFO = 0x1000 constant S_IFLNK (line 1137) | S_IFLNK = 0xa000 constant S_IFMT (line 1138) | S_IFMT = 0xf000 constant S_IFREG (line 1139) | S_IFREG = 0x8000 constant S_IFSOCK (line 1140) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1141) | S_IFWHT = 0xe000 constant S_IREAD (line 1142) | S_IREAD = 0x100 constant S_IRGRP (line 1143) | S_IRGRP = 0x20 constant S_IROTH (line 1144) | S_IROTH = 0x4 constant S_IRUSR (line 1145) | S_IRUSR = 0x100 constant S_IRWXG (line 1146) | S_IRWXG = 0x38 constant S_IRWXO (line 1147) | S_IRWXO = 0x7 constant S_IRWXU (line 1148) | S_IRWXU = 0x1c0 constant S_ISGID (line 1149) | S_ISGID = 0x400 constant S_ISTXT (line 1150) | S_ISTXT = 0x200 constant S_ISUID (line 1151) | S_ISUID = 0x800 constant S_ISVTX (line 1152) | S_ISVTX = 0x200 constant S_IWGRP (line 1153) | S_IWGRP = 0x10 constant S_IWOTH (line 1154) | S_IWOTH = 0x2 constant S_IWRITE (line 1155) | S_IWRITE = 0x80 constant S_IWUSR (line 1156) | S_IWUSR = 0x80 constant S_IXGRP (line 1157) | S_IXGRP = 0x8 constant S_IXOTH (line 1158) | S_IXOTH = 0x1 constant S_IXUSR (line 1159) | S_IXUSR = 0x40 constant TCIFLUSH (line 1160) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1161) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1162) | TCOFLUSH = 0x2 constant TCP_CONNECTIONTIMEOUT (line 1163) | TCP_CONNECTIONTIMEOUT = 0x20 constant TCP_ENABLE_ECN (line 1164) | TCP_ENABLE_ECN = 0x104 constant TCP_KEEPALIVE (line 1165) | TCP_KEEPALIVE = 0x10 constant TCP_KEEPCNT (line 1166) | TCP_KEEPCNT = 0x102 constant TCP_KEEPINTVL (line 1167) | TCP_KEEPINTVL = 0x101 constant TCP_MAXHLEN (line 1168) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1169) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1170) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1171) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1172) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1173) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1174) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1175) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1176) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1177) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1178) | TCP_NOPUSH = 0x4 constant TCP_NOTSENT_LOWAT (line 1179) | TCP_NOTSENT_LOWAT = 0x201 constant TCP_RXT_CONNDROPTIME (line 1180) | TCP_RXT_CONNDROPTIME = 0x80 constant TCP_RXT_FINDROP (line 1181) | TCP_RXT_FINDROP = 0x100 constant TCP_SENDMOREACKS (line 1182) | TCP_SENDMOREACKS = 0x103 constant TCSAFLUSH (line 1183) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1184) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1185) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1186) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1187) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1188) | TIOCDRAIN = 0x2000745e constant TIOCDSIMICROCODE (line 1189) | TIOCDSIMICROCODE = 0x20007455 constant TIOCEXCL (line 1190) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1191) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1192) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1193) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1194) | TIOCGETA = 0x40487413 constant TIOCGETD (line 1195) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1196) | TIOCGPGRP = 0x40047477 constant TIOCGWINSZ (line 1197) | TIOCGWINSZ = 0x40087468 constant TIOCIXOFF (line 1198) | TIOCIXOFF = 0x20007480 constant TIOCIXON (line 1199) | TIOCIXON = 0x20007481 constant TIOCMBIC (line 1200) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1201) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1202) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1203) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1204) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1205) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1206) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1207) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1208) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1209) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1210) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1211) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1212) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1213) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1214) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1215) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1216) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1217) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1218) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1219) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1220) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1221) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1222) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1223) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1224) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1225) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1226) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1227) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1228) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1229) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1230) | TIOCPKT_STOP = 0x4 constant TIOCPTYGNAME (line 1231) | TIOCPTYGNAME = 0x40807453 constant TIOCPTYGRANT (line 1232) | TIOCPTYGRANT = 0x20007454 constant TIOCPTYUNLK (line 1233) | TIOCPTYUNLK = 0x20007452 constant TIOCREMOTE (line 1234) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1235) | TIOCSBRK = 0x2000747b constant TIOCSCONS (line 1236) | TIOCSCONS = 0x20007463 constant TIOCSCTTY (line 1237) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1238) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1239) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1240) | TIOCSETA = 0x80487414 constant TIOCSETAF (line 1241) | TIOCSETAF = 0x80487416 constant TIOCSETAW (line 1242) | TIOCSETAW = 0x80487415 constant TIOCSETD (line 1243) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1244) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1245) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1246) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1247) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1248) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1249) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1250) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1251) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1252) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1253) | TOSTOP = 0x400000 constant VDISCARD (line 1254) | VDISCARD = 0xf constant VDSUSP (line 1255) | VDSUSP = 0xb constant VEOF (line 1256) | VEOF = 0x0 constant VEOL (line 1257) | VEOL = 0x1 constant VEOL2 (line 1258) | VEOL2 = 0x2 constant VERASE (line 1259) | VERASE = 0x3 constant VINTR (line 1260) | VINTR = 0x8 constant VKILL (line 1261) | VKILL = 0x5 constant VLNEXT (line 1262) | VLNEXT = 0xe constant VMIN (line 1263) | VMIN = 0x10 constant VQUIT (line 1264) | VQUIT = 0x9 constant VREPRINT (line 1265) | VREPRINT = 0x6 constant VSTART (line 1266) | VSTART = 0xc constant VSTATUS (line 1267) | VSTATUS = 0x12 constant VSTOP (line 1268) | VSTOP = 0xd constant VSUSP (line 1269) | VSUSP = 0xa constant VT0 (line 1270) | VT0 = 0x0 constant VT1 (line 1271) | VT1 = 0x10000 constant VTDLY (line 1272) | VTDLY = 0x10000 constant VTIME (line 1273) | VTIME = 0x11 constant VWERASE (line 1274) | VWERASE = 0x4 constant WCONTINUED (line 1275) | WCONTINUED = 0x10 constant WCOREFLAG (line 1276) | WCOREFLAG = 0x80 constant WEXITED (line 1277) | WEXITED = 0x4 constant WNOHANG (line 1278) | WNOHANG = 0x1 constant WNOWAIT (line 1279) | WNOWAIT = 0x20 constant WORDSIZE (line 1280) | WORDSIZE = 0x40 constant WSTOPPED (line 1281) | WSTOPPED = 0x8 constant WUNTRACED (line 1282) | WUNTRACED = 0x2 constant E2BIG (line 1287) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1288) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1289) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1290) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1291) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1292) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1293) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1294) | EAUTH = syscall.Errno(0x50) constant EBADARCH (line 1295) | EBADARCH = syscall.Errno(0x56) constant EBADEXEC (line 1296) | EBADEXEC = syscall.Errno(0x55) constant EBADF (line 1297) | EBADF = syscall.Errno(0x9) constant EBADMACHO (line 1298) | EBADMACHO = syscall.Errno(0x58) constant EBADMSG (line 1299) | EBADMSG = syscall.Errno(0x5e) constant EBADRPC (line 1300) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1301) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1302) | ECANCELED = syscall.Errno(0x59) constant ECHILD (line 1303) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1304) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1305) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1306) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1307) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1308) | EDESTADDRREQ = syscall.Errno(0x27) constant EDEVERR (line 1309) | EDEVERR = syscall.Errno(0x53) constant EDOM (line 1310) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1311) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1312) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1313) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1314) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1315) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1316) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1317) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1318) | EIDRM = syscall.Errno(0x5a) constant EILSEQ (line 1319) | EILSEQ = syscall.Errno(0x5c) constant EINPROGRESS (line 1320) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1321) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1322) | EINVAL = syscall.Errno(0x16) constant EIO (line 1323) | EIO = syscall.Errno(0x5) constant EISCONN (line 1324) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1325) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1326) | ELAST = syscall.Errno(0x6a) constant ELOOP (line 1327) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1328) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1329) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1330) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1331) | EMULTIHOP = syscall.Errno(0x5f) constant ENAMETOOLONG (line 1332) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1333) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1334) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1335) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1336) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1337) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1338) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1339) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1340) | ENODATA = syscall.Errno(0x60) constant ENODEV (line 1341) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1342) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1343) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1344) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1345) | ENOLINK = syscall.Errno(0x61) constant ENOMEM (line 1346) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1347) | ENOMSG = syscall.Errno(0x5b) constant ENOPOLICY (line 1348) | ENOPOLICY = syscall.Errno(0x67) constant ENOPROTOOPT (line 1349) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1350) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1351) | ENOSR = syscall.Errno(0x62) constant ENOSTR (line 1352) | ENOSTR = syscall.Errno(0x63) constant ENOSYS (line 1353) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1354) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1355) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1356) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1357) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1358) | ENOTRECOVERABLE = syscall.Errno(0x68) constant ENOTSOCK (line 1359) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1360) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1361) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1362) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1363) | EOPNOTSUPP = syscall.Errno(0x66) constant EOVERFLOW (line 1364) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1365) | EOWNERDEAD = syscall.Errno(0x69) constant EPERM (line 1366) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1367) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1368) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1369) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1370) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1371) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1372) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1373) | EPROTO = syscall.Errno(0x64) constant EPROTONOSUPPORT (line 1374) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1375) | EPROTOTYPE = syscall.Errno(0x29) constant EPWROFF (line 1376) | EPWROFF = syscall.Errno(0x52) constant EQFULL (line 1377) | EQFULL = syscall.Errno(0x6a) constant ERANGE (line 1378) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1379) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1380) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1381) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHLIBVERS (line 1382) | ESHLIBVERS = syscall.Errno(0x57) constant ESHUTDOWN (line 1383) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1384) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1385) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1386) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1387) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1388) | ETIME = syscall.Errno(0x65) constant ETIMEDOUT (line 1389) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1390) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1391) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1392) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1393) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1394) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1399) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1400) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1401) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1402) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1403) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1404) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1405) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1406) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1407) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1408) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1409) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1410) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1411) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1412) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1413) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1414) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1415) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1416) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1417) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1418) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1419) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1420) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1421) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1422) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1423) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1424) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1425) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1426) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1427) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1428) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1429) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1430) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ATM (line 15) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x21 constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x23 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x1c constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x22 constant AF_NATM (line 39) | AF_NATM = 0x1d constant AF_NETGRAPH (line 40) | AF_NETGRAPH = 0x20 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 = 0x18 constant AF_SNA (line 46) | AF_SNA = 0xb constant AF_UNIX (line 47) | AF_UNIX = 0x1 constant AF_UNSPEC (line 48) | AF_UNSPEC = 0x0 constant B0 (line 49) | B0 = 0x0 constant B110 (line 50) | B110 = 0x6e constant B115200 (line 51) | B115200 = 0x1c200 constant B1200 (line 52) | B1200 = 0x4b0 constant B134 (line 53) | B134 = 0x86 constant B14400 (line 54) | B14400 = 0x3840 constant B150 (line 55) | B150 = 0x96 constant B1800 (line 56) | B1800 = 0x708 constant B19200 (line 57) | B19200 = 0x4b00 constant B200 (line 58) | B200 = 0xc8 constant B230400 (line 59) | B230400 = 0x38400 constant B2400 (line 60) | B2400 = 0x960 constant B28800 (line 61) | B28800 = 0x7080 constant B300 (line 62) | B300 = 0x12c constant B38400 (line 63) | B38400 = 0x9600 constant B4800 (line 64) | B4800 = 0x12c0 constant B50 (line 65) | B50 = 0x32 constant B57600 (line 66) | B57600 = 0xe100 constant B600 (line 67) | B600 = 0x258 constant B7200 (line 68) | B7200 = 0x1c20 constant B75 (line 69) | B75 = 0x4b constant B76800 (line 70) | B76800 = 0x12c00 constant B9600 (line 71) | B9600 = 0x2580 constant BIOCFLUSH (line 72) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 73) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 74) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 75) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETIF (line 76) | BIOCGETIF = 0x4020426b constant BIOCGHDRCMPLT (line 77) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 78) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 79) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 80) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 81) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 82) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 83) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 84) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 85) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 86) | BIOCSDLT = 0x80044278 constant BIOCSETF (line 87) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 88) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 89) | BIOCSETWF = 0x8010427b constant BIOCSHDRCMPLT (line 90) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 91) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 92) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 93) | BIOCSSEESENT = 0x80044277 constant BIOCVERSION (line 94) | BIOCVERSION = 0x40044271 constant BPF_A (line 95) | BPF_A = 0x10 constant BPF_ABS (line 96) | BPF_ABS = 0x20 constant BPF_ADD (line 97) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 98) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 99) | BPF_ALU = 0x4 constant BPF_AND (line 100) | BPF_AND = 0x50 constant BPF_B (line 101) | BPF_B = 0x10 constant BPF_DEFAULTBUFSIZE (line 102) | BPF_DEFAULTBUFSIZE = 0x1000 constant BPF_DIV (line 103) | BPF_DIV = 0x30 constant BPF_H (line 104) | BPF_H = 0x8 constant BPF_IMM (line 105) | BPF_IMM = 0x0 constant BPF_IND (line 106) | BPF_IND = 0x40 constant BPF_JA (line 107) | BPF_JA = 0x0 constant BPF_JEQ (line 108) | BPF_JEQ = 0x10 constant BPF_JGE (line 109) | BPF_JGE = 0x30 constant BPF_JGT (line 110) | BPF_JGT = 0x20 constant BPF_JMP (line 111) | BPF_JMP = 0x5 constant BPF_JSET (line 112) | BPF_JSET = 0x40 constant BPF_K (line 113) | BPF_K = 0x0 constant BPF_LD (line 114) | BPF_LD = 0x0 constant BPF_LDX (line 115) | BPF_LDX = 0x1 constant BPF_LEN (line 116) | BPF_LEN = 0x80 constant BPF_LSH (line 117) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 118) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 119) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 120) | BPF_MAXINSNS = 0x200 constant BPF_MAX_CLONES (line 121) | BPF_MAX_CLONES = 0x80 constant BPF_MEM (line 122) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 123) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 124) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 125) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 126) | BPF_MISC = 0x7 constant BPF_MSH (line 127) | BPF_MSH = 0xa0 constant BPF_MUL (line 128) | BPF_MUL = 0x20 constant BPF_NEG (line 129) | BPF_NEG = 0x80 constant BPF_OR (line 130) | BPF_OR = 0x40 constant BPF_RELEASE (line 131) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 132) | BPF_RET = 0x6 constant BPF_RSH (line 133) | BPF_RSH = 0x70 constant BPF_ST (line 134) | BPF_ST = 0x2 constant BPF_STX (line 135) | BPF_STX = 0x3 constant BPF_SUB (line 136) | BPF_SUB = 0x10 constant BPF_TAX (line 137) | BPF_TAX = 0x0 constant BPF_TXA (line 138) | BPF_TXA = 0x80 constant BPF_W (line 139) | BPF_W = 0x0 constant BPF_X (line 140) | BPF_X = 0x8 constant BRKINT (line 141) | BRKINT = 0x2 constant CFLUSH (line 142) | CFLUSH = 0xf constant CLOCAL (line 143) | CLOCAL = 0x8000 constant CREAD (line 144) | CREAD = 0x800 constant CS5 (line 145) | CS5 = 0x0 constant CS6 (line 146) | CS6 = 0x100 constant CS7 (line 147) | CS7 = 0x200 constant CS8 (line 148) | CS8 = 0x300 constant CSIZE (line 149) | CSIZE = 0x300 constant CSTART (line 150) | CSTART = 0x11 constant CSTATUS (line 151) | CSTATUS = 0x14 constant CSTOP (line 152) | CSTOP = 0x13 constant CSTOPB (line 153) | CSTOPB = 0x400 constant CSUSP (line 154) | CSUSP = 0x1a constant CTL_MAXNAME (line 155) | CTL_MAXNAME = 0xc constant CTL_NET (line 156) | CTL_NET = 0x4 constant DLT_A429 (line 157) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 158) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 159) | DLT_AIRONET_HEADER = 0x78 constant DLT_APPLE_IP_OVER_IEEE1394 (line 160) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 161) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 162) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 163) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 165) | DLT_AURORA = 0x7e constant DLT_AX25 (line 166) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 167) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 168) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 169) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 170) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 171) | DLT_CAN20B = 0xbe constant DLT_CHAOS (line 172) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 173) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 174) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 175) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 176) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DOCSIS (line 177) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 178) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 179) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 180) | DLT_EN3MB = 0x2 constant DLT_ENC (line 181) | DLT_ENC = 0x6d constant DLT_ERF (line 182) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 183) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 184) | DLT_ERF_POS = 0xb0 constant DLT_FDDI (line 185) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 186) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 187) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 188) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 189) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 190) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 191) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 192) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 193) | DLT_GPRS_LLC = 0xa9 constant DLT_HHDLC (line 194) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 195) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 196) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 197) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 198) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 199) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 200) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 201) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 202) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 203) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 204) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 205) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 206) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 207) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 208) | DLT_IPMB_LINUX = 0xd1 constant DLT_IP_OVER_FC (line 209) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 210) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 211) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 212) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 213) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 214) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 215) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 216) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 217) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 218) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 219) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 220) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 221) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 222) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 223) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 224) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 225) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 226) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 227) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 228) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 229) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 230) | DLT_LAPD = 0xcb constant DLT_LIN (line 231) | DLT_LIN = 0xd4 constant DLT_LINUX_IRDA (line 232) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 233) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 234) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 235) | DLT_LOOP = 0x6c constant DLT_LTALK (line 236) | DLT_LTALK = 0x72 constant DLT_MFR (line 237) | DLT_MFR = 0xb6 constant DLT_MOST (line 238) | DLT_MOST = 0xd3 constant DLT_MTP2 (line 239) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 240) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 241) | DLT_MTP3 = 0x8d constant DLT_NULL (line 242) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 243) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 244) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 245) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 246) | DLT_PPI = 0xc0 constant DLT_PPP (line 247) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 248) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 249) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 250) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 251) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 252) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 253) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 254) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 255) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 256) | DLT_RAW = 0xc constant DLT_REDBACK_SMARTEDGE (line 257) | DLT_REDBACK_SMARTEDGE = 0x20 constant DLT_RIO (line 258) | DLT_RIO = 0x7c constant DLT_SCCP (line 259) | DLT_SCCP = 0x8e constant DLT_SITA (line 260) | DLT_SITA = 0xc4 constant DLT_SLIP (line 261) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 262) | DLT_SLIP_BSDOS = 0xf constant DLT_SUNATM (line 263) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 264) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 265) | DLT_TZSP = 0x80 constant DLT_USB (line 266) | DLT_USB = 0xba constant DLT_USB_LINUX (line 267) | DLT_USB_LINUX = 0xbd constant DLT_X2E_SERIAL (line 268) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 269) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 270) | DT_BLK = 0x6 constant DT_CHR (line 271) | DT_CHR = 0x2 constant DT_DBF (line 272) | DT_DBF = 0xf constant DT_DIR (line 273) | DT_DIR = 0x4 constant DT_FIFO (line 274) | DT_FIFO = 0x1 constant DT_LNK (line 275) | DT_LNK = 0xa constant DT_REG (line 276) | DT_REG = 0x8 constant DT_SOCK (line 277) | DT_SOCK = 0xc constant DT_UNKNOWN (line 278) | DT_UNKNOWN = 0x0 constant DT_WHT (line 279) | DT_WHT = 0xe constant ECHO (line 280) | ECHO = 0x8 constant ECHOCTL (line 281) | ECHOCTL = 0x40 constant ECHOE (line 282) | ECHOE = 0x2 constant ECHOK (line 283) | ECHOK = 0x4 constant ECHOKE (line 284) | ECHOKE = 0x1 constant ECHONL (line 285) | ECHONL = 0x10 constant ECHOPRT (line 286) | ECHOPRT = 0x20 constant EVFILT_AIO (line 287) | EVFILT_AIO = -0x3 constant EVFILT_EXCEPT (line 288) | EVFILT_EXCEPT = -0x8 constant EVFILT_MARKER (line 289) | EVFILT_MARKER = 0xf constant EVFILT_PROC (line 290) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 291) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 292) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 293) | EVFILT_SYSCOUNT = 0x8 constant EVFILT_TIMER (line 294) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 295) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 296) | EVFILT_WRITE = -0x2 constant EV_ADD (line 297) | EV_ADD = 0x1 constant EV_CLEAR (line 298) | EV_CLEAR = 0x20 constant EV_DELETE (line 299) | EV_DELETE = 0x2 constant EV_DISABLE (line 300) | EV_DISABLE = 0x8 constant EV_ENABLE (line 301) | EV_ENABLE = 0x4 constant EV_EOF (line 302) | EV_EOF = 0x8000 constant EV_ERROR (line 303) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 304) | EV_FLAG1 = 0x2000 constant EV_NODATA (line 305) | EV_NODATA = 0x1000 constant EV_ONESHOT (line 306) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 307) | EV_SYSFLAGS = 0xf000 constant EXTA (line 308) | EXTA = 0x4b00 constant EXTB (line 309) | EXTB = 0x9600 constant EXTEXIT_LWP (line 310) | EXTEXIT_LWP = 0x10000 constant EXTEXIT_PROC (line 311) | EXTEXIT_PROC = 0x0 constant EXTEXIT_SETINT (line 312) | EXTEXIT_SETINT = 0x1 constant EXTEXIT_SIMPLE (line 313) | EXTEXIT_SIMPLE = 0x0 constant EXTPROC (line 314) | EXTPROC = 0x800 constant FD_CLOEXEC (line 315) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 316) | FD_SETSIZE = 0x400 constant FLUSHO (line 317) | FLUSHO = 0x800000 constant F_DUP2FD (line 318) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 319) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 320) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 321) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 322) | F_GETFD = 0x1 constant F_GETFL (line 323) | F_GETFL = 0x3 constant F_GETLK (line 324) | F_GETLK = 0x7 constant F_GETOWN (line 325) | F_GETOWN = 0x5 constant F_OK (line 326) | F_OK = 0x0 constant F_RDLCK (line 327) | F_RDLCK = 0x1 constant F_SETFD (line 328) | F_SETFD = 0x2 constant F_SETFL (line 329) | F_SETFL = 0x4 constant F_SETLK (line 330) | F_SETLK = 0x8 constant F_SETLKW (line 331) | F_SETLKW = 0x9 constant F_SETOWN (line 332) | F_SETOWN = 0x6 constant F_UNLCK (line 333) | F_UNLCK = 0x2 constant F_WRLCK (line 334) | F_WRLCK = 0x3 constant HUPCL (line 335) | HUPCL = 0x4000 constant ICANON (line 336) | ICANON = 0x100 constant ICMP6_FILTER (line 337) | ICMP6_FILTER = 0x12 constant ICRNL (line 338) | ICRNL = 0x100 constant IEXTEN (line 339) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 340) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 341) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 342) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 343) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 344) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 345) | IFF_CANTCHANGE = 0x118e72 constant IFF_DEBUG (line 346) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 347) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 348) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 349) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 350) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 351) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 352) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 353) | IFF_NOARP = 0x80 constant IFF_NPOLLING (line 354) | IFF_NPOLLING = 0x100000 constant IFF_OACTIVE (line 355) | IFF_OACTIVE = 0x400 constant IFF_OACTIVE_COMPAT (line 356) | IFF_OACTIVE_COMPAT = 0x400 constant IFF_POINTOPOINT (line 357) | IFF_POINTOPOINT = 0x10 constant IFF_POLLING (line 358) | IFF_POLLING = 0x10000 constant IFF_POLLING_COMPAT (line 359) | IFF_POLLING_COMPAT = 0x10000 constant IFF_PPROMISC (line 360) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 361) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 362) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 363) | IFF_SIMPLEX = 0x800 constant IFF_SMART (line 364) | IFF_SMART = 0x20 constant IFF_STATICARP (line 365) | IFF_STATICARP = 0x80000 constant IFF_UP (line 366) | IFF_UP = 0x1 constant IFNAMSIZ (line 367) | IFNAMSIZ = 0x10 constant IFT_1822 (line 368) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 369) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 370) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 371) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 372) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 373) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 374) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 375) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 376) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 377) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 378) | IFT_ASYNC = 0x54 constant IFT_ATM (line 379) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 380) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 381) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 382) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 383) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 384) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 385) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 386) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 387) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 388) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 389) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 390) | IFT_BSC = 0x53 constant IFT_CARP (line 391) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 392) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 393) | IFT_CEPT = 0x13 constant IFT_CES (line 394) | IFT_CES = 0x85 constant IFT_CHANNEL (line 395) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 396) | IFT_CNR = 0x55 constant IFT_COFFEE (line 397) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 398) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 399) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 400) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 401) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 402) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 403) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 404) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 405) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 406) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 407) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 408) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 409) | IFT_DS3 = 0x1e constant IFT_DTM (line 410) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 411) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 412) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 413) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 414) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 415) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 416) | IFT_ENC = 0xf4 constant IFT_EON (line 417) | IFT_EON = 0x19 constant IFT_EPLRS (line 418) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 419) | IFT_ESCON = 0x49 constant IFT_ETHER (line 420) | IFT_ETHER = 0x6 constant IFT_FAITH (line 421) | IFT_FAITH = 0xf2 constant IFT_FAST (line 422) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 423) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 424) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 425) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 426) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 427) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 428) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 429) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 430) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 431) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 432) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 433) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 434) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 435) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 436) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 437) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 438) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 439) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 440) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 441) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 442) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 443) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 444) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 445) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 446) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 447) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 448) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 449) | IFT_HSSI = 0x2e constant IFT_HY (line 450) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 451) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 452) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 453) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 454) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 455) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 456) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 457) | IFT_IFGSN = 0x91 constant IFT_IMT (line 458) | IFT_IMT = 0xbe constant IFT_INTERLEAVE (line 459) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 460) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 461) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 462) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 463) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 464) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 465) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 466) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 467) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 468) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 469) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 470) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 471) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 472) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 473) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 474) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 475) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 476) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 477) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 478) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 479) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 480) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 481) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 482) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 483) | IFT_LAPB = 0x10 constant IFT_LAPD (line 484) | IFT_LAPD = 0x4d constant IFT_LAPF (line 485) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 486) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 487) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 488) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 489) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 490) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 491) | IFT_MODEM = 0x30 constant IFT_MPC (line 492) | IFT_MPC = 0x71 constant IFT_MPLS (line 493) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 494) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 495) | IFT_MSDSL = 0x8f constant IFT_MVL (line 496) | IFT_MVL = 0xbf constant IFT_MYRINET (line 497) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 498) | IFT_NFAS = 0xaf constant IFT_NSIP (line 499) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 500) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 501) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 502) | IFT_OTHER = 0x1 constant IFT_P10 (line 503) | IFT_P10 = 0xc constant IFT_P80 (line 504) | IFT_P80 = 0xd constant IFT_PARA (line 505) | IFT_PARA = 0x22 constant IFT_PFLOG (line 506) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 507) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 508) | IFT_PLC = 0xae constant IFT_POS (line 509) | IFT_POS = 0xab constant IFT_PPP (line 510) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 511) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 512) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 513) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 514) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 515) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 516) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 517) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 518) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 519) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 520) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 521) | IFT_PVC = 0xf1 constant IFT_QLLC (line 522) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 523) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 524) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 525) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 526) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 527) | IFT_RS232 = 0x21 constant IFT_RSRB (line 528) | IFT_RSRB = 0x4f constant IFT_SDLC (line 529) | IFT_SDLC = 0x11 constant IFT_SDSL (line 530) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 531) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 532) | IFT_SIP = 0x1f constant IFT_SLIP (line 533) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 534) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 535) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 536) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 537) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 538) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 539) | IFT_SONETVT = 0x33 constant IFT_SRP (line 540) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 541) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 542) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 543) | IFT_STARLAN = 0xb constant IFT_STF (line 544) | IFT_STF = 0xf3 constant IFT_T1 (line 545) | IFT_T1 = 0x12 constant IFT_TDLC (line 546) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 547) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 548) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 549) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 550) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 551) | IFT_ULTRA = 0x1d constant IFT_USB (line 552) | IFT_USB = 0xa0 constant IFT_V11 (line 553) | IFT_V11 = 0x40 constant IFT_V35 (line 554) | IFT_V35 = 0x2d constant IFT_V36 (line 555) | IFT_V36 = 0x41 constant IFT_V37 (line 556) | IFT_V37 = 0x78 constant IFT_VDSL (line 557) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 558) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 559) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 560) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 561) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 562) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 563) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 564) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 565) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 566) | IFT_X213 = 0x5d constant IFT_X25 (line 567) | IFT_X25 = 0x5 constant IFT_X25DDN (line 568) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 569) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 570) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 571) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 572) | IFT_XETHER = 0x1a constant IGNBRK (line 573) | IGNBRK = 0x1 constant IGNCR (line 574) | IGNCR = 0x80 constant IGNPAR (line 575) | IGNPAR = 0x4 constant IMAXBEL (line 576) | IMAXBEL = 0x2000 constant INLCR (line 577) | INLCR = 0x40 constant INPCK (line 578) | INPCK = 0x10 constant IN_CLASSA_HOST (line 579) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 580) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 581) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 582) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 583) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 584) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 585) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 586) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 587) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 588) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 589) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 590) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 591) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 592) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 593) | IN_LOOPBACKNET = 0x7f constant IPPROTO_3PC (line 594) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 595) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 596) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 597) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 598) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 599) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 600) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 601) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 602) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 603) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 604) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 605) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 606) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 607) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 608) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 609) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 610) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 611) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 612) | IPPROTO_DIVERT = 0xfe constant IPPROTO_DONE (line 613) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 614) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 615) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 616) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 617) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 618) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 619) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 620) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 621) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 622) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 623) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 624) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 625) | IPPROTO_HELLO = 0x3f constant IPPROTO_HMP (line 626) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 627) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 628) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 629) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 630) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 631) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 632) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 633) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 634) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 635) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 636) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 637) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 638) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 639) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 640) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 641) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 642) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 643) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 644) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 645) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 646) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 647) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 648) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 649) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 650) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 651) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 652) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 653) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 654) | IPPROTO_MEAS = 0x13 constant IPPROTO_MHRP (line 655) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 656) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 657) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MTP (line 658) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 659) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 660) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 661) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 662) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 663) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 664) | IPPROTO_NVPII = 0xb constant IPPROTO_OSPFIGP (line 665) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 666) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 667) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 668) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 669) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 670) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 671) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 672) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 673) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 674) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 675) | IPPROTO_RDP = 0x1b constant IPPROTO_ROUTING (line 676) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 677) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 678) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 679) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 680) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 681) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 682) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 683) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEP (line 684) | IPPROTO_SEP = 0x21 constant IPPROTO_SKIP (line 685) | IPPROTO_SKIP = 0x39 constant IPPROTO_SRPC (line 686) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 687) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 688) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 689) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 690) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 691) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 692) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 693) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 694) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 695) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 696) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 697) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 698) | IPPROTO_UDP = 0x11 constant IPPROTO_UNKNOWN (line 699) | IPPROTO_UNKNOWN = 0x102 constant IPPROTO_VINES (line 700) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 701) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 702) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 703) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 704) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 705) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 706) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 707) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 708) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDV6ONLY (line 709) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 710) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 711) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 712) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 713) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 714) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 715) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 716) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 717) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 718) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 719) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 720) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 721) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 722) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 723) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 724) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 725) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 726) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 727) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 728) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 729) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 730) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 731) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 732) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 733) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 734) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 735) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 736) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 737) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 738) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 739) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 740) | IPV6_PKTINFO = 0x2e constant IPV6_PKTOPTIONS (line 741) | IPV6_PKTOPTIONS = 0x34 constant IPV6_PORTRANGE (line 742) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 743) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 744) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 745) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 746) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 747) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 748) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 749) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 750) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 751) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 752) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 753) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 754) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 755) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 756) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 757) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 758) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 759) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 760) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 761) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 762) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 763) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 764) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 765) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 766) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 767) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 768) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 769) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 770) | IP_DROP_MEMBERSHIP = 0xd constant IP_DUMMYNET_CONFIGURE (line 771) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 772) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 773) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 774) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 775) | IP_FAITH = 0x16 constant IP_FW_ADD (line 776) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 777) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 778) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 779) | IP_FW_GET = 0x36 constant IP_FW_RESETLOG (line 780) | IP_FW_RESETLOG = 0x37 constant IP_FW_ZERO (line 781) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 782) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 783) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 784) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 785) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 786) | IP_MF = 0x2000 constant IP_MINTTL (line 787) | IP_MINTTL = 0x42 constant IP_MSS (line 788) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 789) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 790) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 791) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 792) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 793) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 794) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 795) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 796) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 797) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 798) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 799) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 800) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 801) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 802) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 803) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 804) | IP_RETOPTS = 0x8 constant IP_RF (line 805) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 806) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 807) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 808) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 809) | IP_RSVP_VIF_ON = 0x11 constant IP_TOS (line 810) | IP_TOS = 0x3 constant IP_TTL (line 811) | IP_TTL = 0x4 constant ISIG (line 812) | ISIG = 0x80 constant ISTRIP (line 813) | ISTRIP = 0x20 constant IXANY (line 814) | IXANY = 0x800 constant IXOFF (line 815) | IXOFF = 0x400 constant IXON (line 816) | IXON = 0x200 constant LOCK_EX (line 817) | LOCK_EX = 0x2 constant LOCK_NB (line 818) | LOCK_NB = 0x4 constant LOCK_SH (line 819) | LOCK_SH = 0x1 constant LOCK_UN (line 820) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 821) | MADV_AUTOSYNC = 0x7 constant MADV_CONTROL_END (line 822) | MADV_CONTROL_END = 0xb constant MADV_CONTROL_START (line 823) | MADV_CONTROL_START = 0xa constant MADV_CORE (line 824) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 825) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 826) | MADV_FREE = 0x5 constant MADV_INVAL (line 827) | MADV_INVAL = 0xa constant MADV_NOCORE (line 828) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 829) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 830) | MADV_NOSYNC = 0x6 constant MADV_RANDOM (line 831) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 832) | MADV_SEQUENTIAL = 0x2 constant MADV_SETMAP (line 833) | MADV_SETMAP = 0xb constant MADV_WILLNEED (line 834) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 835) | MAP_ANON = 0x1000 constant MAP_COPY (line 836) | MAP_COPY = 0x2 constant MAP_FILE (line 837) | MAP_FILE = 0x0 constant MAP_FIXED (line 838) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 839) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 840) | MAP_INHERIT = 0x80 constant MAP_NOCORE (line 841) | MAP_NOCORE = 0x20000 constant MAP_NOEXTEND (line 842) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 843) | MAP_NORESERVE = 0x40 constant MAP_NOSYNC (line 844) | MAP_NOSYNC = 0x800 constant MAP_PRIVATE (line 845) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 846) | MAP_RENAME = 0x20 constant MAP_SHARED (line 847) | MAP_SHARED = 0x1 constant MAP_SIZEALIGN (line 848) | MAP_SIZEALIGN = 0x40000 constant MAP_STACK (line 849) | MAP_STACK = 0x400 constant MAP_TRYFIXED (line 850) | MAP_TRYFIXED = 0x10000 constant MAP_VPAGETABLE (line 851) | MAP_VPAGETABLE = 0x2000 constant MCL_CURRENT (line 852) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 853) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 854) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 855) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 856) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 857) | MSG_EOF = 0x100 constant MSG_EOR (line 858) | MSG_EOR = 0x8 constant MSG_FBLOCKING (line 859) | MSG_FBLOCKING = 0x10000 constant MSG_FMASK (line 860) | MSG_FMASK = 0xffff0000 constant MSG_FNONBLOCKING (line 861) | MSG_FNONBLOCKING = 0x20000 constant MSG_NOSIGNAL (line 862) | MSG_NOSIGNAL = 0x400 constant MSG_NOTIFICATION (line 863) | MSG_NOTIFICATION = 0x200 constant MSG_OOB (line 864) | MSG_OOB = 0x1 constant MSG_PEEK (line 865) | MSG_PEEK = 0x2 constant MSG_SYNC (line 866) | MSG_SYNC = 0x800 constant MSG_TRUNC (line 867) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 868) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 869) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 870) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 871) | MS_SYNC = 0x0 constant NAME_MAX (line 872) | NAME_MAX = 0xff constant NET_RT_DUMP (line 873) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 874) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 875) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 876) | NET_RT_MAXID = 0x4 constant NOFLSH (line 877) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 878) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 879) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 880) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 881) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 882) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 883) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 884) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 885) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 886) | NOTE_LOWAT = 0x1 constant NOTE_OOB (line 887) | NOTE_OOB = 0x2 constant NOTE_PCTRLMASK (line 888) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 889) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 890) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 891) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 892) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 893) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 894) | NOTE_WRITE = 0x2 constant OCRNL (line 895) | OCRNL = 0x10 constant ONLCR (line 896) | ONLCR = 0x2 constant ONLRET (line 897) | ONLRET = 0x40 constant ONOCR (line 898) | ONOCR = 0x20 constant ONOEOT (line 899) | ONOEOT = 0x8 constant OPOST (line 900) | OPOST = 0x1 constant O_ACCMODE (line 901) | O_ACCMODE = 0x3 constant O_APPEND (line 902) | O_APPEND = 0x8 constant O_ASYNC (line 903) | O_ASYNC = 0x40 constant O_CLOEXEC (line 904) | O_CLOEXEC = 0x20000 constant O_CREAT (line 905) | O_CREAT = 0x200 constant O_DIRECT (line 906) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 907) | O_DIRECTORY = 0x8000000 constant O_EXCL (line 908) | O_EXCL = 0x800 constant O_EXLOCK (line 909) | O_EXLOCK = 0x20 constant O_FAPPEND (line 910) | O_FAPPEND = 0x100000 constant O_FASYNCWRITE (line 911) | O_FASYNCWRITE = 0x800000 constant O_FBLOCKING (line 912) | O_FBLOCKING = 0x40000 constant O_FBUFFERED (line 913) | O_FBUFFERED = 0x2000000 constant O_FMASK (line 914) | O_FMASK = 0x7fc0000 constant O_FNONBLOCKING (line 915) | O_FNONBLOCKING = 0x80000 constant O_FOFFSET (line 916) | O_FOFFSET = 0x200000 constant O_FSYNC (line 917) | O_FSYNC = 0x80 constant O_FSYNCWRITE (line 918) | O_FSYNCWRITE = 0x400000 constant O_FUNBUFFERED (line 919) | O_FUNBUFFERED = 0x1000000 constant O_MAPONREAD (line 920) | O_MAPONREAD = 0x4000000 constant O_NDELAY (line 921) | O_NDELAY = 0x4 constant O_NOCTTY (line 922) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 923) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 924) | O_NONBLOCK = 0x4 constant O_RDONLY (line 925) | O_RDONLY = 0x0 constant O_RDWR (line 926) | O_RDWR = 0x2 constant O_SHLOCK (line 927) | O_SHLOCK = 0x10 constant O_SYNC (line 928) | O_SYNC = 0x80 constant O_TRUNC (line 929) | O_TRUNC = 0x400 constant O_WRONLY (line 930) | O_WRONLY = 0x1 constant PARENB (line 931) | PARENB = 0x1000 constant PARMRK (line 932) | PARMRK = 0x8 constant PARODD (line 933) | PARODD = 0x2000 constant PENDIN (line 934) | PENDIN = 0x20000000 constant PRIO_PGRP (line 935) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 936) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 937) | PRIO_USER = 0x2 constant PROT_EXEC (line 938) | PROT_EXEC = 0x4 constant PROT_NONE (line 939) | PROT_NONE = 0x0 constant PROT_READ (line 940) | PROT_READ = 0x1 constant PROT_WRITE (line 941) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 942) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 943) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 944) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 945) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 946) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 947) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 948) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 949) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 950) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 951) | RTAX_BRD = 0x7 constant RTAX_DST (line 952) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 953) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 954) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 955) | RTAX_IFA = 0x5 constant RTAX_IFP (line 956) | RTAX_IFP = 0x4 constant RTAX_MAX (line 957) | RTAX_MAX = 0xb constant RTAX_MPLS1 (line 958) | RTAX_MPLS1 = 0x8 constant RTAX_MPLS2 (line 959) | RTAX_MPLS2 = 0x9 constant RTAX_MPLS3 (line 960) | RTAX_MPLS3 = 0xa constant RTAX_NETMASK (line 961) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 962) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 963) | RTA_BRD = 0x80 constant RTA_DST (line 964) | RTA_DST = 0x1 constant RTA_GATEWAY (line 965) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 966) | RTA_GENMASK = 0x8 constant RTA_IFA (line 967) | RTA_IFA = 0x20 constant RTA_IFP (line 968) | RTA_IFP = 0x10 constant RTA_MPLS1 (line 969) | RTA_MPLS1 = 0x100 constant RTA_MPLS2 (line 970) | RTA_MPLS2 = 0x200 constant RTA_MPLS3 (line 971) | RTA_MPLS3 = 0x400 constant RTA_NETMASK (line 972) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 973) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 974) | RTF_BROADCAST = 0x400000 constant RTF_CLONING (line 975) | RTF_CLONING = 0x100 constant RTF_DONE (line 976) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 977) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 978) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 979) | RTF_HOST = 0x4 constant RTF_LLINFO (line 980) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 981) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 982) | RTF_MODIFIED = 0x20 constant RTF_MPLSOPS (line 983) | RTF_MPLSOPS = 0x1000000 constant RTF_MULTICAST (line 984) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 985) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 986) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 987) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 988) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 989) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 990) | RTF_REJECT = 0x8 constant RTF_STATIC (line 991) | RTF_STATIC = 0x800 constant RTF_UP (line 992) | RTF_UP = 0x1 constant RTF_WASCLONED (line 993) | RTF_WASCLONED = 0x20000 constant RTF_XRESOLVE (line 994) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 995) | RTM_ADD = 0x1 constant RTM_CHANGE (line 996) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 997) | RTM_DELADDR = 0xd constant RTM_DELETE (line 998) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 999) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1000) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1001) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1002) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1003) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1004) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1005) | RTM_LOSING = 0x5 constant RTM_MISS (line 1006) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1007) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1008) | RTM_NEWMADDR = 0xf constant RTM_OLDADD (line 1009) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1010) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1011) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1012) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1013) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1014) | RTM_VERSION = 0x6 constant RTV_EXPIRE (line 1015) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1016) | RTV_HOPCOUNT = 0x2 constant RTV_IWCAPSEGS (line 1017) | RTV_IWCAPSEGS = 0x400 constant RTV_IWMAXSEGS (line 1018) | RTV_IWMAXSEGS = 0x200 constant RTV_MSL (line 1019) | RTV_MSL = 0x100 constant RTV_MTU (line 1020) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1021) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1022) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1023) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1024) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1025) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1026) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1027) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1028) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1029) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1030) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1031) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1032) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1033) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1034) | SIOCADDMULTI = 0x80206931 constant SIOCADDRT (line 1035) | SIOCADDRT = 0x8040720a constant SIOCAIFADDR (line 1036) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1037) | SIOCALIFADDR = 0x8118691b constant SIOCATMARK (line 1038) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1039) | SIOCDELMULTI = 0x80206932 constant SIOCDELRT (line 1040) | SIOCDELRT = 0x8040720b constant SIOCDIFADDR (line 1041) | SIOCDIFADDR = 0x80206919 constant SIOCDIFPHYADDR (line 1042) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1043) | SIOCDLIFADDR = 0x8118691d constant SIOCGDRVSPEC (line 1044) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1045) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1046) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1047) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1048) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1049) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1050) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1051) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1052) | SIOCGIFDATA = 0xc0206926 constant SIOCGIFDSTADDR (line 1053) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1054) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1055) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1056) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFINDEX (line 1057) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMEDIA (line 1058) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1059) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1060) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1061) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1062) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1063) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPOLLCPU (line 1064) | SIOCGIFPOLLCPU = 0xc020697e constant SIOCGIFPSRCADDR (line 1065) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1066) | SIOCGIFSTATUS = 0xc331693b constant SIOCGIFTSOLEN (line 1067) | SIOCGIFTSOLEN = 0xc0206980 constant SIOCGLIFADDR (line 1068) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 1069) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLOWAT (line 1070) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1071) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1072) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1073) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCIFCREATE (line 1074) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1075) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1076) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1077) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1078) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1079) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1080) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1081) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1082) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDSTADDR (line 1083) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1084) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1085) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1086) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMEDIA (line 1087) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1088) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1089) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1090) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1091) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1092) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1093) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFPOLLCPU (line 1094) | SIOCSIFPOLLCPU = 0x8020697d constant SIOCSIFTSOLEN (line 1095) | SIOCSIFTSOLEN = 0x8020697f constant SIOCSLIFPHYADDR (line 1096) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLOWAT (line 1097) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1098) | SIOCSPGRP = 0x80047308 constant SOCK_DGRAM (line 1099) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1100) | SOCK_MAXADDRLEN = 0xff constant SOCK_RAW (line 1101) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1102) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1103) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1104) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1105) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1106) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1107) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1108) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1109) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1110) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1111) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1112) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1113) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1114) | SO_LINGER = 0x80 constant SO_NOSIGPIPE (line 1115) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1116) | SO_OOBINLINE = 0x100 constant SO_RCVBUF (line 1117) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1118) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1119) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1120) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1121) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1122) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1123) | SO_SNDLOWAT = 0x1003 constant SO_SNDSPACE (line 1124) | SO_SNDSPACE = 0x100a constant SO_SNDTIMEO (line 1125) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1126) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1127) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1128) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1129) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1130) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1131) | TCOFLUSH = 0x2 constant TCP_FASTKEEP (line 1132) | TCP_FASTKEEP = 0x80 constant TCP_KEEPCNT (line 1133) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1134) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1135) | TCP_KEEPINIT = 0x20 constant TCP_KEEPINTVL (line 1136) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1137) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1138) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1139) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1140) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1141) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1142) | TCP_MAX_WINSHIFT = 0xe constant TCP_MINMSS (line 1143) | TCP_MINMSS = 0x100 constant TCP_MIN_WINSHIFT (line 1144) | TCP_MIN_WINSHIFT = 0x5 constant TCP_MSS (line 1145) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1146) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1147) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1148) | TCP_NOPUSH = 0x4 constant TCP_SIGNATURE_ENABLE (line 1149) | TCP_SIGNATURE_ENABLE = 0x10 constant TCSAFLUSH (line 1150) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1151) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1152) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1153) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1154) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1155) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1156) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1157) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1158) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1159) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1160) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1161) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1162) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1163) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1164) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1165) | TIOCGWINSZ = 0x40087468 constant TIOCISPTMASTER (line 1166) | TIOCISPTMASTER = 0x20007455 constant TIOCMBIC (line 1167) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1168) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1169) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1170) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1171) | TIOCMODG = 0x40047403 constant TIOCMODS (line 1172) | TIOCMODS = 0x80047404 constant TIOCMSDTRWAIT (line 1173) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1174) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1175) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1176) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1177) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1178) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1179) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1180) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1181) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1182) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1183) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1184) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1185) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1186) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1187) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1188) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1189) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1190) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1191) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1192) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1193) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1194) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1195) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1196) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1197) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1198) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1199) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1200) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1201) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1202) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1203) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1204) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1205) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1206) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1207) | TIOCSIG = 0x2000745f constant TIOCSPGRP (line 1208) | TIOCSPGRP = 0x80047476 constant TIOCSSIZE (line 1209) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1210) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1211) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1212) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1213) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1214) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1215) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1216) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1217) | TOSTOP = 0x400000 constant VCHECKPT (line 1218) | VCHECKPT = 0x13 constant VDISCARD (line 1219) | VDISCARD = 0xf constant VDSUSP (line 1220) | VDSUSP = 0xb constant VEOF (line 1221) | VEOF = 0x0 constant VEOL (line 1222) | VEOL = 0x1 constant VEOL2 (line 1223) | VEOL2 = 0x2 constant VERASE (line 1224) | VERASE = 0x3 constant VERASE2 (line 1225) | VERASE2 = 0x7 constant VINTR (line 1226) | VINTR = 0x8 constant VKILL (line 1227) | VKILL = 0x5 constant VLNEXT (line 1228) | VLNEXT = 0xe constant VMIN (line 1229) | VMIN = 0x10 constant VQUIT (line 1230) | VQUIT = 0x9 constant VREPRINT (line 1231) | VREPRINT = 0x6 constant VSTART (line 1232) | VSTART = 0xc constant VSTATUS (line 1233) | VSTATUS = 0x12 constant VSTOP (line 1234) | VSTOP = 0xd constant VSUSP (line 1235) | VSUSP = 0xa constant VTIME (line 1236) | VTIME = 0x11 constant VWERASE (line 1237) | VWERASE = 0x4 constant WCONTINUED (line 1238) | WCONTINUED = 0x4 constant WCOREFLAG (line 1239) | WCOREFLAG = 0x80 constant WLINUXCLONE (line 1240) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1241) | WNOHANG = 0x1 constant WSTOPPED (line 1242) | WSTOPPED = 0x7f constant WUNTRACED (line 1243) | WUNTRACED = 0x2 constant E2BIG (line 1248) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1249) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1250) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1251) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1252) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1253) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1254) | EALREADY = syscall.Errno(0x25) constant EASYNC (line 1255) | EASYNC = syscall.Errno(0x63) constant EAUTH (line 1256) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1257) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1258) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1259) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1260) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1261) | ECANCELED = syscall.Errno(0x55) constant ECHILD (line 1262) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1263) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1264) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1265) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1266) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1267) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1268) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1269) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1270) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1271) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1272) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1273) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1274) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1275) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1276) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1277) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1278) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1279) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1280) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1281) | EINVAL = syscall.Errno(0x16) constant EIO (line 1282) | EIO = syscall.Errno(0x5) constant EISCONN (line 1283) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1284) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1285) | ELAST = syscall.Errno(0x63) constant ELOOP (line 1286) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1287) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1288) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1289) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1290) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1291) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1292) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1293) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1294) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1295) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1296) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1297) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1298) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1299) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1300) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1301) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1302) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1303) | ENOLINK = syscall.Errno(0x5b) constant ENOMEDIUM (line 1304) | ENOMEDIUM = syscall.Errno(0x5d) constant ENOMEM (line 1305) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1306) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1307) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1308) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1309) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1310) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1311) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1312) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1313) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1314) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1315) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1316) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1317) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1318) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1319) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1320) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1321) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1322) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1323) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1324) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1325) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1326) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1327) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1328) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1329) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1330) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1331) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1332) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1333) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1334) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1335) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1336) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1337) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1338) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1339) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1340) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1341) | ETXTBSY = syscall.Errno(0x1a) constant EUNUSED94 (line 1342) | EUNUSED94 = syscall.Errno(0x5e) constant EUNUSED95 (line 1343) | EUNUSED95 = syscall.Errno(0x5f) constant EUNUSED96 (line 1344) | EUNUSED96 = syscall.Errno(0x60) constant EUNUSED97 (line 1345) | EUNUSED97 = syscall.Errno(0x61) constant EUNUSED98 (line 1346) | EUNUSED98 = syscall.Errno(0x62) constant EUSERS (line 1347) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1348) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1349) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1354) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1355) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1356) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1357) | SIGCHLD = syscall.Signal(0x14) constant SIGCKPT (line 1358) | SIGCKPT = syscall.Signal(0x21) constant SIGCKPTEXIT (line 1359) | SIGCKPTEXIT = syscall.Signal(0x22) constant SIGCONT (line 1360) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1361) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1362) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1363) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1364) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1365) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1366) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1367) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1368) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1369) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1370) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1371) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1372) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1373) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1374) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1375) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1376) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1377) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1378) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1379) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1380) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1381) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1382) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1383) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1384) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1385) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1386) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1387) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1388) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x23 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 18) | AF_CCITT = 0xa constant AF_CHAOS (line 19) | AF_CHAOS = 0x5 constant AF_CNT (line 20) | AF_CNT = 0x15 constant AF_COIP (line 21) | AF_COIP = 0x14 constant AF_DATAKIT (line 22) | AF_DATAKIT = 0x9 constant AF_DECnet (line 23) | AF_DECnet = 0xc constant AF_DLI (line 24) | AF_DLI = 0xd constant AF_E164 (line 25) | AF_E164 = 0x1a constant AF_ECMA (line 26) | AF_ECMA = 0x8 constant AF_HYLINK (line 27) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 28) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 32) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 33) | AF_INET_SDP = 0x28 constant AF_IPX (line 34) | AF_IPX = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x1a constant AF_ISO (line 36) | AF_ISO = 0x7 constant AF_LAT (line 37) | AF_LAT = 0xe constant AF_LINK (line 38) | AF_LINK = 0x12 constant AF_LOCAL (line 39) | AF_LOCAL = 0x1 constant AF_MAX (line 40) | AF_MAX = 0x2a constant AF_NATM (line 41) | AF_NATM = 0x1d constant AF_NETBIOS (line 42) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 43) | AF_NETGRAPH = 0x20 constant AF_OSI (line 44) | AF_OSI = 0x7 constant AF_PUP (line 45) | AF_PUP = 0x4 constant AF_ROUTE (line 46) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 47) | AF_SCLUSTER = 0x22 constant AF_SIP (line 48) | AF_SIP = 0x18 constant AF_SLOW (line 49) | AF_SLOW = 0x21 constant AF_SNA (line 50) | AF_SNA = 0xb constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 53) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 54) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 55) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 56) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 57) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 58) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 59) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 60) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 61) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 62) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 63) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 64) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 65) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 66) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 67) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 68) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 69) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 70) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 71) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 72) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 73) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 74) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 75) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 76) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 77) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 78) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 79) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 80) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 81) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 82) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 83) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 84) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 85) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 86) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 87) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 88) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 89) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 90) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 91) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 92) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 93) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 94) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 95) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 96) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 97) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 98) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 99) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 100) | AF_VENDOR47 = 0x85 constant B0 (line 101) | B0 = 0x0 constant B110 (line 102) | B110 = 0x6e constant B115200 (line 103) | B115200 = 0x1c200 constant B1200 (line 104) | B1200 = 0x4b0 constant B134 (line 105) | B134 = 0x86 constant B14400 (line 106) | B14400 = 0x3840 constant B150 (line 107) | B150 = 0x96 constant B1800 (line 108) | B1800 = 0x708 constant B19200 (line 109) | B19200 = 0x4b00 constant B200 (line 110) | B200 = 0xc8 constant B230400 (line 111) | B230400 = 0x38400 constant B2400 (line 112) | B2400 = 0x960 constant B28800 (line 113) | B28800 = 0x7080 constant B300 (line 114) | B300 = 0x12c constant B38400 (line 115) | B38400 = 0x9600 constant B460800 (line 116) | B460800 = 0x70800 constant B4800 (line 117) | B4800 = 0x12c0 constant B50 (line 118) | B50 = 0x32 constant B57600 (line 119) | B57600 = 0xe100 constant B600 (line 120) | B600 = 0x258 constant B7200 (line 121) | B7200 = 0x1c20 constant B75 (line 122) | B75 = 0x4b constant B76800 (line 123) | B76800 = 0x12c00 constant B921600 (line 124) | B921600 = 0xe1000 constant B9600 (line 125) | B9600 = 0x2580 constant BIOCFEEDBACK (line 126) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 127) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 128) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 129) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 130) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 131) | BIOCGDLTLIST = 0xc0084279 constant BIOCGETBUFMODE (line 132) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 133) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 134) | BIOCGETZMAX = 0x4004427f constant BIOCGHDRCMPLT (line 135) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 136) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 137) | BIOCGRTIMEOUT = 0x4008426e constant BIOCGSEESENT (line 138) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 139) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 140) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 141) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 142) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 143) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 144) | BIOCROTZBUF = 0x400c4280 constant BIOCSBLEN (line 145) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 146) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 147) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 148) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 149) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 150) | BIOCSETFNR = 0x80084282 constant BIOCSETIF (line 151) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 152) | BIOCSETWF = 0x8008427b constant BIOCSETZBUF (line 153) | BIOCSETZBUF = 0x800c4281 constant BIOCSHDRCMPLT (line 154) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 155) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 156) | BIOCSRTIMEOUT = 0x8008426d constant BIOCSSEESENT (line 157) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 158) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 159) | BIOCVERSION = 0x40044271 constant BPF_A (line 160) | BPF_A = 0x10 constant BPF_ABS (line 161) | BPF_ABS = 0x20 constant BPF_ADD (line 162) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 163) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 164) | BPF_ALU = 0x4 constant BPF_AND (line 165) | BPF_AND = 0x50 constant BPF_B (line 166) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 167) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 168) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 169) | BPF_DIV = 0x30 constant BPF_H (line 170) | BPF_H = 0x8 constant BPF_IMM (line 171) | BPF_IMM = 0x0 constant BPF_IND (line 172) | BPF_IND = 0x40 constant BPF_JA (line 173) | BPF_JA = 0x0 constant BPF_JEQ (line 174) | BPF_JEQ = 0x10 constant BPF_JGE (line 175) | BPF_JGE = 0x30 constant BPF_JGT (line 176) | BPF_JGT = 0x20 constant BPF_JMP (line 177) | BPF_JMP = 0x5 constant BPF_JSET (line 178) | BPF_JSET = 0x40 constant BPF_K (line 179) | BPF_K = 0x0 constant BPF_LD (line 180) | BPF_LD = 0x0 constant BPF_LDX (line 181) | BPF_LDX = 0x1 constant BPF_LEN (line 182) | BPF_LEN = 0x80 constant BPF_LSH (line 183) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 184) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 185) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 186) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 187) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 188) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 189) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 190) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 191) | BPF_MISC = 0x7 constant BPF_MSH (line 192) | BPF_MSH = 0xa0 constant BPF_MUL (line 193) | BPF_MUL = 0x20 constant BPF_NEG (line 194) | BPF_NEG = 0x80 constant BPF_OR (line 195) | BPF_OR = 0x40 constant BPF_RELEASE (line 196) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 197) | BPF_RET = 0x6 constant BPF_RSH (line 198) | BPF_RSH = 0x70 constant BPF_ST (line 199) | BPF_ST = 0x2 constant BPF_STX (line 200) | BPF_STX = 0x3 constant BPF_SUB (line 201) | BPF_SUB = 0x10 constant BPF_TAX (line 202) | BPF_TAX = 0x0 constant BPF_TXA (line 203) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 204) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 205) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 206) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 207) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 208) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 209) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 210) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 211) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 212) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 213) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 214) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 215) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 216) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 217) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 218) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 219) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 220) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 221) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 222) | BPF_T_NORMAL = 0x0 constant BPF_W (line 223) | BPF_W = 0x0 constant BPF_X (line 224) | BPF_X = 0x8 constant BRKINT (line 225) | BRKINT = 0x2 constant CFLUSH (line 226) | CFLUSH = 0xf constant CLOCAL (line 227) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 228) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 229) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 230) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 231) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 232) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 233) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 234) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 235) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 236) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 237) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 238) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 239) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 240) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 241) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 242) | CREAD = 0x800 constant CS5 (line 243) | CS5 = 0x0 constant CS6 (line 244) | CS6 = 0x100 constant CS7 (line 245) | CS7 = 0x200 constant CS8 (line 246) | CS8 = 0x300 constant CSIZE (line 247) | CSIZE = 0x300 constant CSTART (line 248) | CSTART = 0x11 constant CSTATUS (line 249) | CSTATUS = 0x14 constant CSTOP (line 250) | CSTOP = 0x13 constant CSTOPB (line 251) | CSTOPB = 0x400 constant CSUSP (line 252) | CSUSP = 0x1a constant CTL_MAXNAME (line 253) | CTL_MAXNAME = 0x18 constant CTL_NET (line 254) | CTL_NET = 0x4 constant DLT_A429 (line 255) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 256) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 257) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 258) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 259) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 260) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 261) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 262) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 263) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 264) | DLT_AURORA = 0x7e constant DLT_AX25 (line 265) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 266) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 267) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 268) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 269) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 270) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 271) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 272) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 273) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 274) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 275) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 276) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 277) | DLT_DBUS = 0xe7 constant DLT_DECT (line 278) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 279) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 280) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 281) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 282) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 283) | DLT_EN3MB = 0x2 constant DLT_ENC (line 284) | DLT_ENC = 0x6d constant DLT_ERF (line 285) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 286) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 287) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 288) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 289) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 290) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 291) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 292) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 293) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 294) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 295) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 296) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 297) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 298) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 299) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 300) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 301) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 302) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 303) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 304) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 305) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 306) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 307) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 308) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 309) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 310) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 311) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 312) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 313) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 314) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 315) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 316) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 317) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 318) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 319) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 320) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 321) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 322) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 323) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 324) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 325) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 326) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 327) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 328) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 329) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 330) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 331) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 332) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 333) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 334) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 335) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 336) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 337) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 338) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 339) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 340) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 341) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 342) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 343) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 344) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 345) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 346) | DLT_LAPD = 0xcb constant DLT_LIN (line 347) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 348) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 349) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 350) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 351) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 352) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 353) | DLT_LOOP = 0x6c constant DLT_LTALK (line 354) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 355) | DLT_MATCHING_MAX = 0xf6 constant DLT_MATCHING_MIN (line 356) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 357) | DLT_MFR = 0xb6 constant DLT_MOST (line 358) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 359) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 360) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 361) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 362) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 363) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 364) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 365) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 366) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 367) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 368) | DLT_NFLOG = 0xef constant DLT_NG40 (line 369) | DLT_NG40 = 0xf4 constant DLT_NULL (line 370) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 371) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 372) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 373) | DLT_PFSYNC = 0x79 constant DLT_PPI (line 374) | DLT_PPI = 0xc0 constant DLT_PPP (line 375) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 376) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 377) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 378) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 379) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 380) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 381) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 382) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 383) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 384) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 385) | DLT_RAW = 0xc constant DLT_RIO (line 386) | DLT_RIO = 0x7c constant DLT_SCCP (line 387) | DLT_SCCP = 0x8e constant DLT_SITA (line 388) | DLT_SITA = 0xc4 constant DLT_SLIP (line 389) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 390) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 391) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 392) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 393) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 394) | DLT_TZSP = 0x80 constant DLT_USB (line 395) | DLT_USB = 0xba constant DLT_USB_LINUX (line 396) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 397) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 398) | DLT_USER0 = 0x93 constant DLT_USER1 (line 399) | DLT_USER1 = 0x94 constant DLT_USER10 (line 400) | DLT_USER10 = 0x9d constant DLT_USER11 (line 401) | DLT_USER11 = 0x9e constant DLT_USER12 (line 402) | DLT_USER12 = 0x9f constant DLT_USER13 (line 403) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 404) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 405) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 406) | DLT_USER2 = 0x95 constant DLT_USER3 (line 407) | DLT_USER3 = 0x96 constant DLT_USER4 (line 408) | DLT_USER4 = 0x97 constant DLT_USER5 (line 409) | DLT_USER5 = 0x98 constant DLT_USER6 (line 410) | DLT_USER6 = 0x99 constant DLT_USER7 (line 411) | DLT_USER7 = 0x9a constant DLT_USER8 (line 412) | DLT_USER8 = 0x9b constant DLT_USER9 (line 413) | DLT_USER9 = 0x9c constant DLT_WIHART (line 414) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 415) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 416) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 417) | DT_BLK = 0x6 constant DT_CHR (line 418) | DT_CHR = 0x2 constant DT_DIR (line 419) | DT_DIR = 0x4 constant DT_FIFO (line 420) | DT_FIFO = 0x1 constant DT_LNK (line 421) | DT_LNK = 0xa constant DT_REG (line 422) | DT_REG = 0x8 constant DT_SOCK (line 423) | DT_SOCK = 0xc constant DT_UNKNOWN (line 424) | DT_UNKNOWN = 0x0 constant DT_WHT (line 425) | DT_WHT = 0xe constant ECHO (line 426) | ECHO = 0x8 constant ECHOCTL (line 427) | ECHOCTL = 0x40 constant ECHOE (line 428) | ECHOE = 0x2 constant ECHOK (line 429) | ECHOK = 0x4 constant ECHOKE (line 430) | ECHOKE = 0x1 constant ECHONL (line 431) | ECHONL = 0x10 constant ECHOPRT (line 432) | ECHOPRT = 0x20 constant EVFILT_AIO (line 433) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 434) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 435) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 436) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 437) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 438) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 439) | EVFILT_SYSCOUNT = 0xb constant EVFILT_TIMER (line 440) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 441) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 442) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 443) | EVFILT_WRITE = -0x2 constant EV_ADD (line 444) | EV_ADD = 0x1 constant EV_CLEAR (line 445) | EV_CLEAR = 0x20 constant EV_DELETE (line 446) | EV_DELETE = 0x2 constant EV_DISABLE (line 447) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 448) | EV_DISPATCH = 0x80 constant EV_DROP (line 449) | EV_DROP = 0x1000 constant EV_ENABLE (line 450) | EV_ENABLE = 0x4 constant EV_EOF (line 451) | EV_EOF = 0x8000 constant EV_ERROR (line 452) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 453) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 454) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 455) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 456) | EV_SYSFLAGS = 0xf000 constant EXTA (line 457) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 458) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 459) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 460) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 461) | EXTB = 0x9600 constant EXTPROC (line 462) | EXTPROC = 0x800 constant FD_CLOEXEC (line 463) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 464) | FD_SETSIZE = 0x400 constant FLUSHO (line 465) | FLUSHO = 0x800000 constant F_CANCEL (line 466) | F_CANCEL = 0x5 constant F_DUP2FD (line 467) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 468) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 469) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 470) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 471) | F_GETFD = 0x1 constant F_GETFL (line 472) | F_GETFL = 0x3 constant F_GETLK (line 473) | F_GETLK = 0xb constant F_GETOWN (line 474) | F_GETOWN = 0x5 constant F_OGETLK (line 475) | F_OGETLK = 0x7 constant F_OK (line 476) | F_OK = 0x0 constant F_OSETLK (line 477) | F_OSETLK = 0x8 constant F_OSETLKW (line 478) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 479) | F_RDAHEAD = 0x10 constant F_RDLCK (line 480) | F_RDLCK = 0x1 constant F_READAHEAD (line 481) | F_READAHEAD = 0xf constant F_SETFD (line 482) | F_SETFD = 0x2 constant F_SETFL (line 483) | F_SETFL = 0x4 constant F_SETLK (line 484) | F_SETLK = 0xc constant F_SETLKW (line 485) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 486) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 487) | F_SETOWN = 0x6 constant F_UNLCK (line 488) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 489) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 490) | F_WRLCK = 0x3 constant HUPCL (line 491) | HUPCL = 0x4000 constant ICANON (line 492) | ICANON = 0x100 constant ICMP6_FILTER (line 493) | ICMP6_FILTER = 0x12 constant ICRNL (line 494) | ICRNL = 0x100 constant IEXTEN (line 495) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 496) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 497) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 498) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 499) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 500) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 501) | IFF_CANTCHANGE = 0x218f72 constant IFF_CANTCONFIG (line 502) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 503) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 504) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 505) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 506) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 507) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 508) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 509) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 510) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 511) | IFF_MONITOR = 0x40000 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_PPROMISC (line 516) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 517) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 518) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 519) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 520) | IFF_SIMPLEX = 0x800 constant IFF_SMART (line 521) | IFF_SMART = 0x20 constant IFF_STATICARP (line 522) | IFF_STATICARP = 0x80000 constant IFF_UP (line 523) | IFF_UP = 0x1 constant IFNAMSIZ (line 524) | IFNAMSIZ = 0x10 constant IFT_1822 (line 525) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 526) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 527) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 528) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 529) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 530) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 531) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 532) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 533) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 534) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 535) | IFT_ASYNC = 0x54 constant IFT_ATM (line 536) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 537) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 538) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 539) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 540) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 541) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 542) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 543) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 544) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 545) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 546) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 547) | IFT_BSC = 0x53 constant IFT_CARP (line 548) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 549) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 550) | IFT_CEPT = 0x13 constant IFT_CES (line 551) | IFT_CES = 0x85 constant IFT_CHANNEL (line 552) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 553) | IFT_CNR = 0x55 constant IFT_COFFEE (line 554) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 555) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 556) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 557) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 558) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 559) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 560) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 561) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 562) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 563) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 564) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 565) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 566) | IFT_DS3 = 0x1e constant IFT_DTM (line 567) | IFT_DTM = 0x8c 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_ENC (line 573) | IFT_ENC = 0xf4 constant IFT_EON (line 574) | IFT_EON = 0x19 constant IFT_EPLRS (line 575) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 576) | IFT_ESCON = 0x49 constant IFT_ETHER (line 577) | IFT_ETHER = 0x6 constant IFT_FAITH (line 578) | IFT_FAITH = 0xf2 constant IFT_FAST (line 579) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 580) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 581) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 582) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 583) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 584) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 585) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 586) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 587) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 588) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 589) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 590) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 591) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 592) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 593) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 594) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 595) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 596) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 597) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 598) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 599) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 600) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 601) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 602) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 603) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 604) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 605) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 606) | IFT_HSSI = 0x2e constant IFT_HY (line 607) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 608) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 609) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 610) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 611) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 612) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 613) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 614) | IFT_IFGSN = 0x91 constant IFT_IMT (line 615) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 616) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 617) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 618) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 619) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 620) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 621) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 622) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 623) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 624) | IFT_IPXIP = 0xf9 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_LOCALTALK (line 645) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 646) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 647) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 648) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 649) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 650) | IFT_MODEM = 0x30 constant IFT_MPC (line 651) | IFT_MPC = 0x71 constant IFT_MPLS (line 652) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 653) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 654) | IFT_MSDSL = 0x8f constant IFT_MVL (line 655) | IFT_MVL = 0xbf constant IFT_MYRINET (line 656) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 657) | IFT_NFAS = 0xaf constant IFT_NSIP (line 658) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 659) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 660) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 661) | IFT_OTHER = 0x1 constant IFT_P10 (line 662) | IFT_P10 = 0xc constant IFT_P80 (line 663) | IFT_P80 = 0xd constant IFT_PARA (line 664) | IFT_PARA = 0x22 constant IFT_PFLOG (line 665) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 666) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 667) | IFT_PLC = 0xae constant IFT_POS (line 668) | IFT_POS = 0xab constant IFT_PPP (line 669) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 670) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 671) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 672) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 673) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 674) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 675) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 676) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 677) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 678) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 679) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 680) | IFT_PVC = 0xf1 constant IFT_QLLC (line 681) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 682) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 683) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 684) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 685) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 686) | IFT_RS232 = 0x21 constant IFT_RSRB (line 687) | IFT_RSRB = 0x4f constant IFT_SDLC (line 688) | IFT_SDLC = 0x11 constant IFT_SDSL (line 689) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 690) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 691) | IFT_SIP = 0x1f constant IFT_SLIP (line 692) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 693) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 694) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 695) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 696) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 697) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 698) | IFT_SONETVT = 0x33 constant IFT_SRP (line 699) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 700) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 701) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 702) | IFT_STARLAN = 0xb constant IFT_STF (line 703) | IFT_STF = 0xd7 constant IFT_T1 (line 704) | IFT_T1 = 0x12 constant IFT_TDLC (line 705) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 706) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 707) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 708) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 709) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 710) | IFT_ULTRA = 0x1d constant IFT_USB (line 711) | IFT_USB = 0xa0 constant IFT_V11 (line 712) | IFT_V11 = 0x40 constant IFT_V35 (line 713) | IFT_V35 = 0x2d constant IFT_V36 (line 714) | IFT_V36 = 0x41 constant IFT_V37 (line 715) | IFT_V37 = 0x78 constant IFT_VDSL (line 716) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 717) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 718) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 719) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 720) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 721) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 722) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 723) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 724) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 725) | IFT_X213 = 0x5d constant IFT_X25 (line 726) | IFT_X25 = 0x5 constant IFT_X25DDN (line 727) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 728) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 729) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 730) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 731) | IFT_XETHER = 0x1a constant IGNBRK (line 732) | IGNBRK = 0x1 constant IGNCR (line 733) | IGNCR = 0x80 constant IGNPAR (line 734) | IGNPAR = 0x4 constant IMAXBEL (line 735) | IMAXBEL = 0x2000 constant INLCR (line 736) | INLCR = 0x40 constant INPCK (line 737) | INPCK = 0x10 constant IN_CLASSA_HOST (line 738) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 739) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 740) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 741) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 742) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 743) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 744) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 745) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 746) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 747) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 748) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 749) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 750) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 751) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 752) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 753) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 754) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 755) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 756) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 757) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 758) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 759) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 760) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 761) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 762) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 763) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 764) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 765) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 766) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 767) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 768) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 769) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 770) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 771) | IPPROTO_DGP = 0x56 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_EMCON (line 776) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 777) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 778) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 779) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 780) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 781) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 782) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 783) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 784) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 785) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 786) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 787) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 788) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 789) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 790) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 791) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 792) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 793) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 794) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 795) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 796) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 797) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 798) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 799) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 800) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 801) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 802) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 803) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 804) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 805) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 806) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 807) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 808) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 809) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 810) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 811) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 812) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 813) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 814) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 815) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 816) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 817) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 818) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 819) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 820) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 821) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 822) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 823) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 824) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 825) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 826) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 827) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 828) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 829) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 830) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 831) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 832) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 833) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 834) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 835) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 836) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 837) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 838) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 839) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 840) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 841) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 842) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 843) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 844) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 845) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 846) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 847) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 848) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 849) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 850) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 851) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 852) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 853) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 854) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 855) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 856) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 857) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 858) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 859) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 860) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 861) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 862) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 863) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 864) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 865) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 866) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 867) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 868) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 869) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 870) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 871) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 872) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 873) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 874) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 875) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 876) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 877) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 878) | IPV6_BINDANY = 0x40 constant IPV6_BINDV6ONLY (line 879) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 880) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 881) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 882) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 883) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 884) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 885) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 886) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 887) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 888) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 889) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 890) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 891) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 892) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 893) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 894) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 895) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 896) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 897) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 898) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 899) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 900) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 901) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 902) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 903) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 904) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 905) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 906) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 907) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 908) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 909) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 910) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 911) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 912) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 913) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 914) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 915) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 916) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 917) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 918) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 919) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 920) | IPV6_PREFER_TEMPADDR = 0x3f 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_ADD_SOURCE_MEMBERSHIP (line 941) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 942) | IP_BINDANY = 0x18 constant IP_BLOCK_SOURCE (line 943) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 944) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 945) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 946) | IP_DF = 0x4000 constant IP_DONTFRAG (line 947) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 948) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 949) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 950) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 951) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 952) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 953) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 954) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 955) | IP_FAITH = 0x16 constant IP_FW3 (line 956) | IP_FW3 = 0x30 constant IP_FW_ADD (line 957) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 958) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 959) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 960) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 961) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 962) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 963) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 964) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 965) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 966) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 967) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 968) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 969) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 970) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 971) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 972) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 973) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 974) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 975) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 976) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 977) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 978) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 979) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 980) | IP_MF = 0x2000 constant IP_MINTTL (line 981) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 982) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 983) | IP_MSFILTER = 0x4a constant IP_MSS (line 984) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 985) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 986) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 987) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 988) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 989) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 990) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 991) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 992) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 993) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 994) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 995) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 996) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 997) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 998) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 999) | IP_RECVRETOPTS = 0x6 constant IP_RECVTOS (line 1000) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 1001) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 1002) | IP_RETOPTS = 0x8 constant IP_RF (line 1003) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 1004) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 1005) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 1006) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 1007) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 1008) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 1009) | IP_TOS = 0x3 constant IP_TTL (line 1010) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 1011) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 1012) | ISIG = 0x80 constant ISTRIP (line 1013) | ISTRIP = 0x20 constant IXANY (line 1014) | IXANY = 0x800 constant IXOFF (line 1015) | IXOFF = 0x400 constant IXON (line 1016) | IXON = 0x200 constant LOCK_EX (line 1017) | LOCK_EX = 0x2 constant LOCK_NB (line 1018) | LOCK_NB = 0x4 constant LOCK_SH (line 1019) | LOCK_SH = 0x1 constant LOCK_UN (line 1020) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 1021) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 1022) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 1023) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1024) | MADV_FREE = 0x5 constant MADV_NOCORE (line 1025) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 1026) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 1027) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1028) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1029) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1030) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1031) | MADV_WILLNEED = 0x3 constant MAP_ALIGNED_SUPER (line 1032) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1033) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1034) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1035) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1036) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1037) | MAP_COPY = 0x2 constant MAP_EXCL (line 1038) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1039) | MAP_FILE = 0x0 constant MAP_FIXED (line 1040) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 1041) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1042) | MAP_NOCORE = 0x20000 constant MAP_NORESERVE (line 1043) | MAP_NORESERVE = 0x40 constant MAP_NOSYNC (line 1044) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1045) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1046) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1047) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 1048) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1049) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1050) | MAP_SHARED = 0x1 constant MAP_STACK (line 1051) | MAP_STACK = 0x400 constant MCL_CURRENT (line 1052) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1053) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 1054) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1055) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1056) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1057) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1058) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1059) | MSG_EOF = 0x100 constant MSG_EOR (line 1060) | MSG_EOR = 0x8 constant MSG_NBIO (line 1061) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1062) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1063) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1064) | MSG_OOB = 0x1 constant MSG_PEEK (line 1065) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1066) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1067) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1068) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1069) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1070) | MS_SYNC = 0x0 constant NAME_MAX (line 1071) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1072) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1073) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1074) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1075) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1076) | NET_RT_IFMALIST = 0x4 constant NET_RT_MAXID (line 1077) | NET_RT_MAXID = 0x6 constant NOFLSH (line 1078) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1079) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1080) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1081) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1082) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1083) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1084) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1085) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1086) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1087) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1088) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1089) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1090) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 1091) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1092) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1093) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1094) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1095) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1096) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1097) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1098) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1099) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1100) | NOTE_TRIGGER = 0x1000000 constant NOTE_WRITE (line 1101) | NOTE_WRITE = 0x2 constant OCRNL (line 1102) | OCRNL = 0x10 constant ONLCR (line 1103) | ONLCR = 0x2 constant ONLRET (line 1104) | ONLRET = 0x40 constant ONOCR (line 1105) | ONOCR = 0x20 constant ONOEOT (line 1106) | ONOEOT = 0x8 constant OPOST (line 1107) | OPOST = 0x1 constant O_ACCMODE (line 1108) | O_ACCMODE = 0x3 constant O_APPEND (line 1109) | O_APPEND = 0x8 constant O_ASYNC (line 1110) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1111) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1112) | O_CREAT = 0x200 constant O_DIRECT (line 1113) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1114) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1115) | O_EXCL = 0x800 constant O_EXEC (line 1116) | O_EXEC = 0x40000 constant O_EXLOCK (line 1117) | O_EXLOCK = 0x20 constant O_FSYNC (line 1118) | O_FSYNC = 0x80 constant O_NDELAY (line 1119) | O_NDELAY = 0x4 constant O_NOCTTY (line 1120) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1121) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1122) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1123) | O_RDONLY = 0x0 constant O_RDWR (line 1124) | O_RDWR = 0x2 constant O_SHLOCK (line 1125) | O_SHLOCK = 0x10 constant O_SYNC (line 1126) | O_SYNC = 0x80 constant O_TRUNC (line 1127) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1128) | O_TTY_INIT = 0x80000 constant O_WRONLY (line 1129) | O_WRONLY = 0x1 constant PARENB (line 1130) | PARENB = 0x1000 constant PARMRK (line 1131) | PARMRK = 0x8 constant PARODD (line 1132) | PARODD = 0x2000 constant PENDIN (line 1133) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1134) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1135) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1136) | PRIO_USER = 0x2 constant PROT_EXEC (line 1137) | PROT_EXEC = 0x4 constant PROT_NONE (line 1138) | PROT_NONE = 0x0 constant PROT_READ (line 1139) | PROT_READ = 0x1 constant PROT_WRITE (line 1140) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1141) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1142) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1143) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1144) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1145) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1146) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1147) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1148) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1149) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1150) | RTAX_BRD = 0x7 constant RTAX_DST (line 1151) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1152) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1153) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1154) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1155) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1156) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1157) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1158) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1159) | RTA_BRD = 0x80 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_NETMASK (line 1165) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1166) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1167) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1168) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1169) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1170) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1171) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1172) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1173) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1174) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1175) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1176) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1177) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1178) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1179) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1180) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1181) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1182) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1183) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1184) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1185) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1186) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1187) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1188) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1189) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1190) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1191) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1192) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1193) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1194) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1195) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1196) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1197) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1198) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1199) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1200) | RTM_LOSING = 0x5 constant RTM_MISS (line 1201) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1202) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1203) | RTM_NEWMADDR = 0xf constant RTM_OLDADD (line 1204) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1205) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1206) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1207) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1208) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1209) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1210) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1211) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1212) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1213) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1214) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1215) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1216) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1217) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1218) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1219) | RT_ALL_FIBS = -0x1 constant RT_CACHING_CONTEXT (line 1220) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1221) | RT_DEFAULT_FIB = 0x0 constant RT_NORTREF (line 1222) | RT_NORTREF = 0x2 constant RUSAGE_CHILDREN (line 1223) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1224) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1225) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1226) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1227) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1228) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1229) | SCM_TIMESTAMP = 0x2 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 = 0x80206931 constant SIOCADDRT (line 1234) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1235) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1236) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1237) | SIOCALIFADDR = 0x8118691b constant SIOCATMARK (line 1238) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1239) | SIOCDELMULTI = 0x80206932 constant SIOCDELRT (line 1240) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1241) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1242) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1243) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1244) | SIOCDLIFADDR = 0x8118691d constant SIOCGDRVSPEC (line 1245) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETSGCNT (line 1246) | SIOCGETSGCNT = 0xc0147210 constant SIOCGETVIFCNT (line 1247) | SIOCGETVIFCNT = 0xc014720f constant SIOCGHIWAT (line 1248) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1249) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1250) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1251) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1252) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDESCR (line 1253) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1254) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1255) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1256) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1257) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1258) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1259) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFINDEX (line 1260) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1261) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1262) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1263) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1264) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1265) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1266) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1267) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1268) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1269) | SIOCGIFSTATUS = 0xc331693b constant SIOCGLIFADDR (line 1270) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 1271) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLOWAT (line 1272) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1273) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1274) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1275) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCIFCREATE (line 1276) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1277) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1278) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1279) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSDRVSPEC (line 1280) | SIOCSDRVSPEC = 0x801c697b constant SIOCSHIWAT (line 1281) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1282) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1283) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1284) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1285) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1286) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1287) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1288) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1289) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1290) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1291) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1292) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1293) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1294) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1295) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1296) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1297) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1298) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1299) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1300) | SIOCSIFVNET = 0xc020695a constant SIOCSLIFPHYADDR (line 1301) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLOWAT (line 1302) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1303) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 1304) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1305) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1306) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1307) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1308) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1309) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1310) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1311) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1312) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1313) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1314) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1315) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1316) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1317) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1318) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1319) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1320) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1321) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1322) | SO_LABEL = 0x1009 constant SO_LINGER (line 1323) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1324) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1325) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1326) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1327) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1328) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1329) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1330) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1331) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1332) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1333) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1334) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1335) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1336) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1337) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1338) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1339) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1340) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1341) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1342) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1343) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1344) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1345) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1346) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1347) | SO_VENDOR = 0x80000000 constant TCIFLUSH (line 1348) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1349) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1350) | TCOFLUSH = 0x2 constant TCP_CA_NAME_MAX (line 1351) | TCP_CA_NAME_MAX = 0x10 constant TCP_CONGESTION (line 1352) | TCP_CONGESTION = 0x40 constant TCP_INFO (line 1353) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1354) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1355) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1356) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1357) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1358) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1359) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1360) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1361) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1362) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1363) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1364) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1365) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1366) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1367) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1368) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1369) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1370) | TCP_NOPUSH = 0x4 constant TCP_VENDOR (line 1371) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1372) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1373) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1374) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1375) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1376) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1377) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1378) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1379) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1380) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1381) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1382) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1383) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1384) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1385) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1386) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1387) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1388) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1389) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1390) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1391) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1392) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1393) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1394) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1395) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1396) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1397) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1398) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1399) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1400) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1401) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1402) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1403) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1404) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1405) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1406) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1407) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1408) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1409) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1410) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1411) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1412) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1413) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1414) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1415) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1416) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1417) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1418) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1419) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1420) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1421) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1422) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1423) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1424) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1425) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1426) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1427) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1428) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1429) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1430) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1431) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1432) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1433) | TIOCTIMESTAMP = 0x40087459 constant TIOCUCNTL (line 1434) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1435) | TOSTOP = 0x400000 constant VDISCARD (line 1436) | VDISCARD = 0xf constant VDSUSP (line 1437) | VDSUSP = 0xb constant VEOF (line 1438) | VEOF = 0x0 constant VEOL (line 1439) | VEOL = 0x1 constant VEOL2 (line 1440) | VEOL2 = 0x2 constant VERASE (line 1441) | VERASE = 0x3 constant VERASE2 (line 1442) | VERASE2 = 0x7 constant VINTR (line 1443) | VINTR = 0x8 constant VKILL (line 1444) | VKILL = 0x5 constant VLNEXT (line 1445) | VLNEXT = 0xe constant VMIN (line 1446) | VMIN = 0x10 constant VQUIT (line 1447) | VQUIT = 0x9 constant VREPRINT (line 1448) | VREPRINT = 0x6 constant VSTART (line 1449) | VSTART = 0xc constant VSTATUS (line 1450) | VSTATUS = 0x12 constant VSTOP (line 1451) | VSTOP = 0xd constant VSUSP (line 1452) | VSUSP = 0xa constant VTIME (line 1453) | VTIME = 0x11 constant VWERASE (line 1454) | VWERASE = 0x4 constant WCONTINUED (line 1455) | WCONTINUED = 0x4 constant WCOREFLAG (line 1456) | WCOREFLAG = 0x80 constant WEXITED (line 1457) | WEXITED = 0x10 constant WLINUXCLONE (line 1458) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1459) | WNOHANG = 0x1 constant WNOWAIT (line 1460) | WNOWAIT = 0x8 constant WSTOPPED (line 1461) | WSTOPPED = 0x2 constant WTRAPPED (line 1462) | WTRAPPED = 0x20 constant WUNTRACED (line 1463) | WUNTRACED = 0x2 constant E2BIG (line 1468) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1469) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1470) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1471) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1472) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1473) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1474) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1475) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1476) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1477) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1478) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1479) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1480) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1481) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1482) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1483) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1484) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1485) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1486) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1487) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1488) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1489) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1490) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1491) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1492) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1493) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1494) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1495) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1496) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1497) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1498) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1499) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1500) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1501) | EINVAL = syscall.Errno(0x16) constant EIO (line 1502) | EIO = syscall.Errno(0x5) constant EISCONN (line 1503) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1504) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1505) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1506) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1507) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1508) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1509) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1510) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1511) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1512) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1513) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1514) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1515) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1516) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1517) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1518) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1519) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1520) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1521) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1522) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1523) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1524) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1525) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1526) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1527) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1528) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1529) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1530) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1531) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1532) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1533) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1534) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1535) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1536) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1537) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1538) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1539) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1540) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1541) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1542) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1543) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1544) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1545) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1546) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1547) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1548) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1549) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1550) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1551) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1552) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1553) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1554) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1555) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1556) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1557) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1558) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1559) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1560) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1561) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1562) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1563) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1564) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1565) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1566) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1571) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1572) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1573) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1574) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1575) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1576) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1577) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1578) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1579) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1580) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1581) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1582) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1583) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1584) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1585) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1586) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1587) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1588) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1589) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1590) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1591) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1592) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1593) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1594) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1595) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1596) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1597) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1598) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1599) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1600) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1601) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1602) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1603) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1604) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1605) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x23 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 18) | AF_CCITT = 0xa constant AF_CHAOS (line 19) | AF_CHAOS = 0x5 constant AF_CNT (line 20) | AF_CNT = 0x15 constant AF_COIP (line 21) | AF_COIP = 0x14 constant AF_DATAKIT (line 22) | AF_DATAKIT = 0x9 constant AF_DECnet (line 23) | AF_DECnet = 0xc constant AF_DLI (line 24) | AF_DLI = 0xd constant AF_E164 (line 25) | AF_E164 = 0x1a constant AF_ECMA (line 26) | AF_ECMA = 0x8 constant AF_HYLINK (line 27) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 28) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 32) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 33) | AF_INET_SDP = 0x28 constant AF_IPX (line 34) | AF_IPX = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x1a constant AF_ISO (line 36) | AF_ISO = 0x7 constant AF_LAT (line 37) | AF_LAT = 0xe constant AF_LINK (line 38) | AF_LINK = 0x12 constant AF_LOCAL (line 39) | AF_LOCAL = 0x1 constant AF_MAX (line 40) | AF_MAX = 0x2a constant AF_NATM (line 41) | AF_NATM = 0x1d constant AF_NETBIOS (line 42) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 43) | AF_NETGRAPH = 0x20 constant AF_OSI (line 44) | AF_OSI = 0x7 constant AF_PUP (line 45) | AF_PUP = 0x4 constant AF_ROUTE (line 46) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 47) | AF_SCLUSTER = 0x22 constant AF_SIP (line 48) | AF_SIP = 0x18 constant AF_SLOW (line 49) | AF_SLOW = 0x21 constant AF_SNA (line 50) | AF_SNA = 0xb constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 53) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 54) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 55) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 56) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 57) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 58) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 59) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 60) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 61) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 62) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 63) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 64) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 65) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 66) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 67) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 68) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 69) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 70) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 71) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 72) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 73) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 74) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 75) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 76) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 77) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 78) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 79) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 80) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 81) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 82) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 83) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 84) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 85) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 86) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 87) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 88) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 89) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 90) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 91) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 92) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 93) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 94) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 95) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 96) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 97) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 98) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 99) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 100) | AF_VENDOR47 = 0x85 constant B0 (line 101) | B0 = 0x0 constant B110 (line 102) | B110 = 0x6e constant B115200 (line 103) | B115200 = 0x1c200 constant B1200 (line 104) | B1200 = 0x4b0 constant B134 (line 105) | B134 = 0x86 constant B14400 (line 106) | B14400 = 0x3840 constant B150 (line 107) | B150 = 0x96 constant B1800 (line 108) | B1800 = 0x708 constant B19200 (line 109) | B19200 = 0x4b00 constant B200 (line 110) | B200 = 0xc8 constant B230400 (line 111) | B230400 = 0x38400 constant B2400 (line 112) | B2400 = 0x960 constant B28800 (line 113) | B28800 = 0x7080 constant B300 (line 114) | B300 = 0x12c constant B38400 (line 115) | B38400 = 0x9600 constant B460800 (line 116) | B460800 = 0x70800 constant B4800 (line 117) | B4800 = 0x12c0 constant B50 (line 118) | B50 = 0x32 constant B57600 (line 119) | B57600 = 0xe100 constant B600 (line 120) | B600 = 0x258 constant B7200 (line 121) | B7200 = 0x1c20 constant B75 (line 122) | B75 = 0x4b constant B76800 (line 123) | B76800 = 0x12c00 constant B921600 (line 124) | B921600 = 0xe1000 constant B9600 (line 125) | B9600 = 0x2580 constant BIOCFEEDBACK (line 126) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 127) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 128) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 129) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 130) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 131) | BIOCGDLTLIST = 0xc0104279 constant BIOCGETBUFMODE (line 132) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 133) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 134) | BIOCGETZMAX = 0x4008427f constant BIOCGHDRCMPLT (line 135) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 136) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 137) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSEESENT (line 138) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 139) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 140) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 141) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 142) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 143) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 144) | BIOCROTZBUF = 0x40184280 constant BIOCSBLEN (line 145) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 146) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 147) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 148) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 149) | BIOCSETF = 0x80104267 constant BIOCSETFNR (line 150) | BIOCSETFNR = 0x80104282 constant BIOCSETIF (line 151) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 152) | BIOCSETWF = 0x8010427b constant BIOCSETZBUF (line 153) | BIOCSETZBUF = 0x80184281 constant BIOCSHDRCMPLT (line 154) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 155) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 156) | BIOCSRTIMEOUT = 0x8010426d constant BIOCSSEESENT (line 157) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 158) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 159) | BIOCVERSION = 0x40044271 constant BPF_A (line 160) | BPF_A = 0x10 constant BPF_ABS (line 161) | BPF_ABS = 0x20 constant BPF_ADD (line 162) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 163) | BPF_ALIGNMENT = 0x8 constant BPF_ALU (line 164) | BPF_ALU = 0x4 constant BPF_AND (line 165) | BPF_AND = 0x50 constant BPF_B (line 166) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 167) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 168) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 169) | BPF_DIV = 0x30 constant BPF_H (line 170) | BPF_H = 0x8 constant BPF_IMM (line 171) | BPF_IMM = 0x0 constant BPF_IND (line 172) | BPF_IND = 0x40 constant BPF_JA (line 173) | BPF_JA = 0x0 constant BPF_JEQ (line 174) | BPF_JEQ = 0x10 constant BPF_JGE (line 175) | BPF_JGE = 0x30 constant BPF_JGT (line 176) | BPF_JGT = 0x20 constant BPF_JMP (line 177) | BPF_JMP = 0x5 constant BPF_JSET (line 178) | BPF_JSET = 0x40 constant BPF_K (line 179) | BPF_K = 0x0 constant BPF_LD (line 180) | BPF_LD = 0x0 constant BPF_LDX (line 181) | BPF_LDX = 0x1 constant BPF_LEN (line 182) | BPF_LEN = 0x80 constant BPF_LSH (line 183) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 184) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 185) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 186) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 187) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 188) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 189) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 190) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 191) | BPF_MISC = 0x7 constant BPF_MSH (line 192) | BPF_MSH = 0xa0 constant BPF_MUL (line 193) | BPF_MUL = 0x20 constant BPF_NEG (line 194) | BPF_NEG = 0x80 constant BPF_OR (line 195) | BPF_OR = 0x40 constant BPF_RELEASE (line 196) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 197) | BPF_RET = 0x6 constant BPF_RSH (line 198) | BPF_RSH = 0x70 constant BPF_ST (line 199) | BPF_ST = 0x2 constant BPF_STX (line 200) | BPF_STX = 0x3 constant BPF_SUB (line 201) | BPF_SUB = 0x10 constant BPF_TAX (line 202) | BPF_TAX = 0x0 constant BPF_TXA (line 203) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 204) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 205) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 206) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 207) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 208) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 209) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 210) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 211) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 212) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 213) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 214) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 215) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 216) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 217) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 218) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 219) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 220) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 221) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 222) | BPF_T_NORMAL = 0x0 constant BPF_W (line 223) | BPF_W = 0x0 constant BPF_X (line 224) | BPF_X = 0x8 constant BRKINT (line 225) | BRKINT = 0x2 constant CFLUSH (line 226) | CFLUSH = 0xf constant CLOCAL (line 227) | CLOCAL = 0x8000 constant CLOCK_MONOTONIC (line 228) | CLOCK_MONOTONIC = 0x4 constant CLOCK_MONOTONIC_FAST (line 229) | CLOCK_MONOTONIC_FAST = 0xc constant CLOCK_MONOTONIC_PRECISE (line 230) | CLOCK_MONOTONIC_PRECISE = 0xb constant CLOCK_PROCESS_CPUTIME_ID (line 231) | CLOCK_PROCESS_CPUTIME_ID = 0xf constant CLOCK_PROF (line 232) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 233) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_FAST (line 234) | CLOCK_REALTIME_FAST = 0xa constant CLOCK_REALTIME_PRECISE (line 235) | CLOCK_REALTIME_PRECISE = 0x9 constant CLOCK_SECOND (line 236) | CLOCK_SECOND = 0xd constant CLOCK_THREAD_CPUTIME_ID (line 237) | CLOCK_THREAD_CPUTIME_ID = 0xe constant CLOCK_UPTIME (line 238) | CLOCK_UPTIME = 0x5 constant CLOCK_UPTIME_FAST (line 239) | CLOCK_UPTIME_FAST = 0x8 constant CLOCK_UPTIME_PRECISE (line 240) | CLOCK_UPTIME_PRECISE = 0x7 constant CLOCK_VIRTUAL (line 241) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 242) | CREAD = 0x800 constant CS5 (line 243) | CS5 = 0x0 constant CS6 (line 244) | CS6 = 0x100 constant CS7 (line 245) | CS7 = 0x200 constant CS8 (line 246) | CS8 = 0x300 constant CSIZE (line 247) | CSIZE = 0x300 constant CSTART (line 248) | CSTART = 0x11 constant CSTATUS (line 249) | CSTATUS = 0x14 constant CSTOP (line 250) | CSTOP = 0x13 constant CSTOPB (line 251) | CSTOPB = 0x400 constant CSUSP (line 252) | CSUSP = 0x1a constant CTL_MAXNAME (line 253) | CTL_MAXNAME = 0x18 constant CTL_NET (line 254) | CTL_NET = 0x4 constant DLT_A429 (line 255) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 256) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 257) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 258) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 259) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 260) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 261) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 262) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 263) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 264) | DLT_AURORA = 0x7e constant DLT_AX25 (line 265) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 266) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 267) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 268) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 269) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 270) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 271) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 272) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 273) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 274) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 275) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 276) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 277) | DLT_DBUS = 0xe7 constant DLT_DECT (line 278) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 279) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 280) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 281) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 282) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 283) | DLT_EN3MB = 0x2 constant DLT_ENC (line 284) | DLT_ENC = 0x6d constant DLT_ERF (line 285) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 286) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 287) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 288) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 289) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 290) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 291) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 292) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 293) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 294) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 295) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 296) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 297) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 298) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 299) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 300) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 301) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 302) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 303) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 304) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 305) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 306) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 307) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 308) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 309) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 310) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 311) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 312) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 313) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 314) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 315) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 316) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 317) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 318) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 319) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 320) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 321) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 322) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 323) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 324) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 325) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 326) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 327) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 328) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 329) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 330) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 331) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 332) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 333) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 334) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 335) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 336) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 337) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 338) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 339) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 340) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 341) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 342) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 343) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 344) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 345) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 346) | DLT_LAPD = 0xcb constant DLT_LIN (line 347) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 348) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 349) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 350) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 351) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 352) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 353) | DLT_LOOP = 0x6c constant DLT_LTALK (line 354) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 355) | DLT_MATCHING_MAX = 0xf6 constant DLT_MATCHING_MIN (line 356) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 357) | DLT_MFR = 0xb6 constant DLT_MOST (line 358) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 359) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 360) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 361) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 362) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 363) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 364) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 365) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 366) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 367) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 368) | DLT_NFLOG = 0xef constant DLT_NG40 (line 369) | DLT_NG40 = 0xf4 constant DLT_NULL (line 370) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 371) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 372) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 373) | DLT_PFSYNC = 0x79 constant DLT_PPI (line 374) | DLT_PPI = 0xc0 constant DLT_PPP (line 375) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 376) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 377) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 378) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 379) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 380) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 381) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 382) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 383) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 384) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 385) | DLT_RAW = 0xc constant DLT_RIO (line 386) | DLT_RIO = 0x7c constant DLT_SCCP (line 387) | DLT_SCCP = 0x8e constant DLT_SITA (line 388) | DLT_SITA = 0xc4 constant DLT_SLIP (line 389) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 390) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 391) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 392) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 393) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 394) | DLT_TZSP = 0x80 constant DLT_USB (line 395) | DLT_USB = 0xba constant DLT_USB_LINUX (line 396) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 397) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 398) | DLT_USER0 = 0x93 constant DLT_USER1 (line 399) | DLT_USER1 = 0x94 constant DLT_USER10 (line 400) | DLT_USER10 = 0x9d constant DLT_USER11 (line 401) | DLT_USER11 = 0x9e constant DLT_USER12 (line 402) | DLT_USER12 = 0x9f constant DLT_USER13 (line 403) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 404) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 405) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 406) | DLT_USER2 = 0x95 constant DLT_USER3 (line 407) | DLT_USER3 = 0x96 constant DLT_USER4 (line 408) | DLT_USER4 = 0x97 constant DLT_USER5 (line 409) | DLT_USER5 = 0x98 constant DLT_USER6 (line 410) | DLT_USER6 = 0x99 constant DLT_USER7 (line 411) | DLT_USER7 = 0x9a constant DLT_USER8 (line 412) | DLT_USER8 = 0x9b constant DLT_USER9 (line 413) | DLT_USER9 = 0x9c constant DLT_WIHART (line 414) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 415) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 416) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 417) | DT_BLK = 0x6 constant DT_CHR (line 418) | DT_CHR = 0x2 constant DT_DIR (line 419) | DT_DIR = 0x4 constant DT_FIFO (line 420) | DT_FIFO = 0x1 constant DT_LNK (line 421) | DT_LNK = 0xa constant DT_REG (line 422) | DT_REG = 0x8 constant DT_SOCK (line 423) | DT_SOCK = 0xc constant DT_UNKNOWN (line 424) | DT_UNKNOWN = 0x0 constant DT_WHT (line 425) | DT_WHT = 0xe constant ECHO (line 426) | ECHO = 0x8 constant ECHOCTL (line 427) | ECHOCTL = 0x40 constant ECHOE (line 428) | ECHOE = 0x2 constant ECHOK (line 429) | ECHOK = 0x4 constant ECHOKE (line 430) | ECHOKE = 0x1 constant ECHONL (line 431) | ECHONL = 0x10 constant ECHOPRT (line 432) | ECHOPRT = 0x20 constant EVFILT_AIO (line 433) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 434) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 435) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 436) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 437) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 438) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 439) | EVFILT_SYSCOUNT = 0xb constant EVFILT_TIMER (line 440) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 441) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 442) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 443) | EVFILT_WRITE = -0x2 constant EV_ADD (line 444) | EV_ADD = 0x1 constant EV_CLEAR (line 445) | EV_CLEAR = 0x20 constant EV_DELETE (line 446) | EV_DELETE = 0x2 constant EV_DISABLE (line 447) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 448) | EV_DISPATCH = 0x80 constant EV_DROP (line 449) | EV_DROP = 0x1000 constant EV_ENABLE (line 450) | EV_ENABLE = 0x4 constant EV_EOF (line 451) | EV_EOF = 0x8000 constant EV_ERROR (line 452) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 453) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 454) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 455) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 456) | EV_SYSFLAGS = 0xf000 constant EXTA (line 457) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 458) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 459) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 460) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 461) | EXTB = 0x9600 constant EXTPROC (line 462) | EXTPROC = 0x800 constant FD_CLOEXEC (line 463) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 464) | FD_SETSIZE = 0x400 constant FLUSHO (line 465) | FLUSHO = 0x800000 constant F_CANCEL (line 466) | F_CANCEL = 0x5 constant F_DUP2FD (line 467) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 468) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 469) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 470) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 471) | F_GETFD = 0x1 constant F_GETFL (line 472) | F_GETFL = 0x3 constant F_GETLK (line 473) | F_GETLK = 0xb constant F_GETOWN (line 474) | F_GETOWN = 0x5 constant F_OGETLK (line 475) | F_OGETLK = 0x7 constant F_OK (line 476) | F_OK = 0x0 constant F_OSETLK (line 477) | F_OSETLK = 0x8 constant F_OSETLKW (line 478) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 479) | F_RDAHEAD = 0x10 constant F_RDLCK (line 480) | F_RDLCK = 0x1 constant F_READAHEAD (line 481) | F_READAHEAD = 0xf constant F_SETFD (line 482) | F_SETFD = 0x2 constant F_SETFL (line 483) | F_SETFL = 0x4 constant F_SETLK (line 484) | F_SETLK = 0xc constant F_SETLKW (line 485) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 486) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 487) | F_SETOWN = 0x6 constant F_UNLCK (line 488) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 489) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 490) | F_WRLCK = 0x3 constant HUPCL (line 491) | HUPCL = 0x4000 constant ICANON (line 492) | ICANON = 0x100 constant ICMP6_FILTER (line 493) | ICMP6_FILTER = 0x12 constant ICRNL (line 494) | ICRNL = 0x100 constant IEXTEN (line 495) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 496) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 497) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 498) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 499) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 500) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 501) | IFF_CANTCHANGE = 0x218f72 constant IFF_CANTCONFIG (line 502) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 503) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 504) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 505) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 506) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 507) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 508) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 509) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 510) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 511) | IFF_MONITOR = 0x40000 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_PPROMISC (line 516) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 517) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 518) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 519) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 520) | IFF_SIMPLEX = 0x800 constant IFF_SMART (line 521) | IFF_SMART = 0x20 constant IFF_STATICARP (line 522) | IFF_STATICARP = 0x80000 constant IFF_UP (line 523) | IFF_UP = 0x1 constant IFNAMSIZ (line 524) | IFNAMSIZ = 0x10 constant IFT_1822 (line 525) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 526) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 527) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 528) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 529) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 530) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 531) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 532) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 533) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 534) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 535) | IFT_ASYNC = 0x54 constant IFT_ATM (line 536) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 537) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 538) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 539) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 540) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 541) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 542) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 543) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 544) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 545) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 546) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 547) | IFT_BSC = 0x53 constant IFT_CARP (line 548) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 549) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 550) | IFT_CEPT = 0x13 constant IFT_CES (line 551) | IFT_CES = 0x85 constant IFT_CHANNEL (line 552) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 553) | IFT_CNR = 0x55 constant IFT_COFFEE (line 554) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 555) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 556) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 557) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 558) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 559) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 560) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 561) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 562) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 563) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 564) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 565) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 566) | IFT_DS3 = 0x1e constant IFT_DTM (line 567) | IFT_DTM = 0x8c 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_ENC (line 573) | IFT_ENC = 0xf4 constant IFT_EON (line 574) | IFT_EON = 0x19 constant IFT_EPLRS (line 575) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 576) | IFT_ESCON = 0x49 constant IFT_ETHER (line 577) | IFT_ETHER = 0x6 constant IFT_FAITH (line 578) | IFT_FAITH = 0xf2 constant IFT_FAST (line 579) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 580) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 581) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 582) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 583) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 584) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 585) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 586) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 587) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 588) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 589) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 590) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 591) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 592) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 593) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 594) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 595) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 596) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 597) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 598) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 599) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 600) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 601) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 602) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 603) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 604) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 605) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 606) | IFT_HSSI = 0x2e constant IFT_HY (line 607) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 608) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 609) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 610) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 611) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 612) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 613) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 614) | IFT_IFGSN = 0x91 constant IFT_IMT (line 615) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 616) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 617) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 618) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 619) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 620) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 621) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 622) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 623) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 624) | IFT_IPXIP = 0xf9 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_LOCALTALK (line 645) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 646) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 647) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 648) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 649) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 650) | IFT_MODEM = 0x30 constant IFT_MPC (line 651) | IFT_MPC = 0x71 constant IFT_MPLS (line 652) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 653) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 654) | IFT_MSDSL = 0x8f constant IFT_MVL (line 655) | IFT_MVL = 0xbf constant IFT_MYRINET (line 656) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 657) | IFT_NFAS = 0xaf constant IFT_NSIP (line 658) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 659) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 660) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 661) | IFT_OTHER = 0x1 constant IFT_P10 (line 662) | IFT_P10 = 0xc constant IFT_P80 (line 663) | IFT_P80 = 0xd constant IFT_PARA (line 664) | IFT_PARA = 0x22 constant IFT_PFLOG (line 665) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 666) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 667) | IFT_PLC = 0xae constant IFT_POS (line 668) | IFT_POS = 0xab constant IFT_PPP (line 669) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 670) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 671) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 672) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 673) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 674) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 675) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 676) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 677) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 678) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 679) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 680) | IFT_PVC = 0xf1 constant IFT_QLLC (line 681) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 682) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 683) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 684) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 685) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 686) | IFT_RS232 = 0x21 constant IFT_RSRB (line 687) | IFT_RSRB = 0x4f constant IFT_SDLC (line 688) | IFT_SDLC = 0x11 constant IFT_SDSL (line 689) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 690) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 691) | IFT_SIP = 0x1f constant IFT_SLIP (line 692) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 693) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 694) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 695) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 696) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 697) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 698) | IFT_SONETVT = 0x33 constant IFT_SRP (line 699) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 700) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 701) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 702) | IFT_STARLAN = 0xb constant IFT_STF (line 703) | IFT_STF = 0xd7 constant IFT_T1 (line 704) | IFT_T1 = 0x12 constant IFT_TDLC (line 705) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 706) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 707) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 708) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 709) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 710) | IFT_ULTRA = 0x1d constant IFT_USB (line 711) | IFT_USB = 0xa0 constant IFT_V11 (line 712) | IFT_V11 = 0x40 constant IFT_V35 (line 713) | IFT_V35 = 0x2d constant IFT_V36 (line 714) | IFT_V36 = 0x41 constant IFT_V37 (line 715) | IFT_V37 = 0x78 constant IFT_VDSL (line 716) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 717) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 718) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 719) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 720) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 721) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 722) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 723) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 724) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 725) | IFT_X213 = 0x5d constant IFT_X25 (line 726) | IFT_X25 = 0x5 constant IFT_X25DDN (line 727) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 728) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 729) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 730) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 731) | IFT_XETHER = 0x1a constant IGNBRK (line 732) | IGNBRK = 0x1 constant IGNCR (line 733) | IGNCR = 0x80 constant IGNPAR (line 734) | IGNPAR = 0x4 constant IMAXBEL (line 735) | IMAXBEL = 0x2000 constant INLCR (line 736) | INLCR = 0x40 constant INPCK (line 737) | INPCK = 0x10 constant IN_CLASSA_HOST (line 738) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 739) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 740) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 741) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 742) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 743) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 744) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 745) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 746) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 747) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 748) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 749) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 750) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 751) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 752) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 753) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 754) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 755) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 756) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 757) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 758) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 759) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 760) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 761) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 762) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 763) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 764) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 765) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 766) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 767) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 768) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 769) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 770) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 771) | IPPROTO_DGP = 0x56 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_EMCON (line 776) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 777) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 778) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 779) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 780) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 781) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 782) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 783) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 784) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 785) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 786) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 787) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 788) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 789) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 790) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 791) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 792) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 793) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 794) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 795) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 796) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 797) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 798) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 799) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 800) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 801) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 802) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 803) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 804) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 805) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 806) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 807) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 808) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 809) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 810) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 811) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 812) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 813) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 814) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 815) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 816) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 817) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 818) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 819) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 820) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 821) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 822) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 823) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 824) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 825) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 826) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 827) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 828) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 829) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 830) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 831) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 832) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 833) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 834) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 835) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 836) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 837) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 838) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 839) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 840) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 841) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 842) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 843) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 844) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 845) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 846) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 847) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 848) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 849) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 850) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 851) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 852) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 853) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 854) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 855) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 856) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 857) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 858) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 859) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 860) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 861) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 862) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 863) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 864) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 865) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 866) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 867) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 868) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 869) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 870) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 871) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 872) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 873) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 874) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 875) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 876) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 877) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 878) | IPV6_BINDANY = 0x40 constant IPV6_BINDV6ONLY (line 879) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 880) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 881) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 882) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 883) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 884) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 885) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 886) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 887) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 888) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 889) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 890) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 891) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 892) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 893) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 894) | IPV6_FW_ZERO = 0x21 constant IPV6_HLIMDEC (line 895) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 896) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 897) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 898) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 899) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 900) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 901) | IPV6_MAXHLIM = 0xff constant IPV6_MAXOPTHDR (line 902) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 903) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 904) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 905) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 906) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 907) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 908) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 909) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 910) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 911) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 912) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 913) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 914) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 915) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 916) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 917) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 918) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 919) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 920) | IPV6_PREFER_TEMPADDR = 0x3f 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_ADD_SOURCE_MEMBERSHIP (line 941) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 942) | IP_BINDANY = 0x18 constant IP_BLOCK_SOURCE (line 943) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 944) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 945) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 946) | IP_DF = 0x4000 constant IP_DONTFRAG (line 947) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 948) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 949) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 950) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 951) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 952) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 953) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 954) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 955) | IP_FAITH = 0x16 constant IP_FW3 (line 956) | IP_FW3 = 0x30 constant IP_FW_ADD (line 957) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 958) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 959) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 960) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 961) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 962) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 963) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 964) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 965) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 966) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 967) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 968) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 969) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 970) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 971) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 972) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 973) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 974) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 975) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 976) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 977) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 978) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 979) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 980) | IP_MF = 0x2000 constant IP_MINTTL (line 981) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 982) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 983) | IP_MSFILTER = 0x4a constant IP_MSS (line 984) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 985) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 986) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 987) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 988) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 989) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 990) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 991) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 992) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 993) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 994) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 995) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 996) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 997) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 998) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 999) | IP_RECVRETOPTS = 0x6 constant IP_RECVTOS (line 1000) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 1001) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 1002) | IP_RETOPTS = 0x8 constant IP_RF (line 1003) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 1004) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 1005) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 1006) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 1007) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 1008) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 1009) | IP_TOS = 0x3 constant IP_TTL (line 1010) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 1011) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 1012) | ISIG = 0x80 constant ISTRIP (line 1013) | ISTRIP = 0x20 constant IXANY (line 1014) | IXANY = 0x800 constant IXOFF (line 1015) | IXOFF = 0x400 constant IXON (line 1016) | IXON = 0x200 constant LOCK_EX (line 1017) | LOCK_EX = 0x2 constant LOCK_NB (line 1018) | LOCK_NB = 0x4 constant LOCK_SH (line 1019) | LOCK_SH = 0x1 constant LOCK_UN (line 1020) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 1021) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 1022) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 1023) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1024) | MADV_FREE = 0x5 constant MADV_NOCORE (line 1025) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 1026) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 1027) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1028) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1029) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1030) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1031) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 1032) | MAP_32BIT = 0x80000 constant MAP_ALIGNED_SUPER (line 1033) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1034) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1035) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1036) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1037) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1038) | MAP_COPY = 0x2 constant MAP_EXCL (line 1039) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1040) | MAP_FILE = 0x0 constant MAP_FIXED (line 1041) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 1042) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1043) | MAP_NOCORE = 0x20000 constant MAP_NORESERVE (line 1044) | MAP_NORESERVE = 0x40 constant MAP_NOSYNC (line 1045) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1046) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1047) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1048) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 1049) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1050) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1051) | MAP_SHARED = 0x1 constant MAP_STACK (line 1052) | MAP_STACK = 0x400 constant MCL_CURRENT (line 1053) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1054) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 1055) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1056) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1057) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1058) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1059) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1060) | MSG_EOF = 0x100 constant MSG_EOR (line 1061) | MSG_EOR = 0x8 constant MSG_NBIO (line 1062) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1063) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1064) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1065) | MSG_OOB = 0x1 constant MSG_PEEK (line 1066) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1067) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1068) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1069) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1070) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1071) | MS_SYNC = 0x0 constant NAME_MAX (line 1072) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1073) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1074) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1075) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1076) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1077) | NET_RT_IFMALIST = 0x4 constant NET_RT_MAXID (line 1078) | NET_RT_MAXID = 0x6 constant NOFLSH (line 1079) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1080) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1081) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1082) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1083) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1084) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1085) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1086) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1087) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1088) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1089) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1090) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1091) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 1092) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1093) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1094) | NOTE_LOWAT = 0x1 constant NOTE_MSECONDS (line 1095) | NOTE_MSECONDS = 0x2 constant NOTE_NSECONDS (line 1096) | NOTE_NSECONDS = 0x8 constant NOTE_PCTRLMASK (line 1097) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1098) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1099) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1100) | NOTE_REVOKE = 0x40 constant NOTE_SECONDS (line 1101) | NOTE_SECONDS = 0x1 constant NOTE_TRACK (line 1102) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1103) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1104) | NOTE_TRIGGER = 0x1000000 constant NOTE_USECONDS (line 1105) | NOTE_USECONDS = 0x4 constant NOTE_WRITE (line 1106) | NOTE_WRITE = 0x2 constant OCRNL (line 1107) | OCRNL = 0x10 constant ONLCR (line 1108) | ONLCR = 0x2 constant ONLRET (line 1109) | ONLRET = 0x40 constant ONOCR (line 1110) | ONOCR = 0x20 constant ONOEOT (line 1111) | ONOEOT = 0x8 constant OPOST (line 1112) | OPOST = 0x1 constant O_ACCMODE (line 1113) | O_ACCMODE = 0x3 constant O_APPEND (line 1114) | O_APPEND = 0x8 constant O_ASYNC (line 1115) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1116) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1117) | O_CREAT = 0x200 constant O_DIRECT (line 1118) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1119) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1120) | O_EXCL = 0x800 constant O_EXEC (line 1121) | O_EXEC = 0x40000 constant O_EXLOCK (line 1122) | O_EXLOCK = 0x20 constant O_FSYNC (line 1123) | O_FSYNC = 0x80 constant O_NDELAY (line 1124) | O_NDELAY = 0x4 constant O_NOCTTY (line 1125) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1126) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1127) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1128) | O_RDONLY = 0x0 constant O_RDWR (line 1129) | O_RDWR = 0x2 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_TTY_INIT (line 1133) | O_TTY_INIT = 0x80000 constant O_WRONLY (line 1134) | O_WRONLY = 0x1 constant PARENB (line 1135) | PARENB = 0x1000 constant PARMRK (line 1136) | PARMRK = 0x8 constant PARODD (line 1137) | PARODD = 0x2000 constant PENDIN (line 1138) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1139) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1140) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1141) | PRIO_USER = 0x2 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_NOFILE (line 1151) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1152) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1153) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1154) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1155) | RTAX_BRD = 0x7 constant RTAX_DST (line 1156) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1157) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1158) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1159) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1160) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1161) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1162) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1163) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1164) | RTA_BRD = 0x80 constant RTA_DST (line 1165) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1166) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1167) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1168) | RTA_IFA = 0x20 constant RTA_IFP (line 1169) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1170) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1171) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1172) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1173) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1174) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1175) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1176) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1177) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1178) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1179) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1180) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1181) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1182) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1183) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1184) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1185) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1186) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1187) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1188) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1189) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1190) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1191) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1192) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1193) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1194) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1195) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1196) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1197) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1198) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1199) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1200) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1201) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1202) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1203) | RTM_IFINFO = 0xe 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_NEWMADDR (line 1208) | RTM_NEWMADDR = 0xf constant RTM_OLDADD (line 1209) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1210) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1211) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1212) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1213) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1214) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1215) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1216) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1217) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1218) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1219) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1220) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1221) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1222) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1223) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1224) | RT_ALL_FIBS = -0x1 constant RT_CACHING_CONTEXT (line 1225) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1226) | RT_DEFAULT_FIB = 0x0 constant RT_NORTREF (line 1227) | RT_NORTREF = 0x2 constant RUSAGE_CHILDREN (line 1228) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1229) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1230) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1231) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1232) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1233) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1234) | SCM_TIMESTAMP = 0x2 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 SIOCADDRT (line 1239) | SIOCADDRT = 0x8040720a constant SIOCAIFADDR (line 1240) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1241) | SIOCAIFGROUP = 0x80286987 constant SIOCALIFADDR (line 1242) | SIOCALIFADDR = 0x8118691b constant SIOCATMARK (line 1243) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1244) | SIOCDELMULTI = 0x80206932 constant SIOCDELRT (line 1245) | SIOCDELRT = 0x8040720b constant SIOCDIFADDR (line 1246) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1247) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1248) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1249) | SIOCDLIFADDR = 0x8118691d constant SIOCGDRVSPEC (line 1250) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETSGCNT (line 1251) | SIOCGETSGCNT = 0xc0207210 constant SIOCGETVIFCNT (line 1252) | SIOCGETVIFCNT = 0xc028720f constant SIOCGHIWAT (line 1253) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1254) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1255) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1256) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1257) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDESCR (line 1258) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1259) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1260) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1261) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1262) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1263) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1264) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFINDEX (line 1265) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1266) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1267) | SIOCGIFMEDIA = 0xc0306938 constant SIOCGIFMETRIC (line 1268) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1269) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1270) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1271) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1272) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1273) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1274) | SIOCGIFSTATUS = 0xc331693b constant SIOCGLIFADDR (line 1275) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 1276) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLOWAT (line 1277) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1278) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1279) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1280) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCIFCREATE (line 1281) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1282) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1283) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1284) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSDRVSPEC (line 1285) | SIOCSDRVSPEC = 0x8028697b constant SIOCSHIWAT (line 1286) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1287) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1288) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1289) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1290) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1291) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1292) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1293) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1294) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1295) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1296) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1297) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1298) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1299) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1300) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1301) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1302) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1303) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1304) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1305) | SIOCSIFVNET = 0xc020695a constant SIOCSLIFPHYADDR (line 1306) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLOWAT (line 1307) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1308) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 1309) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1310) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1311) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1312) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1313) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1314) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1315) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1316) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1317) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1318) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1319) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1320) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1321) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1322) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1323) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1324) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1325) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1326) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1327) | SO_LABEL = 0x1009 constant SO_LINGER (line 1328) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1329) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1330) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1331) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1332) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1333) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1334) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1335) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1336) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1337) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1338) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1339) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1340) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1341) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1342) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1343) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1344) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1345) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1346) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1347) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1348) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1349) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1350) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1351) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1352) | SO_VENDOR = 0x80000000 constant TCIFLUSH (line 1353) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1354) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1355) | TCOFLUSH = 0x2 constant TCP_CA_NAME_MAX (line 1356) | TCP_CA_NAME_MAX = 0x10 constant TCP_CONGESTION (line 1357) | TCP_CONGESTION = 0x40 constant TCP_INFO (line 1358) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1359) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1360) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1361) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1362) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1363) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1364) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1365) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1366) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1367) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1368) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1369) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1370) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1371) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1372) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1373) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1374) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1375) | TCP_NOPUSH = 0x4 constant TCP_VENDOR (line 1376) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1377) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1378) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1379) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1380) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1381) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1382) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1383) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1384) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1385) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1386) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1387) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1388) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1389) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1390) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1391) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1392) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1393) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1394) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1395) | TIOCMGET = 0x4004746a constant TIOCMSDTRWAIT (line 1396) | TIOCMSDTRWAIT = 0x8004745b constant TIOCMSET (line 1397) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1398) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1399) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1400) | TIOCM_CTS = 0x20 constant TIOCM_DCD (line 1401) | TIOCM_DCD = 0x40 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 TIOCPTMASTER (line 1422) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1423) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1424) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1425) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1426) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1427) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1428) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1429) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1430) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1431) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1432) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1433) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1434) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1435) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1436) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1437) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1438) | TIOCTIMESTAMP = 0x40107459 constant TIOCUCNTL (line 1439) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1440) | TOSTOP = 0x400000 constant VDISCARD (line 1441) | VDISCARD = 0xf constant VDSUSP (line 1442) | VDSUSP = 0xb constant VEOF (line 1443) | VEOF = 0x0 constant VEOL (line 1444) | VEOL = 0x1 constant VEOL2 (line 1445) | VEOL2 = 0x2 constant VERASE (line 1446) | VERASE = 0x3 constant VERASE2 (line 1447) | VERASE2 = 0x7 constant VINTR (line 1448) | VINTR = 0x8 constant VKILL (line 1449) | VKILL = 0x5 constant VLNEXT (line 1450) | VLNEXT = 0xe constant VMIN (line 1451) | VMIN = 0x10 constant VQUIT (line 1452) | VQUIT = 0x9 constant VREPRINT (line 1453) | VREPRINT = 0x6 constant VSTART (line 1454) | VSTART = 0xc constant VSTATUS (line 1455) | VSTATUS = 0x12 constant VSTOP (line 1456) | VSTOP = 0xd constant VSUSP (line 1457) | VSUSP = 0xa constant VTIME (line 1458) | VTIME = 0x11 constant VWERASE (line 1459) | VWERASE = 0x4 constant WCONTINUED (line 1460) | WCONTINUED = 0x4 constant WCOREFLAG (line 1461) | WCOREFLAG = 0x80 constant WEXITED (line 1462) | WEXITED = 0x10 constant WLINUXCLONE (line 1463) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1464) | WNOHANG = 0x1 constant WNOWAIT (line 1465) | WNOWAIT = 0x8 constant WSTOPPED (line 1466) | WSTOPPED = 0x2 constant WTRAPPED (line 1467) | WTRAPPED = 0x20 constant WUNTRACED (line 1468) | WUNTRACED = 0x2 constant E2BIG (line 1473) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1474) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1475) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1476) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1477) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1478) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1479) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1480) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1481) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1482) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1483) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1484) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1485) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1486) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1487) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1488) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1489) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1490) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1491) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1492) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1493) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1494) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1495) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1496) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1497) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1498) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1499) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1500) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1501) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1502) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1503) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1504) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1505) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1506) | EINVAL = syscall.Errno(0x16) constant EIO (line 1507) | EIO = syscall.Errno(0x5) constant EISCONN (line 1508) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1509) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1510) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1511) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1512) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1513) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1514) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1515) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1516) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1517) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1518) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1519) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1520) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1521) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1522) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1523) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1524) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1525) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1526) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1527) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1528) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1529) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1530) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1531) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1532) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1533) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1534) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1535) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1536) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1537) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1538) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1539) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1540) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1541) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1542) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1543) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1544) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1545) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1546) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1547) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1548) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1549) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1550) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1551) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1552) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1553) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1554) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1555) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1556) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1557) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1558) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1559) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1560) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1561) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1562) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1563) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1564) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1565) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1566) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1567) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1568) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1569) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1570) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1571) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1576) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1577) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1578) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1579) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1580) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1581) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1582) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1583) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1584) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1585) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1586) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1587) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1588) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1589) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1590) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1591) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1592) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1593) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1594) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1595) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1596) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1597) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1598) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1599) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1600) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1601) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1602) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1603) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1604) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1605) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1606) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1607) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1608) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1609) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1610) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x23 constant AF_ATM (line 16) | AF_ATM = 0x1e constant AF_BLUETOOTH (line 17) | AF_BLUETOOTH = 0x24 constant AF_CCITT (line 18) | AF_CCITT = 0xa constant AF_CHAOS (line 19) | AF_CHAOS = 0x5 constant AF_CNT (line 20) | AF_CNT = 0x15 constant AF_COIP (line 21) | AF_COIP = 0x14 constant AF_DATAKIT (line 22) | AF_DATAKIT = 0x9 constant AF_DECnet (line 23) | AF_DECnet = 0xc constant AF_DLI (line 24) | AF_DLI = 0xd constant AF_E164 (line 25) | AF_E164 = 0x1a constant AF_ECMA (line 26) | AF_ECMA = 0x8 constant AF_HYLINK (line 27) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 28) | AF_IEEE80211 = 0x25 constant AF_IMPLINK (line 29) | AF_IMPLINK = 0x3 constant AF_INET (line 30) | AF_INET = 0x2 constant AF_INET6 (line 31) | AF_INET6 = 0x1c constant AF_INET6_SDP (line 32) | AF_INET6_SDP = 0x2a constant AF_INET_SDP (line 33) | AF_INET_SDP = 0x28 constant AF_IPX (line 34) | AF_IPX = 0x17 constant AF_ISDN (line 35) | AF_ISDN = 0x1a constant AF_ISO (line 36) | AF_ISO = 0x7 constant AF_LAT (line 37) | AF_LAT = 0xe constant AF_LINK (line 38) | AF_LINK = 0x12 constant AF_LOCAL (line 39) | AF_LOCAL = 0x1 constant AF_MAX (line 40) | AF_MAX = 0x2a constant AF_NATM (line 41) | AF_NATM = 0x1d constant AF_NETBIOS (line 42) | AF_NETBIOS = 0x6 constant AF_NETGRAPH (line 43) | AF_NETGRAPH = 0x20 constant AF_OSI (line 44) | AF_OSI = 0x7 constant AF_PUP (line 45) | AF_PUP = 0x4 constant AF_ROUTE (line 46) | AF_ROUTE = 0x11 constant AF_SCLUSTER (line 47) | AF_SCLUSTER = 0x22 constant AF_SIP (line 48) | AF_SIP = 0x18 constant AF_SLOW (line 49) | AF_SLOW = 0x21 constant AF_SNA (line 50) | AF_SNA = 0xb constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VENDOR00 (line 53) | AF_VENDOR00 = 0x27 constant AF_VENDOR01 (line 54) | AF_VENDOR01 = 0x29 constant AF_VENDOR02 (line 55) | AF_VENDOR02 = 0x2b constant AF_VENDOR03 (line 56) | AF_VENDOR03 = 0x2d constant AF_VENDOR04 (line 57) | AF_VENDOR04 = 0x2f constant AF_VENDOR05 (line 58) | AF_VENDOR05 = 0x31 constant AF_VENDOR06 (line 59) | AF_VENDOR06 = 0x33 constant AF_VENDOR07 (line 60) | AF_VENDOR07 = 0x35 constant AF_VENDOR08 (line 61) | AF_VENDOR08 = 0x37 constant AF_VENDOR09 (line 62) | AF_VENDOR09 = 0x39 constant AF_VENDOR10 (line 63) | AF_VENDOR10 = 0x3b constant AF_VENDOR11 (line 64) | AF_VENDOR11 = 0x3d constant AF_VENDOR12 (line 65) | AF_VENDOR12 = 0x3f constant AF_VENDOR13 (line 66) | AF_VENDOR13 = 0x41 constant AF_VENDOR14 (line 67) | AF_VENDOR14 = 0x43 constant AF_VENDOR15 (line 68) | AF_VENDOR15 = 0x45 constant AF_VENDOR16 (line 69) | AF_VENDOR16 = 0x47 constant AF_VENDOR17 (line 70) | AF_VENDOR17 = 0x49 constant AF_VENDOR18 (line 71) | AF_VENDOR18 = 0x4b constant AF_VENDOR19 (line 72) | AF_VENDOR19 = 0x4d constant AF_VENDOR20 (line 73) | AF_VENDOR20 = 0x4f constant AF_VENDOR21 (line 74) | AF_VENDOR21 = 0x51 constant AF_VENDOR22 (line 75) | AF_VENDOR22 = 0x53 constant AF_VENDOR23 (line 76) | AF_VENDOR23 = 0x55 constant AF_VENDOR24 (line 77) | AF_VENDOR24 = 0x57 constant AF_VENDOR25 (line 78) | AF_VENDOR25 = 0x59 constant AF_VENDOR26 (line 79) | AF_VENDOR26 = 0x5b constant AF_VENDOR27 (line 80) | AF_VENDOR27 = 0x5d constant AF_VENDOR28 (line 81) | AF_VENDOR28 = 0x5f constant AF_VENDOR29 (line 82) | AF_VENDOR29 = 0x61 constant AF_VENDOR30 (line 83) | AF_VENDOR30 = 0x63 constant AF_VENDOR31 (line 84) | AF_VENDOR31 = 0x65 constant AF_VENDOR32 (line 85) | AF_VENDOR32 = 0x67 constant AF_VENDOR33 (line 86) | AF_VENDOR33 = 0x69 constant AF_VENDOR34 (line 87) | AF_VENDOR34 = 0x6b constant AF_VENDOR35 (line 88) | AF_VENDOR35 = 0x6d constant AF_VENDOR36 (line 89) | AF_VENDOR36 = 0x6f constant AF_VENDOR37 (line 90) | AF_VENDOR37 = 0x71 constant AF_VENDOR38 (line 91) | AF_VENDOR38 = 0x73 constant AF_VENDOR39 (line 92) | AF_VENDOR39 = 0x75 constant AF_VENDOR40 (line 93) | AF_VENDOR40 = 0x77 constant AF_VENDOR41 (line 94) | AF_VENDOR41 = 0x79 constant AF_VENDOR42 (line 95) | AF_VENDOR42 = 0x7b constant AF_VENDOR43 (line 96) | AF_VENDOR43 = 0x7d constant AF_VENDOR44 (line 97) | AF_VENDOR44 = 0x7f constant AF_VENDOR45 (line 98) | AF_VENDOR45 = 0x81 constant AF_VENDOR46 (line 99) | AF_VENDOR46 = 0x83 constant AF_VENDOR47 (line 100) | AF_VENDOR47 = 0x85 constant B0 (line 101) | B0 = 0x0 constant B110 (line 102) | B110 = 0x6e constant B115200 (line 103) | B115200 = 0x1c200 constant B1200 (line 104) | B1200 = 0x4b0 constant B134 (line 105) | B134 = 0x86 constant B14400 (line 106) | B14400 = 0x3840 constant B150 (line 107) | B150 = 0x96 constant B1800 (line 108) | B1800 = 0x708 constant B19200 (line 109) | B19200 = 0x4b00 constant B200 (line 110) | B200 = 0xc8 constant B230400 (line 111) | B230400 = 0x38400 constant B2400 (line 112) | B2400 = 0x960 constant B28800 (line 113) | B28800 = 0x7080 constant B300 (line 114) | B300 = 0x12c constant B38400 (line 115) | B38400 = 0x9600 constant B460800 (line 116) | B460800 = 0x70800 constant B4800 (line 117) | B4800 = 0x12c0 constant B50 (line 118) | B50 = 0x32 constant B57600 (line 119) | B57600 = 0xe100 constant B600 (line 120) | B600 = 0x258 constant B7200 (line 121) | B7200 = 0x1c20 constant B75 (line 122) | B75 = 0x4b constant B76800 (line 123) | B76800 = 0x12c00 constant B921600 (line 124) | B921600 = 0xe1000 constant B9600 (line 125) | B9600 = 0x2580 constant BIOCFEEDBACK (line 126) | BIOCFEEDBACK = 0x8004427c constant BIOCFLUSH (line 127) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 128) | BIOCGBLEN = 0x40044266 constant BIOCGDIRECTION (line 129) | BIOCGDIRECTION = 0x40044276 constant BIOCGDLT (line 130) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 131) | BIOCGDLTLIST = 0xc0084279 constant BIOCGETBUFMODE (line 132) | BIOCGETBUFMODE = 0x4004427d constant BIOCGETIF (line 133) | BIOCGETIF = 0x4020426b constant BIOCGETZMAX (line 134) | BIOCGETZMAX = 0x4004427f constant BIOCGHDRCMPLT (line 135) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 136) | BIOCGRSIG = 0x40044272 constant BIOCGRTIMEOUT (line 137) | BIOCGRTIMEOUT = 0x4008426e constant BIOCGSEESENT (line 138) | BIOCGSEESENT = 0x40044276 constant BIOCGSTATS (line 139) | BIOCGSTATS = 0x4008426f constant BIOCGTSTAMP (line 140) | BIOCGTSTAMP = 0x40044283 constant BIOCIMMEDIATE (line 141) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 142) | BIOCLOCK = 0x2000427a constant BIOCPROMISC (line 143) | BIOCPROMISC = 0x20004269 constant BIOCROTZBUF (line 144) | BIOCROTZBUF = 0x400c4280 constant BIOCSBLEN (line 145) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRECTION (line 146) | BIOCSDIRECTION = 0x80044277 constant BIOCSDLT (line 147) | BIOCSDLT = 0x80044278 constant BIOCSETBUFMODE (line 148) | BIOCSETBUFMODE = 0x8004427e constant BIOCSETF (line 149) | BIOCSETF = 0x80084267 constant BIOCSETFNR (line 150) | BIOCSETFNR = 0x80084282 constant BIOCSETIF (line 151) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 152) | BIOCSETWF = 0x8008427b constant BIOCSETZBUF (line 153) | BIOCSETZBUF = 0x800c4281 constant BIOCSHDRCMPLT (line 154) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 155) | BIOCSRSIG = 0x80044273 constant BIOCSRTIMEOUT (line 156) | BIOCSRTIMEOUT = 0x8008426d constant BIOCSSEESENT (line 157) | BIOCSSEESENT = 0x80044277 constant BIOCSTSTAMP (line 158) | BIOCSTSTAMP = 0x80044284 constant BIOCVERSION (line 159) | BIOCVERSION = 0x40044271 constant BPF_A (line 160) | BPF_A = 0x10 constant BPF_ABS (line 161) | BPF_ABS = 0x20 constant BPF_ADD (line 162) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 163) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 164) | BPF_ALU = 0x4 constant BPF_AND (line 165) | BPF_AND = 0x50 constant BPF_B (line 166) | BPF_B = 0x10 constant BPF_BUFMODE_BUFFER (line 167) | BPF_BUFMODE_BUFFER = 0x1 constant BPF_BUFMODE_ZBUF (line 168) | BPF_BUFMODE_ZBUF = 0x2 constant BPF_DIV (line 169) | BPF_DIV = 0x30 constant BPF_H (line 170) | BPF_H = 0x8 constant BPF_IMM (line 171) | BPF_IMM = 0x0 constant BPF_IND (line 172) | BPF_IND = 0x40 constant BPF_JA (line 173) | BPF_JA = 0x0 constant BPF_JEQ (line 174) | BPF_JEQ = 0x10 constant BPF_JGE (line 175) | BPF_JGE = 0x30 constant BPF_JGT (line 176) | BPF_JGT = 0x20 constant BPF_JMP (line 177) | BPF_JMP = 0x5 constant BPF_JSET (line 178) | BPF_JSET = 0x40 constant BPF_K (line 179) | BPF_K = 0x0 constant BPF_LD (line 180) | BPF_LD = 0x0 constant BPF_LDX (line 181) | BPF_LDX = 0x1 constant BPF_LEN (line 182) | BPF_LEN = 0x80 constant BPF_LSH (line 183) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 184) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 185) | BPF_MAXBUFSIZE = 0x80000 constant BPF_MAXINSNS (line 186) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 187) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 188) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 189) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 190) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 191) | BPF_MISC = 0x7 constant BPF_MSH (line 192) | BPF_MSH = 0xa0 constant BPF_MUL (line 193) | BPF_MUL = 0x20 constant BPF_NEG (line 194) | BPF_NEG = 0x80 constant BPF_OR (line 195) | BPF_OR = 0x40 constant BPF_RELEASE (line 196) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 197) | BPF_RET = 0x6 constant BPF_RSH (line 198) | BPF_RSH = 0x70 constant BPF_ST (line 199) | BPF_ST = 0x2 constant BPF_STX (line 200) | BPF_STX = 0x3 constant BPF_SUB (line 201) | BPF_SUB = 0x10 constant BPF_TAX (line 202) | BPF_TAX = 0x0 constant BPF_TXA (line 203) | BPF_TXA = 0x80 constant BPF_T_BINTIME (line 204) | BPF_T_BINTIME = 0x2 constant BPF_T_BINTIME_FAST (line 205) | BPF_T_BINTIME_FAST = 0x102 constant BPF_T_BINTIME_MONOTONIC (line 206) | BPF_T_BINTIME_MONOTONIC = 0x202 constant BPF_T_BINTIME_MONOTONIC_FAST (line 207) | BPF_T_BINTIME_MONOTONIC_FAST = 0x302 constant BPF_T_FAST (line 208) | BPF_T_FAST = 0x100 constant BPF_T_FLAG_MASK (line 209) | BPF_T_FLAG_MASK = 0x300 constant BPF_T_FORMAT_MASK (line 210) | BPF_T_FORMAT_MASK = 0x3 constant BPF_T_MICROTIME (line 211) | BPF_T_MICROTIME = 0x0 constant BPF_T_MICROTIME_FAST (line 212) | BPF_T_MICROTIME_FAST = 0x100 constant BPF_T_MICROTIME_MONOTONIC (line 213) | BPF_T_MICROTIME_MONOTONIC = 0x200 constant BPF_T_MICROTIME_MONOTONIC_FAST (line 214) | BPF_T_MICROTIME_MONOTONIC_FAST = 0x300 constant BPF_T_MONOTONIC (line 215) | BPF_T_MONOTONIC = 0x200 constant BPF_T_MONOTONIC_FAST (line 216) | BPF_T_MONOTONIC_FAST = 0x300 constant BPF_T_NANOTIME (line 217) | BPF_T_NANOTIME = 0x1 constant BPF_T_NANOTIME_FAST (line 218) | BPF_T_NANOTIME_FAST = 0x101 constant BPF_T_NANOTIME_MONOTONIC (line 219) | BPF_T_NANOTIME_MONOTONIC = 0x201 constant BPF_T_NANOTIME_MONOTONIC_FAST (line 220) | BPF_T_NANOTIME_MONOTONIC_FAST = 0x301 constant BPF_T_NONE (line 221) | BPF_T_NONE = 0x3 constant BPF_T_NORMAL (line 222) | BPF_T_NORMAL = 0x0 constant BPF_W (line 223) | BPF_W = 0x0 constant BPF_X (line 224) | BPF_X = 0x8 constant BRKINT (line 225) | BRKINT = 0x2 constant CFLUSH (line 226) | CFLUSH = 0xf constant CLOCAL (line 227) | CLOCAL = 0x8000 constant CREAD (line 228) | CREAD = 0x800 constant CS5 (line 229) | CS5 = 0x0 constant CS6 (line 230) | CS6 = 0x100 constant CS7 (line 231) | CS7 = 0x200 constant CS8 (line 232) | CS8 = 0x300 constant CSIZE (line 233) | CSIZE = 0x300 constant CSTART (line 234) | CSTART = 0x11 constant CSTATUS (line 235) | CSTATUS = 0x14 constant CSTOP (line 236) | CSTOP = 0x13 constant CSTOPB (line 237) | CSTOPB = 0x400 constant CSUSP (line 238) | CSUSP = 0x1a constant CTL_MAXNAME (line 239) | CTL_MAXNAME = 0x18 constant CTL_NET (line 240) | CTL_NET = 0x4 constant DLT_A429 (line 241) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 242) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 243) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 244) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 245) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 246) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 247) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 248) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 249) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 250) | DLT_AURORA = 0x7e constant DLT_AX25 (line 251) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 252) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 253) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 254) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 255) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 256) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 257) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 258) | DLT_CHAOS = 0x5 constant DLT_CHDLC (line 259) | DLT_CHDLC = 0x68 constant DLT_CISCO_IOS (line 260) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 261) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 262) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DBUS (line 263) | DLT_DBUS = 0xe7 constant DLT_DECT (line 264) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 265) | DLT_DOCSIS = 0x8f constant DLT_DVB_CI (line 266) | DLT_DVB_CI = 0xeb constant DLT_ECONET (line 267) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 268) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 269) | DLT_EN3MB = 0x2 constant DLT_ENC (line 270) | DLT_ENC = 0x6d constant DLT_ERF (line 271) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 272) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 273) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 274) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 275) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 276) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 277) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 278) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 279) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 280) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 281) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 282) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 283) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 284) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 285) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 286) | DLT_GSMTAP_UM = 0xd9 constant DLT_HHDLC (line 287) | DLT_HHDLC = 0x79 constant DLT_IBM_SN (line 288) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 289) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 290) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 291) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 292) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 293) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 294) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 295) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NOFCS (line 296) | DLT_IEEE802_15_4_NOFCS = 0xe6 constant DLT_IEEE802_15_4_NONASK_PHY (line 297) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 298) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 299) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPFILTER (line 300) | DLT_IPFILTER = 0x74 constant DLT_IPMB (line 301) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 302) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 303) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 304) | DLT_IPOIB = 0xf2 constant DLT_IPV4 (line 305) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 306) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 307) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 308) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 309) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_ATM_CEMIC (line 310) | DLT_JUNIPER_ATM_CEMIC = 0xee constant DLT_JUNIPER_CHDLC (line 311) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 312) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 313) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FIBRECHANNEL (line 314) | DLT_JUNIPER_FIBRECHANNEL = 0xea constant DLT_JUNIPER_FRELAY (line 315) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 316) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 317) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 318) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 319) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 320) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 321) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 322) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 323) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 324) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 325) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 326) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_SRX_E2E (line 327) | DLT_JUNIPER_SRX_E2E = 0xe9 constant DLT_JUNIPER_ST (line 328) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 329) | DLT_JUNIPER_VP = 0xb7 constant DLT_JUNIPER_VS (line 330) | DLT_JUNIPER_VS = 0xe8 constant DLT_LAPB_WITH_DIR (line 331) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 332) | DLT_LAPD = 0xcb constant DLT_LIN (line 333) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 334) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 335) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 336) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_PPP_WITHDIRECTION (line 337) | DLT_LINUX_PPP_WITHDIRECTION = 0xa6 constant DLT_LINUX_SLL (line 338) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 339) | DLT_LOOP = 0x6c constant DLT_LTALK (line 340) | DLT_LTALK = 0x72 constant DLT_MATCHING_MAX (line 341) | DLT_MATCHING_MAX = 0xf6 constant DLT_MATCHING_MIN (line 342) | DLT_MATCHING_MIN = 0x68 constant DLT_MFR (line 343) | DLT_MFR = 0xb6 constant DLT_MOST (line 344) | DLT_MOST = 0xd3 constant DLT_MPEG_2_TS (line 345) | DLT_MPEG_2_TS = 0xf3 constant DLT_MPLS (line 346) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 347) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 348) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 349) | DLT_MTP3 = 0x8d constant DLT_MUX27010 (line 350) | DLT_MUX27010 = 0xec constant DLT_NETANALYZER (line 351) | DLT_NETANALYZER = 0xf0 constant DLT_NETANALYZER_TRANSPARENT (line 352) | DLT_NETANALYZER_TRANSPARENT = 0xf1 constant DLT_NFC_LLCP (line 353) | DLT_NFC_LLCP = 0xf5 constant DLT_NFLOG (line 354) | DLT_NFLOG = 0xef constant DLT_NG40 (line 355) | DLT_NG40 = 0xf4 constant DLT_NULL (line 356) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 357) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 358) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 359) | DLT_PFSYNC = 0x79 constant DLT_PPI (line 360) | DLT_PPI = 0xc0 constant DLT_PPP (line 361) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 362) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 363) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 364) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 365) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 366) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PPP_WITH_DIRECTION (line 367) | DLT_PPP_WITH_DIRECTION = 0xa6 constant DLT_PRISM_HEADER (line 368) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 369) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 370) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 371) | DLT_RAW = 0xc constant DLT_RIO (line 372) | DLT_RIO = 0x7c constant DLT_SCCP (line 373) | DLT_SCCP = 0x8e constant DLT_SITA (line 374) | DLT_SITA = 0xc4 constant DLT_SLIP (line 375) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 376) | DLT_SLIP_BSDOS = 0xf constant DLT_STANAG_5066_D_PDU (line 377) | DLT_STANAG_5066_D_PDU = 0xed constant DLT_SUNATM (line 378) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 379) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 380) | DLT_TZSP = 0x80 constant DLT_USB (line 381) | DLT_USB = 0xba constant DLT_USB_LINUX (line 382) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 383) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_USER0 (line 384) | DLT_USER0 = 0x93 constant DLT_USER1 (line 385) | DLT_USER1 = 0x94 constant DLT_USER10 (line 386) | DLT_USER10 = 0x9d constant DLT_USER11 (line 387) | DLT_USER11 = 0x9e constant DLT_USER12 (line 388) | DLT_USER12 = 0x9f constant DLT_USER13 (line 389) | DLT_USER13 = 0xa0 constant DLT_USER14 (line 390) | DLT_USER14 = 0xa1 constant DLT_USER15 (line 391) | DLT_USER15 = 0xa2 constant DLT_USER2 (line 392) | DLT_USER2 = 0x95 constant DLT_USER3 (line 393) | DLT_USER3 = 0x96 constant DLT_USER4 (line 394) | DLT_USER4 = 0x97 constant DLT_USER5 (line 395) | DLT_USER5 = 0x98 constant DLT_USER6 (line 396) | DLT_USER6 = 0x99 constant DLT_USER7 (line 397) | DLT_USER7 = 0x9a constant DLT_USER8 (line 398) | DLT_USER8 = 0x9b constant DLT_USER9 (line 399) | DLT_USER9 = 0x9c constant DLT_WIHART (line 400) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 401) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 402) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 403) | DT_BLK = 0x6 constant DT_CHR (line 404) | DT_CHR = 0x2 constant DT_DIR (line 405) | DT_DIR = 0x4 constant DT_FIFO (line 406) | DT_FIFO = 0x1 constant DT_LNK (line 407) | DT_LNK = 0xa constant DT_REG (line 408) | DT_REG = 0x8 constant DT_SOCK (line 409) | DT_SOCK = 0xc constant DT_UNKNOWN (line 410) | DT_UNKNOWN = 0x0 constant DT_WHT (line 411) | DT_WHT = 0xe constant ECHO (line 412) | ECHO = 0x8 constant ECHOCTL (line 413) | ECHOCTL = 0x40 constant ECHOE (line 414) | ECHOE = 0x2 constant ECHOK (line 415) | ECHOK = 0x4 constant ECHOKE (line 416) | ECHOKE = 0x1 constant ECHONL (line 417) | ECHONL = 0x10 constant ECHOPRT (line 418) | ECHOPRT = 0x20 constant EVFILT_AIO (line 419) | EVFILT_AIO = -0x3 constant EVFILT_FS (line 420) | EVFILT_FS = -0x9 constant EVFILT_LIO (line 421) | EVFILT_LIO = -0xa constant EVFILT_PROC (line 422) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 423) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 424) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 425) | EVFILT_SYSCOUNT = 0xb constant EVFILT_TIMER (line 426) | EVFILT_TIMER = -0x7 constant EVFILT_USER (line 427) | EVFILT_USER = -0xb constant EVFILT_VNODE (line 428) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 429) | EVFILT_WRITE = -0x2 constant EV_ADD (line 430) | EV_ADD = 0x1 constant EV_CLEAR (line 431) | EV_CLEAR = 0x20 constant EV_DELETE (line 432) | EV_DELETE = 0x2 constant EV_DISABLE (line 433) | EV_DISABLE = 0x8 constant EV_DISPATCH (line 434) | EV_DISPATCH = 0x80 constant EV_DROP (line 435) | EV_DROP = 0x1000 constant EV_ENABLE (line 436) | EV_ENABLE = 0x4 constant EV_EOF (line 437) | EV_EOF = 0x8000 constant EV_ERROR (line 438) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 439) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 440) | EV_ONESHOT = 0x10 constant EV_RECEIPT (line 441) | EV_RECEIPT = 0x40 constant EV_SYSFLAGS (line 442) | EV_SYSFLAGS = 0xf000 constant EXTA (line 443) | EXTA = 0x4b00 constant EXTATTR_NAMESPACE_EMPTY (line 444) | EXTATTR_NAMESPACE_EMPTY = 0x0 constant EXTATTR_NAMESPACE_SYSTEM (line 445) | EXTATTR_NAMESPACE_SYSTEM = 0x2 constant EXTATTR_NAMESPACE_USER (line 446) | EXTATTR_NAMESPACE_USER = 0x1 constant EXTB (line 447) | EXTB = 0x9600 constant EXTPROC (line 448) | EXTPROC = 0x800 constant FD_CLOEXEC (line 449) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 450) | FD_SETSIZE = 0x400 constant FLUSHO (line 451) | FLUSHO = 0x800000 constant F_CANCEL (line 452) | F_CANCEL = 0x5 constant F_DUP2FD (line 453) | F_DUP2FD = 0xa constant F_DUP2FD_CLOEXEC (line 454) | F_DUP2FD_CLOEXEC = 0x12 constant F_DUPFD (line 455) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 456) | F_DUPFD_CLOEXEC = 0x11 constant F_GETFD (line 457) | F_GETFD = 0x1 constant F_GETFL (line 458) | F_GETFL = 0x3 constant F_GETLK (line 459) | F_GETLK = 0xb constant F_GETOWN (line 460) | F_GETOWN = 0x5 constant F_OGETLK (line 461) | F_OGETLK = 0x7 constant F_OK (line 462) | F_OK = 0x0 constant F_OSETLK (line 463) | F_OSETLK = 0x8 constant F_OSETLKW (line 464) | F_OSETLKW = 0x9 constant F_RDAHEAD (line 465) | F_RDAHEAD = 0x10 constant F_RDLCK (line 466) | F_RDLCK = 0x1 constant F_READAHEAD (line 467) | F_READAHEAD = 0xf constant F_SETFD (line 468) | F_SETFD = 0x2 constant F_SETFL (line 469) | F_SETFL = 0x4 constant F_SETLK (line 470) | F_SETLK = 0xc constant F_SETLKW (line 471) | F_SETLKW = 0xd constant F_SETLK_REMOTE (line 472) | F_SETLK_REMOTE = 0xe constant F_SETOWN (line 473) | F_SETOWN = 0x6 constant F_UNLCK (line 474) | F_UNLCK = 0x2 constant F_UNLCKSYS (line 475) | F_UNLCKSYS = 0x4 constant F_WRLCK (line 476) | F_WRLCK = 0x3 constant HUPCL (line 477) | HUPCL = 0x4000 constant ICANON (line 478) | ICANON = 0x100 constant ICMP6_FILTER (line 479) | ICMP6_FILTER = 0x12 constant ICRNL (line 480) | ICRNL = 0x100 constant IEXTEN (line 481) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 482) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 483) | IFAN_DEPARTURE = 0x1 constant IFF_ALLMULTI (line 484) | IFF_ALLMULTI = 0x200 constant IFF_ALTPHYS (line 485) | IFF_ALTPHYS = 0x4000 constant IFF_BROADCAST (line 486) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 487) | IFF_CANTCHANGE = 0x218f72 constant IFF_CANTCONFIG (line 488) | IFF_CANTCONFIG = 0x10000 constant IFF_DEBUG (line 489) | IFF_DEBUG = 0x4 constant IFF_DRV_OACTIVE (line 490) | IFF_DRV_OACTIVE = 0x400 constant IFF_DRV_RUNNING (line 491) | IFF_DRV_RUNNING = 0x40 constant IFF_DYING (line 492) | IFF_DYING = 0x200000 constant IFF_LINK0 (line 493) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 494) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 495) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 496) | IFF_LOOPBACK = 0x8 constant IFF_MONITOR (line 497) | IFF_MONITOR = 0x40000 constant IFF_MULTICAST (line 498) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 499) | IFF_NOARP = 0x80 constant IFF_OACTIVE (line 500) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 501) | IFF_POINTOPOINT = 0x10 constant IFF_PPROMISC (line 502) | IFF_PPROMISC = 0x20000 constant IFF_PROMISC (line 503) | IFF_PROMISC = 0x100 constant IFF_RENAMING (line 504) | IFF_RENAMING = 0x400000 constant IFF_RUNNING (line 505) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 506) | IFF_SIMPLEX = 0x800 constant IFF_SMART (line 507) | IFF_SMART = 0x20 constant IFF_STATICARP (line 508) | IFF_STATICARP = 0x80000 constant IFF_UP (line 509) | IFF_UP = 0x1 constant IFNAMSIZ (line 510) | IFNAMSIZ = 0x10 constant IFT_1822 (line 511) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 512) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 513) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 514) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 515) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 516) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 517) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 518) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 519) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 520) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 521) | IFT_ASYNC = 0x54 constant IFT_ATM (line 522) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 523) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 524) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 525) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 526) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 527) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 528) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 529) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 530) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 531) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 532) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 533) | IFT_BSC = 0x53 constant IFT_CARP (line 534) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 535) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 536) | IFT_CEPT = 0x13 constant IFT_CES (line 537) | IFT_CES = 0x85 constant IFT_CHANNEL (line 538) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 539) | IFT_CNR = 0x55 constant IFT_COFFEE (line 540) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 541) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 542) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 543) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 544) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 545) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 546) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 547) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 548) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DS0 (line 549) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 550) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 551) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 552) | IFT_DS3 = 0x1e constant IFT_DTM (line 553) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 554) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 555) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 556) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 557) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 558) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ENC (line 559) | IFT_ENC = 0xf4 constant IFT_EON (line 560) | IFT_EON = 0x19 constant IFT_EPLRS (line 561) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 562) | IFT_ESCON = 0x49 constant IFT_ETHER (line 563) | IFT_ETHER = 0x6 constant IFT_FAITH (line 564) | IFT_FAITH = 0xf2 constant IFT_FAST (line 565) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 566) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 567) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 568) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 569) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 570) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 571) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 572) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 573) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 574) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 575) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 576) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 577) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 578) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 579) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 580) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 581) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 582) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 583) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 584) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 585) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 586) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 587) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 588) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 589) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 590) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 591) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 592) | IFT_HSSI = 0x2e constant IFT_HY (line 593) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 594) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 595) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 596) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 597) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 598) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 599) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 600) | IFT_IFGSN = 0x91 constant IFT_IMT (line 601) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 602) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 603) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 604) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 605) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 606) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 607) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 608) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 609) | IFT_IPSWITCH = 0x4e constant IFT_IPXIP (line 610) | IFT_IPXIP = 0xf9 constant IFT_ISDN (line 611) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 612) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 613) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 614) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 615) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 616) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 617) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 618) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 619) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 620) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 621) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 622) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 623) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 624) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 625) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 626) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 627) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 628) | IFT_LAPB = 0x10 constant IFT_LAPD (line 629) | IFT_LAPD = 0x4d constant IFT_LAPF (line 630) | IFT_LAPF = 0x77 constant IFT_LOCALTALK (line 631) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 632) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 633) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 634) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 635) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 636) | IFT_MODEM = 0x30 constant IFT_MPC (line 637) | IFT_MPC = 0x71 constant IFT_MPLS (line 638) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 639) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 640) | IFT_MSDSL = 0x8f constant IFT_MVL (line 641) | IFT_MVL = 0xbf constant IFT_MYRINET (line 642) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 643) | IFT_NFAS = 0xaf constant IFT_NSIP (line 644) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 645) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 646) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 647) | IFT_OTHER = 0x1 constant IFT_P10 (line 648) | IFT_P10 = 0xc constant IFT_P80 (line 649) | IFT_P80 = 0xd constant IFT_PARA (line 650) | IFT_PARA = 0x22 constant IFT_PFLOG (line 651) | IFT_PFLOG = 0xf6 constant IFT_PFSYNC (line 652) | IFT_PFSYNC = 0xf7 constant IFT_PLC (line 653) | IFT_PLC = 0xae constant IFT_POS (line 654) | IFT_POS = 0xab constant IFT_PPP (line 655) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 656) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPBWAP2MP (line 657) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 658) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 659) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 660) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 661) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 662) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 663) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 664) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 665) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 666) | IFT_PVC = 0xf1 constant IFT_QLLC (line 667) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 668) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 669) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 670) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 671) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 672) | IFT_RS232 = 0x21 constant IFT_RSRB (line 673) | IFT_RSRB = 0x4f constant IFT_SDLC (line 674) | IFT_SDLC = 0x11 constant IFT_SDSL (line 675) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 676) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 677) | IFT_SIP = 0x1f constant IFT_SLIP (line 678) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 679) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 680) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 681) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 682) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 683) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 684) | IFT_SONETVT = 0x33 constant IFT_SRP (line 685) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 686) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 687) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 688) | IFT_STARLAN = 0xb constant IFT_STF (line 689) | IFT_STF = 0xd7 constant IFT_T1 (line 690) | IFT_T1 = 0x12 constant IFT_TDLC (line 691) | IFT_TDLC = 0x74 constant IFT_TERMPAD (line 692) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 693) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 694) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 695) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 696) | IFT_ULTRA = 0x1d constant IFT_USB (line 697) | IFT_USB = 0xa0 constant IFT_V11 (line 698) | IFT_V11 = 0x40 constant IFT_V35 (line 699) | IFT_V35 = 0x2d constant IFT_V36 (line 700) | IFT_V36 = 0x41 constant IFT_V37 (line 701) | IFT_V37 = 0x78 constant IFT_VDSL (line 702) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 703) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VOICEEM (line 704) | IFT_VOICEEM = 0x64 constant IFT_VOICEENCAP (line 705) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFXO (line 706) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 707) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 708) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERFRAMERELAY (line 709) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 710) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 711) | IFT_X213 = 0x5d constant IFT_X25 (line 712) | IFT_X25 = 0x5 constant IFT_X25DDN (line 713) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 714) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 715) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 716) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 717) | IFT_XETHER = 0x1a constant IGNBRK (line 718) | IGNBRK = 0x1 constant IGNCR (line 719) | IGNCR = 0x80 constant IGNPAR (line 720) | IGNPAR = 0x4 constant IMAXBEL (line 721) | IMAXBEL = 0x2000 constant INLCR (line 722) | INLCR = 0x40 constant INPCK (line 723) | INPCK = 0x10 constant IN_CLASSA_HOST (line 724) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 725) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 726) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 727) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 728) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 729) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 730) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 731) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 732) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 733) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 734) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 735) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 736) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 737) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 738) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_MASK (line 739) | IN_RFC3021_MASK = 0xfffffffe constant IPPROTO_3PC (line 740) | IPPROTO_3PC = 0x22 constant IPPROTO_ADFS (line 741) | IPPROTO_ADFS = 0x44 constant IPPROTO_AH (line 742) | IPPROTO_AH = 0x33 constant IPPROTO_AHIP (line 743) | IPPROTO_AHIP = 0x3d constant IPPROTO_APES (line 744) | IPPROTO_APES = 0x63 constant IPPROTO_ARGUS (line 745) | IPPROTO_ARGUS = 0xd constant IPPROTO_AX25 (line 746) | IPPROTO_AX25 = 0x5d constant IPPROTO_BHA (line 747) | IPPROTO_BHA = 0x31 constant IPPROTO_BLT (line 748) | IPPROTO_BLT = 0x1e constant IPPROTO_BRSATMON (line 749) | IPPROTO_BRSATMON = 0x4c constant IPPROTO_CARP (line 750) | IPPROTO_CARP = 0x70 constant IPPROTO_CFTP (line 751) | IPPROTO_CFTP = 0x3e constant IPPROTO_CHAOS (line 752) | IPPROTO_CHAOS = 0x10 constant IPPROTO_CMTP (line 753) | IPPROTO_CMTP = 0x26 constant IPPROTO_CPHB (line 754) | IPPROTO_CPHB = 0x49 constant IPPROTO_CPNX (line 755) | IPPROTO_CPNX = 0x48 constant IPPROTO_DDP (line 756) | IPPROTO_DDP = 0x25 constant IPPROTO_DGP (line 757) | IPPROTO_DGP = 0x56 constant IPPROTO_DIVERT (line 758) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DONE (line 759) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 760) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 761) | IPPROTO_EGP = 0x8 constant IPPROTO_EMCON (line 762) | IPPROTO_EMCON = 0xe constant IPPROTO_ENCAP (line 763) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 764) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 765) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 766) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 767) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 768) | IPPROTO_GGP = 0x3 constant IPPROTO_GMTP (line 769) | IPPROTO_GMTP = 0x64 constant IPPROTO_GRE (line 770) | IPPROTO_GRE = 0x2f constant IPPROTO_HELLO (line 771) | IPPROTO_HELLO = 0x3f constant IPPROTO_HIP (line 772) | IPPROTO_HIP = 0x8b constant IPPROTO_HMP (line 773) | IPPROTO_HMP = 0x14 constant IPPROTO_HOPOPTS (line 774) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 775) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 776) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 777) | IPPROTO_IDP = 0x16 constant IPPROTO_IDPR (line 778) | IPPROTO_IDPR = 0x23 constant IPPROTO_IDRP (line 779) | IPPROTO_IDRP = 0x2d constant IPPROTO_IGMP (line 780) | IPPROTO_IGMP = 0x2 constant IPPROTO_IGP (line 781) | IPPROTO_IGP = 0x55 constant IPPROTO_IGRP (line 782) | IPPROTO_IGRP = 0x58 constant IPPROTO_IL (line 783) | IPPROTO_IL = 0x28 constant IPPROTO_INLSP (line 784) | IPPROTO_INLSP = 0x34 constant IPPROTO_INP (line 785) | IPPROTO_INP = 0x20 constant IPPROTO_IP (line 786) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 787) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPCV (line 788) | IPPROTO_IPCV = 0x47 constant IPPROTO_IPEIP (line 789) | IPPROTO_IPEIP = 0x5e constant IPPROTO_IPIP (line 790) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPPC (line 791) | IPPROTO_IPPC = 0x43 constant IPPROTO_IPV4 (line 792) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 793) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IRTP (line 794) | IPPROTO_IRTP = 0x1c constant IPPROTO_KRYPTOLAN (line 795) | IPPROTO_KRYPTOLAN = 0x41 constant IPPROTO_LARP (line 796) | IPPROTO_LARP = 0x5b constant IPPROTO_LEAF1 (line 797) | IPPROTO_LEAF1 = 0x19 constant IPPROTO_LEAF2 (line 798) | IPPROTO_LEAF2 = 0x1a constant IPPROTO_MAX (line 799) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 800) | IPPROTO_MAXID = 0x34 constant IPPROTO_MEAS (line 801) | IPPROTO_MEAS = 0x13 constant IPPROTO_MH (line 802) | IPPROTO_MH = 0x87 constant IPPROTO_MHRP (line 803) | IPPROTO_MHRP = 0x30 constant IPPROTO_MICP (line 804) | IPPROTO_MICP = 0x5f constant IPPROTO_MOBILE (line 805) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 806) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 807) | IPPROTO_MTP = 0x5c constant IPPROTO_MUX (line 808) | IPPROTO_MUX = 0x12 constant IPPROTO_ND (line 809) | IPPROTO_ND = 0x4d constant IPPROTO_NHRP (line 810) | IPPROTO_NHRP = 0x36 constant IPPROTO_NONE (line 811) | IPPROTO_NONE = 0x3b constant IPPROTO_NSP (line 812) | IPPROTO_NSP = 0x1f constant IPPROTO_NVPII (line 813) | IPPROTO_NVPII = 0xb constant IPPROTO_OLD_DIVERT (line 814) | IPPROTO_OLD_DIVERT = 0xfe constant IPPROTO_OSPFIGP (line 815) | IPPROTO_OSPFIGP = 0x59 constant IPPROTO_PFSYNC (line 816) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PGM (line 817) | IPPROTO_PGM = 0x71 constant IPPROTO_PIGP (line 818) | IPPROTO_PIGP = 0x9 constant IPPROTO_PIM (line 819) | IPPROTO_PIM = 0x67 constant IPPROTO_PRM (line 820) | IPPROTO_PRM = 0x15 constant IPPROTO_PUP (line 821) | IPPROTO_PUP = 0xc constant IPPROTO_PVP (line 822) | IPPROTO_PVP = 0x4b constant IPPROTO_RAW (line 823) | IPPROTO_RAW = 0xff constant IPPROTO_RCCMON (line 824) | IPPROTO_RCCMON = 0xa constant IPPROTO_RDP (line 825) | IPPROTO_RDP = 0x1b constant IPPROTO_RESERVED_253 (line 826) | IPPROTO_RESERVED_253 = 0xfd constant IPPROTO_RESERVED_254 (line 827) | IPPROTO_RESERVED_254 = 0xfe constant IPPROTO_ROUTING (line 828) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 829) | IPPROTO_RSVP = 0x2e constant IPPROTO_RVD (line 830) | IPPROTO_RVD = 0x42 constant IPPROTO_SATEXPAK (line 831) | IPPROTO_SATEXPAK = 0x40 constant IPPROTO_SATMON (line 832) | IPPROTO_SATMON = 0x45 constant IPPROTO_SCCSP (line 833) | IPPROTO_SCCSP = 0x60 constant IPPROTO_SCTP (line 834) | IPPROTO_SCTP = 0x84 constant IPPROTO_SDRP (line 835) | IPPROTO_SDRP = 0x2a constant IPPROTO_SEND (line 836) | IPPROTO_SEND = 0x103 constant IPPROTO_SEP (line 837) | IPPROTO_SEP = 0x21 constant IPPROTO_SHIM6 (line 838) | IPPROTO_SHIM6 = 0x8c constant IPPROTO_SKIP (line 839) | IPPROTO_SKIP = 0x39 constant IPPROTO_SPACER (line 840) | IPPROTO_SPACER = 0x7fff constant IPPROTO_SRPC (line 841) | IPPROTO_SRPC = 0x5a constant IPPROTO_ST (line 842) | IPPROTO_ST = 0x7 constant IPPROTO_SVMTP (line 843) | IPPROTO_SVMTP = 0x52 constant IPPROTO_SWIPE (line 844) | IPPROTO_SWIPE = 0x35 constant IPPROTO_TCF (line 845) | IPPROTO_TCF = 0x57 constant IPPROTO_TCP (line 846) | IPPROTO_TCP = 0x6 constant IPPROTO_TLSP (line 847) | IPPROTO_TLSP = 0x38 constant IPPROTO_TP (line 848) | IPPROTO_TP = 0x1d constant IPPROTO_TPXX (line 849) | IPPROTO_TPXX = 0x27 constant IPPROTO_TRUNK1 (line 850) | IPPROTO_TRUNK1 = 0x17 constant IPPROTO_TRUNK2 (line 851) | IPPROTO_TRUNK2 = 0x18 constant IPPROTO_TTP (line 852) | IPPROTO_TTP = 0x54 constant IPPROTO_UDP (line 853) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 854) | IPPROTO_UDPLITE = 0x88 constant IPPROTO_VINES (line 855) | IPPROTO_VINES = 0x53 constant IPPROTO_VISA (line 856) | IPPROTO_VISA = 0x46 constant IPPROTO_VMTP (line 857) | IPPROTO_VMTP = 0x51 constant IPPROTO_WBEXPAK (line 858) | IPPROTO_WBEXPAK = 0x4f constant IPPROTO_WBMON (line 859) | IPPROTO_WBMON = 0x4e constant IPPROTO_WSN (line 860) | IPPROTO_WSN = 0x4a constant IPPROTO_XNET (line 861) | IPPROTO_XNET = 0xf constant IPPROTO_XTP (line 862) | IPPROTO_XTP = 0x24 constant IPV6_AUTOFLOWLABEL (line 863) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_BINDANY (line 864) | IPV6_BINDANY = 0x40 constant IPV6_BINDV6ONLY (line 865) | IPV6_BINDV6ONLY = 0x1b constant IPV6_CHECKSUM (line 866) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 867) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 868) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 869) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 870) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 871) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 872) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 873) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 874) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 875) | IPV6_FRAGTTL = 0x78 constant IPV6_FW_ADD (line 876) | IPV6_FW_ADD = 0x1e constant IPV6_FW_DEL (line 877) | IPV6_FW_DEL = 0x1f constant IPV6_FW_FLUSH (line 878) | IPV6_FW_FLUSH = 0x20 constant IPV6_FW_GET (line 879) | IPV6_FW_GET = 0x22 constant IPV6_FW_ZERO (line 880) | IPV6_FW_ZERO = 0x21 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_IPSEC_POLICY (line 884) | IPV6_IPSEC_POLICY = 0x1c 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_MAXOPTHDR (line 888) | IPV6_MAXOPTHDR = 0x800 constant IPV6_MAXPACKET (line 889) | IPV6_MAXPACKET = 0xffff constant IPV6_MAX_GROUP_SRC_FILTER (line 890) | IPV6_MAX_GROUP_SRC_FILTER = 0x200 constant IPV6_MAX_MEMBERSHIPS (line 891) | IPV6_MAX_MEMBERSHIPS = 0xfff constant IPV6_MAX_SOCK_SRC_FILTER (line 892) | IPV6_MAX_SOCK_SRC_FILTER = 0x80 constant IPV6_MIN_MEMBERSHIPS (line 893) | IPV6_MIN_MEMBERSHIPS = 0x1f constant IPV6_MMTU (line 894) | IPV6_MMTU = 0x500 constant IPV6_MSFILTER (line 895) | IPV6_MSFILTER = 0x4a constant IPV6_MULTICAST_HOPS (line 896) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 897) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 898) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 899) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 900) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 901) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 902) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 903) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 904) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 905) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_PREFER_TEMPADDR (line 906) | IPV6_PREFER_TEMPADDR = 0x3f constant IPV6_RECVDSTOPTS (line 907) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 908) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 909) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 910) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 911) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 912) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 913) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 914) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 915) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 916) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 917) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 918) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 919) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 920) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 921) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 922) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 923) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 924) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 925) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 926) | IP_ADD_MEMBERSHIP = 0xc constant IP_ADD_SOURCE_MEMBERSHIP (line 927) | IP_ADD_SOURCE_MEMBERSHIP = 0x46 constant IP_BINDANY (line 928) | IP_BINDANY = 0x18 constant IP_BLOCK_SOURCE (line 929) | IP_BLOCK_SOURCE = 0x48 constant IP_DEFAULT_MULTICAST_LOOP (line 930) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 931) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 932) | IP_DF = 0x4000 constant IP_DONTFRAG (line 933) | IP_DONTFRAG = 0x43 constant IP_DROP_MEMBERSHIP (line 934) | IP_DROP_MEMBERSHIP = 0xd constant IP_DROP_SOURCE_MEMBERSHIP (line 935) | IP_DROP_SOURCE_MEMBERSHIP = 0x47 constant IP_DUMMYNET3 (line 936) | IP_DUMMYNET3 = 0x31 constant IP_DUMMYNET_CONFIGURE (line 937) | IP_DUMMYNET_CONFIGURE = 0x3c constant IP_DUMMYNET_DEL (line 938) | IP_DUMMYNET_DEL = 0x3d constant IP_DUMMYNET_FLUSH (line 939) | IP_DUMMYNET_FLUSH = 0x3e constant IP_DUMMYNET_GET (line 940) | IP_DUMMYNET_GET = 0x40 constant IP_FAITH (line 941) | IP_FAITH = 0x16 constant IP_FW3 (line 942) | IP_FW3 = 0x30 constant IP_FW_ADD (line 943) | IP_FW_ADD = 0x32 constant IP_FW_DEL (line 944) | IP_FW_DEL = 0x33 constant IP_FW_FLUSH (line 945) | IP_FW_FLUSH = 0x34 constant IP_FW_GET (line 946) | IP_FW_GET = 0x36 constant IP_FW_NAT_CFG (line 947) | IP_FW_NAT_CFG = 0x38 constant IP_FW_NAT_DEL (line 948) | IP_FW_NAT_DEL = 0x39 constant IP_FW_NAT_GET_CONFIG (line 949) | IP_FW_NAT_GET_CONFIG = 0x3a constant IP_FW_NAT_GET_LOG (line 950) | IP_FW_NAT_GET_LOG = 0x3b constant IP_FW_RESETLOG (line 951) | IP_FW_RESETLOG = 0x37 constant IP_FW_TABLE_ADD (line 952) | IP_FW_TABLE_ADD = 0x28 constant IP_FW_TABLE_DEL (line 953) | IP_FW_TABLE_DEL = 0x29 constant IP_FW_TABLE_FLUSH (line 954) | IP_FW_TABLE_FLUSH = 0x2a constant IP_FW_TABLE_GETSIZE (line 955) | IP_FW_TABLE_GETSIZE = 0x2b constant IP_FW_TABLE_LIST (line 956) | IP_FW_TABLE_LIST = 0x2c constant IP_FW_ZERO (line 957) | IP_FW_ZERO = 0x35 constant IP_HDRINCL (line 958) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 959) | IP_IPSEC_POLICY = 0x15 constant IP_MAXPACKET (line 960) | IP_MAXPACKET = 0xffff constant IP_MAX_GROUP_SRC_FILTER (line 961) | IP_MAX_GROUP_SRC_FILTER = 0x200 constant IP_MAX_MEMBERSHIPS (line 962) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MAX_SOCK_MUTE_FILTER (line 963) | IP_MAX_SOCK_MUTE_FILTER = 0x80 constant IP_MAX_SOCK_SRC_FILTER (line 964) | IP_MAX_SOCK_SRC_FILTER = 0x80 constant IP_MAX_SOURCE_FILTER (line 965) | IP_MAX_SOURCE_FILTER = 0x400 constant IP_MF (line 966) | IP_MF = 0x2000 constant IP_MINTTL (line 967) | IP_MINTTL = 0x42 constant IP_MIN_MEMBERSHIPS (line 968) | IP_MIN_MEMBERSHIPS = 0x1f constant IP_MSFILTER (line 969) | IP_MSFILTER = 0x4a constant IP_MSS (line 970) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 971) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 972) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 973) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_VIF (line 974) | IP_MULTICAST_VIF = 0xe constant IP_OFFMASK (line 975) | IP_OFFMASK = 0x1fff constant IP_ONESBCAST (line 976) | IP_ONESBCAST = 0x17 constant IP_OPTIONS (line 977) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 978) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 979) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 980) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 981) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 982) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 983) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 984) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 985) | IP_RECVRETOPTS = 0x6 constant IP_RECVTOS (line 986) | IP_RECVTOS = 0x44 constant IP_RECVTTL (line 987) | IP_RECVTTL = 0x41 constant IP_RETOPTS (line 988) | IP_RETOPTS = 0x8 constant IP_RF (line 989) | IP_RF = 0x8000 constant IP_RSVP_OFF (line 990) | IP_RSVP_OFF = 0x10 constant IP_RSVP_ON (line 991) | IP_RSVP_ON = 0xf constant IP_RSVP_VIF_OFF (line 992) | IP_RSVP_VIF_OFF = 0x12 constant IP_RSVP_VIF_ON (line 993) | IP_RSVP_VIF_ON = 0x11 constant IP_SENDSRCADDR (line 994) | IP_SENDSRCADDR = 0x7 constant IP_TOS (line 995) | IP_TOS = 0x3 constant IP_TTL (line 996) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 997) | IP_UNBLOCK_SOURCE = 0x49 constant ISIG (line 998) | ISIG = 0x80 constant ISTRIP (line 999) | ISTRIP = 0x20 constant IXANY (line 1000) | IXANY = 0x800 constant IXOFF (line 1001) | IXOFF = 0x400 constant IXON (line 1002) | IXON = 0x200 constant LOCK_EX (line 1003) | LOCK_EX = 0x2 constant LOCK_NB (line 1004) | LOCK_NB = 0x4 constant LOCK_SH (line 1005) | LOCK_SH = 0x1 constant LOCK_UN (line 1006) | LOCK_UN = 0x8 constant MADV_AUTOSYNC (line 1007) | MADV_AUTOSYNC = 0x7 constant MADV_CORE (line 1008) | MADV_CORE = 0x9 constant MADV_DONTNEED (line 1009) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 1010) | MADV_FREE = 0x5 constant MADV_NOCORE (line 1011) | MADV_NOCORE = 0x8 constant MADV_NORMAL (line 1012) | MADV_NORMAL = 0x0 constant MADV_NOSYNC (line 1013) | MADV_NOSYNC = 0x6 constant MADV_PROTECT (line 1014) | MADV_PROTECT = 0xa constant MADV_RANDOM (line 1015) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 1016) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 1017) | MADV_WILLNEED = 0x3 constant MAP_ALIGNED_SUPER (line 1018) | MAP_ALIGNED_SUPER = 0x1000000 constant MAP_ALIGNMENT_MASK (line 1019) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 1020) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 1021) | MAP_ANON = 0x1000 constant MAP_ANONYMOUS (line 1022) | MAP_ANONYMOUS = 0x1000 constant MAP_COPY (line 1023) | MAP_COPY = 0x2 constant MAP_EXCL (line 1024) | MAP_EXCL = 0x4000 constant MAP_FILE (line 1025) | MAP_FILE = 0x0 constant MAP_FIXED (line 1026) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 1027) | MAP_HASSEMAPHORE = 0x200 constant MAP_NOCORE (line 1028) | MAP_NOCORE = 0x20000 constant MAP_NORESERVE (line 1029) | MAP_NORESERVE = 0x40 constant MAP_NOSYNC (line 1030) | MAP_NOSYNC = 0x800 constant MAP_PREFAULT_READ (line 1031) | MAP_PREFAULT_READ = 0x40000 constant MAP_PRIVATE (line 1032) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1033) | MAP_RENAME = 0x20 constant MAP_RESERVED0080 (line 1034) | MAP_RESERVED0080 = 0x80 constant MAP_RESERVED0100 (line 1035) | MAP_RESERVED0100 = 0x100 constant MAP_SHARED (line 1036) | MAP_SHARED = 0x1 constant MAP_STACK (line 1037) | MAP_STACK = 0x400 constant MCL_CURRENT (line 1038) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1039) | MCL_FUTURE = 0x2 constant MSG_CMSG_CLOEXEC (line 1040) | MSG_CMSG_CLOEXEC = 0x40000 constant MSG_COMPAT (line 1041) | MSG_COMPAT = 0x8000 constant MSG_CTRUNC (line 1042) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1043) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1044) | MSG_DONTWAIT = 0x80 constant MSG_EOF (line 1045) | MSG_EOF = 0x100 constant MSG_EOR (line 1046) | MSG_EOR = 0x8 constant MSG_NBIO (line 1047) | MSG_NBIO = 0x4000 constant MSG_NOSIGNAL (line 1048) | MSG_NOSIGNAL = 0x20000 constant MSG_NOTIFICATION (line 1049) | MSG_NOTIFICATION = 0x2000 constant MSG_OOB (line 1050) | MSG_OOB = 0x1 constant MSG_PEEK (line 1051) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1052) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 1053) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1054) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1055) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1056) | MS_SYNC = 0x0 constant NAME_MAX (line 1057) | NAME_MAX = 0xff constant NET_RT_DUMP (line 1058) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1059) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1060) | NET_RT_IFLIST = 0x3 constant NET_RT_IFLISTL (line 1061) | NET_RT_IFLISTL = 0x5 constant NET_RT_IFMALIST (line 1062) | NET_RT_IFMALIST = 0x4 constant NET_RT_MAXID (line 1063) | NET_RT_MAXID = 0x6 constant NOFLSH (line 1064) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1065) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1066) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1067) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1068) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1069) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1070) | NOTE_EXTEND = 0x4 constant NOTE_FFAND (line 1071) | NOTE_FFAND = 0x40000000 constant NOTE_FFCOPY (line 1072) | NOTE_FFCOPY = 0xc0000000 constant NOTE_FFCTRLMASK (line 1073) | NOTE_FFCTRLMASK = 0xc0000000 constant NOTE_FFLAGSMASK (line 1074) | NOTE_FFLAGSMASK = 0xffffff constant NOTE_FFNOP (line 1075) | NOTE_FFNOP = 0x0 constant NOTE_FFOR (line 1076) | NOTE_FFOR = 0x80000000 constant NOTE_FORK (line 1077) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1078) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1079) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1080) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1081) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1082) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1083) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1084) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1085) | NOTE_TRACKERR = 0x2 constant NOTE_TRIGGER (line 1086) | NOTE_TRIGGER = 0x1000000 constant NOTE_WRITE (line 1087) | NOTE_WRITE = 0x2 constant OCRNL (line 1088) | OCRNL = 0x10 constant ONLCR (line 1089) | ONLCR = 0x2 constant ONLRET (line 1090) | ONLRET = 0x40 constant ONOCR (line 1091) | ONOCR = 0x20 constant ONOEOT (line 1092) | ONOEOT = 0x8 constant OPOST (line 1093) | OPOST = 0x1 constant O_ACCMODE (line 1094) | O_ACCMODE = 0x3 constant O_APPEND (line 1095) | O_APPEND = 0x8 constant O_ASYNC (line 1096) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1097) | O_CLOEXEC = 0x100000 constant O_CREAT (line 1098) | O_CREAT = 0x200 constant O_DIRECT (line 1099) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 1100) | O_DIRECTORY = 0x20000 constant O_EXCL (line 1101) | O_EXCL = 0x800 constant O_EXEC (line 1102) | O_EXEC = 0x40000 constant O_EXLOCK (line 1103) | O_EXLOCK = 0x20 constant O_FSYNC (line 1104) | O_FSYNC = 0x80 constant O_NDELAY (line 1105) | O_NDELAY = 0x4 constant O_NOCTTY (line 1106) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1107) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1108) | O_NONBLOCK = 0x4 constant O_RDONLY (line 1109) | O_RDONLY = 0x0 constant O_RDWR (line 1110) | O_RDWR = 0x2 constant O_SHLOCK (line 1111) | O_SHLOCK = 0x10 constant O_SYNC (line 1112) | O_SYNC = 0x80 constant O_TRUNC (line 1113) | O_TRUNC = 0x400 constant O_TTY_INIT (line 1114) | O_TTY_INIT = 0x80000 constant O_WRONLY (line 1115) | O_WRONLY = 0x1 constant PARENB (line 1116) | PARENB = 0x1000 constant PARMRK (line 1117) | PARMRK = 0x8 constant PARODD (line 1118) | PARODD = 0x2000 constant PENDIN (line 1119) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1120) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1121) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1122) | PRIO_USER = 0x2 constant PROT_EXEC (line 1123) | PROT_EXEC = 0x4 constant PROT_NONE (line 1124) | PROT_NONE = 0x0 constant PROT_READ (line 1125) | PROT_READ = 0x1 constant PROT_WRITE (line 1126) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1127) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1128) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1129) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1130) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1131) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1132) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1133) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1134) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1135) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1136) | RTAX_BRD = 0x7 constant RTAX_DST (line 1137) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1138) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1139) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1140) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1141) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1142) | RTAX_MAX = 0x8 constant RTAX_NETMASK (line 1143) | RTAX_NETMASK = 0x2 constant RTA_AUTHOR (line 1144) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1145) | RTA_BRD = 0x80 constant RTA_DST (line 1146) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1147) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1148) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1149) | RTA_IFA = 0x20 constant RTA_IFP (line 1150) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1151) | RTA_NETMASK = 0x4 constant RTF_BLACKHOLE (line 1152) | RTF_BLACKHOLE = 0x1000 constant RTF_BROADCAST (line 1153) | RTF_BROADCAST = 0x400000 constant RTF_DONE (line 1154) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1155) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1156) | RTF_FMASK = 0x1004d808 constant RTF_GATEWAY (line 1157) | RTF_GATEWAY = 0x2 constant RTF_GWFLAG_COMPAT (line 1158) | RTF_GWFLAG_COMPAT = 0x80000000 constant RTF_HOST (line 1159) | RTF_HOST = 0x4 constant RTF_LLDATA (line 1160) | RTF_LLDATA = 0x400 constant RTF_LLINFO (line 1161) | RTF_LLINFO = 0x400 constant RTF_LOCAL (line 1162) | RTF_LOCAL = 0x200000 constant RTF_MODIFIED (line 1163) | RTF_MODIFIED = 0x20 constant RTF_MULTICAST (line 1164) | RTF_MULTICAST = 0x800000 constant RTF_PINNED (line 1165) | RTF_PINNED = 0x100000 constant RTF_PRCLONING (line 1166) | RTF_PRCLONING = 0x10000 constant RTF_PROTO1 (line 1167) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1168) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1169) | RTF_PROTO3 = 0x40000 constant RTF_REJECT (line 1170) | RTF_REJECT = 0x8 constant RTF_RNH_LOCKED (line 1171) | RTF_RNH_LOCKED = 0x40000000 constant RTF_STATIC (line 1172) | RTF_STATIC = 0x800 constant RTF_STICKY (line 1173) | RTF_STICKY = 0x10000000 constant RTF_UP (line 1174) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1175) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1176) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1177) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1178) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1179) | RTM_DELETE = 0x2 constant RTM_DELMADDR (line 1180) | RTM_DELMADDR = 0x10 constant RTM_GET (line 1181) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1182) | RTM_IEEE80211 = 0x12 constant RTM_IFANNOUNCE (line 1183) | RTM_IFANNOUNCE = 0x11 constant RTM_IFINFO (line 1184) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1185) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1186) | RTM_LOSING = 0x5 constant RTM_MISS (line 1187) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1188) | RTM_NEWADDR = 0xc constant RTM_NEWMADDR (line 1189) | RTM_NEWMADDR = 0xf constant RTM_OLDADD (line 1190) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1191) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 1192) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1193) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1194) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1195) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1196) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1197) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1198) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1199) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1200) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1201) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1202) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1203) | RTV_SSTHRESH = 0x20 constant RTV_WEIGHT (line 1204) | RTV_WEIGHT = 0x100 constant RT_ALL_FIBS (line 1205) | RT_ALL_FIBS = -0x1 constant RT_CACHING_CONTEXT (line 1206) | RT_CACHING_CONTEXT = 0x1 constant RT_DEFAULT_FIB (line 1207) | RT_DEFAULT_FIB = 0x0 constant RT_NORTREF (line 1208) | RT_NORTREF = 0x2 constant RUSAGE_CHILDREN (line 1209) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1210) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1211) | RUSAGE_THREAD = 0x1 constant SCM_BINTIME (line 1212) | SCM_BINTIME = 0x4 constant SCM_CREDS (line 1213) | SCM_CREDS = 0x3 constant SCM_RIGHTS (line 1214) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1215) | SCM_TIMESTAMP = 0x2 constant SHUT_RD (line 1216) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1217) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1218) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1219) | SIOCADDMULTI = 0x80206931 constant SIOCADDRT (line 1220) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1221) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1222) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1223) | SIOCALIFADDR = 0x8118691b constant SIOCATMARK (line 1224) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1225) | SIOCDELMULTI = 0x80206932 constant SIOCDELRT (line 1226) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1227) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1228) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1229) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1230) | SIOCDLIFADDR = 0x8118691d constant SIOCGDRVSPEC (line 1231) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETSGCNT (line 1232) | SIOCGETSGCNT = 0xc0147210 constant SIOCGETVIFCNT (line 1233) | SIOCGETVIFCNT = 0xc014720f constant SIOCGHIWAT (line 1234) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1235) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFBRDADDR (line 1236) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCAP (line 1237) | SIOCGIFCAP = 0xc020691f constant SIOCGIFCONF (line 1238) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDESCR (line 1239) | SIOCGIFDESCR = 0xc020692a constant SIOCGIFDSTADDR (line 1240) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFIB (line 1241) | SIOCGIFFIB = 0xc020695c constant SIOCGIFFLAGS (line 1242) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGENERIC (line 1243) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1244) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1245) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFINDEX (line 1246) | SIOCGIFINDEX = 0xc0206920 constant SIOCGIFMAC (line 1247) | SIOCGIFMAC = 0xc0206926 constant SIOCGIFMEDIA (line 1248) | SIOCGIFMEDIA = 0xc0286938 constant SIOCGIFMETRIC (line 1249) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1250) | SIOCGIFMTU = 0xc0206933 constant SIOCGIFNETMASK (line 1251) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1252) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPHYS (line 1253) | SIOCGIFPHYS = 0xc0206935 constant SIOCGIFPSRCADDR (line 1254) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFSTATUS (line 1255) | SIOCGIFSTATUS = 0xc331693b constant SIOCGLIFADDR (line 1256) | SIOCGLIFADDR = 0xc118691c constant SIOCGLIFPHYADDR (line 1257) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLOWAT (line 1258) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1259) | SIOCGPGRP = 0x40047309 constant SIOCGPRIVATE_0 (line 1260) | SIOCGPRIVATE_0 = 0xc0206950 constant SIOCGPRIVATE_1 (line 1261) | SIOCGPRIVATE_1 = 0xc0206951 constant SIOCIFCREATE (line 1262) | SIOCIFCREATE = 0xc020697a constant SIOCIFCREATE2 (line 1263) | SIOCIFCREATE2 = 0xc020697c constant SIOCIFDESTROY (line 1264) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1265) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSDRVSPEC (line 1266) | SIOCSDRVSPEC = 0x801c697b constant SIOCSHIWAT (line 1267) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1268) | SIOCSIFADDR = 0x8020690c constant SIOCSIFBRDADDR (line 1269) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFCAP (line 1270) | SIOCSIFCAP = 0x8020691e constant SIOCSIFDESCR (line 1271) | SIOCSIFDESCR = 0x80206929 constant SIOCSIFDSTADDR (line 1272) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFIB (line 1273) | SIOCSIFFIB = 0x8020695d constant SIOCSIFFLAGS (line 1274) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGENERIC (line 1275) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1276) | SIOCSIFLLADDR = 0x8020693c constant SIOCSIFMAC (line 1277) | SIOCSIFMAC = 0x80206927 constant SIOCSIFMEDIA (line 1278) | SIOCSIFMEDIA = 0xc0206937 constant SIOCSIFMETRIC (line 1279) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1280) | SIOCSIFMTU = 0x80206934 constant SIOCSIFNAME (line 1281) | SIOCSIFNAME = 0x80206928 constant SIOCSIFNETMASK (line 1282) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1283) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPHYS (line 1284) | SIOCSIFPHYS = 0x80206936 constant SIOCSIFRVNET (line 1285) | SIOCSIFRVNET = 0xc020695b constant SIOCSIFVNET (line 1286) | SIOCSIFVNET = 0xc020695a constant SIOCSLIFPHYADDR (line 1287) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLOWAT (line 1288) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1289) | SIOCSPGRP = 0x80047308 constant SOCK_CLOEXEC (line 1290) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1291) | SOCK_DGRAM = 0x2 constant SOCK_MAXADDRLEN (line 1292) | SOCK_MAXADDRLEN = 0xff constant SOCK_NONBLOCK (line 1293) | SOCK_NONBLOCK = 0x20000000 constant SOCK_RAW (line 1294) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1295) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1296) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1297) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1298) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1299) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1300) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1301) | SO_ACCEPTFILTER = 0x1000 constant SO_BINTIME (line 1302) | SO_BINTIME = 0x2000 constant SO_BROADCAST (line 1303) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1304) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1305) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1306) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1307) | SO_KEEPALIVE = 0x8 constant SO_LABEL (line 1308) | SO_LABEL = 0x1009 constant SO_LINGER (line 1309) | SO_LINGER = 0x80 constant SO_LISTENINCQLEN (line 1310) | SO_LISTENINCQLEN = 0x1013 constant SO_LISTENQLEN (line 1311) | SO_LISTENQLEN = 0x1012 constant SO_LISTENQLIMIT (line 1312) | SO_LISTENQLIMIT = 0x1011 constant SO_NOSIGPIPE (line 1313) | SO_NOSIGPIPE = 0x800 constant SO_NO_DDP (line 1314) | SO_NO_DDP = 0x8000 constant SO_NO_OFFLOAD (line 1315) | SO_NO_OFFLOAD = 0x4000 constant SO_OOBINLINE (line 1316) | SO_OOBINLINE = 0x100 constant SO_PEERLABEL (line 1317) | SO_PEERLABEL = 0x1010 constant SO_PROTOCOL (line 1318) | SO_PROTOCOL = 0x1016 constant SO_PROTOTYPE (line 1319) | SO_PROTOTYPE = 0x1016 constant SO_RCVBUF (line 1320) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1321) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1322) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1323) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1324) | SO_REUSEPORT = 0x200 constant SO_SETFIB (line 1325) | SO_SETFIB = 0x1014 constant SO_SNDBUF (line 1326) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1327) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1328) | SO_SNDTIMEO = 0x1005 constant SO_TIMESTAMP (line 1329) | SO_TIMESTAMP = 0x400 constant SO_TYPE (line 1330) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1331) | SO_USELOOPBACK = 0x40 constant SO_USER_COOKIE (line 1332) | SO_USER_COOKIE = 0x1015 constant SO_VENDOR (line 1333) | SO_VENDOR = 0x80000000 constant TCIFLUSH (line 1334) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1335) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1336) | TCOFLUSH = 0x2 constant TCP_CA_NAME_MAX (line 1337) | TCP_CA_NAME_MAX = 0x10 constant TCP_CONGESTION (line 1338) | TCP_CONGESTION = 0x40 constant TCP_INFO (line 1339) | TCP_INFO = 0x20 constant TCP_KEEPCNT (line 1340) | TCP_KEEPCNT = 0x400 constant TCP_KEEPIDLE (line 1341) | TCP_KEEPIDLE = 0x100 constant TCP_KEEPINIT (line 1342) | TCP_KEEPINIT = 0x80 constant TCP_KEEPINTVL (line 1343) | TCP_KEEPINTVL = 0x200 constant TCP_MAXBURST (line 1344) | TCP_MAXBURST = 0x4 constant TCP_MAXHLEN (line 1345) | TCP_MAXHLEN = 0x3c constant TCP_MAXOLEN (line 1346) | TCP_MAXOLEN = 0x28 constant TCP_MAXSEG (line 1347) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1348) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1349) | TCP_MAX_SACK = 0x4 constant TCP_MAX_WINSHIFT (line 1350) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1351) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1352) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1353) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1354) | TCP_NODELAY = 0x1 constant TCP_NOOPT (line 1355) | TCP_NOOPT = 0x8 constant TCP_NOPUSH (line 1356) | TCP_NOPUSH = 0x4 constant TCP_VENDOR (line 1357) | TCP_VENDOR = 0x80000000 constant TCSAFLUSH (line 1358) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1359) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1360) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1361) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1362) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1363) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1364) | TIOCEXT = 0x80047460 constant TIOCFLUSH (line 1365) | TIOCFLUSH = 0x80047410 constant TIOCGDRAINWAIT (line 1366) | TIOCGDRAINWAIT = 0x40047456 constant TIOCGETA (line 1367) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1368) | TIOCGETD = 0x4004741a constant TIOCGPGRP (line 1369) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1370) | TIOCGPTN = 0x4004740f constant TIOCGSID (line 1371) | TIOCGSID = 0x40047463 constant TIOCGWINSZ (line 1372) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1373) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1374) | TIOCMBIS = 0x8004746c constant TIOCMGDTRWAIT (line 1375) | TIOCMGDTRWAIT = 0x4004745a constant TIOCMGET (line 1376) | TIOCMGET = 0x4004746a 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_DCD (line 1382) | TIOCM_DCD = 0x40 constant TIOCM_DSR (line 1383) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1384) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1385) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1386) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1387) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1388) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1389) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1390) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1391) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1392) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1393) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1394) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1395) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1396) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1397) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1398) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1399) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1400) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1401) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1402) | TIOCPKT_STOP = 0x4 constant TIOCPTMASTER (line 1403) | TIOCPTMASTER = 0x2000741c constant TIOCSBRK (line 1404) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1405) | TIOCSCTTY = 0x20007461 constant TIOCSDRAINWAIT (line 1406) | TIOCSDRAINWAIT = 0x80047457 constant TIOCSDTR (line 1407) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1408) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1409) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1410) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1411) | TIOCSETD = 0x8004741b constant TIOCSIG (line 1412) | TIOCSIG = 0x2004745f constant TIOCSPGRP (line 1413) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1414) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1415) | TIOCSTAT = 0x20007465 constant TIOCSTI (line 1416) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1417) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1418) | TIOCSWINSZ = 0x80087467 constant TIOCTIMESTAMP (line 1419) | TIOCTIMESTAMP = 0x40087459 constant TIOCUCNTL (line 1420) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1421) | TOSTOP = 0x400000 constant VDISCARD (line 1422) | VDISCARD = 0xf constant VDSUSP (line 1423) | VDSUSP = 0xb constant VEOF (line 1424) | VEOF = 0x0 constant VEOL (line 1425) | VEOL = 0x1 constant VEOL2 (line 1426) | VEOL2 = 0x2 constant VERASE (line 1427) | VERASE = 0x3 constant VERASE2 (line 1428) | VERASE2 = 0x7 constant VINTR (line 1429) | VINTR = 0x8 constant VKILL (line 1430) | VKILL = 0x5 constant VLNEXT (line 1431) | VLNEXT = 0xe constant VMIN (line 1432) | VMIN = 0x10 constant VQUIT (line 1433) | VQUIT = 0x9 constant VREPRINT (line 1434) | VREPRINT = 0x6 constant VSTART (line 1435) | VSTART = 0xc constant VSTATUS (line 1436) | VSTATUS = 0x12 constant VSTOP (line 1437) | VSTOP = 0xd constant VSUSP (line 1438) | VSUSP = 0xa constant VTIME (line 1439) | VTIME = 0x11 constant VWERASE (line 1440) | VWERASE = 0x4 constant WCONTINUED (line 1441) | WCONTINUED = 0x4 constant WCOREFLAG (line 1442) | WCOREFLAG = 0x80 constant WEXITED (line 1443) | WEXITED = 0x10 constant WLINUXCLONE (line 1444) | WLINUXCLONE = 0x80000000 constant WNOHANG (line 1445) | WNOHANG = 0x1 constant WNOWAIT (line 1446) | WNOWAIT = 0x8 constant WSTOPPED (line 1447) | WSTOPPED = 0x2 constant WTRAPPED (line 1448) | WTRAPPED = 0x20 constant WUNTRACED (line 1449) | WUNTRACED = 0x2 constant E2BIG (line 1454) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1455) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1456) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1457) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1458) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1459) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1460) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1461) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1462) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1463) | EBADMSG = syscall.Errno(0x59) constant EBADRPC (line 1464) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1465) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1466) | ECANCELED = syscall.Errno(0x55) constant ECAPMODE (line 1467) | ECAPMODE = syscall.Errno(0x5e) constant ECHILD (line 1468) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1469) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1470) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1471) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1472) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1473) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1474) | EDOM = syscall.Errno(0x21) constant EDOOFUS (line 1475) | EDOOFUS = syscall.Errno(0x58) constant EDQUOT (line 1476) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1477) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1478) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1479) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1480) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1481) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1482) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1483) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1484) | EILSEQ = syscall.Errno(0x56) constant EINPROGRESS (line 1485) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1486) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1487) | EINVAL = syscall.Errno(0x16) constant EIO (line 1488) | EIO = syscall.Errno(0x5) constant EISCONN (line 1489) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1490) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1491) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1492) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1493) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1494) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1495) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1496) | EMULTIHOP = syscall.Errno(0x5a) constant ENAMETOOLONG (line 1497) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1498) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1499) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1500) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1501) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1502) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1503) | ENOATTR = syscall.Errno(0x57) constant ENOBUFS (line 1504) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1505) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1506) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1507) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1508) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1509) | ENOLINK = syscall.Errno(0x5b) constant ENOMEM (line 1510) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1511) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1512) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1513) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1514) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1515) | ENOTBLK = syscall.Errno(0xf) constant ENOTCAPABLE (line 1516) | ENOTCAPABLE = syscall.Errno(0x5d) constant ENOTCONN (line 1517) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1518) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1519) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTRECOVERABLE (line 1520) | ENOTRECOVERABLE = syscall.Errno(0x5f) constant ENOTSOCK (line 1521) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1522) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1523) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1524) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1525) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1526) | EOVERFLOW = syscall.Errno(0x54) constant EOWNERDEAD (line 1527) | EOWNERDEAD = syscall.Errno(0x60) constant EPERM (line 1528) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1529) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1530) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1531) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1532) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1533) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1534) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1535) | EPROTO = syscall.Errno(0x5c) constant EPROTONOSUPPORT (line 1536) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1537) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1538) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1539) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1540) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1541) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1542) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1543) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1544) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1545) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1546) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1547) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1548) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1549) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1550) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1551) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1552) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1557) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1558) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1559) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1560) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1561) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1562) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1563) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1564) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1565) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1566) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1567) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1568) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1569) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1570) | SIGKILL = syscall.Signal(0x9) constant SIGLIBRT (line 1571) | SIGLIBRT = syscall.Signal(0x21) constant SIGLWP (line 1572) | SIGLWP = syscall.Signal(0x20) constant SIGPIPE (line 1573) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1574) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1575) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1576) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1577) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1578) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1579) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1580) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1581) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1582) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1583) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1584) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1585) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1586) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1587) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1588) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1589) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1590) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1591) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_386.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x28 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_NFC (line 41) | AF_NFC = 0x27 constant AF_PACKET (line 42) | AF_PACKET = 0x11 constant AF_PHONET (line 43) | AF_PHONET = 0x23 constant AF_PPPOX (line 44) | AF_PPPOX = 0x18 constant AF_RDS (line 45) | AF_RDS = 0x15 constant AF_ROSE (line 46) | AF_ROSE = 0xb constant AF_ROUTE (line 47) | AF_ROUTE = 0x10 constant AF_RXRPC (line 48) | AF_RXRPC = 0x21 constant AF_SECURITY (line 49) | AF_SECURITY = 0xe constant AF_SNA (line 50) | AF_SNA = 0x16 constant AF_TIPC (line 51) | AF_TIPC = 0x1e constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 54) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 55) | AF_WANPIPE = 0x19 constant AF_X25 (line 56) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 57) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 58) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 59) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 60) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 61) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 62) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 63) | ALG_SET_OP = 0x3 constant ARPHRD_ADAPT (line 64) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 65) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 66) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 67) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 68) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 69) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 70) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 71) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 72) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 73) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 74) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 75) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 76) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 77) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 78) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 79) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 80) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 81) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 82) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 83) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 84) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 85) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 86) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 87) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 88) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 89) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 90) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 91) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 92) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 93) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 94) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 95) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 96) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 97) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802_TR (line 98) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 99) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IPDDP (line 100) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 101) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 102) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 103) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 104) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 105) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 106) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETROM (line 107) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 108) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 109) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 110) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 111) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 112) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 113) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 114) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 115) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 116) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 117) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 118) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 119) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 120) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 121) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 122) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 123) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 124) | ARPHRD_X25 = 0x10f constant B0 (line 125) | B0 = 0x0 constant B1000000 (line 126) | B1000000 = 0x1008 constant B110 (line 127) | B110 = 0x3 constant B115200 (line 128) | B115200 = 0x1002 constant B1152000 (line 129) | B1152000 = 0x1009 constant B1200 (line 130) | B1200 = 0x9 constant B134 (line 131) | B134 = 0x4 constant B150 (line 132) | B150 = 0x5 constant B1500000 (line 133) | B1500000 = 0x100a constant B1800 (line 134) | B1800 = 0xa constant B19200 (line 135) | B19200 = 0xe constant B200 (line 136) | B200 = 0x6 constant B2000000 (line 137) | B2000000 = 0x100b constant B230400 (line 138) | B230400 = 0x1003 constant B2400 (line 139) | B2400 = 0xb constant B2500000 (line 140) | B2500000 = 0x100c constant B300 (line 141) | B300 = 0x7 constant B3000000 (line 142) | B3000000 = 0x100d constant B3500000 (line 143) | B3500000 = 0x100e constant B38400 (line 144) | B38400 = 0xf constant B4000000 (line 145) | B4000000 = 0x100f constant B460800 (line 146) | B460800 = 0x1004 constant B4800 (line 147) | B4800 = 0xc constant B50 (line 148) | B50 = 0x1 constant B500000 (line 149) | B500000 = 0x1005 constant B57600 (line 150) | B57600 = 0x1001 constant B576000 (line 151) | B576000 = 0x1006 constant B600 (line 152) | B600 = 0x8 constant B75 (line 153) | B75 = 0x2 constant B921600 (line 154) | B921600 = 0x1007 constant B9600 (line 155) | B9600 = 0xd constant BLKBSZGET (line 156) | BLKBSZGET = 0x80041270 constant BLKBSZSET (line 157) | BLKBSZSET = 0x40041271 constant BLKFLSBUF (line 158) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 159) | BLKFRAGET = 0x1265 constant BLKFRASET (line 160) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 161) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 162) | BLKGETSIZE64 = 0x80041272 constant BLKRAGET (line 163) | BLKRAGET = 0x1263 constant BLKRASET (line 164) | BLKRASET = 0x1262 constant BLKROGET (line 165) | BLKROGET = 0x125e constant BLKROSET (line 166) | BLKROSET = 0x125d constant BLKRRPART (line 167) | BLKRRPART = 0x125f constant BLKSECTGET (line 168) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 169) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 170) | BLKSSZGET = 0x1268 constant BOTHER (line 171) | BOTHER = 0x1000 constant BPF_A (line 172) | BPF_A = 0x10 constant BPF_ABS (line 173) | BPF_ABS = 0x20 constant BPF_ADD (line 174) | BPF_ADD = 0x0 constant BPF_ALU (line 175) | BPF_ALU = 0x4 constant BPF_AND (line 176) | BPF_AND = 0x50 constant BPF_B (line 177) | BPF_B = 0x10 constant BPF_DIV (line 178) | BPF_DIV = 0x30 constant BPF_H (line 179) | BPF_H = 0x8 constant BPF_IMM (line 180) | BPF_IMM = 0x0 constant BPF_IND (line 181) | BPF_IND = 0x40 constant BPF_JA (line 182) | BPF_JA = 0x0 constant BPF_JEQ (line 183) | BPF_JEQ = 0x10 constant BPF_JGE (line 184) | BPF_JGE = 0x30 constant BPF_JGT (line 185) | BPF_JGT = 0x20 constant BPF_JMP (line 186) | BPF_JMP = 0x5 constant BPF_JSET (line 187) | BPF_JSET = 0x40 constant BPF_K (line 188) | BPF_K = 0x0 constant BPF_LD (line 189) | BPF_LD = 0x0 constant BPF_LDX (line 190) | BPF_LDX = 0x1 constant BPF_LEN (line 191) | BPF_LEN = 0x80 constant BPF_LSH (line 192) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 193) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 194) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 195) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 196) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 197) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 198) | BPF_MISC = 0x7 constant BPF_MSH (line 199) | BPF_MSH = 0xa0 constant BPF_MUL (line 200) | BPF_MUL = 0x20 constant BPF_NEG (line 201) | BPF_NEG = 0x80 constant BPF_OR (line 202) | BPF_OR = 0x40 constant BPF_RET (line 203) | BPF_RET = 0x6 constant BPF_RSH (line 204) | BPF_RSH = 0x70 constant BPF_ST (line 205) | BPF_ST = 0x2 constant BPF_STX (line 206) | BPF_STX = 0x3 constant BPF_SUB (line 207) | BPF_SUB = 0x10 constant BPF_TAX (line 208) | BPF_TAX = 0x0 constant BPF_TXA (line 209) | BPF_TXA = 0x80 constant BPF_W (line 210) | BPF_W = 0x0 constant BPF_X (line 211) | BPF_X = 0x8 constant BRKINT (line 212) | BRKINT = 0x2 constant BS0 (line 213) | BS0 = 0x0 constant BS1 (line 214) | BS1 = 0x2000 constant BSDLY (line 215) | BSDLY = 0x2000 constant CAN_BCM (line 216) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 217) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 218) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 219) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 220) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 221) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 222) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 223) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 224) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 225) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 226) | CAN_MCNET = 0x5 constant CAN_MTU (line 227) | CAN_MTU = 0x10 constant CAN_NPROTO (line 228) | CAN_NPROTO = 0x7 constant CAN_RAW (line 229) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 230) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 231) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 232) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 233) | CAN_TP16 = 0x3 constant CAN_TP20 (line 234) | CAN_TP20 = 0x4 constant CBAUD (line 235) | CBAUD = 0x100f constant CBAUDEX (line 236) | CBAUDEX = 0x1000 constant CFLUSH (line 237) | CFLUSH = 0xf constant CIBAUD (line 238) | CIBAUD = 0x100f0000 constant CLOCAL (line 239) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 240) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 241) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 242) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 243) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 244) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 245) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 246) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 247) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 248) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 249) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 250) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 251) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 252) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 253) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 254) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 255) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 256) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 257) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 258) | CLONE_FILES = 0x400 constant CLONE_FS (line 259) | CLONE_FS = 0x200 constant CLONE_IO (line 260) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 261) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 262) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 263) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 264) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 265) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 266) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 267) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 268) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 269) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 270) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 271) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 272) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 273) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 274) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 275) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 276) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 277) | CLONE_VM = 0x100 constant CMSPAR (line 278) | CMSPAR = 0x40000000 constant CR0 (line 279) | CR0 = 0x0 constant CR1 (line 280) | CR1 = 0x200 constant CR2 (line 281) | CR2 = 0x400 constant CR3 (line 282) | CR3 = 0x600 constant CRDLY (line 283) | CRDLY = 0x600 constant CREAD (line 284) | CREAD = 0x80 constant CRTSCTS (line 285) | CRTSCTS = 0x80000000 constant CS5 (line 286) | CS5 = 0x0 constant CS6 (line 287) | CS6 = 0x10 constant CS7 (line 288) | CS7 = 0x20 constant CS8 (line 289) | CS8 = 0x30 constant CSIGNAL (line 290) | CSIGNAL = 0xff constant CSIZE (line 291) | CSIZE = 0x30 constant CSTART (line 292) | CSTART = 0x11 constant CSTATUS (line 293) | CSTATUS = 0x0 constant CSTOP (line 294) | CSTOP = 0x13 constant CSTOPB (line 295) | CSTOPB = 0x40 constant CSUSP (line 296) | CSUSP = 0x1a constant DT_BLK (line 297) | DT_BLK = 0x6 constant DT_CHR (line 298) | DT_CHR = 0x2 constant DT_DIR (line 299) | DT_DIR = 0x4 constant DT_FIFO (line 300) | DT_FIFO = 0x1 constant DT_LNK (line 301) | DT_LNK = 0xa constant DT_REG (line 302) | DT_REG = 0x8 constant DT_SOCK (line 303) | DT_SOCK = 0xc constant DT_UNKNOWN (line 304) | DT_UNKNOWN = 0x0 constant DT_WHT (line 305) | DT_WHT = 0xe constant ECHO (line 306) | ECHO = 0x8 constant ECHOCTL (line 307) | ECHOCTL = 0x200 constant ECHOE (line 308) | ECHOE = 0x10 constant ECHOK (line 309) | ECHOK = 0x20 constant ECHOKE (line 310) | ECHOKE = 0x800 constant ECHONL (line 311) | ECHONL = 0x40 constant ECHOPRT (line 312) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 313) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 314) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 315) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 316) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 317) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 318) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 319) | EPOLLERR = 0x8 constant EPOLLET (line 320) | EPOLLET = 0x80000000 constant EPOLLHUP (line 321) | EPOLLHUP = 0x10 constant EPOLLIN (line 322) | EPOLLIN = 0x1 constant EPOLLMSG (line 323) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 324) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 325) | EPOLLOUT = 0x4 constant EPOLLPRI (line 326) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 327) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 328) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 329) | EPOLLRDNORM = 0x40 constant EPOLLWRBAND (line 330) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 331) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 332) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 333) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 334) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 335) | EPOLL_CTL_MOD = 0x3 constant EPOLL_NONBLOCK (line 336) | EPOLL_NONBLOCK = 0x800 constant ETH_P_1588 (line 337) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 338) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 339) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 340) | ETH_P_8021Q = 0x8100 constant ETH_P_802_2 (line 341) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 342) | ETH_P_802_3 = 0x1 constant ETH_P_AARP (line 343) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 344) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 345) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 346) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 347) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 348) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 349) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 350) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 351) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 352) | ETH_P_AX25 = 0x2 constant ETH_P_BPQ (line 353) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 354) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 355) | ETH_P_CAN = 0xc constant ETH_P_CONTROL (line 356) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 357) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 358) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 359) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 360) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 361) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 362) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 363) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 364) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 365) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 366) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 367) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 368) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 369) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 370) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 371) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 372) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 373) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 374) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 375) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 376) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 377) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 378) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 379) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 380) | ETH_P_LOOP = 0x60 constant ETH_P_MOBITEX (line 381) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 382) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 383) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_PAE (line 384) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 385) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 386) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 387) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 388) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 389) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 390) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PUP (line 391) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 392) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 393) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 394) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 395) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 396) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 397) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 398) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 399) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 400) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 401) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 402) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 403) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 404) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 405) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 406) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 407) | ETH_P_X25 = 0x805 constant EXTA (line 408) | EXTA = 0xe constant EXTB (line 409) | EXTB = 0xf constant EXTPROC (line 410) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 411) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 412) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 413) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 414) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 415) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 416) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 417) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 418) | FD_SETSIZE = 0x400 constant FF0 (line 419) | FF0 = 0x0 constant FF1 (line 420) | FF1 = 0x8000 constant FFDLY (line 421) | FFDLY = 0x8000 constant FLUSHO (line 422) | FLUSHO = 0x1000 constant F_DUPFD (line 423) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 424) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 425) | F_EXLCK = 0x4 constant F_GETFD (line 426) | F_GETFD = 0x1 constant F_GETFL (line 427) | F_GETFL = 0x3 constant F_GETLEASE (line 428) | F_GETLEASE = 0x401 constant F_GETLK (line 429) | F_GETLK = 0xc constant F_GETLK64 (line 430) | F_GETLK64 = 0xc constant F_GETOWN (line 431) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 432) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 433) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 434) | F_GETSIG = 0xb constant F_LOCK (line 435) | F_LOCK = 0x1 constant F_NOTIFY (line 436) | F_NOTIFY = 0x402 constant F_OK (line 437) | F_OK = 0x0 constant F_RDLCK (line 438) | F_RDLCK = 0x0 constant F_SETFD (line 439) | F_SETFD = 0x2 constant F_SETFL (line 440) | F_SETFL = 0x4 constant F_SETLEASE (line 441) | F_SETLEASE = 0x400 constant F_SETLK (line 442) | F_SETLK = 0xd constant F_SETLK64 (line 443) | F_SETLK64 = 0xd constant F_SETLKW (line 444) | F_SETLKW = 0xe constant F_SETLKW64 (line 445) | F_SETLKW64 = 0xe constant F_SETOWN (line 446) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 447) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 448) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 449) | F_SETSIG = 0xa constant F_SHLCK (line 450) | F_SHLCK = 0x8 constant F_TEST (line 451) | F_TEST = 0x3 constant F_TLOCK (line 452) | F_TLOCK = 0x2 constant F_ULOCK (line 453) | F_ULOCK = 0x0 constant F_UNLCK (line 454) | F_UNLCK = 0x2 constant F_WRLCK (line 455) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 456) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 457) | GRND_RANDOM = 0x2 constant HUPCL (line 458) | HUPCL = 0x400 constant IBSHIFT (line 459) | IBSHIFT = 0x10 constant ICANON (line 460) | ICANON = 0x2 constant ICMPV6_FILTER (line 461) | ICMPV6_FILTER = 0x1 constant ICRNL (line 462) | ICRNL = 0x100 constant IEXTEN (line 463) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 464) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 465) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 466) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_NODAD (line 467) | IFA_F_NODAD = 0x2 constant IFA_F_OPTIMISTIC (line 468) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 469) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 470) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 471) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 472) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 473) | IFA_MAX = 0x7 constant IFF_802_1Q_VLAN (line 474) | IFF_802_1Q_VLAN = 0x1 constant IFF_ALLMULTI (line 475) | IFF_ALLMULTI = 0x200 constant IFF_AUTOMEDIA (line 476) | IFF_AUTOMEDIA = 0x4000 constant IFF_BONDING (line 477) | IFF_BONDING = 0x20 constant IFF_BRIDGE_PORT (line 478) | IFF_BRIDGE_PORT = 0x4000 constant IFF_BROADCAST (line 479) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 480) | IFF_DEBUG = 0x4 constant IFF_DISABLE_NETPOLL (line 481) | IFF_DISABLE_NETPOLL = 0x1000 constant IFF_DONT_BRIDGE (line 482) | IFF_DONT_BRIDGE = 0x800 constant IFF_DORMANT (line 483) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 484) | IFF_DYNAMIC = 0x8000 constant IFF_EBRIDGE (line 485) | IFF_EBRIDGE = 0x2 constant IFF_ECHO (line 486) | IFF_ECHO = 0x40000 constant IFF_ISATAP (line 487) | IFF_ISATAP = 0x80 constant IFF_LOOPBACK (line 488) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 489) | IFF_LOWER_UP = 0x10000 constant IFF_MACVLAN_PORT (line 490) | IFF_MACVLAN_PORT = 0x2000 constant IFF_MASTER (line 491) | IFF_MASTER = 0x400 constant IFF_MASTER_8023AD (line 492) | IFF_MASTER_8023AD = 0x8 constant IFF_MASTER_ALB (line 493) | IFF_MASTER_ALB = 0x10 constant IFF_MASTER_ARPMON (line 494) | IFF_MASTER_ARPMON = 0x100 constant IFF_MULTICAST (line 495) | IFF_MULTICAST = 0x1000 constant IFF_NOARP (line 496) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 497) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 498) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 499) | IFF_ONE_QUEUE = 0x2000 constant IFF_OVS_DATAPATH (line 500) | IFF_OVS_DATAPATH = 0x8000 constant IFF_POINTOPOINT (line 501) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 502) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 503) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 504) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 505) | IFF_SLAVE = 0x800 constant IFF_SLAVE_INACTIVE (line 506) | IFF_SLAVE_INACTIVE = 0x4 constant IFF_SLAVE_NEEDARP (line 507) | IFF_SLAVE_NEEDARP = 0x40 constant IFF_TAP (line 508) | IFF_TAP = 0x2 constant IFF_TUN (line 509) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 510) | IFF_TUN_EXCL = 0x8000 constant IFF_TX_SKB_SHARING (line 511) | IFF_TX_SKB_SHARING = 0x10000 constant IFF_UNICAST_FLT (line 512) | IFF_UNICAST_FLT = 0x20000 constant IFF_UP (line 513) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 514) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 515) | IFF_VOLATILE = 0x70c5a constant IFF_WAN_HDLC (line 516) | IFF_WAN_HDLC = 0x200 constant IFF_XMIT_DST_RELEASE (line 517) | IFF_XMIT_DST_RELEASE = 0x400 constant IFNAMSIZ (line 518) | IFNAMSIZ = 0x10 constant IGNBRK (line 519) | IGNBRK = 0x1 constant IGNCR (line 520) | IGNCR = 0x80 constant IGNPAR (line 521) | IGNPAR = 0x4 constant IMAXBEL (line 522) | IMAXBEL = 0x2000 constant INLCR (line 523) | INLCR = 0x40 constant INPCK (line 524) | INPCK = 0x10 constant IN_ACCESS (line 525) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 526) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 527) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 528) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 529) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 530) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 531) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 532) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 533) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 534) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 535) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 536) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 537) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 538) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 539) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 540) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 541) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 542) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 543) | IN_CREATE = 0x100 constant IN_DELETE (line 544) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 545) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 546) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 547) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 548) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 549) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 550) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 551) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 552) | IN_MODIFY = 0x2 constant IN_MOVE (line 553) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 554) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 555) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 556) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 557) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 558) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 559) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 560) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 561) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 562) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 563) | IPPROTO_AH = 0x33 constant IPPROTO_COMP (line 564) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 565) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 566) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 567) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 568) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 569) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 570) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 571) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 572) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 573) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 574) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 575) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 576) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 577) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 578) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 579) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MTP (line 580) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 581) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 582) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 583) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 584) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 585) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 586) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 587) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 588) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 589) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 590) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 591) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 592) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 593) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 594) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 595) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 596) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 597) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 598) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 599) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 600) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 601) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 602) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 603) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 604) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 605) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 606) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 607) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 608) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 609) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 610) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 611) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 612) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 613) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 614) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 615) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 616) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 617) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 618) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 619) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_PROBE (line 620) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 621) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 622) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 623) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 624) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 625) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 626) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 627) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 628) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 629) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 630) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 631) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 632) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 633) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 634) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 635) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 636) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 637) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 638) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 639) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 640) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 641) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 642) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 643) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 644) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 645) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 646) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 647) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 648) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 649) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 650) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 651) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 652) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 653) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 654) | IP_MF = 0x2000 constant IP_MINTTL (line 655) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 656) | IP_MSFILTER = 0x29 constant IP_MSS (line 657) | IP_MSS = 0x240 constant IP_MTU (line 658) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 659) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 660) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 661) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 662) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 663) | IP_MULTICAST_TTL = 0x21 constant IP_OFFMASK (line 664) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 665) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 666) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 667) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 668) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 669) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 670) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 671) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 672) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_PROBE (line 673) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 674) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 675) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 676) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 677) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 678) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 679) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 680) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 681) | IP_RETOPTS = 0x7 constant IP_RF (line 682) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 683) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 684) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 685) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 686) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 687) | IP_UNBLOCK_SOURCE = 0x25 constant IP_XFRM_POLICY (line 688) | IP_XFRM_POLICY = 0x11 constant ISIG (line 689) | ISIG = 0x1 constant ISTRIP (line 690) | ISTRIP = 0x20 constant IUCLC (line 691) | IUCLC = 0x200 constant IUTF8 (line 692) | IUTF8 = 0x4000 constant IXANY (line 693) | IXANY = 0x800 constant IXOFF (line 694) | IXOFF = 0x1000 constant IXON (line 695) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 696) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 697) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 698) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 699) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 700) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 701) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 702) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 703) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 704) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 705) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 706) | LOCK_EX = 0x2 constant LOCK_NB (line 707) | LOCK_NB = 0x4 constant LOCK_SH (line 708) | LOCK_SH = 0x1 constant LOCK_UN (line 709) | LOCK_UN = 0x8 constant MADV_DOFORK (line 710) | MADV_DOFORK = 0xb constant MADV_DONTFORK (line 711) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 712) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 713) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 714) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 715) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 716) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 717) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 718) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 719) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 720) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 721) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 722) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 723) | MAP_32BIT = 0x40 constant MAP_ANON (line 724) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 725) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 726) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 727) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 728) | MAP_FILE = 0x0 constant MAP_FIXED (line 729) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 730) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 731) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 732) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 733) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 734) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 735) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 736) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 737) | MAP_SHARED = 0x1 constant MAP_STACK (line 738) | MAP_STACK = 0x20000 constant MAP_TYPE (line 739) | MAP_TYPE = 0xf constant MCL_CURRENT (line 740) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 741) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 742) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 743) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 744) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 745) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 746) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 747) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 748) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 749) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 750) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 751) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 752) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 753) | MSG_FIN = 0x200 constant MSG_MORE (line 754) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 755) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 756) | MSG_OOB = 0x1 constant MSG_PEEK (line 757) | MSG_PEEK = 0x2 constant MSG_PROXY (line 758) | MSG_PROXY = 0x10 constant MSG_RST (line 759) | MSG_RST = 0x1000 constant MSG_SYN (line 760) | MSG_SYN = 0x400 constant MSG_TRUNC (line 761) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 762) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 763) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 764) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 765) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 766) | MS_ASYNC = 0x1 constant MS_BIND (line 767) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 768) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 769) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 770) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 771) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 772) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 773) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 774) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 775) | MS_MOVE = 0x2000 constant MS_NOATIME (line 776) | MS_NOATIME = 0x400 constant MS_NODEV (line 777) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 778) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 779) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 780) | MS_NOSUID = 0x2 constant MS_NOUSER (line 781) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 782) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 783) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 784) | MS_RDONLY = 0x1 constant MS_REC (line 785) | MS_REC = 0x4000 constant MS_RELATIME (line 786) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 787) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 788) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 789) | MS_SHARED = 0x100000 constant MS_SILENT (line 790) | MS_SILENT = 0x8000 constant MS_SLAVE (line 791) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 792) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 793) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 794) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 795) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 796) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 797) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 798) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 799) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CONNECTOR (line 800) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 801) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 802) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 803) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 804) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 805) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 806) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 807) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 808) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 809) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 810) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 811) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_NETFILTER (line 812) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 813) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 814) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 815) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 816) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 817) | NETLINK_ROUTE = 0x0 constant NETLINK_SCSITRANSPORT (line 818) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 819) | NETLINK_SELINUX = 0x7 constant NETLINK_UNUSED (line 820) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 821) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 822) | NETLINK_XFRM = 0x6 constant NL0 (line 823) | NL0 = 0x0 constant NL1 (line 824) | NL1 = 0x100 constant NLA_ALIGNTO (line 825) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 826) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 827) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 828) | NLA_HDRLEN = 0x4 constant NLDLY (line 829) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 830) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 831) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 832) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 833) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 834) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 835) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 836) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 837) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 838) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 839) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 840) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 841) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 842) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 843) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 844) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 845) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 846) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 847) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 848) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 849) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 850) | NLM_F_ROOT = 0x100 constant NOFLSH (line 851) | NOFLSH = 0x80 constant OCRNL (line 852) | OCRNL = 0x8 constant OFDEL (line 853) | OFDEL = 0x80 constant OFILL (line 854) | OFILL = 0x40 constant OLCUC (line 855) | OLCUC = 0x2 constant ONLCR (line 856) | ONLCR = 0x4 constant ONLRET (line 857) | ONLRET = 0x20 constant ONOCR (line 858) | ONOCR = 0x10 constant OPOST (line 859) | OPOST = 0x1 constant O_ACCMODE (line 860) | O_ACCMODE = 0x3 constant O_APPEND (line 861) | O_APPEND = 0x400 constant O_ASYNC (line 862) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 863) | O_CLOEXEC = 0x80000 constant O_CREAT (line 864) | O_CREAT = 0x40 constant O_DIRECT (line 865) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 866) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 867) | O_DSYNC = 0x1000 constant O_EXCL (line 868) | O_EXCL = 0x80 constant O_FSYNC (line 869) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 870) | O_LARGEFILE = 0x8000 constant O_NDELAY (line 871) | O_NDELAY = 0x800 constant O_NOATIME (line 872) | O_NOATIME = 0x40000 constant O_NOCTTY (line 873) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 874) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 875) | O_NONBLOCK = 0x800 constant O_PATH (line 876) | O_PATH = 0x200000 constant O_RDONLY (line 877) | O_RDONLY = 0x0 constant O_RDWR (line 878) | O_RDWR = 0x2 constant O_RSYNC (line 879) | O_RSYNC = 0x101000 constant O_SYNC (line 880) | O_SYNC = 0x101000 constant O_TMPFILE (line 881) | O_TMPFILE = 0x410000 constant O_TRUNC (line 882) | O_TRUNC = 0x200 constant O_WRONLY (line 883) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 884) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 885) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 886) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 887) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 888) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 889) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CPU (line 890) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_FLAG_DEFRAG (line 891) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_HASH (line 892) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 893) | PACKET_FANOUT_LB = 0x1 constant PACKET_FASTROUTE (line 894) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 895) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 896) | PACKET_HOST = 0x0 constant PACKET_LOOPBACK (line 897) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 898) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 899) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 900) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 901) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 902) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 903) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 904) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 905) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 906) | PACKET_OUTGOING = 0x4 constant PACKET_RECV_OUTPUT (line 907) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 908) | PACKET_RESERVE = 0xc constant PACKET_RX_RING (line 909) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 910) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 911) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_RING (line 912) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 913) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_VERSION (line 914) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 915) | PACKET_VNET_HDR = 0xf constant PARENB (line 916) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 917) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 918) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 919) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 920) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 921) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 922) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 923) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 924) | PARITY_NONE = 0x1 constant PARMRK (line 925) | PARMRK = 0x8 constant PARODD (line 926) | PARODD = 0x200 constant PENDIN (line 927) | PENDIN = 0x4000 constant PRIO_PGRP (line 928) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 929) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 930) | PRIO_USER = 0x2 constant PROT_EXEC (line 931) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 932) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 933) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 934) | PROT_NONE = 0x0 constant PROT_READ (line 935) | PROT_READ = 0x1 constant PROT_WRITE (line 936) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 937) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 938) | PR_CAPBSET_READ = 0x17 constant PR_ENDIAN_BIG (line 939) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 940) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 941) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 942) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 943) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 944) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 945) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 946) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 947) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 948) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 949) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 950) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 951) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 952) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 953) | PR_FP_EXC_UND = 0x40000 constant PR_GET_DUMPABLE (line 954) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 955) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 956) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 957) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 958) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 959) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 960) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 961) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 962) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 963) | PR_GET_SECUREBITS = 0x1b constant PR_GET_TIMERSLACK (line 964) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 965) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 966) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 967) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 968) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 969) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 970) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 971) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 972) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 973) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 974) | PR_MCE_KILL_SET = 0x1 constant PR_SET_DUMPABLE (line 975) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 976) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 977) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 978) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 979) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 980) | PR_SET_MM = 0x23 constant PR_SET_MM_BRK (line 981) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 982) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 983) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_START_BRK (line 984) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 985) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 986) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 987) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 988) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 989) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 990) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 991) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 992) | PR_SET_PTRACER_ANY = 0xffffffff constant PR_SET_SECCOMP (line 993) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 994) | PR_SET_SECUREBITS = 0x1c constant PR_SET_TIMERSLACK (line 995) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 996) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 997) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 998) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 999) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1000) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1001) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1002) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1003) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1004) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1005) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1006) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1007) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1008) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1009) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1010) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1011) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1012) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1013) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1014) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1015) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1016) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1017) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1018) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1019) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPXREGS (line 1020) | PTRACE_GETFPXREGS = 0x12 constant PTRACE_GETREGS (line 1021) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1022) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1023) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GET_THREAD_AREA (line 1024) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_INTERRUPT (line 1025) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1026) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1027) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1028) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_MASK (line 1029) | PTRACE_O_MASK = 0xff constant PTRACE_O_TRACECLONE (line 1030) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1031) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1032) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1033) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1034) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1035) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1036) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1037) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1038) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKTEXT (line 1039) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1040) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1041) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1042) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1043) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1044) | PTRACE_SEIZE = 0x4206 constant PTRACE_SEIZE_DEVEL (line 1045) | PTRACE_SEIZE_DEVEL = 0x80000000 constant PTRACE_SETFPREGS (line 1046) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPXREGS (line 1047) | PTRACE_SETFPXREGS = 0x13 constant PTRACE_SETOPTIONS (line 1048) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1049) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1050) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1051) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SET_THREAD_AREA (line 1052) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SINGLEBLOCK (line 1053) | PTRACE_SINGLEBLOCK = 0x21 constant PTRACE_SINGLESTEP (line 1054) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1055) | PTRACE_SYSCALL = 0x18 constant PTRACE_SYSEMU (line 1056) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 1057) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant PTRACE_TRACEME (line 1058) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1059) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1060) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1061) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1062) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1063) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1064) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 1065) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1066) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1067) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 1068) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1069) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1070) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1071) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1072) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1073) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1074) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1075) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1076) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1077) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1078) | RTAX_MAX = 0xe constant RTAX_MTU (line 1079) | RTAX_MTU = 0x2 constant RTAX_REORDERING (line 1080) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1081) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1082) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1083) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1084) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1085) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1086) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1087) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1088) | RTA_MAX = 0x10 constant RTCF_DIRECTSRC (line 1089) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1090) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1091) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1092) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1093) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1094) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1095) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1096) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1097) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1098) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1099) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1100) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1101) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1102) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1103) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1104) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1105) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1106) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1107) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1108) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1109) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1110) | RTF_MSS = 0x40 constant RTF_MTU (line 1111) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1112) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1113) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1114) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1115) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1116) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1117) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1118) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1119) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1120) | RTF_STATIC = 0x400 constant RTF_THROW (line 1121) | RTF_THROW = 0x2000 constant RTF_UP (line 1122) | RTF_UP = 0x1 constant RTF_WINDOW (line 1123) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1124) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1125) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1126) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1127) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1128) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1129) | RTM_DELLINK = 0x11 constant RTM_DELNEIGH (line 1130) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1131) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1132) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1133) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1134) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1135) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1136) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1137) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1138) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1139) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1140) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1141) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1142) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1143) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1144) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1145) | RTM_GETLINK = 0x12 constant RTM_GETMULTICAST (line 1146) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1147) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1148) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETQDISC (line 1149) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1150) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1151) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1152) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1153) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1154) | RTM_MAX = 0x4f constant RTM_NEWACTION (line 1155) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1156) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1157) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1158) | RTM_NEWLINK = 0x10 constant RTM_NEWNDUSEROPT (line 1159) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1160) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1161) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWPREFIX (line 1162) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1163) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1164) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1165) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1166) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1167) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1168) | RTM_NR_FAMILIES = 0x10 constant RTM_NR_MSGTYPES (line 1169) | RTM_NR_MSGTYPES = 0x40 constant RTM_SETDCB (line 1170) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1171) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1172) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1173) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1174) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1175) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1176) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1177) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1178) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1179) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1180) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1181) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1182) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1183) | RTPROT_KERNEL = 0x2 constant RTPROT_MRT (line 1184) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1185) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1186) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1187) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1188) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1189) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1190) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1191) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1192) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1193) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1194) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1195) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1196) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1197) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1198) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1199) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1200) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1201) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1202) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1203) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1204) | SCM_TIMESTAMPNS = 0x23 constant SHUT_RD (line 1205) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1206) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1207) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1208) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1209) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1210) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1211) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1212) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1213) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1214) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1215) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1216) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1217) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1218) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1219) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1220) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1221) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1222) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1223) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1224) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1225) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1226) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1227) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1228) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1229) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1230) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1231) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1232) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1233) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1234) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1235) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1236) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1237) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1238) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1239) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1240) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1241) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1242) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1243) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1244) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1245) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1246) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1247) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1248) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1249) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1250) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1251) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1252) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1253) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1254) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1255) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1256) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1257) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1258) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1259) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1260) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1261) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1262) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1263) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1264) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1265) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1266) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1267) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1268) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1269) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1270) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1271) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1272) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1273) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1274) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1275) | SOL_AAL = 0x109 constant SOL_ATM (line 1276) | SOL_ATM = 0x108 constant SOL_DECNET (line 1277) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1278) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1279) | SOL_IP = 0x0 constant SOL_IPV6 (line 1280) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1281) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1282) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1283) | SOL_PACKET = 0x107 constant SOL_RAW (line 1284) | SOL_RAW = 0xff constant SOL_SOCKET (line 1285) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1286) | SOL_TCP = 0x6 constant SOL_X25 (line 1287) | SOL_X25 = 0x106 constant SOMAXCONN (line 1288) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1289) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_FILTER (line 1290) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1291) | SO_BINDTODEVICE = 0x19 constant SO_BROADCAST (line 1292) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1293) | SO_BSDCOMPAT = 0xe constant SO_DEBUG (line 1294) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1295) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1296) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1297) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1298) | SO_ERROR = 0x4 constant SO_KEEPALIVE (line 1299) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1300) | SO_LINGER = 0xd constant SO_MARK (line 1301) | SO_MARK = 0x24 constant SO_NO_CHECK (line 1302) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1303) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1304) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1305) | SO_PASSSEC = 0x22 constant SO_PEERCRED (line 1306) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1307) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1308) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1309) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1310) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1311) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1312) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1313) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1314) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1315) | SO_REUSEADDR = 0x2 constant SO_RXQ_OVFL (line 1316) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1317) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1318) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1319) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SNDBUF (line 1320) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1321) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1322) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1323) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1324) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1325) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1326) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1327) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1328) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1329) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1330) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1331) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1332) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1333) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1334) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SPLICE_F_GIFT (line 1335) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1336) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1337) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1338) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1339) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1340) | S_IEXEC = 0x40 constant S_IFBLK (line 1341) | S_IFBLK = 0x6000 constant S_IFCHR (line 1342) | S_IFCHR = 0x2000 constant S_IFDIR (line 1343) | S_IFDIR = 0x4000 constant S_IFIFO (line 1344) | S_IFIFO = 0x1000 constant S_IFLNK (line 1345) | S_IFLNK = 0xa000 constant S_IFMT (line 1346) | S_IFMT = 0xf000 constant S_IFREG (line 1347) | S_IFREG = 0x8000 constant S_IFSOCK (line 1348) | S_IFSOCK = 0xc000 constant S_IREAD (line 1349) | S_IREAD = 0x100 constant S_IRGRP (line 1350) | S_IRGRP = 0x20 constant S_IROTH (line 1351) | S_IROTH = 0x4 constant S_IRUSR (line 1352) | S_IRUSR = 0x100 constant S_IRWXG (line 1353) | S_IRWXG = 0x38 constant S_IRWXO (line 1354) | S_IRWXO = 0x7 constant S_IRWXU (line 1355) | S_IRWXU = 0x1c0 constant S_ISGID (line 1356) | S_ISGID = 0x400 constant S_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 TAB0 (line 1366) | TAB0 = 0x0 constant TAB1 (line 1367) | TAB1 = 0x800 constant TAB2 (line 1368) | TAB2 = 0x1000 constant TAB3 (line 1369) | TAB3 = 0x1800 constant TABDLY (line 1370) | TABDLY = 0x1800 constant TCFLSH (line 1371) | TCFLSH = 0x540b constant TCGETA (line 1372) | TCGETA = 0x5405 constant TCGETS (line 1373) | TCGETS = 0x5401 constant TCGETS2 (line 1374) | TCGETS2 = 0x802c542a constant TCGETX (line 1375) | TCGETX = 0x5432 constant TCIFLUSH (line 1376) | TCIFLUSH = 0x0 constant TCIOFF (line 1377) | TCIOFF = 0x2 constant TCIOFLUSH (line 1378) | TCIOFLUSH = 0x2 constant TCION (line 1379) | TCION = 0x3 constant TCOFLUSH (line 1380) | TCOFLUSH = 0x1 constant TCOOFF (line 1381) | TCOOFF = 0x0 constant TCOON (line 1382) | TCOON = 0x1 constant TCP_CONGESTION (line 1383) | TCP_CONGESTION = 0xd constant TCP_CORK (line 1384) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1385) | TCP_DEFER_ACCEPT = 0x9 constant TCP_INFO (line 1386) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1387) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1388) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1389) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1390) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1391) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1392) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1393) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1394) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1395) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1396) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1397) | TCP_NODELAY = 0x1 constant TCP_QUICKACK (line 1398) | TCP_QUICKACK = 0xc constant TCP_SYNCNT (line 1399) | TCP_SYNCNT = 0x7 constant TCP_WINDOW_CLAMP (line 1400) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1401) | TCSAFLUSH = 0x2 constant TCSBRK (line 1402) | TCSBRK = 0x5409 constant TCSBRKP (line 1403) | TCSBRKP = 0x5425 constant TCSETA (line 1404) | TCSETA = 0x5406 constant TCSETAF (line 1405) | TCSETAF = 0x5408 constant TCSETAW (line 1406) | TCSETAW = 0x5407 constant TCSETS (line 1407) | TCSETS = 0x5402 constant TCSETS2 (line 1408) | TCSETS2 = 0x402c542b constant TCSETSF (line 1409) | TCSETSF = 0x5404 constant TCSETSF2 (line 1410) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1411) | TCSETSW = 0x5403 constant TCSETSW2 (line 1412) | TCSETSW2 = 0x402c542c constant TCSETX (line 1413) | TCSETX = 0x5433 constant TCSETXF (line 1414) | TCSETXF = 0x5434 constant TCSETXW (line 1415) | TCSETXW = 0x5435 constant TCXONC (line 1416) | TCXONC = 0x540a constant TIOCCBRK (line 1417) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1418) | TIOCCONS = 0x541d constant TIOCEXCL (line 1419) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1420) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1421) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1422) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1423) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1424) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1425) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1426) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1427) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1428) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1429) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1430) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1431) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1432) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1433) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1434) | TIOCINQ = 0x541b constant TIOCLINUX (line 1435) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1436) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1437) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1438) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1439) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1440) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1441) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1442) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1443) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1444) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1445) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1446) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1447) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1448) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1449) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1450) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1451) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1452) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1453) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1454) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1455) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1456) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1457) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1458) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1459) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1460) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1461) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1462) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1463) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1464) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1465) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1466) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1467) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1468) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1469) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1470) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1471) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1472) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1473) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1474) | TIOCSETD = 0x5423 constant TIOCSIG (line 1475) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1476) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1477) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1478) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1479) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1480) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1481) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1482) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1483) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1484) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1485) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1486) | TUNATTACHFILTER = 0x400854d5 constant TUNDETACHFILTER (line 1487) | TUNDETACHFILTER = 0x400854d6 constant TUNGETFEATURES (line 1488) | TUNGETFEATURES = 0x800454cf constant TUNGETIFF (line 1489) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1490) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETHDRSZ (line 1491) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNSETDEBUG (line 1492) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1493) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1494) | TUNSETIFF = 0x400454ca constant TUNSETLINK (line 1495) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1496) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1497) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1498) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1499) | TUNSETPERSIST = 0x400454cb constant TUNSETSNDBUF (line 1500) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1501) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETHDRSZ (line 1502) | TUNSETVNETHDRSZ = 0x400454d8 constant VDISCARD (line 1503) | VDISCARD = 0xd constant VEOF (line 1504) | VEOF = 0x4 constant VEOL (line 1505) | VEOL = 0xb constant VEOL2 (line 1506) | VEOL2 = 0x10 constant VERASE (line 1507) | VERASE = 0x2 constant VINTR (line 1508) | VINTR = 0x0 constant VKILL (line 1509) | VKILL = 0x3 constant VLNEXT (line 1510) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1511) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1512) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1513) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1514) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1515) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1516) | VMIN = 0x6 constant VQUIT (line 1517) | VQUIT = 0x1 constant VREPRINT (line 1518) | VREPRINT = 0xc constant VSTART (line 1519) | VSTART = 0x8 constant VSTOP (line 1520) | VSTOP = 0x9 constant VSUSP (line 1521) | VSUSP = 0xa constant VSWTC (line 1522) | VSWTC = 0x7 constant VT0 (line 1523) | VT0 = 0x0 constant VT1 (line 1524) | VT1 = 0x4000 constant VTDLY (line 1525) | VTDLY = 0x4000 constant VTIME (line 1526) | VTIME = 0x5 constant VWERASE (line 1527) | VWERASE = 0xe constant WALL (line 1528) | WALL = 0x40000000 constant WCLONE (line 1529) | WCLONE = 0x80000000 constant WCONTINUED (line 1530) | WCONTINUED = 0x8 constant WEXITED (line 1531) | WEXITED = 0x4 constant WNOHANG (line 1532) | WNOHANG = 0x1 constant WNOTHREAD (line 1533) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1534) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1535) | WORDSIZE = 0x20 constant WSTOPPED (line 1536) | WSTOPPED = 0x2 constant WUNTRACED (line 1537) | WUNTRACED = 0x2 constant XCASE (line 1538) | XCASE = 0x4 constant XTABS (line 1539) | XTABS = 0x1800 constant E2BIG (line 1544) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1545) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1546) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1547) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1548) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1549) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1550) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1551) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1552) | EBADE = syscall.Errno(0x34) constant EBADF (line 1553) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1554) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1555) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1556) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1557) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1558) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1559) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1560) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1561) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1562) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1563) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1564) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1565) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1566) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1567) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1568) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1569) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1570) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1571) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1572) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1573) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1574) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1575) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1576) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1577) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1578) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1579) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1580) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1581) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1582) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1583) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1584) | EINVAL = syscall.Errno(0x16) constant EIO (line 1585) | EIO = syscall.Errno(0x5) constant EISCONN (line 1586) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1587) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1588) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1589) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1590) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1591) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1592) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1593) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1594) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1595) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1596) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1597) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1598) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1599) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1600) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1601) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1602) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1603) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1604) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1605) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1606) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1607) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1608) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1609) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1610) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1611) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1612) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1613) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1614) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1615) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1616) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1617) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1618) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1619) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1620) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1621) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1622) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1623) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1624) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1625) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1626) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1627) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1628) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1629) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1630) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1631) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1632) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1633) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1634) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1635) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1636) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1637) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1638) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1639) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1640) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1641) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1642) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1643) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1644) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1645) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1646) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1647) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1648) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1649) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1650) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1651) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1652) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1653) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1654) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1655) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1656) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1657) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1658) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1659) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1660) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1661) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1662) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1663) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1664) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1665) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1666) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1667) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1668) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1669) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1670) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1671) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1672) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1673) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1674) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1675) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1676) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1677) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1682) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1683) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1684) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1685) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1686) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1687) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1688) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1689) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1690) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1691) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1692) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1693) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1694) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1695) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1696) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1697) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1698) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1699) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1700) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1701) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1702) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1703) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1704) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1705) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1706) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1707) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1708) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1709) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1710) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1711) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1712) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1713) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1714) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1715) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1716) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x28 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_NFC (line 41) | AF_NFC = 0x27 constant AF_PACKET (line 42) | AF_PACKET = 0x11 constant AF_PHONET (line 43) | AF_PHONET = 0x23 constant AF_PPPOX (line 44) | AF_PPPOX = 0x18 constant AF_RDS (line 45) | AF_RDS = 0x15 constant AF_ROSE (line 46) | AF_ROSE = 0xb constant AF_ROUTE (line 47) | AF_ROUTE = 0x10 constant AF_RXRPC (line 48) | AF_RXRPC = 0x21 constant AF_SECURITY (line 49) | AF_SECURITY = 0xe constant AF_SNA (line 50) | AF_SNA = 0x16 constant AF_TIPC (line 51) | AF_TIPC = 0x1e constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 54) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 55) | AF_WANPIPE = 0x19 constant AF_X25 (line 56) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 57) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 58) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 59) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 60) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 61) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 62) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 63) | ALG_SET_OP = 0x3 constant ARPHRD_ADAPT (line 64) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 65) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 66) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 67) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 68) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 69) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 70) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 71) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 72) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 73) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 74) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 75) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 76) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 77) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 78) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 79) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 80) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 81) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 82) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 83) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 84) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 85) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 86) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 87) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 88) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 89) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 90) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 91) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 92) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 93) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 94) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 95) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 96) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 97) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802_TR (line 98) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 99) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IPDDP (line 100) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 101) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 102) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 103) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 104) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 105) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 106) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETROM (line 107) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 108) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 109) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 110) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 111) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 112) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 113) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 114) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 115) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 116) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 117) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 118) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 119) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 120) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 121) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 122) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 123) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 124) | ARPHRD_X25 = 0x10f constant B0 (line 125) | B0 = 0x0 constant B1000000 (line 126) | B1000000 = 0x1008 constant B110 (line 127) | B110 = 0x3 constant B115200 (line 128) | B115200 = 0x1002 constant B1152000 (line 129) | B1152000 = 0x1009 constant B1200 (line 130) | B1200 = 0x9 constant B134 (line 131) | B134 = 0x4 constant B150 (line 132) | B150 = 0x5 constant B1500000 (line 133) | B1500000 = 0x100a constant B1800 (line 134) | B1800 = 0xa constant B19200 (line 135) | B19200 = 0xe constant B200 (line 136) | B200 = 0x6 constant B2000000 (line 137) | B2000000 = 0x100b constant B230400 (line 138) | B230400 = 0x1003 constant B2400 (line 139) | B2400 = 0xb constant B2500000 (line 140) | B2500000 = 0x100c constant B300 (line 141) | B300 = 0x7 constant B3000000 (line 142) | B3000000 = 0x100d constant B3500000 (line 143) | B3500000 = 0x100e constant B38400 (line 144) | B38400 = 0xf constant B4000000 (line 145) | B4000000 = 0x100f constant B460800 (line 146) | B460800 = 0x1004 constant B4800 (line 147) | B4800 = 0xc constant B50 (line 148) | B50 = 0x1 constant B500000 (line 149) | B500000 = 0x1005 constant B57600 (line 150) | B57600 = 0x1001 constant B576000 (line 151) | B576000 = 0x1006 constant B600 (line 152) | B600 = 0x8 constant B75 (line 153) | B75 = 0x2 constant B921600 (line 154) | B921600 = 0x1007 constant B9600 (line 155) | B9600 = 0xd constant BLKBSZGET (line 156) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 157) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 158) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 159) | BLKFRAGET = 0x1265 constant BLKFRASET (line 160) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 161) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 162) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 163) | BLKRAGET = 0x1263 constant BLKRASET (line 164) | BLKRASET = 0x1262 constant BLKROGET (line 165) | BLKROGET = 0x125e constant BLKROSET (line 166) | BLKROSET = 0x125d constant BLKRRPART (line 167) | BLKRRPART = 0x125f constant BLKSECTGET (line 168) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 169) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 170) | BLKSSZGET = 0x1268 constant BOTHER (line 171) | BOTHER = 0x1000 constant BPF_A (line 172) | BPF_A = 0x10 constant BPF_ABS (line 173) | BPF_ABS = 0x20 constant BPF_ADD (line 174) | BPF_ADD = 0x0 constant BPF_ALU (line 175) | BPF_ALU = 0x4 constant BPF_AND (line 176) | BPF_AND = 0x50 constant BPF_B (line 177) | BPF_B = 0x10 constant BPF_DIV (line 178) | BPF_DIV = 0x30 constant BPF_H (line 179) | BPF_H = 0x8 constant BPF_IMM (line 180) | BPF_IMM = 0x0 constant BPF_IND (line 181) | BPF_IND = 0x40 constant BPF_JA (line 182) | BPF_JA = 0x0 constant BPF_JEQ (line 183) | BPF_JEQ = 0x10 constant BPF_JGE (line 184) | BPF_JGE = 0x30 constant BPF_JGT (line 185) | BPF_JGT = 0x20 constant BPF_JMP (line 186) | BPF_JMP = 0x5 constant BPF_JSET (line 187) | BPF_JSET = 0x40 constant BPF_K (line 188) | BPF_K = 0x0 constant BPF_LD (line 189) | BPF_LD = 0x0 constant BPF_LDX (line 190) | BPF_LDX = 0x1 constant BPF_LEN (line 191) | BPF_LEN = 0x80 constant BPF_LSH (line 192) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 193) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 194) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 195) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 196) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 197) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 198) | BPF_MISC = 0x7 constant BPF_MSH (line 199) | BPF_MSH = 0xa0 constant BPF_MUL (line 200) | BPF_MUL = 0x20 constant BPF_NEG (line 201) | BPF_NEG = 0x80 constant BPF_OR (line 202) | BPF_OR = 0x40 constant BPF_RET (line 203) | BPF_RET = 0x6 constant BPF_RSH (line 204) | BPF_RSH = 0x70 constant BPF_ST (line 205) | BPF_ST = 0x2 constant BPF_STX (line 206) | BPF_STX = 0x3 constant BPF_SUB (line 207) | BPF_SUB = 0x10 constant BPF_TAX (line 208) | BPF_TAX = 0x0 constant BPF_TXA (line 209) | BPF_TXA = 0x80 constant BPF_W (line 210) | BPF_W = 0x0 constant BPF_X (line 211) | BPF_X = 0x8 constant BRKINT (line 212) | BRKINT = 0x2 constant BS0 (line 213) | BS0 = 0x0 constant BS1 (line 214) | BS1 = 0x2000 constant BSDLY (line 215) | BSDLY = 0x2000 constant CAN_BCM (line 216) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 217) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 218) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 219) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 220) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 221) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 222) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 223) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 224) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 225) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 226) | CAN_MCNET = 0x5 constant CAN_MTU (line 227) | CAN_MTU = 0x10 constant CAN_NPROTO (line 228) | CAN_NPROTO = 0x7 constant CAN_RAW (line 229) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 230) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 231) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 232) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 233) | CAN_TP16 = 0x3 constant CAN_TP20 (line 234) | CAN_TP20 = 0x4 constant CBAUD (line 235) | CBAUD = 0x100f constant CBAUDEX (line 236) | CBAUDEX = 0x1000 constant CFLUSH (line 237) | CFLUSH = 0xf constant CIBAUD (line 238) | CIBAUD = 0x100f0000 constant CLOCAL (line 239) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 240) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 241) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 242) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 243) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 244) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 245) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 246) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 247) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 248) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 249) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 250) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 251) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 252) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 253) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 254) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 255) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 256) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 257) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 258) | CLONE_FILES = 0x400 constant CLONE_FS (line 259) | CLONE_FS = 0x200 constant CLONE_IO (line 260) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 261) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 262) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 263) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 264) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 265) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 266) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 267) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 268) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 269) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 270) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 271) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 272) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 273) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 274) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 275) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 276) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 277) | CLONE_VM = 0x100 constant CMSPAR (line 278) | CMSPAR = 0x40000000 constant CR0 (line 279) | CR0 = 0x0 constant CR1 (line 280) | CR1 = 0x200 constant CR2 (line 281) | CR2 = 0x400 constant CR3 (line 282) | CR3 = 0x600 constant CRDLY (line 283) | CRDLY = 0x600 constant CREAD (line 284) | CREAD = 0x80 constant CRTSCTS (line 285) | CRTSCTS = 0x80000000 constant CS5 (line 286) | CS5 = 0x0 constant CS6 (line 287) | CS6 = 0x10 constant CS7 (line 288) | CS7 = 0x20 constant CS8 (line 289) | CS8 = 0x30 constant CSIGNAL (line 290) | CSIGNAL = 0xff constant CSIZE (line 291) | CSIZE = 0x30 constant CSTART (line 292) | CSTART = 0x11 constant CSTATUS (line 293) | CSTATUS = 0x0 constant CSTOP (line 294) | CSTOP = 0x13 constant CSTOPB (line 295) | CSTOPB = 0x40 constant CSUSP (line 296) | CSUSP = 0x1a constant DT_BLK (line 297) | DT_BLK = 0x6 constant DT_CHR (line 298) | DT_CHR = 0x2 constant DT_DIR (line 299) | DT_DIR = 0x4 constant DT_FIFO (line 300) | DT_FIFO = 0x1 constant DT_LNK (line 301) | DT_LNK = 0xa constant DT_REG (line 302) | DT_REG = 0x8 constant DT_SOCK (line 303) | DT_SOCK = 0xc constant DT_UNKNOWN (line 304) | DT_UNKNOWN = 0x0 constant DT_WHT (line 305) | DT_WHT = 0xe constant ECHO (line 306) | ECHO = 0x8 constant ECHOCTL (line 307) | ECHOCTL = 0x200 constant ECHOE (line 308) | ECHOE = 0x10 constant ECHOK (line 309) | ECHOK = 0x20 constant ECHOKE (line 310) | ECHOKE = 0x800 constant ECHONL (line 311) | ECHONL = 0x40 constant ECHOPRT (line 312) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 313) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 314) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 315) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 316) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 317) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 318) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 319) | EPOLLERR = 0x8 constant EPOLLET (line 320) | EPOLLET = 0x80000000 constant EPOLLHUP (line 321) | EPOLLHUP = 0x10 constant EPOLLIN (line 322) | EPOLLIN = 0x1 constant EPOLLMSG (line 323) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 324) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 325) | EPOLLOUT = 0x4 constant EPOLLPRI (line 326) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 327) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 328) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 329) | EPOLLRDNORM = 0x40 constant EPOLLWRBAND (line 330) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 331) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 332) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 333) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 334) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 335) | EPOLL_CTL_MOD = 0x3 constant EPOLL_NONBLOCK (line 336) | EPOLL_NONBLOCK = 0x800 constant ETH_P_1588 (line 337) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 338) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 339) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 340) | ETH_P_8021Q = 0x8100 constant ETH_P_802_2 (line 341) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 342) | ETH_P_802_3 = 0x1 constant ETH_P_AARP (line 343) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 344) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 345) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 346) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 347) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 348) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 349) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 350) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 351) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 352) | ETH_P_AX25 = 0x2 constant ETH_P_BPQ (line 353) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 354) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 355) | ETH_P_CAN = 0xc constant ETH_P_CONTROL (line 356) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 357) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 358) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 359) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 360) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 361) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 362) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 363) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 364) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 365) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 366) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 367) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 368) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 369) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 370) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 371) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 372) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 373) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 374) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 375) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 376) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 377) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 378) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 379) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 380) | ETH_P_LOOP = 0x60 constant ETH_P_MOBITEX (line 381) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 382) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 383) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_PAE (line 384) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 385) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 386) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 387) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 388) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 389) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 390) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PUP (line 391) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 392) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 393) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 394) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 395) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 396) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 397) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 398) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 399) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 400) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 401) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 402) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 403) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 404) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 405) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 406) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 407) | ETH_P_X25 = 0x805 constant EXTA (line 408) | EXTA = 0xe constant EXTB (line 409) | EXTB = 0xf constant EXTPROC (line 410) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 411) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 412) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 413) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 414) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 415) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 416) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 417) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 418) | FD_SETSIZE = 0x400 constant FF0 (line 419) | FF0 = 0x0 constant FF1 (line 420) | FF1 = 0x8000 constant FFDLY (line 421) | FFDLY = 0x8000 constant FLUSHO (line 422) | FLUSHO = 0x1000 constant F_DUPFD (line 423) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 424) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 425) | F_EXLCK = 0x4 constant F_GETFD (line 426) | F_GETFD = 0x1 constant F_GETFL (line 427) | F_GETFL = 0x3 constant F_GETLEASE (line 428) | F_GETLEASE = 0x401 constant F_GETLK (line 429) | F_GETLK = 0x5 constant F_GETLK64 (line 430) | F_GETLK64 = 0x5 constant F_GETOWN (line 431) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 432) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 433) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 434) | F_GETSIG = 0xb constant F_LOCK (line 435) | F_LOCK = 0x1 constant F_NOTIFY (line 436) | F_NOTIFY = 0x402 constant F_OK (line 437) | F_OK = 0x0 constant F_RDLCK (line 438) | F_RDLCK = 0x0 constant F_SETFD (line 439) | F_SETFD = 0x2 constant F_SETFL (line 440) | F_SETFL = 0x4 constant F_SETLEASE (line 441) | F_SETLEASE = 0x400 constant F_SETLK (line 442) | F_SETLK = 0x6 constant F_SETLK64 (line 443) | F_SETLK64 = 0x6 constant F_SETLKW (line 444) | F_SETLKW = 0x7 constant F_SETLKW64 (line 445) | F_SETLKW64 = 0x7 constant F_SETOWN (line 446) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 447) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 448) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 449) | F_SETSIG = 0xa constant F_SHLCK (line 450) | F_SHLCK = 0x8 constant F_TEST (line 451) | F_TEST = 0x3 constant F_TLOCK (line 452) | F_TLOCK = 0x2 constant F_ULOCK (line 453) | F_ULOCK = 0x0 constant F_UNLCK (line 454) | F_UNLCK = 0x2 constant F_WRLCK (line 455) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 456) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 457) | GRND_RANDOM = 0x2 constant HUPCL (line 458) | HUPCL = 0x400 constant IBSHIFT (line 459) | IBSHIFT = 0x10 constant ICANON (line 460) | ICANON = 0x2 constant ICMPV6_FILTER (line 461) | ICMPV6_FILTER = 0x1 constant ICRNL (line 462) | ICRNL = 0x100 constant IEXTEN (line 463) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 464) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 465) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 466) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_NODAD (line 467) | IFA_F_NODAD = 0x2 constant IFA_F_OPTIMISTIC (line 468) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 469) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 470) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 471) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 472) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 473) | IFA_MAX = 0x7 constant IFF_802_1Q_VLAN (line 474) | IFF_802_1Q_VLAN = 0x1 constant IFF_ALLMULTI (line 475) | IFF_ALLMULTI = 0x200 constant IFF_AUTOMEDIA (line 476) | IFF_AUTOMEDIA = 0x4000 constant IFF_BONDING (line 477) | IFF_BONDING = 0x20 constant IFF_BRIDGE_PORT (line 478) | IFF_BRIDGE_PORT = 0x4000 constant IFF_BROADCAST (line 479) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 480) | IFF_DEBUG = 0x4 constant IFF_DISABLE_NETPOLL (line 481) | IFF_DISABLE_NETPOLL = 0x1000 constant IFF_DONT_BRIDGE (line 482) | IFF_DONT_BRIDGE = 0x800 constant IFF_DORMANT (line 483) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 484) | IFF_DYNAMIC = 0x8000 constant IFF_EBRIDGE (line 485) | IFF_EBRIDGE = 0x2 constant IFF_ECHO (line 486) | IFF_ECHO = 0x40000 constant IFF_ISATAP (line 487) | IFF_ISATAP = 0x80 constant IFF_LOOPBACK (line 488) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 489) | IFF_LOWER_UP = 0x10000 constant IFF_MACVLAN_PORT (line 490) | IFF_MACVLAN_PORT = 0x2000 constant IFF_MASTER (line 491) | IFF_MASTER = 0x400 constant IFF_MASTER_8023AD (line 492) | IFF_MASTER_8023AD = 0x8 constant IFF_MASTER_ALB (line 493) | IFF_MASTER_ALB = 0x10 constant IFF_MASTER_ARPMON (line 494) | IFF_MASTER_ARPMON = 0x100 constant IFF_MULTICAST (line 495) | IFF_MULTICAST = 0x1000 constant IFF_NOARP (line 496) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 497) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 498) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 499) | IFF_ONE_QUEUE = 0x2000 constant IFF_OVS_DATAPATH (line 500) | IFF_OVS_DATAPATH = 0x8000 constant IFF_POINTOPOINT (line 501) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 502) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 503) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 504) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 505) | IFF_SLAVE = 0x800 constant IFF_SLAVE_INACTIVE (line 506) | IFF_SLAVE_INACTIVE = 0x4 constant IFF_SLAVE_NEEDARP (line 507) | IFF_SLAVE_NEEDARP = 0x40 constant IFF_TAP (line 508) | IFF_TAP = 0x2 constant IFF_TUN (line 509) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 510) | IFF_TUN_EXCL = 0x8000 constant IFF_TX_SKB_SHARING (line 511) | IFF_TX_SKB_SHARING = 0x10000 constant IFF_UNICAST_FLT (line 512) | IFF_UNICAST_FLT = 0x20000 constant IFF_UP (line 513) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 514) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 515) | IFF_VOLATILE = 0x70c5a constant IFF_WAN_HDLC (line 516) | IFF_WAN_HDLC = 0x200 constant IFF_XMIT_DST_RELEASE (line 517) | IFF_XMIT_DST_RELEASE = 0x400 constant IFNAMSIZ (line 518) | IFNAMSIZ = 0x10 constant IGNBRK (line 519) | IGNBRK = 0x1 constant IGNCR (line 520) | IGNCR = 0x80 constant IGNPAR (line 521) | IGNPAR = 0x4 constant IMAXBEL (line 522) | IMAXBEL = 0x2000 constant INLCR (line 523) | INLCR = 0x40 constant INPCK (line 524) | INPCK = 0x10 constant IN_ACCESS (line 525) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 526) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 527) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 528) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 529) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 530) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 531) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 532) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 533) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 534) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 535) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 536) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 537) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 538) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 539) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 540) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 541) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 542) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 543) | IN_CREATE = 0x100 constant IN_DELETE (line 544) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 545) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 546) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 547) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 548) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 549) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 550) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 551) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 552) | IN_MODIFY = 0x2 constant IN_MOVE (line 553) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 554) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 555) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 556) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 557) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 558) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 559) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 560) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 561) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 562) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 563) | IPPROTO_AH = 0x33 constant IPPROTO_COMP (line 564) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 565) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 566) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 567) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 568) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 569) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 570) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 571) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 572) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 573) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 574) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 575) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 576) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 577) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 578) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 579) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MTP (line 580) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 581) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 582) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 583) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 584) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 585) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 586) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 587) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 588) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 589) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 590) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 591) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 592) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 593) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 594) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 595) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 596) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 597) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 598) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 599) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 600) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 601) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 602) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 603) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 604) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 605) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 606) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 607) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 608) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 609) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 610) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 611) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 612) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 613) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 614) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 615) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 616) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 617) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 618) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 619) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_PROBE (line 620) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 621) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 622) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 623) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 624) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 625) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 626) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 627) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 628) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 629) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 630) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 631) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 632) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 633) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 634) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 635) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 636) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 637) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 638) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 639) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 640) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 641) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 642) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 643) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 644) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 645) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 646) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 647) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 648) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 649) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 650) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 651) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 652) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 653) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 654) | IP_MF = 0x2000 constant IP_MINTTL (line 655) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 656) | IP_MSFILTER = 0x29 constant IP_MSS (line 657) | IP_MSS = 0x240 constant IP_MTU (line 658) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 659) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 660) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 661) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 662) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 663) | IP_MULTICAST_TTL = 0x21 constant IP_OFFMASK (line 664) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 665) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 666) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 667) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 668) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 669) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 670) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 671) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 672) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_PROBE (line 673) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 674) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 675) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 676) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 677) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 678) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 679) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 680) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 681) | IP_RETOPTS = 0x7 constant IP_RF (line 682) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 683) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 684) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 685) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 686) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 687) | IP_UNBLOCK_SOURCE = 0x25 constant IP_XFRM_POLICY (line 688) | IP_XFRM_POLICY = 0x11 constant ISIG (line 689) | ISIG = 0x1 constant ISTRIP (line 690) | ISTRIP = 0x20 constant IUCLC (line 691) | IUCLC = 0x200 constant IUTF8 (line 692) | IUTF8 = 0x4000 constant IXANY (line 693) | IXANY = 0x800 constant IXOFF (line 694) | IXOFF = 0x1000 constant IXON (line 695) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 696) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 697) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 698) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 699) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 700) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 701) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 702) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 703) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 704) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 705) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 706) | LOCK_EX = 0x2 constant LOCK_NB (line 707) | LOCK_NB = 0x4 constant LOCK_SH (line 708) | LOCK_SH = 0x1 constant LOCK_UN (line 709) | LOCK_UN = 0x8 constant MADV_DOFORK (line 710) | MADV_DOFORK = 0xb constant MADV_DONTFORK (line 711) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 712) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 713) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 714) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 715) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 716) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 717) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 718) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 719) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 720) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 721) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 722) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 723) | MAP_32BIT = 0x40 constant MAP_ANON (line 724) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 725) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 726) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 727) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 728) | MAP_FILE = 0x0 constant MAP_FIXED (line 729) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 730) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 731) | MAP_HUGETLB = 0x40000 constant MAP_LOCKED (line 732) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 733) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 734) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 735) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 736) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 737) | MAP_SHARED = 0x1 constant MAP_STACK (line 738) | MAP_STACK = 0x20000 constant MAP_TYPE (line 739) | MAP_TYPE = 0xf constant MCL_CURRENT (line 740) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 741) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 742) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 743) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 744) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 745) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 746) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 747) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 748) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 749) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 750) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 751) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 752) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 753) | MSG_FIN = 0x200 constant MSG_MORE (line 754) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 755) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 756) | MSG_OOB = 0x1 constant MSG_PEEK (line 757) | MSG_PEEK = 0x2 constant MSG_PROXY (line 758) | MSG_PROXY = 0x10 constant MSG_RST (line 759) | MSG_RST = 0x1000 constant MSG_SYN (line 760) | MSG_SYN = 0x400 constant MSG_TRUNC (line 761) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 762) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 763) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 764) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 765) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 766) | MS_ASYNC = 0x1 constant MS_BIND (line 767) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 768) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 769) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 770) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 771) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 772) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 773) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 774) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 775) | MS_MOVE = 0x2000 constant MS_NOATIME (line 776) | MS_NOATIME = 0x400 constant MS_NODEV (line 777) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 778) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 779) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 780) | MS_NOSUID = 0x2 constant MS_NOUSER (line 781) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 782) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 783) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 784) | MS_RDONLY = 0x1 constant MS_REC (line 785) | MS_REC = 0x4000 constant MS_RELATIME (line 786) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 787) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 788) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 789) | MS_SHARED = 0x100000 constant MS_SILENT (line 790) | MS_SILENT = 0x8000 constant MS_SLAVE (line 791) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 792) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 793) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 794) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 795) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 796) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 797) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 798) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 799) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 800) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 801) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 802) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 803) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 804) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 805) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 806) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 807) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 808) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 809) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 810) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 811) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 812) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 813) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 814) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 815) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 816) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 817) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 818) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 819) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 820) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 821) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 822) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 823) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 824) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 825) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 826) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 827) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 828) | NETLINK_XFRM = 0x6 constant NL0 (line 829) | NL0 = 0x0 constant NL1 (line 830) | NL1 = 0x100 constant NLA_ALIGNTO (line 831) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 832) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 833) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 834) | NLA_HDRLEN = 0x4 constant NLDLY (line 835) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 836) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 837) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 838) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 839) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 840) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 841) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 842) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 843) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 844) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 845) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 846) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 847) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 848) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 849) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 850) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 851) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 852) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 853) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 854) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 855) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 856) | NLM_F_ROOT = 0x100 constant NOFLSH (line 857) | NOFLSH = 0x80 constant OCRNL (line 858) | OCRNL = 0x8 constant OFDEL (line 859) | OFDEL = 0x80 constant OFILL (line 860) | OFILL = 0x40 constant OLCUC (line 861) | OLCUC = 0x2 constant ONLCR (line 862) | ONLCR = 0x4 constant ONLRET (line 863) | ONLRET = 0x20 constant ONOCR (line 864) | ONOCR = 0x10 constant OPOST (line 865) | OPOST = 0x1 constant O_ACCMODE (line 866) | O_ACCMODE = 0x3 constant O_APPEND (line 867) | O_APPEND = 0x400 constant O_ASYNC (line 868) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 869) | O_CLOEXEC = 0x80000 constant O_CREAT (line 870) | O_CREAT = 0x40 constant O_DIRECT (line 871) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 872) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 873) | O_DSYNC = 0x1000 constant O_EXCL (line 874) | O_EXCL = 0x80 constant O_FSYNC (line 875) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 876) | O_LARGEFILE = 0x0 constant O_NDELAY (line 877) | O_NDELAY = 0x800 constant O_NOATIME (line 878) | O_NOATIME = 0x40000 constant O_NOCTTY (line 879) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 880) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 881) | O_NONBLOCK = 0x800 constant O_PATH (line 882) | O_PATH = 0x200000 constant O_RDONLY (line 883) | O_RDONLY = 0x0 constant O_RDWR (line 884) | O_RDWR = 0x2 constant O_RSYNC (line 885) | O_RSYNC = 0x101000 constant O_SYNC (line 886) | O_SYNC = 0x101000 constant O_TMPFILE (line 887) | O_TMPFILE = 0x410000 constant O_TRUNC (line 888) | O_TRUNC = 0x200 constant O_WRONLY (line 889) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 890) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 891) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 892) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 893) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 894) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 895) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CPU (line 896) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_FLAG_DEFRAG (line 897) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_HASH (line 898) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 899) | PACKET_FANOUT_LB = 0x1 constant PACKET_FASTROUTE (line 900) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 901) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 902) | PACKET_HOST = 0x0 constant PACKET_LOOPBACK (line 903) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 904) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 905) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 906) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 907) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 908) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 909) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 910) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 911) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 912) | PACKET_OUTGOING = 0x4 constant PACKET_RECV_OUTPUT (line 913) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 914) | PACKET_RESERVE = 0xc constant PACKET_RX_RING (line 915) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 916) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 917) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_RING (line 918) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 919) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_VERSION (line 920) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 921) | PACKET_VNET_HDR = 0xf constant PARENB (line 922) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 923) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 924) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 925) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 926) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 927) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 928) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 929) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 930) | PARITY_NONE = 0x1 constant PARMRK (line 931) | PARMRK = 0x8 constant PARODD (line 932) | PARODD = 0x200 constant PENDIN (line 933) | PENDIN = 0x4000 constant PRIO_PGRP (line 934) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 935) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 936) | PRIO_USER = 0x2 constant PROT_EXEC (line 937) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 938) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 939) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 940) | PROT_NONE = 0x0 constant PROT_READ (line 941) | PROT_READ = 0x1 constant PROT_WRITE (line 942) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 943) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 944) | PR_CAPBSET_READ = 0x17 constant PR_ENDIAN_BIG (line 945) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 946) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 947) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 948) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 949) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 950) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 951) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 952) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 953) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 954) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 955) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 956) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 957) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 958) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 959) | PR_FP_EXC_UND = 0x40000 constant PR_GET_DUMPABLE (line 960) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 961) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 962) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 963) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 964) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 965) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 966) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 967) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 968) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 969) | PR_GET_SECUREBITS = 0x1b constant PR_GET_TIMERSLACK (line 970) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 971) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 972) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 973) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 974) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 975) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 976) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 977) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 978) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 979) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 980) | PR_MCE_KILL_SET = 0x1 constant PR_SET_DUMPABLE (line 981) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 982) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 983) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 984) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 985) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 986) | PR_SET_MM = 0x23 constant PR_SET_MM_BRK (line 987) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 988) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 989) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_START_BRK (line 990) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 991) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 992) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 993) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 994) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 995) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 996) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 997) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 998) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 999) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1000) | PR_SET_SECUREBITS = 0x1c constant PR_SET_TIMERSLACK (line 1001) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1002) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1003) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1004) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1005) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1006) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1007) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1008) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1009) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1010) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1011) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1012) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ARCH_PRCTL (line 1013) | PTRACE_ARCH_PRCTL = 0x1e constant PTRACE_ATTACH (line 1014) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1015) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1016) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1017) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1018) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1019) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1020) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1021) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1022) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1023) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1024) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1025) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1026) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPXREGS (line 1027) | PTRACE_GETFPXREGS = 0x12 constant PTRACE_GETREGS (line 1028) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1029) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1030) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GET_THREAD_AREA (line 1031) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_INTERRUPT (line 1032) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1033) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1034) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1035) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_MASK (line 1036) | PTRACE_O_MASK = 0xff constant PTRACE_O_TRACECLONE (line 1037) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1038) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1039) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1040) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1041) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1042) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1043) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1044) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1045) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKTEXT (line 1046) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1047) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1048) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1049) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1050) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1051) | PTRACE_SEIZE = 0x4206 constant PTRACE_SEIZE_DEVEL (line 1052) | PTRACE_SEIZE_DEVEL = 0x80000000 constant PTRACE_SETFPREGS (line 1053) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPXREGS (line 1054) | PTRACE_SETFPXREGS = 0x13 constant PTRACE_SETOPTIONS (line 1055) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1056) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1057) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1058) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SET_THREAD_AREA (line 1059) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SINGLEBLOCK (line 1060) | PTRACE_SINGLEBLOCK = 0x21 constant PTRACE_SINGLESTEP (line 1061) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1062) | PTRACE_SYSCALL = 0x18 constant PTRACE_SYSEMU (line 1063) | PTRACE_SYSEMU = 0x1f constant PTRACE_SYSEMU_SINGLESTEP (line 1064) | PTRACE_SYSEMU_SINGLESTEP = 0x20 constant PTRACE_TRACEME (line 1065) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1066) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1067) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1068) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1069) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1070) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1071) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 1072) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1073) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1074) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 1075) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1076) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1077) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1078) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1079) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1080) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1081) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1082) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1083) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1084) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1085) | RTAX_MAX = 0xe constant RTAX_MTU (line 1086) | RTAX_MTU = 0x2 constant RTAX_REORDERING (line 1087) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1088) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1089) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1090) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1091) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1092) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1093) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1094) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1095) | RTA_MAX = 0x10 constant RTCF_DIRECTSRC (line 1096) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1097) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1098) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1099) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1100) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1101) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1102) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1103) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1104) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1105) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1106) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1107) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1108) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1109) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1110) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1111) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1112) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1113) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1114) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1115) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1116) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1117) | RTF_MSS = 0x40 constant RTF_MTU (line 1118) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1119) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1120) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1121) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1122) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1123) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1124) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1125) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1126) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1127) | RTF_STATIC = 0x400 constant RTF_THROW (line 1128) | RTF_THROW = 0x2000 constant RTF_UP (line 1129) | RTF_UP = 0x1 constant RTF_WINDOW (line 1130) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1131) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1132) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1133) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1134) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1135) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1136) | RTM_DELLINK = 0x11 constant RTM_DELNEIGH (line 1137) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1138) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1139) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1140) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1141) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1142) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1143) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1144) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1145) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1146) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1147) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1148) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1149) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1150) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1151) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1152) | RTM_GETLINK = 0x12 constant RTM_GETMULTICAST (line 1153) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1154) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1155) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETQDISC (line 1156) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1157) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1158) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1159) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1160) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1161) | RTM_MAX = 0x4f constant RTM_NEWACTION (line 1162) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1163) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1164) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1165) | RTM_NEWLINK = 0x10 constant RTM_NEWNDUSEROPT (line 1166) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1167) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1168) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWPREFIX (line 1169) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1170) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1171) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1172) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1173) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1174) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1175) | RTM_NR_FAMILIES = 0x10 constant RTM_NR_MSGTYPES (line 1176) | RTM_NR_MSGTYPES = 0x40 constant RTM_SETDCB (line 1177) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1178) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1179) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1180) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1181) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1182) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1183) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1184) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1185) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1186) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1187) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1188) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1189) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1190) | RTPROT_KERNEL = 0x2 constant RTPROT_MRT (line 1191) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1192) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1193) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1194) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1195) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1196) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1197) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1198) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1199) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1200) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1201) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1202) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1203) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1204) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1205) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1206) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1207) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1208) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1209) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1210) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1211) | SCM_TIMESTAMPNS = 0x23 constant SHUT_RD (line 1212) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1213) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1214) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1215) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1216) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1217) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1218) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1219) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1220) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1221) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1222) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1223) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1224) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1225) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1226) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1227) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1228) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1229) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1230) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1231) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1232) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1233) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1234) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1235) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1236) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1237) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1238) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1239) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1240) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1241) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1242) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1243) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1244) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1245) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1246) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1247) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1248) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1249) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1250) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1251) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1252) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1253) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1254) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1255) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1256) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1257) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1258) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1259) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1260) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1261) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1262) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1263) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1264) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1265) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1266) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1267) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1268) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1269) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1270) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1271) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1272) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1273) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1274) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1275) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1276) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1277) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1278) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1279) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1280) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1281) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1282) | SOL_AAL = 0x109 constant SOL_ATM (line 1283) | SOL_ATM = 0x108 constant SOL_DECNET (line 1284) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1285) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1286) | SOL_IP = 0x0 constant SOL_IPV6 (line 1287) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1288) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1289) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1290) | SOL_PACKET = 0x107 constant SOL_RAW (line 1291) | SOL_RAW = 0xff constant SOL_SOCKET (line 1292) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1293) | SOL_TCP = 0x6 constant SOL_X25 (line 1294) | SOL_X25 = 0x106 constant SOMAXCONN (line 1295) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1296) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_FILTER (line 1297) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1298) | SO_BINDTODEVICE = 0x19 constant SO_BROADCAST (line 1299) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1300) | SO_BSDCOMPAT = 0xe constant SO_DEBUG (line 1301) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1302) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1303) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1304) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1305) | SO_ERROR = 0x4 constant SO_KEEPALIVE (line 1306) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1307) | SO_LINGER = 0xd constant SO_MARK (line 1308) | SO_MARK = 0x24 constant SO_NO_CHECK (line 1309) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1310) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1311) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1312) | SO_PASSSEC = 0x22 constant SO_PEERCRED (line 1313) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1314) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1315) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1316) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1317) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1318) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1319) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1320) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1321) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1322) | SO_REUSEADDR = 0x2 constant SO_RXQ_OVFL (line 1323) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1324) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1325) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1326) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SNDBUF (line 1327) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1328) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1329) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1330) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1331) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1332) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1333) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1334) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1335) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1336) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1337) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1338) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1339) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1340) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1341) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SPLICE_F_GIFT (line 1342) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1343) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1344) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1345) | SPLICE_F_NONBLOCK = 0x2 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_IREAD (line 1356) | S_IREAD = 0x100 constant S_IRGRP (line 1357) | S_IRGRP = 0x20 constant S_IROTH (line 1358) | S_IROTH = 0x4 constant S_IRUSR (line 1359) | S_IRUSR = 0x100 constant S_IRWXG (line 1360) | S_IRWXG = 0x38 constant S_IRWXO (line 1361) | S_IRWXO = 0x7 constant S_IRWXU (line 1362) | S_IRWXU = 0x1c0 constant S_ISGID (line 1363) | S_ISGID = 0x400 constant S_ISUID (line 1364) | S_ISUID = 0x800 constant S_ISVTX (line 1365) | S_ISVTX = 0x200 constant S_IWGRP (line 1366) | S_IWGRP = 0x10 constant S_IWOTH (line 1367) | S_IWOTH = 0x2 constant S_IWRITE (line 1368) | S_IWRITE = 0x80 constant S_IWUSR (line 1369) | S_IWUSR = 0x80 constant S_IXGRP (line 1370) | S_IXGRP = 0x8 constant S_IXOTH (line 1371) | S_IXOTH = 0x1 constant S_IXUSR (line 1372) | S_IXUSR = 0x40 constant TAB0 (line 1373) | TAB0 = 0x0 constant TAB1 (line 1374) | TAB1 = 0x800 constant TAB2 (line 1375) | TAB2 = 0x1000 constant TAB3 (line 1376) | TAB3 = 0x1800 constant TABDLY (line 1377) | TABDLY = 0x1800 constant TCFLSH (line 1378) | TCFLSH = 0x540b constant TCGETA (line 1379) | TCGETA = 0x5405 constant TCGETS (line 1380) | TCGETS = 0x5401 constant TCGETS2 (line 1381) | TCGETS2 = 0x802c542a constant TCGETX (line 1382) | TCGETX = 0x5432 constant TCIFLUSH (line 1383) | TCIFLUSH = 0x0 constant TCIOFF (line 1384) | TCIOFF = 0x2 constant TCIOFLUSH (line 1385) | TCIOFLUSH = 0x2 constant TCION (line 1386) | TCION = 0x3 constant TCOFLUSH (line 1387) | TCOFLUSH = 0x1 constant TCOOFF (line 1388) | TCOOFF = 0x0 constant TCOON (line 1389) | TCOON = 0x1 constant TCP_CONGESTION (line 1390) | TCP_CONGESTION = 0xd constant TCP_CORK (line 1391) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1392) | TCP_DEFER_ACCEPT = 0x9 constant TCP_INFO (line 1393) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1394) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1395) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1396) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1397) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1398) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1399) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1400) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1401) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1402) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1403) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1404) | TCP_NODELAY = 0x1 constant TCP_QUICKACK (line 1405) | TCP_QUICKACK = 0xc constant TCP_SYNCNT (line 1406) | TCP_SYNCNT = 0x7 constant TCP_WINDOW_CLAMP (line 1407) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1408) | TCSAFLUSH = 0x2 constant TCSBRK (line 1409) | TCSBRK = 0x5409 constant TCSBRKP (line 1410) | TCSBRKP = 0x5425 constant TCSETA (line 1411) | TCSETA = 0x5406 constant TCSETAF (line 1412) | TCSETAF = 0x5408 constant TCSETAW (line 1413) | TCSETAW = 0x5407 constant TCSETS (line 1414) | TCSETS = 0x5402 constant TCSETS2 (line 1415) | TCSETS2 = 0x402c542b constant TCSETSF (line 1416) | TCSETSF = 0x5404 constant TCSETSF2 (line 1417) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1418) | TCSETSW = 0x5403 constant TCSETSW2 (line 1419) | TCSETSW2 = 0x402c542c constant TCSETX (line 1420) | TCSETX = 0x5433 constant TCSETXF (line 1421) | TCSETXF = 0x5434 constant TCSETXW (line 1422) | TCSETXW = 0x5435 constant TCXONC (line 1423) | TCXONC = 0x540a constant TIOCCBRK (line 1424) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1425) | TIOCCONS = 0x541d constant TIOCEXCL (line 1426) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1427) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1428) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1429) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1430) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1431) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1432) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1433) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1434) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1435) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1436) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1437) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1438) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1439) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1440) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1441) | TIOCINQ = 0x541b constant TIOCLINUX (line 1442) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1443) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1444) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1445) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1446) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1447) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1448) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1449) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1450) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1451) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1452) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1453) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1454) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1455) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1456) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1457) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1458) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1459) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1460) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1461) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1462) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1463) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1464) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1465) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1466) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1467) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1468) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1469) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1470) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1471) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1472) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1473) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1474) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1475) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1476) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1477) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1478) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1479) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1480) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1481) | TIOCSETD = 0x5423 constant TIOCSIG (line 1482) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1483) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1484) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1485) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1486) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1487) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1488) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1489) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1490) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1491) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1492) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1493) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 1494) | TUNDETACHFILTER = 0x401054d6 constant TUNGETFEATURES (line 1495) | TUNGETFEATURES = 0x800454cf constant TUNGETIFF (line 1496) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1497) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETHDRSZ (line 1498) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNSETDEBUG (line 1499) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1500) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1501) | TUNSETIFF = 0x400454ca constant TUNSETLINK (line 1502) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1503) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1504) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1505) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1506) | TUNSETPERSIST = 0x400454cb constant TUNSETSNDBUF (line 1507) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1508) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETHDRSZ (line 1509) | TUNSETVNETHDRSZ = 0x400454d8 constant VDISCARD (line 1510) | VDISCARD = 0xd constant VEOF (line 1511) | VEOF = 0x4 constant VEOL (line 1512) | VEOL = 0xb constant VEOL2 (line 1513) | VEOL2 = 0x10 constant VERASE (line 1514) | VERASE = 0x2 constant VINTR (line 1515) | VINTR = 0x0 constant VKILL (line 1516) | VKILL = 0x3 constant VLNEXT (line 1517) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1518) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1519) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1520) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1521) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1522) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1523) | VMIN = 0x6 constant VM_SOCKETS_INVALID_VERSION (line 1524) | VM_SOCKETS_INVALID_VERSION = 0xffffffff constant VQUIT (line 1525) | VQUIT = 0x1 constant VREPRINT (line 1526) | VREPRINT = 0xc constant VSTART (line 1527) | VSTART = 0x8 constant VSTOP (line 1528) | VSTOP = 0x9 constant VSUSP (line 1529) | VSUSP = 0xa constant VSWTC (line 1530) | VSWTC = 0x7 constant VT0 (line 1531) | VT0 = 0x0 constant VT1 (line 1532) | VT1 = 0x4000 constant VTDLY (line 1533) | VTDLY = 0x4000 constant VTIME (line 1534) | VTIME = 0x5 constant VWERASE (line 1535) | VWERASE = 0xe constant WALL (line 1536) | WALL = 0x40000000 constant WCLONE (line 1537) | WCLONE = 0x80000000 constant WCONTINUED (line 1538) | WCONTINUED = 0x8 constant WEXITED (line 1539) | WEXITED = 0x4 constant WNOHANG (line 1540) | WNOHANG = 0x1 constant WNOTHREAD (line 1541) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1542) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1543) | WORDSIZE = 0x40 constant WSTOPPED (line 1544) | WSTOPPED = 0x2 constant WUNTRACED (line 1545) | WUNTRACED = 0x2 constant XCASE (line 1546) | XCASE = 0x4 constant XTABS (line 1547) | XTABS = 0x1800 constant E2BIG (line 1552) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1553) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1554) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1555) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1556) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1557) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1558) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1559) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1560) | EBADE = syscall.Errno(0x34) constant EBADF (line 1561) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1562) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1563) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1564) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1565) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1566) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1567) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1568) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1569) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1570) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1571) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1572) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1573) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1574) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1575) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1576) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1577) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1578) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1579) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1580) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1581) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1582) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1583) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1584) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1585) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1586) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1587) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1588) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1589) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1590) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1591) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1592) | EINVAL = syscall.Errno(0x16) constant EIO (line 1593) | EIO = syscall.Errno(0x5) constant EISCONN (line 1594) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1595) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1596) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1597) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1598) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1599) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1600) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1601) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1602) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1603) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1604) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1605) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1606) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1607) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1608) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1609) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1610) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1611) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1612) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1613) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1614) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1615) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1616) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1617) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1618) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1619) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1620) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1621) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1622) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1623) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1624) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1625) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1626) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1627) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1628) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1629) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1630) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1631) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1632) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1633) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1634) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1635) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1636) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1637) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1638) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1639) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1640) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1641) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1642) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1643) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1644) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1645) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1646) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1647) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1648) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1649) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1650) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1651) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1652) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1653) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1654) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1655) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1656) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1657) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1658) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1659) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1660) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1661) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1662) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1663) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1664) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1665) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1666) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1667) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1668) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1669) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1670) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1671) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1672) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1673) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1674) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1675) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1676) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1677) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1678) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1679) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1680) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1681) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1682) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1683) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1684) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1685) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1690) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1691) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1692) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1693) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1694) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1695) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1696) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1697) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1698) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1699) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1700) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1701) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1702) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1703) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1704) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1705) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1706) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1707) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1708) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1709) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1710) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1711) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1712) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1713) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1714) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1715) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1716) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1717) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1718) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1719) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1720) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1721) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1722) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1723) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1724) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x27 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_PACKET (line 41) | AF_PACKET = 0x11 constant AF_PHONET (line 42) | AF_PHONET = 0x23 constant AF_PPPOX (line 43) | AF_PPPOX = 0x18 constant AF_RDS (line 44) | AF_RDS = 0x15 constant AF_ROSE (line 45) | AF_ROSE = 0xb constant AF_ROUTE (line 46) | AF_ROUTE = 0x10 constant AF_RXRPC (line 47) | AF_RXRPC = 0x21 constant AF_SECURITY (line 48) | AF_SECURITY = 0xe constant AF_SNA (line 49) | AF_SNA = 0x16 constant AF_TIPC (line 50) | AF_TIPC = 0x1e constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 53) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 54) | AF_WANPIPE = 0x19 constant AF_X25 (line 55) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 56) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 57) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 58) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 59) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 60) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 61) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 62) | ALG_SET_OP = 0x3 constant ARPHRD_ADAPT (line 63) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 64) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 65) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 66) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 67) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 68) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 69) | ARPHRD_BIF = 0x307 constant ARPHRD_CHAOS (line 70) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 71) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 72) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 73) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 74) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 75) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 76) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 77) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 78) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 79) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 80) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 81) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 82) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 83) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 84) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 85) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 86) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 87) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 88) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 89) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 90) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 91) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 92) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 93) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 94) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_PHY (line 95) | ARPHRD_IEEE802154_PHY = 0x325 constant ARPHRD_IEEE802_TR (line 96) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 97) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IPDDP (line 98) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 99) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 100) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 101) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 102) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 103) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 104) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETROM (line 105) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 106) | ARPHRD_NONE = 0xfffe constant ARPHRD_PIMREG (line 107) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 108) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 109) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 110) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 111) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 112) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 113) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 114) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 115) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 116) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 117) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 118) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 119) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 120) | ARPHRD_X25 = 0x10f constant B0 (line 121) | B0 = 0x0 constant B1000000 (line 122) | B1000000 = 0x1008 constant B110 (line 123) | B110 = 0x3 constant B115200 (line 124) | B115200 = 0x1002 constant B1152000 (line 125) | B1152000 = 0x1009 constant B1200 (line 126) | B1200 = 0x9 constant B134 (line 127) | B134 = 0x4 constant B150 (line 128) | B150 = 0x5 constant B1500000 (line 129) | B1500000 = 0x100a constant B1800 (line 130) | B1800 = 0xa constant B19200 (line 131) | B19200 = 0xe constant B200 (line 132) | B200 = 0x6 constant B2000000 (line 133) | B2000000 = 0x100b constant B230400 (line 134) | B230400 = 0x1003 constant B2400 (line 135) | B2400 = 0xb constant B2500000 (line 136) | B2500000 = 0x100c constant B300 (line 137) | B300 = 0x7 constant B3000000 (line 138) | B3000000 = 0x100d constant B3500000 (line 139) | B3500000 = 0x100e constant B38400 (line 140) | B38400 = 0xf constant B4000000 (line 141) | B4000000 = 0x100f constant B460800 (line 142) | B460800 = 0x1004 constant B4800 (line 143) | B4800 = 0xc constant B50 (line 144) | B50 = 0x1 constant B500000 (line 145) | B500000 = 0x1005 constant B57600 (line 146) | B57600 = 0x1001 constant B576000 (line 147) | B576000 = 0x1006 constant B600 (line 148) | B600 = 0x8 constant B75 (line 149) | B75 = 0x2 constant B921600 (line 150) | B921600 = 0x1007 constant B9600 (line 151) | B9600 = 0xd constant BLKBSZGET (line 152) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 153) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 154) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 155) | BLKFRAGET = 0x1265 constant BLKFRASET (line 156) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 157) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 158) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 159) | BLKRAGET = 0x1263 constant BLKRASET (line 160) | BLKRASET = 0x1262 constant BLKROGET (line 161) | BLKROGET = 0x125e constant BLKROSET (line 162) | BLKROSET = 0x125d constant BLKRRPART (line 163) | BLKRRPART = 0x125f constant BLKSECTGET (line 164) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 165) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 166) | BLKSSZGET = 0x1268 constant BOTHER (line 167) | BOTHER = 0x1000 constant BPF_A (line 168) | BPF_A = 0x10 constant BPF_ABS (line 169) | BPF_ABS = 0x20 constant BPF_ADD (line 170) | BPF_ADD = 0x0 constant BPF_ALU (line 171) | BPF_ALU = 0x4 constant BPF_AND (line 172) | BPF_AND = 0x50 constant BPF_B (line 173) | BPF_B = 0x10 constant BPF_DIV (line 174) | BPF_DIV = 0x30 constant BPF_H (line 175) | BPF_H = 0x8 constant BPF_IMM (line 176) | BPF_IMM = 0x0 constant BPF_IND (line 177) | BPF_IND = 0x40 constant BPF_JA (line 178) | BPF_JA = 0x0 constant BPF_JEQ (line 179) | BPF_JEQ = 0x10 constant BPF_JGE (line 180) | BPF_JGE = 0x30 constant BPF_JGT (line 181) | BPF_JGT = 0x20 constant BPF_JMP (line 182) | BPF_JMP = 0x5 constant BPF_JSET (line 183) | BPF_JSET = 0x40 constant BPF_K (line 184) | BPF_K = 0x0 constant BPF_LD (line 185) | BPF_LD = 0x0 constant BPF_LDX (line 186) | BPF_LDX = 0x1 constant BPF_LEN (line 187) | BPF_LEN = 0x80 constant BPF_LSH (line 188) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 189) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 190) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 191) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 192) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 193) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 194) | BPF_MISC = 0x7 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_RET (line 199) | BPF_RET = 0x6 constant BPF_RSH (line 200) | BPF_RSH = 0x70 constant BPF_ST (line 201) | BPF_ST = 0x2 constant BPF_STX (line 202) | BPF_STX = 0x3 constant BPF_SUB (line 203) | BPF_SUB = 0x10 constant BPF_TAX (line 204) | BPF_TAX = 0x0 constant BPF_TXA (line 205) | BPF_TXA = 0x80 constant BPF_W (line 206) | BPF_W = 0x0 constant BPF_X (line 207) | BPF_X = 0x8 constant BRKINT (line 208) | BRKINT = 0x2 constant BS0 (line 209) | BS0 = 0x0 constant BS1 (line 210) | BS1 = 0x2000 constant BSDLY (line 211) | BSDLY = 0x2000 constant CAN_BCM (line 212) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 213) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 214) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 215) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 216) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 217) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 218) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 219) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 220) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 221) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 222) | CAN_MCNET = 0x5 constant CAN_MTU (line 223) | CAN_MTU = 0x10 constant CAN_NPROTO (line 224) | CAN_NPROTO = 0x7 constant CAN_RAW (line 225) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 226) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 227) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 228) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 229) | CAN_TP16 = 0x3 constant CAN_TP20 (line 230) | CAN_TP20 = 0x4 constant CBAUD (line 231) | CBAUD = 0x100f constant CBAUDEX (line 232) | CBAUDEX = 0x1000 constant CFLUSH (line 233) | CFLUSH = 0xf constant CIBAUD (line 234) | CIBAUD = 0x100f0000 constant CLOCAL (line 235) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 236) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 237) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 238) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 239) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 240) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 241) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 242) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 243) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 244) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 245) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 246) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 247) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 248) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 249) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 250) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 251) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 252) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 253) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 254) | CLONE_FILES = 0x400 constant CLONE_FS (line 255) | CLONE_FS = 0x200 constant CLONE_IO (line 256) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 257) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 258) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 259) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 260) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 261) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 262) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 263) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 264) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 265) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 266) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 267) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 268) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 269) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 270) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 271) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 272) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 273) | CLONE_VM = 0x100 constant CMSPAR (line 274) | CMSPAR = 0x40000000 constant CR0 (line 275) | CR0 = 0x0 constant CR1 (line 276) | CR1 = 0x200 constant CR2 (line 277) | CR2 = 0x400 constant CR3 (line 278) | CR3 = 0x600 constant CRDLY (line 279) | CRDLY = 0x600 constant CREAD (line 280) | CREAD = 0x80 constant CRTSCTS (line 281) | CRTSCTS = 0x80000000 constant CS5 (line 282) | CS5 = 0x0 constant CS6 (line 283) | CS6 = 0x10 constant CS7 (line 284) | CS7 = 0x20 constant CS8 (line 285) | CS8 = 0x30 constant CSIGNAL (line 286) | CSIGNAL = 0xff constant CSIZE (line 287) | CSIZE = 0x30 constant CSTART (line 288) | CSTART = 0x11 constant CSTATUS (line 289) | CSTATUS = 0x0 constant CSTOP (line 290) | CSTOP = 0x13 constant CSTOPB (line 291) | CSTOPB = 0x40 constant CSUSP (line 292) | CSUSP = 0x1a constant DT_BLK (line 293) | DT_BLK = 0x6 constant DT_CHR (line 294) | DT_CHR = 0x2 constant DT_DIR (line 295) | DT_DIR = 0x4 constant DT_FIFO (line 296) | DT_FIFO = 0x1 constant DT_LNK (line 297) | DT_LNK = 0xa constant DT_REG (line 298) | DT_REG = 0x8 constant DT_SOCK (line 299) | DT_SOCK = 0xc constant DT_UNKNOWN (line 300) | DT_UNKNOWN = 0x0 constant DT_WHT (line 301) | DT_WHT = 0xe constant ELF_NGREG (line 302) | ELF_NGREG = 0x12 constant ELF_PRARGSZ (line 303) | ELF_PRARGSZ = 0x50 constant ECHO (line 304) | ECHO = 0x8 constant ECHOCTL (line 305) | ECHOCTL = 0x200 constant ECHOE (line 306) | ECHOE = 0x10 constant ECHOK (line 307) | ECHOK = 0x20 constant ECHOKE (line 308) | ECHOKE = 0x800 constant ECHONL (line 309) | ECHONL = 0x40 constant ECHOPRT (line 310) | ECHOPRT = 0x400 constant EPOLLERR (line 311) | EPOLLERR = 0x8 constant EPOLLET (line 312) | EPOLLET = -0x80000000 constant EPOLLHUP (line 313) | EPOLLHUP = 0x10 constant EPOLLIN (line 314) | EPOLLIN = 0x1 constant EPOLLMSG (line 315) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 316) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 317) | EPOLLOUT = 0x4 constant EPOLLPRI (line 318) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 319) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 320) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 321) | EPOLLRDNORM = 0x40 constant EPOLLWRBAND (line 322) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 323) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 324) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 325) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 326) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 327) | EPOLL_CTL_MOD = 0x3 constant EPOLL_NONBLOCK (line 328) | EPOLL_NONBLOCK = 0x800 constant ETH_P_1588 (line 329) | ETH_P_1588 = 0x88f7 constant ETH_P_8021Q (line 330) | ETH_P_8021Q = 0x8100 constant ETH_P_802_2 (line 331) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 332) | ETH_P_802_3 = 0x1 constant ETH_P_AARP (line 333) | ETH_P_AARP = 0x80f3 constant ETH_P_ALL (line 334) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 335) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 336) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 337) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 338) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 339) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 340) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 341) | ETH_P_AX25 = 0x2 constant ETH_P_BPQ (line 342) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 343) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 344) | ETH_P_CAN = 0xc constant ETH_P_CONTROL (line 345) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 346) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 347) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 348) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 349) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 350) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 351) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 352) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 353) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 354) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 355) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 356) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 357) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 358) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 359) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 360) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 361) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 362) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 363) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 364) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 365) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 366) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 367) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 368) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 369) | ETH_P_LOOP = 0x60 constant ETH_P_MOBITEX (line 370) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 371) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 372) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_PAE (line 373) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 374) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 375) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 376) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 377) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 378) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 379) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PUP (line 380) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 381) | ETH_P_PUPAT = 0x201 constant ETH_P_RARP (line 382) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 383) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 384) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 385) | ETH_P_SNAP = 0x5 constant ETH_P_TEB (line 386) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 387) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 388) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 389) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 390) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 391) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 392) | ETH_P_X25 = 0x805 constant EXTA (line 393) | EXTA = 0xe constant EXTB (line 394) | EXTB = 0xf constant EXTPROC (line 395) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 396) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 397) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 398) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 399) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 400) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 401) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 402) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 403) | FD_SETSIZE = 0x400 constant FF0 (line 404) | FF0 = 0x0 constant FF1 (line 405) | FF1 = 0x8000 constant FFDLY (line 406) | FFDLY = 0x8000 constant FLUSHO (line 407) | FLUSHO = 0x1000 constant F_DUPFD (line 408) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 409) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 410) | F_EXLCK = 0x4 constant F_GETFD (line 411) | F_GETFD = 0x1 constant F_GETFL (line 412) | F_GETFL = 0x3 constant F_GETLEASE (line 413) | F_GETLEASE = 0x401 constant F_GETLK (line 414) | F_GETLK = 0xc constant F_GETLK64 (line 415) | F_GETLK64 = 0xc constant F_GETOWN (line 416) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 417) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 418) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 419) | F_GETSIG = 0xb constant F_LOCK (line 420) | F_LOCK = 0x1 constant F_NOTIFY (line 421) | F_NOTIFY = 0x402 constant F_OK (line 422) | F_OK = 0x0 constant F_RDLCK (line 423) | F_RDLCK = 0x0 constant F_SETFD (line 424) | F_SETFD = 0x2 constant F_SETFL (line 425) | F_SETFL = 0x4 constant F_SETLEASE (line 426) | F_SETLEASE = 0x400 constant F_SETLK (line 427) | F_SETLK = 0xd constant F_SETLK64 (line 428) | F_SETLK64 = 0xd constant F_SETLKW (line 429) | F_SETLKW = 0xe constant F_SETLKW64 (line 430) | F_SETLKW64 = 0xe constant F_SETOWN (line 431) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 432) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 433) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 434) | F_SETSIG = 0xa constant F_SHLCK (line 435) | F_SHLCK = 0x8 constant F_TEST (line 436) | F_TEST = 0x3 constant F_TLOCK (line 437) | F_TLOCK = 0x2 constant F_ULOCK (line 438) | F_ULOCK = 0x0 constant F_UNLCK (line 439) | F_UNLCK = 0x2 constant F_WRLCK (line 440) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 441) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 442) | GRND_RANDOM = 0x2 constant HUPCL (line 443) | HUPCL = 0x400 constant IBSHIFT (line 444) | IBSHIFT = 0x10 constant ICANON (line 445) | ICANON = 0x2 constant ICMPV6_FILTER (line 446) | ICMPV6_FILTER = 0x1 constant ICRNL (line 447) | ICRNL = 0x100 constant IEXTEN (line 448) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 449) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 450) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 451) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_NODAD (line 452) | IFA_F_NODAD = 0x2 constant IFA_F_OPTIMISTIC (line 453) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 454) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 455) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 456) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 457) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 458) | IFA_MAX = 0x7 constant IFF_ALLMULTI (line 459) | IFF_ALLMULTI = 0x200 constant IFF_AUTOMEDIA (line 460) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 461) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 462) | IFF_DEBUG = 0x4 constant IFF_DYNAMIC (line 463) | IFF_DYNAMIC = 0x8000 constant IFF_LOOPBACK (line 464) | IFF_LOOPBACK = 0x8 constant IFF_MASTER (line 465) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 466) | IFF_MULTICAST = 0x1000 constant IFF_NOARP (line 467) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 468) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 469) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 470) | IFF_ONE_QUEUE = 0x2000 constant IFF_POINTOPOINT (line 471) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 472) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 473) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 474) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 475) | IFF_SLAVE = 0x800 constant IFF_TAP (line 476) | IFF_TAP = 0x2 constant IFF_TUN (line 477) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 478) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 479) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 480) | IFF_VNET_HDR = 0x4000 constant IFNAMSIZ (line 481) | IFNAMSIZ = 0x10 constant IGNBRK (line 482) | IGNBRK = 0x1 constant IGNCR (line 483) | IGNCR = 0x80 constant IGNPAR (line 484) | IGNPAR = 0x4 constant IMAXBEL (line 485) | IMAXBEL = 0x2000 constant INLCR (line 486) | INLCR = 0x40 constant INPCK (line 487) | INPCK = 0x10 constant IN_ACCESS (line 488) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 489) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 490) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 491) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 492) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 493) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 494) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 495) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 496) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 497) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 498) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 499) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 500) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 501) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 502) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 503) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 504) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 505) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 506) | IN_CREATE = 0x100 constant IN_DELETE (line 507) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 508) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 509) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 510) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 511) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 512) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 513) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 514) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 515) | IN_MODIFY = 0x2 constant IN_MOVE (line 516) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 517) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 518) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 519) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 520) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 521) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 522) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 523) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 524) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 525) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 526) | IPPROTO_AH = 0x33 constant IPPROTO_COMP (line 527) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 528) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 529) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 530) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 531) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 532) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 533) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 534) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 535) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 536) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 537) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 538) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 539) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 540) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 541) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 542) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MTP (line 543) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 544) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 545) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 546) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 547) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 548) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 549) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 550) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 551) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 552) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 553) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 554) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 555) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 556) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 557) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 558) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 559) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 560) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 561) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 562) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 563) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 564) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 565) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 566) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 567) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 568) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 569) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 570) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 571) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 572) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 573) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 574) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 575) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 576) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 577) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 578) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 579) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 580) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 581) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 582) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_PROBE (line 583) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 584) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 585) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 586) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 587) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 588) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 589) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 590) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 591) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 592) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 593) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 594) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 595) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 596) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 597) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 598) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 599) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 600) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 601) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 602) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 603) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 604) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 605) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 606) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 607) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 608) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 609) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 610) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 611) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 612) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 613) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 614) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 615) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 616) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 617) | IP_MF = 0x2000 constant IP_MINTTL (line 618) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 619) | IP_MSFILTER = 0x29 constant IP_MSS (line 620) | IP_MSS = 0x240 constant IP_MTU (line 621) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 622) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_IF (line 623) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 624) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 625) | IP_MULTICAST_TTL = 0x21 constant IP_OFFMASK (line 626) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 627) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 628) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 629) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 630) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 631) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 632) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 633) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 634) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_PROBE (line 635) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 636) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 637) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 638) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 639) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 640) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 641) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 642) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 643) | IP_RETOPTS = 0x7 constant IP_RF (line 644) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 645) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 646) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 647) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 648) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 649) | IP_UNBLOCK_SOURCE = 0x25 constant IP_XFRM_POLICY (line 650) | IP_XFRM_POLICY = 0x11 constant ISIG (line 651) | ISIG = 0x1 constant ISTRIP (line 652) | ISTRIP = 0x20 constant IUCLC (line 653) | IUCLC = 0x200 constant IUTF8 (line 654) | IUTF8 = 0x4000 constant IXANY (line 655) | IXANY = 0x800 constant IXOFF (line 656) | IXOFF = 0x1000 constant IXON (line 657) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 658) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 659) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 660) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 661) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 662) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 663) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 664) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 665) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 666) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 667) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 668) | LOCK_EX = 0x2 constant LOCK_NB (line 669) | LOCK_NB = 0x4 constant LOCK_SH (line 670) | LOCK_SH = 0x1 constant LOCK_UN (line 671) | LOCK_UN = 0x8 constant MADV_DOFORK (line 672) | MADV_DOFORK = 0xb constant MADV_DONTFORK (line 673) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 674) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 675) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 676) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 677) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 678) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 679) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 680) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 681) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 682) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 683) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 684) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 685) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 686) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 687) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 688) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 689) | MAP_FILE = 0x0 constant MAP_FIXED (line 690) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 691) | MAP_GROWSDOWN = 0x100 constant MAP_LOCKED (line 692) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 693) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 694) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 695) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 696) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 697) | MAP_SHARED = 0x1 constant MAP_TYPE (line 698) | MAP_TYPE = 0xf constant MCL_CURRENT (line 699) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 700) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 701) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 702) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 703) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 704) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 705) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 706) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 707) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 708) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 709) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 710) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 711) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 712) | MSG_FIN = 0x200 constant MSG_MORE (line 713) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 714) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 715) | MSG_OOB = 0x1 constant MSG_PEEK (line 716) | MSG_PEEK = 0x2 constant MSG_PROXY (line 717) | MSG_PROXY = 0x10 constant MSG_RST (line 718) | MSG_RST = 0x1000 constant MSG_SYN (line 719) | MSG_SYN = 0x400 constant MSG_TRUNC (line 720) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 721) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 722) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 723) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 724) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 725) | MS_ASYNC = 0x1 constant MS_BIND (line 726) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 727) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 728) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 729) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 730) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 731) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 732) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 733) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 734) | MS_MOVE = 0x2000 constant MS_NOATIME (line 735) | MS_NOATIME = 0x400 constant MS_NODEV (line 736) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 737) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 738) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 739) | MS_NOSUID = 0x2 constant MS_NOUSER (line 740) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 741) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 742) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 743) | MS_RDONLY = 0x1 constant MS_REC (line 744) | MS_REC = 0x4000 constant MS_RELATIME (line 745) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 746) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 747) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 748) | MS_SHARED = 0x100000 constant MS_SILENT (line 749) | MS_SILENT = 0x8000 constant MS_SLAVE (line 750) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 751) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 752) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 753) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 754) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 755) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 756) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 757) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 758) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CONNECTOR (line 759) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 760) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 761) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 762) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 763) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 764) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 765) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 766) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 767) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 768) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 769) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 770) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_NETFILTER (line 771) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 772) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 773) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 774) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 775) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 776) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 777) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 778) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 779) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 780) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 781) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 782) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 783) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 784) | NETLINK_XFRM = 0x6 constant NL0 (line 785) | NL0 = 0x0 constant NL1 (line 786) | NL1 = 0x100 constant NLA_ALIGNTO (line 787) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 788) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 789) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 790) | NLA_HDRLEN = 0x4 constant NLDLY (line 791) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 792) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 793) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 794) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 795) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 796) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 797) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 798) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 799) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 800) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 801) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 802) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 803) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 804) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_ECHO (line 805) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 806) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 807) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 808) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 809) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 810) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 811) | NLM_F_ROOT = 0x100 constant NOFLSH (line 812) | NOFLSH = 0x80 constant OCRNL (line 813) | OCRNL = 0x8 constant OFDEL (line 814) | OFDEL = 0x80 constant OFILL (line 815) | OFILL = 0x40 constant OLCUC (line 816) | OLCUC = 0x2 constant ONLCR (line 817) | ONLCR = 0x4 constant ONLRET (line 818) | ONLRET = 0x20 constant ONOCR (line 819) | ONOCR = 0x10 constant OPOST (line 820) | OPOST = 0x1 constant O_ACCMODE (line 821) | O_ACCMODE = 0x3 constant O_APPEND (line 822) | O_APPEND = 0x400 constant O_ASYNC (line 823) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 824) | O_CLOEXEC = 0x80000 constant O_CREAT (line 825) | O_CREAT = 0x40 constant O_DIRECT (line 826) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 827) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 828) | O_DSYNC = 0x1000 constant O_EXCL (line 829) | O_EXCL = 0x80 constant O_FSYNC (line 830) | O_FSYNC = 0x1000 constant O_LARGEFILE (line 831) | O_LARGEFILE = 0x20000 constant O_NDELAY (line 832) | O_NDELAY = 0x800 constant O_NOATIME (line 833) | O_NOATIME = 0x40000 constant O_NOCTTY (line 834) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 835) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 836) | O_NONBLOCK = 0x800 constant O_PATH (line 837) | O_PATH = 0x200000 constant O_RDONLY (line 838) | O_RDONLY = 0x0 constant O_RDWR (line 839) | O_RDWR = 0x2 constant O_RSYNC (line 840) | O_RSYNC = 0x1000 constant O_SYNC (line 841) | O_SYNC = 0x1000 constant O_TRUNC (line 842) | O_TRUNC = 0x200 constant O_WRONLY (line 843) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 844) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_BROADCAST (line 845) | PACKET_BROADCAST = 0x1 constant PACKET_DROP_MEMBERSHIP (line 846) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FASTROUTE (line 847) | PACKET_FASTROUTE = 0x6 constant PACKET_HOST (line 848) | PACKET_HOST = 0x0 constant PACKET_LOOPBACK (line 849) | PACKET_LOOPBACK = 0x5 constant PACKET_MR_ALLMULTI (line 850) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 851) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 852) | PACKET_MR_PROMISC = 0x1 constant PACKET_MULTICAST (line 853) | PACKET_MULTICAST = 0x2 constant PACKET_OTHERHOST (line 854) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 855) | PACKET_OUTGOING = 0x4 constant PACKET_RECV_OUTPUT (line 856) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RX_RING (line 857) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 858) | PACKET_STATISTICS = 0x6 constant PARENB (line 859) | PARENB = 0x100 constant PARMRK (line 860) | PARMRK = 0x8 constant PARODD (line 861) | PARODD = 0x200 constant PENDIN (line 862) | PENDIN = 0x4000 constant PRIO_PGRP (line 863) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 864) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 865) | PRIO_USER = 0x2 constant PROT_EXEC (line 866) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 867) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 868) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 869) | PROT_NONE = 0x0 constant PROT_READ (line 870) | PROT_READ = 0x1 constant PROT_WRITE (line 871) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 872) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 873) | PR_CAPBSET_READ = 0x17 constant PR_CLEAR_SECCOMP_FILTER (line 874) | PR_CLEAR_SECCOMP_FILTER = 0x25 constant PR_ENDIAN_BIG (line 875) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 876) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 877) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 878) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 879) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 880) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 881) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 882) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 883) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 884) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 885) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 886) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 887) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 888) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 889) | PR_FP_EXC_UND = 0x40000 constant PR_GET_DUMPABLE (line 890) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 891) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 892) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 893) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 894) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 895) | PR_GET_NAME = 0x10 constant PR_GET_PDEATHSIG (line 896) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 897) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECCOMP_FILTER (line 898) | PR_GET_SECCOMP_FILTER = 0x23 constant PR_GET_SECUREBITS (line 899) | PR_GET_SECUREBITS = 0x1b constant PR_GET_TIMERSLACK (line 900) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 901) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 902) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 903) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 904) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 905) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 906) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 907) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 908) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 909) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 910) | PR_MCE_KILL_SET = 0x1 constant PR_SECCOMP_FILTER_EVENT (line 911) | PR_SECCOMP_FILTER_EVENT = 0x1 constant PR_SECCOMP_FILTER_SYSCALL (line 912) | PR_SECCOMP_FILTER_SYSCALL = 0x0 constant PR_SET_DUMPABLE (line 913) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 914) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 915) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 916) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 917) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_NAME (line 918) | PR_SET_NAME = 0xf constant PR_SET_PDEATHSIG (line 919) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 920) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_SECCOMP (line 921) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECCOMP_FILTER (line 922) | PR_SET_SECCOMP_FILTER = 0x24 constant PR_SET_SECUREBITS (line 923) | PR_SET_SECUREBITS = 0x1c constant PR_SET_TIMERSLACK (line 924) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 925) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 926) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 927) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 928) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 929) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 930) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 931) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 932) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 933) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 934) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 935) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 936) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 937) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 938) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 939) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 940) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 941) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 942) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_VFORK (line 943) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 944) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETCRUNCHREGS (line 945) | PTRACE_GETCRUNCHREGS = 0x19 constant PTRACE_GETEVENTMSG (line 946) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 947) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETHBPREGS (line 948) | PTRACE_GETHBPREGS = 0x1d constant PTRACE_GETREGS (line 949) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 950) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 951) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETVFPREGS (line 952) | PTRACE_GETVFPREGS = 0x1b constant PTRACE_GETWMMXREGS (line 953) | PTRACE_GETWMMXREGS = 0x12 constant PTRACE_GET_THREAD_AREA (line 954) | PTRACE_GET_THREAD_AREA = 0x16 constant PTRACE_KILL (line 955) | PTRACE_KILL = 0x8 constant PTRACE_OLDSETOPTIONS (line 956) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_MASK (line 957) | PTRACE_O_MASK = 0x7f constant PTRACE_O_TRACECLONE (line 958) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 959) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 960) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 961) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESYSGOOD (line 962) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 963) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 964) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 965) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKTEXT (line 966) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 967) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 968) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 969) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 970) | PTRACE_POKEUSR = 0x6 constant PTRACE_SETCRUNCHREGS (line 971) | PTRACE_SETCRUNCHREGS = 0x1a constant PTRACE_SETFPREGS (line 972) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETHBPREGS (line 973) | PTRACE_SETHBPREGS = 0x1e constant PTRACE_SETOPTIONS (line 974) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 975) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 976) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 977) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETVFPREGS (line 978) | PTRACE_SETVFPREGS = 0x1c constant PTRACE_SETWMMXREGS (line 979) | PTRACE_SETWMMXREGS = 0x13 constant PTRACE_SET_SYSCALL (line 980) | PTRACE_SET_SYSCALL = 0x17 constant PTRACE_SINGLESTEP (line 981) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 982) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 983) | PTRACE_TRACEME = 0x0 constant PT_DATA_ADDR (line 984) | PT_DATA_ADDR = 0x10004 constant PT_TEXT_ADDR (line 985) | PT_TEXT_ADDR = 0x10000 constant PT_TEXT_END_ADDR (line 986) | PT_TEXT_END_ADDR = 0x10008 constant RLIMIT_AS (line 987) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 988) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 989) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 990) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 991) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 992) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 993) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 994) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 995) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 996) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 997) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 998) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 999) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1000) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1001) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1002) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1003) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1004) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1005) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1006) | RTAX_MAX = 0xe constant RTAX_MTU (line 1007) | RTAX_MTU = 0x2 constant RTAX_REORDERING (line 1008) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1009) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1010) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1011) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1012) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1013) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1014) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1015) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1016) | RTA_MAX = 0x10 constant RTCF_DIRECTSRC (line 1017) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1018) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1019) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1020) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1021) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1022) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1023) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1024) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1025) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1026) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1027) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1028) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1029) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1030) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1031) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1032) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1033) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1034) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1035) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1036) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1037) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1038) | RTF_MSS = 0x40 constant RTF_MTU (line 1039) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1040) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1041) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1042) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1043) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1044) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1045) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1046) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1047) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1048) | RTF_STATIC = 0x400 constant RTF_THROW (line 1049) | RTF_THROW = 0x2000 constant RTF_UP (line 1050) | RTF_UP = 0x1 constant RTF_WINDOW (line 1051) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1052) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1053) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1054) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1055) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1056) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1057) | RTM_DELLINK = 0x11 constant RTM_DELNEIGH (line 1058) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1059) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1060) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1061) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1062) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1063) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1064) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1065) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1066) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1067) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1068) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1069) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1070) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1071) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1072) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1073) | RTM_GETLINK = 0x12 constant RTM_GETMULTICAST (line 1074) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1075) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1076) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETQDISC (line 1077) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1078) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1079) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1080) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1081) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1082) | RTM_MAX = 0x4f constant RTM_NEWACTION (line 1083) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1084) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1085) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1086) | RTM_NEWLINK = 0x10 constant RTM_NEWNDUSEROPT (line 1087) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1088) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1089) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWPREFIX (line 1090) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1091) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1092) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1093) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1094) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1095) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1096) | RTM_NR_FAMILIES = 0x10 constant RTM_NR_MSGTYPES (line 1097) | RTM_NR_MSGTYPES = 0x40 constant RTM_SETDCB (line 1098) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1099) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1100) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1101) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1102) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1103) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1104) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1105) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1106) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1107) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1108) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1109) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1110) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1111) | RTPROT_KERNEL = 0x2 constant RTPROT_MRT (line 1112) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1113) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1114) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1115) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1116) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1117) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1118) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1119) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1120) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1121) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1122) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1123) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1124) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1125) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1126) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1127) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1128) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1129) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1130) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1131) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1132) | SCM_TIMESTAMPNS = 0x23 constant SHUT_RD (line 1133) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1134) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1135) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1136) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1137) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1138) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1139) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1140) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1141) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1142) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1143) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1144) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1145) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1146) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1147) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1148) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1149) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1150) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1151) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1152) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1153) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1154) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1155) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1156) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1157) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1158) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1159) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1160) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1161) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1162) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1163) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1164) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1165) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1166) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1167) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1168) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1169) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1170) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1171) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1172) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1173) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1174) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1175) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1176) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1177) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1178) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1179) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1180) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1181) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1182) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1183) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1184) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1185) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1186) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1187) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1188) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1189) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1190) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1191) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1192) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1193) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1194) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1195) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1196) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1197) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1198) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1199) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1200) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1201) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1202) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1203) | SOL_AAL = 0x109 constant SOL_ATM (line 1204) | SOL_ATM = 0x108 constant SOL_DECNET (line 1205) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1206) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1207) | SOL_IP = 0x0 constant SOL_IPV6 (line 1208) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1209) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1210) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1211) | SOL_PACKET = 0x107 constant SOL_RAW (line 1212) | SOL_RAW = 0xff constant SOL_SOCKET (line 1213) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1214) | SOL_TCP = 0x6 constant SOL_X25 (line 1215) | SOL_X25 = 0x106 constant SOMAXCONN (line 1216) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1217) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_FILTER (line 1218) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1219) | SO_BINDTODEVICE = 0x19 constant SO_BROADCAST (line 1220) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1221) | SO_BSDCOMPAT = 0xe constant SO_DEBUG (line 1222) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1223) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1224) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1225) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1226) | SO_ERROR = 0x4 constant SO_KEEPALIVE (line 1227) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1228) | SO_LINGER = 0xd constant SO_MARK (line 1229) | SO_MARK = 0x24 constant SO_NO_CHECK (line 1230) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1231) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1232) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1233) | SO_PASSSEC = 0x22 constant SO_PEERCRED (line 1234) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1235) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1236) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1237) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1238) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1239) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1240) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1241) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1242) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1243) | SO_REUSEADDR = 0x2 constant SO_RXQ_OVFL (line 1244) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1245) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1246) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1247) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SNDBUF (line 1248) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1249) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1250) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1251) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1252) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1253) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1254) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1255) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1256) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1257) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1258) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1259) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1260) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1261) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1262) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SPLICE_F_GIFT (line 1263) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1264) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1265) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1266) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1267) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1268) | S_IEXEC = 0x40 constant S_IFBLK (line 1269) | S_IFBLK = 0x6000 constant S_IFCHR (line 1270) | S_IFCHR = 0x2000 constant S_IFDIR (line 1271) | S_IFDIR = 0x4000 constant S_IFIFO (line 1272) | S_IFIFO = 0x1000 constant S_IFLNK (line 1273) | S_IFLNK = 0xa000 constant S_IFMT (line 1274) | S_IFMT = 0xf000 constant S_IFREG (line 1275) | S_IFREG = 0x8000 constant S_IFSOCK (line 1276) | S_IFSOCK = 0xc000 constant S_IREAD (line 1277) | S_IREAD = 0x100 constant S_IRGRP (line 1278) | S_IRGRP = 0x20 constant S_IROTH (line 1279) | S_IROTH = 0x4 constant S_IRUSR (line 1280) | S_IRUSR = 0x100 constant S_IRWXG (line 1281) | S_IRWXG = 0x38 constant S_IRWXO (line 1282) | S_IRWXO = 0x7 constant S_IRWXU (line 1283) | S_IRWXU = 0x1c0 constant S_ISGID (line 1284) | S_ISGID = 0x400 constant S_ISUID (line 1285) | S_ISUID = 0x800 constant S_ISVTX (line 1286) | S_ISVTX = 0x200 constant S_IWGRP (line 1287) | S_IWGRP = 0x10 constant S_IWOTH (line 1288) | S_IWOTH = 0x2 constant S_IWRITE (line 1289) | S_IWRITE = 0x80 constant S_IWUSR (line 1290) | S_IWUSR = 0x80 constant S_IXGRP (line 1291) | S_IXGRP = 0x8 constant S_IXOTH (line 1292) | S_IXOTH = 0x1 constant S_IXUSR (line 1293) | S_IXUSR = 0x40 constant TAB0 (line 1294) | TAB0 = 0x0 constant TAB1 (line 1295) | TAB1 = 0x800 constant TAB2 (line 1296) | TAB2 = 0x1000 constant TAB3 (line 1297) | TAB3 = 0x1800 constant TABDLY (line 1298) | TABDLY = 0x1800 constant TCFLSH (line 1299) | TCFLSH = 0x540b constant TCGETA (line 1300) | TCGETA = 0x5405 constant TCGETS (line 1301) | TCGETS = 0x5401 constant TCGETS2 (line 1302) | TCGETS2 = 0x802c542a constant TCGETX (line 1303) | TCGETX = 0x5432 constant TCIFLUSH (line 1304) | TCIFLUSH = 0x0 constant TCIOFF (line 1305) | TCIOFF = 0x2 constant TCIOFLUSH (line 1306) | TCIOFLUSH = 0x2 constant TCION (line 1307) | TCION = 0x3 constant TCOFLUSH (line 1308) | TCOFLUSH = 0x1 constant TCOOFF (line 1309) | TCOOFF = 0x0 constant TCOON (line 1310) | TCOON = 0x1 constant TCP_CONGESTION (line 1311) | TCP_CONGESTION = 0xd constant TCP_CORK (line 1312) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1313) | TCP_DEFER_ACCEPT = 0x9 constant TCP_INFO (line 1314) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1315) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1316) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1317) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1318) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1319) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1320) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1321) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1322) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1323) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1324) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1325) | TCP_NODELAY = 0x1 constant TCP_QUICKACK (line 1326) | TCP_QUICKACK = 0xc constant TCP_SYNCNT (line 1327) | TCP_SYNCNT = 0x7 constant TCP_WINDOW_CLAMP (line 1328) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1329) | TCSAFLUSH = 0x2 constant TCSBRK (line 1330) | TCSBRK = 0x5409 constant TCSBRKP (line 1331) | TCSBRKP = 0x5425 constant TCSETA (line 1332) | TCSETA = 0x5406 constant TCSETAF (line 1333) | TCSETAF = 0x5408 constant TCSETAW (line 1334) | TCSETAW = 0x5407 constant TCSETS (line 1335) | TCSETS = 0x5402 constant TCSETS2 (line 1336) | TCSETS2 = 0x402c542b constant TCSETSF (line 1337) | TCSETSF = 0x5404 constant TCSETSF2 (line 1338) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1339) | TCSETSW = 0x5403 constant TCSETSW2 (line 1340) | TCSETSW2 = 0x402c542c constant TCSETX (line 1341) | TCSETX = 0x5433 constant TCSETXF (line 1342) | TCSETXF = 0x5434 constant TCSETXW (line 1343) | TCSETXW = 0x5435 constant TCXONC (line 1344) | TCXONC = 0x540a constant TIOCCBRK (line 1345) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1346) | TIOCCONS = 0x541d constant TIOCEXCL (line 1347) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1348) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1349) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1350) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1351) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1352) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1353) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1354) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1355) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1356) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1357) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1358) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1359) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1360) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1361) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1362) | TIOCINQ = 0x541b constant TIOCLINUX (line 1363) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1364) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1365) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1366) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1367) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1368) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1369) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1370) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1371) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1372) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1373) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1374) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1375) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1376) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1377) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1378) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1379) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1380) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1381) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1382) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1383) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1384) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1385) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1386) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1387) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1388) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1389) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1390) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1391) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1392) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1393) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1394) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1395) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1396) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1397) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1398) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1399) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1400) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1401) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1402) | TIOCSETD = 0x5423 constant TIOCSIG (line 1403) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1404) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1405) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1406) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1407) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1408) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1409) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1410) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1411) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1412) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1413) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1414) | TUNATTACHFILTER = 0x400854d5 constant TUNDETACHFILTER (line 1415) | TUNDETACHFILTER = 0x400854d6 constant TUNGETFEATURES (line 1416) | TUNGETFEATURES = 0x800454cf constant TUNGETIFF (line 1417) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1418) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETHDRSZ (line 1419) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNSETDEBUG (line 1420) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1421) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1422) | TUNSETIFF = 0x400454ca constant TUNSETLINK (line 1423) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1424) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1425) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1426) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1427) | TUNSETPERSIST = 0x400454cb constant TUNSETSNDBUF (line 1428) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1429) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETHDRSZ (line 1430) | TUNSETVNETHDRSZ = 0x400454d8 constant VDISCARD (line 1431) | VDISCARD = 0xd constant VEOF (line 1432) | VEOF = 0x4 constant VEOL (line 1433) | VEOL = 0xb constant VEOL2 (line 1434) | VEOL2 = 0x10 constant VERASE (line 1435) | VERASE = 0x2 constant VINTR (line 1436) | VINTR = 0x0 constant VKILL (line 1437) | VKILL = 0x3 constant VLNEXT (line 1438) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1439) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1440) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1441) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1442) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1443) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1444) | VMIN = 0x6 constant VQUIT (line 1445) | VQUIT = 0x1 constant VREPRINT (line 1446) | VREPRINT = 0xc constant VSTART (line 1447) | VSTART = 0x8 constant VSTOP (line 1448) | VSTOP = 0x9 constant VSUSP (line 1449) | VSUSP = 0xa constant VSWTC (line 1450) | VSWTC = 0x7 constant VT0 (line 1451) | VT0 = 0x0 constant VT1 (line 1452) | VT1 = 0x4000 constant VTDLY (line 1453) | VTDLY = 0x4000 constant VTIME (line 1454) | VTIME = 0x5 constant VWERASE (line 1455) | VWERASE = 0xe constant WALL (line 1456) | WALL = 0x40000000 constant WCLONE (line 1457) | WCLONE = 0x80000000 constant WCONTINUED (line 1458) | WCONTINUED = 0x8 constant WEXITED (line 1459) | WEXITED = 0x4 constant WNOHANG (line 1460) | WNOHANG = 0x1 constant WNOTHREAD (line 1461) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1462) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1463) | WORDSIZE = 0x20 constant WSTOPPED (line 1464) | WSTOPPED = 0x2 constant WUNTRACED (line 1465) | WUNTRACED = 0x2 constant XCASE (line 1466) | XCASE = 0x4 constant XTABS (line 1467) | XTABS = 0x1800 constant E2BIG (line 1472) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1473) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1474) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1475) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1476) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1477) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1478) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1479) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1480) | EBADE = syscall.Errno(0x34) constant EBADF (line 1481) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1482) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1483) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1484) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1485) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1486) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1487) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1488) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1489) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1490) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1491) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1492) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1493) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1494) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1495) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1496) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1497) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1498) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1499) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1500) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1501) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1502) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1503) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1504) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1505) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1506) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1507) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1508) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1509) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1510) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1511) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1512) | EINVAL = syscall.Errno(0x16) constant EIO (line 1513) | EIO = syscall.Errno(0x5) constant EISCONN (line 1514) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1515) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1516) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1517) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1518) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1519) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1520) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1521) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1522) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1523) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1524) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1525) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1526) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1527) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1528) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1529) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1530) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1531) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1532) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1533) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1534) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1535) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1536) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1537) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1538) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1539) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1540) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1541) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1542) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1543) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1544) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1545) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1546) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1547) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1548) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1549) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1550) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1551) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1552) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1553) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1554) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1555) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1556) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1557) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1558) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1559) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1560) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1561) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1562) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1563) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1564) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1565) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1566) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1567) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1568) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1569) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1570) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1571) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1572) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1573) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1574) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1575) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1576) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1577) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1578) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1579) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1580) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1581) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1582) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1583) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1584) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1585) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1586) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1587) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1588) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1589) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1590) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1591) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1592) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1593) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1594) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1595) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1596) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1597) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1598) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1599) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1600) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1601) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1602) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1603) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1604) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1605) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1610) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1611) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1612) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1613) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1614) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1615) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1616) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1617) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1618) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1619) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1620) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1621) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1622) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1623) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1624) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1625) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1626) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1627) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1628) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1629) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1630) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1631) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1632) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1633) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1634) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1635) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1636) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1637) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1638) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1639) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1640) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1641) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1642) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1643) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1644) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x29 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_NFC (line 41) | AF_NFC = 0x27 constant AF_PACKET (line 42) | AF_PACKET = 0x11 constant AF_PHONET (line 43) | AF_PHONET = 0x23 constant AF_PPPOX (line 44) | AF_PPPOX = 0x18 constant AF_RDS (line 45) | AF_RDS = 0x15 constant AF_ROSE (line 46) | AF_ROSE = 0xb constant AF_ROUTE (line 47) | AF_ROUTE = 0x10 constant AF_RXRPC (line 48) | AF_RXRPC = 0x21 constant AF_SECURITY (line 49) | AF_SECURITY = 0xe constant AF_SNA (line 50) | AF_SNA = 0x16 constant AF_TIPC (line 51) | AF_TIPC = 0x1e constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 54) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 55) | AF_WANPIPE = 0x19 constant AF_X25 (line 56) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 57) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 58) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 59) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 60) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 61) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 62) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 63) | ALG_SET_OP = 0x3 constant ARPHRD_ADAPT (line 64) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 65) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 66) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 67) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 68) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 69) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 70) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 71) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 72) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 73) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 74) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 75) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 76) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 77) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 78) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 79) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 80) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 81) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 82) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 83) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 84) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 85) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 86) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 87) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 88) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 89) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 90) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 91) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 92) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 93) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 94) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 95) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 96) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 97) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 98) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 99) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 100) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 101) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 102) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 103) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 104) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 105) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 106) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 107) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 108) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 109) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 110) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 111) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 112) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 113) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 114) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 115) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 116) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 117) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 118) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 119) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 120) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 121) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 122) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 123) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 124) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 125) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 126) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 127) | ARPHRD_X25 = 0x10f constant B0 (line 128) | B0 = 0x0 constant B1000000 (line 129) | B1000000 = 0x1008 constant B110 (line 130) | B110 = 0x3 constant B115200 (line 131) | B115200 = 0x1002 constant B1152000 (line 132) | B1152000 = 0x1009 constant B1200 (line 133) | B1200 = 0x9 constant B134 (line 134) | B134 = 0x4 constant B150 (line 135) | B150 = 0x5 constant B1500000 (line 136) | B1500000 = 0x100a constant B1800 (line 137) | B1800 = 0xa constant B19200 (line 138) | B19200 = 0xe constant B200 (line 139) | B200 = 0x6 constant B2000000 (line 140) | B2000000 = 0x100b constant B230400 (line 141) | B230400 = 0x1003 constant B2400 (line 142) | B2400 = 0xb constant B2500000 (line 143) | B2500000 = 0x100c constant B300 (line 144) | B300 = 0x7 constant B3000000 (line 145) | B3000000 = 0x100d constant B3500000 (line 146) | B3500000 = 0x100e constant B38400 (line 147) | B38400 = 0xf constant B4000000 (line 148) | B4000000 = 0x100f constant B460800 (line 149) | B460800 = 0x1004 constant B4800 (line 150) | B4800 = 0xc constant B50 (line 151) | B50 = 0x1 constant B500000 (line 152) | B500000 = 0x1005 constant B57600 (line 153) | B57600 = 0x1001 constant B576000 (line 154) | B576000 = 0x1006 constant B600 (line 155) | B600 = 0x8 constant B75 (line 156) | B75 = 0x2 constant B921600 (line 157) | B921600 = 0x1007 constant B9600 (line 158) | B9600 = 0xd constant BLKBSZGET (line 159) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 160) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 161) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 162) | BLKFRAGET = 0x1265 constant BLKFRASET (line 163) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 164) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 165) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 166) | BLKRAGET = 0x1263 constant BLKRASET (line 167) | BLKRASET = 0x1262 constant BLKROGET (line 168) | BLKROGET = 0x125e constant BLKROSET (line 169) | BLKROSET = 0x125d constant BLKRRPART (line 170) | BLKRRPART = 0x125f constant BLKSECTGET (line 171) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 172) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 173) | BLKSSZGET = 0x1268 constant BOTHER (line 174) | BOTHER = 0x1000 constant BPF_A (line 175) | BPF_A = 0x10 constant BPF_ABS (line 176) | BPF_ABS = 0x20 constant BPF_ADD (line 177) | BPF_ADD = 0x0 constant BPF_ALU (line 178) | BPF_ALU = 0x4 constant BPF_AND (line 179) | BPF_AND = 0x50 constant BPF_B (line 180) | BPF_B = 0x10 constant BPF_DIV (line 181) | BPF_DIV = 0x30 constant BPF_H (line 182) | BPF_H = 0x8 constant BPF_IMM (line 183) | BPF_IMM = 0x0 constant BPF_IND (line 184) | BPF_IND = 0x40 constant BPF_JA (line 185) | BPF_JA = 0x0 constant BPF_JEQ (line 186) | BPF_JEQ = 0x10 constant BPF_JGE (line 187) | BPF_JGE = 0x30 constant BPF_JGT (line 188) | BPF_JGT = 0x20 constant BPF_JMP (line 189) | BPF_JMP = 0x5 constant BPF_JSET (line 190) | BPF_JSET = 0x40 constant BPF_K (line 191) | BPF_K = 0x0 constant BPF_LD (line 192) | BPF_LD = 0x0 constant BPF_LDX (line 193) | BPF_LDX = 0x1 constant BPF_LEN (line 194) | BPF_LEN = 0x80 constant BPF_LSH (line 195) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 196) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 197) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 198) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 199) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 200) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 201) | BPF_MISC = 0x7 constant BPF_MOD (line 202) | BPF_MOD = 0x90 constant BPF_MSH (line 203) | BPF_MSH = 0xa0 constant BPF_MUL (line 204) | BPF_MUL = 0x20 constant BPF_NEG (line 205) | BPF_NEG = 0x80 constant BPF_OR (line 206) | BPF_OR = 0x40 constant BPF_RET (line 207) | BPF_RET = 0x6 constant BPF_RSH (line 208) | BPF_RSH = 0x70 constant BPF_ST (line 209) | BPF_ST = 0x2 constant BPF_STX (line 210) | BPF_STX = 0x3 constant BPF_SUB (line 211) | BPF_SUB = 0x10 constant BPF_TAX (line 212) | BPF_TAX = 0x0 constant BPF_TXA (line 213) | BPF_TXA = 0x80 constant BPF_W (line 214) | BPF_W = 0x0 constant BPF_X (line 215) | BPF_X = 0x8 constant BPF_XOR (line 216) | BPF_XOR = 0xa0 constant BRKINT (line 217) | BRKINT = 0x2 constant BS0 (line 218) | BS0 = 0x0 constant BS1 (line 219) | BS1 = 0x2000 constant BSDLY (line 220) | BSDLY = 0x2000 constant CAN_BCM (line 221) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 222) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 223) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 224) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 225) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 226) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 227) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 228) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 229) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 230) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 231) | CAN_MCNET = 0x5 constant CAN_MTU (line 232) | CAN_MTU = 0x10 constant CAN_NPROTO (line 233) | CAN_NPROTO = 0x7 constant CAN_RAW (line 234) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 235) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 236) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 237) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 238) | CAN_TP16 = 0x3 constant CAN_TP20 (line 239) | CAN_TP20 = 0x4 constant CBAUD (line 240) | CBAUD = 0x100f constant CBAUDEX (line 241) | CBAUDEX = 0x1000 constant CFLUSH (line 242) | CFLUSH = 0xf constant CIBAUD (line 243) | CIBAUD = 0x100f0000 constant CLOCAL (line 244) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 245) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 246) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 247) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 248) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 249) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 250) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 251) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 252) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 253) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 254) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 255) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 256) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 257) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 258) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 259) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 260) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 261) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 262) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 263) | CLONE_FILES = 0x400 constant CLONE_FS (line 264) | CLONE_FS = 0x200 constant CLONE_IO (line 265) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 266) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 267) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 268) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 269) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 270) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 271) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 272) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 273) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 274) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 275) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 276) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 277) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 278) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 279) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 280) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 281) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 282) | CLONE_VM = 0x100 constant CMSPAR (line 283) | CMSPAR = 0x40000000 constant CR0 (line 284) | CR0 = 0x0 constant CR1 (line 285) | CR1 = 0x200 constant CR2 (line 286) | CR2 = 0x400 constant CR3 (line 287) | CR3 = 0x600 constant CRDLY (line 288) | CRDLY = 0x600 constant CREAD (line 289) | CREAD = 0x80 constant CRTSCTS (line 290) | CRTSCTS = 0x80000000 constant CS5 (line 291) | CS5 = 0x0 constant CS6 (line 292) | CS6 = 0x10 constant CS7 (line 293) | CS7 = 0x20 constant CS8 (line 294) | CS8 = 0x30 constant CSIGNAL (line 295) | CSIGNAL = 0xff constant CSIZE (line 296) | CSIZE = 0x30 constant CSTART (line 297) | CSTART = 0x11 constant CSTATUS (line 298) | CSTATUS = 0x0 constant CSTOP (line 299) | CSTOP = 0x13 constant CSTOPB (line 300) | CSTOPB = 0x40 constant CSUSP (line 301) | CSUSP = 0x1a constant DT_BLK (line 302) | DT_BLK = 0x6 constant DT_CHR (line 303) | DT_CHR = 0x2 constant DT_DIR (line 304) | DT_DIR = 0x4 constant DT_FIFO (line 305) | DT_FIFO = 0x1 constant DT_LNK (line 306) | DT_LNK = 0xa constant DT_REG (line 307) | DT_REG = 0x8 constant DT_SOCK (line 308) | DT_SOCK = 0xc constant DT_UNKNOWN (line 309) | DT_UNKNOWN = 0x0 constant DT_WHT (line 310) | DT_WHT = 0xe constant ECHO (line 311) | ECHO = 0x8 constant ECHOCTL (line 312) | ECHOCTL = 0x200 constant ECHOE (line 313) | ECHOE = 0x10 constant ECHOK (line 314) | ECHOK = 0x20 constant ECHOKE (line 315) | ECHOKE = 0x800 constant ECHONL (line 316) | ECHONL = 0x40 constant ECHOPRT (line 317) | ECHOPRT = 0x400 constant ELF_NGREG (line 318) | ELF_NGREG = 0x22 constant ELF_PRARGSZ (line 319) | ELF_PRARGSZ = 0x50 constant ENCODING_DEFAULT (line 320) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 321) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 322) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 323) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 324) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 325) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 326) | EPOLLERR = 0x8 constant EPOLLET (line 327) | EPOLLET = 0x80000000 constant EPOLLHUP (line 328) | EPOLLHUP = 0x10 constant EPOLLIN (line 329) | EPOLLIN = 0x1 constant EPOLLMSG (line 330) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 331) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 332) | EPOLLOUT = 0x4 constant EPOLLPRI (line 333) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 334) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 335) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 336) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 337) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 338) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 339) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 340) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 341) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 342) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 343) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 344) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 345) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 346) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 347) | ETH_P_8021Q = 0x8100 constant ETH_P_802_2 (line 348) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 349) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 350) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 351) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 352) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 353) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 354) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 355) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 356) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 357) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 358) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 359) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 360) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 361) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 362) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 363) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 364) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 365) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 366) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 367) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 368) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 369) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 370) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 371) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 372) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 373) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 374) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 375) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 376) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 377) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 378) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 379) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 380) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 381) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 382) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 383) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 384) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 385) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 386) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 387) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 388) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 389) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 390) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 391) | ETH_P_LOOP = 0x60 constant ETH_P_MOBITEX (line 392) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 393) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 394) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 395) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 396) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 397) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 398) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 399) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 400) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 401) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 402) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 403) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 404) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 405) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 406) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 407) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 408) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 409) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 410) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 411) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 412) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 413) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 414) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 415) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 416) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 417) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 418) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 419) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 420) | ETH_P_X25 = 0x805 constant EXTA (line 421) | EXTA = 0xe constant EXTB (line 422) | EXTB = 0xf constant EXTPROC (line 423) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 424) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 425) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 426) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 427) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 428) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 429) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 430) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 431) | FD_SETSIZE = 0x400 constant FF0 (line 432) | FF0 = 0x0 constant FF1 (line 433) | FF1 = 0x8000 constant FFDLY (line 434) | FFDLY = 0x8000 constant FLUSHO (line 435) | FLUSHO = 0x1000 constant F_DUPFD (line 436) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 437) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 438) | F_EXLCK = 0x4 constant F_GETFD (line 439) | F_GETFD = 0x1 constant F_GETFL (line 440) | F_GETFL = 0x3 constant F_GETLEASE (line 441) | F_GETLEASE = 0x401 constant F_GETLK (line 442) | F_GETLK = 0x5 constant F_GETLK64 (line 443) | F_GETLK64 = 0x5 constant F_GETOWN (line 444) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 445) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 446) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 447) | F_GETSIG = 0xb constant F_LOCK (line 448) | F_LOCK = 0x1 constant F_NOTIFY (line 449) | F_NOTIFY = 0x402 constant F_OK (line 450) | F_OK = 0x0 constant F_RDLCK (line 451) | F_RDLCK = 0x0 constant F_SETFD (line 452) | F_SETFD = 0x2 constant F_SETFL (line 453) | F_SETFL = 0x4 constant F_SETLEASE (line 454) | F_SETLEASE = 0x400 constant F_SETLK (line 455) | F_SETLK = 0x6 constant F_SETLK64 (line 456) | F_SETLK64 = 0x6 constant F_SETLKW (line 457) | F_SETLKW = 0x7 constant F_SETLKW64 (line 458) | F_SETLKW64 = 0x7 constant F_SETOWN (line 459) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 460) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 461) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 462) | F_SETSIG = 0xa constant F_SHLCK (line 463) | F_SHLCK = 0x8 constant F_TEST (line 464) | F_TEST = 0x3 constant F_TLOCK (line 465) | F_TLOCK = 0x2 constant F_ULOCK (line 466) | F_ULOCK = 0x0 constant F_UNLCK (line 467) | F_UNLCK = 0x2 constant F_WRLCK (line 468) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 469) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 470) | GRND_RANDOM = 0x2 constant HUPCL (line 471) | HUPCL = 0x400 constant IBSHIFT (line 472) | IBSHIFT = 0x10 constant ICANON (line 473) | ICANON = 0x2 constant ICMPV6_FILTER (line 474) | ICMPV6_FILTER = 0x1 constant ICRNL (line 475) | ICRNL = 0x100 constant IEXTEN (line 476) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 477) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 478) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 479) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_NODAD (line 480) | IFA_F_NODAD = 0x2 constant IFA_F_OPTIMISTIC (line 481) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 482) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 483) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 484) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 485) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 486) | IFA_MAX = 0x7 constant IFF_802_1Q_VLAN (line 487) | IFF_802_1Q_VLAN = 0x1 constant IFF_ALLMULTI (line 488) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 489) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 490) | IFF_AUTOMEDIA = 0x4000 constant IFF_BONDING (line 491) | IFF_BONDING = 0x20 constant IFF_BRIDGE_PORT (line 492) | IFF_BRIDGE_PORT = 0x4000 constant IFF_BROADCAST (line 493) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 494) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 495) | IFF_DETACH_QUEUE = 0x400 constant IFF_DISABLE_NETPOLL (line 496) | IFF_DISABLE_NETPOLL = 0x1000 constant IFF_DONT_BRIDGE (line 497) | IFF_DONT_BRIDGE = 0x800 constant IFF_DORMANT (line 498) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 499) | IFF_DYNAMIC = 0x8000 constant IFF_EBRIDGE (line 500) | IFF_EBRIDGE = 0x2 constant IFF_ECHO (line 501) | IFF_ECHO = 0x40000 constant IFF_ISATAP (line 502) | IFF_ISATAP = 0x80 constant IFF_LIVE_ADDR_CHANGE (line 503) | IFF_LIVE_ADDR_CHANGE = 0x100000 constant IFF_LOOPBACK (line 504) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 505) | IFF_LOWER_UP = 0x10000 constant IFF_MACVLAN (line 506) | IFF_MACVLAN = 0x200000 constant IFF_MACVLAN_PORT (line 507) | IFF_MACVLAN_PORT = 0x2000 constant IFF_MASTER (line 508) | IFF_MASTER = 0x400 constant IFF_MASTER_8023AD (line 509) | IFF_MASTER_8023AD = 0x8 constant IFF_MASTER_ALB (line 510) | IFF_MASTER_ALB = 0x10 constant IFF_MASTER_ARPMON (line 511) | IFF_MASTER_ARPMON = 0x100 constant IFF_MULTICAST (line 512) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 513) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 514) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 515) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 516) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 517) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 518) | IFF_ONE_QUEUE = 0x2000 constant IFF_OVS_DATAPATH (line 519) | IFF_OVS_DATAPATH = 0x8000 constant IFF_PERSIST (line 520) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 521) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 522) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 523) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 524) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 525) | IFF_SLAVE = 0x800 constant IFF_SLAVE_INACTIVE (line 526) | IFF_SLAVE_INACTIVE = 0x4 constant IFF_SLAVE_NEEDARP (line 527) | IFF_SLAVE_NEEDARP = 0x40 constant IFF_SUPP_NOFCS (line 528) | IFF_SUPP_NOFCS = 0x80000 constant IFF_TAP (line 529) | IFF_TAP = 0x2 constant IFF_TEAM_PORT (line 530) | IFF_TEAM_PORT = 0x40000 constant IFF_TUN (line 531) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 532) | IFF_TUN_EXCL = 0x8000 constant IFF_TX_SKB_SHARING (line 533) | IFF_TX_SKB_SHARING = 0x10000 constant IFF_UNICAST_FLT (line 534) | IFF_UNICAST_FLT = 0x20000 constant IFF_UP (line 535) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 536) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 537) | IFF_VOLATILE = 0x70c5a constant IFF_WAN_HDLC (line 538) | IFF_WAN_HDLC = 0x200 constant IFF_XMIT_DST_RELEASE (line 539) | IFF_XMIT_DST_RELEASE = 0x400 constant IFNAMSIZ (line 540) | IFNAMSIZ = 0x10 constant IGNBRK (line 541) | IGNBRK = 0x1 constant IGNCR (line 542) | IGNCR = 0x80 constant IGNPAR (line 543) | IGNPAR = 0x4 constant IMAXBEL (line 544) | IMAXBEL = 0x2000 constant INLCR (line 545) | INLCR = 0x40 constant INPCK (line 546) | INPCK = 0x10 constant IN_ACCESS (line 547) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 548) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 549) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 550) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 551) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 552) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 553) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 554) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 555) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 556) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 557) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 558) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 559) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 560) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 561) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 562) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 563) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 564) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 565) | IN_CREATE = 0x100 constant IN_DELETE (line 566) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 567) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 568) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 569) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 570) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 571) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 572) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 573) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 574) | IN_MODIFY = 0x2 constant IN_MOVE (line 575) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 576) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 577) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 578) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 579) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 580) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 581) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 582) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 583) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 584) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 585) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 586) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 587) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 588) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 589) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 590) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 591) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 592) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 593) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 594) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 595) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 596) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 597) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 598) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 599) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 600) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 601) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 602) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 603) | IPPROTO_MH = 0x87 constant IPPROTO_MTP (line 604) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 605) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 606) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 607) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 608) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 609) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 610) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 611) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 612) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 613) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 614) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 615) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 616) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 617) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 618) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 619) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 620) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 621) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 622) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 623) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 624) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 625) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 626) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 627) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 628) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 629) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 630) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 631) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 632) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 633) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 634) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 635) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 636) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 637) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 638) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 639) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 640) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 641) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 642) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 643) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_PROBE (line 644) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 645) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 646) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 647) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 648) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 649) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 650) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 651) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 652) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 653) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 654) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 655) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 656) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 657) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 658) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 659) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 660) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 661) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 662) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 663) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 664) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 665) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 666) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 667) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 668) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 669) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 670) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 671) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 672) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 673) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 674) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 675) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 676) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 677) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 678) | IP_MF = 0x2000 constant IP_MINTTL (line 679) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 680) | IP_MSFILTER = 0x29 constant IP_MSS (line 681) | IP_MSS = 0x240 constant IP_MTU (line 682) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 683) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 684) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 685) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 686) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 687) | IP_MULTICAST_TTL = 0x21 constant IP_OFFMASK (line 688) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 689) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 690) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 691) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 692) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 693) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 694) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 695) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 696) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_PROBE (line 697) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 698) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 699) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 700) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 701) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 702) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 703) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 704) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 705) | IP_RETOPTS = 0x7 constant IP_RF (line 706) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 707) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 708) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 709) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 710) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 711) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 712) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 713) | IP_XFRM_POLICY = 0x11 constant ISIG (line 714) | ISIG = 0x1 constant ISTRIP (line 715) | ISTRIP = 0x20 constant IUCLC (line 716) | IUCLC = 0x200 constant IUTF8 (line 717) | IUTF8 = 0x4000 constant IXANY (line 718) | IXANY = 0x800 constant IXOFF (line 719) | IXOFF = 0x1000 constant IXON (line 720) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 721) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 722) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 723) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 724) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 725) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 726) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 727) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 728) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 729) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 730) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 731) | LOCK_EX = 0x2 constant LOCK_NB (line 732) | LOCK_NB = 0x4 constant LOCK_SH (line 733) | LOCK_SH = 0x1 constant LOCK_UN (line 734) | LOCK_UN = 0x8 constant MADV_DODUMP (line 735) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 736) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 737) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 738) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 739) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 740) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 741) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 742) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 743) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 744) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 745) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 746) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 747) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 748) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 749) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 750) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 751) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 752) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 753) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 754) | MAP_FILE = 0x0 constant MAP_FIXED (line 755) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 756) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 757) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 758) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 759) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 760) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 761) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 762) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 763) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 764) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 765) | MAP_SHARED = 0x1 constant MAP_STACK (line 766) | MAP_STACK = 0x20000 constant MAP_TYPE (line 767) | MAP_TYPE = 0xf constant MCL_CURRENT (line 768) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 769) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 770) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 771) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 772) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 773) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 774) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 775) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 776) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 777) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 778) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 779) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 780) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 781) | MSG_FIN = 0x200 constant MSG_MORE (line 782) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 783) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 784) | MSG_OOB = 0x1 constant MSG_PEEK (line 785) | MSG_PEEK = 0x2 constant MSG_PROXY (line 786) | MSG_PROXY = 0x10 constant MSG_RST (line 787) | MSG_RST = 0x1000 constant MSG_SYN (line 788) | MSG_SYN = 0x400 constant MSG_TRUNC (line 789) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 790) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 791) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 792) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 793) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 794) | MS_ASYNC = 0x1 constant MS_BIND (line 795) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 796) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 797) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 798) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 799) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 800) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 801) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 802) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 803) | MS_MOVE = 0x2000 constant MS_NOATIME (line 804) | MS_NOATIME = 0x400 constant MS_NODEV (line 805) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 806) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 807) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 808) | MS_NOSUID = 0x2 constant MS_NOUSER (line 809) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 810) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 811) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 812) | MS_RDONLY = 0x1 constant MS_REC (line 813) | MS_REC = 0x4000 constant MS_RELATIME (line 814) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 815) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 816) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 817) | MS_SHARED = 0x100000 constant MS_SILENT (line 818) | MS_SILENT = 0x8000 constant MS_SLAVE (line 819) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 820) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 821) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 822) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 823) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 824) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 825) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 826) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 827) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 828) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 829) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 830) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 831) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 832) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 833) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 834) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 835) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 836) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 837) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 838) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 839) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 840) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 841) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 842) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 843) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 844) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 845) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 846) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 847) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 848) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 849) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 850) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 851) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 852) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 853) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 854) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 855) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 856) | NETLINK_XFRM = 0x6 constant NL0 (line 857) | NL0 = 0x0 constant NL1 (line 858) | NL1 = 0x100 constant NLA_ALIGNTO (line 859) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 860) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 861) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 862) | NLA_HDRLEN = 0x4 constant NLDLY (line 863) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 864) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 865) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 866) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 867) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 868) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 869) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 870) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 871) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 872) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 873) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 874) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 875) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 876) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 877) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 878) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 879) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 880) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 881) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 882) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 883) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 884) | NLM_F_ROOT = 0x100 constant NOFLSH (line 885) | NOFLSH = 0x80 constant OCRNL (line 886) | OCRNL = 0x8 constant OFDEL (line 887) | OFDEL = 0x80 constant OFILL (line 888) | OFILL = 0x40 constant OLCUC (line 889) | OLCUC = 0x2 constant ONLCR (line 890) | ONLCR = 0x4 constant ONLRET (line 891) | ONLRET = 0x20 constant ONOCR (line 892) | ONOCR = 0x10 constant OPOST (line 893) | OPOST = 0x1 constant O_ACCMODE (line 894) | O_ACCMODE = 0x3 constant O_APPEND (line 895) | O_APPEND = 0x400 constant O_ASYNC (line 896) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 897) | O_CLOEXEC = 0x80000 constant O_CREAT (line 898) | O_CREAT = 0x40 constant O_DIRECT (line 899) | O_DIRECT = 0x10000 constant O_DIRECTORY (line 900) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 901) | O_DSYNC = 0x1000 constant O_EXCL (line 902) | O_EXCL = 0x80 constant O_FSYNC (line 903) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 904) | O_LARGEFILE = 0x0 constant O_NDELAY (line 905) | O_NDELAY = 0x800 constant O_NOATIME (line 906) | O_NOATIME = 0x40000 constant O_NOCTTY (line 907) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 908) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 909) | O_NONBLOCK = 0x800 constant O_PATH (line 910) | O_PATH = 0x200000 constant O_RDONLY (line 911) | O_RDONLY = 0x0 constant O_RDWR (line 912) | O_RDWR = 0x2 constant O_RSYNC (line 913) | O_RSYNC = 0x101000 constant O_SYNC (line 914) | O_SYNC = 0x101000 constant O_TMPFILE (line 915) | O_TMPFILE = 0x410000 constant O_TRUNC (line 916) | O_TRUNC = 0x200 constant O_WRONLY (line 917) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 918) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 919) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 920) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 921) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 922) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 923) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CPU (line 924) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_FLAG_DEFRAG (line 925) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 926) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 927) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 928) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_RND (line 929) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 930) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 931) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 932) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 933) | PACKET_HOST = 0x0 constant PACKET_LOOPBACK (line 934) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 935) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 936) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 937) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 938) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 939) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 940) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 941) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 942) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 943) | PACKET_OUTGOING = 0x4 constant PACKET_RECV_OUTPUT (line 944) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 945) | PACKET_RESERVE = 0xc constant PACKET_RX_RING (line 946) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 947) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 948) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 949) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 950) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 951) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_VERSION (line 952) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 953) | PACKET_VNET_HDR = 0xf constant PARENB (line 954) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 955) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 956) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 957) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 958) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 959) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 960) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 961) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 962) | PARITY_NONE = 0x1 constant PARMRK (line 963) | PARMRK = 0x8 constant PARODD (line 964) | PARODD = 0x200 constant PENDIN (line 965) | PENDIN = 0x4000 constant PRIO_PGRP (line 966) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 967) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 968) | PRIO_USER = 0x2 constant PROT_EXEC (line 969) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 970) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 971) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 972) | PROT_NONE = 0x0 constant PROT_READ (line 973) | PROT_READ = 0x1 constant PROT_WRITE (line 974) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 975) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 976) | PR_CAPBSET_READ = 0x17 constant PR_ENDIAN_BIG (line 977) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 978) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 979) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 980) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 981) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 982) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 983) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 984) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 985) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 986) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 987) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 988) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 989) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 990) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 991) | PR_FP_EXC_UND = 0x40000 constant PR_GET_CHILD_SUBREAPER (line 992) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 993) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 994) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 995) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 996) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 997) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 998) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 999) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1000) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1001) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1002) | PR_GET_SECUREBITS = 0x1b constant PR_GET_TID_ADDRESS (line 1003) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1004) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1005) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1006) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1007) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1008) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1009) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1010) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1011) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1012) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1013) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1014) | PR_MCE_KILL_SET = 0x1 constant PR_SET_CHILD_SUBREAPER (line 1015) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1016) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1017) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1018) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1019) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 1020) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1021) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1022) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1023) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1024) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1025) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1026) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1027) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1028) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1029) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1030) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_START_BRK (line 1031) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1032) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1033) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1034) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1035) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1036) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1037) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1038) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1039) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1040) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1041) | PR_SET_SECUREBITS = 0x1c constant PR_SET_TIMERSLACK (line 1042) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1043) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1044) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1045) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1046) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1047) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1048) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1049) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1050) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1051) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1052) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1053) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1054) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1055) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1056) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1057) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1058) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1059) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1060) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1061) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1062) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1063) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1064) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1065) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETREGS (line 1066) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1067) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1068) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1069) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_INTERRUPT (line 1070) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1071) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1072) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1073) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1074) | PTRACE_O_MASK = 0x1000ff constant PTRACE_O_TRACECLONE (line 1075) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1076) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1077) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1078) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1079) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1080) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1081) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1082) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1083) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1084) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1085) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1086) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1087) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1088) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1089) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1090) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1091) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETOPTIONS (line 1092) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1093) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1094) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1095) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1096) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLESTEP (line 1097) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1098) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1099) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1100) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1101) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1102) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1103) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1104) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1105) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 1106) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1107) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1108) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 1109) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1110) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1111) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1112) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1113) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1114) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1115) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1116) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1117) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1118) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1119) | RTAX_MAX = 0xf constant RTAX_MTU (line 1120) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1121) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1122) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1123) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1124) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1125) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1126) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1127) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1128) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1129) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1130) | RTA_MAX = 0x11 constant RTCF_DIRECTSRC (line 1131) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1132) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1133) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1134) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1135) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1136) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1137) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1138) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1139) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1140) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1141) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1142) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1143) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1144) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1145) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1146) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1147) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1148) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1149) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1150) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1151) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1152) | RTF_MSS = 0x40 constant RTF_MTU (line 1153) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1154) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1155) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1156) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1157) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1158) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1159) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1160) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1161) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1162) | RTF_STATIC = 0x400 constant RTF_THROW (line 1163) | RTF_THROW = 0x2000 constant RTF_UP (line 1164) | RTF_UP = 0x1 constant RTF_WINDOW (line 1165) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1166) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1167) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1168) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1169) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1170) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1171) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1172) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1173) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1174) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1175) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1176) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1177) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1178) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1179) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1180) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1181) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1182) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1183) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1184) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1185) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1186) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1187) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1188) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1189) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1190) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1191) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1192) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1193) | RTM_GETNETCONF = 0x52 constant RTM_GETQDISC (line 1194) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1195) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1196) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1197) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1198) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1199) | RTM_MAX = 0x57 constant RTM_NEWACTION (line 1200) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1201) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1202) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1203) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1204) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1205) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1206) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1207) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1208) | RTM_NEWNETCONF = 0x50 constant RTM_NEWPREFIX (line 1209) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1210) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1211) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1212) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1213) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1214) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1215) | RTM_NR_FAMILIES = 0x12 constant RTM_NR_MSGTYPES (line 1216) | RTM_NR_MSGTYPES = 0x48 constant RTM_SETDCB (line 1217) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1218) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1219) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1220) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1221) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1222) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1223) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1224) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1225) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1226) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1227) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1228) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1229) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1230) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1231) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1232) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1233) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1234) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1235) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1236) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1237) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1238) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1239) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1240) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1241) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1242) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1243) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1244) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1245) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1246) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1247) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1248) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1249) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1250) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1251) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1252) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1253) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1254) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1255) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1256) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1257) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1258) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1259) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1260) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1261) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1262) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1263) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1264) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1265) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1266) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1267) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1268) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1269) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1270) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1271) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1272) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1273) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1274) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1275) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1276) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1277) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1278) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1279) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1280) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1281) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1282) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1283) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1284) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1285) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1286) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1287) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1288) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1289) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1290) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1291) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1292) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1293) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1294) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1295) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1296) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1297) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1298) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1299) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1300) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1301) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1302) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1303) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1304) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1305) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1306) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1307) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1308) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1309) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1310) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1311) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1312) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1313) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1314) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1315) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1316) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1317) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1318) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1319) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1320) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1321) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1322) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1323) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1324) | SOL_AAL = 0x109 constant SOL_ATM (line 1325) | SOL_ATM = 0x108 constant SOL_DECNET (line 1326) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1327) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1328) | SOL_IP = 0x0 constant SOL_IPV6 (line 1329) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1330) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1331) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1332) | SOL_PACKET = 0x107 constant SOL_RAW (line 1333) | SOL_RAW = 0xff constant SOL_SOCKET (line 1334) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1335) | SOL_TCP = 0x6 constant SOL_X25 (line 1336) | SOL_X25 = 0x106 constant SOMAXCONN (line 1337) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1338) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_FILTER (line 1339) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1340) | SO_BINDTODEVICE = 0x19 constant SO_BROADCAST (line 1341) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1342) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1343) | SO_BUSY_POLL = 0x2e constant SO_DEBUG (line 1344) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1345) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1346) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1347) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1348) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1349) | SO_GET_FILTER = 0x1a constant SO_KEEPALIVE (line 1350) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1351) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1352) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1353) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1354) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1355) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1356) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1357) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1358) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1359) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1360) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1361) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1362) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1363) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1364) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1365) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1366) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1367) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1368) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1369) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1370) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1371) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1372) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1373) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1374) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1375) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1376) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1377) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1378) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1379) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1380) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1381) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1382) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1383) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1384) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1385) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1386) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1387) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1388) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1389) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1390) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1391) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1392) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1393) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1394) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1395) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1396) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1397) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1398) | S_IEXEC = 0x40 constant S_IFBLK (line 1399) | S_IFBLK = 0x6000 constant S_IFCHR (line 1400) | S_IFCHR = 0x2000 constant S_IFDIR (line 1401) | S_IFDIR = 0x4000 constant S_IFIFO (line 1402) | S_IFIFO = 0x1000 constant S_IFLNK (line 1403) | S_IFLNK = 0xa000 constant S_IFMT (line 1404) | S_IFMT = 0xf000 constant S_IFREG (line 1405) | S_IFREG = 0x8000 constant S_IFSOCK (line 1406) | S_IFSOCK = 0xc000 constant S_IREAD (line 1407) | S_IREAD = 0x100 constant S_IRGRP (line 1408) | S_IRGRP = 0x20 constant S_IROTH (line 1409) | S_IROTH = 0x4 constant S_IRUSR (line 1410) | S_IRUSR = 0x100 constant S_IRWXG (line 1411) | S_IRWXG = 0x38 constant S_IRWXO (line 1412) | S_IRWXO = 0x7 constant S_IRWXU (line 1413) | S_IRWXU = 0x1c0 constant S_ISGID (line 1414) | S_ISGID = 0x400 constant S_ISUID (line 1415) | S_ISUID = 0x800 constant S_ISVTX (line 1416) | S_ISVTX = 0x200 constant S_IWGRP (line 1417) | S_IWGRP = 0x10 constant S_IWOTH (line 1418) | S_IWOTH = 0x2 constant S_IWRITE (line 1419) | S_IWRITE = 0x80 constant S_IWUSR (line 1420) | S_IWUSR = 0x80 constant S_IXGRP (line 1421) | S_IXGRP = 0x8 constant S_IXOTH (line 1422) | S_IXOTH = 0x1 constant S_IXUSR (line 1423) | S_IXUSR = 0x40 constant TAB0 (line 1424) | TAB0 = 0x0 constant TAB1 (line 1425) | TAB1 = 0x800 constant TAB2 (line 1426) | TAB2 = 0x1000 constant TAB3 (line 1427) | TAB3 = 0x1800 constant TABDLY (line 1428) | TABDLY = 0x1800 constant TCFLSH (line 1429) | TCFLSH = 0x540b constant TCGETA (line 1430) | TCGETA = 0x5405 constant TCGETS (line 1431) | TCGETS = 0x5401 constant TCGETS2 (line 1432) | TCGETS2 = 0x802c542a constant TCGETX (line 1433) | TCGETX = 0x5432 constant TCIFLUSH (line 1434) | TCIFLUSH = 0x0 constant TCIOFF (line 1435) | TCIOFF = 0x2 constant TCIOFLUSH (line 1436) | TCIOFLUSH = 0x2 constant TCION (line 1437) | TCION = 0x3 constant TCOFLUSH (line 1438) | TCOFLUSH = 0x1 constant TCOOFF (line 1439) | TCOOFF = 0x0 constant TCOON (line 1440) | TCOON = 0x1 constant TCP_CONGESTION (line 1441) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1442) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1443) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1444) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1445) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1446) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1447) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1448) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1449) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1450) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1451) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1452) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1453) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1454) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1455) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1456) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1457) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1458) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1459) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1460) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1461) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1462) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1463) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1464) | TCP_NODELAY = 0x1 constant TCP_QUEUE_SEQ (line 1465) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1466) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1467) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1468) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1469) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SYNCNT (line 1470) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1471) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1472) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1473) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1474) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1475) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1476) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1477) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1478) | TCSAFLUSH = 0x2 constant TCSBRK (line 1479) | TCSBRK = 0x5409 constant TCSBRKP (line 1480) | TCSBRKP = 0x5425 constant TCSETA (line 1481) | TCSETA = 0x5406 constant TCSETAF (line 1482) | TCSETAF = 0x5408 constant TCSETAW (line 1483) | TCSETAW = 0x5407 constant TCSETS (line 1484) | TCSETS = 0x5402 constant TCSETS2 (line 1485) | TCSETS2 = 0x402c542b constant TCSETSF (line 1486) | TCSETSF = 0x5404 constant TCSETSF2 (line 1487) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1488) | TCSETSW = 0x5403 constant TCSETSW2 (line 1489) | TCSETSW2 = 0x402c542c constant TCSETX (line 1490) | TCSETX = 0x5433 constant TCSETXF (line 1491) | TCSETXF = 0x5434 constant TCSETXW (line 1492) | TCSETXW = 0x5435 constant TCXONC (line 1493) | TCXONC = 0x540a constant TIOCCBRK (line 1494) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1495) | TIOCCONS = 0x541d constant TIOCEXCL (line 1496) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1497) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1498) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1499) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1500) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1501) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1502) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1503) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1504) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1505) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1506) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1507) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1508) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1509) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1510) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1511) | TIOCINQ = 0x541b constant TIOCLINUX (line 1512) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1513) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1514) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1515) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1516) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1517) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1518) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1519) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1520) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1521) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1522) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1523) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1524) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1525) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1526) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1527) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1528) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1529) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1530) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1531) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1532) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1533) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1534) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1535) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1536) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1537) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1538) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1539) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1540) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1541) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1542) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1543) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1544) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1545) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1546) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1547) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1548) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1549) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1550) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1551) | TIOCSETD = 0x5423 constant TIOCSIG (line 1552) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1553) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1554) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1555) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1556) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1557) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1558) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1559) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1560) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1561) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1562) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1563) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 1564) | TUNDETACHFILTER = 0x401054d6 constant TUNGETFEATURES (line 1565) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1566) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 1567) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1568) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETHDRSZ (line 1569) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNSETDEBUG (line 1570) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1571) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1572) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1573) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1574) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1575) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1576) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1577) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1578) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1579) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1580) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1581) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETHDRSZ (line 1582) | TUNSETVNETHDRSZ = 0x400454d8 constant VDISCARD (line 1583) | VDISCARD = 0xd constant VEOF (line 1584) | VEOF = 0x4 constant VEOL (line 1585) | VEOL = 0xb constant VEOL2 (line 1586) | VEOL2 = 0x10 constant VERASE (line 1587) | VERASE = 0x2 constant VINTR (line 1588) | VINTR = 0x0 constant VKILL (line 1589) | VKILL = 0x3 constant VLNEXT (line 1590) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1591) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1592) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1593) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1594) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1595) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1596) | VMIN = 0x6 constant VQUIT (line 1597) | VQUIT = 0x1 constant VREPRINT (line 1598) | VREPRINT = 0xc constant VSTART (line 1599) | VSTART = 0x8 constant VSTOP (line 1600) | VSTOP = 0x9 constant VSUSP (line 1601) | VSUSP = 0xa constant VSWTC (line 1602) | VSWTC = 0x7 constant VT0 (line 1603) | VT0 = 0x0 constant VT1 (line 1604) | VT1 = 0x4000 constant VTDLY (line 1605) | VTDLY = 0x4000 constant VTIME (line 1606) | VTIME = 0x5 constant VWERASE (line 1607) | VWERASE = 0xe constant WALL (line 1608) | WALL = 0x40000000 constant WCLONE (line 1609) | WCLONE = 0x80000000 constant WCONTINUED (line 1610) | WCONTINUED = 0x8 constant WEXITED (line 1611) | WEXITED = 0x4 constant WNOHANG (line 1612) | WNOHANG = 0x1 constant WNOTHREAD (line 1613) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1614) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1615) | WORDSIZE = 0x40 constant WSTOPPED (line 1616) | WSTOPPED = 0x2 constant WUNTRACED (line 1617) | WUNTRACED = 0x2 constant XCASE (line 1618) | XCASE = 0x4 constant XTABS (line 1619) | XTABS = 0x1800 constant E2BIG (line 1624) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1625) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1626) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1627) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1628) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1629) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1630) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1631) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1632) | EBADE = syscall.Errno(0x34) constant EBADF (line 1633) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1634) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1635) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1636) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1637) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1638) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1639) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1640) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1641) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1642) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1643) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1644) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1645) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1646) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1647) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1648) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1649) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1650) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1651) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1652) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1653) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1654) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1655) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1656) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1657) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1658) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1659) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1660) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1661) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1662) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1663) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1664) | EINVAL = syscall.Errno(0x16) constant EIO (line 1665) | EIO = syscall.Errno(0x5) constant EISCONN (line 1666) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1667) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1668) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1669) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1670) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1671) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1672) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1673) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1674) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1675) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1676) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1677) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1678) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1679) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1680) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1681) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1682) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1683) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1684) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1685) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1686) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1687) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1688) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1689) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1690) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1691) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1692) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1693) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1694) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1695) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1696) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1697) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1698) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1699) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1700) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1701) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1702) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1703) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1704) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1705) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1706) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1707) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1708) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1709) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1710) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1711) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1712) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1713) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1714) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1715) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1716) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1717) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1718) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1719) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1720) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1721) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1722) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1723) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1724) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1725) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1726) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1727) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1728) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1729) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1730) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1731) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1732) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1733) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1734) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1735) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1736) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1737) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1738) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1739) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1740) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1741) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1742) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1743) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1744) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1745) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1746) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1747) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1748) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1749) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1750) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1751) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1752) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1753) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1754) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1755) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1756) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1757) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1762) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1763) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1764) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1765) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1766) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1767) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1768) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1769) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1770) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1771) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1772) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1773) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1774) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1775) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1776) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1777) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1778) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1779) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1780) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1781) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1782) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1783) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1784) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1785) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1786) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1787) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1788) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1789) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1790) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1791) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1792) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1793) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1794) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1795) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1796) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x27 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_PACKET (line 41) | AF_PACKET = 0x11 constant AF_PHONET (line 42) | AF_PHONET = 0x23 constant AF_PPPOX (line 43) | AF_PPPOX = 0x18 constant AF_RDS (line 44) | AF_RDS = 0x15 constant AF_ROSE (line 45) | AF_ROSE = 0xb constant AF_ROUTE (line 46) | AF_ROUTE = 0x10 constant AF_RXRPC (line 47) | AF_RXRPC = 0x21 constant AF_SECURITY (line 48) | AF_SECURITY = 0xe constant AF_SNA (line 49) | AF_SNA = 0x16 constant AF_TIPC (line 50) | AF_TIPC = 0x1e constant AF_UNIX (line 51) | AF_UNIX = 0x1 constant AF_UNSPEC (line 52) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 53) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 54) | AF_WANPIPE = 0x19 constant AF_X25 (line 55) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 56) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 57) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 58) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 59) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 60) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 61) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 62) | ALG_SET_OP = 0x3 constant ARPHRD_ADAPT (line 63) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 64) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 65) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 66) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 67) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 68) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 69) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 70) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 71) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 72) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 73) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 74) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 75) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 76) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 77) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 78) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 79) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 80) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 81) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 82) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 83) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 84) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 85) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 86) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 87) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 88) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 89) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 90) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 91) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 92) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 93) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 94) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 95) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 96) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802_TR (line 97) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 98) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IPDDP (line 99) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 100) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 101) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 102) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 103) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 104) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 105) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETROM (line 106) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 107) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 108) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 109) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 110) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 111) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 112) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 113) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 114) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 115) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 116) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 117) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 118) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 119) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 120) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 121) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 122) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 123) | ARPHRD_X25 = 0x10f constant B0 (line 124) | B0 = 0x0 constant B1000000 (line 125) | B1000000 = 0x1008 constant B110 (line 126) | B110 = 0x3 constant B115200 (line 127) | B115200 = 0x1002 constant B1152000 (line 128) | B1152000 = 0x1009 constant B1200 (line 129) | B1200 = 0x9 constant B134 (line 130) | B134 = 0x4 constant B150 (line 131) | B150 = 0x5 constant B1500000 (line 132) | B1500000 = 0x100a constant B1800 (line 133) | B1800 = 0xa constant B19200 (line 134) | B19200 = 0xe constant B200 (line 135) | B200 = 0x6 constant B2000000 (line 136) | B2000000 = 0x100b constant B230400 (line 137) | B230400 = 0x1003 constant B2400 (line 138) | B2400 = 0xb constant B2500000 (line 139) | B2500000 = 0x100c constant B300 (line 140) | B300 = 0x7 constant B3000000 (line 141) | B3000000 = 0x100d constant B3500000 (line 142) | B3500000 = 0x100e constant B38400 (line 143) | B38400 = 0xf constant B4000000 (line 144) | B4000000 = 0x100f constant B460800 (line 145) | B460800 = 0x1004 constant B4800 (line 146) | B4800 = 0xc constant B50 (line 147) | B50 = 0x1 constant B500000 (line 148) | B500000 = 0x1005 constant B57600 (line 149) | B57600 = 0x1001 constant B576000 (line 150) | B576000 = 0x1006 constant B600 (line 151) | B600 = 0x8 constant B75 (line 152) | B75 = 0x2 constant B921600 (line 153) | B921600 = 0x1007 constant B9600 (line 154) | B9600 = 0xd constant BLKBSZGET (line 155) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 156) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 157) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 158) | BLKFRAGET = 0x1265 constant BLKFRASET (line 159) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 160) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 161) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 162) | BLKRAGET = 0x1263 constant BLKRASET (line 163) | BLKRASET = 0x1262 constant BLKROGET (line 164) | BLKROGET = 0x125e constant BLKROSET (line 165) | BLKROSET = 0x125d constant BLKRRPART (line 166) | BLKRRPART = 0x125f constant BLKSECTGET (line 167) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 168) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 169) | BLKSSZGET = 0x1268 constant BOTHER (line 170) | BOTHER = 0x1000 constant BPF_A (line 171) | BPF_A = 0x10 constant BPF_ABS (line 172) | BPF_ABS = 0x20 constant BPF_ADD (line 173) | BPF_ADD = 0x0 constant BPF_ALU (line 174) | BPF_ALU = 0x4 constant BPF_AND (line 175) | BPF_AND = 0x50 constant BPF_B (line 176) | BPF_B = 0x10 constant BPF_DIV (line 177) | BPF_DIV = 0x30 constant BPF_H (line 178) | BPF_H = 0x8 constant BPF_IMM (line 179) | BPF_IMM = 0x0 constant BPF_IND (line 180) | BPF_IND = 0x40 constant BPF_JA (line 181) | BPF_JA = 0x0 constant BPF_JEQ (line 182) | BPF_JEQ = 0x10 constant BPF_JGE (line 183) | BPF_JGE = 0x30 constant BPF_JGT (line 184) | BPF_JGT = 0x20 constant BPF_JMP (line 185) | BPF_JMP = 0x5 constant BPF_JSET (line 186) | BPF_JSET = 0x40 constant BPF_K (line 187) | BPF_K = 0x0 constant BPF_LD (line 188) | BPF_LD = 0x0 constant BPF_LDX (line 189) | BPF_LDX = 0x1 constant BPF_LEN (line 190) | BPF_LEN = 0x80 constant BPF_LSH (line 191) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 192) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 193) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 194) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 195) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 196) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 197) | BPF_MISC = 0x7 constant BPF_MSH (line 198) | BPF_MSH = 0xa0 constant BPF_MUL (line 199) | BPF_MUL = 0x20 constant BPF_NEG (line 200) | BPF_NEG = 0x80 constant BPF_OR (line 201) | BPF_OR = 0x40 constant BPF_RET (line 202) | BPF_RET = 0x6 constant BPF_RSH (line 203) | BPF_RSH = 0x70 constant BPF_ST (line 204) | BPF_ST = 0x2 constant BPF_STX (line 205) | BPF_STX = 0x3 constant BPF_SUB (line 206) | BPF_SUB = 0x10 constant BPF_TAX (line 207) | BPF_TAX = 0x0 constant BPF_TXA (line 208) | BPF_TXA = 0x80 constant BPF_W (line 209) | BPF_W = 0x0 constant BPF_X (line 210) | BPF_X = 0x8 constant BRKINT (line 211) | BRKINT = 0x2 constant BS0 (line 212) | BS0 = 0x0 constant BS1 (line 213) | BS1 = 0x2000 constant BSDLY (line 214) | BSDLY = 0x2000 constant CAN_BCM (line 215) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 216) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_MASK (line 217) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 218) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 219) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 220) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 221) | CAN_ISOTP = 0x6 constant CAN_MCNET (line 222) | CAN_MCNET = 0x5 constant CAN_NPROTO (line 223) | CAN_NPROTO = 0x7 constant CAN_RAW (line 224) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 225) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_MASK (line 226) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 227) | CAN_TP16 = 0x3 constant CAN_TP20 (line 228) | CAN_TP20 = 0x4 constant CBAUD (line 229) | CBAUD = 0x100f constant CBAUDEX (line 230) | CBAUDEX = 0x1000 constant CFLUSH (line 231) | CFLUSH = 0xf constant CIBAUD (line 232) | CIBAUD = 0x100f0000 constant CLOCAL (line 233) | CLOCAL = 0x800 constant CLOCK_DEFAULT (line 234) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 235) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 236) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 237) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 238) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 239) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 240) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 241) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_COARSE (line 242) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 243) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 244) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 245) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 246) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 247) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 248) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 249) | CLONE_FILES = 0x400 constant CLONE_FS (line 250) | CLONE_FS = 0x200 constant CLONE_IO (line 251) | CLONE_IO = 0x80000000 constant CLONE_NEWIPC (line 252) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 253) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 254) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 255) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 256) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 257) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 258) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 259) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 260) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 261) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 262) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 263) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 264) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 265) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 266) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 267) | CLONE_VM = 0x100 constant CMSPAR (line 268) | CMSPAR = 0x40000000 constant CR0 (line 269) | CR0 = 0x0 constant CR1 (line 270) | CR1 = 0x200 constant CR2 (line 271) | CR2 = 0x400 constant CR3 (line 272) | CR3 = 0x600 constant CRDLY (line 273) | CRDLY = 0x600 constant CREAD (line 274) | CREAD = 0x80 constant CRTSCTS (line 275) | CRTSCTS = 0x80000000 constant CS5 (line 276) | CS5 = 0x0 constant CS6 (line 277) | CS6 = 0x10 constant CS7 (line 278) | CS7 = 0x20 constant CS8 (line 279) | CS8 = 0x30 constant CSIGNAL (line 280) | CSIGNAL = 0xff constant CSIZE (line 281) | CSIZE = 0x30 constant CSTART (line 282) | CSTART = 0x11 constant CSTATUS (line 283) | CSTATUS = 0x0 constant CSTOP (line 284) | CSTOP = 0x13 constant CSTOPB (line 285) | CSTOPB = 0x40 constant CSUSP (line 286) | CSUSP = 0x1a constant DT_BLK (line 287) | DT_BLK = 0x6 constant DT_CHR (line 288) | DT_CHR = 0x2 constant DT_DIR (line 289) | DT_DIR = 0x4 constant DT_FIFO (line 290) | DT_FIFO = 0x1 constant DT_LNK (line 291) | DT_LNK = 0xa constant DT_REG (line 292) | DT_REG = 0x8 constant DT_SOCK (line 293) | DT_SOCK = 0xc constant DT_UNKNOWN (line 294) | DT_UNKNOWN = 0x0 constant DT_WHT (line 295) | DT_WHT = 0xe constant ECHO (line 296) | ECHO = 0x8 constant ECHOCTL (line 297) | ECHOCTL = 0x200 constant ECHOE (line 298) | ECHOE = 0x10 constant ECHOK (line 299) | ECHOK = 0x20 constant ECHOKE (line 300) | ECHOKE = 0x800 constant ECHONL (line 301) | ECHONL = 0x40 constant ECHOPRT (line 302) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 303) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 304) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 305) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 306) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 307) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 308) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 309) | EPOLLERR = 0x8 constant EPOLLET (line 310) | EPOLLET = -0x80000000 constant EPOLLHUP (line 311) | EPOLLHUP = 0x10 constant EPOLLIN (line 312) | EPOLLIN = 0x1 constant EPOLLMSG (line 313) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 314) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 315) | EPOLLOUT = 0x4 constant EPOLLPRI (line 316) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 317) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 318) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 319) | EPOLLRDNORM = 0x40 constant EPOLLWRBAND (line 320) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 321) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 322) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 323) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 324) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 325) | EPOLL_CTL_MOD = 0x3 constant EPOLL_NONBLOCK (line 326) | EPOLL_NONBLOCK = 0x80 constant ETH_P_1588 (line 327) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 328) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 329) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 330) | ETH_P_8021Q = 0x8100 constant ETH_P_802_2 (line 331) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 332) | ETH_P_802_3 = 0x1 constant ETH_P_AARP (line 333) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 334) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 335) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 336) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 337) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 338) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 339) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 340) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 341) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 342) | ETH_P_AX25 = 0x2 constant ETH_P_BPQ (line 343) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 344) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 345) | ETH_P_CAN = 0xc constant ETH_P_CONTROL (line 346) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 347) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 348) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 349) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 350) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 351) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 352) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 353) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 354) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 355) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 356) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 357) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 358) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 359) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 360) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 361) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 362) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 363) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 364) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 365) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 366) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 367) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 368) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 369) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 370) | ETH_P_LOOP = 0x60 constant ETH_P_MOBITEX (line 371) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 372) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 373) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_PAE (line 374) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 375) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 376) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 377) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 378) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 379) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 380) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PUP (line 381) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 382) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 383) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 384) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 385) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 386) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 387) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 388) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 389) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 390) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 391) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 392) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 393) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 394) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 395) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 396) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 397) | ETH_P_X25 = 0x805 constant EXTA (line 398) | EXTA = 0xe constant EXTB (line 399) | EXTB = 0xf constant EXTPROC (line 400) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 401) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 402) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 403) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 404) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 405) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 406) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 407) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 408) | FD_SETSIZE = 0x400 constant FF0 (line 409) | FF0 = 0x0 constant FF1 (line 410) | FF1 = 0x8000 constant FFDLY (line 411) | FFDLY = 0x8000 constant FLUSHO (line 412) | FLUSHO = 0x2000 constant F_DUPFD (line 413) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 414) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 415) | F_EXLCK = 0x4 constant F_GETFD (line 416) | F_GETFD = 0x1 constant F_GETFL (line 417) | F_GETFL = 0x3 constant F_GETLEASE (line 418) | F_GETLEASE = 0x401 constant F_GETLK (line 419) | F_GETLK = 0x21 constant F_GETLK64 (line 420) | F_GETLK64 = 0x21 constant F_GETOWN (line 421) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 422) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 423) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 424) | F_GETSIG = 0xb constant F_LOCK (line 425) | F_LOCK = 0x1 constant F_NOTIFY (line 426) | F_NOTIFY = 0x402 constant F_OK (line 427) | F_OK = 0x0 constant F_RDLCK (line 428) | F_RDLCK = 0x0 constant F_SETFD (line 429) | F_SETFD = 0x2 constant F_SETFL (line 430) | F_SETFL = 0x4 constant F_SETLEASE (line 431) | F_SETLEASE = 0x400 constant F_SETLK (line 432) | F_SETLK = 0x22 constant F_SETLK64 (line 433) | F_SETLK64 = 0x22 constant F_SETLKW (line 434) | F_SETLKW = 0x23 constant F_SETLKW64 (line 435) | F_SETLKW64 = 0x23 constant F_SETOWN (line 436) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 437) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 438) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 439) | F_SETSIG = 0xa constant F_SHLCK (line 440) | F_SHLCK = 0x8 constant F_TEST (line 441) | F_TEST = 0x3 constant F_TLOCK (line 442) | F_TLOCK = 0x2 constant F_ULOCK (line 443) | F_ULOCK = 0x0 constant F_UNLCK (line 444) | F_UNLCK = 0x2 constant F_WRLCK (line 445) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 446) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 447) | GRND_RANDOM = 0x2 constant HUPCL (line 448) | HUPCL = 0x400 constant IBSHIFT (line 449) | IBSHIFT = 0x10 constant ICANON (line 450) | ICANON = 0x2 constant ICMPV6_FILTER (line 451) | ICMPV6_FILTER = 0x1 constant ICRNL (line 452) | ICRNL = 0x100 constant IEXTEN (line 453) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 454) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 455) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 456) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_NODAD (line 457) | IFA_F_NODAD = 0x2 constant IFA_F_OPTIMISTIC (line 458) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 459) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 460) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 461) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 462) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 463) | IFA_MAX = 0x7 constant IFF_802_1Q_VLAN (line 464) | IFF_802_1Q_VLAN = 0x1 constant IFF_ALLMULTI (line 465) | IFF_ALLMULTI = 0x200 constant IFF_AUTOMEDIA (line 466) | IFF_AUTOMEDIA = 0x4000 constant IFF_BONDING (line 467) | IFF_BONDING = 0x20 constant IFF_BRIDGE_PORT (line 468) | IFF_BRIDGE_PORT = 0x4000 constant IFF_BROADCAST (line 469) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 470) | IFF_DEBUG = 0x4 constant IFF_DISABLE_NETPOLL (line 471) | IFF_DISABLE_NETPOLL = 0x1000 constant IFF_DONT_BRIDGE (line 472) | IFF_DONT_BRIDGE = 0x800 constant IFF_DORMANT (line 473) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 474) | IFF_DYNAMIC = 0x8000 constant IFF_EBRIDGE (line 475) | IFF_EBRIDGE = 0x2 constant IFF_ECHO (line 476) | IFF_ECHO = 0x40000 constant IFF_ISATAP (line 477) | IFF_ISATAP = 0x80 constant IFF_LOOPBACK (line 478) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 479) | IFF_LOWER_UP = 0x10000 constant IFF_MACVLAN_PORT (line 480) | IFF_MACVLAN_PORT = 0x2000 constant IFF_MASTER (line 481) | IFF_MASTER = 0x400 constant IFF_MASTER_8023AD (line 482) | IFF_MASTER_8023AD = 0x8 constant IFF_MASTER_ALB (line 483) | IFF_MASTER_ALB = 0x10 constant IFF_MASTER_ARPMON (line 484) | IFF_MASTER_ARPMON = 0x100 constant IFF_MULTICAST (line 485) | IFF_MULTICAST = 0x1000 constant IFF_NOARP (line 486) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 487) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 488) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 489) | IFF_ONE_QUEUE = 0x2000 constant IFF_OVS_DATAPATH (line 490) | IFF_OVS_DATAPATH = 0x8000 constant IFF_POINTOPOINT (line 491) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 492) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 493) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 494) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 495) | IFF_SLAVE = 0x800 constant IFF_SLAVE_INACTIVE (line 496) | IFF_SLAVE_INACTIVE = 0x4 constant IFF_SLAVE_NEEDARP (line 497) | IFF_SLAVE_NEEDARP = 0x40 constant IFF_TAP (line 498) | IFF_TAP = 0x2 constant IFF_TUN (line 499) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 500) | IFF_TUN_EXCL = 0x8000 constant IFF_TX_SKB_SHARING (line 501) | IFF_TX_SKB_SHARING = 0x10000 constant IFF_UNICAST_FLT (line 502) | IFF_UNICAST_FLT = 0x20000 constant IFF_UP (line 503) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 504) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 505) | IFF_VOLATILE = 0x70c5a constant IFF_WAN_HDLC (line 506) | IFF_WAN_HDLC = 0x200 constant IFF_XMIT_DST_RELEASE (line 507) | IFF_XMIT_DST_RELEASE = 0x400 constant IFNAMSIZ (line 508) | IFNAMSIZ = 0x10 constant IGNBRK (line 509) | IGNBRK = 0x1 constant IGNCR (line 510) | IGNCR = 0x80 constant IGNPAR (line 511) | IGNPAR = 0x4 constant IMAXBEL (line 512) | IMAXBEL = 0x2000 constant INLCR (line 513) | INLCR = 0x40 constant INPCK (line 514) | INPCK = 0x10 constant IN_ACCESS (line 515) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 516) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 517) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 518) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 519) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 520) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 521) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 522) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 523) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 524) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 525) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 526) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 527) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 528) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 529) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 530) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 531) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 532) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 533) | IN_CREATE = 0x100 constant IN_DELETE (line 534) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 535) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 536) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 537) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 538) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 539) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 540) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 541) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 542) | IN_MODIFY = 0x2 constant IN_MOVE (line 543) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 544) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 545) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 546) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 547) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 548) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 549) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 550) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 551) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 552) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 553) | IPPROTO_AH = 0x33 constant IPPROTO_COMP (line 554) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 555) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 556) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 557) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 558) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 559) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 560) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 561) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 562) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 563) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 564) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 565) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 566) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 567) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 568) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 569) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MTP (line 570) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 571) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 572) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 573) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 574) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 575) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 576) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 577) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 578) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 579) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 580) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 581) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 582) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 583) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 584) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 585) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 586) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 587) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 588) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 589) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 590) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 591) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 592) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 593) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 594) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 595) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 596) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 597) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 598) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 599) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 600) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 601) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 602) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 603) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 604) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 605) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 606) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 607) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 608) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 609) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_PROBE (line 610) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 611) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 612) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 613) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 614) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 615) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 616) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 617) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 618) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 619) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 620) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 621) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 622) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 623) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 624) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 625) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 626) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 627) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 628) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 629) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 630) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 631) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 632) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 633) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 634) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 635) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 636) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 637) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 638) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 639) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 640) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 641) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 642) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 643) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 644) | IP_MF = 0x2000 constant IP_MINTTL (line 645) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 646) | IP_MSFILTER = 0x29 constant IP_MSS (line 647) | IP_MSS = 0x240 constant IP_MTU (line 648) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 649) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_IF (line 650) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 651) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 652) | IP_MULTICAST_TTL = 0x21 constant IP_OFFMASK (line 653) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 654) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 655) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 656) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 657) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 658) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 659) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 660) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 661) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_PROBE (line 662) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 663) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 664) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 665) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 666) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 667) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 668) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 669) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 670) | IP_RETOPTS = 0x7 constant IP_RF (line 671) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 672) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 673) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 674) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 675) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 676) | IP_UNBLOCK_SOURCE = 0x25 constant IP_XFRM_POLICY (line 677) | IP_XFRM_POLICY = 0x11 constant ISIG (line 678) | ISIG = 0x1 constant ISTRIP (line 679) | ISTRIP = 0x20 constant IUCLC (line 680) | IUCLC = 0x200 constant IUTF8 (line 681) | IUTF8 = 0x4000 constant IXANY (line 682) | IXANY = 0x800 constant IXOFF (line 683) | IXOFF = 0x1000 constant IXON (line 684) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 685) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 686) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 687) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 688) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 689) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 690) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 691) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 692) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 693) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 694) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 695) | LOCK_EX = 0x2 constant LOCK_NB (line 696) | LOCK_NB = 0x4 constant LOCK_SH (line 697) | LOCK_SH = 0x1 constant LOCK_UN (line 698) | LOCK_UN = 0x8 constant MADV_DOFORK (line 699) | MADV_DOFORK = 0xb constant MADV_DONTFORK (line 700) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 701) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 702) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 703) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 704) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 705) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 706) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 707) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 708) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 709) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 710) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 711) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 712) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 713) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 714) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 715) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 716) | MAP_FILE = 0x0 constant MAP_FIXED (line 717) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 718) | MAP_GROWSDOWN = 0x1000 constant MAP_LOCKED (line 719) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 720) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 721) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 722) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 723) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 724) | MAP_RENAME = 0x800 constant MAP_SHARED (line 725) | MAP_SHARED = 0x1 constant MAP_TYPE (line 726) | MAP_TYPE = 0xf constant MCL_CURRENT (line 727) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 728) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 729) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 730) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 731) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 732) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 733) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 734) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 735) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 736) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 737) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 738) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 739) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 740) | MSG_FIN = 0x200 constant MSG_MORE (line 741) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 742) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 743) | MSG_OOB = 0x1 constant MSG_PEEK (line 744) | MSG_PEEK = 0x2 constant MSG_PROXY (line 745) | MSG_PROXY = 0x10 constant MSG_RST (line 746) | MSG_RST = 0x1000 constant MSG_SYN (line 747) | MSG_SYN = 0x400 constant MSG_TRUNC (line 748) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 749) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 750) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 751) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 752) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 753) | MS_ASYNC = 0x1 constant MS_BIND (line 754) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 755) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 756) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 757) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 758) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 759) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 760) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 761) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 762) | MS_MOVE = 0x2000 constant MS_NOATIME (line 763) | MS_NOATIME = 0x400 constant MS_NODEV (line 764) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 765) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 766) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 767) | MS_NOSUID = 0x2 constant MS_NOUSER (line 768) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 769) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 770) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 771) | MS_RDONLY = 0x1 constant MS_REC (line 772) | MS_REC = 0x4000 constant MS_RELATIME (line 773) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 774) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 775) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 776) | MS_SHARED = 0x100000 constant MS_SILENT (line 777) | MS_SILENT = 0x8000 constant MS_SLAVE (line 778) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 779) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 780) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 781) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 782) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 783) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 784) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 785) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 786) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 787) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 788) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 789) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 790) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 791) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 792) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 793) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 794) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 795) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 796) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 797) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 798) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 799) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 800) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 801) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 802) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 803) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 804) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 805) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 806) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 807) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 808) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 809) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 810) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 811) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 812) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 813) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 814) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 815) | NETLINK_XFRM = 0x6 constant NL0 (line 816) | NL0 = 0x0 constant NL1 (line 817) | NL1 = 0x100 constant NLA_ALIGNTO (line 818) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 819) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 820) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 821) | NLA_HDRLEN = 0x4 constant NLDLY (line 822) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 823) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 824) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 825) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 826) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 827) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 828) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 829) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 830) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 831) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 832) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 833) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 834) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 835) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 836) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 837) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 838) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 839) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 840) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 841) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 842) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 843) | NLM_F_ROOT = 0x100 constant NOFLSH (line 844) | NOFLSH = 0x80 constant OCRNL (line 845) | OCRNL = 0x8 constant OFDEL (line 846) | OFDEL = 0x80 constant OFILL (line 847) | OFILL = 0x40 constant OLCUC (line 848) | OLCUC = 0x2 constant ONLCR (line 849) | ONLCR = 0x4 constant ONLRET (line 850) | ONLRET = 0x20 constant ONOCR (line 851) | ONOCR = 0x10 constant OPOST (line 852) | OPOST = 0x1 constant O_ACCMODE (line 853) | O_ACCMODE = 0x3 constant O_APPEND (line 854) | O_APPEND = 0x8 constant O_ASYNC (line 855) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 856) | O_CLOEXEC = 0x80000 constant O_CREAT (line 857) | O_CREAT = 0x100 constant O_DIRECT (line 858) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 859) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 860) | O_DSYNC = 0x10 constant O_EXCL (line 861) | O_EXCL = 0x400 constant O_FSYNC (line 862) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 863) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 864) | O_NDELAY = 0x80 constant O_NOATIME (line 865) | O_NOATIME = 0x40000 constant O_NOCTTY (line 866) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 867) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 868) | O_NONBLOCK = 0x80 constant O_RDONLY (line 869) | O_RDONLY = 0x0 constant O_RDWR (line 870) | O_RDWR = 0x2 constant O_RSYNC (line 871) | O_RSYNC = 0x4010 constant O_SYNC (line 872) | O_SYNC = 0x4010 constant O_TRUNC (line 873) | O_TRUNC = 0x200 constant O_WRONLY (line 874) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 875) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 876) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 877) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 878) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 879) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 880) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CPU (line 881) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_FLAG_DEFRAG (line 882) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_HASH (line 883) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 884) | PACKET_FANOUT_LB = 0x1 constant PACKET_FASTROUTE (line 885) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 886) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 887) | PACKET_HOST = 0x0 constant PACKET_LOOPBACK (line 888) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 889) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 890) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 891) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 892) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 893) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 894) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 895) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 896) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 897) | PACKET_OUTGOING = 0x4 constant PACKET_RECV_OUTPUT (line 898) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 899) | PACKET_RESERVE = 0xc constant PACKET_RX_RING (line 900) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 901) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 902) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_RING (line 903) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 904) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_VERSION (line 905) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 906) | PACKET_VNET_HDR = 0xf constant PARENB (line 907) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 908) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 909) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 910) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 911) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 912) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 913) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 914) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 915) | PARITY_NONE = 0x1 constant PARMRK (line 916) | PARMRK = 0x8 constant PARODD (line 917) | PARODD = 0x200 constant PENDIN (line 918) | PENDIN = 0x4000 constant PRIO_PGRP (line 919) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 920) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 921) | PRIO_USER = 0x2 constant PROT_EXEC (line 922) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 923) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 924) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 925) | PROT_NONE = 0x0 constant PROT_READ (line 926) | PROT_READ = 0x1 constant PROT_WRITE (line 927) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 928) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 929) | PR_CAPBSET_READ = 0x17 constant PR_ENDIAN_BIG (line 930) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 931) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 932) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 933) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 934) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 935) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 936) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 937) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 938) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 939) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 940) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 941) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 942) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 943) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 944) | PR_FP_EXC_UND = 0x40000 constant PR_GET_DUMPABLE (line 945) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 946) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 947) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 948) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 949) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 950) | PR_GET_NAME = 0x10 constant PR_GET_PDEATHSIG (line 951) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 952) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 953) | PR_GET_SECUREBITS = 0x1b constant PR_GET_TIMERSLACK (line 954) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 955) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 956) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 957) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 958) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 959) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 960) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 961) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 962) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 963) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 964) | PR_MCE_KILL_SET = 0x1 constant PR_SET_DUMPABLE (line 965) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 966) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 967) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 968) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 969) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_NAME (line 970) | PR_SET_NAME = 0xf constant PR_SET_PDEATHSIG (line 971) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_SECCOMP (line 972) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 973) | PR_SET_SECUREBITS = 0x1c constant PR_SET_TIMERSLACK (line 974) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 975) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 976) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 977) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 978) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 979) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 980) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 981) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 982) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 983) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 984) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 985) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 986) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 987) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 988) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 989) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 990) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 991) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 992) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_STOP (line 993) | PTRACE_EVENT_STOP = 0x7 constant PTRACE_EVENT_VFORK (line 994) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 995) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 996) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 997) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 998) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 999) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1000) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GET_THREAD_AREA (line 1001) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1002) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1003) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1004) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1005) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1006) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1007) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_MASK (line 1008) | PTRACE_O_MASK = 0x7f constant PTRACE_O_TRACECLONE (line 1009) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1010) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1011) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1012) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESYSGOOD (line 1013) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1014) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1015) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1016) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1017) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKTEXT (line 1018) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1019) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1020) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1021) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1022) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1023) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1024) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1025) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1026) | PTRACE_SEIZE = 0x4206 constant PTRACE_SEIZE_DEVEL (line 1027) | PTRACE_SEIZE_DEVEL = 0x80000000 constant PTRACE_SETFPREGS (line 1028) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1029) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1030) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1031) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1032) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SET_THREAD_AREA (line 1033) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1034) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1035) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1036) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1037) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1038) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1039) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1040) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1041) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1042) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1043) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 1044) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1045) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_ADVMSS (line 1046) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 1047) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1048) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1049) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1050) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1051) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1052) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1053) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1054) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1055) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1056) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1057) | RTAX_MAX = 0xe constant RTAX_MTU (line 1058) | RTAX_MTU = 0x2 constant RTAX_REORDERING (line 1059) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1060) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1061) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1062) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1063) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1064) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1065) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1066) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1067) | RTA_MAX = 0x10 constant RTCF_DIRECTSRC (line 1068) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1069) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1070) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1071) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1072) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1073) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1074) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1075) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1076) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1077) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1078) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1079) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1080) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1081) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1082) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1083) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1084) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1085) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1086) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1087) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1088) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1089) | RTF_MSS = 0x40 constant RTF_MTU (line 1090) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1091) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1092) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1093) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1094) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1095) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1096) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1097) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1098) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1099) | RTF_STATIC = 0x400 constant RTF_THROW (line 1100) | RTF_THROW = 0x2000 constant RTF_UP (line 1101) | RTF_UP = 0x1 constant RTF_WINDOW (line 1102) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1103) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1104) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1105) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1106) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1107) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1108) | RTM_DELLINK = 0x11 constant RTM_DELNEIGH (line 1109) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1110) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1111) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1112) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1113) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1114) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1115) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1116) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1117) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1118) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1119) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1120) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1121) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1122) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1123) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1124) | RTM_GETLINK = 0x12 constant RTM_GETMULTICAST (line 1125) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1126) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1127) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETQDISC (line 1128) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1129) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1130) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1131) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1132) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1133) | RTM_MAX = 0x4f constant RTM_NEWACTION (line 1134) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1135) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1136) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1137) | RTM_NEWLINK = 0x10 constant RTM_NEWNDUSEROPT (line 1138) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1139) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1140) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWPREFIX (line 1141) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1142) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1143) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1144) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1145) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1146) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1147) | RTM_NR_FAMILIES = 0x10 constant RTM_NR_MSGTYPES (line 1148) | RTM_NR_MSGTYPES = 0x40 constant RTM_SETDCB (line 1149) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1150) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1151) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1152) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1153) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1154) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1155) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1156) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1157) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1158) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1159) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1160) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1161) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1162) | RTPROT_KERNEL = 0x2 constant RTPROT_MRT (line 1163) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1164) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1165) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1166) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1167) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1168) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1169) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1170) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1171) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1172) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1173) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1174) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1175) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1176) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1177) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1178) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1179) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1180) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1181) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1182) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1183) | SCM_TIMESTAMPNS = 0x23 constant SHUT_RD (line 1184) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1185) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1186) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1187) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1188) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1189) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1190) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 1191) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1192) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1193) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1194) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1195) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1196) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1197) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1198) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1199) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1200) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1201) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1202) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1203) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1204) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1205) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1206) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1207) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1208) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1209) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1210) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1211) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1212) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1213) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1214) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1215) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1216) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1217) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1218) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1219) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1220) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1221) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1222) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1223) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1224) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1225) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1226) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1227) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1228) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1229) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1230) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1231) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1232) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1233) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1234) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1235) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1236) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1237) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1238) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1239) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1240) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1241) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1242) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1243) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1244) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1245) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1246) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1247) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 1248) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1249) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1250) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1251) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1252) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1253) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1254) | SOL_AAL = 0x109 constant SOL_ATM (line 1255) | SOL_ATM = 0x108 constant SOL_CAN_BASE (line 1256) | SOL_CAN_BASE = 0x64 constant SOL_DECNET (line 1257) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1258) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1259) | SOL_IP = 0x0 constant SOL_IPV6 (line 1260) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1261) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1262) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1263) | SOL_PACKET = 0x107 constant SOL_RAW (line 1264) | SOL_RAW = 0xff constant SOL_SOCKET (line 1265) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1266) | SOL_TCP = 0x6 constant SOL_X25 (line 1267) | SOL_X25 = 0x106 constant SOMAXCONN (line 1268) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1269) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_FILTER (line 1270) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1271) | SO_BINDTODEVICE = 0x19 constant SO_BROADCAST (line 1272) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1273) | SO_BSDCOMPAT = 0xe constant SO_DEBUG (line 1274) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1275) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1276) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1277) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1278) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1279) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1280) | SO_LINGER = 0x80 constant SO_MARK (line 1281) | SO_MARK = 0x24 constant SO_NO_CHECK (line 1282) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1283) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1284) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1285) | SO_PASSSEC = 0x22 constant SO_PEERCRED (line 1286) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1287) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1288) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1289) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1290) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1291) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1292) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1293) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1294) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1295) | SO_REUSEADDR = 0x4 constant SO_RXQ_OVFL (line 1296) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1297) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1298) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1299) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SNDBUF (line 1300) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1301) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1302) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1303) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1304) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1305) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1306) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1307) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1308) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1309) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1310) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1311) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1312) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1313) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1314) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1315) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SPLICE_F_GIFT (line 1316) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1317) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1318) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1319) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1320) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1321) | S_IEXEC = 0x40 constant S_IFBLK (line 1322) | S_IFBLK = 0x6000 constant S_IFCHR (line 1323) | S_IFCHR = 0x2000 constant S_IFDIR (line 1324) | S_IFDIR = 0x4000 constant S_IFIFO (line 1325) | S_IFIFO = 0x1000 constant S_IFLNK (line 1326) | S_IFLNK = 0xa000 constant S_IFMT (line 1327) | S_IFMT = 0xf000 constant S_IFREG (line 1328) | S_IFREG = 0x8000 constant S_IFSOCK (line 1329) | S_IFSOCK = 0xc000 constant S_IREAD (line 1330) | S_IREAD = 0x100 constant S_IRGRP (line 1331) | S_IRGRP = 0x20 constant S_IROTH (line 1332) | S_IROTH = 0x4 constant S_IRUSR (line 1333) | S_IRUSR = 0x100 constant S_IRWXG (line 1334) | S_IRWXG = 0x38 constant S_IRWXO (line 1335) | S_IRWXO = 0x7 constant S_IRWXU (line 1336) | S_IRWXU = 0x1c0 constant S_ISGID (line 1337) | S_ISGID = 0x400 constant S_ISUID (line 1338) | S_ISUID = 0x800 constant S_ISVTX (line 1339) | S_ISVTX = 0x200 constant S_IWGRP (line 1340) | S_IWGRP = 0x10 constant S_IWOTH (line 1341) | S_IWOTH = 0x2 constant S_IWRITE (line 1342) | S_IWRITE = 0x80 constant S_IWUSR (line 1343) | S_IWUSR = 0x80 constant S_IXGRP (line 1344) | S_IXGRP = 0x8 constant S_IXOTH (line 1345) | S_IXOTH = 0x1 constant S_IXUSR (line 1346) | S_IXUSR = 0x40 constant TAB0 (line 1347) | TAB0 = 0x0 constant TAB1 (line 1348) | TAB1 = 0x800 constant TAB2 (line 1349) | TAB2 = 0x1000 constant TAB3 (line 1350) | TAB3 = 0x1800 constant TABDLY (line 1351) | TABDLY = 0x1800 constant TCFLSH (line 1352) | TCFLSH = 0x5407 constant TCGETA (line 1353) | TCGETA = 0x5401 constant TCGETS (line 1354) | TCGETS = 0x540d constant TCGETS2 (line 1355) | TCGETS2 = 0x4030542a constant TCIFLUSH (line 1356) | TCIFLUSH = 0x0 constant TCIOFF (line 1357) | TCIOFF = 0x2 constant TCIOFLUSH (line 1358) | TCIOFLUSH = 0x2 constant TCION (line 1359) | TCION = 0x3 constant TCOFLUSH (line 1360) | TCOFLUSH = 0x1 constant TCOOFF (line 1361) | TCOOFF = 0x0 constant TCOON (line 1362) | TCOON = 0x1 constant TCP_CONGESTION (line 1363) | TCP_CONGESTION = 0xd constant TCP_CORK (line 1364) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1365) | TCP_DEFER_ACCEPT = 0x9 constant TCP_INFO (line 1366) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1367) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1368) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1369) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1370) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1371) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1372) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1373) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1374) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1375) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1376) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1377) | TCP_NODELAY = 0x1 constant TCP_QUICKACK (line 1378) | TCP_QUICKACK = 0xc constant TCP_SYNCNT (line 1379) | TCP_SYNCNT = 0x7 constant TCP_WINDOW_CLAMP (line 1380) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1381) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1382) | TCSBRK = 0x5405 constant TCSBRKP (line 1383) | TCSBRKP = 0x5486 constant TCSETA (line 1384) | TCSETA = 0x5402 constant TCSETAF (line 1385) | TCSETAF = 0x5404 constant TCSETAW (line 1386) | TCSETAW = 0x5403 constant TCSETS (line 1387) | TCSETS = 0x540e constant TCSETS2 (line 1388) | TCSETS2 = 0x8030542b constant TCSETSF (line 1389) | TCSETSF = 0x5410 constant TCSETSF2 (line 1390) | TCSETSF2 = 0x8030542d constant TCSETSW (line 1391) | TCSETSW = 0x540f constant TCSETSW2 (line 1392) | TCSETSW2 = 0x8030542c constant TCXONC (line 1393) | TCXONC = 0x5406 constant TIOCCBRK (line 1394) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1395) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1396) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1397) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1398) | TIOCGETD = 0x7400 constant TIOCGETP (line 1399) | TIOCGETP = 0x7408 constant TIOCGICOUNT (line 1400) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1401) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1402) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1403) | TIOCGPGRP = 0x40047477 constant TIOCGPTN (line 1404) | TIOCGPTN = 0x40045430 constant TIOCGSERIAL (line 1405) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1406) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1407) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1408) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1409) | TIOCINQ = 0x467f constant TIOCLINUX (line 1410) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1411) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1412) | TIOCMBIS = 0x741b constant TIOCMGET (line 1413) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1414) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1415) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1416) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1417) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1418) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1419) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1420) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1421) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1422) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1423) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1424) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1425) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1426) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1427) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1428) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1429) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1430) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1431) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1432) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1433) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1434) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1435) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1436) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1437) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1438) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1439) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1440) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1441) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1442) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1443) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1444) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1445) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1446) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1447) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1448) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1449) | TIOCSETD = 0x7401 constant TIOCSETN (line 1450) | TIOCSETN = 0x740a constant TIOCSETP (line 1451) | TIOCSETP = 0x7409 constant TIOCSIG (line 1452) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1453) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1454) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1455) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1456) | TIOCSPTLCK = 0x80045431 constant TIOCSSERIAL (line 1457) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1458) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1459) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1460) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1461) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1462) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 1463) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 1464) | TUNDETACHFILTER = 0x800854d6 constant TUNGETFEATURES (line 1465) | TUNGETFEATURES = 0x400454cf constant TUNGETIFF (line 1466) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1467) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETHDRSZ (line 1468) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNSETDEBUG (line 1469) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1470) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1471) | TUNSETIFF = 0x800454ca constant TUNSETLINK (line 1472) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1473) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1474) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1475) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1476) | TUNSETPERSIST = 0x800454cb constant TUNSETSNDBUF (line 1477) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1478) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETHDRSZ (line 1479) | TUNSETVNETHDRSZ = 0x800454d8 constant VDISCARD (line 1480) | VDISCARD = 0xd constant VEOF (line 1481) | VEOF = 0x10 constant VEOL (line 1482) | VEOL = 0x11 constant VEOL2 (line 1483) | VEOL2 = 0x6 constant VERASE (line 1484) | VERASE = 0x2 constant VINTR (line 1485) | VINTR = 0x0 constant VKILL (line 1486) | VKILL = 0x3 constant VLNEXT (line 1487) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1488) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1489) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1490) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1491) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1492) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1493) | VMIN = 0x4 constant VQUIT (line 1494) | VQUIT = 0x1 constant VREPRINT (line 1495) | VREPRINT = 0xc constant VSTART (line 1496) | VSTART = 0x8 constant VSTOP (line 1497) | VSTOP = 0x9 constant VSUSP (line 1498) | VSUSP = 0xa constant VSWTC (line 1499) | VSWTC = 0x7 constant VSWTCH (line 1500) | VSWTCH = 0x7 constant VT0 (line 1501) | VT0 = 0x0 constant VT1 (line 1502) | VT1 = 0x4000 constant VTDLY (line 1503) | VTDLY = 0x4000 constant VTIME (line 1504) | VTIME = 0x5 constant VWERASE (line 1505) | VWERASE = 0xe constant WALL (line 1506) | WALL = 0x40000000 constant WCLONE (line 1507) | WCLONE = 0x80000000 constant WCONTINUED (line 1508) | WCONTINUED = 0x8 constant WEXITED (line 1509) | WEXITED = 0x4 constant WNOHANG (line 1510) | WNOHANG = 0x1 constant WNOTHREAD (line 1511) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1512) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1513) | WORDSIZE = 0x20 constant WSTOPPED (line 1514) | WSTOPPED = 0x2 constant WUNTRACED (line 1515) | WUNTRACED = 0x2 constant XCASE (line 1516) | XCASE = 0x4 constant XTABS (line 1517) | XTABS = 0x1800 constant E2BIG (line 1522) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1523) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1524) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1525) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1526) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1527) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1528) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1529) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1530) | EBADE = syscall.Errno(0x32) constant EBADF (line 1531) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1532) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1533) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1534) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1535) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1536) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1537) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1538) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1539) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1540) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1541) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1542) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1543) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1544) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1545) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1546) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1547) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1548) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1549) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1550) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1551) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1552) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1553) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1554) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1555) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1556) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1557) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1558) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1559) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1560) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1561) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1562) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1563) | EINVAL = syscall.Errno(0x16) constant EIO (line 1564) | EIO = syscall.Errno(0x5) constant EISCONN (line 1565) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1566) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1567) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1568) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1569) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1570) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1571) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1572) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1573) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1574) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1575) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1576) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1577) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1578) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1579) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1580) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1581) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1582) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1583) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1584) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1585) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1586) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1587) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1588) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1589) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1590) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1591) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1592) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1593) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1594) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1595) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1596) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1597) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1598) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1599) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1600) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1601) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1602) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1603) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1604) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1605) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1606) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1607) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1608) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1609) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1610) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1611) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1612) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1613) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1614) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1615) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1616) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1617) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1618) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1619) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1620) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1621) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1622) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1623) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1624) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1625) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1626) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1627) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1628) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1629) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1630) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1631) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1632) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1633) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1634) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1635) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1636) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1637) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1638) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1639) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1640) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1641) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1642) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1643) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1644) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1645) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1646) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1647) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1648) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1649) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1650) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1651) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1652) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1653) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1654) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1655) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1656) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1657) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1662) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1663) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1664) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1665) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1666) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1667) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1668) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1669) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1670) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1671) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1672) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1673) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1674) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1675) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1676) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1677) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1678) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1679) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1680) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1681) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1682) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1683) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1684) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1685) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1686) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1687) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1688) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1689) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1690) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1691) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1692) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 1693) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1694) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1695) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KEY (line 35) | AF_KEY = 0xf constant AF_LLC (line 36) | AF_LLC = 0x1a constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x29 constant AF_MPLS (line 39) | AF_MPLS = 0x1c constant AF_NETBEUI (line 40) | AF_NETBEUI = 0xd constant AF_NETLINK (line 41) | AF_NETLINK = 0x10 constant AF_NETROM (line 42) | AF_NETROM = 0x6 constant AF_NFC (line 43) | AF_NFC = 0x27 constant AF_PACKET (line 44) | AF_PACKET = 0x11 constant AF_PHONET (line 45) | AF_PHONET = 0x23 constant AF_PPPOX (line 46) | AF_PPPOX = 0x18 constant AF_RDS (line 47) | AF_RDS = 0x15 constant AF_ROSE (line 48) | AF_ROSE = 0xb constant AF_ROUTE (line 49) | AF_ROUTE = 0x10 constant AF_RXRPC (line 50) | AF_RXRPC = 0x21 constant AF_SECURITY (line 51) | AF_SECURITY = 0xe constant AF_SNA (line 52) | AF_SNA = 0x16 constant AF_TIPC (line 53) | AF_TIPC = 0x1e constant AF_UNIX (line 54) | AF_UNIX = 0x1 constant AF_UNSPEC (line 55) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 56) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 57) | AF_WANPIPE = 0x19 constant AF_X25 (line 58) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 59) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 60) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 61) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 62) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 63) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 64) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 65) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 66) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 67) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 68) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 69) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 70) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 71) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 72) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 73) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 74) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 75) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 76) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 77) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 78) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 79) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 80) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 81) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 82) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 83) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 84) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 85) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 86) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 87) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 88) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 89) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 90) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 91) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 92) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 93) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 94) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 95) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 96) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 97) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 98) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 99) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 100) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 101) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 102) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 103) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 104) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 105) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 106) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 107) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 108) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 109) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 110) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 111) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 112) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 113) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 114) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 115) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 116) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 117) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 118) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 119) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 120) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 121) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 122) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 123) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 124) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 125) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 126) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 127) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 128) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 129) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 130) | ARPHRD_X25 = 0x10f constant B0 (line 131) | B0 = 0x0 constant B1000000 (line 132) | B1000000 = 0x1008 constant B110 (line 133) | B110 = 0x3 constant B115200 (line 134) | B115200 = 0x1002 constant B1152000 (line 135) | B1152000 = 0x1009 constant B1200 (line 136) | B1200 = 0x9 constant B134 (line 137) | B134 = 0x4 constant B150 (line 138) | B150 = 0x5 constant B1500000 (line 139) | B1500000 = 0x100a constant B1800 (line 140) | B1800 = 0xa constant B19200 (line 141) | B19200 = 0xe constant B200 (line 142) | B200 = 0x6 constant B2000000 (line 143) | B2000000 = 0x100b constant B230400 (line 144) | B230400 = 0x1003 constant B2400 (line 145) | B2400 = 0xb constant B2500000 (line 146) | B2500000 = 0x100c constant B300 (line 147) | B300 = 0x7 constant B3000000 (line 148) | B3000000 = 0x100d constant B3500000 (line 149) | B3500000 = 0x100e constant B38400 (line 150) | B38400 = 0xf constant B4000000 (line 151) | B4000000 = 0x100f constant B460800 (line 152) | B460800 = 0x1004 constant B4800 (line 153) | B4800 = 0xc constant B50 (line 154) | B50 = 0x1 constant B500000 (line 155) | B500000 = 0x1005 constant B57600 (line 156) | B57600 = 0x1001 constant B576000 (line 157) | B576000 = 0x1006 constant B600 (line 158) | B600 = 0x8 constant B75 (line 159) | B75 = 0x2 constant B921600 (line 160) | B921600 = 0x1007 constant B9600 (line 161) | B9600 = 0xd constant BLKBSZGET (line 162) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 163) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 164) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 165) | BLKFRAGET = 0x1265 constant BLKFRASET (line 166) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 167) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 168) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 169) | BLKRAGET = 0x1263 constant BLKRASET (line 170) | BLKRASET = 0x1262 constant BLKROGET (line 171) | BLKROGET = 0x125e constant BLKROSET (line 172) | BLKROSET = 0x125d constant BLKRRPART (line 173) | BLKRRPART = 0x125f constant BLKSECTGET (line 174) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 175) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 176) | BLKSSZGET = 0x1268 constant BPF_A (line 177) | BPF_A = 0x10 constant BPF_ABS (line 178) | BPF_ABS = 0x20 constant BPF_ADD (line 179) | BPF_ADD = 0x0 constant BPF_ALU (line 180) | BPF_ALU = 0x4 constant BPF_AND (line 181) | BPF_AND = 0x50 constant BPF_B (line 182) | BPF_B = 0x10 constant BPF_DIV (line 183) | BPF_DIV = 0x30 constant BPF_H (line 184) | BPF_H = 0x8 constant BPF_IMM (line 185) | BPF_IMM = 0x0 constant BPF_IND (line 186) | BPF_IND = 0x40 constant BPF_JA (line 187) | BPF_JA = 0x0 constant BPF_JEQ (line 188) | BPF_JEQ = 0x10 constant BPF_JGE (line 189) | BPF_JGE = 0x30 constant BPF_JGT (line 190) | BPF_JGT = 0x20 constant BPF_JMP (line 191) | BPF_JMP = 0x5 constant BPF_JSET (line 192) | BPF_JSET = 0x40 constant BPF_K (line 193) | BPF_K = 0x0 constant BPF_LD (line 194) | BPF_LD = 0x0 constant BPF_LDX (line 195) | BPF_LDX = 0x1 constant BPF_LEN (line 196) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 197) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 198) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 199) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 200) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 201) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 202) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 203) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 204) | BPF_MISC = 0x7 constant BPF_MOD (line 205) | BPF_MOD = 0x90 constant BPF_MSH (line 206) | BPF_MSH = 0xa0 constant BPF_MUL (line 207) | BPF_MUL = 0x20 constant BPF_NEG (line 208) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 209) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 210) | BPF_OR = 0x40 constant BPF_RET (line 211) | BPF_RET = 0x6 constant BPF_RSH (line 212) | BPF_RSH = 0x70 constant BPF_ST (line 213) | BPF_ST = 0x2 constant BPF_STX (line 214) | BPF_STX = 0x3 constant BPF_SUB (line 215) | BPF_SUB = 0x10 constant BPF_TAX (line 216) | BPF_TAX = 0x0 constant BPF_TXA (line 217) | BPF_TXA = 0x80 constant BPF_W (line 218) | BPF_W = 0x0 constant BPF_X (line 219) | BPF_X = 0x8 constant BPF_XOR (line 220) | BPF_XOR = 0xa0 constant BRKINT (line 221) | BRKINT = 0x2 constant CFLUSH (line 222) | CFLUSH = 0xf constant CLOCAL (line 223) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 224) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 225) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 226) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 227) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 228) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 229) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 230) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 231) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 232) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 233) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 234) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 235) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 236) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 237) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 238) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 239) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 240) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 241) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 242) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 243) | CLONE_FILES = 0x400 constant CLONE_FS (line 244) | CLONE_FS = 0x200 constant CLONE_IO (line 245) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 246) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 247) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 248) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 249) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 250) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 251) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 252) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 253) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 254) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 255) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 256) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 257) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 258) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 259) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 260) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 261) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 262) | CLONE_VM = 0x100 constant CREAD (line 263) | CREAD = 0x80 constant CS5 (line 264) | CS5 = 0x0 constant CS6 (line 265) | CS6 = 0x10 constant CS7 (line 266) | CS7 = 0x20 constant CS8 (line 267) | CS8 = 0x30 constant CSIGNAL (line 268) | CSIGNAL = 0xff constant CSIZE (line 269) | CSIZE = 0x30 constant CSTART (line 270) | CSTART = 0x11 constant CSTATUS (line 271) | CSTATUS = 0x0 constant CSTOP (line 272) | CSTOP = 0x13 constant CSTOPB (line 273) | CSTOPB = 0x40 constant CSUSP (line 274) | CSUSP = 0x1a constant DT_BLK (line 275) | DT_BLK = 0x6 constant DT_CHR (line 276) | DT_CHR = 0x2 constant DT_DIR (line 277) | DT_DIR = 0x4 constant DT_FIFO (line 278) | DT_FIFO = 0x1 constant DT_LNK (line 279) | DT_LNK = 0xa constant DT_REG (line 280) | DT_REG = 0x8 constant DT_SOCK (line 281) | DT_SOCK = 0xc constant DT_UNKNOWN (line 282) | DT_UNKNOWN = 0x0 constant DT_WHT (line 283) | DT_WHT = 0xe constant ECHO (line 284) | ECHO = 0x8 constant ECHOCTL (line 285) | ECHOCTL = 0x200 constant ECHOE (line 286) | ECHOE = 0x10 constant ECHOK (line 287) | ECHOK = 0x20 constant ECHOKE (line 288) | ECHOKE = 0x800 constant ECHONL (line 289) | ECHONL = 0x40 constant ECHOPRT (line 290) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 291) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 292) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 293) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 294) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 295) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 296) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 297) | EPOLLERR = 0x8 constant EPOLLET (line 298) | EPOLLET = 0x80000000 constant EPOLLHUP (line 299) | EPOLLHUP = 0x10 constant EPOLLIN (line 300) | EPOLLIN = 0x1 constant EPOLLMSG (line 301) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 302) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 303) | EPOLLOUT = 0x4 constant EPOLLPRI (line 304) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 305) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 306) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 307) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 308) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 309) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 310) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 311) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 312) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 313) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 314) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 315) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 316) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 317) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 318) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 319) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 320) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 321) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 322) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 323) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 324) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 325) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 326) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 327) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 328) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 329) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 330) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 331) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 332) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 333) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 334) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 335) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 336) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 337) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 338) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 339) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 340) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 341) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 342) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 343) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 344) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 345) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 346) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 347) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 348) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 349) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 350) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 351) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 352) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 353) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 354) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 355) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 356) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 357) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 358) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 359) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 360) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 361) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 362) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 363) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 364) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MOBITEX (line 365) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 366) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 367) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 368) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 369) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 370) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 371) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 372) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 373) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 374) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 375) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 376) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 377) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 378) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 379) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 380) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 381) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 382) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 383) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 384) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 385) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 386) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 387) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 388) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 389) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 390) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 391) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 392) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 393) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 394) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 395) | ETH_P_XDSA = 0xf8 constant EXTA (line 396) | EXTA = 0xe constant EXTB (line 397) | EXTB = 0xf constant EXTPROC (line 398) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 399) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 400) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 401) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 402) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 403) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 404) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 405) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 406) | FD_SETSIZE = 0x400 constant FLUSHO (line 407) | FLUSHO = 0x2000 constant F_DUPFD (line 408) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 409) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 410) | F_EXLCK = 0x4 constant F_GETFD (line 411) | F_GETFD = 0x1 constant F_GETFL (line 412) | F_GETFL = 0x3 constant F_GETLEASE (line 413) | F_GETLEASE = 0x401 constant F_GETLK (line 414) | F_GETLK = 0xe constant F_GETLK64 (line 415) | F_GETLK64 = 0xe constant F_GETOWN (line 416) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 417) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 418) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 419) | F_GETSIG = 0xb constant F_LOCK (line 420) | F_LOCK = 0x1 constant F_NOTIFY (line 421) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 422) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 423) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 424) | F_OFD_SETLKW = 0x26 constant F_OK (line 425) | F_OK = 0x0 constant F_RDLCK (line 426) | F_RDLCK = 0x0 constant F_SETFD (line 427) | F_SETFD = 0x2 constant F_SETFL (line 428) | F_SETFL = 0x4 constant F_SETLEASE (line 429) | F_SETLEASE = 0x400 constant F_SETLK (line 430) | F_SETLK = 0x6 constant F_SETLK64 (line 431) | F_SETLK64 = 0x6 constant F_SETLKW (line 432) | F_SETLKW = 0x7 constant F_SETLKW64 (line 433) | F_SETLKW64 = 0x7 constant F_SETOWN (line 434) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 435) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 436) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 437) | F_SETSIG = 0xa constant F_SHLCK (line 438) | F_SHLCK = 0x8 constant F_TEST (line 439) | F_TEST = 0x3 constant F_TLOCK (line 440) | F_TLOCK = 0x2 constant F_ULOCK (line 441) | F_ULOCK = 0x0 constant F_UNLCK (line 442) | F_UNLCK = 0x2 constant F_WRLCK (line 443) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 444) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 445) | GRND_RANDOM = 0x2 constant HUPCL (line 446) | HUPCL = 0x400 constant ICANON (line 447) | ICANON = 0x2 constant ICMPV6_FILTER (line 448) | ICMPV6_FILTER = 0x1 constant ICRNL (line 449) | ICRNL = 0x100 constant IEXTEN (line 450) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 451) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 452) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 453) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 454) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 455) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 456) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 457) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 458) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 459) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 460) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 461) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 462) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 463) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 464) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 465) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 466) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 467) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 468) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 469) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 470) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 471) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 472) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 473) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 474) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 475) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 476) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 477) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 478) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 479) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 480) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 481) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 482) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 483) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 484) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 485) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 486) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 487) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 488) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 489) | IFF_SLAVE = 0x800 constant IFF_TAP (line 490) | IFF_TAP = 0x2 constant IFF_TUN (line 491) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 492) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 493) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 494) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 495) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 496) | IFNAMSIZ = 0x10 constant IGNBRK (line 497) | IGNBRK = 0x1 constant IGNCR (line 498) | IGNCR = 0x80 constant IGNPAR (line 499) | IGNPAR = 0x4 constant IMAXBEL (line 500) | IMAXBEL = 0x2000 constant INLCR (line 501) | INLCR = 0x40 constant INPCK (line 502) | INPCK = 0x10 constant IN_ACCESS (line 503) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 504) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 505) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 506) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 507) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 508) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 509) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 510) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 511) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 512) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 513) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 514) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 515) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 516) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 517) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 518) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 519) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 520) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 521) | IN_CREATE = 0x100 constant IN_DELETE (line 522) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 523) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 524) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 525) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 526) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 527) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 528) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 529) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 530) | IN_MODIFY = 0x2 constant IN_MOVE (line 531) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 532) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 533) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 534) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 535) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 536) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 537) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 538) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 539) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 540) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 541) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 542) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 543) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 544) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 545) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 546) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 547) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 548) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 549) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 550) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 551) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 552) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 553) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 554) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 555) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 556) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 557) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 558) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 559) | IPPROTO_MH = 0x87 constant IPPROTO_MTP (line 560) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 561) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 562) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 563) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 564) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 565) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 566) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 567) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 568) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 569) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 570) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 571) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 572) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 573) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 574) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 575) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 576) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 577) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 578) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 579) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 580) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 581) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 582) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 583) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 584) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 585) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 586) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 587) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 588) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 589) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 590) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 591) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 592) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 593) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 594) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 595) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 596) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 597) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 598) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 599) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 600) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 601) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 602) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 603) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 604) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 605) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 606) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 607) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 608) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 609) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 610) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 611) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 612) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 613) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 614) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 615) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 616) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 617) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 618) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 619) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 620) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 621) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 622) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 623) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 624) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 625) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 626) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 627) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 628) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 629) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 630) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 631) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 632) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 633) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 634) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 635) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 636) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 637) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 638) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 639) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 640) | IP_MF = 0x2000 constant IP_MINTTL (line 641) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 642) | IP_MSFILTER = 0x29 constant IP_MSS (line 643) | IP_MSS = 0x240 constant IP_MTU (line 644) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 645) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 646) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 647) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 648) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 649) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 650) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 651) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 652) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 653) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 654) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 655) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 656) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 657) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 658) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 659) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 660) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 661) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 662) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 663) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 664) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 665) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 666) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 667) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 668) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 669) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 670) | IP_RETOPTS = 0x7 constant IP_RF (line 671) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 672) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 673) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 674) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 675) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 676) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 677) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 678) | IP_XFRM_POLICY = 0x11 constant ISIG (line 679) | ISIG = 0x1 constant ISTRIP (line 680) | ISTRIP = 0x20 constant IUTF8 (line 681) | IUTF8 = 0x4000 constant IXANY (line 682) | IXANY = 0x800 constant IXOFF (line 683) | IXOFF = 0x1000 constant IXON (line 684) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 685) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 686) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 687) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 688) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 689) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 690) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 691) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 692) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 693) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 694) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 695) | LOCK_EX = 0x2 constant LOCK_NB (line 696) | LOCK_NB = 0x4 constant LOCK_SH (line 697) | LOCK_SH = 0x1 constant LOCK_UN (line 698) | LOCK_UN = 0x8 constant MADV_DODUMP (line 699) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 700) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 701) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 702) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 703) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 704) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 705) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 706) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 707) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 708) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 709) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 710) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 711) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 712) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 713) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 714) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 715) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 716) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 717) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 718) | MAP_FILE = 0x0 constant MAP_FIXED (line 719) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 720) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 721) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 722) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 723) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 724) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 725) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 726) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 727) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 728) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 729) | MAP_RENAME = 0x800 constant MAP_SHARED (line 730) | MAP_SHARED = 0x1 constant MAP_STACK (line 731) | MAP_STACK = 0x40000 constant MAP_TYPE (line 732) | MAP_TYPE = 0xf constant MCL_CURRENT (line 733) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 734) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 735) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 736) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 737) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 738) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 739) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 740) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 741) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 742) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 743) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 744) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 745) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 746) | MSG_FIN = 0x200 constant MSG_MORE (line 747) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 748) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 749) | MSG_OOB = 0x1 constant MSG_PEEK (line 750) | MSG_PEEK = 0x2 constant MSG_PROXY (line 751) | MSG_PROXY = 0x10 constant MSG_RST (line 752) | MSG_RST = 0x1000 constant MSG_SYN (line 753) | MSG_SYN = 0x400 constant MSG_TRUNC (line 754) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 755) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 756) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 757) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 758) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 759) | MS_ASYNC = 0x1 constant MS_BIND (line 760) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 761) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 762) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 763) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 764) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 765) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 766) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 767) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 768) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 769) | MS_MOVE = 0x2000 constant MS_NOATIME (line 770) | MS_NOATIME = 0x400 constant MS_NODEV (line 771) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 772) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 773) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 774) | MS_NOSUID = 0x2 constant MS_NOUSER (line 775) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 776) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 777) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 778) | MS_RDONLY = 0x1 constant MS_REC (line 779) | MS_REC = 0x4000 constant MS_RELATIME (line 780) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 781) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 782) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 783) | MS_SHARED = 0x100000 constant MS_SILENT (line 784) | MS_SILENT = 0x8000 constant MS_SLAVE (line 785) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 786) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 787) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 788) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 789) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 790) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 791) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 792) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 793) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 794) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 795) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 796) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 797) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 798) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 799) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 800) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 801) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 802) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 803) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 804) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 805) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 806) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 807) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 808) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 809) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 810) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 811) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 812) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 813) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 814) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 815) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 816) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 817) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 818) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 819) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 820) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 821) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 822) | NETLINK_XFRM = 0x6 constant NLA_ALIGNTO (line 823) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 824) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 825) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 826) | NLA_HDRLEN = 0x4 constant NLMSG_ALIGNTO (line 827) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 828) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 829) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 830) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 831) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 832) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 833) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 834) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 835) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 836) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 837) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 838) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 839) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 840) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 841) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 842) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 843) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 844) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 845) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 846) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 847) | NLM_F_ROOT = 0x100 constant NOFLSH (line 848) | NOFLSH = 0x80 constant OCRNL (line 849) | OCRNL = 0x8 constant OFDEL (line 850) | OFDEL = 0x80 constant OFILL (line 851) | OFILL = 0x40 constant ONLCR (line 852) | ONLCR = 0x4 constant ONLRET (line 853) | ONLRET = 0x20 constant ONOCR (line 854) | ONOCR = 0x10 constant OPOST (line 855) | OPOST = 0x1 constant O_ACCMODE (line 856) | O_ACCMODE = 0x3 constant O_APPEND (line 857) | O_APPEND = 0x8 constant O_ASYNC (line 858) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 859) | O_CLOEXEC = 0x80000 constant O_CREAT (line 860) | O_CREAT = 0x100 constant O_DIRECT (line 861) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 862) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 863) | O_DSYNC = 0x10 constant O_EXCL (line 864) | O_EXCL = 0x400 constant O_FSYNC (line 865) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 866) | O_LARGEFILE = 0x0 constant O_NDELAY (line 867) | O_NDELAY = 0x80 constant O_NOATIME (line 868) | O_NOATIME = 0x40000 constant O_NOCTTY (line 869) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 870) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 871) | O_NONBLOCK = 0x80 constant O_PATH (line 872) | O_PATH = 0x200000 constant O_RDONLY (line 873) | O_RDONLY = 0x0 constant O_RDWR (line 874) | O_RDWR = 0x2 constant O_RSYNC (line 875) | O_RSYNC = 0x4010 constant O_SYNC (line 876) | O_SYNC = 0x4010 constant O_TMPFILE (line 877) | O_TMPFILE = 0x410000 constant O_TRUNC (line 878) | O_TRUNC = 0x200 constant O_WRONLY (line 879) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 880) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 881) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 882) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 883) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 884) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 885) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 886) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 887) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 888) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 889) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 890) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 891) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 892) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 893) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 894) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 895) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 896) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 897) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 898) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 899) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 900) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 901) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 902) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 903) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 904) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 905) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 906) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 907) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 908) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 909) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 910) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 911) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 912) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 913) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 914) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 915) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 916) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 917) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 918) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 919) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 920) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 921) | PACKET_USER = 0x6 constant PACKET_VERSION (line 922) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 923) | PACKET_VNET_HDR = 0xf constant PARENB (line 924) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 925) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 926) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 927) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 928) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 929) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 930) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 931) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 932) | PARITY_NONE = 0x1 constant PARMRK (line 933) | PARMRK = 0x8 constant PARODD (line 934) | PARODD = 0x200 constant PENDIN (line 935) | PENDIN = 0x4000 constant PRIO_PGRP (line 936) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 937) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 938) | PRIO_USER = 0x2 constant PROT_EXEC (line 939) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 940) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 941) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 942) | PROT_NONE = 0x0 constant PROT_READ (line 943) | PROT_READ = 0x1 constant PROT_WRITE (line 944) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 945) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 946) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 947) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 948) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 949) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 950) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 951) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 952) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 953) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 954) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 955) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 956) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 957) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 958) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 959) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 960) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 961) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 962) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 963) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 964) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 965) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 966) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 967) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 968) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 969) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 970) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 971) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 972) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 973) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 974) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 975) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 976) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 977) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 978) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 979) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 980) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 981) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 982) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 983) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 984) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 985) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 986) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 987) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 988) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 989) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 990) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 991) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 992) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 993) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 994) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 995) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 996) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 997) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 998) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 999) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1000) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1001) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1002) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1003) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1004) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1005) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1006) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1007) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1008) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1009) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1010) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1011) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1012) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1013) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1014) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1015) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1016) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1017) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1018) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1019) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1020) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1021) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1022) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1023) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1024) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1025) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1026) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1027) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1028) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1029) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1030) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1031) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1032) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1033) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1034) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1035) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1036) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1037) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1038) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1039) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1040) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1041) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1042) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1043) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1044) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1045) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1046) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1047) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1048) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1049) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1050) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1051) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1052) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1053) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1054) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1055) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1056) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1057) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1058) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1059) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1060) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1061) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1062) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1063) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1064) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1065) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1066) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1067) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1068) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1069) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1070) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1071) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1072) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1073) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1074) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1075) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1076) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1077) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1078) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1079) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1080) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1081) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1082) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1083) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1084) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1085) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1086) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1087) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1088) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1089) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1090) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1091) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1092) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1093) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1094) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1095) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1096) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1097) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1098) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1099) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1100) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1101) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1102) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1103) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 1104) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1105) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1106) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1107) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1108) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1109) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1110) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1111) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1112) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1113) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1114) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1115) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1116) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1117) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1118) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1119) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1120) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1121) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1122) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1123) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1124) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1125) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1126) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1127) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1128) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1129) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1130) | RTA_MAX = 0x16 constant RTCF_DIRECTSRC (line 1131) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1132) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1133) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1134) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1135) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1136) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1137) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1138) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1139) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1140) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1141) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1142) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1143) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1144) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1145) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1146) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1147) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1148) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1149) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1150) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1151) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1152) | RTF_MSS = 0x40 constant RTF_MTU (line 1153) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1154) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1155) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1156) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1157) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1158) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1159) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1160) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1161) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1162) | RTF_STATIC = 0x400 constant RTF_THROW (line 1163) | RTF_THROW = 0x2000 constant RTF_UP (line 1164) | RTF_UP = 0x1 constant RTF_WINDOW (line 1165) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1166) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1167) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1168) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1169) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1170) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1171) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1172) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1173) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1174) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1175) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1176) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1177) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1178) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1179) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1180) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1181) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1182) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1183) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1184) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1185) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1186) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1187) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1188) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1189) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1190) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1191) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1192) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1193) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1194) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1195) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1196) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1197) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1198) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1199) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1200) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1201) | RTM_MAX = 0x5b constant RTM_NEWACTION (line 1202) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1203) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1204) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1205) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1206) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1207) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1208) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1209) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1210) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1211) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1212) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1213) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1214) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1215) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1216) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1217) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1218) | RTM_NR_FAMILIES = 0x13 constant RTM_NR_MSGTYPES (line 1219) | RTM_NR_MSGTYPES = 0x4c constant RTM_SETDCB (line 1220) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1221) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1222) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1223) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1224) | RTNH_COMPARE_MASK = 0x11 constant RTNH_F_DEAD (line 1225) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1226) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1227) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1228) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1229) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1230) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1231) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1232) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1233) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1234) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1235) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1236) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1237) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1238) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1239) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1240) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1241) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1242) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1243) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1244) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1245) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1246) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1247) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1248) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1249) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1250) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1251) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1252) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1253) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1254) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1255) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1256) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1257) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1258) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1259) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1260) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1261) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1262) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1263) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1264) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1265) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1266) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1267) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 1268) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1269) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1270) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1271) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1272) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1273) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1274) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1275) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1276) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1277) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1278) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1279) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1280) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1281) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1282) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1283) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1284) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1285) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1286) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1287) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1288) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1289) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1290) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1291) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1292) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1293) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1294) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1295) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1296) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1297) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1298) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1299) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1300) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1301) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1302) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1303) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1304) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1305) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1306) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1307) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1308) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1309) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1310) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1311) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1312) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1313) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1314) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1315) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1316) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1317) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1318) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1319) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1320) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1321) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1322) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1323) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1324) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 1325) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1326) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1327) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1328) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1329) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1330) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1331) | SOL_AAL = 0x109 constant SOL_ATM (line 1332) | SOL_ATM = 0x108 constant SOL_DECNET (line 1333) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1334) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1335) | SOL_IP = 0x0 constant SOL_IPV6 (line 1336) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1337) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1338) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1339) | SOL_PACKET = 0x107 constant SOL_RAW (line 1340) | SOL_RAW = 0xff constant SOL_SOCKET (line 1341) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1342) | SOL_TCP = 0x6 constant SOL_X25 (line 1343) | SOL_X25 = 0x106 constant SOMAXCONN (line 1344) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1345) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1346) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1347) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1348) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1349) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1350) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1351) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1352) | SO_BUSY_POLL = 0x2e constant SO_DEBUG (line 1353) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1354) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1355) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1356) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1357) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1358) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1359) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1360) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1361) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1362) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1363) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1364) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1365) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1366) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1367) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1368) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1369) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1370) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1371) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1372) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1373) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1374) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1375) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1376) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1377) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1378) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1379) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1380) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1381) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1382) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1383) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1384) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1385) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1386) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1387) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1388) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1389) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1390) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1391) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1392) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1393) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1394) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1395) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1396) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1397) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1398) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1399) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1400) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1401) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1402) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1403) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1404) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1405) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1406) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1407) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1408) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1409) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1410) | S_IEXEC = 0x40 constant S_IFBLK (line 1411) | S_IFBLK = 0x6000 constant S_IFCHR (line 1412) | S_IFCHR = 0x2000 constant S_IFDIR (line 1413) | S_IFDIR = 0x4000 constant S_IFIFO (line 1414) | S_IFIFO = 0x1000 constant S_IFLNK (line 1415) | S_IFLNK = 0xa000 constant S_IFMT (line 1416) | S_IFMT = 0xf000 constant S_IFREG (line 1417) | S_IFREG = 0x8000 constant S_IFSOCK (line 1418) | S_IFSOCK = 0xc000 constant S_IREAD (line 1419) | S_IREAD = 0x100 constant S_IRGRP (line 1420) | S_IRGRP = 0x20 constant S_IROTH (line 1421) | S_IROTH = 0x4 constant S_IRUSR (line 1422) | S_IRUSR = 0x100 constant S_IRWXG (line 1423) | S_IRWXG = 0x38 constant S_IRWXO (line 1424) | S_IRWXO = 0x7 constant S_IRWXU (line 1425) | S_IRWXU = 0x1c0 constant S_ISGID (line 1426) | S_ISGID = 0x400 constant S_ISUID (line 1427) | S_ISUID = 0x800 constant S_ISVTX (line 1428) | S_ISVTX = 0x200 constant S_IWGRP (line 1429) | S_IWGRP = 0x10 constant S_IWOTH (line 1430) | S_IWOTH = 0x2 constant S_IWRITE (line 1431) | S_IWRITE = 0x80 constant S_IWUSR (line 1432) | S_IWUSR = 0x80 constant S_IXGRP (line 1433) | S_IXGRP = 0x8 constant S_IXOTH (line 1434) | S_IXOTH = 0x1 constant S_IXUSR (line 1435) | S_IXUSR = 0x40 constant TCFLSH (line 1436) | TCFLSH = 0x5407 constant TCIFLUSH (line 1437) | TCIFLUSH = 0x0 constant TCIOFLUSH (line 1438) | TCIOFLUSH = 0x2 constant TCOFLUSH (line 1439) | TCOFLUSH = 0x1 constant TCP_CONGESTION (line 1440) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1441) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1442) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1443) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1444) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1445) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1446) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1447) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1448) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1449) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1450) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1451) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1452) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1453) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1454) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1455) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1456) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1457) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1458) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1459) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1460) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1461) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1462) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1463) | TCP_NODELAY = 0x1 constant TCP_QUEUE_SEQ (line 1464) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1465) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1466) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1467) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1468) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SYNCNT (line 1469) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1470) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1471) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1472) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1473) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1474) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1475) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1476) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1477) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1478) | TCSBRK = 0x5405 constant TCXONC (line 1479) | TCXONC = 0x5406 constant TIOCCBRK (line 1480) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1481) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1482) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1483) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1484) | TIOCGETD = 0x7400 constant TIOCGETP (line 1485) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1486) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1487) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1488) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1489) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1490) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1491) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1492) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1493) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1494) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1495) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1496) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1497) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1498) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1499) | TIOCINQ = 0x467f constant TIOCLINUX (line 1500) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1501) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1502) | TIOCMBIS = 0x741b constant TIOCMGET (line 1503) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1504) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1505) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1506) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1507) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1508) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1509) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1510) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1511) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1512) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1513) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1514) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1515) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1516) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1517) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1518) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1519) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1520) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1521) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1522) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1523) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1524) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1525) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1526) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1527) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1528) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1529) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1530) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1531) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1532) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1533) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1534) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1535) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1536) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1537) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1538) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1539) | TIOCSETD = 0x7401 constant TIOCSETN (line 1540) | TIOCSETN = 0x740a constant TIOCSETP (line 1541) | TIOCSETP = 0x7409 constant TIOCSIG (line 1542) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1543) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1544) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1545) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1546) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1547) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1548) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1549) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1550) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1551) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1552) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1553) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 1554) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1555) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1556) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1557) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1558) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1559) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1560) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1561) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1562) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1563) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1564) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1565) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1566) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1567) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1568) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1569) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1570) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1571) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1572) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1573) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1574) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1575) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1576) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1577) | TUNSETVNETLE = 0x800454dc constant VDISCARD (line 1578) | VDISCARD = 0xd constant VEOF (line 1579) | VEOF = 0x10 constant VEOL (line 1580) | VEOL = 0x11 constant VEOL2 (line 1581) | VEOL2 = 0x6 constant VERASE (line 1582) | VERASE = 0x2 constant VINTR (line 1583) | VINTR = 0x0 constant VKILL (line 1584) | VKILL = 0x3 constant VLNEXT (line 1585) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1586) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1587) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1588) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1589) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1590) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1591) | VMIN = 0x4 constant VQUIT (line 1592) | VQUIT = 0x1 constant VREPRINT (line 1593) | VREPRINT = 0xc constant VSTART (line 1594) | VSTART = 0x8 constant VSTOP (line 1595) | VSTOP = 0x9 constant VSUSP (line 1596) | VSUSP = 0xa constant VSWTC (line 1597) | VSWTC = 0x7 constant VSWTCH (line 1598) | VSWTCH = 0x7 constant VT0 (line 1599) | VT0 = 0x0 constant VT1 (line 1600) | VT1 = 0x4000 constant VTDLY (line 1601) | VTDLY = 0x4000 constant VTIME (line 1602) | VTIME = 0x5 constant VWERASE (line 1603) | VWERASE = 0xe constant WALL (line 1604) | WALL = 0x40000000 constant WCLONE (line 1605) | WCLONE = 0x80000000 constant WCONTINUED (line 1606) | WCONTINUED = 0x8 constant WEXITED (line 1607) | WEXITED = 0x4 constant WNOHANG (line 1608) | WNOHANG = 0x1 constant WNOTHREAD (line 1609) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1610) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1611) | WORDSIZE = 0x40 constant WSTOPPED (line 1612) | WSTOPPED = 0x2 constant WUNTRACED (line 1613) | WUNTRACED = 0x2 constant E2BIG (line 1618) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1619) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1620) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1621) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1622) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1623) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1624) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1625) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1626) | EBADE = syscall.Errno(0x32) constant EBADF (line 1627) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1628) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1629) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1630) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1631) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1632) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1633) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1634) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1635) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1636) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1637) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1638) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1639) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1640) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1641) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1642) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1643) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1644) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1645) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1646) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1647) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1648) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1649) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1650) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1651) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1652) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1653) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1654) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1655) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1656) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1657) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1658) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1659) | EINVAL = syscall.Errno(0x16) constant EIO (line 1660) | EIO = syscall.Errno(0x5) constant EISCONN (line 1661) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1662) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1663) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1664) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1665) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1666) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1667) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1668) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1669) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1670) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1671) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1672) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1673) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1674) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1675) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1676) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1677) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1678) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1679) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1680) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1681) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1682) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1683) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1684) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1685) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1686) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1687) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1688) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1689) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1690) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1691) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1692) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1693) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1694) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1695) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1696) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1697) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1698) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1699) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1700) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1701) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1702) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1703) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1704) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1705) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1706) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1707) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1708) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1709) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1710) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1711) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1712) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1713) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1714) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1715) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1716) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1717) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1718) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1719) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1720) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1721) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1722) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1723) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1724) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1725) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1726) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1727) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1728) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1729) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1730) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1731) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1732) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1733) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1734) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1735) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1736) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1737) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1738) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1739) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1740) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1741) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1742) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1743) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1744) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1745) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1746) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1747) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1748) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1749) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1750) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1751) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1752) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1753) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1758) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1759) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1760) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1761) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1762) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1763) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1764) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1765) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1766) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1767) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1768) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1769) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1770) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1771) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1772) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1773) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1774) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1775) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1776) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1777) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1778) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1779) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1780) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1781) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1782) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1783) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1784) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1785) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1786) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1787) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1788) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 1789) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1790) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1791) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KEY (line 35) | AF_KEY = 0xf constant AF_LLC (line 36) | AF_LLC = 0x1a constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x29 constant AF_MPLS (line 39) | AF_MPLS = 0x1c constant AF_NETBEUI (line 40) | AF_NETBEUI = 0xd constant AF_NETLINK (line 41) | AF_NETLINK = 0x10 constant AF_NETROM (line 42) | AF_NETROM = 0x6 constant AF_NFC (line 43) | AF_NFC = 0x27 constant AF_PACKET (line 44) | AF_PACKET = 0x11 constant AF_PHONET (line 45) | AF_PHONET = 0x23 constant AF_PPPOX (line 46) | AF_PPPOX = 0x18 constant AF_RDS (line 47) | AF_RDS = 0x15 constant AF_ROSE (line 48) | AF_ROSE = 0xb constant AF_ROUTE (line 49) | AF_ROUTE = 0x10 constant AF_RXRPC (line 50) | AF_RXRPC = 0x21 constant AF_SECURITY (line 51) | AF_SECURITY = 0xe constant AF_SNA (line 52) | AF_SNA = 0x16 constant AF_TIPC (line 53) | AF_TIPC = 0x1e constant AF_UNIX (line 54) | AF_UNIX = 0x1 constant AF_UNSPEC (line 55) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 56) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 57) | AF_WANPIPE = 0x19 constant AF_X25 (line 58) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 59) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 60) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 61) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 62) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 63) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 64) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 65) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 66) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 67) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 68) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 69) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 70) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 71) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 72) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 73) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 74) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 75) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 76) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 77) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 78) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 79) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 80) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 81) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 82) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 83) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 84) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 85) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 86) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 87) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 88) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 89) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 90) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 91) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 92) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 93) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 94) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 95) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 96) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 97) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 98) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 99) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 100) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 101) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 102) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 103) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 104) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 105) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 106) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 107) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 108) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 109) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 110) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 111) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 112) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 113) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 114) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 115) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 116) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 117) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 118) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 119) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 120) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 121) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 122) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 123) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 124) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 125) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 126) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 127) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 128) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 129) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 130) | ARPHRD_X25 = 0x10f constant B0 (line 131) | B0 = 0x0 constant B1000000 (line 132) | B1000000 = 0x1008 constant B110 (line 133) | B110 = 0x3 constant B115200 (line 134) | B115200 = 0x1002 constant B1152000 (line 135) | B1152000 = 0x1009 constant B1200 (line 136) | B1200 = 0x9 constant B134 (line 137) | B134 = 0x4 constant B150 (line 138) | B150 = 0x5 constant B1500000 (line 139) | B1500000 = 0x100a constant B1800 (line 140) | B1800 = 0xa constant B19200 (line 141) | B19200 = 0xe constant B200 (line 142) | B200 = 0x6 constant B2000000 (line 143) | B2000000 = 0x100b constant B230400 (line 144) | B230400 = 0x1003 constant B2400 (line 145) | B2400 = 0xb constant B2500000 (line 146) | B2500000 = 0x100c constant B300 (line 147) | B300 = 0x7 constant B3000000 (line 148) | B3000000 = 0x100d constant B3500000 (line 149) | B3500000 = 0x100e constant B38400 (line 150) | B38400 = 0xf constant B4000000 (line 151) | B4000000 = 0x100f constant B460800 (line 152) | B460800 = 0x1004 constant B4800 (line 153) | B4800 = 0xc constant B50 (line 154) | B50 = 0x1 constant B500000 (line 155) | B500000 = 0x1005 constant B57600 (line 156) | B57600 = 0x1001 constant B576000 (line 157) | B576000 = 0x1006 constant B600 (line 158) | B600 = 0x8 constant B75 (line 159) | B75 = 0x2 constant B921600 (line 160) | B921600 = 0x1007 constant B9600 (line 161) | B9600 = 0xd constant BLKBSZGET (line 162) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 163) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 164) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 165) | BLKFRAGET = 0x1265 constant BLKFRASET (line 166) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 167) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 168) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 169) | BLKRAGET = 0x1263 constant BLKRASET (line 170) | BLKRASET = 0x1262 constant BLKROGET (line 171) | BLKROGET = 0x125e constant BLKROSET (line 172) | BLKROSET = 0x125d constant BLKRRPART (line 173) | BLKRRPART = 0x125f constant BLKSECTGET (line 174) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 175) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 176) | BLKSSZGET = 0x1268 constant BPF_A (line 177) | BPF_A = 0x10 constant BPF_ABS (line 178) | BPF_ABS = 0x20 constant BPF_ADD (line 179) | BPF_ADD = 0x0 constant BPF_ALU (line 180) | BPF_ALU = 0x4 constant BPF_AND (line 181) | BPF_AND = 0x50 constant BPF_B (line 182) | BPF_B = 0x10 constant BPF_DIV (line 183) | BPF_DIV = 0x30 constant BPF_H (line 184) | BPF_H = 0x8 constant BPF_IMM (line 185) | BPF_IMM = 0x0 constant BPF_IND (line 186) | BPF_IND = 0x40 constant BPF_JA (line 187) | BPF_JA = 0x0 constant BPF_JEQ (line 188) | BPF_JEQ = 0x10 constant BPF_JGE (line 189) | BPF_JGE = 0x30 constant BPF_JGT (line 190) | BPF_JGT = 0x20 constant BPF_JMP (line 191) | BPF_JMP = 0x5 constant BPF_JSET (line 192) | BPF_JSET = 0x40 constant BPF_K (line 193) | BPF_K = 0x0 constant BPF_LD (line 194) | BPF_LD = 0x0 constant BPF_LDX (line 195) | BPF_LDX = 0x1 constant BPF_LEN (line 196) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 197) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 198) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 199) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 200) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 201) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 202) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 203) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 204) | BPF_MISC = 0x7 constant BPF_MOD (line 205) | BPF_MOD = 0x90 constant BPF_MSH (line 206) | BPF_MSH = 0xa0 constant BPF_MUL (line 207) | BPF_MUL = 0x20 constant BPF_NEG (line 208) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 209) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 210) | BPF_OR = 0x40 constant BPF_RET (line 211) | BPF_RET = 0x6 constant BPF_RSH (line 212) | BPF_RSH = 0x70 constant BPF_ST (line 213) | BPF_ST = 0x2 constant BPF_STX (line 214) | BPF_STX = 0x3 constant BPF_SUB (line 215) | BPF_SUB = 0x10 constant BPF_TAX (line 216) | BPF_TAX = 0x0 constant BPF_TXA (line 217) | BPF_TXA = 0x80 constant BPF_W (line 218) | BPF_W = 0x0 constant BPF_X (line 219) | BPF_X = 0x8 constant BPF_XOR (line 220) | BPF_XOR = 0xa0 constant BRKINT (line 221) | BRKINT = 0x2 constant CFLUSH (line 222) | CFLUSH = 0xf constant CLOCAL (line 223) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 224) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 225) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 226) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 227) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 228) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 229) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 230) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 231) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 232) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 233) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 234) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 235) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 236) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 237) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 238) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 239) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 240) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 241) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 242) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 243) | CLONE_FILES = 0x400 constant CLONE_FS (line 244) | CLONE_FS = 0x200 constant CLONE_IO (line 245) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 246) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 247) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 248) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 249) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 250) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 251) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 252) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 253) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 254) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 255) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 256) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 257) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 258) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 259) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 260) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 261) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 262) | CLONE_VM = 0x100 constant CREAD (line 263) | CREAD = 0x80 constant CS5 (line 264) | CS5 = 0x0 constant CS6 (line 265) | CS6 = 0x10 constant CS7 (line 266) | CS7 = 0x20 constant CS8 (line 267) | CS8 = 0x30 constant CSIGNAL (line 268) | CSIGNAL = 0xff constant CSIZE (line 269) | CSIZE = 0x30 constant CSTART (line 270) | CSTART = 0x11 constant CSTATUS (line 271) | CSTATUS = 0x0 constant CSTOP (line 272) | CSTOP = 0x13 constant CSTOPB (line 273) | CSTOPB = 0x40 constant CSUSP (line 274) | CSUSP = 0x1a constant DT_BLK (line 275) | DT_BLK = 0x6 constant DT_CHR (line 276) | DT_CHR = 0x2 constant DT_DIR (line 277) | DT_DIR = 0x4 constant DT_FIFO (line 278) | DT_FIFO = 0x1 constant DT_LNK (line 279) | DT_LNK = 0xa constant DT_REG (line 280) | DT_REG = 0x8 constant DT_SOCK (line 281) | DT_SOCK = 0xc constant DT_UNKNOWN (line 282) | DT_UNKNOWN = 0x0 constant DT_WHT (line 283) | DT_WHT = 0xe constant ECHO (line 284) | ECHO = 0x8 constant ECHOCTL (line 285) | ECHOCTL = 0x200 constant ECHOE (line 286) | ECHOE = 0x10 constant ECHOK (line 287) | ECHOK = 0x20 constant ECHOKE (line 288) | ECHOKE = 0x800 constant ECHONL (line 289) | ECHONL = 0x40 constant ECHOPRT (line 290) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 291) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 292) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 293) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 294) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 295) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 296) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 297) | EPOLLERR = 0x8 constant EPOLLET (line 298) | EPOLLET = 0x80000000 constant EPOLLHUP (line 299) | EPOLLHUP = 0x10 constant EPOLLIN (line 300) | EPOLLIN = 0x1 constant EPOLLMSG (line 301) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 302) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 303) | EPOLLOUT = 0x4 constant EPOLLPRI (line 304) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 305) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 306) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 307) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 308) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 309) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 310) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 311) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 312) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 313) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 314) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 315) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 316) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 317) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 318) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 319) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 320) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 321) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 322) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 323) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 324) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 325) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 326) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 327) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 328) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 329) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 330) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 331) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 332) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 333) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 334) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 335) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 336) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 337) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 338) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 339) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 340) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 341) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 342) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 343) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 344) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 345) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 346) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 347) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 348) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 349) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 350) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 351) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 352) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 353) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 354) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 355) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 356) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 357) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 358) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 359) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 360) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 361) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 362) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 363) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 364) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MOBITEX (line 365) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 366) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 367) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 368) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 369) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 370) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 371) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 372) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 373) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 374) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 375) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 376) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 377) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 378) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 379) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 380) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 381) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 382) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 383) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 384) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 385) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 386) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 387) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 388) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 389) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 390) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 391) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 392) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 393) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 394) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 395) | ETH_P_XDSA = 0xf8 constant EXTA (line 396) | EXTA = 0xe constant EXTB (line 397) | EXTB = 0xf constant EXTPROC (line 398) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 399) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 400) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 401) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 402) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 403) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 404) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 405) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 406) | FD_SETSIZE = 0x400 constant FLUSHO (line 407) | FLUSHO = 0x2000 constant F_DUPFD (line 408) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 409) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 410) | F_EXLCK = 0x4 constant F_GETFD (line 411) | F_GETFD = 0x1 constant F_GETFL (line 412) | F_GETFL = 0x3 constant F_GETLEASE (line 413) | F_GETLEASE = 0x401 constant F_GETLK (line 414) | F_GETLK = 0xe constant F_GETLK64 (line 415) | F_GETLK64 = 0xe constant F_GETOWN (line 416) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 417) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 418) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 419) | F_GETSIG = 0xb constant F_LOCK (line 420) | F_LOCK = 0x1 constant F_NOTIFY (line 421) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 422) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 423) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 424) | F_OFD_SETLKW = 0x26 constant F_OK (line 425) | F_OK = 0x0 constant F_RDLCK (line 426) | F_RDLCK = 0x0 constant F_SETFD (line 427) | F_SETFD = 0x2 constant F_SETFL (line 428) | F_SETFL = 0x4 constant F_SETLEASE (line 429) | F_SETLEASE = 0x400 constant F_SETLK (line 430) | F_SETLK = 0x6 constant F_SETLK64 (line 431) | F_SETLK64 = 0x6 constant F_SETLKW (line 432) | F_SETLKW = 0x7 constant F_SETLKW64 (line 433) | F_SETLKW64 = 0x7 constant F_SETOWN (line 434) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 435) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 436) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 437) | F_SETSIG = 0xa constant F_SHLCK (line 438) | F_SHLCK = 0x8 constant F_TEST (line 439) | F_TEST = 0x3 constant F_TLOCK (line 440) | F_TLOCK = 0x2 constant F_ULOCK (line 441) | F_ULOCK = 0x0 constant F_UNLCK (line 442) | F_UNLCK = 0x2 constant F_WRLCK (line 443) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 444) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 445) | GRND_RANDOM = 0x2 constant HUPCL (line 446) | HUPCL = 0x400 constant ICANON (line 447) | ICANON = 0x2 constant ICMPV6_FILTER (line 448) | ICMPV6_FILTER = 0x1 constant ICRNL (line 449) | ICRNL = 0x100 constant IEXTEN (line 450) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 451) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 452) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 453) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 454) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 455) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 456) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 457) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 458) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 459) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 460) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 461) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 462) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 463) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 464) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 465) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 466) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 467) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 468) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 469) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 470) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 471) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 472) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 473) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 474) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 475) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 476) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 477) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 478) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 479) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 480) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 481) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 482) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 483) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 484) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 485) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 486) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 487) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 488) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 489) | IFF_SLAVE = 0x800 constant IFF_TAP (line 490) | IFF_TAP = 0x2 constant IFF_TUN (line 491) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 492) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 493) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 494) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 495) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 496) | IFNAMSIZ = 0x10 constant IGNBRK (line 497) | IGNBRK = 0x1 constant IGNCR (line 498) | IGNCR = 0x80 constant IGNPAR (line 499) | IGNPAR = 0x4 constant IMAXBEL (line 500) | IMAXBEL = 0x2000 constant INLCR (line 501) | INLCR = 0x40 constant INPCK (line 502) | INPCK = 0x10 constant IN_ACCESS (line 503) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 504) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 505) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 506) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 507) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 508) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 509) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 510) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 511) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 512) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 513) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 514) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 515) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 516) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 517) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 518) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 519) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 520) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 521) | IN_CREATE = 0x100 constant IN_DELETE (line 522) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 523) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 524) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 525) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 526) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 527) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 528) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 529) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 530) | IN_MODIFY = 0x2 constant IN_MOVE (line 531) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 532) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 533) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 534) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 535) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 536) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 537) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 538) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 539) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 540) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 541) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 542) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 543) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 544) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 545) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 546) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 547) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 548) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 549) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 550) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 551) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 552) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 553) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 554) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 555) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 556) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 557) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 558) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 559) | IPPROTO_MH = 0x87 constant IPPROTO_MTP (line 560) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 561) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 562) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 563) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 564) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 565) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 566) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 567) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 568) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 569) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 570) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 571) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 572) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 573) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 574) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 575) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 576) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 577) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 578) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 579) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 580) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 581) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 582) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 583) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 584) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 585) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 586) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 587) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 588) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 589) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 590) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 591) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 592) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 593) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 594) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 595) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 596) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 597) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 598) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 599) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 600) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 601) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 602) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 603) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 604) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 605) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 606) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 607) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 608) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 609) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 610) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 611) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 612) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 613) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 614) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 615) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 616) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 617) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 618) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 619) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 620) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 621) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 622) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 623) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 624) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 625) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 626) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 627) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 628) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 629) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 630) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 631) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 632) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 633) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 634) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 635) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 636) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 637) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 638) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 639) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 640) | IP_MF = 0x2000 constant IP_MINTTL (line 641) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 642) | IP_MSFILTER = 0x29 constant IP_MSS (line 643) | IP_MSS = 0x240 constant IP_MTU (line 644) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 645) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 646) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 647) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 648) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 649) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 650) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 651) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 652) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 653) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 654) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 655) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 656) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 657) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 658) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 659) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 660) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 661) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 662) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 663) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 664) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 665) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 666) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 667) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 668) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 669) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 670) | IP_RETOPTS = 0x7 constant IP_RF (line 671) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 672) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 673) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 674) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 675) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 676) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 677) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 678) | IP_XFRM_POLICY = 0x11 constant ISIG (line 679) | ISIG = 0x1 constant ISTRIP (line 680) | ISTRIP = 0x20 constant IUTF8 (line 681) | IUTF8 = 0x4000 constant IXANY (line 682) | IXANY = 0x800 constant IXOFF (line 683) | IXOFF = 0x1000 constant IXON (line 684) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 685) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 686) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 687) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 688) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 689) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 690) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 691) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 692) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 693) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 694) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 695) | LOCK_EX = 0x2 constant LOCK_NB (line 696) | LOCK_NB = 0x4 constant LOCK_SH (line 697) | LOCK_SH = 0x1 constant LOCK_UN (line 698) | LOCK_UN = 0x8 constant MADV_DODUMP (line 699) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 700) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 701) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 702) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 703) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 704) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 705) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 706) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 707) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 708) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 709) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 710) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 711) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 712) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 713) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 714) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 715) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 716) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 717) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 718) | MAP_FILE = 0x0 constant MAP_FIXED (line 719) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 720) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 721) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 722) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 723) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 724) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 725) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 726) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 727) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 728) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 729) | MAP_RENAME = 0x800 constant MAP_SHARED (line 730) | MAP_SHARED = 0x1 constant MAP_STACK (line 731) | MAP_STACK = 0x40000 constant MAP_TYPE (line 732) | MAP_TYPE = 0xf constant MCL_CURRENT (line 733) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 734) | MCL_FUTURE = 0x2 constant MNT_DETACH (line 735) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 736) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 737) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 738) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 739) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 740) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 741) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 742) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 743) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 744) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 745) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 746) | MSG_FIN = 0x200 constant MSG_MORE (line 747) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 748) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 749) | MSG_OOB = 0x1 constant MSG_PEEK (line 750) | MSG_PEEK = 0x2 constant MSG_PROXY (line 751) | MSG_PROXY = 0x10 constant MSG_RST (line 752) | MSG_RST = 0x1000 constant MSG_SYN (line 753) | MSG_SYN = 0x400 constant MSG_TRUNC (line 754) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 755) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 756) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 757) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 758) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 759) | MS_ASYNC = 0x1 constant MS_BIND (line 760) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 761) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 762) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 763) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 764) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 765) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 766) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 767) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 768) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 769) | MS_MOVE = 0x2000 constant MS_NOATIME (line 770) | MS_NOATIME = 0x400 constant MS_NODEV (line 771) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 772) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 773) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 774) | MS_NOSUID = 0x2 constant MS_NOUSER (line 775) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 776) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 777) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 778) | MS_RDONLY = 0x1 constant MS_REC (line 779) | MS_REC = 0x4000 constant MS_RELATIME (line 780) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 781) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 782) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 783) | MS_SHARED = 0x100000 constant MS_SILENT (line 784) | MS_SILENT = 0x8000 constant MS_SLAVE (line 785) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 786) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 787) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 788) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 789) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 790) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 791) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 792) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 793) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 794) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 795) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 796) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 797) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 798) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 799) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 800) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 801) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 802) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 803) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 804) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 805) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 806) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 807) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 808) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 809) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 810) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 811) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 812) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 813) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 814) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 815) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 816) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 817) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 818) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 819) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 820) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 821) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 822) | NETLINK_XFRM = 0x6 constant NLA_ALIGNTO (line 823) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 824) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 825) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 826) | NLA_HDRLEN = 0x4 constant NLMSG_ALIGNTO (line 827) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 828) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 829) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 830) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 831) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 832) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 833) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 834) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 835) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 836) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 837) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 838) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 839) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 840) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 841) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 842) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 843) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 844) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 845) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 846) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 847) | NLM_F_ROOT = 0x100 constant NOFLSH (line 848) | NOFLSH = 0x80 constant OCRNL (line 849) | OCRNL = 0x8 constant OFDEL (line 850) | OFDEL = 0x80 constant OFILL (line 851) | OFILL = 0x40 constant ONLCR (line 852) | ONLCR = 0x4 constant ONLRET (line 853) | ONLRET = 0x20 constant ONOCR (line 854) | ONOCR = 0x10 constant OPOST (line 855) | OPOST = 0x1 constant O_ACCMODE (line 856) | O_ACCMODE = 0x3 constant O_APPEND (line 857) | O_APPEND = 0x8 constant O_ASYNC (line 858) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 859) | O_CLOEXEC = 0x80000 constant O_CREAT (line 860) | O_CREAT = 0x100 constant O_DIRECT (line 861) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 862) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 863) | O_DSYNC = 0x10 constant O_EXCL (line 864) | O_EXCL = 0x400 constant O_FSYNC (line 865) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 866) | O_LARGEFILE = 0x0 constant O_NDELAY (line 867) | O_NDELAY = 0x80 constant O_NOATIME (line 868) | O_NOATIME = 0x40000 constant O_NOCTTY (line 869) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 870) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 871) | O_NONBLOCK = 0x80 constant O_PATH (line 872) | O_PATH = 0x200000 constant O_RDONLY (line 873) | O_RDONLY = 0x0 constant O_RDWR (line 874) | O_RDWR = 0x2 constant O_RSYNC (line 875) | O_RSYNC = 0x4010 constant O_SYNC (line 876) | O_SYNC = 0x4010 constant O_TMPFILE (line 877) | O_TMPFILE = 0x410000 constant O_TRUNC (line 878) | O_TRUNC = 0x200 constant O_WRONLY (line 879) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 880) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 881) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 882) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 883) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 884) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 885) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 886) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 887) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 888) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 889) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 890) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 891) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 892) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 893) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 894) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 895) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 896) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 897) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 898) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 899) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 900) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 901) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 902) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 903) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 904) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 905) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 906) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 907) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 908) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 909) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 910) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 911) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 912) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 913) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 914) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 915) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 916) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 917) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 918) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 919) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 920) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 921) | PACKET_USER = 0x6 constant PACKET_VERSION (line 922) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 923) | PACKET_VNET_HDR = 0xf constant PARENB (line 924) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 925) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 926) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 927) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 928) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 929) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 930) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 931) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 932) | PARITY_NONE = 0x1 constant PARMRK (line 933) | PARMRK = 0x8 constant PARODD (line 934) | PARODD = 0x200 constant PENDIN (line 935) | PENDIN = 0x4000 constant PRIO_PGRP (line 936) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 937) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 938) | PRIO_USER = 0x2 constant PROT_EXEC (line 939) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 940) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 941) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 942) | PROT_NONE = 0x0 constant PROT_READ (line 943) | PROT_READ = 0x1 constant PROT_WRITE (line 944) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 945) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 946) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 947) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 948) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 949) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 950) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 951) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 952) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 953) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 954) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 955) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 956) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 957) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 958) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 959) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 960) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 961) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 962) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 963) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 964) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 965) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 966) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 967) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 968) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 969) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 970) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 971) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 972) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 973) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 974) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 975) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 976) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 977) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 978) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 979) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 980) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 981) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 982) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 983) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 984) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 985) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 986) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 987) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 988) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 989) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 990) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 991) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 992) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 993) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 994) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 995) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 996) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 997) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 998) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 999) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1000) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1001) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1002) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1003) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1004) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1005) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1006) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1007) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1008) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1009) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1010) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1011) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1012) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1013) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1014) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1015) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1016) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1017) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1018) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1019) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1020) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1021) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1022) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1023) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1024) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1025) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1026) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1027) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1028) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1029) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1030) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1031) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1032) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1033) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1034) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1035) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1036) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1037) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1038) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1039) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1040) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1041) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1042) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1043) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1044) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1045) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1046) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1047) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1048) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1049) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1050) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1051) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1052) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1053) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1054) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1055) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1056) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1057) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1058) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1059) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1060) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1061) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1062) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1063) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1064) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1065) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1066) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1067) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1068) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1069) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1070) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1071) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1072) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1073) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1074) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1075) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1076) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1077) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1078) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1079) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1080) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1081) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1082) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1083) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1084) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1085) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1086) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1087) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1088) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1089) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1090) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1091) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1092) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1093) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1094) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1095) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1096) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1097) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1098) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1099) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1100) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1101) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1102) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1103) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 1104) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1105) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1106) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1107) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1108) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1109) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1110) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1111) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1112) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1113) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1114) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1115) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1116) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1117) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1118) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1119) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1120) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1121) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1122) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1123) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1124) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1125) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1126) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1127) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1128) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1129) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1130) | RTA_MAX = 0x16 constant RTCF_DIRECTSRC (line 1131) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1132) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1133) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1134) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1135) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1136) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1137) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1138) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1139) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1140) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1141) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1142) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1143) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1144) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1145) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1146) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1147) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1148) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1149) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1150) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1151) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1152) | RTF_MSS = 0x40 constant RTF_MTU (line 1153) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1154) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1155) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1156) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1157) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1158) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1159) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1160) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1161) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1162) | RTF_STATIC = 0x400 constant RTF_THROW (line 1163) | RTF_THROW = 0x2000 constant RTF_UP (line 1164) | RTF_UP = 0x1 constant RTF_WINDOW (line 1165) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1166) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1167) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1168) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1169) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1170) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1171) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1172) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1173) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1174) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1175) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1176) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1177) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1178) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1179) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1180) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1181) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1182) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1183) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1184) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1185) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1186) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1187) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1188) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1189) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1190) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1191) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1192) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1193) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1194) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1195) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1196) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1197) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1198) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1199) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1200) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1201) | RTM_MAX = 0x5b constant RTM_NEWACTION (line 1202) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1203) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1204) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1205) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1206) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1207) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1208) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1209) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1210) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1211) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1212) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1213) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1214) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1215) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1216) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1217) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1218) | RTM_NR_FAMILIES = 0x13 constant RTM_NR_MSGTYPES (line 1219) | RTM_NR_MSGTYPES = 0x4c constant RTM_SETDCB (line 1220) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1221) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1222) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1223) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1224) | RTNH_COMPARE_MASK = 0x11 constant RTNH_F_DEAD (line 1225) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1226) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1227) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1228) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1229) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1230) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1231) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1232) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1233) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1234) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1235) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1236) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1237) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1238) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1239) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1240) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1241) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1242) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1243) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1244) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1245) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1246) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1247) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1248) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1249) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1250) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1251) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1252) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1253) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1254) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1255) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1256) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1257) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1258) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1259) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1260) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1261) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1262) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1263) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1264) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1265) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1266) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1267) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 1268) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1269) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1270) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1271) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1272) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1273) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1274) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1275) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1276) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1277) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1278) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1279) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1280) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1281) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1282) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1283) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1284) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1285) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1286) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1287) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1288) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1289) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1290) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1291) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1292) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1293) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1294) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1295) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1296) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1297) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1298) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1299) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1300) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1301) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1302) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1303) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1304) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1305) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1306) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1307) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1308) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1309) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1310) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1311) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1312) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1313) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1314) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1315) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1316) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1317) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1318) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1319) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1320) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1321) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1322) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1323) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1324) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 1325) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1326) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1327) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1328) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1329) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1330) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1331) | SOL_AAL = 0x109 constant SOL_ATM (line 1332) | SOL_ATM = 0x108 constant SOL_DECNET (line 1333) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1334) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1335) | SOL_IP = 0x0 constant SOL_IPV6 (line 1336) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1337) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1338) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1339) | SOL_PACKET = 0x107 constant SOL_RAW (line 1340) | SOL_RAW = 0xff constant SOL_SOCKET (line 1341) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1342) | SOL_TCP = 0x6 constant SOL_X25 (line 1343) | SOL_X25 = 0x106 constant SOMAXCONN (line 1344) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1345) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1346) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1347) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1348) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1349) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1350) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1351) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1352) | SO_BUSY_POLL = 0x2e constant SO_DEBUG (line 1353) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1354) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1355) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1356) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1357) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1358) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1359) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1360) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1361) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1362) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1363) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1364) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1365) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1366) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1367) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1368) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1369) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1370) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1371) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1372) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1373) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1374) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1375) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1376) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1377) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1378) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1379) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1380) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1381) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1382) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1383) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1384) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1385) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1386) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1387) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1388) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1389) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1390) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1391) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1392) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1393) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1394) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1395) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1396) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1397) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1398) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1399) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1400) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1401) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1402) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1403) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1404) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1405) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1406) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1407) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1408) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1409) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1410) | S_IEXEC = 0x40 constant S_IFBLK (line 1411) | S_IFBLK = 0x6000 constant S_IFCHR (line 1412) | S_IFCHR = 0x2000 constant S_IFDIR (line 1413) | S_IFDIR = 0x4000 constant S_IFIFO (line 1414) | S_IFIFO = 0x1000 constant S_IFLNK (line 1415) | S_IFLNK = 0xa000 constant S_IFMT (line 1416) | S_IFMT = 0xf000 constant S_IFREG (line 1417) | S_IFREG = 0x8000 constant S_IFSOCK (line 1418) | S_IFSOCK = 0xc000 constant S_IREAD (line 1419) | S_IREAD = 0x100 constant S_IRGRP (line 1420) | S_IRGRP = 0x20 constant S_IROTH (line 1421) | S_IROTH = 0x4 constant S_IRUSR (line 1422) | S_IRUSR = 0x100 constant S_IRWXG (line 1423) | S_IRWXG = 0x38 constant S_IRWXO (line 1424) | S_IRWXO = 0x7 constant S_IRWXU (line 1425) | S_IRWXU = 0x1c0 constant S_ISGID (line 1426) | S_ISGID = 0x400 constant S_ISUID (line 1427) | S_ISUID = 0x800 constant S_ISVTX (line 1428) | S_ISVTX = 0x200 constant S_IWGRP (line 1429) | S_IWGRP = 0x10 constant S_IWOTH (line 1430) | S_IWOTH = 0x2 constant S_IWRITE (line 1431) | S_IWRITE = 0x80 constant S_IWUSR (line 1432) | S_IWUSR = 0x80 constant S_IXGRP (line 1433) | S_IXGRP = 0x8 constant S_IXOTH (line 1434) | S_IXOTH = 0x1 constant S_IXUSR (line 1435) | S_IXUSR = 0x40 constant TCFLSH (line 1436) | TCFLSH = 0x5407 constant TCIFLUSH (line 1437) | TCIFLUSH = 0x0 constant TCIOFLUSH (line 1438) | TCIOFLUSH = 0x2 constant TCOFLUSH (line 1439) | TCOFLUSH = 0x1 constant TCP_CONGESTION (line 1440) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1441) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1442) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1443) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1444) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1445) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1446) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1447) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1448) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1449) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1450) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1451) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1452) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1453) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1454) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1455) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1456) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1457) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1458) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1459) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1460) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1461) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1462) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1463) | TCP_NODELAY = 0x1 constant TCP_QUEUE_SEQ (line 1464) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1465) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1466) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1467) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1468) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SYNCNT (line 1469) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1470) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1471) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1472) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1473) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1474) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1475) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1476) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1477) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1478) | TCSBRK = 0x5405 constant TCXONC (line 1479) | TCXONC = 0x5406 constant TIOCCBRK (line 1480) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1481) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1482) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1483) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1484) | TIOCGETD = 0x7400 constant TIOCGETP (line 1485) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1486) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1487) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1488) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1489) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1490) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1491) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1492) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1493) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1494) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1495) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1496) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1497) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1498) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1499) | TIOCINQ = 0x467f constant TIOCLINUX (line 1500) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1501) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1502) | TIOCMBIS = 0x741b constant TIOCMGET (line 1503) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1504) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1505) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1506) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1507) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1508) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1509) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1510) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1511) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1512) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1513) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1514) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1515) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1516) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1517) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1518) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1519) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1520) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1521) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1522) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1523) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1524) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1525) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1526) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1527) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1528) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1529) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1530) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1531) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1532) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1533) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1534) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1535) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1536) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1537) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1538) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1539) | TIOCSETD = 0x7401 constant TIOCSETN (line 1540) | TIOCSETN = 0x740a constant TIOCSETP (line 1541) | TIOCSETP = 0x7409 constant TIOCSIG (line 1542) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1543) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1544) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1545) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1546) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1547) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1548) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1549) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1550) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1551) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1552) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1553) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 1554) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1555) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1556) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1557) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1558) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1559) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1560) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1561) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1562) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1563) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1564) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1565) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1566) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1567) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1568) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1569) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1570) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1571) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1572) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1573) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1574) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1575) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1576) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1577) | TUNSETVNETLE = 0x800454dc constant VDISCARD (line 1578) | VDISCARD = 0xd constant VEOF (line 1579) | VEOF = 0x10 constant VEOL (line 1580) | VEOL = 0x11 constant VEOL2 (line 1581) | VEOL2 = 0x6 constant VERASE (line 1582) | VERASE = 0x2 constant VINTR (line 1583) | VINTR = 0x0 constant VKILL (line 1584) | VKILL = 0x3 constant VLNEXT (line 1585) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1586) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1587) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1588) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1589) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1590) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1591) | VMIN = 0x4 constant VQUIT (line 1592) | VQUIT = 0x1 constant VREPRINT (line 1593) | VREPRINT = 0xc constant VSTART (line 1594) | VSTART = 0x8 constant VSTOP (line 1595) | VSTOP = 0x9 constant VSUSP (line 1596) | VSUSP = 0xa constant VSWTC (line 1597) | VSWTC = 0x7 constant VSWTCH (line 1598) | VSWTCH = 0x7 constant VT0 (line 1599) | VT0 = 0x0 constant VT1 (line 1600) | VT1 = 0x4000 constant VTDLY (line 1601) | VTDLY = 0x4000 constant VTIME (line 1602) | VTIME = 0x5 constant VWERASE (line 1603) | VWERASE = 0xe constant WALL (line 1604) | WALL = 0x40000000 constant WCLONE (line 1605) | WCLONE = 0x80000000 constant WCONTINUED (line 1606) | WCONTINUED = 0x8 constant WEXITED (line 1607) | WEXITED = 0x4 constant WNOHANG (line 1608) | WNOHANG = 0x1 constant WNOTHREAD (line 1609) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1610) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1611) | WORDSIZE = 0x40 constant WSTOPPED (line 1612) | WSTOPPED = 0x2 constant WUNTRACED (line 1613) | WUNTRACED = 0x2 constant E2BIG (line 1618) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1619) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1620) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1621) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1622) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1623) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1624) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1625) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1626) | EBADE = syscall.Errno(0x32) constant EBADF (line 1627) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1628) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1629) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1630) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1631) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1632) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1633) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1634) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1635) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1636) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1637) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1638) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1639) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1640) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1641) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1642) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1643) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1644) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1645) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1646) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1647) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1648) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1649) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1650) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1651) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1652) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1653) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1654) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1655) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1656) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1657) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1658) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1659) | EINVAL = syscall.Errno(0x16) constant EIO (line 1660) | EIO = syscall.Errno(0x5) constant EISCONN (line 1661) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1662) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1663) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1664) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1665) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1666) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1667) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1668) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1669) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1670) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1671) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1672) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1673) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1674) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1675) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1676) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1677) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1678) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1679) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1680) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1681) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1682) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1683) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1684) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1685) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1686) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1687) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1688) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1689) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1690) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1691) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1692) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1693) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1694) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1695) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1696) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1697) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1698) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1699) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1700) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1701) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1702) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1703) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1704) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1705) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1706) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1707) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1708) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1709) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1710) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1711) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1712) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1713) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1714) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1715) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1716) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1717) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1718) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1719) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1720) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1721) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1722) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1723) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1724) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1725) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1726) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1727) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1728) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1729) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1730) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1731) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1732) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1733) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1734) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1735) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1736) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1737) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1738) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1739) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1740) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1741) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1742) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1743) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1744) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1745) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1746) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1747) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1748) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1749) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1750) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1751) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1752) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1753) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1758) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1759) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1760) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1761) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1762) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1763) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1764) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1765) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1766) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1767) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1768) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1769) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1770) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1771) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1772) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1773) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1774) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1775) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1776) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1777) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1778) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1779) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1780) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1781) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1782) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1783) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1784) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1785) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1786) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1787) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1788) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 1789) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1790) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1791) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2a constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_RDS (line 48) | AF_RDS = 0x15 constant AF_ROSE (line 49) | AF_ROSE = 0xb constant AF_ROUTE (line 50) | AF_ROUTE = 0x10 constant AF_RXRPC (line 51) | AF_RXRPC = 0x21 constant AF_SECURITY (line 52) | AF_SECURITY = 0xe constant AF_SNA (line 53) | AF_SNA = 0x16 constant AF_TIPC (line 54) | AF_TIPC = 0x1e constant AF_UNIX (line 55) | AF_UNIX = 0x1 constant AF_UNSPEC (line 56) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 57) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 58) | AF_WANPIPE = 0x19 constant AF_X25 (line 59) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 60) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 61) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 62) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 63) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 64) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 65) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 66) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 67) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 68) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 69) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 70) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 71) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 72) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 73) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 74) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 75) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 76) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 77) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 78) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 79) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 80) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 81) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 82) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 83) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 84) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 85) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 86) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 87) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 88) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 89) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 90) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 91) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 92) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 93) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 94) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 95) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 96) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 97) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 98) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 99) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 100) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 101) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 102) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 103) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 104) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 105) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 106) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 107) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 108) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 109) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 110) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 111) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 112) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 113) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 114) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 115) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 116) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 117) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 118) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 119) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 120) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 121) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 122) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 123) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 124) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 125) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 126) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 127) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 128) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 129) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 130) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 131) | ARPHRD_X25 = 0x10f constant B0 (line 132) | B0 = 0x0 constant B1000000 (line 133) | B1000000 = 0x1008 constant B110 (line 134) | B110 = 0x3 constant B115200 (line 135) | B115200 = 0x1002 constant B1152000 (line 136) | B1152000 = 0x1009 constant B1200 (line 137) | B1200 = 0x9 constant B134 (line 138) | B134 = 0x4 constant B150 (line 139) | B150 = 0x5 constant B1500000 (line 140) | B1500000 = 0x100a constant B1800 (line 141) | B1800 = 0xa constant B19200 (line 142) | B19200 = 0xe constant B200 (line 143) | B200 = 0x6 constant B2000000 (line 144) | B2000000 = 0x100b constant B230400 (line 145) | B230400 = 0x1003 constant B2400 (line 146) | B2400 = 0xb constant B2500000 (line 147) | B2500000 = 0x100c constant B300 (line 148) | B300 = 0x7 constant B3000000 (line 149) | B3000000 = 0x100d constant B3500000 (line 150) | B3500000 = 0x100e constant B38400 (line 151) | B38400 = 0xf constant B4000000 (line 152) | B4000000 = 0x100f constant B460800 (line 153) | B460800 = 0x1004 constant B4800 (line 154) | B4800 = 0xc constant B50 (line 155) | B50 = 0x1 constant B500000 (line 156) | B500000 = 0x1005 constant B57600 (line 157) | B57600 = 0x1001 constant B576000 (line 158) | B576000 = 0x1006 constant B600 (line 159) | B600 = 0x8 constant B75 (line 160) | B75 = 0x2 constant B921600 (line 161) | B921600 = 0x1007 constant B9600 (line 162) | B9600 = 0xd constant BLKBSZGET (line 163) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 164) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 165) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 166) | BLKFRAGET = 0x1265 constant BLKFRASET (line 167) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 168) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 169) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 170) | BLKRAGET = 0x1263 constant BLKRASET (line 171) | BLKRASET = 0x1262 constant BLKROGET (line 172) | BLKROGET = 0x125e constant BLKROSET (line 173) | BLKROSET = 0x125d constant BLKRRPART (line 174) | BLKRRPART = 0x125f constant BLKSECTGET (line 175) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 176) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 177) | BLKSSZGET = 0x1268 constant BOTHER (line 178) | BOTHER = 0x1000 constant BPF_A (line 179) | BPF_A = 0x10 constant BPF_ABS (line 180) | BPF_ABS = 0x20 constant BPF_ADD (line 181) | BPF_ADD = 0x0 constant BPF_ALU (line 182) | BPF_ALU = 0x4 constant BPF_AND (line 183) | BPF_AND = 0x50 constant BPF_B (line 184) | BPF_B = 0x10 constant BPF_DIV (line 185) | BPF_DIV = 0x30 constant BPF_H (line 186) | BPF_H = 0x8 constant BPF_IMM (line 187) | BPF_IMM = 0x0 constant BPF_IND (line 188) | BPF_IND = 0x40 constant BPF_JA (line 189) | BPF_JA = 0x0 constant BPF_JEQ (line 190) | BPF_JEQ = 0x10 constant BPF_JGE (line 191) | BPF_JGE = 0x30 constant BPF_JGT (line 192) | BPF_JGT = 0x20 constant BPF_JMP (line 193) | BPF_JMP = 0x5 constant BPF_JSET (line 194) | BPF_JSET = 0x40 constant BPF_K (line 195) | BPF_K = 0x0 constant BPF_LD (line 196) | BPF_LD = 0x0 constant BPF_LDX (line 197) | BPF_LDX = 0x1 constant BPF_LEN (line 198) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 199) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 200) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 201) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 202) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 203) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 204) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 205) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 206) | BPF_MISC = 0x7 constant BPF_MOD (line 207) | BPF_MOD = 0x90 constant BPF_MSH (line 208) | BPF_MSH = 0xa0 constant BPF_MUL (line 209) | BPF_MUL = 0x20 constant BPF_NEG (line 210) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 211) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 212) | BPF_OR = 0x40 constant BPF_RET (line 213) | BPF_RET = 0x6 constant BPF_RSH (line 214) | BPF_RSH = 0x70 constant BPF_ST (line 215) | BPF_ST = 0x2 constant BPF_STX (line 216) | BPF_STX = 0x3 constant BPF_SUB (line 217) | BPF_SUB = 0x10 constant BPF_TAX (line 218) | BPF_TAX = 0x0 constant BPF_TXA (line 219) | BPF_TXA = 0x80 constant BPF_W (line 220) | BPF_W = 0x0 constant BPF_X (line 221) | BPF_X = 0x8 constant BPF_XOR (line 222) | BPF_XOR = 0xa0 constant BRKINT (line 223) | BRKINT = 0x2 constant BS0 (line 224) | BS0 = 0x0 constant BS1 (line 225) | BS1 = 0x2000 constant BSDLY (line 226) | BSDLY = 0x2000 constant CAN_BCM (line 227) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 228) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 229) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 230) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 231) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 232) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 233) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 234) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 235) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 236) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 237) | CAN_MCNET = 0x5 constant CAN_MTU (line 238) | CAN_MTU = 0x10 constant CAN_NPROTO (line 239) | CAN_NPROTO = 0x7 constant CAN_RAW (line 240) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 241) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 242) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 243) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 244) | CAN_TP16 = 0x3 constant CAN_TP20 (line 245) | CAN_TP20 = 0x4 constant CBAUD (line 246) | CBAUD = 0x100f constant CBAUDEX (line 247) | CBAUDEX = 0x1000 constant CFLUSH (line 248) | CFLUSH = 0xf constant CIBAUD (line 249) | CIBAUD = 0x100f0000 constant CLOCAL (line 250) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 251) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 252) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 253) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 254) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 255) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 256) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 257) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 258) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 259) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 260) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 261) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 262) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 263) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 264) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 265) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 266) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 267) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 268) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 269) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 270) | CLONE_FILES = 0x400 constant CLONE_FS (line 271) | CLONE_FS = 0x200 constant CLONE_IO (line 272) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 273) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 274) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 275) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 276) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 277) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 278) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 279) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 280) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 281) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 282) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 283) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 284) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 285) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 286) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 287) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 288) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 289) | CLONE_VM = 0x100 constant CMSPAR (line 290) | CMSPAR = 0x40000000 constant CR0 (line 291) | CR0 = 0x0 constant CR1 (line 292) | CR1 = 0x200 constant CR2 (line 293) | CR2 = 0x400 constant CR3 (line 294) | CR3 = 0x600 constant CRDLY (line 295) | CRDLY = 0x600 constant CREAD (line 296) | CREAD = 0x80 constant CRTSCTS (line 297) | CRTSCTS = 0x80000000 constant CS5 (line 298) | CS5 = 0x0 constant CS6 (line 299) | CS6 = 0x10 constant CS7 (line 300) | CS7 = 0x20 constant CS8 (line 301) | CS8 = 0x30 constant CSIGNAL (line 302) | CSIGNAL = 0xff constant CSIZE (line 303) | CSIZE = 0x30 constant CSTART (line 304) | CSTART = 0x11 constant CSTATUS (line 305) | CSTATUS = 0x0 constant CSTOP (line 306) | CSTOP = 0x13 constant CSTOPB (line 307) | CSTOPB = 0x40 constant CSUSP (line 308) | CSUSP = 0x1a constant DT_BLK (line 309) | DT_BLK = 0x6 constant DT_CHR (line 310) | DT_CHR = 0x2 constant DT_DIR (line 311) | DT_DIR = 0x4 constant DT_FIFO (line 312) | DT_FIFO = 0x1 constant DT_LNK (line 313) | DT_LNK = 0xa constant DT_REG (line 314) | DT_REG = 0x8 constant DT_SOCK (line 315) | DT_SOCK = 0xc constant DT_UNKNOWN (line 316) | DT_UNKNOWN = 0x0 constant DT_WHT (line 317) | DT_WHT = 0xe constant ECHO (line 318) | ECHO = 0x8 constant ECHOCTL (line 319) | ECHOCTL = 0x200 constant ECHOE (line 320) | ECHOE = 0x10 constant ECHOK (line 321) | ECHOK = 0x20 constant ECHOKE (line 322) | ECHOKE = 0x800 constant ECHONL (line 323) | ECHONL = 0x40 constant ECHOPRT (line 324) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 325) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 326) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 327) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 328) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 329) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 330) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 331) | EPOLLERR = 0x8 constant EPOLLET (line 332) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 333) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 334) | EPOLLHUP = 0x10 constant EPOLLIN (line 335) | EPOLLIN = 0x1 constant EPOLLMSG (line 336) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 337) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 338) | EPOLLOUT = 0x4 constant EPOLLPRI (line 339) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 340) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 341) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 342) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 343) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 344) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 345) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 346) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 347) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 348) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 349) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 350) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 351) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 352) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 353) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 354) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 355) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 356) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 357) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 358) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 359) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 360) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 361) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 362) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 363) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 364) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 365) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 366) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 367) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 368) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 369) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 370) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 371) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 372) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 373) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 374) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 375) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 376) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 377) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 378) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 379) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 380) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 381) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 382) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 383) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 384) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 385) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 386) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 387) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 388) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 389) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 390) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 391) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 392) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 393) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 394) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 395) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 396) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 397) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 398) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 399) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 400) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 401) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 402) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 403) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 404) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 405) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 406) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 407) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 408) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 409) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 410) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 411) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 412) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 413) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 414) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 415) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 416) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 417) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 418) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 419) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 420) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 421) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 422) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 423) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 424) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 425) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 426) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 427) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 428) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 429) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 430) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 431) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 432) | ETH_P_XDSA = 0xf8 constant EXTA (line 433) | EXTA = 0xe constant EXTB (line 434) | EXTB = 0xf constant EXTPROC (line 435) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 436) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 437) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 438) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 439) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 440) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 441) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 442) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 443) | FD_SETSIZE = 0x400 constant FF0 (line 444) | FF0 = 0x0 constant FF1 (line 445) | FF1 = 0x8000 constant FFDLY (line 446) | FFDLY = 0x8000 constant FLUSHO (line 447) | FLUSHO = 0x2000 constant F_DUPFD (line 448) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 449) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 450) | F_EXLCK = 0x4 constant F_GETFD (line 451) | F_GETFD = 0x1 constant F_GETFL (line 452) | F_GETFL = 0x3 constant F_GETLEASE (line 453) | F_GETLEASE = 0x401 constant F_GETLK (line 454) | F_GETLK = 0x21 constant F_GETLK64 (line 455) | F_GETLK64 = 0x21 constant F_GETOWN (line 456) | F_GETOWN = 0x17 constant F_GETOWN_EX (line 457) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 458) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 459) | F_GETSIG = 0xb constant F_LOCK (line 460) | F_LOCK = 0x1 constant F_NOTIFY (line 461) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 462) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 463) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 464) | F_OFD_SETLKW = 0x26 constant F_OK (line 465) | F_OK = 0x0 constant F_RDLCK (line 466) | F_RDLCK = 0x0 constant F_SETFD (line 467) | F_SETFD = 0x2 constant F_SETFL (line 468) | F_SETFL = 0x4 constant F_SETLEASE (line 469) | F_SETLEASE = 0x400 constant F_SETLK (line 470) | F_SETLK = 0x22 constant F_SETLK64 (line 471) | F_SETLK64 = 0x22 constant F_SETLKW (line 472) | F_SETLKW = 0x23 constant F_SETLKW64 (line 473) | F_SETLKW64 = 0x23 constant F_SETOWN (line 474) | F_SETOWN = 0x18 constant F_SETOWN_EX (line 475) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 476) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 477) | F_SETSIG = 0xa constant F_SHLCK (line 478) | F_SHLCK = 0x8 constant F_TEST (line 479) | F_TEST = 0x3 constant F_TLOCK (line 480) | F_TLOCK = 0x2 constant F_ULOCK (line 481) | F_ULOCK = 0x0 constant F_UNLCK (line 482) | F_UNLCK = 0x2 constant F_WRLCK (line 483) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 484) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 485) | GRND_RANDOM = 0x2 constant HUPCL (line 486) | HUPCL = 0x400 constant IBSHIFT (line 487) | IBSHIFT = 0x10 constant ICANON (line 488) | ICANON = 0x2 constant ICMPV6_FILTER (line 489) | ICMPV6_FILTER = 0x1 constant ICRNL (line 490) | ICRNL = 0x100 constant IEXTEN (line 491) | IEXTEN = 0x100 constant IFA_F_DADFAILED (line 492) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 493) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 494) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 495) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 496) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 497) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 498) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 499) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 500) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 501) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 502) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 503) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 504) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 505) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 506) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 507) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 508) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 509) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 510) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 511) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 512) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 513) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 514) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 515) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 516) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 517) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 518) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 519) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 520) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 521) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 522) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 523) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 524) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 525) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 526) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 527) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 528) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 529) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 530) | IFF_SLAVE = 0x800 constant IFF_TAP (line 531) | IFF_TAP = 0x2 constant IFF_TUN (line 532) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 533) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 534) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 535) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 536) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 537) | IFNAMSIZ = 0x10 constant IGNBRK (line 538) | IGNBRK = 0x1 constant IGNCR (line 539) | IGNCR = 0x80 constant IGNPAR (line 540) | IGNPAR = 0x4 constant IMAXBEL (line 541) | IMAXBEL = 0x2000 constant INLCR (line 542) | INLCR = 0x40 constant INPCK (line 543) | INPCK = 0x10 constant IN_ACCESS (line 544) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 545) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 546) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 547) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 548) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 549) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 550) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 551) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 552) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 553) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 554) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 555) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 556) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 557) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 558) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 559) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 560) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 561) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 562) | IN_CREATE = 0x100 constant IN_DELETE (line 563) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 564) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 565) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 566) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 567) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 568) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 569) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 570) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 571) | IN_MODIFY = 0x2 constant IN_MOVE (line 572) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 573) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 574) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 575) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 576) | IN_NONBLOCK = 0x80 constant IN_ONESHOT (line 577) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 578) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 579) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 580) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 581) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 582) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 583) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 584) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 585) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 586) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 587) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 588) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 589) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 590) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 591) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 592) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 593) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 594) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 595) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 596) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 597) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 598) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 599) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 600) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 601) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 602) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 603) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 604) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 605) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 606) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 607) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 608) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 609) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 610) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 611) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 612) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 613) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 614) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 615) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 616) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 617) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 618) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 619) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 620) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 621) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 622) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 623) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 624) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 625) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 626) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 627) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 628) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 629) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 630) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 631) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 632) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 633) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 634) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 635) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 636) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 637) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 638) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 639) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 640) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 641) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 642) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 643) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 644) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 645) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 646) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 647) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 648) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 649) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 650) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 651) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 652) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 653) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 654) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 655) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 656) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 657) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 658) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 659) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 660) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 661) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 662) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 663) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 664) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 665) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 666) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 667) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 668) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 669) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 670) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 671) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 672) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 673) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 674) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 675) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 676) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 677) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 678) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 679) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 680) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 681) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 682) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 683) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 684) | IP_MF = 0x2000 constant IP_MINTTL (line 685) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 686) | IP_MSFILTER = 0x29 constant IP_MSS (line 687) | IP_MSS = 0x240 constant IP_MTU (line 688) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 689) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 690) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 691) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 692) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 693) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 694) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 695) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 696) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 697) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 698) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 699) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 700) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 701) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 702) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 703) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 704) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 705) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 706) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 707) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 708) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 709) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 710) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 711) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 712) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 713) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 714) | IP_RETOPTS = 0x7 constant IP_RF (line 715) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 716) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 717) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 718) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 719) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 720) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 721) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 722) | IP_XFRM_POLICY = 0x11 constant ISIG (line 723) | ISIG = 0x1 constant ISTRIP (line 724) | ISTRIP = 0x20 constant IUCLC (line 725) | IUCLC = 0x200 constant IUTF8 (line 726) | IUTF8 = 0x4000 constant IXANY (line 727) | IXANY = 0x800 constant IXOFF (line 728) | IXOFF = 0x1000 constant IXON (line 729) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 730) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 731) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 732) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 733) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 734) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 735) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 736) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 737) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 738) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 739) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 740) | LOCK_EX = 0x2 constant LOCK_NB (line 741) | LOCK_NB = 0x4 constant LOCK_SH (line 742) | LOCK_SH = 0x1 constant LOCK_UN (line 743) | LOCK_UN = 0x8 constant MADV_DODUMP (line 744) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 745) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 746) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 747) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 748) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 749) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 750) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 751) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 752) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 753) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 754) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 755) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 756) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 757) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 758) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 759) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 760) | MAP_ANON = 0x800 constant MAP_ANONYMOUS (line 761) | MAP_ANONYMOUS = 0x800 constant MAP_DENYWRITE (line 762) | MAP_DENYWRITE = 0x2000 constant MAP_EXECUTABLE (line 763) | MAP_EXECUTABLE = 0x4000 constant MAP_FILE (line 764) | MAP_FILE = 0x0 constant MAP_FIXED (line 765) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 766) | MAP_GROWSDOWN = 0x1000 constant MAP_HUGETLB (line 767) | MAP_HUGETLB = 0x80000 constant MAP_HUGE_MASK (line 768) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 769) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 770) | MAP_LOCKED = 0x8000 constant MAP_NONBLOCK (line 771) | MAP_NONBLOCK = 0x20000 constant MAP_NORESERVE (line 772) | MAP_NORESERVE = 0x400 constant MAP_POPULATE (line 773) | MAP_POPULATE = 0x10000 constant MAP_PRIVATE (line 774) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 775) | MAP_RENAME = 0x800 constant MAP_SHARED (line 776) | MAP_SHARED = 0x1 constant MAP_STACK (line 777) | MAP_STACK = 0x40000 constant MAP_TYPE (line 778) | MAP_TYPE = 0xf constant MCL_CURRENT (line 779) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 780) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 781) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 782) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 783) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 784) | MNT_FORCE = 0x1 constant MSG_BATCH (line 785) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 786) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 787) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 788) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 789) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 790) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 791) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 792) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 793) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 794) | MSG_FIN = 0x200 constant MSG_MORE (line 795) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 796) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 797) | MSG_OOB = 0x1 constant MSG_PEEK (line 798) | MSG_PEEK = 0x2 constant MSG_PROXY (line 799) | MSG_PROXY = 0x10 constant MSG_RST (line 800) | MSG_RST = 0x1000 constant MSG_SYN (line 801) | MSG_SYN = 0x400 constant MSG_TRUNC (line 802) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 803) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 804) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 805) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 806) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 807) | MS_ASYNC = 0x1 constant MS_BIND (line 808) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 809) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 810) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 811) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 812) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 813) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 814) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 815) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 816) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 817) | MS_MOVE = 0x2000 constant MS_NOATIME (line 818) | MS_NOATIME = 0x400 constant MS_NODEV (line 819) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 820) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 821) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 822) | MS_NOSUID = 0x2 constant MS_NOUSER (line 823) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 824) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 825) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 826) | MS_RDONLY = 0x1 constant MS_REC (line 827) | MS_REC = 0x4000 constant MS_RELATIME (line 828) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 829) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 830) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 831) | MS_SHARED = 0x100000 constant MS_SILENT (line 832) | MS_SILENT = 0x8000 constant MS_SLAVE (line 833) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 834) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 835) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 836) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 837) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 838) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 839) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 840) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 841) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 842) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 843) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 844) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 845) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 846) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 847) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 848) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 849) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 850) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 851) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 852) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 853) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 854) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 855) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 856) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 857) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 858) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 859) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 860) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 861) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 862) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 863) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 864) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 865) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 866) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 867) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 868) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 869) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 870) | NETLINK_XFRM = 0x6 constant NL0 (line 871) | NL0 = 0x0 constant NL1 (line 872) | NL1 = 0x100 constant NLA_ALIGNTO (line 873) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 874) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 875) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 876) | NLA_HDRLEN = 0x4 constant NLDLY (line 877) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 878) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 879) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 880) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 881) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 882) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 883) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 884) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 885) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 886) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 887) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 888) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 889) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 890) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 891) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 892) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 893) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 894) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 895) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 896) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 897) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 898) | NLM_F_ROOT = 0x100 constant NOFLSH (line 899) | NOFLSH = 0x80 constant OCRNL (line 900) | OCRNL = 0x8 constant OFDEL (line 901) | OFDEL = 0x80 constant OFILL (line 902) | OFILL = 0x40 constant OLCUC (line 903) | OLCUC = 0x2 constant ONLCR (line 904) | ONLCR = 0x4 constant ONLRET (line 905) | ONLRET = 0x20 constant ONOCR (line 906) | ONOCR = 0x10 constant OPOST (line 907) | OPOST = 0x1 constant O_ACCMODE (line 908) | O_ACCMODE = 0x3 constant O_APPEND (line 909) | O_APPEND = 0x8 constant O_ASYNC (line 910) | O_ASYNC = 0x1000 constant O_CLOEXEC (line 911) | O_CLOEXEC = 0x80000 constant O_CREAT (line 912) | O_CREAT = 0x100 constant O_DIRECT (line 913) | O_DIRECT = 0x8000 constant O_DIRECTORY (line 914) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 915) | O_DSYNC = 0x10 constant O_EXCL (line 916) | O_EXCL = 0x400 constant O_FSYNC (line 917) | O_FSYNC = 0x4010 constant O_LARGEFILE (line 918) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 919) | O_NDELAY = 0x80 constant O_NOATIME (line 920) | O_NOATIME = 0x40000 constant O_NOCTTY (line 921) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 922) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 923) | O_NONBLOCK = 0x80 constant O_PATH (line 924) | O_PATH = 0x200000 constant O_RDONLY (line 925) | O_RDONLY = 0x0 constant O_RDWR (line 926) | O_RDWR = 0x2 constant O_RSYNC (line 927) | O_RSYNC = 0x4010 constant O_SYNC (line 928) | O_SYNC = 0x4010 constant O_TMPFILE (line 929) | O_TMPFILE = 0x410000 constant O_TRUNC (line 930) | O_TRUNC = 0x200 constant O_WRONLY (line 931) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 932) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 933) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 934) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 935) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 936) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 937) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 938) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 939) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 940) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 941) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 942) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 943) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 944) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 945) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 946) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 947) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 948) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 949) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 950) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 951) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 952) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 953) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 954) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 955) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 956) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 957) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 958) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 959) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 960) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 961) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 962) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 963) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 964) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 965) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 966) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 967) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 968) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 969) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 970) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 971) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 972) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 973) | PACKET_USER = 0x6 constant PACKET_VERSION (line 974) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 975) | PACKET_VNET_HDR = 0xf constant PARENB (line 976) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 977) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 978) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 979) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 980) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 981) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 982) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 983) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 984) | PARITY_NONE = 0x1 constant PARMRK (line 985) | PARMRK = 0x8 constant PARODD (line 986) | PARODD = 0x200 constant PENDIN (line 987) | PENDIN = 0x4000 constant PRIO_PGRP (line 988) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 989) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 990) | PRIO_USER = 0x2 constant PROT_EXEC (line 991) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 992) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 993) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 994) | PROT_NONE = 0x0 constant PROT_READ (line 995) | PROT_READ = 0x1 constant PROT_WRITE (line 996) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 997) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 998) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 999) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1000) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1001) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1002) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1003) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1004) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1005) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1006) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1007) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1008) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1009) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1010) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1011) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1012) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1013) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1014) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1015) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1016) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1017) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1018) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1019) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1020) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1021) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1022) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1023) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1024) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1025) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1026) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1027) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1028) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1029) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1030) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1031) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1032) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1033) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1034) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1035) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1036) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1037) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1038) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1039) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1040) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1041) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1042) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1043) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1044) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1045) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1046) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1047) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1048) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1049) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1050) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1051) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1052) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1053) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1054) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1055) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1056) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1057) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1058) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1059) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1060) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1061) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1062) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1063) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1064) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1065) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1066) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1067) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1068) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1069) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1070) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1071) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1072) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1073) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1074) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1075) | PR_SET_PTRACER_ANY = 0xffffffff constant PR_SET_SECCOMP (line 1076) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1077) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1078) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1079) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1080) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1081) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1082) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1083) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1084) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1085) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1086) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1087) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1088) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1089) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1090) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1091) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1092) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1093) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1094) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1095) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1096) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1097) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1098) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1099) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1100) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1101) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1102) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPREGS (line 1103) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1104) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1105) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1106) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1107) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_THREAD_AREA (line 1108) | PTRACE_GET_THREAD_AREA = 0x19 constant PTRACE_GET_THREAD_AREA_3264 (line 1109) | PTRACE_GET_THREAD_AREA_3264 = 0xc4 constant PTRACE_GET_WATCH_REGS (line 1110) | PTRACE_GET_WATCH_REGS = 0xd0 constant PTRACE_INTERRUPT (line 1111) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1112) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1113) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1114) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1115) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1116) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1117) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1118) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1119) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1120) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1121) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1122) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1123) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1124) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1125) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1126) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_3264 (line 1127) | PTRACE_PEEKDATA_3264 = 0xc1 constant PTRACE_PEEKSIGINFO (line 1128) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1129) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1130) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_3264 (line 1131) | PTRACE_PEEKTEXT_3264 = 0xc0 constant PTRACE_PEEKUSR (line 1132) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1133) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_3264 (line 1134) | PTRACE_POKEDATA_3264 = 0xc3 constant PTRACE_POKETEXT (line 1135) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_3264 (line 1136) | PTRACE_POKETEXT_3264 = 0xc2 constant PTRACE_POKEUSR (line 1137) | PTRACE_POKEUSR = 0x6 constant PTRACE_SECCOMP_GET_FILTER (line 1138) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1139) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPREGS (line 1140) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1141) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1142) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1143) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1144) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1145) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SET_THREAD_AREA (line 1146) | PTRACE_SET_THREAD_AREA = 0x1a constant PTRACE_SET_WATCH_REGS (line 1147) | PTRACE_SET_WATCH_REGS = 0xd1 constant PTRACE_SINGLESTEP (line 1148) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1149) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1150) | PTRACE_TRACEME = 0x0 constant RLIMIT_AS (line 1151) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 1152) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1153) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1154) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1155) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1156) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 1157) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1158) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1159) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1160) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1161) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1162) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1163) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1164) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1165) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1166) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1167) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1168) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1169) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1170) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1171) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1172) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1173) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1174) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1175) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1176) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1177) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1178) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1179) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1180) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1181) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1182) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1183) | RTA_MAX = 0x18 constant RTCF_DIRECTSRC (line 1184) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1185) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1186) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1187) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1188) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1189) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1190) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1191) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1192) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1193) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1194) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1195) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1196) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1197) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1198) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1199) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1200) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1201) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1202) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1203) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1204) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1205) | RTF_MSS = 0x40 constant RTF_MTU (line 1206) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1207) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1208) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1209) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1210) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1211) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1212) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1213) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1214) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1215) | RTF_STATIC = 0x400 constant RTF_THROW (line 1216) | RTF_THROW = 0x2000 constant RTF_UP (line 1217) | RTF_UP = 0x1 constant RTF_WINDOW (line 1218) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1219) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1220) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1221) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1222) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1223) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1224) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1225) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1226) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1227) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1228) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1229) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1230) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1231) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1232) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1233) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1234) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1235) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1236) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1237) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1238) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1239) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1240) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1241) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1242) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1243) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1244) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1245) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1246) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1247) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1248) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1249) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1250) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1251) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1252) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1253) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1254) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1255) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1256) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1257) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1258) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1259) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1260) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1261) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1262) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1263) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1264) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1265) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1266) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1267) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1268) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1269) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1270) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1271) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1272) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1273) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1274) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1275) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1276) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1277) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1278) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1279) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1280) | RTNH_COMPARE_MASK = 0x11 constant RTNH_F_DEAD (line 1281) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1282) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1283) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1284) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1285) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1286) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1287) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1288) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1289) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1290) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1291) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1292) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1293) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1294) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1295) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1296) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1297) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1298) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1299) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1300) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1301) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1302) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1303) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1304) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1305) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1306) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1307) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1308) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1309) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1310) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1311) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1312) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1313) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1314) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1315) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1316) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1317) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1318) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1319) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1320) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1321) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1322) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1323) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 1324) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1325) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1326) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1327) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1328) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1329) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1330) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1331) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1332) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1333) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1334) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1335) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1336) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1337) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1338) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1339) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1340) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1341) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1342) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1343) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1344) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1345) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1346) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1347) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1348) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1349) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1350) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1351) | SIOCGPGRP = 0x40047309 constant SIOCGRARP (line 1352) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1353) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1354) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1355) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1356) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1357) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1358) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1359) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1360) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1361) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1362) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1363) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1364) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1365) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1366) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1367) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1368) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1369) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1370) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1371) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1372) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1373) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1374) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1375) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1376) | SIOCSPGRP = 0x80047308 constant SIOCSRARP (line 1377) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1378) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1379) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1380) | SOCK_DGRAM = 0x1 constant SOCK_NONBLOCK (line 1381) | SOCK_NONBLOCK = 0x80 constant SOCK_PACKET (line 1382) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1383) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1384) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1385) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1386) | SOCK_STREAM = 0x2 constant SOL_AAL (line 1387) | SOL_AAL = 0x109 constant SOL_ALG (line 1388) | SOL_ALG = 0x117 constant SOL_ATM (line 1389) | SOL_ATM = 0x108 constant SOL_CAIF (line 1390) | SOL_CAIF = 0x116 constant SOL_CAN_BASE (line 1391) | SOL_CAN_BASE = 0x64 constant SOL_DCCP (line 1392) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1393) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1394) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1395) | SOL_IP = 0x0 constant SOL_IPV6 (line 1396) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1397) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1398) | SOL_IUCV = 0x115 constant SOL_KCM (line 1399) | SOL_KCM = 0x119 constant SOL_LLC (line 1400) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1401) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1402) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1403) | SOL_NFC = 0x118 constant SOL_PACKET (line 1404) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1405) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1406) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1407) | SOL_RAW = 0xff constant SOL_RDS (line 1408) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1409) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1410) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1411) | SOL_TCP = 0x6 constant SOL_TIPC (line 1412) | SOL_TIPC = 0x10f constant SOL_X25 (line 1413) | SOL_X25 = 0x106 constant SOMAXCONN (line 1414) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1415) | SO_ACCEPTCONN = 0x1009 constant SO_ATTACH_BPF (line 1416) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1417) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1418) | SO_ATTACH_REUSEPORT_CBPF = 0x33 constant SO_ATTACH_REUSEPORT_EBPF (line 1419) | SO_ATTACH_REUSEPORT_EBPF = 0x34 constant SO_BINDTODEVICE (line 1420) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1421) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1422) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1423) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1424) | SO_BUSY_POLL = 0x2e constant SO_CNX_ADVICE (line 1425) | SO_CNX_ADVICE = 0x35 constant SO_DEBUG (line 1426) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1427) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1428) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1429) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1430) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1431) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1432) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1433) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1434) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1435) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1436) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1437) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1438) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1439) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1440) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1441) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1442) | SO_PASSCRED = 0x11 constant SO_PASSSEC (line 1443) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1444) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1445) | SO_PEERCRED = 0x12 constant SO_PEERNAME (line 1446) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1447) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1448) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1449) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1450) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1451) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1452) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1453) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1454) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1455) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1456) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1457) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1458) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1459) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1460) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1461) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1462) | SO_SNDBUFFORCE = 0x1f constant SO_SNDLOWAT (line 1463) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1464) | SO_SNDTIMEO = 0x1005 constant SO_STYLE (line 1465) | SO_STYLE = 0x1008 constant SO_TIMESTAMP (line 1466) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1467) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1468) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1469) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1470) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1471) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1472) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1473) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1474) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1475) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1476) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1477) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1478) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1479) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1480) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1481) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1482) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1483) | S_IEXEC = 0x40 constant S_IFBLK (line 1484) | S_IFBLK = 0x6000 constant S_IFCHR (line 1485) | S_IFCHR = 0x2000 constant S_IFDIR (line 1486) | S_IFDIR = 0x4000 constant S_IFIFO (line 1487) | S_IFIFO = 0x1000 constant S_IFLNK (line 1488) | S_IFLNK = 0xa000 constant S_IFMT (line 1489) | S_IFMT = 0xf000 constant S_IFREG (line 1490) | S_IFREG = 0x8000 constant S_IFSOCK (line 1491) | S_IFSOCK = 0xc000 constant S_IREAD (line 1492) | S_IREAD = 0x100 constant S_IRGRP (line 1493) | S_IRGRP = 0x20 constant S_IROTH (line 1494) | S_IROTH = 0x4 constant S_IRUSR (line 1495) | S_IRUSR = 0x100 constant S_IRWXG (line 1496) | S_IRWXG = 0x38 constant S_IRWXO (line 1497) | S_IRWXO = 0x7 constant S_IRWXU (line 1498) | S_IRWXU = 0x1c0 constant S_ISGID (line 1499) | S_ISGID = 0x400 constant S_ISUID (line 1500) | S_ISUID = 0x800 constant S_ISVTX (line 1501) | S_ISVTX = 0x200 constant S_IWGRP (line 1502) | S_IWGRP = 0x10 constant S_IWOTH (line 1503) | S_IWOTH = 0x2 constant S_IWRITE (line 1504) | S_IWRITE = 0x80 constant S_IWUSR (line 1505) | S_IWUSR = 0x80 constant S_IXGRP (line 1506) | S_IXGRP = 0x8 constant S_IXOTH (line 1507) | S_IXOTH = 0x1 constant S_IXUSR (line 1508) | S_IXUSR = 0x40 constant TAB0 (line 1509) | TAB0 = 0x0 constant TAB1 (line 1510) | TAB1 = 0x800 constant TAB2 (line 1511) | TAB2 = 0x1000 constant TAB3 (line 1512) | TAB3 = 0x1800 constant TABDLY (line 1513) | TABDLY = 0x1800 constant TCFLSH (line 1514) | TCFLSH = 0x5407 constant TCGETA (line 1515) | TCGETA = 0x5401 constant TCGETS (line 1516) | TCGETS = 0x540d constant TCGETS2 (line 1517) | TCGETS2 = 0x4030542a constant TCIFLUSH (line 1518) | TCIFLUSH = 0x0 constant TCIOFF (line 1519) | TCIOFF = 0x2 constant TCIOFLUSH (line 1520) | TCIOFLUSH = 0x2 constant TCION (line 1521) | TCION = 0x3 constant TCOFLUSH (line 1522) | TCOFLUSH = 0x1 constant TCOOFF (line 1523) | TCOOFF = 0x0 constant TCOON (line 1524) | TCOON = 0x1 constant TCP_CC_INFO (line 1525) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1526) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1527) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1528) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1529) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1530) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1531) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1532) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1533) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1534) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1535) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1536) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1537) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1538) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1539) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1540) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1541) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1542) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1543) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1544) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1545) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1546) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1547) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1548) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1549) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1550) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1551) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1552) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1553) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1554) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1555) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SAVED_SYN (line 1556) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1557) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1558) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1559) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1560) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1561) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1562) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1563) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1564) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1565) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1566) | TCSAFLUSH = 0x5410 constant TCSBRK (line 1567) | TCSBRK = 0x5405 constant TCSBRKP (line 1568) | TCSBRKP = 0x5486 constant TCSETA (line 1569) | TCSETA = 0x5402 constant TCSETAF (line 1570) | TCSETAF = 0x5404 constant TCSETAW (line 1571) | TCSETAW = 0x5403 constant TCSETS (line 1572) | TCSETS = 0x540e constant TCSETS2 (line 1573) | TCSETS2 = 0x8030542b constant TCSETSF (line 1574) | TCSETSF = 0x5410 constant TCSETSF2 (line 1575) | TCSETSF2 = 0x8030542d constant TCSETSW (line 1576) | TCSETSW = 0x540f constant TCSETSW2 (line 1577) | TCSETSW2 = 0x8030542c constant TCXONC (line 1578) | TCXONC = 0x5406 constant TIOCCBRK (line 1579) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1580) | TIOCCONS = 0x80047478 constant TIOCEXCL (line 1581) | TIOCEXCL = 0x740d constant TIOCGDEV (line 1582) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1583) | TIOCGETD = 0x7400 constant TIOCGETP (line 1584) | TIOCGETP = 0x7408 constant TIOCGEXCL (line 1585) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1586) | TIOCGICOUNT = 0x5492 constant TIOCGLCKTRMIOS (line 1587) | TIOCGLCKTRMIOS = 0x548b constant TIOCGLTC (line 1588) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1589) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1590) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1591) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1592) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1593) | TIOCGRS485 = 0x4020542e constant TIOCGSERIAL (line 1594) | TIOCGSERIAL = 0x5484 constant TIOCGSID (line 1595) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1596) | TIOCGSOFTCAR = 0x5481 constant TIOCGWINSZ (line 1597) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1598) | TIOCINQ = 0x467f constant TIOCLINUX (line 1599) | TIOCLINUX = 0x5483 constant TIOCMBIC (line 1600) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1601) | TIOCMBIS = 0x741b constant TIOCMGET (line 1602) | TIOCMGET = 0x741d constant TIOCMIWAIT (line 1603) | TIOCMIWAIT = 0x5491 constant TIOCMSET (line 1604) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1605) | TIOCM_CAR = 0x100 constant TIOCM_CD (line 1606) | TIOCM_CD = 0x100 constant TIOCM_CTS (line 1607) | TIOCM_CTS = 0x40 constant TIOCM_DSR (line 1608) | TIOCM_DSR = 0x400 constant TIOCM_DTR (line 1609) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1610) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1611) | TIOCM_RI = 0x200 constant TIOCM_RNG (line 1612) | TIOCM_RNG = 0x200 constant TIOCM_RTS (line 1613) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1614) | TIOCM_SR = 0x20 constant TIOCM_ST (line 1615) | TIOCM_ST = 0x10 constant TIOCNOTTY (line 1616) | TIOCNOTTY = 0x5471 constant TIOCNXCL (line 1617) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1618) | TIOCOUTQ = 0x7472 constant TIOCPKT (line 1619) | TIOCPKT = 0x5470 constant TIOCPKT_DATA (line 1620) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1621) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1622) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1623) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1624) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1625) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1626) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1627) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1628) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1629) | TIOCSCTTY = 0x5480 constant TIOCSERCONFIG (line 1630) | TIOCSERCONFIG = 0x5488 constant TIOCSERGETLSR (line 1631) | TIOCSERGETLSR = 0x548e constant TIOCSERGETMULTI (line 1632) | TIOCSERGETMULTI = 0x548f constant TIOCSERGSTRUCT (line 1633) | TIOCSERGSTRUCT = 0x548d constant TIOCSERGWILD (line 1634) | TIOCSERGWILD = 0x5489 constant TIOCSERSETMULTI (line 1635) | TIOCSERSETMULTI = 0x5490 constant TIOCSERSWILD (line 1636) | TIOCSERSWILD = 0x548a constant TIOCSER_TEMT (line 1637) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1638) | TIOCSETD = 0x7401 constant TIOCSETN (line 1639) | TIOCSETN = 0x740a constant TIOCSETP (line 1640) | TIOCSETP = 0x7409 constant TIOCSIG (line 1641) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1642) | TIOCSLCKTRMIOS = 0x548c constant TIOCSLTC (line 1643) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1644) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1645) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1646) | TIOCSRS485 = 0xc020542f constant TIOCSSERIAL (line 1647) | TIOCSSERIAL = 0x5485 constant TIOCSSOFTCAR (line 1648) | TIOCSSOFTCAR = 0x5482 constant TIOCSTI (line 1649) | TIOCSTI = 0x5472 constant TIOCSWINSZ (line 1650) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1651) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1652) | TOSTOP = 0x8000 constant TUNATTACHFILTER (line 1653) | TUNATTACHFILTER = 0x800854d5 constant TUNDETACHFILTER (line 1654) | TUNDETACHFILTER = 0x800854d6 constant TUNGETFEATURES (line 1655) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1656) | TUNGETFILTER = 0x400854db constant TUNGETIFF (line 1657) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1658) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1659) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1660) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1661) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1662) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1663) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1664) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1665) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1666) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1667) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1668) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1669) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1670) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1671) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1672) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1673) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1674) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1675) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1676) | TUNSETVNETLE = 0x800454dc constant VDISCARD (line 1677) | VDISCARD = 0xd constant VEOF (line 1678) | VEOF = 0x10 constant VEOL (line 1679) | VEOL = 0x11 constant VEOL2 (line 1680) | VEOL2 = 0x6 constant VERASE (line 1681) | VERASE = 0x2 constant VINTR (line 1682) | VINTR = 0x0 constant VKILL (line 1683) | VKILL = 0x3 constant VLNEXT (line 1684) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1685) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1686) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1687) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1688) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1689) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1690) | VMIN = 0x4 constant VQUIT (line 1691) | VQUIT = 0x1 constant VREPRINT (line 1692) | VREPRINT = 0xc constant VSTART (line 1693) | VSTART = 0x8 constant VSTOP (line 1694) | VSTOP = 0x9 constant VSUSP (line 1695) | VSUSP = 0xa constant VSWTC (line 1696) | VSWTC = 0x7 constant VSWTCH (line 1697) | VSWTCH = 0x7 constant VT0 (line 1698) | VT0 = 0x0 constant VT1 (line 1699) | VT1 = 0x4000 constant VTDLY (line 1700) | VTDLY = 0x4000 constant VTIME (line 1701) | VTIME = 0x5 constant VWERASE (line 1702) | VWERASE = 0xe constant WALL (line 1703) | WALL = 0x40000000 constant WCLONE (line 1704) | WCLONE = 0x80000000 constant WCONTINUED (line 1705) | WCONTINUED = 0x8 constant WEXITED (line 1706) | WEXITED = 0x4 constant WNOHANG (line 1707) | WNOHANG = 0x1 constant WNOTHREAD (line 1708) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1709) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1710) | WORDSIZE = 0x20 constant WSTOPPED (line 1711) | WSTOPPED = 0x2 constant WUNTRACED (line 1712) | WUNTRACED = 0x2 constant XCASE (line 1713) | XCASE = 0x4 constant XTABS (line 1714) | XTABS = 0x1800 constant E2BIG (line 1719) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1720) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1721) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1722) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1723) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1724) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1725) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1726) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1727) | EBADE = syscall.Errno(0x32) constant EBADF (line 1728) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1729) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1730) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1731) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1732) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1733) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1734) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1735) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1736) | ECANCELED = syscall.Errno(0x9e) constant ECHILD (line 1737) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1738) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1739) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1740) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1741) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1742) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1743) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1744) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1745) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1746) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1747) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1748) | EDQUOT = syscall.Errno(0x46d) constant EEXIST (line 1749) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1750) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1751) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1752) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1753) | EHOSTUNREACH = syscall.Errno(0x94) constant EHWPOISON (line 1754) | EHWPOISON = syscall.Errno(0xa8) constant EIDRM (line 1755) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1756) | EILSEQ = syscall.Errno(0x58) constant EINIT (line 1757) | EINIT = syscall.Errno(0x8d) constant EINPROGRESS (line 1758) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1759) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1760) | EINVAL = syscall.Errno(0x16) constant EIO (line 1761) | EIO = syscall.Errno(0x5) constant EISCONN (line 1762) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1763) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1764) | EISNAM = syscall.Errno(0x8b) constant EKEYEXPIRED (line 1765) | EKEYEXPIRED = syscall.Errno(0xa2) constant EKEYREJECTED (line 1766) | EKEYREJECTED = syscall.Errno(0xa4) constant EKEYREVOKED (line 1767) | EKEYREVOKED = syscall.Errno(0xa3) constant EL2HLT (line 1768) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1769) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1770) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1771) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1772) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1773) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1774) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1775) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1776) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1777) | ELNRNG = syscall.Errno(0x29) constant ELOOP (line 1778) | ELOOP = syscall.Errno(0x5a) constant EMEDIUMTYPE (line 1779) | EMEDIUMTYPE = syscall.Errno(0xa0) constant EMFILE (line 1780) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1781) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1782) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1783) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1784) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENAVAIL (line 1785) | ENAVAIL = syscall.Errno(0x8a) constant ENETDOWN (line 1786) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1787) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1788) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1789) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1790) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1791) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1792) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1793) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1794) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1795) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1796) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1797) | ENOKEY = syscall.Errno(0xa1) constant ENOLCK (line 1798) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1799) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1800) | ENOMEDIUM = syscall.Errno(0x9f) constant ENOMEM (line 1801) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1802) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1803) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1804) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1805) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1806) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1807) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1808) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1809) | ENOSYS = syscall.Errno(0x59) constant ENOTBLK (line 1810) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1811) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1812) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1813) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTNAM (line 1814) | ENOTNAM = syscall.Errno(0x89) constant ENOTRECOVERABLE (line 1815) | ENOTRECOVERABLE = syscall.Errno(0xa6) constant ENOTSOCK (line 1816) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1817) | ENOTSUP = syscall.Errno(0x7a) constant ENOTTY (line 1818) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1819) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1820) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1821) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1822) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1823) | EOWNERDEAD = syscall.Errno(0xa5) constant EPERM (line 1824) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1825) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1826) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1827) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1828) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1829) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1830) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1831) | EREMCHG = syscall.Errno(0x52) constant EREMDEV (line 1832) | EREMDEV = syscall.Errno(0x8e) constant EREMOTE (line 1833) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1834) | EREMOTEIO = syscall.Errno(0x8c) constant ERESTART (line 1835) | ERESTART = syscall.Errno(0x5b) constant ERFKILL (line 1836) | ERFKILL = syscall.Errno(0xa7) constant EROFS (line 1837) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1838) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1839) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1840) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1841) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1842) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1843) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1844) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1845) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1846) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1847) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1848) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1849) | EUCLEAN = syscall.Errno(0x87) constant EUNATCH (line 1850) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1851) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1852) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1853) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1854) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1859) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1860) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1861) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1862) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1863) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1864) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1865) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1866) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1867) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1868) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1869) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1870) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1871) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1872) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1873) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1874) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1875) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1876) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1877) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1878) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1879) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1880) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1881) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1882) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1883) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1884) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1885) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1886) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1887) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1888) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1889) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWINCH (line 1890) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1891) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1892) | SIGXFSZ = syscall.Signal(0x1f) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x29 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_NFC (line 41) | AF_NFC = 0x27 constant AF_PACKET (line 42) | AF_PACKET = 0x11 constant AF_PHONET (line 43) | AF_PHONET = 0x23 constant AF_PPPOX (line 44) | AF_PPPOX = 0x18 constant AF_RDS (line 45) | AF_RDS = 0x15 constant AF_ROSE (line 46) | AF_ROSE = 0xb constant AF_ROUTE (line 47) | AF_ROUTE = 0x10 constant AF_RXRPC (line 48) | AF_RXRPC = 0x21 constant AF_SECURITY (line 49) | AF_SECURITY = 0xe constant AF_SNA (line 50) | AF_SNA = 0x16 constant AF_TIPC (line 51) | AF_TIPC = 0x1e constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 54) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 55) | AF_WANPIPE = 0x19 constant AF_X25 (line 56) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 57) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 58) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 59) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 60) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 61) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 62) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 63) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 64) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 65) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 66) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 67) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 68) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 69) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 70) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 71) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 72) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 73) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 74) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 75) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 76) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 77) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 78) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 79) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 80) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 81) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 82) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 83) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 84) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 85) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 86) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 87) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 88) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 89) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 90) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 91) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 92) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 93) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 94) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 95) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 96) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 97) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 98) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 99) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 100) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 101) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 102) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 103) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 104) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 105) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 106) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 107) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 108) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 109) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 110) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 111) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 112) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 113) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 114) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 115) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 116) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 117) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 118) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 119) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 120) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 121) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 122) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 123) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 124) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 125) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 126) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 127) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 128) | ARPHRD_X25 = 0x10f constant B0 (line 129) | B0 = 0x0 constant B1000000 (line 130) | B1000000 = 0x17 constant B110 (line 131) | B110 = 0x3 constant B115200 (line 132) | B115200 = 0x11 constant B1152000 (line 133) | B1152000 = 0x18 constant B1200 (line 134) | B1200 = 0x9 constant B134 (line 135) | B134 = 0x4 constant B150 (line 136) | B150 = 0x5 constant B1500000 (line 137) | B1500000 = 0x19 constant B1800 (line 138) | B1800 = 0xa constant B19200 (line 139) | B19200 = 0xe constant B200 (line 140) | B200 = 0x6 constant B2000000 (line 141) | B2000000 = 0x1a constant B230400 (line 142) | B230400 = 0x12 constant B2400 (line 143) | B2400 = 0xb constant B2500000 (line 144) | B2500000 = 0x1b constant B300 (line 145) | B300 = 0x7 constant B3000000 (line 146) | B3000000 = 0x1c constant B3500000 (line 147) | B3500000 = 0x1d constant B38400 (line 148) | B38400 = 0xf constant B4000000 (line 149) | B4000000 = 0x1e constant B460800 (line 150) | B460800 = 0x13 constant B4800 (line 151) | B4800 = 0xc constant B50 (line 152) | B50 = 0x1 constant B500000 (line 153) | B500000 = 0x14 constant B57600 (line 154) | B57600 = 0x10 constant B576000 (line 155) | B576000 = 0x15 constant B600 (line 156) | B600 = 0x8 constant B75 (line 157) | B75 = 0x2 constant B921600 (line 158) | B921600 = 0x16 constant B9600 (line 159) | B9600 = 0xd constant BLKBSZGET (line 160) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 161) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 162) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 163) | BLKFRAGET = 0x1265 constant BLKFRASET (line 164) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 165) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 166) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 167) | BLKRAGET = 0x1263 constant BLKRASET (line 168) | BLKRASET = 0x1262 constant BLKROGET (line 169) | BLKROGET = 0x125e constant BLKROSET (line 170) | BLKROSET = 0x125d constant BLKRRPART (line 171) | BLKRRPART = 0x125f constant BLKSECTGET (line 172) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 173) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 174) | BLKSSZGET = 0x1268 constant BOTHER (line 175) | BOTHER = 0x1f constant BPF_A (line 176) | BPF_A = 0x10 constant BPF_ABS (line 177) | BPF_ABS = 0x20 constant BPF_ADD (line 178) | BPF_ADD = 0x0 constant BPF_ALU (line 179) | BPF_ALU = 0x4 constant BPF_AND (line 180) | BPF_AND = 0x50 constant BPF_B (line 181) | BPF_B = 0x10 constant BPF_DIV (line 182) | BPF_DIV = 0x30 constant BPF_H (line 183) | BPF_H = 0x8 constant BPF_IMM (line 184) | BPF_IMM = 0x0 constant BPF_IND (line 185) | BPF_IND = 0x40 constant BPF_JA (line 186) | BPF_JA = 0x0 constant BPF_JEQ (line 187) | BPF_JEQ = 0x10 constant BPF_JGE (line 188) | BPF_JGE = 0x30 constant BPF_JGT (line 189) | BPF_JGT = 0x20 constant BPF_JMP (line 190) | BPF_JMP = 0x5 constant BPF_JSET (line 191) | BPF_JSET = 0x40 constant BPF_K (line 192) | BPF_K = 0x0 constant BPF_LD (line 193) | BPF_LD = 0x0 constant BPF_LDX (line 194) | BPF_LDX = 0x1 constant BPF_LEN (line 195) | BPF_LEN = 0x80 constant BPF_LSH (line 196) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 197) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 198) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 199) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 200) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 201) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 202) | BPF_MISC = 0x7 constant BPF_MOD (line 203) | BPF_MOD = 0x90 constant BPF_MSH (line 204) | BPF_MSH = 0xa0 constant BPF_MUL (line 205) | BPF_MUL = 0x20 constant BPF_NEG (line 206) | BPF_NEG = 0x80 constant BPF_OR (line 207) | BPF_OR = 0x40 constant BPF_RET (line 208) | BPF_RET = 0x6 constant BPF_RSH (line 209) | BPF_RSH = 0x70 constant BPF_ST (line 210) | BPF_ST = 0x2 constant BPF_STX (line 211) | BPF_STX = 0x3 constant BPF_SUB (line 212) | BPF_SUB = 0x10 constant BPF_TAX (line 213) | BPF_TAX = 0x0 constant BPF_TXA (line 214) | BPF_TXA = 0x80 constant BPF_W (line 215) | BPF_W = 0x0 constant BPF_X (line 216) | BPF_X = 0x8 constant BPF_XOR (line 217) | BPF_XOR = 0xa0 constant BRKINT (line 218) | BRKINT = 0x2 constant BS0 (line 219) | BS0 = 0x0 constant BS1 (line 220) | BS1 = 0x8000 constant BSDLY (line 221) | BSDLY = 0x8000 constant CAN_BCM (line 222) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 223) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 224) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 225) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 226) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 227) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 228) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 229) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 230) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 231) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 232) | CAN_MCNET = 0x5 constant CAN_MTU (line 233) | CAN_MTU = 0x10 constant CAN_NPROTO (line 234) | CAN_NPROTO = 0x7 constant CAN_RAW (line 235) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 236) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 237) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 238) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 239) | CAN_TP16 = 0x3 constant CAN_TP20 (line 240) | CAN_TP20 = 0x4 constant CBAUD (line 241) | CBAUD = 0xff constant CBAUDEX (line 242) | CBAUDEX = 0x0 constant CFLUSH (line 243) | CFLUSH = 0xf constant CIBAUD (line 244) | CIBAUD = 0xff0000 constant CLOCAL (line 245) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 246) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 247) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 248) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 249) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 250) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 251) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 252) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 253) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 254) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 255) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 256) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 257) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 258) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 259) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 260) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 261) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 262) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 263) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 264) | CLONE_FILES = 0x400 constant CLONE_FS (line 265) | CLONE_FS = 0x200 constant CLONE_IO (line 266) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 267) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 268) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 269) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 270) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 271) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 272) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 273) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 274) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 275) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 276) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 277) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 278) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 279) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 280) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 281) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 282) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 283) | CLONE_VM = 0x100 constant CMSPAR (line 284) | CMSPAR = 0x40000000 constant CR0 (line 285) | CR0 = 0x0 constant CR1 (line 286) | CR1 = 0x1000 constant CR2 (line 287) | CR2 = 0x2000 constant CR3 (line 288) | CR3 = 0x3000 constant CRDLY (line 289) | CRDLY = 0x3000 constant CREAD (line 290) | CREAD = 0x800 constant CRTSCTS (line 291) | CRTSCTS = 0x80000000 constant CS5 (line 292) | CS5 = 0x0 constant CS6 (line 293) | CS6 = 0x100 constant CS7 (line 294) | CS7 = 0x200 constant CS8 (line 295) | CS8 = 0x300 constant CSIGNAL (line 296) | CSIGNAL = 0xff constant CSIZE (line 297) | CSIZE = 0x300 constant CSTART (line 298) | CSTART = 0x11 constant CSTATUS (line 299) | CSTATUS = 0x0 constant CSTOP (line 300) | CSTOP = 0x13 constant CSTOPB (line 301) | CSTOPB = 0x400 constant CSUSP (line 302) | CSUSP = 0x1a constant DT_BLK (line 303) | DT_BLK = 0x6 constant DT_CHR (line 304) | DT_CHR = 0x2 constant DT_DIR (line 305) | DT_DIR = 0x4 constant DT_FIFO (line 306) | DT_FIFO = 0x1 constant DT_LNK (line 307) | DT_LNK = 0xa constant DT_REG (line 308) | DT_REG = 0x8 constant DT_SOCK (line 309) | DT_SOCK = 0xc constant DT_UNKNOWN (line 310) | DT_UNKNOWN = 0x0 constant DT_WHT (line 311) | DT_WHT = 0xe constant ECHO (line 312) | ECHO = 0x8 constant ECHOCTL (line 313) | ECHOCTL = 0x40 constant ECHOE (line 314) | ECHOE = 0x2 constant ECHOK (line 315) | ECHOK = 0x4 constant ECHOKE (line 316) | ECHOKE = 0x1 constant ECHONL (line 317) | ECHONL = 0x10 constant ECHOPRT (line 318) | ECHOPRT = 0x20 constant ENCODING_DEFAULT (line 319) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 320) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 321) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 322) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 323) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 324) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 325) | EPOLLERR = 0x8 constant EPOLLET (line 326) | EPOLLET = 0x80000000 constant EPOLLHUP (line 327) | EPOLLHUP = 0x10 constant EPOLLIN (line 328) | EPOLLIN = 0x1 constant EPOLLMSG (line 329) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 330) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 331) | EPOLLOUT = 0x4 constant EPOLLPRI (line 332) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 333) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 334) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 335) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 336) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 337) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 338) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 339) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 340) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 341) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 342) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 343) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 344) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 345) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 346) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 347) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 348) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 349) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 350) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 351) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 352) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 353) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 354) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 355) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 356) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 357) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 358) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 359) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 360) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 361) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 362) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 363) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 364) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 365) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 366) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 367) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 368) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 369) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 370) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 371) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 372) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 373) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 374) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 375) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 376) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 377) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 378) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 379) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 380) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 381) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 382) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 383) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 384) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 385) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 386) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 387) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 388) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 389) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 390) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 391) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 392) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MOBITEX (line 393) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 394) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 395) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 396) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 397) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 398) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 399) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 400) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 401) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 402) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 403) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 404) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 405) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 406) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 407) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 408) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 409) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 410) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 411) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 412) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 413) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 414) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 415) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 416) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 417) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 418) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 419) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 420) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 421) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 422) | ETH_P_XDSA = 0xf8 constant EXTA (line 423) | EXTA = 0xe constant EXTB (line 424) | EXTB = 0xf constant EXTPROC (line 425) | EXTPROC = 0x10000000 constant FALLOC_FL_COLLAPSE_RANGE (line 426) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 427) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 428) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 429) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 430) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 431) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 432) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 433) | FD_SETSIZE = 0x400 constant FF0 (line 434) | FF0 = 0x0 constant FF1 (line 435) | FF1 = 0x4000 constant FFDLY (line 436) | FFDLY = 0x4000 constant FLUSHO (line 437) | FLUSHO = 0x800000 constant F_DUPFD (line 438) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 439) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 440) | F_EXLCK = 0x4 constant F_GETFD (line 441) | F_GETFD = 0x1 constant F_GETFL (line 442) | F_GETFL = 0x3 constant F_GETLEASE (line 443) | F_GETLEASE = 0x401 constant F_GETLK (line 444) | F_GETLK = 0x5 constant F_GETLK64 (line 445) | F_GETLK64 = 0xc constant F_GETOWN (line 446) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 447) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 448) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 449) | F_GETSIG = 0xb constant F_LOCK (line 450) | F_LOCK = 0x1 constant F_NOTIFY (line 451) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 452) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 453) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 454) | F_OFD_SETLKW = 0x26 constant F_OK (line 455) | F_OK = 0x0 constant F_RDLCK (line 456) | F_RDLCK = 0x0 constant F_SETFD (line 457) | F_SETFD = 0x2 constant F_SETFL (line 458) | F_SETFL = 0x4 constant F_SETLEASE (line 459) | F_SETLEASE = 0x400 constant F_SETLK (line 460) | F_SETLK = 0x6 constant F_SETLK64 (line 461) | F_SETLK64 = 0xd constant F_SETLKW (line 462) | F_SETLKW = 0x7 constant F_SETLKW64 (line 463) | F_SETLKW64 = 0xe constant F_SETOWN (line 464) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 465) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 466) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 467) | F_SETSIG = 0xa constant F_SHLCK (line 468) | F_SHLCK = 0x8 constant F_TEST (line 469) | F_TEST = 0x3 constant F_TLOCK (line 470) | F_TLOCK = 0x2 constant F_ULOCK (line 471) | F_ULOCK = 0x0 constant F_UNLCK (line 472) | F_UNLCK = 0x2 constant F_WRLCK (line 473) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 474) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 475) | GRND_RANDOM = 0x2 constant HUPCL (line 476) | HUPCL = 0x4000 constant IBSHIFT (line 477) | IBSHIFT = 0x10 constant ICANON (line 478) | ICANON = 0x100 constant ICMPV6_FILTER (line 479) | ICMPV6_FILTER = 0x1 constant ICRNL (line 480) | ICRNL = 0x100 constant IEXTEN (line 481) | IEXTEN = 0x400 constant IFA_F_DADFAILED (line 482) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 483) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 484) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 485) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_NODAD (line 486) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 487) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 488) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 489) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 490) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 491) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 492) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 493) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 494) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 495) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 496) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 497) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 498) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 499) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 500) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 501) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 502) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 503) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 504) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 505) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 506) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 507) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 508) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 509) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 510) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 511) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 512) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 513) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 514) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 515) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 516) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 517) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 518) | IFF_SLAVE = 0x800 constant IFF_TAP (line 519) | IFF_TAP = 0x2 constant IFF_TUN (line 520) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 521) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 522) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 523) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 524) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 525) | IFNAMSIZ = 0x10 constant IGNBRK (line 526) | IGNBRK = 0x1 constant IGNCR (line 527) | IGNCR = 0x80 constant IGNPAR (line 528) | IGNPAR = 0x4 constant IMAXBEL (line 529) | IMAXBEL = 0x2000 constant INLCR (line 530) | INLCR = 0x40 constant INPCK (line 531) | INPCK = 0x10 constant IN_ACCESS (line 532) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 533) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 534) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 535) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 536) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 537) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 538) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 539) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 540) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 541) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 542) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 543) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 544) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 545) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 546) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 547) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 548) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 549) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 550) | IN_CREATE = 0x100 constant IN_DELETE (line 551) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 552) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 553) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 554) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 555) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 556) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 557) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 558) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 559) | IN_MODIFY = 0x2 constant IN_MOVE (line 560) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 561) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 562) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 563) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 564) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 565) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 566) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 567) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 568) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 569) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 570) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 571) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 572) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 573) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 574) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 575) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 576) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 577) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 578) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 579) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 580) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 581) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 582) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 583) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 584) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 585) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 586) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 587) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 588) | IPPROTO_MH = 0x87 constant IPPROTO_MTP (line 589) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 590) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 591) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 592) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 593) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 594) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 595) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 596) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 597) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 598) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 599) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 600) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 601) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 602) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 603) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 604) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 605) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 606) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 607) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 608) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 609) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 610) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 611) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 612) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 613) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 614) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 615) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 616) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 617) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 618) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 619) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 620) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 621) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 622) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 623) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 624) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 625) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 626) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 627) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 628) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 629) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 630) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 631) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 632) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 633) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 634) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 635) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 636) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 637) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 638) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 639) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 640) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 641) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 642) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 643) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 644) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 645) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 646) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 647) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 648) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 649) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 650) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 651) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 652) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 653) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 654) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 655) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 656) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 657) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 658) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 659) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 660) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 661) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 662) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 663) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 664) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 665) | IP_MF = 0x2000 constant IP_MINTTL (line 666) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 667) | IP_MSFILTER = 0x29 constant IP_MSS (line 668) | IP_MSS = 0x240 constant IP_MTU (line 669) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 670) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 671) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 672) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 673) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 674) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 675) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 676) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 677) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 678) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 679) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 680) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 681) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 682) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 683) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 684) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 685) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 686) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 687) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 688) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 689) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 690) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 691) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 692) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 693) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 694) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 695) | IP_RETOPTS = 0x7 constant IP_RF (line 696) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 697) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 698) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 699) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 700) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 701) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 702) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 703) | IP_XFRM_POLICY = 0x11 constant ISIG (line 704) | ISIG = 0x80 constant ISTRIP (line 705) | ISTRIP = 0x20 constant IUCLC (line 706) | IUCLC = 0x1000 constant IUTF8 (line 707) | IUTF8 = 0x4000 constant IXANY (line 708) | IXANY = 0x800 constant IXOFF (line 709) | IXOFF = 0x400 constant IXON (line 710) | IXON = 0x200 constant LINUX_REBOOT_CMD_CAD_OFF (line 711) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 712) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 713) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 714) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 715) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 716) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 717) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 718) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 719) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 720) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 721) | LOCK_EX = 0x2 constant LOCK_NB (line 722) | LOCK_NB = 0x4 constant LOCK_SH (line 723) | LOCK_SH = 0x1 constant LOCK_UN (line 724) | LOCK_UN = 0x8 constant MADV_DODUMP (line 725) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 726) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 727) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 728) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 729) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 730) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 731) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 732) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 733) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 734) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 735) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 736) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 737) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 738) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 739) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 740) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 741) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 742) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 743) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 744) | MAP_FILE = 0x0 constant MAP_FIXED (line 745) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 746) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 747) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 748) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 749) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 750) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 751) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 752) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 753) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 754) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 755) | MAP_SHARED = 0x1 constant MAP_STACK (line 756) | MAP_STACK = 0x20000 constant MAP_TYPE (line 757) | MAP_TYPE = 0xf constant MCL_CURRENT (line 758) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 759) | MCL_FUTURE = 0x4000 constant MNT_DETACH (line 760) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 761) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 762) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 763) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 764) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 765) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 766) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 767) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 768) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 769) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 770) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 771) | MSG_FIN = 0x200 constant MSG_MORE (line 772) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 773) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 774) | MSG_OOB = 0x1 constant MSG_PEEK (line 775) | MSG_PEEK = 0x2 constant MSG_PROXY (line 776) | MSG_PROXY = 0x10 constant MSG_RST (line 777) | MSG_RST = 0x1000 constant MSG_SYN (line 778) | MSG_SYN = 0x400 constant MSG_TRUNC (line 779) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 780) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 781) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 782) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 783) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 784) | MS_ASYNC = 0x1 constant MS_BIND (line 785) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 786) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 787) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 788) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 789) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 790) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 791) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 792) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 793) | MS_MOVE = 0x2000 constant MS_NOATIME (line 794) | MS_NOATIME = 0x400 constant MS_NODEV (line 795) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 796) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 797) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 798) | MS_NOSUID = 0x2 constant MS_NOUSER (line 799) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 800) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 801) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 802) | MS_RDONLY = 0x1 constant MS_REC (line 803) | MS_REC = 0x4000 constant MS_RELATIME (line 804) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 805) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 806) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 807) | MS_SHARED = 0x100000 constant MS_SILENT (line 808) | MS_SILENT = 0x8000 constant MS_SLAVE (line 809) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 810) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 811) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 812) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 813) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 814) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 815) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 816) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 817) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 818) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 819) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 820) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 821) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 822) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 823) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 824) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 825) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 826) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 827) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 828) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 829) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 830) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 831) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 832) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 833) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 834) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 835) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 836) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 837) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 838) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 839) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 840) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 841) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 842) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 843) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 844) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 845) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 846) | NETLINK_XFRM = 0x6 constant NL0 (line 847) | NL0 = 0x0 constant NL1 (line 848) | NL1 = 0x100 constant NL2 (line 849) | NL2 = 0x200 constant NL3 (line 850) | NL3 = 0x300 constant NLA_ALIGNTO (line 851) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 852) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 853) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 854) | NLA_HDRLEN = 0x4 constant NLDLY (line 855) | NLDLY = 0x300 constant NLMSG_ALIGNTO (line 856) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 857) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 858) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 859) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 860) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 861) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 862) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 863) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 864) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 865) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 866) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 867) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 868) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 869) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 870) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 871) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 872) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 873) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 874) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 875) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 876) | NLM_F_ROOT = 0x100 constant NOFLSH (line 877) | NOFLSH = 0x80000000 constant OCRNL (line 878) | OCRNL = 0x8 constant OFDEL (line 879) | OFDEL = 0x80 constant OFILL (line 880) | OFILL = 0x40 constant OLCUC (line 881) | OLCUC = 0x4 constant ONLCR (line 882) | ONLCR = 0x2 constant ONLRET (line 883) | ONLRET = 0x20 constant ONOCR (line 884) | ONOCR = 0x10 constant OPOST (line 885) | OPOST = 0x1 constant O_ACCMODE (line 886) | O_ACCMODE = 0x3 constant O_APPEND (line 887) | O_APPEND = 0x400 constant O_ASYNC (line 888) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 889) | O_CLOEXEC = 0x80000 constant O_CREAT (line 890) | O_CREAT = 0x40 constant O_DIRECT (line 891) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 892) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 893) | O_DSYNC = 0x1000 constant O_EXCL (line 894) | O_EXCL = 0x80 constant O_FSYNC (line 895) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 896) | O_LARGEFILE = 0x0 constant O_NDELAY (line 897) | O_NDELAY = 0x800 constant O_NOATIME (line 898) | O_NOATIME = 0x40000 constant O_NOCTTY (line 899) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 900) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 901) | O_NONBLOCK = 0x800 constant O_PATH (line 902) | O_PATH = 0x200000 constant O_RDONLY (line 903) | O_RDONLY = 0x0 constant O_RDWR (line 904) | O_RDWR = 0x2 constant O_RSYNC (line 905) | O_RSYNC = 0x101000 constant O_SYNC (line 906) | O_SYNC = 0x101000 constant O_TMPFILE (line 907) | O_TMPFILE = 0x410000 constant O_TRUNC (line 908) | O_TRUNC = 0x200 constant O_WRONLY (line 909) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 910) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 911) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 912) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 913) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 914) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 915) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CPU (line 916) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_FLAG_DEFRAG (line 917) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 918) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 919) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 920) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 921) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 922) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 923) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 924) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 925) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 926) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 927) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 928) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 929) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 930) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 931) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 932) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 933) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 934) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 935) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 936) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 937) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 938) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 939) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 940) | PACKET_RESERVE = 0xc constant PACKET_RX_RING (line 941) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 942) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 943) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 944) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 945) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 946) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 947) | PACKET_USER = 0x6 constant PACKET_VERSION (line 948) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 949) | PACKET_VNET_HDR = 0xf constant PARENB (line 950) | PARENB = 0x1000 constant PARITY_CRC16_PR0 (line 951) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 952) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 953) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 954) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 955) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 956) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 957) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 958) | PARITY_NONE = 0x1 constant PARMRK (line 959) | PARMRK = 0x8 constant PARODD (line 960) | PARODD = 0x2000 constant PENDIN (line 961) | PENDIN = 0x20000000 constant PRIO_PGRP (line 962) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 963) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 964) | PRIO_USER = 0x2 constant PROT_EXEC (line 965) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 966) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 967) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 968) | PROT_NONE = 0x0 constant PROT_READ (line 969) | PROT_READ = 0x1 constant PROT_SAO (line 970) | PROT_SAO = 0x10 constant PROT_WRITE (line 971) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 972) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 973) | PR_CAPBSET_READ = 0x17 constant PR_ENDIAN_BIG (line 974) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 975) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 976) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 977) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 978) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 979) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 980) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 981) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 982) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 983) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 984) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 985) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 986) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 987) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 988) | PR_FP_EXC_UND = 0x40000 constant PR_GET_CHILD_SUBREAPER (line 989) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 990) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 991) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 992) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 993) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 994) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 995) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 996) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 997) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 998) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 999) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1000) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1001) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1002) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1003) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1004) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1005) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1006) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1007) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1008) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1009) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1010) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1011) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1012) | PR_MCE_KILL_SET = 0x1 constant PR_SET_CHILD_SUBREAPER (line 1013) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1014) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1015) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1016) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1017) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 1018) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1019) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1020) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1021) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1022) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1023) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1024) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1025) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1026) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1027) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1028) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1029) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1030) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1031) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1032) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1033) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1034) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1035) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1036) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1037) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1038) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1039) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1040) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1041) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1042) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1043) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1044) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1045) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1046) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1047) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1048) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1049) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1050) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1051) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1052) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1053) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1054) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1055) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1056) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1057) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1058) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1059) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1060) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1061) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1062) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1063) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1064) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1065) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1066) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETEVRREGS (line 1067) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 1068) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1069) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGS64 (line 1070) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETREGSET (line 1071) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1072) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1073) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GETVRREGS (line 1074) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 1075) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 1076) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_INTERRUPT (line 1077) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1078) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1079) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1080) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1081) | PTRACE_O_MASK = 0x1000ff constant PTRACE_O_TRACECLONE (line 1082) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1083) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1084) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1085) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1086) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1087) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1088) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1089) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1090) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1091) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1092) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1093) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1094) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1095) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1096) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1097) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1098) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETEVRREGS (line 1099) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 1100) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1101) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1102) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGS64 (line 1103) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETREGSET (line 1104) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1105) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1106) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SETVRREGS (line 1107) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 1108) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 1109) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 1110) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SINGLESTEP (line 1111) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1112) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1113) | PTRACE_TRACEME = 0x0 constant PT_CCR (line 1114) | PT_CCR = 0x26 constant PT_CTR (line 1115) | PT_CTR = 0x23 constant PT_DAR (line 1116) | PT_DAR = 0x29 constant PT_DSCR (line 1117) | PT_DSCR = 0x2c constant PT_DSISR (line 1118) | PT_DSISR = 0x2a constant PT_FPR0 (line 1119) | PT_FPR0 = 0x30 constant PT_FPSCR (line 1120) | PT_FPSCR = 0x50 constant PT_LNK (line 1121) | PT_LNK = 0x24 constant PT_MSR (line 1122) | PT_MSR = 0x21 constant PT_NIP (line 1123) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 1124) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 1125) | PT_R0 = 0x0 constant PT_R1 (line 1126) | PT_R1 = 0x1 constant PT_R10 (line 1127) | PT_R10 = 0xa constant PT_R11 (line 1128) | PT_R11 = 0xb constant PT_R12 (line 1129) | PT_R12 = 0xc constant PT_R13 (line 1130) | PT_R13 = 0xd constant PT_R14 (line 1131) | PT_R14 = 0xe constant PT_R15 (line 1132) | PT_R15 = 0xf constant PT_R16 (line 1133) | PT_R16 = 0x10 constant PT_R17 (line 1134) | PT_R17 = 0x11 constant PT_R18 (line 1135) | PT_R18 = 0x12 constant PT_R19 (line 1136) | PT_R19 = 0x13 constant PT_R2 (line 1137) | PT_R2 = 0x2 constant PT_R20 (line 1138) | PT_R20 = 0x14 constant PT_R21 (line 1139) | PT_R21 = 0x15 constant PT_R22 (line 1140) | PT_R22 = 0x16 constant PT_R23 (line 1141) | PT_R23 = 0x17 constant PT_R24 (line 1142) | PT_R24 = 0x18 constant PT_R25 (line 1143) | PT_R25 = 0x19 constant PT_R26 (line 1144) | PT_R26 = 0x1a constant PT_R27 (line 1145) | PT_R27 = 0x1b constant PT_R28 (line 1146) | PT_R28 = 0x1c constant PT_R29 (line 1147) | PT_R29 = 0x1d constant PT_R3 (line 1148) | PT_R3 = 0x3 constant PT_R30 (line 1149) | PT_R30 = 0x1e constant PT_R31 (line 1150) | PT_R31 = 0x1f constant PT_R4 (line 1151) | PT_R4 = 0x4 constant PT_R5 (line 1152) | PT_R5 = 0x5 constant PT_R6 (line 1153) | PT_R6 = 0x6 constant PT_R7 (line 1154) | PT_R7 = 0x7 constant PT_R8 (line 1155) | PT_R8 = 0x8 constant PT_R9 (line 1156) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 1157) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 1158) | PT_RESULT = 0x2b constant PT_SOFTE (line 1159) | PT_SOFTE = 0x27 constant PT_TRAP (line 1160) | PT_TRAP = 0x28 constant PT_VR0 (line 1161) | PT_VR0 = 0x52 constant PT_VRSAVE (line 1162) | PT_VRSAVE = 0x94 constant PT_VSCR (line 1163) | PT_VSCR = 0x93 constant PT_VSR0 (line 1164) | PT_VSR0 = 0x96 constant PT_VSR31 (line 1165) | PT_VSR31 = 0xd4 constant PT_XER (line 1166) | PT_XER = 0x25 constant RLIMIT_AS (line 1167) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1168) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1169) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1170) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1171) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1172) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 1173) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1174) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1175) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 1176) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1177) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1178) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1179) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1180) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1181) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1182) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1183) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1184) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1185) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1186) | RTAX_MAX = 0xf constant RTAX_MTU (line 1187) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1188) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1189) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1190) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1191) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1192) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1193) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1194) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1195) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1196) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1197) | RTA_MAX = 0x11 constant RTCF_DIRECTSRC (line 1198) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1199) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1200) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1201) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1202) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1203) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1204) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1205) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1206) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1207) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1208) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1209) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1210) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1211) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1212) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1213) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1214) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1215) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1216) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1217) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1218) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1219) | RTF_MSS = 0x40 constant RTF_MTU (line 1220) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1221) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1222) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1223) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1224) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1225) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1226) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1227) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1228) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1229) | RTF_STATIC = 0x400 constant RTF_THROW (line 1230) | RTF_THROW = 0x2000 constant RTF_UP (line 1231) | RTF_UP = 0x1 constant RTF_WINDOW (line 1232) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1233) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1234) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1235) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1236) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1237) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1238) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1239) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1240) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1241) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1242) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1243) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1244) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1245) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1246) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1247) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1248) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1249) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1250) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1251) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1252) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1253) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1254) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1255) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1256) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1257) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1258) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1259) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1260) | RTM_GETNETCONF = 0x52 constant RTM_GETQDISC (line 1261) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1262) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1263) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1264) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1265) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1266) | RTM_MAX = 0x57 constant RTM_NEWACTION (line 1267) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1268) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1269) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1270) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1271) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1272) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1273) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1274) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1275) | RTM_NEWNETCONF = 0x50 constant RTM_NEWPREFIX (line 1276) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1277) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1278) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1279) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1280) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1281) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1282) | RTM_NR_FAMILIES = 0x12 constant RTM_NR_MSGTYPES (line 1283) | RTM_NR_MSGTYPES = 0x48 constant RTM_SETDCB (line 1284) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1285) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1286) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1287) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1288) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1289) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1290) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1291) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1292) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1293) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1294) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1295) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1296) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1297) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1298) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1299) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1300) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1301) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1302) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1303) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1304) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1305) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1306) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1307) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1308) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1309) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1310) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1311) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1312) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1313) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1314) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1315) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1316) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1317) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1318) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1319) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1320) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1321) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1322) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1323) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1324) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1325) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1326) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1327) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1328) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1329) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1330) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1331) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1332) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1333) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1334) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1335) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1336) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1337) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1338) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1339) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1340) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1341) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1342) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1343) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1344) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1345) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1346) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1347) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1348) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1349) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1350) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1351) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1352) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1353) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1354) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1355) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1356) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1357) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1358) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1359) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1360) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1361) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1362) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1363) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1364) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1365) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1366) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1367) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1368) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1369) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1370) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1371) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1372) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1373) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1374) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1375) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1376) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1377) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1378) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1379) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1380) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1381) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1382) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1383) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1384) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1385) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1386) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1387) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1388) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1389) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1390) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1391) | SOL_AAL = 0x109 constant SOL_ATM (line 1392) | SOL_ATM = 0x108 constant SOL_DECNET (line 1393) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1394) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1395) | SOL_IP = 0x0 constant SOL_IPV6 (line 1396) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1397) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1398) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1399) | SOL_PACKET = 0x107 constant SOL_RAW (line 1400) | SOL_RAW = 0xff constant SOL_SOCKET (line 1401) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1402) | SOL_TCP = 0x6 constant SOL_X25 (line 1403) | SOL_X25 = 0x106 constant SOMAXCONN (line 1404) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1405) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_FILTER (line 1406) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1407) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1408) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1409) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1410) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1411) | SO_BUSY_POLL = 0x2e constant SO_DEBUG (line 1412) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1413) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1414) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1415) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1416) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1417) | SO_GET_FILTER = 0x1a constant SO_KEEPALIVE (line 1418) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1419) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1420) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1421) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1422) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1423) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1424) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1425) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1426) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 1427) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1428) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1429) | SO_PEERCRED = 0x15 constant SO_PEERNAME (line 1430) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1431) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1432) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1433) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1434) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1435) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1436) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 1437) | SO_RCVTIMEO = 0x12 constant SO_REUSEADDR (line 1438) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1439) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1440) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1441) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1442) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1443) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1444) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1445) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1446) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1447) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 1448) | SO_SNDTIMEO = 0x13 constant SO_TIMESTAMP (line 1449) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1450) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1451) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1452) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1453) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1454) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1455) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1456) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1457) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1458) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1459) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1460) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1461) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1462) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1463) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1464) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1465) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1466) | S_IEXEC = 0x40 constant S_IFBLK (line 1467) | S_IFBLK = 0x6000 constant S_IFCHR (line 1468) | S_IFCHR = 0x2000 constant S_IFDIR (line 1469) | S_IFDIR = 0x4000 constant S_IFIFO (line 1470) | S_IFIFO = 0x1000 constant S_IFLNK (line 1471) | S_IFLNK = 0xa000 constant S_IFMT (line 1472) | S_IFMT = 0xf000 constant S_IFREG (line 1473) | S_IFREG = 0x8000 constant S_IFSOCK (line 1474) | S_IFSOCK = 0xc000 constant S_IREAD (line 1475) | S_IREAD = 0x100 constant S_IRGRP (line 1476) | S_IRGRP = 0x20 constant S_IROTH (line 1477) | S_IROTH = 0x4 constant S_IRUSR (line 1478) | S_IRUSR = 0x100 constant S_IRWXG (line 1479) | S_IRWXG = 0x38 constant S_IRWXO (line 1480) | S_IRWXO = 0x7 constant S_IRWXU (line 1481) | S_IRWXU = 0x1c0 constant S_ISGID (line 1482) | S_ISGID = 0x400 constant S_ISUID (line 1483) | S_ISUID = 0x800 constant S_ISVTX (line 1484) | S_ISVTX = 0x200 constant S_IWGRP (line 1485) | S_IWGRP = 0x10 constant S_IWOTH (line 1486) | S_IWOTH = 0x2 constant S_IWRITE (line 1487) | S_IWRITE = 0x80 constant S_IWUSR (line 1488) | S_IWUSR = 0x80 constant S_IXGRP (line 1489) | S_IXGRP = 0x8 constant S_IXOTH (line 1490) | S_IXOTH = 0x1 constant S_IXUSR (line 1491) | S_IXUSR = 0x40 constant TAB0 (line 1492) | TAB0 = 0x0 constant TAB1 (line 1493) | TAB1 = 0x400 constant TAB2 (line 1494) | TAB2 = 0x800 constant TAB3 (line 1495) | TAB3 = 0xc00 constant TABDLY (line 1496) | TABDLY = 0xc00 constant TCFLSH (line 1497) | TCFLSH = 0x2000741f constant TCGETA (line 1498) | TCGETA = 0x40147417 constant TCGETS (line 1499) | TCGETS = 0x402c7413 constant TCIFLUSH (line 1500) | TCIFLUSH = 0x0 constant TCIOFF (line 1501) | TCIOFF = 0x2 constant TCIOFLUSH (line 1502) | TCIOFLUSH = 0x2 constant TCION (line 1503) | TCION = 0x3 constant TCOFLUSH (line 1504) | TCOFLUSH = 0x1 constant TCOOFF (line 1505) | TCOOFF = 0x0 constant TCOON (line 1506) | TCOON = 0x1 constant TCP_CONGESTION (line 1507) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1508) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1509) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1510) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1511) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1512) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1513) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1514) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1515) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1516) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1517) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1518) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1519) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1520) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1521) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1522) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1523) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1524) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1525) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1526) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1527) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1528) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1529) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1530) | TCP_NODELAY = 0x1 constant TCP_QUEUE_SEQ (line 1531) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1532) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1533) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1534) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1535) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SYNCNT (line 1536) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1537) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1538) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1539) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1540) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1541) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1542) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1543) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1544) | TCSAFLUSH = 0x2 constant TCSBRK (line 1545) | TCSBRK = 0x2000741d constant TCSBRKP (line 1546) | TCSBRKP = 0x5425 constant TCSETA (line 1547) | TCSETA = 0x80147418 constant TCSETAF (line 1548) | TCSETAF = 0x8014741c constant TCSETAW (line 1549) | TCSETAW = 0x80147419 constant TCSETS (line 1550) | TCSETS = 0x802c7414 constant TCSETSF (line 1551) | TCSETSF = 0x802c7416 constant TCSETSW (line 1552) | TCSETSW = 0x802c7415 constant TCXONC (line 1553) | TCXONC = 0x2000741e constant TIOCCBRK (line 1554) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1555) | TIOCCONS = 0x541d constant TIOCEXCL (line 1556) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1557) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 1558) | TIOCGETC = 0x40067412 constant TIOCGETD (line 1559) | TIOCGETD = 0x5424 constant TIOCGETP (line 1560) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 1561) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1562) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1563) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 1564) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 1565) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1566) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1567) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1568) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1569) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1570) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1571) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1572) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1573) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1574) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 1575) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1576) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1577) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1578) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1579) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1580) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1581) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1582) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1583) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1584) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1585) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1586) | TIOCM_LE = 0x1 constant TIOCM_LOOP (line 1587) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 1588) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 1589) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 1590) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1591) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1592) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1593) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1594) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1595) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1596) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1597) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1598) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1599) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1600) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1601) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1602) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1603) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1604) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1605) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1606) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1607) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1608) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1609) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1610) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1611) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1612) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1613) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1614) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1615) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1616) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 1617) | TIOCSETC = 0x80067411 constant TIOCSETD (line 1618) | TIOCSETD = 0x5423 constant TIOCSETN (line 1619) | TIOCSETN = 0x8006740a constant TIOCSETP (line 1620) | TIOCSETP = 0x80067409 constant TIOCSIG (line 1621) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1622) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 1623) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 1624) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1625) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1626) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1627) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1628) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 1629) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1630) | TIOCSTI = 0x5412 constant TIOCSTOP (line 1631) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1632) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1633) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1634) | TOSTOP = 0x400000 constant TUNATTACHFILTER (line 1635) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1636) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1637) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1638) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1639) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1640) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETHDRSZ (line 1641) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNSETDEBUG (line 1642) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1643) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1644) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1645) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1646) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1647) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1648) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1649) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1650) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1651) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1652) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1653) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETHDRSZ (line 1654) | TUNSETVNETHDRSZ = 0x800454d8 constant VDISCARD (line 1655) | VDISCARD = 0x10 constant VEOF (line 1656) | VEOF = 0x4 constant VEOL (line 1657) | VEOL = 0x6 constant VEOL2 (line 1658) | VEOL2 = 0x8 constant VERASE (line 1659) | VERASE = 0x2 constant VINTR (line 1660) | VINTR = 0x0 constant VKILL (line 1661) | VKILL = 0x3 constant VLNEXT (line 1662) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1663) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1664) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1665) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1666) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1667) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1668) | VMIN = 0x5 constant VQUIT (line 1669) | VQUIT = 0x1 constant VREPRINT (line 1670) | VREPRINT = 0xb constant VSTART (line 1671) | VSTART = 0xd constant VSTOP (line 1672) | VSTOP = 0xe constant VSUSP (line 1673) | VSUSP = 0xc constant VSWTC (line 1674) | VSWTC = 0x9 constant VT0 (line 1675) | VT0 = 0x0 constant VT1 (line 1676) | VT1 = 0x10000 constant VTDLY (line 1677) | VTDLY = 0x10000 constant VTIME (line 1678) | VTIME = 0x7 constant VWERASE (line 1679) | VWERASE = 0xa constant WALL (line 1680) | WALL = 0x40000000 constant WCLONE (line 1681) | WCLONE = 0x80000000 constant WCONTINUED (line 1682) | WCONTINUED = 0x8 constant WEXITED (line 1683) | WEXITED = 0x4 constant WNOHANG (line 1684) | WNOHANG = 0x1 constant WNOTHREAD (line 1685) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1686) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1687) | WORDSIZE = 0x40 constant WSTOPPED (line 1688) | WSTOPPED = 0x2 constant WUNTRACED (line 1689) | WUNTRACED = 0x2 constant XCASE (line 1690) | XCASE = 0x4000 constant XTABS (line 1691) | XTABS = 0xc00 constant E2BIG (line 1696) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1697) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1698) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1699) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1700) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1701) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1702) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1703) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1704) | EBADE = syscall.Errno(0x34) constant EBADF (line 1705) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1706) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1707) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1708) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1709) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1710) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1711) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1712) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1713) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1714) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1715) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1716) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1717) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1718) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1719) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1720) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1721) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 1722) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1723) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1724) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1725) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1726) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1727) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1728) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1729) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1730) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1731) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1732) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1733) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1734) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1735) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1736) | EINVAL = syscall.Errno(0x16) constant EIO (line 1737) | EIO = syscall.Errno(0x5) constant EISCONN (line 1738) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1739) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1740) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1741) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1742) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1743) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1744) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1745) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1746) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1747) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1748) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1749) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1750) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1751) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1752) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1753) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1754) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1755) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1756) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1757) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1758) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1759) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1760) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1761) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1762) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1763) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1764) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1765) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1766) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1767) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1768) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1769) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1770) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1771) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1772) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1773) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1774) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1775) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1776) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1777) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1778) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1779) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1780) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1781) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1782) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1783) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1784) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1785) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1786) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1787) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1788) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1789) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1790) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1791) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1792) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1793) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1794) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1795) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1796) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1797) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1798) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1799) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1800) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1801) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1802) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1803) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1804) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1805) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1806) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1807) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1808) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1809) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1810) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1811) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1812) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1813) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1814) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1815) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1816) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1817) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1818) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1819) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1820) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1821) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1822) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1823) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1824) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1825) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1826) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1827) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1828) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1829) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1834) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1835) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1836) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1837) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1838) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1839) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1840) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1841) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1842) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1843) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1844) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1845) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1846) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1847) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1848) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1849) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1850) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1851) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1852) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1853) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1854) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1855) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1856) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1857) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1858) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1859) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1860) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1861) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1862) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1863) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1864) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1865) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1866) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1867) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1868) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IEEE802154 (line 27) | AF_IEEE802154 = 0x24 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0xa constant AF_IPX (line 30) | AF_IPX = 0x4 constant AF_IRDA (line 31) | AF_IRDA = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x22 constant AF_IUCV (line 33) | AF_IUCV = 0x20 constant AF_KEY (line 34) | AF_KEY = 0xf constant AF_LLC (line 35) | AF_LLC = 0x1a constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x29 constant AF_NETBEUI (line 38) | AF_NETBEUI = 0xd constant AF_NETLINK (line 39) | AF_NETLINK = 0x10 constant AF_NETROM (line 40) | AF_NETROM = 0x6 constant AF_NFC (line 41) | AF_NFC = 0x27 constant AF_PACKET (line 42) | AF_PACKET = 0x11 constant AF_PHONET (line 43) | AF_PHONET = 0x23 constant AF_PPPOX (line 44) | AF_PPPOX = 0x18 constant AF_RDS (line 45) | AF_RDS = 0x15 constant AF_ROSE (line 46) | AF_ROSE = 0xb constant AF_ROUTE (line 47) | AF_ROUTE = 0x10 constant AF_RXRPC (line 48) | AF_RXRPC = 0x21 constant AF_SECURITY (line 49) | AF_SECURITY = 0xe constant AF_SNA (line 50) | AF_SNA = 0x16 constant AF_TIPC (line 51) | AF_TIPC = 0x1e constant AF_UNIX (line 52) | AF_UNIX = 0x1 constant AF_UNSPEC (line 53) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 54) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 55) | AF_WANPIPE = 0x19 constant AF_X25 (line 56) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 57) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 58) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 59) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 60) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 61) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 62) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 63) | ALG_SET_OP = 0x3 constant ARPHRD_ADAPT (line 64) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 65) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 66) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 67) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 68) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 69) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 70) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 71) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 72) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 73) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 74) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 75) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 76) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 77) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 78) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 79) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 80) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 81) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 82) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 83) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 84) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 85) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 86) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 87) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 88) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 89) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 90) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 91) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 92) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 93) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 94) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 95) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 96) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 97) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 98) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 99) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 100) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 101) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 102) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 103) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 104) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 105) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 106) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 107) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 108) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 109) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 110) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 111) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 112) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 113) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 114) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 115) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 116) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 117) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 118) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 119) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 120) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 121) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 122) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 123) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 124) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 125) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 126) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 127) | ARPHRD_X25 = 0x10f constant B0 (line 128) | B0 = 0x0 constant B1000000 (line 129) | B1000000 = 0x17 constant B110 (line 130) | B110 = 0x3 constant B115200 (line 131) | B115200 = 0x11 constant B1152000 (line 132) | B1152000 = 0x18 constant B1200 (line 133) | B1200 = 0x9 constant B134 (line 134) | B134 = 0x4 constant B150 (line 135) | B150 = 0x5 constant B1500000 (line 136) | B1500000 = 0x19 constant B1800 (line 137) | B1800 = 0xa constant B19200 (line 138) | B19200 = 0xe constant B200 (line 139) | B200 = 0x6 constant B2000000 (line 140) | B2000000 = 0x1a constant B230400 (line 141) | B230400 = 0x12 constant B2400 (line 142) | B2400 = 0xb constant B2500000 (line 143) | B2500000 = 0x1b constant B300 (line 144) | B300 = 0x7 constant B3000000 (line 145) | B3000000 = 0x1c constant B3500000 (line 146) | B3500000 = 0x1d constant B38400 (line 147) | B38400 = 0xf constant B4000000 (line 148) | B4000000 = 0x1e constant B460800 (line 149) | B460800 = 0x13 constant B4800 (line 150) | B4800 = 0xc constant B50 (line 151) | B50 = 0x1 constant B500000 (line 152) | B500000 = 0x14 constant B57600 (line 153) | B57600 = 0x10 constant B576000 (line 154) | B576000 = 0x15 constant B600 (line 155) | B600 = 0x8 constant B75 (line 156) | B75 = 0x2 constant B921600 (line 157) | B921600 = 0x16 constant B9600 (line 158) | B9600 = 0xd constant BLKBSZGET (line 159) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 160) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 161) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 162) | BLKFRAGET = 0x1265 constant BLKFRASET (line 163) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 164) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 165) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 166) | BLKRAGET = 0x1263 constant BLKRASET (line 167) | BLKRASET = 0x1262 constant BLKROGET (line 168) | BLKROGET = 0x125e constant BLKROSET (line 169) | BLKROSET = 0x125d constant BLKRRPART (line 170) | BLKRRPART = 0x125f constant BLKSECTGET (line 171) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 172) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 173) | BLKSSZGET = 0x1268 constant BOTHER (line 174) | BOTHER = 0x1f constant BPF_A (line 175) | BPF_A = 0x10 constant BPF_ABS (line 176) | BPF_ABS = 0x20 constant BPF_ADD (line 177) | BPF_ADD = 0x0 constant BPF_ALU (line 178) | BPF_ALU = 0x4 constant BPF_AND (line 179) | BPF_AND = 0x50 constant BPF_B (line 180) | BPF_B = 0x10 constant BPF_DIV (line 181) | BPF_DIV = 0x30 constant BPF_H (line 182) | BPF_H = 0x8 constant BPF_IMM (line 183) | BPF_IMM = 0x0 constant BPF_IND (line 184) | BPF_IND = 0x40 constant BPF_JA (line 185) | BPF_JA = 0x0 constant BPF_JEQ (line 186) | BPF_JEQ = 0x10 constant BPF_JGE (line 187) | BPF_JGE = 0x30 constant BPF_JGT (line 188) | BPF_JGT = 0x20 constant BPF_JMP (line 189) | BPF_JMP = 0x5 constant BPF_JSET (line 190) | BPF_JSET = 0x40 constant BPF_K (line 191) | BPF_K = 0x0 constant BPF_LD (line 192) | BPF_LD = 0x0 constant BPF_LDX (line 193) | BPF_LDX = 0x1 constant BPF_LEN (line 194) | BPF_LEN = 0x80 constant BPF_LSH (line 195) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 196) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 197) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 198) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 199) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 200) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 201) | BPF_MISC = 0x7 constant BPF_MOD (line 202) | BPF_MOD = 0x90 constant BPF_MSH (line 203) | BPF_MSH = 0xa0 constant BPF_MUL (line 204) | BPF_MUL = 0x20 constant BPF_NEG (line 205) | BPF_NEG = 0x80 constant BPF_OR (line 206) | BPF_OR = 0x40 constant BPF_RET (line 207) | BPF_RET = 0x6 constant BPF_RSH (line 208) | BPF_RSH = 0x70 constant BPF_ST (line 209) | BPF_ST = 0x2 constant BPF_STX (line 210) | BPF_STX = 0x3 constant BPF_SUB (line 211) | BPF_SUB = 0x10 constant BPF_TAX (line 212) | BPF_TAX = 0x0 constant BPF_TXA (line 213) | BPF_TXA = 0x80 constant BPF_W (line 214) | BPF_W = 0x0 constant BPF_X (line 215) | BPF_X = 0x8 constant BPF_XOR (line 216) | BPF_XOR = 0xa0 constant BRKINT (line 217) | BRKINT = 0x2 constant BS0 (line 218) | BS0 = 0x0 constant BS1 (line 219) | BS1 = 0x8000 constant BSDLY (line 220) | BSDLY = 0x8000 constant CAN_BCM (line 221) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 222) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 223) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 224) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 225) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 226) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 227) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 228) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 229) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 230) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 231) | CAN_MCNET = 0x5 constant CAN_MTU (line 232) | CAN_MTU = 0x10 constant CAN_NPROTO (line 233) | CAN_NPROTO = 0x7 constant CAN_RAW (line 234) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 235) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 236) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 237) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 238) | CAN_TP16 = 0x3 constant CAN_TP20 (line 239) | CAN_TP20 = 0x4 constant CBAUD (line 240) | CBAUD = 0xff constant CBAUDEX (line 241) | CBAUDEX = 0x0 constant CFLUSH (line 242) | CFLUSH = 0xf constant CIBAUD (line 243) | CIBAUD = 0xff0000 constant CLOCAL (line 244) | CLOCAL = 0x8000 constant CLOCK_BOOTTIME (line 245) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 246) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 247) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 248) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 249) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 250) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 251) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 252) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 253) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 254) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 255) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 256) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_THREAD_CPUTIME_ID (line 257) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 258) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 259) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 260) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 261) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 262) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 263) | CLONE_FILES = 0x400 constant CLONE_FS (line 264) | CLONE_FS = 0x200 constant CLONE_IO (line 265) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 266) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 267) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 268) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 269) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 270) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 271) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 272) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 273) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 274) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 275) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 276) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 277) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 278) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 279) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 280) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 281) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 282) | CLONE_VM = 0x100 constant CMSPAR (line 283) | CMSPAR = 0x40000000 constant CR0 (line 284) | CR0 = 0x0 constant CR1 (line 285) | CR1 = 0x1000 constant CR2 (line 286) | CR2 = 0x2000 constant CR3 (line 287) | CR3 = 0x3000 constant CRDLY (line 288) | CRDLY = 0x3000 constant CREAD (line 289) | CREAD = 0x800 constant CRTSCTS (line 290) | CRTSCTS = 0x80000000 constant CS5 (line 291) | CS5 = 0x0 constant CS6 (line 292) | CS6 = 0x100 constant CS7 (line 293) | CS7 = 0x200 constant CS8 (line 294) | CS8 = 0x300 constant CSIGNAL (line 295) | CSIGNAL = 0xff constant CSIZE (line 296) | CSIZE = 0x300 constant CSTART (line 297) | CSTART = 0x11 constant CSTATUS (line 298) | CSTATUS = 0x0 constant CSTOP (line 299) | CSTOP = 0x13 constant CSTOPB (line 300) | CSTOPB = 0x400 constant CSUSP (line 301) | CSUSP = 0x1a constant DT_BLK (line 302) | DT_BLK = 0x6 constant DT_CHR (line 303) | DT_CHR = 0x2 constant DT_DIR (line 304) | DT_DIR = 0x4 constant DT_FIFO (line 305) | DT_FIFO = 0x1 constant DT_LNK (line 306) | DT_LNK = 0xa constant DT_REG (line 307) | DT_REG = 0x8 constant DT_SOCK (line 308) | DT_SOCK = 0xc constant DT_UNKNOWN (line 309) | DT_UNKNOWN = 0x0 constant DT_WHT (line 310) | DT_WHT = 0xe constant ECHO (line 311) | ECHO = 0x8 constant ECHOCTL (line 312) | ECHOCTL = 0x40 constant ECHOE (line 313) | ECHOE = 0x2 constant ECHOK (line 314) | ECHOK = 0x4 constant ECHOKE (line 315) | ECHOKE = 0x1 constant ECHONL (line 316) | ECHONL = 0x10 constant ECHOPRT (line 317) | ECHOPRT = 0x20 constant ENCODING_DEFAULT (line 318) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 319) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 320) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 321) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 322) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 323) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 324) | EPOLLERR = 0x8 constant EPOLLET (line 325) | EPOLLET = 0x80000000 constant EPOLLHUP (line 326) | EPOLLHUP = 0x10 constant EPOLLIN (line 327) | EPOLLIN = 0x1 constant EPOLLMSG (line 328) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 329) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 330) | EPOLLOUT = 0x4 constant EPOLLPRI (line 331) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 332) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 333) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 334) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 335) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 336) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 337) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 338) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 339) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 340) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 341) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 342) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 343) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 344) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 345) | ETH_P_8021Q = 0x8100 constant ETH_P_802_2 (line 346) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 347) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 348) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 349) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 350) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 351) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 352) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 353) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 354) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 355) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 356) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 357) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 358) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 359) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 360) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 361) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 362) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 363) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 364) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 365) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 366) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 367) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 368) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 369) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 370) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 371) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 372) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 373) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 374) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 375) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 376) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 377) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 378) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 379) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 380) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 381) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 382) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 383) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 384) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 385) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 386) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 387) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 388) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 389) | ETH_P_LOOP = 0x60 constant ETH_P_MOBITEX (line 390) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 391) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 392) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 393) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 394) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 395) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 396) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 397) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 398) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 399) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 400) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 401) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 402) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 403) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 404) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 405) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 406) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 407) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 408) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 409) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 410) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 411) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 412) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 413) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 414) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 415) | ETH_P_TR_802_2 = 0x11 constant ETH_P_WAN_PPP (line 416) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 417) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 418) | ETH_P_X25 = 0x805 constant EXTA (line 419) | EXTA = 0xe constant EXTB (line 420) | EXTB = 0xf constant EXTPROC (line 421) | EXTPROC = 0x10000000 constant FALLOC_FL_COLLAPSE_RANGE (line 422) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 423) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 424) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 425) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 426) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 427) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 428) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 429) | FD_SETSIZE = 0x400 constant FF0 (line 430) | FF0 = 0x0 constant FF1 (line 431) | FF1 = 0x4000 constant FFDLY (line 432) | FFDLY = 0x4000 constant FLUSHO (line 433) | FLUSHO = 0x800000 constant F_DUPFD (line 434) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 435) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 436) | F_EXLCK = 0x4 constant F_GETFD (line 437) | F_GETFD = 0x1 constant F_GETFL (line 438) | F_GETFL = 0x3 constant F_GETLEASE (line 439) | F_GETLEASE = 0x401 constant F_GETLK (line 440) | F_GETLK = 0x5 constant F_GETLK64 (line 441) | F_GETLK64 = 0xc constant F_GETOWN (line 442) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 443) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 444) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 445) | F_GETSIG = 0xb constant F_LOCK (line 446) | F_LOCK = 0x1 constant F_NOTIFY (line 447) | F_NOTIFY = 0x402 constant F_OK (line 448) | F_OK = 0x0 constant F_RDLCK (line 449) | F_RDLCK = 0x0 constant F_SETFD (line 450) | F_SETFD = 0x2 constant F_SETFL (line 451) | F_SETFL = 0x4 constant F_SETLEASE (line 452) | F_SETLEASE = 0x400 constant F_SETLK (line 453) | F_SETLK = 0x6 constant F_SETLK64 (line 454) | F_SETLK64 = 0xd constant F_SETLKW (line 455) | F_SETLKW = 0x7 constant F_SETLKW64 (line 456) | F_SETLKW64 = 0xe constant F_SETOWN (line 457) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 458) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 459) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 460) | F_SETSIG = 0xa constant F_SHLCK (line 461) | F_SHLCK = 0x8 constant F_TEST (line 462) | F_TEST = 0x3 constant F_TLOCK (line 463) | F_TLOCK = 0x2 constant F_ULOCK (line 464) | F_ULOCK = 0x0 constant F_UNLCK (line 465) | F_UNLCK = 0x2 constant F_WRLCK (line 466) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 467) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 468) | GRND_RANDOM = 0x2 constant HUPCL (line 469) | HUPCL = 0x4000 constant IBSHIFT (line 470) | IBSHIFT = 0x10 constant ICANON (line 471) | ICANON = 0x100 constant ICMPV6_FILTER (line 472) | ICMPV6_FILTER = 0x1 constant ICRNL (line 473) | ICRNL = 0x100 constant IEXTEN (line 474) | IEXTEN = 0x400 constant IFA_F_DADFAILED (line 475) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 476) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 477) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_NODAD (line 478) | IFA_F_NODAD = 0x2 constant IFA_F_OPTIMISTIC (line 479) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 480) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 481) | IFA_F_SECONDARY = 0x1 constant IFA_F_TEMPORARY (line 482) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 483) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 484) | IFA_MAX = 0x7 constant IFF_802_1Q_VLAN (line 485) | IFF_802_1Q_VLAN = 0x1 constant IFF_ALLMULTI (line 486) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 487) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 488) | IFF_AUTOMEDIA = 0x4000 constant IFF_BONDING (line 489) | IFF_BONDING = 0x20 constant IFF_BRIDGE_PORT (line 490) | IFF_BRIDGE_PORT = 0x4000 constant IFF_BROADCAST (line 491) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 492) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 493) | IFF_DETACH_QUEUE = 0x400 constant IFF_DISABLE_NETPOLL (line 494) | IFF_DISABLE_NETPOLL = 0x1000 constant IFF_DONT_BRIDGE (line 495) | IFF_DONT_BRIDGE = 0x800 constant IFF_DORMANT (line 496) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 497) | IFF_DYNAMIC = 0x8000 constant IFF_EBRIDGE (line 498) | IFF_EBRIDGE = 0x2 constant IFF_ECHO (line 499) | IFF_ECHO = 0x40000 constant IFF_ISATAP (line 500) | IFF_ISATAP = 0x80 constant IFF_LIVE_ADDR_CHANGE (line 501) | IFF_LIVE_ADDR_CHANGE = 0x100000 constant IFF_LOOPBACK (line 502) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 503) | IFF_LOWER_UP = 0x10000 constant IFF_MACVLAN (line 504) | IFF_MACVLAN = 0x200000 constant IFF_MACVLAN_PORT (line 505) | IFF_MACVLAN_PORT = 0x2000 constant IFF_MASTER (line 506) | IFF_MASTER = 0x400 constant IFF_MASTER_8023AD (line 507) | IFF_MASTER_8023AD = 0x8 constant IFF_MASTER_ALB (line 508) | IFF_MASTER_ALB = 0x10 constant IFF_MASTER_ARPMON (line 509) | IFF_MASTER_ARPMON = 0x100 constant IFF_MULTICAST (line 510) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 511) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 512) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 513) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 514) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 515) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 516) | IFF_ONE_QUEUE = 0x2000 constant IFF_OVS_DATAPATH (line 517) | IFF_OVS_DATAPATH = 0x8000 constant IFF_PERSIST (line 518) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 519) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 520) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 521) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 522) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 523) | IFF_SLAVE = 0x800 constant IFF_SLAVE_INACTIVE (line 524) | IFF_SLAVE_INACTIVE = 0x4 constant IFF_SLAVE_NEEDARP (line 525) | IFF_SLAVE_NEEDARP = 0x40 constant IFF_SUPP_NOFCS (line 526) | IFF_SUPP_NOFCS = 0x80000 constant IFF_TAP (line 527) | IFF_TAP = 0x2 constant IFF_TEAM_PORT (line 528) | IFF_TEAM_PORT = 0x40000 constant IFF_TUN (line 529) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 530) | IFF_TUN_EXCL = 0x8000 constant IFF_TX_SKB_SHARING (line 531) | IFF_TX_SKB_SHARING = 0x10000 constant IFF_UNICAST_FLT (line 532) | IFF_UNICAST_FLT = 0x20000 constant IFF_UP (line 533) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 534) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 535) | IFF_VOLATILE = 0x70c5a constant IFF_WAN_HDLC (line 536) | IFF_WAN_HDLC = 0x200 constant IFF_XMIT_DST_RELEASE (line 537) | IFF_XMIT_DST_RELEASE = 0x400 constant IFNAMSIZ (line 538) | IFNAMSIZ = 0x10 constant IGNBRK (line 539) | IGNBRK = 0x1 constant IGNCR (line 540) | IGNCR = 0x80 constant IGNPAR (line 541) | IGNPAR = 0x4 constant IMAXBEL (line 542) | IMAXBEL = 0x2000 constant INLCR (line 543) | INLCR = 0x40 constant INPCK (line 544) | INPCK = 0x10 constant IN_ACCESS (line 545) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 546) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 547) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 548) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 549) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 550) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 551) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 552) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 553) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 554) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 555) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 556) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 557) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 558) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 559) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 560) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 561) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 562) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 563) | IN_CREATE = 0x100 constant IN_DELETE (line 564) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 565) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 566) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 567) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 568) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 569) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 570) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 571) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 572) | IN_MODIFY = 0x2 constant IN_MOVE (line 573) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 574) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 575) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 576) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 577) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 578) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 579) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 580) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 581) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 582) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 583) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 584) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 585) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 586) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 587) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 588) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 589) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 590) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 591) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 592) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 593) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 594) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 595) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 596) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 597) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 598) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 599) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 600) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 601) | IPPROTO_MH = 0x87 constant IPPROTO_MTP (line 602) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 603) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 604) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 605) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 606) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 607) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 608) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 609) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 610) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 611) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 612) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 613) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 614) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 615) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 616) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 617) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 618) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 619) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 620) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 621) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 622) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 623) | IPV6_CHECKSUM = 0x7 constant IPV6_DROP_MEMBERSHIP (line 624) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 625) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 626) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 627) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 628) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 629) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 630) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 631) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 632) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 633) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 634) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 635) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 636) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 637) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 638) | IPV6_NEXTHOP = 0x9 constant IPV6_PKTINFO (line 639) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 640) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 641) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_PROBE (line 642) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 643) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 644) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 645) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 646) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 647) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPKTINFO (line 648) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 649) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 650) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 651) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 652) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 653) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 654) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 655) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 656) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 657) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 658) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 659) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 660) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 661) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 662) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 663) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 664) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BLOCK_SOURCE (line 665) | IP_BLOCK_SOURCE = 0x26 constant IP_DEFAULT_MULTICAST_LOOP (line 666) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 667) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 668) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 669) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 670) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 671) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 672) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 673) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 674) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 675) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 676) | IP_MF = 0x2000 constant IP_MINTTL (line 677) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 678) | IP_MSFILTER = 0x29 constant IP_MSS (line 679) | IP_MSS = 0x240 constant IP_MTU (line 680) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 681) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 682) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 683) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 684) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 685) | IP_MULTICAST_TTL = 0x21 constant IP_OFFMASK (line 686) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 687) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 688) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 689) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 690) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 691) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 692) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 693) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 694) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_PROBE (line 695) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 696) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 697) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 698) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 699) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 700) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 701) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 702) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 703) | IP_RETOPTS = 0x7 constant IP_RF (line 704) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 705) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 706) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 707) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 708) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 709) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 710) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 711) | IP_XFRM_POLICY = 0x11 constant ISIG (line 712) | ISIG = 0x80 constant ISTRIP (line 713) | ISTRIP = 0x20 constant IUCLC (line 714) | IUCLC = 0x1000 constant IUTF8 (line 715) | IUTF8 = 0x4000 constant IXANY (line 716) | IXANY = 0x800 constant IXOFF (line 717) | IXOFF = 0x400 constant IXON (line 718) | IXON = 0x200 constant LINUX_REBOOT_CMD_CAD_OFF (line 719) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 720) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 721) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 722) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 723) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 724) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 725) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 726) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 727) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 728) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 729) | LOCK_EX = 0x2 constant LOCK_NB (line 730) | LOCK_NB = 0x4 constant LOCK_SH (line 731) | LOCK_SH = 0x1 constant LOCK_UN (line 732) | LOCK_UN = 0x8 constant MADV_DODUMP (line 733) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 734) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 735) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 736) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 737) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 738) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 739) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 740) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 741) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 742) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 743) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 744) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 745) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 746) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 747) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 748) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 749) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 750) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 751) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 752) | MAP_FILE = 0x0 constant MAP_FIXED (line 753) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 754) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 755) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 756) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 757) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 758) | MAP_LOCKED = 0x80 constant MAP_NONBLOCK (line 759) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 760) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 761) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 762) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 763) | MAP_SHARED = 0x1 constant MAP_STACK (line 764) | MAP_STACK = 0x20000 constant MAP_TYPE (line 765) | MAP_TYPE = 0xf constant MCL_CURRENT (line 766) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 767) | MCL_FUTURE = 0x4000 constant MNT_DETACH (line 768) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 769) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 770) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 771) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 772) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 773) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 774) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 775) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 776) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 777) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 778) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 779) | MSG_FIN = 0x200 constant MSG_MORE (line 780) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 781) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 782) | MSG_OOB = 0x1 constant MSG_PEEK (line 783) | MSG_PEEK = 0x2 constant MSG_PROXY (line 784) | MSG_PROXY = 0x10 constant MSG_RST (line 785) | MSG_RST = 0x1000 constant MSG_SYN (line 786) | MSG_SYN = 0x400 constant MSG_TRUNC (line 787) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 788) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 789) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 790) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 791) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 792) | MS_ASYNC = 0x1 constant MS_BIND (line 793) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 794) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 795) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 796) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 797) | MS_KERNMOUNT = 0x400000 constant MS_MANDLOCK (line 798) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 799) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 800) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 801) | MS_MOVE = 0x2000 constant MS_NOATIME (line 802) | MS_NOATIME = 0x400 constant MS_NODEV (line 803) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 804) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 805) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 806) | MS_NOSUID = 0x2 constant MS_NOUSER (line 807) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 808) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 809) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 810) | MS_RDONLY = 0x1 constant MS_REC (line 811) | MS_REC = 0x4000 constant MS_RELATIME (line 812) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 813) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 814) | MS_RMT_MASK = 0x800051 constant MS_SHARED (line 815) | MS_SHARED = 0x100000 constant MS_SILENT (line 816) | MS_SILENT = 0x8000 constant MS_SLAVE (line 817) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 818) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 819) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 820) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 821) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 822) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 823) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 824) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 825) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CONNECTOR (line 826) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 827) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 828) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 829) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 830) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 831) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 832) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 833) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 834) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 835) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 836) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 837) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_NETFILTER (line 838) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 839) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 840) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 841) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 842) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 843) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 844) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 845) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 846) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 847) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 848) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 849) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 850) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 851) | NETLINK_XFRM = 0x6 constant NL0 (line 852) | NL0 = 0x0 constant NL1 (line 853) | NL1 = 0x100 constant NL2 (line 854) | NL2 = 0x200 constant NL3 (line 855) | NL3 = 0x300 constant NLA_ALIGNTO (line 856) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 857) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 858) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 859) | NLA_HDRLEN = 0x4 constant NLDLY (line 860) | NLDLY = 0x300 constant NLMSG_ALIGNTO (line 861) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 862) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 863) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 864) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 865) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 866) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 867) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 868) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 869) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 870) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 871) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 872) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 873) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 874) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 875) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 876) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 877) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 878) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 879) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 880) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 881) | NLM_F_ROOT = 0x100 constant NOFLSH (line 882) | NOFLSH = 0x80000000 constant OCRNL (line 883) | OCRNL = 0x8 constant OFDEL (line 884) | OFDEL = 0x80 constant OFILL (line 885) | OFILL = 0x40 constant OLCUC (line 886) | OLCUC = 0x4 constant ONLCR (line 887) | ONLCR = 0x2 constant ONLRET (line 888) | ONLRET = 0x20 constant ONOCR (line 889) | ONOCR = 0x10 constant OPOST (line 890) | OPOST = 0x1 constant O_ACCMODE (line 891) | O_ACCMODE = 0x3 constant O_APPEND (line 892) | O_APPEND = 0x400 constant O_ASYNC (line 893) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 894) | O_CLOEXEC = 0x80000 constant O_CREAT (line 895) | O_CREAT = 0x40 constant O_DIRECT (line 896) | O_DIRECT = 0x20000 constant O_DIRECTORY (line 897) | O_DIRECTORY = 0x4000 constant O_DSYNC (line 898) | O_DSYNC = 0x1000 constant O_EXCL (line 899) | O_EXCL = 0x80 constant O_FSYNC (line 900) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 901) | O_LARGEFILE = 0x0 constant O_NDELAY (line 902) | O_NDELAY = 0x800 constant O_NOATIME (line 903) | O_NOATIME = 0x40000 constant O_NOCTTY (line 904) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 905) | O_NOFOLLOW = 0x8000 constant O_NONBLOCK (line 906) | O_NONBLOCK = 0x800 constant O_PATH (line 907) | O_PATH = 0x200000 constant O_RDONLY (line 908) | O_RDONLY = 0x0 constant O_RDWR (line 909) | O_RDWR = 0x2 constant O_RSYNC (line 910) | O_RSYNC = 0x101000 constant O_SYNC (line 911) | O_SYNC = 0x101000 constant O_TMPFILE (line 912) | O_TMPFILE = 0x410000 constant O_TRUNC (line 913) | O_TRUNC = 0x200 constant O_WRONLY (line 914) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 915) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 916) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 917) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 918) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 919) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 920) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CPU (line 921) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_FLAG_DEFRAG (line 922) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 923) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 924) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 925) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_RND (line 926) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 927) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 928) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 929) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 930) | PACKET_HOST = 0x0 constant PACKET_LOOPBACK (line 931) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 932) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 933) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 934) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 935) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 936) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 937) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 938) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 939) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 940) | PACKET_OUTGOING = 0x4 constant PACKET_RECV_OUTPUT (line 941) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 942) | PACKET_RESERVE = 0xc constant PACKET_RX_RING (line 943) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 944) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 945) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 946) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 947) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 948) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_VERSION (line 949) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 950) | PACKET_VNET_HDR = 0xf constant PARENB (line 951) | PARENB = 0x1000 constant PARITY_CRC16_PR0 (line 952) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 953) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 954) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 955) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 956) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 957) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 958) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 959) | PARITY_NONE = 0x1 constant PARMRK (line 960) | PARMRK = 0x8 constant PARODD (line 961) | PARODD = 0x2000 constant PENDIN (line 962) | PENDIN = 0x20000000 constant PRIO_PGRP (line 963) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 964) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 965) | PRIO_USER = 0x2 constant PROT_EXEC (line 966) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 967) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 968) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 969) | PROT_NONE = 0x0 constant PROT_READ (line 970) | PROT_READ = 0x1 constant PROT_SAO (line 971) | PROT_SAO = 0x10 constant PROT_WRITE (line 972) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 973) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 974) | PR_CAPBSET_READ = 0x17 constant PR_ENDIAN_BIG (line 975) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 976) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 977) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 978) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 979) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 980) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 981) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 982) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 983) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 984) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 985) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 986) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 987) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 988) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 989) | PR_FP_EXC_UND = 0x40000 constant PR_GET_CHILD_SUBREAPER (line 990) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 991) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 992) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 993) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 994) | PR_GET_FPEXC = 0xb constant PR_GET_KEEPCAPS (line 995) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 996) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 997) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 998) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 999) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1000) | PR_GET_SECUREBITS = 0x1b constant PR_GET_TID_ADDRESS (line 1001) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1002) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1003) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1004) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1005) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1006) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1007) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1008) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1009) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1010) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1011) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1012) | PR_MCE_KILL_SET = 0x1 constant PR_SET_CHILD_SUBREAPER (line 1013) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1014) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1015) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1016) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1017) | PR_SET_FPEXC = 0xc constant PR_SET_KEEPCAPS (line 1018) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1019) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1020) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1021) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1022) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1023) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1024) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1025) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1026) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1027) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1028) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_START_BRK (line 1029) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1030) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1031) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1032) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1033) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1034) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1035) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1036) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1037) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1038) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1039) | PR_SET_SECUREBITS = 0x1c constant PR_SET_TIMERSLACK (line 1040) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1041) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1042) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1043) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1044) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1045) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1046) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1047) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1048) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1049) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1050) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1051) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1052) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1053) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1054) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1055) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1056) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1057) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1058) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1059) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1060) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1061) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1062) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1063) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETEVRREGS (line 1064) | PTRACE_GETEVRREGS = 0x14 constant PTRACE_GETFPREGS (line 1065) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETREGS (line 1066) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGS64 (line 1067) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETREGSET (line 1068) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1069) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1070) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GETVRREGS (line 1071) | PTRACE_GETVRREGS = 0x12 constant PTRACE_GETVSRREGS (line 1072) | PTRACE_GETVSRREGS = 0x1b constant PTRACE_GET_DEBUGREG (line 1073) | PTRACE_GET_DEBUGREG = 0x19 constant PTRACE_INTERRUPT (line 1074) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1075) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1076) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1077) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1078) | PTRACE_O_MASK = 0x1000ff constant PTRACE_O_TRACECLONE (line 1079) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1080) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1081) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1082) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1083) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1084) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1085) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1086) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1087) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1088) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1089) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1090) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1091) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1092) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1093) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1094) | PTRACE_POKEUSR = 0x6 constant PTRACE_SEIZE (line 1095) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETEVRREGS (line 1096) | PTRACE_SETEVRREGS = 0x15 constant PTRACE_SETFPREGS (line 1097) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETOPTIONS (line 1098) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1099) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGS64 (line 1100) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETREGSET (line 1101) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1102) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1103) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SETVRREGS (line 1104) | PTRACE_SETVRREGS = 0x13 constant PTRACE_SETVSRREGS (line 1105) | PTRACE_SETVSRREGS = 0x1c constant PTRACE_SET_DEBUGREG (line 1106) | PTRACE_SET_DEBUGREG = 0x1a constant PTRACE_SINGLEBLOCK (line 1107) | PTRACE_SINGLEBLOCK = 0x100 constant PTRACE_SINGLESTEP (line 1108) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1109) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1110) | PTRACE_TRACEME = 0x0 constant PT_CCR (line 1111) | PT_CCR = 0x26 constant PT_CTR (line 1112) | PT_CTR = 0x23 constant PT_DAR (line 1113) | PT_DAR = 0x29 constant PT_DSCR (line 1114) | PT_DSCR = 0x2c constant PT_DSISR (line 1115) | PT_DSISR = 0x2a constant PT_FPR0 (line 1116) | PT_FPR0 = 0x30 constant PT_FPSCR (line 1117) | PT_FPSCR = 0x50 constant PT_LNK (line 1118) | PT_LNK = 0x24 constant PT_MSR (line 1119) | PT_MSR = 0x21 constant PT_NIP (line 1120) | PT_NIP = 0x20 constant PT_ORIG_R3 (line 1121) | PT_ORIG_R3 = 0x22 constant PT_R0 (line 1122) | PT_R0 = 0x0 constant PT_R1 (line 1123) | PT_R1 = 0x1 constant PT_R10 (line 1124) | PT_R10 = 0xa constant PT_R11 (line 1125) | PT_R11 = 0xb constant PT_R12 (line 1126) | PT_R12 = 0xc constant PT_R13 (line 1127) | PT_R13 = 0xd constant PT_R14 (line 1128) | PT_R14 = 0xe constant PT_R15 (line 1129) | PT_R15 = 0xf constant PT_R16 (line 1130) | PT_R16 = 0x10 constant PT_R17 (line 1131) | PT_R17 = 0x11 constant PT_R18 (line 1132) | PT_R18 = 0x12 constant PT_R19 (line 1133) | PT_R19 = 0x13 constant PT_R2 (line 1134) | PT_R2 = 0x2 constant PT_R20 (line 1135) | PT_R20 = 0x14 constant PT_R21 (line 1136) | PT_R21 = 0x15 constant PT_R22 (line 1137) | PT_R22 = 0x16 constant PT_R23 (line 1138) | PT_R23 = 0x17 constant PT_R24 (line 1139) | PT_R24 = 0x18 constant PT_R25 (line 1140) | PT_R25 = 0x19 constant PT_R26 (line 1141) | PT_R26 = 0x1a constant PT_R27 (line 1142) | PT_R27 = 0x1b constant PT_R28 (line 1143) | PT_R28 = 0x1c constant PT_R29 (line 1144) | PT_R29 = 0x1d constant PT_R3 (line 1145) | PT_R3 = 0x3 constant PT_R30 (line 1146) | PT_R30 = 0x1e constant PT_R31 (line 1147) | PT_R31 = 0x1f constant PT_R4 (line 1148) | PT_R4 = 0x4 constant PT_R5 (line 1149) | PT_R5 = 0x5 constant PT_R6 (line 1150) | PT_R6 = 0x6 constant PT_R7 (line 1151) | PT_R7 = 0x7 constant PT_R8 (line 1152) | PT_R8 = 0x8 constant PT_R9 (line 1153) | PT_R9 = 0x9 constant PT_REGS_COUNT (line 1154) | PT_REGS_COUNT = 0x2c constant PT_RESULT (line 1155) | PT_RESULT = 0x2b constant PT_SOFTE (line 1156) | PT_SOFTE = 0x27 constant PT_TRAP (line 1157) | PT_TRAP = 0x28 constant PT_VR0 (line 1158) | PT_VR0 = 0x52 constant PT_VRSAVE (line 1159) | PT_VRSAVE = 0x94 constant PT_VSCR (line 1160) | PT_VSCR = 0x93 constant PT_VSR0 (line 1161) | PT_VSR0 = 0x96 constant PT_VSR31 (line 1162) | PT_VSR31 = 0xd4 constant PT_XER (line 1163) | PT_XER = 0x25 constant RLIMIT_AS (line 1164) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1165) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1166) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1167) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1168) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1169) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 1170) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1171) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1172) | RTAX_ADVMSS = 0x8 constant RTAX_CWND (line 1173) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1174) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1175) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1176) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_SACK (line 1177) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1178) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1179) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1180) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1181) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1182) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1183) | RTAX_MAX = 0xf constant RTAX_MTU (line 1184) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1185) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1186) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1187) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1188) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1189) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1190) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1191) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1192) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1193) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1194) | RTA_MAX = 0x11 constant RTCF_DIRECTSRC (line 1195) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1196) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1197) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1198) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1199) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1200) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1201) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1202) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1203) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1204) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1205) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1206) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1207) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1208) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1209) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1210) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1211) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1212) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1213) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1214) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1215) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1216) | RTF_MSS = 0x40 constant RTF_MTU (line 1217) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1218) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1219) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1220) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1221) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1222) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1223) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1224) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1225) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1226) | RTF_STATIC = 0x400 constant RTF_THROW (line 1227) | RTF_THROW = 0x2000 constant RTF_UP (line 1228) | RTF_UP = 0x1 constant RTF_WINDOW (line 1229) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1230) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1231) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1232) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1233) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1234) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1235) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1236) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1237) | RTM_DELNEIGH = 0x1d constant RTM_DELQDISC (line 1238) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1239) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1240) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1241) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1242) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1243) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1244) | RTM_F_EQUALIZE = 0x400 constant RTM_F_NOTIFY (line 1245) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1246) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1247) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1248) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1249) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1250) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1251) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1252) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1253) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1254) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1255) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1256) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1257) | RTM_GETNETCONF = 0x52 constant RTM_GETQDISC (line 1258) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1259) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1260) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1261) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1262) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1263) | RTM_MAX = 0x57 constant RTM_NEWACTION (line 1264) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1265) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1266) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1267) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1268) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1269) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1270) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1271) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1272) | RTM_NEWNETCONF = 0x50 constant RTM_NEWPREFIX (line 1273) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1274) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1275) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1276) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1277) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1278) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1279) | RTM_NR_FAMILIES = 0x12 constant RTM_NR_MSGTYPES (line 1280) | RTM_NR_MSGTYPES = 0x48 constant RTM_SETDCB (line 1281) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1282) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1283) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1284) | RTNH_ALIGNTO = 0x4 constant RTNH_F_DEAD (line 1285) | RTNH_F_DEAD = 0x1 constant RTNH_F_ONLINK (line 1286) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1287) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1288) | RTN_MAX = 0xb constant RTPROT_BIRD (line 1289) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1290) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1291) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1292) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1293) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1294) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1295) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1296) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1297) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1298) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1299) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1300) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1301) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1302) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1303) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1304) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1305) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1306) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1307) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1308) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1309) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1310) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1311) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1312) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1313) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1314) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1315) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1316) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1317) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1318) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1319) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1320) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1321) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1322) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1323) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1324) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1325) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1326) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1327) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1328) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1329) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1330) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1331) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1332) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1333) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1334) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1335) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1336) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1337) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1338) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1339) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1340) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1341) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1342) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1343) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1344) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1345) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1346) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1347) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1348) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1349) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1350) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1351) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1352) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1353) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1354) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1355) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1356) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1357) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1358) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1359) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1360) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1361) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1362) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1363) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1364) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1365) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1366) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1367) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1368) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1369) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1370) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1371) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1372) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1373) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1374) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1375) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1376) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1377) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1378) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1379) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1380) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1381) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1382) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1383) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1384) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1385) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1386) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1387) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1388) | SOL_AAL = 0x109 constant SOL_ATM (line 1389) | SOL_ATM = 0x108 constant SOL_DECNET (line 1390) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1391) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1392) | SOL_IP = 0x0 constant SOL_IPV6 (line 1393) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1394) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1395) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1396) | SOL_PACKET = 0x107 constant SOL_RAW (line 1397) | SOL_RAW = 0xff constant SOL_SOCKET (line 1398) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1399) | SOL_TCP = 0x6 constant SOL_X25 (line 1400) | SOL_X25 = 0x106 constant SOMAXCONN (line 1401) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1402) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_FILTER (line 1403) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1404) | SO_BINDTODEVICE = 0x19 constant SO_BROADCAST (line 1405) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1406) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1407) | SO_BUSY_POLL = 0x2e constant SO_DEBUG (line 1408) | SO_DEBUG = 0x1 constant SO_DETACH_FILTER (line 1409) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1410) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1411) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1412) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1413) | SO_GET_FILTER = 0x1a constant SO_KEEPALIVE (line 1414) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1415) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1416) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1417) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1418) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1419) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1420) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1421) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1422) | SO_PASSCRED = 0x14 constant SO_PASSSEC (line 1423) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1424) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1425) | SO_PEERCRED = 0x15 constant SO_PEERNAME (line 1426) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1427) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1428) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1429) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1430) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1431) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1432) | SO_RCVLOWAT = 0x10 constant SO_RCVTIMEO (line 1433) | SO_RCVTIMEO = 0x12 constant SO_REUSEADDR (line 1434) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1435) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1436) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1437) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1438) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1439) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1440) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1441) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1442) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1443) | SO_SNDLOWAT = 0x11 constant SO_SNDTIMEO (line 1444) | SO_SNDTIMEO = 0x13 constant SO_TIMESTAMP (line 1445) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1446) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1447) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1448) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1449) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1450) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1451) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1452) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1453) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1454) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1455) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1456) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1457) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1458) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1459) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1460) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1461) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1462) | S_IEXEC = 0x40 constant S_IFBLK (line 1463) | S_IFBLK = 0x6000 constant S_IFCHR (line 1464) | S_IFCHR = 0x2000 constant S_IFDIR (line 1465) | S_IFDIR = 0x4000 constant S_IFIFO (line 1466) | S_IFIFO = 0x1000 constant S_IFLNK (line 1467) | S_IFLNK = 0xa000 constant S_IFMT (line 1468) | S_IFMT = 0xf000 constant S_IFREG (line 1469) | S_IFREG = 0x8000 constant S_IFSOCK (line 1470) | S_IFSOCK = 0xc000 constant S_IREAD (line 1471) | S_IREAD = 0x100 constant S_IRGRP (line 1472) | S_IRGRP = 0x20 constant S_IROTH (line 1473) | S_IROTH = 0x4 constant S_IRUSR (line 1474) | S_IRUSR = 0x100 constant S_IRWXG (line 1475) | S_IRWXG = 0x38 constant S_IRWXO (line 1476) | S_IRWXO = 0x7 constant S_IRWXU (line 1477) | S_IRWXU = 0x1c0 constant S_ISGID (line 1478) | S_ISGID = 0x400 constant S_ISUID (line 1479) | S_ISUID = 0x800 constant S_ISVTX (line 1480) | S_ISVTX = 0x200 constant S_IWGRP (line 1481) | S_IWGRP = 0x10 constant S_IWOTH (line 1482) | S_IWOTH = 0x2 constant S_IWRITE (line 1483) | S_IWRITE = 0x80 constant S_IWUSR (line 1484) | S_IWUSR = 0x80 constant S_IXGRP (line 1485) | S_IXGRP = 0x8 constant S_IXOTH (line 1486) | S_IXOTH = 0x1 constant S_IXUSR (line 1487) | S_IXUSR = 0x40 constant TAB0 (line 1488) | TAB0 = 0x0 constant TAB1 (line 1489) | TAB1 = 0x400 constant TAB2 (line 1490) | TAB2 = 0x800 constant TAB3 (line 1491) | TAB3 = 0xc00 constant TABDLY (line 1492) | TABDLY = 0xc00 constant TCFLSH (line 1493) | TCFLSH = 0x2000741f constant TCGETA (line 1494) | TCGETA = 0x40147417 constant TCGETS (line 1495) | TCGETS = 0x402c7413 constant TCIFLUSH (line 1496) | TCIFLUSH = 0x0 constant TCIOFF (line 1497) | TCIOFF = 0x2 constant TCIOFLUSH (line 1498) | TCIOFLUSH = 0x2 constant TCION (line 1499) | TCION = 0x3 constant TCOFLUSH (line 1500) | TCOFLUSH = 0x1 constant TCOOFF (line 1501) | TCOOFF = 0x0 constant TCOON (line 1502) | TCOON = 0x1 constant TCP_CONGESTION (line 1503) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1504) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1505) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1506) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1507) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1508) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1509) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1510) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1511) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1512) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1513) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1514) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1515) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1516) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1517) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1518) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1519) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1520) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1521) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1522) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1523) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1524) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1525) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1526) | TCP_NODELAY = 0x1 constant TCP_QUEUE_SEQ (line 1527) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1528) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1529) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1530) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1531) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SYNCNT (line 1532) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1533) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1534) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1535) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1536) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1537) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1538) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1539) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1540) | TCSAFLUSH = 0x2 constant TCSBRK (line 1541) | TCSBRK = 0x2000741d constant TCSBRKP (line 1542) | TCSBRKP = 0x5425 constant TCSETA (line 1543) | TCSETA = 0x80147418 constant TCSETAF (line 1544) | TCSETAF = 0x8014741c constant TCSETAW (line 1545) | TCSETAW = 0x80147419 constant TCSETS (line 1546) | TCSETS = 0x802c7414 constant TCSETSF (line 1547) | TCSETSF = 0x802c7416 constant TCSETSW (line 1548) | TCSETSW = 0x802c7415 constant TCXONC (line 1549) | TCXONC = 0x2000741e constant TIOCCBRK (line 1550) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1551) | TIOCCONS = 0x541d constant TIOCEXCL (line 1552) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1553) | TIOCGDEV = 0x40045432 constant TIOCGETC (line 1554) | TIOCGETC = 0x40067412 constant TIOCGETD (line 1555) | TIOCGETD = 0x5424 constant TIOCGETP (line 1556) | TIOCGETP = 0x40067408 constant TIOCGEXCL (line 1557) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1558) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1559) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGLTC (line 1560) | TIOCGLTC = 0x40067474 constant TIOCGPGRP (line 1561) | TIOCGPGRP = 0x40047477 constant TIOCGPKT (line 1562) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1563) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1564) | TIOCGPTN = 0x40045430 constant TIOCGRS485 (line 1565) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1566) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1567) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1568) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1569) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1570) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 1571) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1572) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1573) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1574) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1575) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1576) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1577) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1578) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1579) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1580) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1581) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1582) | TIOCM_LE = 0x1 constant TIOCM_LOOP (line 1583) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 1584) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 1585) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 1586) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1587) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1588) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1589) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1590) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1591) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1592) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1593) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1594) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1595) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1596) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1597) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1598) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1599) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1600) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1601) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1602) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1603) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1604) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1605) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1606) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1607) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1608) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1609) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1610) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1611) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1612) | TIOCSER_TEMT = 0x1 constant TIOCSETC (line 1613) | TIOCSETC = 0x80067411 constant TIOCSETD (line 1614) | TIOCSETD = 0x5423 constant TIOCSETN (line 1615) | TIOCSETN = 0x8006740a constant TIOCSETP (line 1616) | TIOCSETP = 0x80067409 constant TIOCSIG (line 1617) | TIOCSIG = 0x80045436 constant TIOCSLCKTRMIOS (line 1618) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSLTC (line 1619) | TIOCSLTC = 0x80067475 constant TIOCSPGRP (line 1620) | TIOCSPGRP = 0x80047476 constant TIOCSPTLCK (line 1621) | TIOCSPTLCK = 0x80045431 constant TIOCSRS485 (line 1622) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1623) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1624) | TIOCSSOFTCAR = 0x541a constant TIOCSTART (line 1625) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1626) | TIOCSTI = 0x5412 constant TIOCSTOP (line 1627) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1628) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1629) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1630) | TOSTOP = 0x400000 constant TUNATTACHFILTER (line 1631) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1632) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1633) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1634) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1635) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1636) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETHDRSZ (line 1637) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNSETDEBUG (line 1638) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1639) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1640) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1641) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1642) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1643) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1644) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1645) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1646) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1647) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1648) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1649) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETHDRSZ (line 1650) | TUNSETVNETHDRSZ = 0x800454d8 constant VDISCARD (line 1651) | VDISCARD = 0x10 constant VEOF (line 1652) | VEOF = 0x4 constant VEOL (line 1653) | VEOL = 0x6 constant VEOL2 (line 1654) | VEOL2 = 0x8 constant VERASE (line 1655) | VERASE = 0x2 constant VINTR (line 1656) | VINTR = 0x0 constant VKILL (line 1657) | VKILL = 0x3 constant VLNEXT (line 1658) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1659) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1660) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1661) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1662) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1663) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1664) | VMIN = 0x5 constant VQUIT (line 1665) | VQUIT = 0x1 constant VREPRINT (line 1666) | VREPRINT = 0xb constant VSTART (line 1667) | VSTART = 0xd constant VSTOP (line 1668) | VSTOP = 0xe constant VSUSP (line 1669) | VSUSP = 0xc constant VSWTC (line 1670) | VSWTC = 0x9 constant VT0 (line 1671) | VT0 = 0x0 constant VT1 (line 1672) | VT1 = 0x10000 constant VTDLY (line 1673) | VTDLY = 0x10000 constant VTIME (line 1674) | VTIME = 0x7 constant VWERASE (line 1675) | VWERASE = 0xa constant WALL (line 1676) | WALL = 0x40000000 constant WCLONE (line 1677) | WCLONE = 0x80000000 constant WCONTINUED (line 1678) | WCONTINUED = 0x8 constant WEXITED (line 1679) | WEXITED = 0x4 constant WNOHANG (line 1680) | WNOHANG = 0x1 constant WNOTHREAD (line 1681) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1682) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1683) | WORDSIZE = 0x40 constant WSTOPPED (line 1684) | WSTOPPED = 0x2 constant WUNTRACED (line 1685) | WUNTRACED = 0x2 constant XCASE (line 1686) | XCASE = 0x4000 constant XTABS (line 1687) | XTABS = 0xc00 constant E2BIG (line 1692) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1693) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1694) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1695) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1696) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1697) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1698) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1699) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1700) | EBADE = syscall.Errno(0x34) constant EBADF (line 1701) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1702) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1703) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1704) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1705) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1706) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1707) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1708) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1709) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1710) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1711) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1712) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1713) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1714) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1715) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1716) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1717) | EDEADLOCK = syscall.Errno(0x3a) constant EDESTADDRREQ (line 1718) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1719) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1720) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1721) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1722) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1723) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1724) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1725) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1726) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1727) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1728) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1729) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1730) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1731) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1732) | EINVAL = syscall.Errno(0x16) constant EIO (line 1733) | EIO = syscall.Errno(0x5) constant EISCONN (line 1734) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1735) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1736) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1737) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1738) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1739) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1740) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1741) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1742) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1743) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1744) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1745) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1746) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1747) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1748) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1749) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1750) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1751) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1752) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1753) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1754) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1755) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1756) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1757) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1758) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1759) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1760) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1761) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1762) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1763) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1764) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1765) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1766) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1767) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1768) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1769) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1770) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1771) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1772) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1773) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1774) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1775) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1776) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1777) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1778) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1779) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1780) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1781) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1782) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1783) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1784) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1785) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1786) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1787) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1788) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1789) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1790) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1791) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1792) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1793) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1794) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1795) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1796) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1797) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1798) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1799) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1800) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1801) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1802) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1803) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1804) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1805) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1806) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1807) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1808) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1809) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1810) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1811) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1812) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1813) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1814) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1815) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1816) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1817) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1818) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1819) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1820) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1821) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1822) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1823) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1824) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1825) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1830) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1831) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1832) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1833) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1834) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1835) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1836) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1837) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1838) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1839) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1840) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1841) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1842) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1843) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1844) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1845) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1846) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1847) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1848) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1849) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1850) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1851) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1852) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1853) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1854) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1855) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1856) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1857) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1858) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1859) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1860) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1861) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1862) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1863) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1864) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KEY (line 35) | AF_KEY = 0xf constant AF_LLC (line 36) | AF_LLC = 0x1a constant AF_LOCAL (line 37) | AF_LOCAL = 0x1 constant AF_MAX (line 38) | AF_MAX = 0x29 constant AF_MPLS (line 39) | AF_MPLS = 0x1c constant AF_NETBEUI (line 40) | AF_NETBEUI = 0xd constant AF_NETLINK (line 41) | AF_NETLINK = 0x10 constant AF_NETROM (line 42) | AF_NETROM = 0x6 constant AF_NFC (line 43) | AF_NFC = 0x27 constant AF_PACKET (line 44) | AF_PACKET = 0x11 constant AF_PHONET (line 45) | AF_PHONET = 0x23 constant AF_PPPOX (line 46) | AF_PPPOX = 0x18 constant AF_RDS (line 47) | AF_RDS = 0x15 constant AF_ROSE (line 48) | AF_ROSE = 0xb constant AF_ROUTE (line 49) | AF_ROUTE = 0x10 constant AF_RXRPC (line 50) | AF_RXRPC = 0x21 constant AF_SECURITY (line 51) | AF_SECURITY = 0xe constant AF_SNA (line 52) | AF_SNA = 0x16 constant AF_TIPC (line 53) | AF_TIPC = 0x1e constant AF_UNIX (line 54) | AF_UNIX = 0x1 constant AF_UNSPEC (line 55) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 56) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 57) | AF_WANPIPE = 0x19 constant AF_X25 (line 58) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 59) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 60) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 61) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 62) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 63) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 64) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 65) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 66) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 67) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 68) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 69) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 70) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 71) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 72) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 73) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 74) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 75) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 76) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 77) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 78) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 79) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 80) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 81) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 82) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 83) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 84) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 85) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 86) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 87) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 88) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 89) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 90) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 91) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 92) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 93) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 94) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 95) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 96) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 97) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 98) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 99) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 100) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 101) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 102) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 103) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 104) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 105) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 106) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 107) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 108) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 109) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 110) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 111) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 112) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 113) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 114) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 115) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 116) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 117) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 118) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 119) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 120) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 121) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 122) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 123) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 124) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 125) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 126) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 127) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 128) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 129) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 130) | ARPHRD_X25 = 0x10f constant B0 (line 131) | B0 = 0x0 constant B1000000 (line 132) | B1000000 = 0x1008 constant B110 (line 133) | B110 = 0x3 constant B115200 (line 134) | B115200 = 0x1002 constant B1152000 (line 135) | B1152000 = 0x1009 constant B1200 (line 136) | B1200 = 0x9 constant B134 (line 137) | B134 = 0x4 constant B150 (line 138) | B150 = 0x5 constant B1500000 (line 139) | B1500000 = 0x100a constant B1800 (line 140) | B1800 = 0xa constant B19200 (line 141) | B19200 = 0xe constant B200 (line 142) | B200 = 0x6 constant B2000000 (line 143) | B2000000 = 0x100b constant B230400 (line 144) | B230400 = 0x1003 constant B2400 (line 145) | B2400 = 0xb constant B2500000 (line 146) | B2500000 = 0x100c constant B300 (line 147) | B300 = 0x7 constant B3000000 (line 148) | B3000000 = 0x100d constant B3500000 (line 149) | B3500000 = 0x100e constant B38400 (line 150) | B38400 = 0xf constant B4000000 (line 151) | B4000000 = 0x100f constant B460800 (line 152) | B460800 = 0x1004 constant B4800 (line 153) | B4800 = 0xc constant B50 (line 154) | B50 = 0x1 constant B500000 (line 155) | B500000 = 0x1005 constant B57600 (line 156) | B57600 = 0x1001 constant B576000 (line 157) | B576000 = 0x1006 constant B600 (line 158) | B600 = 0x8 constant B75 (line 159) | B75 = 0x2 constant B921600 (line 160) | B921600 = 0x1007 constant B9600 (line 161) | B9600 = 0xd constant BLKBSZGET (line 162) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 163) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 164) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 165) | BLKFRAGET = 0x1265 constant BLKFRASET (line 166) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 167) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 168) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 169) | BLKRAGET = 0x1263 constant BLKRASET (line 170) | BLKRASET = 0x1262 constant BLKROGET (line 171) | BLKROGET = 0x125e constant BLKROSET (line 172) | BLKROSET = 0x125d constant BLKRRPART (line 173) | BLKRRPART = 0x125f constant BLKSECTGET (line 174) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 175) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 176) | BLKSSZGET = 0x1268 constant BOTHER (line 177) | BOTHER = 0x1000 constant BPF_A (line 178) | BPF_A = 0x10 constant BPF_ABS (line 179) | BPF_ABS = 0x20 constant BPF_ADD (line 180) | BPF_ADD = 0x0 constant BPF_ALU (line 181) | BPF_ALU = 0x4 constant BPF_AND (line 182) | BPF_AND = 0x50 constant BPF_B (line 183) | BPF_B = 0x10 constant BPF_DIV (line 184) | BPF_DIV = 0x30 constant BPF_H (line 185) | BPF_H = 0x8 constant BPF_IMM (line 186) | BPF_IMM = 0x0 constant BPF_IND (line 187) | BPF_IND = 0x40 constant BPF_JA (line 188) | BPF_JA = 0x0 constant BPF_JEQ (line 189) | BPF_JEQ = 0x10 constant BPF_JGE (line 190) | BPF_JGE = 0x30 constant BPF_JGT (line 191) | BPF_JGT = 0x20 constant BPF_JMP (line 192) | BPF_JMP = 0x5 constant BPF_JSET (line 193) | BPF_JSET = 0x40 constant BPF_K (line 194) | BPF_K = 0x0 constant BPF_LD (line 195) | BPF_LD = 0x0 constant BPF_LDX (line 196) | BPF_LDX = 0x1 constant BPF_LEN (line 197) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 198) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 199) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 200) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 201) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 202) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 203) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 204) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 205) | BPF_MISC = 0x7 constant BPF_MOD (line 206) | BPF_MOD = 0x90 constant BPF_MSH (line 207) | BPF_MSH = 0xa0 constant BPF_MUL (line 208) | BPF_MUL = 0x20 constant BPF_NEG (line 209) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 210) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 211) | BPF_OR = 0x40 constant BPF_RET (line 212) | BPF_RET = 0x6 constant BPF_RSH (line 213) | BPF_RSH = 0x70 constant BPF_ST (line 214) | BPF_ST = 0x2 constant BPF_STX (line 215) | BPF_STX = 0x3 constant BPF_SUB (line 216) | BPF_SUB = 0x10 constant BPF_TAX (line 217) | BPF_TAX = 0x0 constant BPF_TXA (line 218) | BPF_TXA = 0x80 constant BPF_W (line 219) | BPF_W = 0x0 constant BPF_X (line 220) | BPF_X = 0x8 constant BPF_XOR (line 221) | BPF_XOR = 0xa0 constant BRKINT (line 222) | BRKINT = 0x2 constant BS0 (line 223) | BS0 = 0x0 constant BS1 (line 224) | BS1 = 0x2000 constant BSDLY (line 225) | BSDLY = 0x2000 constant CAN_BCM (line 226) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 227) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 228) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 229) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 230) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 231) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 232) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 233) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 234) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 235) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 236) | CAN_MCNET = 0x5 constant CAN_MTU (line 237) | CAN_MTU = 0x10 constant CAN_NPROTO (line 238) | CAN_NPROTO = 0x7 constant CAN_RAW (line 239) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 240) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 241) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 242) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 243) | CAN_TP16 = 0x3 constant CAN_TP20 (line 244) | CAN_TP20 = 0x4 constant CBAUD (line 245) | CBAUD = 0x100f constant CBAUDEX (line 246) | CBAUDEX = 0x1000 constant CFLUSH (line 247) | CFLUSH = 0xf constant CIBAUD (line 248) | CIBAUD = 0x100f0000 constant CLOCAL (line 249) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 250) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 251) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 252) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 253) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 254) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 255) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 256) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 257) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 258) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 259) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 260) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 261) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 262) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 263) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 264) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 265) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 266) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 267) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 268) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 269) | CLONE_FILES = 0x400 constant CLONE_FS (line 270) | CLONE_FS = 0x200 constant CLONE_IO (line 271) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 272) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 273) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 274) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 275) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 276) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 277) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 278) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 279) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 280) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 281) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 282) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 283) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 284) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 285) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 286) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 287) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 288) | CLONE_VM = 0x100 constant CMSPAR (line 289) | CMSPAR = 0x40000000 constant CR0 (line 290) | CR0 = 0x0 constant CR1 (line 291) | CR1 = 0x200 constant CR2 (line 292) | CR2 = 0x400 constant CR3 (line 293) | CR3 = 0x600 constant CRDLY (line 294) | CRDLY = 0x600 constant CREAD (line 295) | CREAD = 0x80 constant CRTSCTS (line 296) | CRTSCTS = 0x80000000 constant CS5 (line 297) | CS5 = 0x0 constant CS6 (line 298) | CS6 = 0x10 constant CS7 (line 299) | CS7 = 0x20 constant CS8 (line 300) | CS8 = 0x30 constant CSIGNAL (line 301) | CSIGNAL = 0xff constant CSIZE (line 302) | CSIZE = 0x30 constant CSTART (line 303) | CSTART = 0x11 constant CSTATUS (line 304) | CSTATUS = 0x0 constant CSTOP (line 305) | CSTOP = 0x13 constant CSTOPB (line 306) | CSTOPB = 0x40 constant CSUSP (line 307) | CSUSP = 0x1a constant DT_BLK (line 308) | DT_BLK = 0x6 constant DT_CHR (line 309) | DT_CHR = 0x2 constant DT_DIR (line 310) | DT_DIR = 0x4 constant DT_FIFO (line 311) | DT_FIFO = 0x1 constant DT_LNK (line 312) | DT_LNK = 0xa constant DT_REG (line 313) | DT_REG = 0x8 constant DT_SOCK (line 314) | DT_SOCK = 0xc constant DT_UNKNOWN (line 315) | DT_UNKNOWN = 0x0 constant DT_WHT (line 316) | DT_WHT = 0xe constant ECHO (line 317) | ECHO = 0x8 constant ECHOCTL (line 318) | ECHOCTL = 0x200 constant ECHOE (line 319) | ECHOE = 0x10 constant ECHOK (line 320) | ECHOK = 0x20 constant ECHOKE (line 321) | ECHOKE = 0x800 constant ECHONL (line 322) | ECHONL = 0x40 constant ECHOPRT (line 323) | ECHOPRT = 0x400 constant ENCODING_DEFAULT (line 324) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 325) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 326) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 327) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 328) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 329) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 330) | EPOLLERR = 0x8 constant EPOLLET (line 331) | EPOLLET = 0x80000000 constant EPOLLHUP (line 332) | EPOLLHUP = 0x10 constant EPOLLIN (line 333) | EPOLLIN = 0x1 constant EPOLLMSG (line 334) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 335) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 336) | EPOLLOUT = 0x4 constant EPOLLPRI (line 337) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 338) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 339) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 340) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 341) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 342) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 343) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 344) | EPOLL_CLOEXEC = 0x80000 constant EPOLL_CTL_ADD (line 345) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 346) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 347) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 348) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 349) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 350) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 351) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 352) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 353) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 354) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 355) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 356) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 357) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 358) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 359) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 360) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 361) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 362) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 363) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 364) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 365) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 366) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 367) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 368) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 369) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 370) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 371) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 372) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 373) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 374) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 375) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 376) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 377) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 378) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 379) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 380) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 381) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 382) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 383) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 384) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 385) | ETH_P_HDLC = 0x19 constant ETH_P_IEEE802154 (line 386) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 387) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 388) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 389) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 390) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 391) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 392) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 393) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 394) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 395) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 396) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 397) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MOBITEX (line 398) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 399) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 400) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 401) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 402) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 403) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 404) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 405) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 406) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 407) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 408) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 409) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 410) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 411) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 412) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 413) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 414) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 415) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 416) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 417) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 418) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 419) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 420) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 421) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 422) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 423) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 424) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 425) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 426) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 427) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 428) | ETH_P_XDSA = 0xf8 constant EXTA (line 429) | EXTA = 0xe constant EXTB (line 430) | EXTB = 0xf constant EXTPROC (line 431) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 432) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 433) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 434) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 435) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 436) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 437) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 438) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 439) | FD_SETSIZE = 0x400 constant FF0 (line 440) | FF0 = 0x0 constant FF1 (line 441) | FF1 = 0x8000 constant FFDLY (line 442) | FFDLY = 0x8000 constant FLUSHO (line 443) | FLUSHO = 0x1000 constant F_DUPFD (line 444) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 445) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 446) | F_EXLCK = 0x4 constant F_GETFD (line 447) | F_GETFD = 0x1 constant F_GETFL (line 448) | F_GETFL = 0x3 constant F_GETLEASE (line 449) | F_GETLEASE = 0x401 constant F_GETLK (line 450) | F_GETLK = 0x5 constant F_GETLK64 (line 451) | F_GETLK64 = 0x5 constant F_GETOWN (line 452) | F_GETOWN = 0x9 constant F_GETOWN_EX (line 453) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 454) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 455) | F_GETSIG = 0xb constant F_LOCK (line 456) | F_LOCK = 0x1 constant F_NOTIFY (line 457) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 458) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 459) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 460) | F_OFD_SETLKW = 0x26 constant F_OK (line 461) | F_OK = 0x0 constant F_RDLCK (line 462) | F_RDLCK = 0x0 constant F_SETFD (line 463) | F_SETFD = 0x2 constant F_SETFL (line 464) | F_SETFL = 0x4 constant F_SETLEASE (line 465) | F_SETLEASE = 0x400 constant F_SETLK (line 466) | F_SETLK = 0x6 constant F_SETLK64 (line 467) | F_SETLK64 = 0x6 constant F_SETLKW (line 468) | F_SETLKW = 0x7 constant F_SETLKW64 (line 469) | F_SETLKW64 = 0x7 constant F_SETOWN (line 470) | F_SETOWN = 0x8 constant F_SETOWN_EX (line 471) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 472) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 473) | F_SETSIG = 0xa constant F_SHLCK (line 474) | F_SHLCK = 0x8 constant F_TEST (line 475) | F_TEST = 0x3 constant F_TLOCK (line 476) | F_TLOCK = 0x2 constant F_ULOCK (line 477) | F_ULOCK = 0x0 constant F_UNLCK (line 478) | F_UNLCK = 0x2 constant F_WRLCK (line 479) | F_WRLCK = 0x1 constant GRND_NONBLOCK (line 480) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 481) | GRND_RANDOM = 0x2 constant HUPCL (line 482) | HUPCL = 0x400 constant IBSHIFT (line 483) | IBSHIFT = 0x10 constant ICANON (line 484) | ICANON = 0x2 constant ICMPV6_FILTER (line 485) | ICMPV6_FILTER = 0x1 constant ICRNL (line 486) | ICRNL = 0x100 constant IEXTEN (line 487) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 488) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 489) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 490) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 491) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 492) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 493) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 494) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 495) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 496) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 497) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 498) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 499) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 500) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 501) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 502) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 503) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 504) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 505) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 506) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 507) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 508) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 509) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 510) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 511) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 512) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 513) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 514) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 515) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 516) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 517) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 518) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 519) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 520) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 521) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 522) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 523) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 524) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 525) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 526) | IFF_SLAVE = 0x800 constant IFF_TAP (line 527) | IFF_TAP = 0x2 constant IFF_TUN (line 528) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 529) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 530) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 531) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 532) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 533) | IFNAMSIZ = 0x10 constant IGNBRK (line 534) | IGNBRK = 0x1 constant IGNCR (line 535) | IGNCR = 0x80 constant IGNPAR (line 536) | IGNPAR = 0x4 constant IMAXBEL (line 537) | IMAXBEL = 0x2000 constant INLCR (line 538) | INLCR = 0x40 constant INPCK (line 539) | INPCK = 0x10 constant IN_ACCESS (line 540) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 541) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 542) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 543) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 544) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 545) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 546) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 547) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 548) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 549) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 550) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 551) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 552) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 553) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 554) | IN_CLOEXEC = 0x80000 constant IN_CLOSE (line 555) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 556) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 557) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 558) | IN_CREATE = 0x100 constant IN_DELETE (line 559) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 560) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 561) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 562) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 563) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 564) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 565) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 566) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 567) | IN_MODIFY = 0x2 constant IN_MOVE (line 568) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 569) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 570) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 571) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 572) | IN_NONBLOCK = 0x800 constant IN_ONESHOT (line 573) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 574) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 575) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 576) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 577) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 578) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 579) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 580) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 581) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 582) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 583) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 584) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 585) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 586) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 587) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 588) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 589) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 590) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 591) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 592) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 593) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 594) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 595) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 596) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 597) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 598) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 599) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 600) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 601) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 602) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 603) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 604) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 605) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 606) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 607) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 608) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 609) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 610) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 611) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 612) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 613) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 614) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 615) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 616) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 617) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 618) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 619) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 620) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 621) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 622) | IPV6_DSTOPTS = 0x3b constant IPV6_HOPLIMIT (line 623) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 624) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 625) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 626) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 627) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 628) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 629) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 630) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 631) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 632) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 633) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 634) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 635) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 636) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 637) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 638) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 639) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 640) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 641) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 642) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 643) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 644) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 645) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 646) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 647) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 648) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 649) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 650) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 651) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 652) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 653) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 654) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 655) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 656) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 657) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 658) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 659) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 660) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 661) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 662) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 663) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 664) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 665) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 666) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 667) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 668) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 669) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 670) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 671) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 672) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 673) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 674) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 675) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 676) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 677) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 678) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 679) | IP_MF = 0x2000 constant IP_MINTTL (line 680) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 681) | IP_MSFILTER = 0x29 constant IP_MSS (line 682) | IP_MSS = 0x240 constant IP_MTU (line 683) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 684) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 685) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 686) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 687) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 688) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 689) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 690) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 691) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 692) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 693) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 694) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 695) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 696) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 697) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 698) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 699) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 700) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 701) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 702) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 703) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 704) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 705) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 706) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 707) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 708) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 709) | IP_RETOPTS = 0x7 constant IP_RF (line 710) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 711) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 712) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 713) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 714) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 715) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 716) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 717) | IP_XFRM_POLICY = 0x11 constant ISIG (line 718) | ISIG = 0x1 constant ISTRIP (line 719) | ISTRIP = 0x20 constant IUCLC (line 720) | IUCLC = 0x200 constant IUTF8 (line 721) | IUTF8 = 0x4000 constant IXANY (line 722) | IXANY = 0x800 constant IXOFF (line 723) | IXOFF = 0x1000 constant IXON (line 724) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 725) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 726) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 727) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 728) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 729) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 730) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 731) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 732) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 733) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 734) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 735) | LOCK_EX = 0x2 constant LOCK_NB (line 736) | LOCK_NB = 0x4 constant LOCK_SH (line 737) | LOCK_SH = 0x1 constant LOCK_UN (line 738) | LOCK_UN = 0x8 constant MADV_DODUMP (line 739) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 740) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 741) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 742) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 743) | MADV_DONTNEED = 0x4 constant MADV_HUGEPAGE (line 744) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 745) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 746) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 747) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 748) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 749) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 750) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 751) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 752) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 753) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 754) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 755) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 756) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 757) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 758) | MAP_FILE = 0x0 constant MAP_FIXED (line 759) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 760) | MAP_GROWSDOWN = 0x100 constant MAP_HUGETLB (line 761) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 762) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 763) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 764) | MAP_LOCKED = 0x2000 constant MAP_NONBLOCK (line 765) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 766) | MAP_NORESERVE = 0x4000 constant MAP_POPULATE (line 767) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 768) | MAP_PRIVATE = 0x2 constant MAP_SHARED (line 769) | MAP_SHARED = 0x1 constant MAP_STACK (line 770) | MAP_STACK = 0x20000 constant MAP_TYPE (line 771) | MAP_TYPE = 0xf constant MCL_CURRENT (line 772) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 773) | MCL_FUTURE = 0x2 constant MCL_ONFAULT (line 774) | MCL_ONFAULT = 0x4 constant MNT_DETACH (line 775) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 776) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 777) | MNT_FORCE = 0x1 constant MSG_CMSG_CLOEXEC (line 778) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 779) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 780) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 781) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 782) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 783) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 784) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 785) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 786) | MSG_FIN = 0x200 constant MSG_MORE (line 787) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 788) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 789) | MSG_OOB = 0x1 constant MSG_PEEK (line 790) | MSG_PEEK = 0x2 constant MSG_PROXY (line 791) | MSG_PROXY = 0x10 constant MSG_RST (line 792) | MSG_RST = 0x1000 constant MSG_SYN (line 793) | MSG_SYN = 0x400 constant MSG_TRUNC (line 794) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 795) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 796) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 797) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 798) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 799) | MS_ASYNC = 0x1 constant MS_BIND (line 800) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 801) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 802) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 803) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 804) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 805) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 806) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 807) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 808) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 809) | MS_MOVE = 0x2000 constant MS_NOATIME (line 810) | MS_NOATIME = 0x400 constant MS_NODEV (line 811) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 812) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 813) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 814) | MS_NOSUID = 0x2 constant MS_NOUSER (line 815) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 816) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 817) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 818) | MS_RDONLY = 0x1 constant MS_REC (line 819) | MS_REC = 0x4000 constant MS_RELATIME (line 820) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 821) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 822) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 823) | MS_SHARED = 0x100000 constant MS_SILENT (line 824) | MS_SILENT = 0x8000 constant MS_SLAVE (line 825) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 826) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 827) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 828) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 829) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 830) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 831) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 832) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 833) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 834) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 835) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 836) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 837) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 838) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 839) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 840) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 841) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 842) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 843) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 844) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 845) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 846) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 847) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 848) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 849) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 850) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 851) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 852) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 853) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 854) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 855) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 856) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 857) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 858) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 859) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 860) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 861) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 862) | NETLINK_XFRM = 0x6 constant NL0 (line 863) | NL0 = 0x0 constant NL1 (line 864) | NL1 = 0x100 constant NLA_ALIGNTO (line 865) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 866) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 867) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 868) | NLA_HDRLEN = 0x4 constant NLDLY (line 869) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 870) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 871) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 872) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 873) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 874) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 875) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 876) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 877) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 878) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 879) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 880) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 881) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 882) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 883) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 884) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 885) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 886) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 887) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 888) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 889) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 890) | NLM_F_ROOT = 0x100 constant NOFLSH (line 891) | NOFLSH = 0x80 constant OCRNL (line 892) | OCRNL = 0x8 constant OFDEL (line 893) | OFDEL = 0x80 constant OFILL (line 894) | OFILL = 0x40 constant OLCUC (line 895) | OLCUC = 0x2 constant ONLCR (line 896) | ONLCR = 0x4 constant ONLRET (line 897) | ONLRET = 0x20 constant ONOCR (line 898) | ONOCR = 0x10 constant OPOST (line 899) | OPOST = 0x1 constant O_ACCMODE (line 900) | O_ACCMODE = 0x3 constant O_APPEND (line 901) | O_APPEND = 0x400 constant O_ASYNC (line 902) | O_ASYNC = 0x2000 constant O_CLOEXEC (line 903) | O_CLOEXEC = 0x80000 constant O_CREAT (line 904) | O_CREAT = 0x40 constant O_DIRECT (line 905) | O_DIRECT = 0x4000 constant O_DIRECTORY (line 906) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 907) | O_DSYNC = 0x1000 constant O_EXCL (line 908) | O_EXCL = 0x80 constant O_FSYNC (line 909) | O_FSYNC = 0x101000 constant O_LARGEFILE (line 910) | O_LARGEFILE = 0x0 constant O_NDELAY (line 911) | O_NDELAY = 0x800 constant O_NOATIME (line 912) | O_NOATIME = 0x40000 constant O_NOCTTY (line 913) | O_NOCTTY = 0x100 constant O_NOFOLLOW (line 914) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 915) | O_NONBLOCK = 0x800 constant O_PATH (line 916) | O_PATH = 0x200000 constant O_RDONLY (line 917) | O_RDONLY = 0x0 constant O_RDWR (line 918) | O_RDWR = 0x2 constant O_RSYNC (line 919) | O_RSYNC = 0x101000 constant O_SYNC (line 920) | O_SYNC = 0x101000 constant O_TMPFILE (line 921) | O_TMPFILE = 0x410000 constant O_TRUNC (line 922) | O_TRUNC = 0x200 constant O_WRONLY (line 923) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 924) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 925) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 926) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 927) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 928) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 929) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 930) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 931) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 932) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 933) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 934) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 935) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 936) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 937) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 938) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 939) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 940) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 941) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 942) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 943) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 944) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 945) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 946) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 947) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 948) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 949) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 950) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 951) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 952) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 953) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 954) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 955) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 956) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 957) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 958) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 959) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 960) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 961) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 962) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 963) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 964) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 965) | PACKET_USER = 0x6 constant PACKET_VERSION (line 966) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 967) | PACKET_VNET_HDR = 0xf constant PARENB (line 968) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 969) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 970) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 971) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 972) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 973) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 974) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 975) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 976) | PARITY_NONE = 0x1 constant PARMRK (line 977) | PARMRK = 0x8 constant PARODD (line 978) | PARODD = 0x200 constant PENDIN (line 979) | PENDIN = 0x4000 constant PRIO_PGRP (line 980) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 981) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 982) | PRIO_USER = 0x2 constant PROT_EXEC (line 983) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 984) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 985) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 986) | PROT_NONE = 0x0 constant PROT_READ (line 987) | PROT_READ = 0x1 constant PROT_WRITE (line 988) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 989) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 990) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 991) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 992) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 993) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 994) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 995) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 996) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 997) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 998) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 999) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1000) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1001) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1002) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1003) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1004) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1005) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1006) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1007) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1008) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1009) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1010) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1011) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1012) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1013) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1014) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1015) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1016) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1017) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1018) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1019) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1020) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1021) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1022) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1023) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1024) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1025) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1026) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1027) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1028) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1029) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1030) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1031) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1032) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1033) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1034) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1035) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1036) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1037) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1038) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1039) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1040) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1041) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1042) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1043) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1044) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1045) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1046) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1047) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1048) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1049) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1050) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1051) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1052) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1053) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1054) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1055) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1056) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1057) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1058) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1059) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1060) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1061) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1062) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1063) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1064) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1065) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1066) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1067) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1068) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1069) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1070) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1071) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1072) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1073) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1074) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1075) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1076) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1077) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1078) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1079) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1080) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1081) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1082) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1083) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1084) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1085) | PTRACE_DETACH = 0x11 constant PTRACE_DISABLE_TE (line 1086) | PTRACE_DISABLE_TE = 0x5010 constant PTRACE_ENABLE_TE (line 1087) | PTRACE_ENABLE_TE = 0x5009 constant PTRACE_EVENT_CLONE (line 1088) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1089) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1090) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1091) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1092) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1093) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1094) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1095) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1096) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETREGS (line 1097) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGSET (line 1098) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1099) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1100) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_GET_LAST_BREAK (line 1101) | PTRACE_GET_LAST_BREAK = 0x5006 constant PTRACE_INTERRUPT (line 1102) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1103) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1104) | PTRACE_LISTEN = 0x4208 constant PTRACE_OLDSETOPTIONS (line 1105) | PTRACE_OLDSETOPTIONS = 0x15 constant PTRACE_O_EXITKILL (line 1106) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1107) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1108) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1109) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1110) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1111) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1112) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1113) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1114) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1115) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1116) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1117) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKDATA_AREA (line 1118) | PTRACE_PEEKDATA_AREA = 0x5003 constant PTRACE_PEEKSIGINFO (line 1119) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1120) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1121) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKTEXT_AREA (line 1122) | PTRACE_PEEKTEXT_AREA = 0x5002 constant PTRACE_PEEKUSR (line 1123) | PTRACE_PEEKUSR = 0x3 constant PTRACE_PEEKUSR_AREA (line 1124) | PTRACE_PEEKUSR_AREA = 0x5000 constant PTRACE_PEEK_SYSTEM_CALL (line 1125) | PTRACE_PEEK_SYSTEM_CALL = 0x5007 constant PTRACE_POKEDATA (line 1126) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKEDATA_AREA (line 1127) | PTRACE_POKEDATA_AREA = 0x5005 constant PTRACE_POKETEXT (line 1128) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKETEXT_AREA (line 1129) | PTRACE_POKETEXT_AREA = 0x5004 constant PTRACE_POKEUSR (line 1130) | PTRACE_POKEUSR = 0x6 constant PTRACE_POKEUSR_AREA (line 1131) | PTRACE_POKEUSR_AREA = 0x5001 constant PTRACE_POKE_SYSTEM_CALL (line 1132) | PTRACE_POKE_SYSTEM_CALL = 0x5008 constant PTRACE_PROT (line 1133) | PTRACE_PROT = 0x15 constant PTRACE_SECCOMP_GET_FILTER (line 1134) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1135) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETOPTIONS (line 1136) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1137) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGSET (line 1138) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1139) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1140) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLEBLOCK (line 1141) | PTRACE_SINGLEBLOCK = 0xc constant PTRACE_SINGLESTEP (line 1142) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SYSCALL (line 1143) | PTRACE_SYSCALL = 0x18 constant PTRACE_TE_ABORT_RAND (line 1144) | PTRACE_TE_ABORT_RAND = 0x5011 constant PTRACE_TRACEME (line 1145) | PTRACE_TRACEME = 0x0 constant PT_ACR0 (line 1146) | PT_ACR0 = 0x90 constant PT_ACR1 (line 1147) | PT_ACR1 = 0x94 constant PT_ACR10 (line 1148) | PT_ACR10 = 0xb8 constant PT_ACR11 (line 1149) | PT_ACR11 = 0xbc constant PT_ACR12 (line 1150) | PT_ACR12 = 0xc0 constant PT_ACR13 (line 1151) | PT_ACR13 = 0xc4 constant PT_ACR14 (line 1152) | PT_ACR14 = 0xc8 constant PT_ACR15 (line 1153) | PT_ACR15 = 0xcc constant PT_ACR2 (line 1154) | PT_ACR2 = 0x98 constant PT_ACR3 (line 1155) | PT_ACR3 = 0x9c constant PT_ACR4 (line 1156) | PT_ACR4 = 0xa0 constant PT_ACR5 (line 1157) | PT_ACR5 = 0xa4 constant PT_ACR6 (line 1158) | PT_ACR6 = 0xa8 constant PT_ACR7 (line 1159) | PT_ACR7 = 0xac constant PT_ACR8 (line 1160) | PT_ACR8 = 0xb0 constant PT_ACR9 (line 1161) | PT_ACR9 = 0xb4 constant PT_CR_10 (line 1162) | PT_CR_10 = 0x168 constant PT_CR_11 (line 1163) | PT_CR_11 = 0x170 constant PT_CR_9 (line 1164) | PT_CR_9 = 0x160 constant PT_ENDREGS (line 1165) | PT_ENDREGS = 0x1af constant PT_FPC (line 1166) | PT_FPC = 0xd8 constant PT_FPR0 (line 1167) | PT_FPR0 = 0xe0 constant PT_FPR1 (line 1168) | PT_FPR1 = 0xe8 constant PT_FPR10 (line 1169) | PT_FPR10 = 0x130 constant PT_FPR11 (line 1170) | PT_FPR11 = 0x138 constant PT_FPR12 (line 1171) | PT_FPR12 = 0x140 constant PT_FPR13 (line 1172) | PT_FPR13 = 0x148 constant PT_FPR14 (line 1173) | PT_FPR14 = 0x150 constant PT_FPR15 (line 1174) | PT_FPR15 = 0x158 constant PT_FPR2 (line 1175) | PT_FPR2 = 0xf0 constant PT_FPR3 (line 1176) | PT_FPR3 = 0xf8 constant PT_FPR4 (line 1177) | PT_FPR4 = 0x100 constant PT_FPR5 (line 1178) | PT_FPR5 = 0x108 constant PT_FPR6 (line 1179) | PT_FPR6 = 0x110 constant PT_FPR7 (line 1180) | PT_FPR7 = 0x118 constant PT_FPR8 (line 1181) | PT_FPR8 = 0x120 constant PT_FPR9 (line 1182) | PT_FPR9 = 0x128 constant PT_GPR0 (line 1183) | PT_GPR0 = 0x10 constant PT_GPR1 (line 1184) | PT_GPR1 = 0x18 constant PT_GPR10 (line 1185) | PT_GPR10 = 0x60 constant PT_GPR11 (line 1186) | PT_GPR11 = 0x68 constant PT_GPR12 (line 1187) | PT_GPR12 = 0x70 constant PT_GPR13 (line 1188) | PT_GPR13 = 0x78 constant PT_GPR14 (line 1189) | PT_GPR14 = 0x80 constant PT_GPR15 (line 1190) | PT_GPR15 = 0x88 constant PT_GPR2 (line 1191) | PT_GPR2 = 0x20 constant PT_GPR3 (line 1192) | PT_GPR3 = 0x28 constant PT_GPR4 (line 1193) | PT_GPR4 = 0x30 constant PT_GPR5 (line 1194) | PT_GPR5 = 0x38 constant PT_GPR6 (line 1195) | PT_GPR6 = 0x40 constant PT_GPR7 (line 1196) | PT_GPR7 = 0x48 constant PT_GPR8 (line 1197) | PT_GPR8 = 0x50 constant PT_GPR9 (line 1198) | PT_GPR9 = 0x58 constant PT_IEEE_IP (line 1199) | PT_IEEE_IP = 0x1a8 constant PT_LASTOFF (line 1200) | PT_LASTOFF = 0x1a8 constant PT_ORIGGPR2 (line 1201) | PT_ORIGGPR2 = 0xd0 constant PT_PSWADDR (line 1202) | PT_PSWADDR = 0x8 constant PT_PSWMASK (line 1203) | PT_PSWMASK = 0x0 constant RLIMIT_AS (line 1204) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1205) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1206) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1207) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1208) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1209) | RLIMIT_NOFILE = 0x7 constant RLIMIT_STACK (line 1210) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1211) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1212) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1213) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1214) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1215) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1216) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1217) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1218) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1219) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1220) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1221) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1222) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1223) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1224) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1225) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1226) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1227) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1228) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1229) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1230) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1231) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1232) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1233) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1234) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1235) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1236) | RTA_MAX = 0x16 constant RTCF_DIRECTSRC (line 1237) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1238) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1239) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1240) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1241) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1242) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1243) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1244) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1245) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1246) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1247) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1248) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1249) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1250) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1251) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1252) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1253) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1254) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1255) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1256) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1257) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1258) | RTF_MSS = 0x40 constant RTF_MTU (line 1259) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1260) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1261) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1262) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1263) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1264) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1265) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1266) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1267) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1268) | RTF_STATIC = 0x400 constant RTF_THROW (line 1269) | RTF_THROW = 0x2000 constant RTF_UP (line 1270) | RTF_UP = 0x1 constant RTF_WINDOW (line 1271) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1272) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1273) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1274) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1275) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1276) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1277) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1278) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1279) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1280) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1281) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1282) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1283) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1284) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1285) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1286) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1287) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1288) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1289) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1290) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1291) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1292) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1293) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1294) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1295) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1296) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1297) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1298) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1299) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1300) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1301) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1302) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1303) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1304) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1305) | RTM_GETRULE = 0x22 constant RTM_GETTCLASS (line 1306) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1307) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1308) | RTM_MAX = 0x5b constant RTM_NEWACTION (line 1309) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1310) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1311) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1312) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1313) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1314) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1315) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1316) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1317) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1318) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1319) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1320) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1321) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1322) | RTM_NEWRULE = 0x20 constant RTM_NEWTCLASS (line 1323) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1324) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1325) | RTM_NR_FAMILIES = 0x13 constant RTM_NR_MSGTYPES (line 1326) | RTM_NR_MSGTYPES = 0x4c constant RTM_SETDCB (line 1327) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1328) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1329) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1330) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1331) | RTNH_COMPARE_MASK = 0x11 constant RTNH_F_DEAD (line 1332) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1333) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1334) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1335) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1336) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1337) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1338) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1339) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1340) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1341) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1342) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1343) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1344) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1345) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1346) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1347) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1348) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1349) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1350) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1351) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1352) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1353) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1354) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1355) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1356) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1357) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1358) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1359) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1360) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1361) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1362) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1363) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1364) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1365) | SCM_TIMESTAMPING = 0x25 constant SCM_TIMESTAMPNS (line 1366) | SCM_TIMESTAMPNS = 0x23 constant SCM_WIFI_STATUS (line 1367) | SCM_WIFI_STATUS = 0x29 constant SHUT_RD (line 1368) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1369) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1370) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1371) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1372) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1373) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1374) | SIOCATMARK = 0x8905 constant SIOCDARP (line 1375) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1376) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1377) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1378) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1379) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1380) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1381) | SIOCDRARP = 0x8960 constant SIOCGARP (line 1382) | SIOCGARP = 0x8954 constant SIOCGIFADDR (line 1383) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1384) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1385) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1386) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1387) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1388) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1389) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1390) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1391) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1392) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1393) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1394) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1395) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1396) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1397) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1398) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1399) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1400) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1401) | SIOCGIFTXQLEN = 0x8942 constant SIOCGPGRP (line 1402) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1403) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1404) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1405) | SIOCGSTAMPNS = 0x8907 constant SIOCPROTOPRIVATE (line 1406) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1407) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1408) | SIOCSARP = 0x8955 constant SIOCSIFADDR (line 1409) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1410) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1411) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1412) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1413) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1414) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1415) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1416) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1417) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1418) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1419) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1420) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1421) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1422) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1423) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1424) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1425) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1426) | SIOCSIFTXQLEN = 0x8943 constant SIOCSPGRP (line 1427) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1428) | SIOCSRARP = 0x8962 constant SOCK_CLOEXEC (line 1429) | SOCK_CLOEXEC = 0x80000 constant SOCK_DCCP (line 1430) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1431) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1432) | SOCK_NONBLOCK = 0x800 constant SOCK_PACKET (line 1433) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1434) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1435) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1436) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1437) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1438) | SOL_AAL = 0x109 constant SOL_ATM (line 1439) | SOL_ATM = 0x108 constant SOL_DECNET (line 1440) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1441) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1442) | SOL_IP = 0x0 constant SOL_IPV6 (line 1443) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1444) | SOL_IRDA = 0x10a constant SOL_NETLINK (line 1445) | SOL_NETLINK = 0x10e constant SOL_PACKET (line 1446) | SOL_PACKET = 0x107 constant SOL_RAW (line 1447) | SOL_RAW = 0xff constant SOL_SOCKET (line 1448) | SOL_SOCKET = 0x1 constant SOL_TCP (line 1449) | SOL_TCP = 0x6 constant SOL_X25 (line 1450) | SOL_X25 = 0x106 constant SOMAXCONN (line 1451) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1452) | SO_ACCEPTCONN = 0x1e constant SO_ATTACH_BPF (line 1453) | SO_ATTACH_BPF = 0x32 constant SO_ATTACH_FILTER (line 1454) | SO_ATTACH_FILTER = 0x1a constant SO_BINDTODEVICE (line 1455) | SO_BINDTODEVICE = 0x19 constant SO_BPF_EXTENSIONS (line 1456) | SO_BPF_EXTENSIONS = 0x30 constant SO_BROADCAST (line 1457) | SO_BROADCAST = 0x6 constant SO_BSDCOMPAT (line 1458) | SO_BSDCOMPAT = 0xe constant SO_BUSY_POLL (line 1459) | SO_BUSY_POLL = 0x2e constant SO_DEBUG (line 1460) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1461) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1462) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1463) | SO_DOMAIN = 0x27 constant SO_DONTROUTE (line 1464) | SO_DONTROUTE = 0x5 constant SO_ERROR (line 1465) | SO_ERROR = 0x4 constant SO_GET_FILTER (line 1466) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1467) | SO_INCOMING_CPU = 0x31 constant SO_KEEPALIVE (line 1468) | SO_KEEPALIVE = 0x9 constant SO_LINGER (line 1469) | SO_LINGER = 0xd constant SO_LOCK_FILTER (line 1470) | SO_LOCK_FILTER = 0x2c constant SO_MARK (line 1471) | SO_MARK = 0x24 constant SO_MAX_PACING_RATE (line 1472) | SO_MAX_PACING_RATE = 0x2f constant SO_NOFCS (line 1473) | SO_NOFCS = 0x2b constant SO_NO_CHECK (line 1474) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1475) | SO_OOBINLINE = 0xa constant SO_PASSCRED (line 1476) | SO_PASSCRED = 0x10 constant SO_PASSSEC (line 1477) | SO_PASSSEC = 0x22 constant SO_PEEK_OFF (line 1478) | SO_PEEK_OFF = 0x2a constant SO_PEERCRED (line 1479) | SO_PEERCRED = 0x11 constant SO_PEERNAME (line 1480) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1481) | SO_PEERSEC = 0x1f constant SO_PRIORITY (line 1482) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1483) | SO_PROTOCOL = 0x26 constant SO_RCVBUF (line 1484) | SO_RCVBUF = 0x8 constant SO_RCVBUFFORCE (line 1485) | SO_RCVBUFFORCE = 0x21 constant SO_RCVLOWAT (line 1486) | SO_RCVLOWAT = 0x12 constant SO_RCVTIMEO (line 1487) | SO_RCVTIMEO = 0x14 constant SO_REUSEADDR (line 1488) | SO_REUSEADDR = 0x2 constant SO_REUSEPORT (line 1489) | SO_REUSEPORT = 0xf constant SO_RXQ_OVFL (line 1490) | SO_RXQ_OVFL = 0x28 constant SO_SECURITY_AUTHENTICATION (line 1491) | SO_SECURITY_AUTHENTICATION = 0x16 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1492) | SO_SECURITY_ENCRYPTION_NETWORK = 0x18 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1493) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x17 constant SO_SELECT_ERR_QUEUE (line 1494) | SO_SELECT_ERR_QUEUE = 0x2d constant SO_SNDBUF (line 1495) | SO_SNDBUF = 0x7 constant SO_SNDBUFFORCE (line 1496) | SO_SNDBUFFORCE = 0x20 constant SO_SNDLOWAT (line 1497) | SO_SNDLOWAT = 0x13 constant SO_SNDTIMEO (line 1498) | SO_SNDTIMEO = 0x15 constant SO_TIMESTAMP (line 1499) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1500) | SO_TIMESTAMPING = 0x25 constant SO_TIMESTAMPNS (line 1501) | SO_TIMESTAMPNS = 0x23 constant SO_TYPE (line 1502) | SO_TYPE = 0x3 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1503) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1504) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1505) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1506) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1507) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1508) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1509) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1510) | SO_WIFI_STATUS = 0x29 constant SPLICE_F_GIFT (line 1511) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1512) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1513) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1514) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1515) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1516) | S_IEXEC = 0x40 constant S_IFBLK (line 1517) | S_IFBLK = 0x6000 constant S_IFCHR (line 1518) | S_IFCHR = 0x2000 constant S_IFDIR (line 1519) | S_IFDIR = 0x4000 constant S_IFIFO (line 1520) | S_IFIFO = 0x1000 constant S_IFLNK (line 1521) | S_IFLNK = 0xa000 constant S_IFMT (line 1522) | S_IFMT = 0xf000 constant S_IFREG (line 1523) | S_IFREG = 0x8000 constant S_IFSOCK (line 1524) | S_IFSOCK = 0xc000 constant S_IREAD (line 1525) | S_IREAD = 0x100 constant S_IRGRP (line 1526) | S_IRGRP = 0x20 constant S_IROTH (line 1527) | S_IROTH = 0x4 constant S_IRUSR (line 1528) | S_IRUSR = 0x100 constant S_IRWXG (line 1529) | S_IRWXG = 0x38 constant S_IRWXO (line 1530) | S_IRWXO = 0x7 constant S_IRWXU (line 1531) | S_IRWXU = 0x1c0 constant S_ISGID (line 1532) | S_ISGID = 0x400 constant S_ISUID (line 1533) | S_ISUID = 0x800 constant S_ISVTX (line 1534) | S_ISVTX = 0x200 constant S_IWGRP (line 1535) | S_IWGRP = 0x10 constant S_IWOTH (line 1536) | S_IWOTH = 0x2 constant S_IWRITE (line 1537) | S_IWRITE = 0x80 constant S_IWUSR (line 1538) | S_IWUSR = 0x80 constant S_IXGRP (line 1539) | S_IXGRP = 0x8 constant S_IXOTH (line 1540) | S_IXOTH = 0x1 constant S_IXUSR (line 1541) | S_IXUSR = 0x40 constant TAB0 (line 1542) | TAB0 = 0x0 constant TAB1 (line 1543) | TAB1 = 0x800 constant TAB2 (line 1544) | TAB2 = 0x1000 constant TAB3 (line 1545) | TAB3 = 0x1800 constant TABDLY (line 1546) | TABDLY = 0x1800 constant TCFLSH (line 1547) | TCFLSH = 0x540b constant TCGETA (line 1548) | TCGETA = 0x5405 constant TCGETS (line 1549) | TCGETS = 0x5401 constant TCGETS2 (line 1550) | TCGETS2 = 0x802c542a constant TCGETX (line 1551) | TCGETX = 0x5432 constant TCIFLUSH (line 1552) | TCIFLUSH = 0x0 constant TCIOFF (line 1553) | TCIOFF = 0x2 constant TCIOFLUSH (line 1554) | TCIOFLUSH = 0x2 constant TCION (line 1555) | TCION = 0x3 constant TCOFLUSH (line 1556) | TCOFLUSH = 0x1 constant TCOOFF (line 1557) | TCOOFF = 0x0 constant TCOON (line 1558) | TCOON = 0x1 constant TCP_CC_INFO (line 1559) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1560) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1561) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1562) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1563) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1564) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1565) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1566) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1567) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1568) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1569) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1570) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1571) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1572) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1573) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1574) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1575) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1576) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1577) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1578) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1579) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1580) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1581) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1582) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1583) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1584) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1585) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1586) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1587) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1588) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1589) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SAVED_SYN (line 1590) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1591) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1592) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1593) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1594) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1595) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1596) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1597) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1598) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1599) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1600) | TCSAFLUSH = 0x2 constant TCSBRK (line 1601) | TCSBRK = 0x5409 constant TCSBRKP (line 1602) | TCSBRKP = 0x5425 constant TCSETA (line 1603) | TCSETA = 0x5406 constant TCSETAF (line 1604) | TCSETAF = 0x5408 constant TCSETAW (line 1605) | TCSETAW = 0x5407 constant TCSETS (line 1606) | TCSETS = 0x5402 constant TCSETS2 (line 1607) | TCSETS2 = 0x402c542b constant TCSETSF (line 1608) | TCSETSF = 0x5404 constant TCSETSF2 (line 1609) | TCSETSF2 = 0x402c542d constant TCSETSW (line 1610) | TCSETSW = 0x5403 constant TCSETSW2 (line 1611) | TCSETSW2 = 0x402c542c constant TCSETX (line 1612) | TCSETX = 0x5433 constant TCSETXF (line 1613) | TCSETXF = 0x5434 constant TCSETXW (line 1614) | TCSETXW = 0x5435 constant TCXONC (line 1615) | TCXONC = 0x540a constant TIOCCBRK (line 1616) | TIOCCBRK = 0x5428 constant TIOCCONS (line 1617) | TIOCCONS = 0x541d constant TIOCEXCL (line 1618) | TIOCEXCL = 0x540c constant TIOCGDEV (line 1619) | TIOCGDEV = 0x80045432 constant TIOCGETD (line 1620) | TIOCGETD = 0x5424 constant TIOCGEXCL (line 1621) | TIOCGEXCL = 0x80045440 constant TIOCGICOUNT (line 1622) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1623) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1624) | TIOCGPGRP = 0x540f constant TIOCGPKT (line 1625) | TIOCGPKT = 0x80045438 constant TIOCGPTLCK (line 1626) | TIOCGPTLCK = 0x80045439 constant TIOCGPTN (line 1627) | TIOCGPTN = 0x80045430 constant TIOCGRS485 (line 1628) | TIOCGRS485 = 0x542e constant TIOCGSERIAL (line 1629) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1630) | TIOCGSID = 0x5429 constant TIOCGSOFTCAR (line 1631) | TIOCGSOFTCAR = 0x5419 constant TIOCGWINSZ (line 1632) | TIOCGWINSZ = 0x5413 constant TIOCINQ (line 1633) | TIOCINQ = 0x541b constant TIOCLINUX (line 1634) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1635) | TIOCMBIC = 0x5417 constant TIOCMBIS (line 1636) | TIOCMBIS = 0x5416 constant TIOCMGET (line 1637) | TIOCMGET = 0x5415 constant TIOCMIWAIT (line 1638) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1639) | TIOCMSET = 0x5418 constant TIOCM_CAR (line 1640) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1641) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1642) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1643) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1644) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1645) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1646) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1647) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1648) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1649) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1650) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1651) | TIOCNOTTY = 0x5422 constant TIOCNXCL (line 1652) | TIOCNXCL = 0x540d constant TIOCOUTQ (line 1653) | TIOCOUTQ = 0x5411 constant TIOCPKT (line 1654) | TIOCPKT = 0x5420 constant TIOCPKT_DATA (line 1655) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1656) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1657) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1658) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1659) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1660) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1661) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1662) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1663) | TIOCSBRK = 0x5427 constant TIOCSCTTY (line 1664) | TIOCSCTTY = 0x540e constant TIOCSERCONFIG (line 1665) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1666) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1667) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1668) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1669) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1670) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1671) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1672) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1673) | TIOCSETD = 0x5423 constant TIOCSIG (line 1674) | TIOCSIG = 0x40045436 constant TIOCSLCKTRMIOS (line 1675) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1676) | TIOCSPGRP = 0x5410 constant TIOCSPTLCK (line 1677) | TIOCSPTLCK = 0x40045431 constant TIOCSRS485 (line 1678) | TIOCSRS485 = 0x542f constant TIOCSSERIAL (line 1679) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1680) | TIOCSSOFTCAR = 0x541a constant TIOCSTI (line 1681) | TIOCSTI = 0x5412 constant TIOCSWINSZ (line 1682) | TIOCSWINSZ = 0x5414 constant TIOCVHANGUP (line 1683) | TIOCVHANGUP = 0x5437 constant TOSTOP (line 1684) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1685) | TUNATTACHFILTER = 0x401054d5 constant TUNDETACHFILTER (line 1686) | TUNDETACHFILTER = 0x401054d6 constant TUNGETFEATURES (line 1687) | TUNGETFEATURES = 0x800454cf constant TUNGETFILTER (line 1688) | TUNGETFILTER = 0x801054db constant TUNGETIFF (line 1689) | TUNGETIFF = 0x800454d2 constant TUNGETSNDBUF (line 1690) | TUNGETSNDBUF = 0x800454d3 constant TUNGETVNETBE (line 1691) | TUNGETVNETBE = 0x800454df constant TUNGETVNETHDRSZ (line 1692) | TUNGETVNETHDRSZ = 0x800454d7 constant TUNGETVNETLE (line 1693) | TUNGETVNETLE = 0x800454dd constant TUNSETDEBUG (line 1694) | TUNSETDEBUG = 0x400454c9 constant TUNSETGROUP (line 1695) | TUNSETGROUP = 0x400454ce constant TUNSETIFF (line 1696) | TUNSETIFF = 0x400454ca constant TUNSETIFINDEX (line 1697) | TUNSETIFINDEX = 0x400454da constant TUNSETLINK (line 1698) | TUNSETLINK = 0x400454cd constant TUNSETNOCSUM (line 1699) | TUNSETNOCSUM = 0x400454c8 constant TUNSETOFFLOAD (line 1700) | TUNSETOFFLOAD = 0x400454d0 constant TUNSETOWNER (line 1701) | TUNSETOWNER = 0x400454cc constant TUNSETPERSIST (line 1702) | TUNSETPERSIST = 0x400454cb constant TUNSETQUEUE (line 1703) | TUNSETQUEUE = 0x400454d9 constant TUNSETSNDBUF (line 1704) | TUNSETSNDBUF = 0x400454d4 constant TUNSETTXFILTER (line 1705) | TUNSETTXFILTER = 0x400454d1 constant TUNSETVNETBE (line 1706) | TUNSETVNETBE = 0x400454de constant TUNSETVNETHDRSZ (line 1707) | TUNSETVNETHDRSZ = 0x400454d8 constant TUNSETVNETLE (line 1708) | TUNSETVNETLE = 0x400454dc constant VDISCARD (line 1709) | VDISCARD = 0xd constant VEOF (line 1710) | VEOF = 0x4 constant VEOL (line 1711) | VEOL = 0xb constant VEOL2 (line 1712) | VEOL2 = 0x10 constant VERASE (line 1713) | VERASE = 0x2 constant VINTR (line 1714) | VINTR = 0x0 constant VKILL (line 1715) | VKILL = 0x3 constant VLNEXT (line 1716) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1717) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1718) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1719) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1720) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1721) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1722) | VMIN = 0x6 constant VQUIT (line 1723) | VQUIT = 0x1 constant VREPRINT (line 1724) | VREPRINT = 0xc constant VSTART (line 1725) | VSTART = 0x8 constant VSTOP (line 1726) | VSTOP = 0x9 constant VSUSP (line 1727) | VSUSP = 0xa constant VSWTC (line 1728) | VSWTC = 0x7 constant VT0 (line 1729) | VT0 = 0x0 constant VT1 (line 1730) | VT1 = 0x4000 constant VTDLY (line 1731) | VTDLY = 0x4000 constant VTIME (line 1732) | VTIME = 0x5 constant VWERASE (line 1733) | VWERASE = 0xe constant WALL (line 1734) | WALL = 0x40000000 constant WCLONE (line 1735) | WCLONE = 0x80000000 constant WCONTINUED (line 1736) | WCONTINUED = 0x8 constant WEXITED (line 1737) | WEXITED = 0x4 constant WNOHANG (line 1738) | WNOHANG = 0x1 constant WNOTHREAD (line 1739) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1740) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1741) | WORDSIZE = 0x40 constant WSTOPPED (line 1742) | WSTOPPED = 0x2 constant WUNTRACED (line 1743) | WUNTRACED = 0x2 constant XCASE (line 1744) | XCASE = 0x4 constant XTABS (line 1745) | XTABS = 0x1800 constant E2BIG (line 1750) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1751) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1752) | EADDRINUSE = syscall.Errno(0x62) constant EADDRNOTAVAIL (line 1753) | EADDRNOTAVAIL = syscall.Errno(0x63) constant EADV (line 1754) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1755) | EAFNOSUPPORT = syscall.Errno(0x61) constant EAGAIN (line 1756) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1757) | EALREADY = syscall.Errno(0x72) constant EBADE (line 1758) | EBADE = syscall.Errno(0x34) constant EBADF (line 1759) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1760) | EBADFD = syscall.Errno(0x4d) constant EBADMSG (line 1761) | EBADMSG = syscall.Errno(0x4a) constant EBADR (line 1762) | EBADR = syscall.Errno(0x35) constant EBADRQC (line 1763) | EBADRQC = syscall.Errno(0x38) constant EBADSLT (line 1764) | EBADSLT = syscall.Errno(0x39) constant EBFONT (line 1765) | EBFONT = syscall.Errno(0x3b) constant EBUSY (line 1766) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1767) | ECANCELED = syscall.Errno(0x7d) constant ECHILD (line 1768) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1769) | ECHRNG = syscall.Errno(0x2c) constant ECOMM (line 1770) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1771) | ECONNABORTED = syscall.Errno(0x67) constant ECONNREFUSED (line 1772) | ECONNREFUSED = syscall.Errno(0x6f) constant ECONNRESET (line 1773) | ECONNRESET = syscall.Errno(0x68) constant EDEADLK (line 1774) | EDEADLK = syscall.Errno(0x23) constant EDEADLOCK (line 1775) | EDEADLOCK = syscall.Errno(0x23) constant EDESTADDRREQ (line 1776) | EDESTADDRREQ = syscall.Errno(0x59) constant EDOM (line 1777) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1778) | EDOTDOT = syscall.Errno(0x49) constant EDQUOT (line 1779) | EDQUOT = syscall.Errno(0x7a) constant EEXIST (line 1780) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1781) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1782) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1783) | EHOSTDOWN = syscall.Errno(0x70) constant EHOSTUNREACH (line 1784) | EHOSTUNREACH = syscall.Errno(0x71) constant EHWPOISON (line 1785) | EHWPOISON = syscall.Errno(0x85) constant EIDRM (line 1786) | EIDRM = syscall.Errno(0x2b) constant EILSEQ (line 1787) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1788) | EINPROGRESS = syscall.Errno(0x73) constant EINTR (line 1789) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1790) | EINVAL = syscall.Errno(0x16) constant EIO (line 1791) | EIO = syscall.Errno(0x5) constant EISCONN (line 1792) | EISCONN = syscall.Errno(0x6a) constant EISDIR (line 1793) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1794) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1795) | EKEYEXPIRED = syscall.Errno(0x7f) constant EKEYREJECTED (line 1796) | EKEYREJECTED = syscall.Errno(0x81) constant EKEYREVOKED (line 1797) | EKEYREVOKED = syscall.Errno(0x80) constant EL2HLT (line 1798) | EL2HLT = syscall.Errno(0x33) constant EL2NSYNC (line 1799) | EL2NSYNC = syscall.Errno(0x2d) constant EL3HLT (line 1800) | EL3HLT = syscall.Errno(0x2e) constant EL3RST (line 1801) | EL3RST = syscall.Errno(0x2f) constant ELIBACC (line 1802) | ELIBACC = syscall.Errno(0x4f) constant ELIBBAD (line 1803) | ELIBBAD = syscall.Errno(0x50) constant ELIBEXEC (line 1804) | ELIBEXEC = syscall.Errno(0x53) constant ELIBMAX (line 1805) | ELIBMAX = syscall.Errno(0x52) constant ELIBSCN (line 1806) | ELIBSCN = syscall.Errno(0x51) constant ELNRNG (line 1807) | ELNRNG = syscall.Errno(0x30) constant ELOOP (line 1808) | ELOOP = syscall.Errno(0x28) constant EMEDIUMTYPE (line 1809) | EMEDIUMTYPE = syscall.Errno(0x7c) constant EMFILE (line 1810) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1811) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1812) | EMSGSIZE = syscall.Errno(0x5a) constant EMULTIHOP (line 1813) | EMULTIHOP = syscall.Errno(0x48) constant ENAMETOOLONG (line 1814) | ENAMETOOLONG = syscall.Errno(0x24) constant ENAVAIL (line 1815) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1816) | ENETDOWN = syscall.Errno(0x64) constant ENETRESET (line 1817) | ENETRESET = syscall.Errno(0x66) constant ENETUNREACH (line 1818) | ENETUNREACH = syscall.Errno(0x65) constant ENFILE (line 1819) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1820) | ENOANO = syscall.Errno(0x37) constant ENOBUFS (line 1821) | ENOBUFS = syscall.Errno(0x69) constant ENOCSI (line 1822) | ENOCSI = syscall.Errno(0x32) constant ENODATA (line 1823) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1824) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1825) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1826) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1827) | ENOKEY = syscall.Errno(0x7e) constant ENOLCK (line 1828) | ENOLCK = syscall.Errno(0x25) constant ENOLINK (line 1829) | ENOLINK = syscall.Errno(0x43) constant ENOMEDIUM (line 1830) | ENOMEDIUM = syscall.Errno(0x7b) constant ENOMEM (line 1831) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1832) | ENOMSG = syscall.Errno(0x2a) constant ENONET (line 1833) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1834) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1835) | ENOPROTOOPT = syscall.Errno(0x5c) constant ENOSPC (line 1836) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1837) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1838) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1839) | ENOSYS = syscall.Errno(0x26) constant ENOTBLK (line 1840) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1841) | ENOTCONN = syscall.Errno(0x6b) constant ENOTDIR (line 1842) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1843) | ENOTEMPTY = syscall.Errno(0x27) constant ENOTNAM (line 1844) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1845) | ENOTRECOVERABLE = syscall.Errno(0x83) constant ENOTSOCK (line 1846) | ENOTSOCK = syscall.Errno(0x58) constant ENOTSUP (line 1847) | ENOTSUP = syscall.Errno(0x5f) constant ENOTTY (line 1848) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1849) | ENOTUNIQ = syscall.Errno(0x4c) constant ENXIO (line 1850) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1851) | EOPNOTSUPP = syscall.Errno(0x5f) constant EOVERFLOW (line 1852) | EOVERFLOW = syscall.Errno(0x4b) constant EOWNERDEAD (line 1853) | EOWNERDEAD = syscall.Errno(0x82) constant EPERM (line 1854) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1855) | EPFNOSUPPORT = syscall.Errno(0x60) constant EPIPE (line 1856) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1857) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1858) | EPROTONOSUPPORT = syscall.Errno(0x5d) constant EPROTOTYPE (line 1859) | EPROTOTYPE = syscall.Errno(0x5b) constant ERANGE (line 1860) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1861) | EREMCHG = syscall.Errno(0x4e) constant EREMOTE (line 1862) | EREMOTE = syscall.Errno(0x42) constant EREMOTEIO (line 1863) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1864) | ERESTART = syscall.Errno(0x55) constant ERFKILL (line 1865) | ERFKILL = syscall.Errno(0x84) constant EROFS (line 1866) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1867) | ESHUTDOWN = syscall.Errno(0x6c) constant ESOCKTNOSUPPORT (line 1868) | ESOCKTNOSUPPORT = syscall.Errno(0x5e) constant ESPIPE (line 1869) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1870) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1871) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1872) | ESTALE = syscall.Errno(0x74) constant ESTRPIPE (line 1873) | ESTRPIPE = syscall.Errno(0x56) constant ETIME (line 1874) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1875) | ETIMEDOUT = syscall.Errno(0x6e) constant ETOOMANYREFS (line 1876) | ETOOMANYREFS = syscall.Errno(0x6d) constant ETXTBSY (line 1877) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1878) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1879) | EUNATCH = syscall.Errno(0x31) constant EUSERS (line 1880) | EUSERS = syscall.Errno(0x57) constant EWOULDBLOCK (line 1881) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1882) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1883) | EXFULL = syscall.Errno(0x36) constant SIGABRT (line 1888) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1889) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1890) | SIGBUS = syscall.Signal(0x7) constant SIGCHLD (line 1891) | SIGCHLD = syscall.Signal(0x11) constant SIGCLD (line 1892) | SIGCLD = syscall.Signal(0x11) constant SIGCONT (line 1893) | SIGCONT = syscall.Signal(0x12) constant SIGFPE (line 1894) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1895) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1896) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1897) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1898) | SIGIO = syscall.Signal(0x1d) constant SIGIOT (line 1899) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1900) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1901) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1902) | SIGPOLL = syscall.Signal(0x1d) constant SIGPROF (line 1903) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1904) | SIGPWR = syscall.Signal(0x1e) constant SIGQUIT (line 1905) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1906) | SIGSEGV = syscall.Signal(0xb) constant SIGSTKFLT (line 1907) | SIGSTKFLT = syscall.Signal(0x10) constant SIGSTOP (line 1908) | SIGSTOP = syscall.Signal(0x13) constant SIGSYS (line 1909) | SIGSYS = syscall.Signal(0x1f) constant SIGTERM (line 1910) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1911) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1912) | SIGTSTP = syscall.Signal(0x14) constant SIGTTIN (line 1913) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1914) | SIGTTOU = syscall.Signal(0x16) constant SIGUNUSED (line 1915) | SIGUNUSED = syscall.Signal(0x1f) constant SIGURG (line 1916) | SIGURG = syscall.Signal(0x17) constant SIGUSR1 (line 1917) | SIGUSR1 = syscall.Signal(0xa) constant SIGUSR2 (line 1918) | SIGUSR2 = syscall.Signal(0xc) constant SIGVTALRM (line 1919) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1920) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1921) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1922) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go constant AF_ALG (line 14) | AF_ALG = 0x26 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x5 constant AF_ASH (line 16) | AF_ASH = 0x12 constant AF_ATMPVC (line 17) | AF_ATMPVC = 0x8 constant AF_ATMSVC (line 18) | AF_ATMSVC = 0x14 constant AF_AX25 (line 19) | AF_AX25 = 0x3 constant AF_BLUETOOTH (line 20) | AF_BLUETOOTH = 0x1f constant AF_BRIDGE (line 21) | AF_BRIDGE = 0x7 constant AF_CAIF (line 22) | AF_CAIF = 0x25 constant AF_CAN (line 23) | AF_CAN = 0x1d constant AF_DECnet (line 24) | AF_DECnet = 0xc constant AF_ECONET (line 25) | AF_ECONET = 0x13 constant AF_FILE (line 26) | AF_FILE = 0x1 constant AF_IB (line 27) | AF_IB = 0x1b constant AF_IEEE802154 (line 28) | AF_IEEE802154 = 0x24 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0xa constant AF_IPX (line 31) | AF_IPX = 0x4 constant AF_IRDA (line 32) | AF_IRDA = 0x17 constant AF_ISDN (line 33) | AF_ISDN = 0x22 constant AF_IUCV (line 34) | AF_IUCV = 0x20 constant AF_KCM (line 35) | AF_KCM = 0x29 constant AF_KEY (line 36) | AF_KEY = 0xf constant AF_LLC (line 37) | AF_LLC = 0x1a constant AF_LOCAL (line 38) | AF_LOCAL = 0x1 constant AF_MAX (line 39) | AF_MAX = 0x2a constant AF_MPLS (line 40) | AF_MPLS = 0x1c constant AF_NETBEUI (line 41) | AF_NETBEUI = 0xd constant AF_NETLINK (line 42) | AF_NETLINK = 0x10 constant AF_NETROM (line 43) | AF_NETROM = 0x6 constant AF_NFC (line 44) | AF_NFC = 0x27 constant AF_PACKET (line 45) | AF_PACKET = 0x11 constant AF_PHONET (line 46) | AF_PHONET = 0x23 constant AF_PPPOX (line 47) | AF_PPPOX = 0x18 constant AF_RDS (line 48) | AF_RDS = 0x15 constant AF_ROSE (line 49) | AF_ROSE = 0xb constant AF_ROUTE (line 50) | AF_ROUTE = 0x10 constant AF_RXRPC (line 51) | AF_RXRPC = 0x21 constant AF_SECURITY (line 52) | AF_SECURITY = 0xe constant AF_SNA (line 53) | AF_SNA = 0x16 constant AF_TIPC (line 54) | AF_TIPC = 0x1e constant AF_UNIX (line 55) | AF_UNIX = 0x1 constant AF_UNSPEC (line 56) | AF_UNSPEC = 0x0 constant AF_VSOCK (line 57) | AF_VSOCK = 0x28 constant AF_WANPIPE (line 58) | AF_WANPIPE = 0x19 constant AF_X25 (line 59) | AF_X25 = 0x9 constant ALG_OP_DECRYPT (line 60) | ALG_OP_DECRYPT = 0x0 constant ALG_OP_ENCRYPT (line 61) | ALG_OP_ENCRYPT = 0x1 constant ALG_SET_AEAD_ASSOCLEN (line 62) | ALG_SET_AEAD_ASSOCLEN = 0x4 constant ALG_SET_AEAD_AUTHSIZE (line 63) | ALG_SET_AEAD_AUTHSIZE = 0x5 constant ALG_SET_IV (line 64) | ALG_SET_IV = 0x2 constant ALG_SET_KEY (line 65) | ALG_SET_KEY = 0x1 constant ALG_SET_OP (line 66) | ALG_SET_OP = 0x3 constant ARPHRD_6LOWPAN (line 67) | ARPHRD_6LOWPAN = 0x339 constant ARPHRD_ADAPT (line 68) | ARPHRD_ADAPT = 0x108 constant ARPHRD_APPLETLK (line 69) | ARPHRD_APPLETLK = 0x8 constant ARPHRD_ARCNET (line 70) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ASH (line 71) | ARPHRD_ASH = 0x30d constant ARPHRD_ATM (line 72) | ARPHRD_ATM = 0x13 constant ARPHRD_AX25 (line 73) | ARPHRD_AX25 = 0x3 constant ARPHRD_BIF (line 74) | ARPHRD_BIF = 0x307 constant ARPHRD_CAIF (line 75) | ARPHRD_CAIF = 0x336 constant ARPHRD_CAN (line 76) | ARPHRD_CAN = 0x118 constant ARPHRD_CHAOS (line 77) | ARPHRD_CHAOS = 0x5 constant ARPHRD_CISCO (line 78) | ARPHRD_CISCO = 0x201 constant ARPHRD_CSLIP (line 79) | ARPHRD_CSLIP = 0x101 constant ARPHRD_CSLIP6 (line 80) | ARPHRD_CSLIP6 = 0x103 constant ARPHRD_DDCMP (line 81) | ARPHRD_DDCMP = 0x205 constant ARPHRD_DLCI (line 82) | ARPHRD_DLCI = 0xf constant ARPHRD_ECONET (line 83) | ARPHRD_ECONET = 0x30e constant ARPHRD_EETHER (line 84) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 85) | ARPHRD_ETHER = 0x1 constant ARPHRD_EUI64 (line 86) | ARPHRD_EUI64 = 0x1b constant ARPHRD_FCAL (line 87) | ARPHRD_FCAL = 0x311 constant ARPHRD_FCFABRIC (line 88) | ARPHRD_FCFABRIC = 0x313 constant ARPHRD_FCPL (line 89) | ARPHRD_FCPL = 0x312 constant ARPHRD_FCPP (line 90) | ARPHRD_FCPP = 0x310 constant ARPHRD_FDDI (line 91) | ARPHRD_FDDI = 0x306 constant ARPHRD_FRAD (line 92) | ARPHRD_FRAD = 0x302 constant ARPHRD_HDLC (line 93) | ARPHRD_HDLC = 0x201 constant ARPHRD_HIPPI (line 94) | ARPHRD_HIPPI = 0x30c constant ARPHRD_HWX25 (line 95) | ARPHRD_HWX25 = 0x110 constant ARPHRD_IEEE1394 (line 96) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 97) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IEEE80211 (line 98) | ARPHRD_IEEE80211 = 0x321 constant ARPHRD_IEEE80211_PRISM (line 99) | ARPHRD_IEEE80211_PRISM = 0x322 constant ARPHRD_IEEE80211_RADIOTAP (line 100) | ARPHRD_IEEE80211_RADIOTAP = 0x323 constant ARPHRD_IEEE802154 (line 101) | ARPHRD_IEEE802154 = 0x324 constant ARPHRD_IEEE802154_MONITOR (line 102) | ARPHRD_IEEE802154_MONITOR = 0x325 constant ARPHRD_IEEE802_TR (line 103) | ARPHRD_IEEE802_TR = 0x320 constant ARPHRD_INFINIBAND (line 104) | ARPHRD_INFINIBAND = 0x20 constant ARPHRD_IP6GRE (line 105) | ARPHRD_IP6GRE = 0x337 constant ARPHRD_IPDDP (line 106) | ARPHRD_IPDDP = 0x309 constant ARPHRD_IPGRE (line 107) | ARPHRD_IPGRE = 0x30a constant ARPHRD_IRDA (line 108) | ARPHRD_IRDA = 0x30f constant ARPHRD_LAPB (line 109) | ARPHRD_LAPB = 0x204 constant ARPHRD_LOCALTLK (line 110) | ARPHRD_LOCALTLK = 0x305 constant ARPHRD_LOOPBACK (line 111) | ARPHRD_LOOPBACK = 0x304 constant ARPHRD_METRICOM (line 112) | ARPHRD_METRICOM = 0x17 constant ARPHRD_NETLINK (line 113) | ARPHRD_NETLINK = 0x338 constant ARPHRD_NETROM (line 114) | ARPHRD_NETROM = 0x0 constant ARPHRD_NONE (line 115) | ARPHRD_NONE = 0xfffe constant ARPHRD_PHONET (line 116) | ARPHRD_PHONET = 0x334 constant ARPHRD_PHONET_PIPE (line 117) | ARPHRD_PHONET_PIPE = 0x335 constant ARPHRD_PIMREG (line 118) | ARPHRD_PIMREG = 0x30b constant ARPHRD_PPP (line 119) | ARPHRD_PPP = 0x200 constant ARPHRD_PRONET (line 120) | ARPHRD_PRONET = 0x4 constant ARPHRD_RAWHDLC (line 121) | ARPHRD_RAWHDLC = 0x206 constant ARPHRD_ROSE (line 122) | ARPHRD_ROSE = 0x10e constant ARPHRD_RSRVD (line 123) | ARPHRD_RSRVD = 0x104 constant ARPHRD_SIT (line 124) | ARPHRD_SIT = 0x308 constant ARPHRD_SKIP (line 125) | ARPHRD_SKIP = 0x303 constant ARPHRD_SLIP (line 126) | ARPHRD_SLIP = 0x100 constant ARPHRD_SLIP6 (line 127) | ARPHRD_SLIP6 = 0x102 constant ARPHRD_TUNNEL (line 128) | ARPHRD_TUNNEL = 0x300 constant ARPHRD_TUNNEL6 (line 129) | ARPHRD_TUNNEL6 = 0x301 constant ARPHRD_VOID (line 130) | ARPHRD_VOID = 0xffff constant ARPHRD_X25 (line 131) | ARPHRD_X25 = 0x10f constant ASI_LEON_DFLUSH (line 132) | ASI_LEON_DFLUSH = 0x11 constant ASI_LEON_IFLUSH (line 133) | ASI_LEON_IFLUSH = 0x10 constant ASI_LEON_MMUFLUSH (line 134) | ASI_LEON_MMUFLUSH = 0x18 constant B0 (line 135) | B0 = 0x0 constant B1000000 (line 136) | B1000000 = 0x100c constant B110 (line 137) | B110 = 0x3 constant B115200 (line 138) | B115200 = 0x1002 constant B1152000 (line 139) | B1152000 = 0x100d constant B1200 (line 140) | B1200 = 0x9 constant B134 (line 141) | B134 = 0x4 constant B150 (line 142) | B150 = 0x5 constant B1500000 (line 143) | B1500000 = 0x100e constant B153600 (line 144) | B153600 = 0x1006 constant B1800 (line 145) | B1800 = 0xa constant B19200 (line 146) | B19200 = 0xe constant B200 (line 147) | B200 = 0x6 constant B2000000 (line 148) | B2000000 = 0x100f constant B230400 (line 149) | B230400 = 0x1003 constant B2400 (line 150) | B2400 = 0xb constant B300 (line 151) | B300 = 0x7 constant B307200 (line 152) | B307200 = 0x1007 constant B38400 (line 153) | B38400 = 0xf constant B460800 (line 154) | B460800 = 0x1004 constant B4800 (line 155) | B4800 = 0xc constant B50 (line 156) | B50 = 0x1 constant B500000 (line 157) | B500000 = 0x100a constant B57600 (line 158) | B57600 = 0x1001 constant B576000 (line 159) | B576000 = 0x100b constant B600 (line 160) | B600 = 0x8 constant B614400 (line 161) | B614400 = 0x1008 constant B75 (line 162) | B75 = 0x2 constant B76800 (line 163) | B76800 = 0x1005 constant B921600 (line 164) | B921600 = 0x1009 constant B9600 (line 165) | B9600 = 0xd constant BLKBSZGET (line 166) | BLKBSZGET = 0x80081270 constant BLKBSZSET (line 167) | BLKBSZSET = 0x40081271 constant BLKFLSBUF (line 168) | BLKFLSBUF = 0x1261 constant BLKFRAGET (line 169) | BLKFRAGET = 0x1265 constant BLKFRASET (line 170) | BLKFRASET = 0x1264 constant BLKGETSIZE (line 171) | BLKGETSIZE = 0x1260 constant BLKGETSIZE64 (line 172) | BLKGETSIZE64 = 0x80081272 constant BLKRAGET (line 173) | BLKRAGET = 0x1263 constant BLKRASET (line 174) | BLKRASET = 0x1262 constant BLKROGET (line 175) | BLKROGET = 0x125e constant BLKROSET (line 176) | BLKROSET = 0x125d constant BLKRRPART (line 177) | BLKRRPART = 0x125f constant BLKSECTGET (line 178) | BLKSECTGET = 0x1267 constant BLKSECTSET (line 179) | BLKSECTSET = 0x1266 constant BLKSSZGET (line 180) | BLKSSZGET = 0x1268 constant BOTHER (line 181) | BOTHER = 0x1000 constant BPF_A (line 182) | BPF_A = 0x10 constant BPF_ABS (line 183) | BPF_ABS = 0x20 constant BPF_ADD (line 184) | BPF_ADD = 0x0 constant BPF_ALU (line 185) | BPF_ALU = 0x4 constant BPF_AND (line 186) | BPF_AND = 0x50 constant BPF_B (line 187) | BPF_B = 0x10 constant BPF_DIV (line 188) | BPF_DIV = 0x30 constant BPF_H (line 189) | BPF_H = 0x8 constant BPF_IMM (line 190) | BPF_IMM = 0x0 constant BPF_IND (line 191) | BPF_IND = 0x40 constant BPF_JA (line 192) | BPF_JA = 0x0 constant BPF_JEQ (line 193) | BPF_JEQ = 0x10 constant BPF_JGE (line 194) | BPF_JGE = 0x30 constant BPF_JGT (line 195) | BPF_JGT = 0x20 constant BPF_JMP (line 196) | BPF_JMP = 0x5 constant BPF_JSET (line 197) | BPF_JSET = 0x40 constant BPF_K (line 198) | BPF_K = 0x0 constant BPF_LD (line 199) | BPF_LD = 0x0 constant BPF_LDX (line 200) | BPF_LDX = 0x1 constant BPF_LEN (line 201) | BPF_LEN = 0x80 constant BPF_LL_OFF (line 202) | BPF_LL_OFF = -0x200000 constant BPF_LSH (line 203) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 204) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXINSNS (line 205) | BPF_MAXINSNS = 0x1000 constant BPF_MEM (line 206) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 207) | BPF_MEMWORDS = 0x10 constant BPF_MINOR_VERSION (line 208) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 209) | BPF_MISC = 0x7 constant BPF_MOD (line 210) | BPF_MOD = 0x90 constant BPF_MSH (line 211) | BPF_MSH = 0xa0 constant BPF_MUL (line 212) | BPF_MUL = 0x20 constant BPF_NEG (line 213) | BPF_NEG = 0x80 constant BPF_NET_OFF (line 214) | BPF_NET_OFF = -0x100000 constant BPF_OR (line 215) | BPF_OR = 0x40 constant BPF_RET (line 216) | BPF_RET = 0x6 constant BPF_RSH (line 217) | BPF_RSH = 0x70 constant BPF_ST (line 218) | BPF_ST = 0x2 constant BPF_STX (line 219) | BPF_STX = 0x3 constant BPF_SUB (line 220) | BPF_SUB = 0x10 constant BPF_TAX (line 221) | BPF_TAX = 0x0 constant BPF_TXA (line 222) | BPF_TXA = 0x80 constant BPF_W (line 223) | BPF_W = 0x0 constant BPF_X (line 224) | BPF_X = 0x8 constant BPF_XOR (line 225) | BPF_XOR = 0xa0 constant BRKINT (line 226) | BRKINT = 0x2 constant BS0 (line 227) | BS0 = 0x0 constant BS1 (line 228) | BS1 = 0x2000 constant BSDLY (line 229) | BSDLY = 0x2000 constant CAN_BCM (line 230) | CAN_BCM = 0x2 constant CAN_EFF_FLAG (line 231) | CAN_EFF_FLAG = 0x80000000 constant CAN_EFF_ID_BITS (line 232) | CAN_EFF_ID_BITS = 0x1d constant CAN_EFF_MASK (line 233) | CAN_EFF_MASK = 0x1fffffff constant CAN_ERR_FLAG (line 234) | CAN_ERR_FLAG = 0x20000000 constant CAN_ERR_MASK (line 235) | CAN_ERR_MASK = 0x1fffffff constant CAN_INV_FILTER (line 236) | CAN_INV_FILTER = 0x20000000 constant CAN_ISOTP (line 237) | CAN_ISOTP = 0x6 constant CAN_MAX_DLC (line 238) | CAN_MAX_DLC = 0x8 constant CAN_MAX_DLEN (line 239) | CAN_MAX_DLEN = 0x8 constant CAN_MCNET (line 240) | CAN_MCNET = 0x5 constant CAN_MTU (line 241) | CAN_MTU = 0x10 constant CAN_NPROTO (line 242) | CAN_NPROTO = 0x7 constant CAN_RAW (line 243) | CAN_RAW = 0x1 constant CAN_RTR_FLAG (line 244) | CAN_RTR_FLAG = 0x40000000 constant CAN_SFF_ID_BITS (line 245) | CAN_SFF_ID_BITS = 0xb constant CAN_SFF_MASK (line 246) | CAN_SFF_MASK = 0x7ff constant CAN_TP16 (line 247) | CAN_TP16 = 0x3 constant CAN_TP20 (line 248) | CAN_TP20 = 0x4 constant CBAUD (line 249) | CBAUD = 0x100f constant CBAUDEX (line 250) | CBAUDEX = 0x1000 constant CFLUSH (line 251) | CFLUSH = 0xf constant CIBAUD (line 252) | CIBAUD = 0x100f0000 constant CLOCAL (line 253) | CLOCAL = 0x800 constant CLOCK_BOOTTIME (line 254) | CLOCK_BOOTTIME = 0x7 constant CLOCK_BOOTTIME_ALARM (line 255) | CLOCK_BOOTTIME_ALARM = 0x9 constant CLOCK_DEFAULT (line 256) | CLOCK_DEFAULT = 0x0 constant CLOCK_EXT (line 257) | CLOCK_EXT = 0x1 constant CLOCK_INT (line 258) | CLOCK_INT = 0x2 constant CLOCK_MONOTONIC (line 259) | CLOCK_MONOTONIC = 0x1 constant CLOCK_MONOTONIC_COARSE (line 260) | CLOCK_MONOTONIC_COARSE = 0x6 constant CLOCK_MONOTONIC_RAW (line 261) | CLOCK_MONOTONIC_RAW = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 262) | CLOCK_PROCESS_CPUTIME_ID = 0x2 constant CLOCK_REALTIME (line 263) | CLOCK_REALTIME = 0x0 constant CLOCK_REALTIME_ALARM (line 264) | CLOCK_REALTIME_ALARM = 0x8 constant CLOCK_REALTIME_COARSE (line 265) | CLOCK_REALTIME_COARSE = 0x5 constant CLOCK_TAI (line 266) | CLOCK_TAI = 0xb constant CLOCK_THREAD_CPUTIME_ID (line 267) | CLOCK_THREAD_CPUTIME_ID = 0x3 constant CLOCK_TXFROMRX (line 268) | CLOCK_TXFROMRX = 0x4 constant CLOCK_TXINT (line 269) | CLOCK_TXINT = 0x3 constant CLONE_CHILD_CLEARTID (line 270) | CLONE_CHILD_CLEARTID = 0x200000 constant CLONE_CHILD_SETTID (line 271) | CLONE_CHILD_SETTID = 0x1000000 constant CLONE_DETACHED (line 272) | CLONE_DETACHED = 0x400000 constant CLONE_FILES (line 273) | CLONE_FILES = 0x400 constant CLONE_FS (line 274) | CLONE_FS = 0x200 constant CLONE_IO (line 275) | CLONE_IO = 0x80000000 constant CLONE_NEWCGROUP (line 276) | CLONE_NEWCGROUP = 0x2000000 constant CLONE_NEWIPC (line 277) | CLONE_NEWIPC = 0x8000000 constant CLONE_NEWNET (line 278) | CLONE_NEWNET = 0x40000000 constant CLONE_NEWNS (line 279) | CLONE_NEWNS = 0x20000 constant CLONE_NEWPID (line 280) | CLONE_NEWPID = 0x20000000 constant CLONE_NEWUSER (line 281) | CLONE_NEWUSER = 0x10000000 constant CLONE_NEWUTS (line 282) | CLONE_NEWUTS = 0x4000000 constant CLONE_PARENT (line 283) | CLONE_PARENT = 0x8000 constant CLONE_PARENT_SETTID (line 284) | CLONE_PARENT_SETTID = 0x100000 constant CLONE_PTRACE (line 285) | CLONE_PTRACE = 0x2000 constant CLONE_SETTLS (line 286) | CLONE_SETTLS = 0x80000 constant CLONE_SIGHAND (line 287) | CLONE_SIGHAND = 0x800 constant CLONE_SYSVSEM (line 288) | CLONE_SYSVSEM = 0x40000 constant CLONE_THREAD (line 289) | CLONE_THREAD = 0x10000 constant CLONE_UNTRACED (line 290) | CLONE_UNTRACED = 0x800000 constant CLONE_VFORK (line 291) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 292) | CLONE_VM = 0x100 constant CMSPAR (line 293) | CMSPAR = 0x40000000 constant CR0 (line 294) | CR0 = 0x0 constant CR1 (line 295) | CR1 = 0x200 constant CR2 (line 296) | CR2 = 0x400 constant CR3 (line 297) | CR3 = 0x600 constant CRDLY (line 298) | CRDLY = 0x600 constant CREAD (line 299) | CREAD = 0x80 constant CRTSCTS (line 300) | CRTSCTS = 0x80000000 constant CS5 (line 301) | CS5 = 0x0 constant CS6 (line 302) | CS6 = 0x10 constant CS7 (line 303) | CS7 = 0x20 constant CS8 (line 304) | CS8 = 0x30 constant CSIGNAL (line 305) | CSIGNAL = 0xff constant CSIZE (line 306) | CSIZE = 0x30 constant CSTART (line 307) | CSTART = 0x11 constant CSTATUS (line 308) | CSTATUS = 0x0 constant CSTOP (line 309) | CSTOP = 0x13 constant CSTOPB (line 310) | CSTOPB = 0x40 constant CSUSP (line 311) | CSUSP = 0x1a constant DT_BLK (line 312) | DT_BLK = 0x6 constant DT_CHR (line 313) | DT_CHR = 0x2 constant DT_DIR (line 314) | DT_DIR = 0x4 constant DT_FIFO (line 315) | DT_FIFO = 0x1 constant DT_LNK (line 316) | DT_LNK = 0xa constant DT_REG (line 317) | DT_REG = 0x8 constant DT_SOCK (line 318) | DT_SOCK = 0xc constant DT_UNKNOWN (line 319) | DT_UNKNOWN = 0x0 constant DT_WHT (line 320) | DT_WHT = 0xe constant ECHO (line 321) | ECHO = 0x8 constant ECHOCTL (line 322) | ECHOCTL = 0x200 constant ECHOE (line 323) | ECHOE = 0x10 constant ECHOK (line 324) | ECHOK = 0x20 constant ECHOKE (line 325) | ECHOKE = 0x800 constant ECHONL (line 326) | ECHONL = 0x40 constant ECHOPRT (line 327) | ECHOPRT = 0x400 constant EMT_TAGOVF (line 328) | EMT_TAGOVF = 0x1 constant ENCODING_DEFAULT (line 329) | ENCODING_DEFAULT = 0x0 constant ENCODING_FM_MARK (line 330) | ENCODING_FM_MARK = 0x3 constant ENCODING_FM_SPACE (line 331) | ENCODING_FM_SPACE = 0x4 constant ENCODING_MANCHESTER (line 332) | ENCODING_MANCHESTER = 0x5 constant ENCODING_NRZ (line 333) | ENCODING_NRZ = 0x1 constant ENCODING_NRZI (line 334) | ENCODING_NRZI = 0x2 constant EPOLLERR (line 335) | EPOLLERR = 0x8 constant EPOLLET (line 336) | EPOLLET = 0x80000000 constant EPOLLEXCLUSIVE (line 337) | EPOLLEXCLUSIVE = 0x10000000 constant EPOLLHUP (line 338) | EPOLLHUP = 0x10 constant EPOLLIN (line 339) | EPOLLIN = 0x1 constant EPOLLMSG (line 340) | EPOLLMSG = 0x400 constant EPOLLONESHOT (line 341) | EPOLLONESHOT = 0x40000000 constant EPOLLOUT (line 342) | EPOLLOUT = 0x4 constant EPOLLPRI (line 343) | EPOLLPRI = 0x2 constant EPOLLRDBAND (line 344) | EPOLLRDBAND = 0x80 constant EPOLLRDHUP (line 345) | EPOLLRDHUP = 0x2000 constant EPOLLRDNORM (line 346) | EPOLLRDNORM = 0x40 constant EPOLLWAKEUP (line 347) | EPOLLWAKEUP = 0x20000000 constant EPOLLWRBAND (line 348) | EPOLLWRBAND = 0x200 constant EPOLLWRNORM (line 349) | EPOLLWRNORM = 0x100 constant EPOLL_CLOEXEC (line 350) | EPOLL_CLOEXEC = 0x400000 constant EPOLL_CTL_ADD (line 351) | EPOLL_CTL_ADD = 0x1 constant EPOLL_CTL_DEL (line 352) | EPOLL_CTL_DEL = 0x2 constant EPOLL_CTL_MOD (line 353) | EPOLL_CTL_MOD = 0x3 constant ETH_P_1588 (line 354) | ETH_P_1588 = 0x88f7 constant ETH_P_8021AD (line 355) | ETH_P_8021AD = 0x88a8 constant ETH_P_8021AH (line 356) | ETH_P_8021AH = 0x88e7 constant ETH_P_8021Q (line 357) | ETH_P_8021Q = 0x8100 constant ETH_P_80221 (line 358) | ETH_P_80221 = 0x8917 constant ETH_P_802_2 (line 359) | ETH_P_802_2 = 0x4 constant ETH_P_802_3 (line 360) | ETH_P_802_3 = 0x1 constant ETH_P_802_3_MIN (line 361) | ETH_P_802_3_MIN = 0x600 constant ETH_P_802_EX1 (line 362) | ETH_P_802_EX1 = 0x88b5 constant ETH_P_AARP (line 363) | ETH_P_AARP = 0x80f3 constant ETH_P_AF_IUCV (line 364) | ETH_P_AF_IUCV = 0xfbfb constant ETH_P_ALL (line 365) | ETH_P_ALL = 0x3 constant ETH_P_AOE (line 366) | ETH_P_AOE = 0x88a2 constant ETH_P_ARCNET (line 367) | ETH_P_ARCNET = 0x1a constant ETH_P_ARP (line 368) | ETH_P_ARP = 0x806 constant ETH_P_ATALK (line 369) | ETH_P_ATALK = 0x809b constant ETH_P_ATMFATE (line 370) | ETH_P_ATMFATE = 0x8884 constant ETH_P_ATMMPOA (line 371) | ETH_P_ATMMPOA = 0x884c constant ETH_P_AX25 (line 372) | ETH_P_AX25 = 0x2 constant ETH_P_BATMAN (line 373) | ETH_P_BATMAN = 0x4305 constant ETH_P_BPQ (line 374) | ETH_P_BPQ = 0x8ff constant ETH_P_CAIF (line 375) | ETH_P_CAIF = 0xf7 constant ETH_P_CAN (line 376) | ETH_P_CAN = 0xc constant ETH_P_CANFD (line 377) | ETH_P_CANFD = 0xd constant ETH_P_CONTROL (line 378) | ETH_P_CONTROL = 0x16 constant ETH_P_CUST (line 379) | ETH_P_CUST = 0x6006 constant ETH_P_DDCMP (line 380) | ETH_P_DDCMP = 0x6 constant ETH_P_DEC (line 381) | ETH_P_DEC = 0x6000 constant ETH_P_DIAG (line 382) | ETH_P_DIAG = 0x6005 constant ETH_P_DNA_DL (line 383) | ETH_P_DNA_DL = 0x6001 constant ETH_P_DNA_RC (line 384) | ETH_P_DNA_RC = 0x6002 constant ETH_P_DNA_RT (line 385) | ETH_P_DNA_RT = 0x6003 constant ETH_P_DSA (line 386) | ETH_P_DSA = 0x1b constant ETH_P_ECONET (line 387) | ETH_P_ECONET = 0x18 constant ETH_P_EDSA (line 388) | ETH_P_EDSA = 0xdada constant ETH_P_FCOE (line 389) | ETH_P_FCOE = 0x8906 constant ETH_P_FIP (line 390) | ETH_P_FIP = 0x8914 constant ETH_P_HDLC (line 391) | ETH_P_HDLC = 0x19 constant ETH_P_HSR (line 392) | ETH_P_HSR = 0x892f constant ETH_P_IEEE802154 (line 393) | ETH_P_IEEE802154 = 0xf6 constant ETH_P_IEEEPUP (line 394) | ETH_P_IEEEPUP = 0xa00 constant ETH_P_IEEEPUPAT (line 395) | ETH_P_IEEEPUPAT = 0xa01 constant ETH_P_IP (line 396) | ETH_P_IP = 0x800 constant ETH_P_IPV6 (line 397) | ETH_P_IPV6 = 0x86dd constant ETH_P_IPX (line 398) | ETH_P_IPX = 0x8137 constant ETH_P_IRDA (line 399) | ETH_P_IRDA = 0x17 constant ETH_P_LAT (line 400) | ETH_P_LAT = 0x6004 constant ETH_P_LINK_CTL (line 401) | ETH_P_LINK_CTL = 0x886c constant ETH_P_LOCALTALK (line 402) | ETH_P_LOCALTALK = 0x9 constant ETH_P_LOOP (line 403) | ETH_P_LOOP = 0x60 constant ETH_P_LOOPBACK (line 404) | ETH_P_LOOPBACK = 0x9000 constant ETH_P_MACSEC (line 405) | ETH_P_MACSEC = 0x88e5 constant ETH_P_MOBITEX (line 406) | ETH_P_MOBITEX = 0x15 constant ETH_P_MPLS_MC (line 407) | ETH_P_MPLS_MC = 0x8848 constant ETH_P_MPLS_UC (line 408) | ETH_P_MPLS_UC = 0x8847 constant ETH_P_MVRP (line 409) | ETH_P_MVRP = 0x88f5 constant ETH_P_PAE (line 410) | ETH_P_PAE = 0x888e constant ETH_P_PAUSE (line 411) | ETH_P_PAUSE = 0x8808 constant ETH_P_PHONET (line 412) | ETH_P_PHONET = 0xf5 constant ETH_P_PPPTALK (line 413) | ETH_P_PPPTALK = 0x10 constant ETH_P_PPP_DISC (line 414) | ETH_P_PPP_DISC = 0x8863 constant ETH_P_PPP_MP (line 415) | ETH_P_PPP_MP = 0x8 constant ETH_P_PPP_SES (line 416) | ETH_P_PPP_SES = 0x8864 constant ETH_P_PRP (line 417) | ETH_P_PRP = 0x88fb constant ETH_P_PUP (line 418) | ETH_P_PUP = 0x200 constant ETH_P_PUPAT (line 419) | ETH_P_PUPAT = 0x201 constant ETH_P_QINQ1 (line 420) | ETH_P_QINQ1 = 0x9100 constant ETH_P_QINQ2 (line 421) | ETH_P_QINQ2 = 0x9200 constant ETH_P_QINQ3 (line 422) | ETH_P_QINQ3 = 0x9300 constant ETH_P_RARP (line 423) | ETH_P_RARP = 0x8035 constant ETH_P_SCA (line 424) | ETH_P_SCA = 0x6007 constant ETH_P_SLOW (line 425) | ETH_P_SLOW = 0x8809 constant ETH_P_SNAP (line 426) | ETH_P_SNAP = 0x5 constant ETH_P_TDLS (line 427) | ETH_P_TDLS = 0x890d constant ETH_P_TEB (line 428) | ETH_P_TEB = 0x6558 constant ETH_P_TIPC (line 429) | ETH_P_TIPC = 0x88ca constant ETH_P_TRAILER (line 430) | ETH_P_TRAILER = 0x1c constant ETH_P_TR_802_2 (line 431) | ETH_P_TR_802_2 = 0x11 constant ETH_P_TSN (line 432) | ETH_P_TSN = 0x22f0 constant ETH_P_WAN_PPP (line 433) | ETH_P_WAN_PPP = 0x7 constant ETH_P_WCCP (line 434) | ETH_P_WCCP = 0x883e constant ETH_P_X25 (line 435) | ETH_P_X25 = 0x805 constant ETH_P_XDSA (line 436) | ETH_P_XDSA = 0xf8 constant EXTA (line 437) | EXTA = 0xe constant EXTB (line 438) | EXTB = 0xf constant EXTPROC (line 439) | EXTPROC = 0x10000 constant FALLOC_FL_COLLAPSE_RANGE (line 440) | FALLOC_FL_COLLAPSE_RANGE = 0x8 constant FALLOC_FL_INSERT_RANGE (line 441) | FALLOC_FL_INSERT_RANGE = 0x20 constant FALLOC_FL_KEEP_SIZE (line 442) | FALLOC_FL_KEEP_SIZE = 0x1 constant FALLOC_FL_NO_HIDE_STALE (line 443) | FALLOC_FL_NO_HIDE_STALE = 0x4 constant FALLOC_FL_PUNCH_HOLE (line 444) | FALLOC_FL_PUNCH_HOLE = 0x2 constant FALLOC_FL_ZERO_RANGE (line 445) | FALLOC_FL_ZERO_RANGE = 0x10 constant FD_CLOEXEC (line 446) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 447) | FD_SETSIZE = 0x400 constant FF0 (line 448) | FF0 = 0x0 constant FF1 (line 449) | FF1 = 0x8000 constant FFDLY (line 450) | FFDLY = 0x8000 constant FLUSHO (line 451) | FLUSHO = 0x2000 constant F_DUPFD (line 452) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 453) | F_DUPFD_CLOEXEC = 0x406 constant F_EXLCK (line 454) | F_EXLCK = 0x4 constant F_GETFD (line 455) | F_GETFD = 0x1 constant F_GETFL (line 456) | F_GETFL = 0x3 constant F_GETLEASE (line 457) | F_GETLEASE = 0x401 constant F_GETLK (line 458) | F_GETLK = 0x7 constant F_GETLK64 (line 459) | F_GETLK64 = 0x7 constant F_GETOWN (line 460) | F_GETOWN = 0x5 constant F_GETOWN_EX (line 461) | F_GETOWN_EX = 0x10 constant F_GETPIPE_SZ (line 462) | F_GETPIPE_SZ = 0x408 constant F_GETSIG (line 463) | F_GETSIG = 0xb constant F_LOCK (line 464) | F_LOCK = 0x1 constant F_NOTIFY (line 465) | F_NOTIFY = 0x402 constant F_OFD_GETLK (line 466) | F_OFD_GETLK = 0x24 constant F_OFD_SETLK (line 467) | F_OFD_SETLK = 0x25 constant F_OFD_SETLKW (line 468) | F_OFD_SETLKW = 0x26 constant F_OK (line 469) | F_OK = 0x0 constant F_RDLCK (line 470) | F_RDLCK = 0x1 constant F_SETFD (line 471) | F_SETFD = 0x2 constant F_SETFL (line 472) | F_SETFL = 0x4 constant F_SETLEASE (line 473) | F_SETLEASE = 0x400 constant F_SETLK (line 474) | F_SETLK = 0x8 constant F_SETLK64 (line 475) | F_SETLK64 = 0x8 constant F_SETLKW (line 476) | F_SETLKW = 0x9 constant F_SETLKW64 (line 477) | F_SETLKW64 = 0x9 constant F_SETOWN (line 478) | F_SETOWN = 0x6 constant F_SETOWN_EX (line 479) | F_SETOWN_EX = 0xf constant F_SETPIPE_SZ (line 480) | F_SETPIPE_SZ = 0x407 constant F_SETSIG (line 481) | F_SETSIG = 0xa constant F_SHLCK (line 482) | F_SHLCK = 0x8 constant F_TEST (line 483) | F_TEST = 0x3 constant F_TLOCK (line 484) | F_TLOCK = 0x2 constant F_ULOCK (line 485) | F_ULOCK = 0x0 constant F_UNLCK (line 486) | F_UNLCK = 0x3 constant F_WRLCK (line 487) | F_WRLCK = 0x2 constant GRND_NONBLOCK (line 488) | GRND_NONBLOCK = 0x1 constant GRND_RANDOM (line 489) | GRND_RANDOM = 0x2 constant HUPCL (line 490) | HUPCL = 0x400 constant IBSHIFT (line 491) | IBSHIFT = 0x10 constant ICANON (line 492) | ICANON = 0x2 constant ICMPV6_FILTER (line 493) | ICMPV6_FILTER = 0x1 constant ICRNL (line 494) | ICRNL = 0x100 constant IEXTEN (line 495) | IEXTEN = 0x8000 constant IFA_F_DADFAILED (line 496) | IFA_F_DADFAILED = 0x8 constant IFA_F_DEPRECATED (line 497) | IFA_F_DEPRECATED = 0x20 constant IFA_F_HOMEADDRESS (line 498) | IFA_F_HOMEADDRESS = 0x10 constant IFA_F_MANAGETEMPADDR (line 499) | IFA_F_MANAGETEMPADDR = 0x100 constant IFA_F_MCAUTOJOIN (line 500) | IFA_F_MCAUTOJOIN = 0x400 constant IFA_F_NODAD (line 501) | IFA_F_NODAD = 0x2 constant IFA_F_NOPREFIXROUTE (line 502) | IFA_F_NOPREFIXROUTE = 0x200 constant IFA_F_OPTIMISTIC (line 503) | IFA_F_OPTIMISTIC = 0x4 constant IFA_F_PERMANENT (line 504) | IFA_F_PERMANENT = 0x80 constant IFA_F_SECONDARY (line 505) | IFA_F_SECONDARY = 0x1 constant IFA_F_STABLE_PRIVACY (line 506) | IFA_F_STABLE_PRIVACY = 0x800 constant IFA_F_TEMPORARY (line 507) | IFA_F_TEMPORARY = 0x1 constant IFA_F_TENTATIVE (line 508) | IFA_F_TENTATIVE = 0x40 constant IFA_MAX (line 509) | IFA_MAX = 0x8 constant IFF_ALLMULTI (line 510) | IFF_ALLMULTI = 0x200 constant IFF_ATTACH_QUEUE (line 511) | IFF_ATTACH_QUEUE = 0x200 constant IFF_AUTOMEDIA (line 512) | IFF_AUTOMEDIA = 0x4000 constant IFF_BROADCAST (line 513) | IFF_BROADCAST = 0x2 constant IFF_DEBUG (line 514) | IFF_DEBUG = 0x4 constant IFF_DETACH_QUEUE (line 515) | IFF_DETACH_QUEUE = 0x400 constant IFF_DORMANT (line 516) | IFF_DORMANT = 0x20000 constant IFF_DYNAMIC (line 517) | IFF_DYNAMIC = 0x8000 constant IFF_ECHO (line 518) | IFF_ECHO = 0x40000 constant IFF_LOOPBACK (line 519) | IFF_LOOPBACK = 0x8 constant IFF_LOWER_UP (line 520) | IFF_LOWER_UP = 0x10000 constant IFF_MASTER (line 521) | IFF_MASTER = 0x400 constant IFF_MULTICAST (line 522) | IFF_MULTICAST = 0x1000 constant IFF_MULTI_QUEUE (line 523) | IFF_MULTI_QUEUE = 0x100 constant IFF_NOARP (line 524) | IFF_NOARP = 0x80 constant IFF_NOFILTER (line 525) | IFF_NOFILTER = 0x1000 constant IFF_NOTRAILERS (line 526) | IFF_NOTRAILERS = 0x20 constant IFF_NO_PI (line 527) | IFF_NO_PI = 0x1000 constant IFF_ONE_QUEUE (line 528) | IFF_ONE_QUEUE = 0x2000 constant IFF_PERSIST (line 529) | IFF_PERSIST = 0x800 constant IFF_POINTOPOINT (line 530) | IFF_POINTOPOINT = 0x10 constant IFF_PORTSEL (line 531) | IFF_PORTSEL = 0x2000 constant IFF_PROMISC (line 532) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 533) | IFF_RUNNING = 0x40 constant IFF_SLAVE (line 534) | IFF_SLAVE = 0x800 constant IFF_TAP (line 535) | IFF_TAP = 0x2 constant IFF_TUN (line 536) | IFF_TUN = 0x1 constant IFF_TUN_EXCL (line 537) | IFF_TUN_EXCL = 0x8000 constant IFF_UP (line 538) | IFF_UP = 0x1 constant IFF_VNET_HDR (line 539) | IFF_VNET_HDR = 0x4000 constant IFF_VOLATILE (line 540) | IFF_VOLATILE = 0x70c5a constant IFNAMSIZ (line 541) | IFNAMSIZ = 0x10 constant IGNBRK (line 542) | IGNBRK = 0x1 constant IGNCR (line 543) | IGNCR = 0x80 constant IGNPAR (line 544) | IGNPAR = 0x4 constant IMAXBEL (line 545) | IMAXBEL = 0x2000 constant INLCR (line 546) | INLCR = 0x40 constant INPCK (line 547) | INPCK = 0x10 constant IN_ACCESS (line 548) | IN_ACCESS = 0x1 constant IN_ALL_EVENTS (line 549) | IN_ALL_EVENTS = 0xfff constant IN_ATTRIB (line 550) | IN_ATTRIB = 0x4 constant IN_CLASSA_HOST (line 551) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 552) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 553) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 554) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 555) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 556) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 557) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 558) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 559) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 560) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 561) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLOEXEC (line 562) | IN_CLOEXEC = 0x400000 constant IN_CLOSE (line 563) | IN_CLOSE = 0x18 constant IN_CLOSE_NOWRITE (line 564) | IN_CLOSE_NOWRITE = 0x10 constant IN_CLOSE_WRITE (line 565) | IN_CLOSE_WRITE = 0x8 constant IN_CREATE (line 566) | IN_CREATE = 0x100 constant IN_DELETE (line 567) | IN_DELETE = 0x200 constant IN_DELETE_SELF (line 568) | IN_DELETE_SELF = 0x400 constant IN_DONT_FOLLOW (line 569) | IN_DONT_FOLLOW = 0x2000000 constant IN_EXCL_UNLINK (line 570) | IN_EXCL_UNLINK = 0x4000000 constant IN_IGNORED (line 571) | IN_IGNORED = 0x8000 constant IN_ISDIR (line 572) | IN_ISDIR = 0x40000000 constant IN_LOOPBACKNET (line 573) | IN_LOOPBACKNET = 0x7f constant IN_MASK_ADD (line 574) | IN_MASK_ADD = 0x20000000 constant IN_MODIFY (line 575) | IN_MODIFY = 0x2 constant IN_MOVE (line 576) | IN_MOVE = 0xc0 constant IN_MOVED_FROM (line 577) | IN_MOVED_FROM = 0x40 constant IN_MOVED_TO (line 578) | IN_MOVED_TO = 0x80 constant IN_MOVE_SELF (line 579) | IN_MOVE_SELF = 0x800 constant IN_NONBLOCK (line 580) | IN_NONBLOCK = 0x4000 constant IN_ONESHOT (line 581) | IN_ONESHOT = 0x80000000 constant IN_ONLYDIR (line 582) | IN_ONLYDIR = 0x1000000 constant IN_OPEN (line 583) | IN_OPEN = 0x20 constant IN_Q_OVERFLOW (line 584) | IN_Q_OVERFLOW = 0x4000 constant IN_UNMOUNT (line 585) | IN_UNMOUNT = 0x2000 constant IPPROTO_AH (line 586) | IPPROTO_AH = 0x33 constant IPPROTO_BEETPH (line 587) | IPPROTO_BEETPH = 0x5e constant IPPROTO_COMP (line 588) | IPPROTO_COMP = 0x6c constant IPPROTO_DCCP (line 589) | IPPROTO_DCCP = 0x21 constant IPPROTO_DSTOPTS (line 590) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 591) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 592) | IPPROTO_ENCAP = 0x62 constant IPPROTO_ESP (line 593) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 594) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GRE (line 595) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 596) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 597) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 598) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 599) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 600) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 601) | IPPROTO_IP = 0x0 constant IPPROTO_IPIP (line 602) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV6 (line 603) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MH (line 604) | IPPROTO_MH = 0x87 constant IPPROTO_MPLS (line 605) | IPPROTO_MPLS = 0x89 constant IPPROTO_MTP (line 606) | IPPROTO_MTP = 0x5c constant IPPROTO_NONE (line 607) | IPPROTO_NONE = 0x3b constant IPPROTO_PIM (line 608) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 609) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 610) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 611) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 612) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 613) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 614) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 615) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 616) | IPPROTO_UDP = 0x11 constant IPPROTO_UDPLITE (line 617) | IPPROTO_UDPLITE = 0x88 constant IPV6_2292DSTOPTS (line 618) | IPV6_2292DSTOPTS = 0x4 constant IPV6_2292HOPLIMIT (line 619) | IPV6_2292HOPLIMIT = 0x8 constant IPV6_2292HOPOPTS (line 620) | IPV6_2292HOPOPTS = 0x3 constant IPV6_2292PKTINFO (line 621) | IPV6_2292PKTINFO = 0x2 constant IPV6_2292PKTOPTIONS (line 622) | IPV6_2292PKTOPTIONS = 0x6 constant IPV6_2292RTHDR (line 623) | IPV6_2292RTHDR = 0x5 constant IPV6_ADDRFORM (line 624) | IPV6_ADDRFORM = 0x1 constant IPV6_ADD_MEMBERSHIP (line 625) | IPV6_ADD_MEMBERSHIP = 0x14 constant IPV6_AUTHHDR (line 626) | IPV6_AUTHHDR = 0xa constant IPV6_CHECKSUM (line 627) | IPV6_CHECKSUM = 0x7 constant IPV6_DONTFRAG (line 628) | IPV6_DONTFRAG = 0x3e constant IPV6_DROP_MEMBERSHIP (line 629) | IPV6_DROP_MEMBERSHIP = 0x15 constant IPV6_DSTOPTS (line 630) | IPV6_DSTOPTS = 0x3b constant IPV6_HDRINCL (line 631) | IPV6_HDRINCL = 0x24 constant IPV6_HOPLIMIT (line 632) | IPV6_HOPLIMIT = 0x34 constant IPV6_HOPOPTS (line 633) | IPV6_HOPOPTS = 0x36 constant IPV6_IPSEC_POLICY (line 634) | IPV6_IPSEC_POLICY = 0x22 constant IPV6_JOIN_ANYCAST (line 635) | IPV6_JOIN_ANYCAST = 0x1b constant IPV6_JOIN_GROUP (line 636) | IPV6_JOIN_GROUP = 0x14 constant IPV6_LEAVE_ANYCAST (line 637) | IPV6_LEAVE_ANYCAST = 0x1c constant IPV6_LEAVE_GROUP (line 638) | IPV6_LEAVE_GROUP = 0x15 constant IPV6_MTU (line 639) | IPV6_MTU = 0x18 constant IPV6_MTU_DISCOVER (line 640) | IPV6_MTU_DISCOVER = 0x17 constant IPV6_MULTICAST_HOPS (line 641) | IPV6_MULTICAST_HOPS = 0x12 constant IPV6_MULTICAST_IF (line 642) | IPV6_MULTICAST_IF = 0x11 constant IPV6_MULTICAST_LOOP (line 643) | IPV6_MULTICAST_LOOP = 0x13 constant IPV6_NEXTHOP (line 644) | IPV6_NEXTHOP = 0x9 constant IPV6_PATHMTU (line 645) | IPV6_PATHMTU = 0x3d constant IPV6_PKTINFO (line 646) | IPV6_PKTINFO = 0x32 constant IPV6_PMTUDISC_DO (line 647) | IPV6_PMTUDISC_DO = 0x2 constant IPV6_PMTUDISC_DONT (line 648) | IPV6_PMTUDISC_DONT = 0x0 constant IPV6_PMTUDISC_INTERFACE (line 649) | IPV6_PMTUDISC_INTERFACE = 0x4 constant IPV6_PMTUDISC_OMIT (line 650) | IPV6_PMTUDISC_OMIT = 0x5 constant IPV6_PMTUDISC_PROBE (line 651) | IPV6_PMTUDISC_PROBE = 0x3 constant IPV6_PMTUDISC_WANT (line 652) | IPV6_PMTUDISC_WANT = 0x1 constant IPV6_RECVDSTOPTS (line 653) | IPV6_RECVDSTOPTS = 0x3a constant IPV6_RECVERR (line 654) | IPV6_RECVERR = 0x19 constant IPV6_RECVHOPLIMIT (line 655) | IPV6_RECVHOPLIMIT = 0x33 constant IPV6_RECVHOPOPTS (line 656) | IPV6_RECVHOPOPTS = 0x35 constant IPV6_RECVPATHMTU (line 657) | IPV6_RECVPATHMTU = 0x3c constant IPV6_RECVPKTINFO (line 658) | IPV6_RECVPKTINFO = 0x31 constant IPV6_RECVRTHDR (line 659) | IPV6_RECVRTHDR = 0x38 constant IPV6_RECVTCLASS (line 660) | IPV6_RECVTCLASS = 0x42 constant IPV6_ROUTER_ALERT (line 661) | IPV6_ROUTER_ALERT = 0x16 constant IPV6_RTHDR (line 662) | IPV6_RTHDR = 0x39 constant IPV6_RTHDRDSTOPTS (line 663) | IPV6_RTHDRDSTOPTS = 0x37 constant IPV6_RTHDR_LOOSE (line 664) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 665) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 666) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_RXDSTOPTS (line 667) | IPV6_RXDSTOPTS = 0x3b constant IPV6_RXHOPOPTS (line 668) | IPV6_RXHOPOPTS = 0x36 constant IPV6_TCLASS (line 669) | IPV6_TCLASS = 0x43 constant IPV6_UNICAST_HOPS (line 670) | IPV6_UNICAST_HOPS = 0x10 constant IPV6_V6ONLY (line 671) | IPV6_V6ONLY = 0x1a constant IPV6_XFRM_POLICY (line 672) | IPV6_XFRM_POLICY = 0x23 constant IP_ADD_MEMBERSHIP (line 673) | IP_ADD_MEMBERSHIP = 0x23 constant IP_ADD_SOURCE_MEMBERSHIP (line 674) | IP_ADD_SOURCE_MEMBERSHIP = 0x27 constant IP_BIND_ADDRESS_NO_PORT (line 675) | IP_BIND_ADDRESS_NO_PORT = 0x18 constant IP_BLOCK_SOURCE (line 676) | IP_BLOCK_SOURCE = 0x26 constant IP_CHECKSUM (line 677) | IP_CHECKSUM = 0x17 constant IP_DEFAULT_MULTICAST_LOOP (line 678) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 679) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 680) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 681) | IP_DROP_MEMBERSHIP = 0x24 constant IP_DROP_SOURCE_MEMBERSHIP (line 682) | IP_DROP_SOURCE_MEMBERSHIP = 0x28 constant IP_FREEBIND (line 683) | IP_FREEBIND = 0xf constant IP_HDRINCL (line 684) | IP_HDRINCL = 0x3 constant IP_IPSEC_POLICY (line 685) | IP_IPSEC_POLICY = 0x10 constant IP_MAXPACKET (line 686) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 687) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 688) | IP_MF = 0x2000 constant IP_MINTTL (line 689) | IP_MINTTL = 0x15 constant IP_MSFILTER (line 690) | IP_MSFILTER = 0x29 constant IP_MSS (line 691) | IP_MSS = 0x240 constant IP_MTU (line 692) | IP_MTU = 0xe constant IP_MTU_DISCOVER (line 693) | IP_MTU_DISCOVER = 0xa constant IP_MULTICAST_ALL (line 694) | IP_MULTICAST_ALL = 0x31 constant IP_MULTICAST_IF (line 695) | IP_MULTICAST_IF = 0x20 constant IP_MULTICAST_LOOP (line 696) | IP_MULTICAST_LOOP = 0x22 constant IP_MULTICAST_TTL (line 697) | IP_MULTICAST_TTL = 0x21 constant IP_NODEFRAG (line 698) | IP_NODEFRAG = 0x16 constant IP_OFFMASK (line 699) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 700) | IP_OPTIONS = 0x4 constant IP_ORIGDSTADDR (line 701) | IP_ORIGDSTADDR = 0x14 constant IP_PASSSEC (line 702) | IP_PASSSEC = 0x12 constant IP_PKTINFO (line 703) | IP_PKTINFO = 0x8 constant IP_PKTOPTIONS (line 704) | IP_PKTOPTIONS = 0x9 constant IP_PMTUDISC (line 705) | IP_PMTUDISC = 0xa constant IP_PMTUDISC_DO (line 706) | IP_PMTUDISC_DO = 0x2 constant IP_PMTUDISC_DONT (line 707) | IP_PMTUDISC_DONT = 0x0 constant IP_PMTUDISC_INTERFACE (line 708) | IP_PMTUDISC_INTERFACE = 0x4 constant IP_PMTUDISC_OMIT (line 709) | IP_PMTUDISC_OMIT = 0x5 constant IP_PMTUDISC_PROBE (line 710) | IP_PMTUDISC_PROBE = 0x3 constant IP_PMTUDISC_WANT (line 711) | IP_PMTUDISC_WANT = 0x1 constant IP_RECVERR (line 712) | IP_RECVERR = 0xb constant IP_RECVOPTS (line 713) | IP_RECVOPTS = 0x6 constant IP_RECVORIGDSTADDR (line 714) | IP_RECVORIGDSTADDR = 0x14 constant IP_RECVRETOPTS (line 715) | IP_RECVRETOPTS = 0x7 constant IP_RECVTOS (line 716) | IP_RECVTOS = 0xd constant IP_RECVTTL (line 717) | IP_RECVTTL = 0xc constant IP_RETOPTS (line 718) | IP_RETOPTS = 0x7 constant IP_RF (line 719) | IP_RF = 0x8000 constant IP_ROUTER_ALERT (line 720) | IP_ROUTER_ALERT = 0x5 constant IP_TOS (line 721) | IP_TOS = 0x1 constant IP_TRANSPARENT (line 722) | IP_TRANSPARENT = 0x13 constant IP_TTL (line 723) | IP_TTL = 0x2 constant IP_UNBLOCK_SOURCE (line 724) | IP_UNBLOCK_SOURCE = 0x25 constant IP_UNICAST_IF (line 725) | IP_UNICAST_IF = 0x32 constant IP_XFRM_POLICY (line 726) | IP_XFRM_POLICY = 0x11 constant ISIG (line 727) | ISIG = 0x1 constant ISTRIP (line 728) | ISTRIP = 0x20 constant IUCLC (line 729) | IUCLC = 0x200 constant IUTF8 (line 730) | IUTF8 = 0x4000 constant IXANY (line 731) | IXANY = 0x800 constant IXOFF (line 732) | IXOFF = 0x1000 constant IXON (line 733) | IXON = 0x400 constant LINUX_REBOOT_CMD_CAD_OFF (line 734) | LINUX_REBOOT_CMD_CAD_OFF = 0x0 constant LINUX_REBOOT_CMD_CAD_ON (line 735) | LINUX_REBOOT_CMD_CAD_ON = 0x89abcdef constant LINUX_REBOOT_CMD_HALT (line 736) | LINUX_REBOOT_CMD_HALT = 0xcdef0123 constant LINUX_REBOOT_CMD_KEXEC (line 737) | LINUX_REBOOT_CMD_KEXEC = 0x45584543 constant LINUX_REBOOT_CMD_POWER_OFF (line 738) | LINUX_REBOOT_CMD_POWER_OFF = 0x4321fedc constant LINUX_REBOOT_CMD_RESTART (line 739) | LINUX_REBOOT_CMD_RESTART = 0x1234567 constant LINUX_REBOOT_CMD_RESTART2 (line 740) | LINUX_REBOOT_CMD_RESTART2 = 0xa1b2c3d4 constant LINUX_REBOOT_CMD_SW_SUSPEND (line 741) | LINUX_REBOOT_CMD_SW_SUSPEND = 0xd000fce2 constant LINUX_REBOOT_MAGIC1 (line 742) | LINUX_REBOOT_MAGIC1 = 0xfee1dead constant LINUX_REBOOT_MAGIC2 (line 743) | LINUX_REBOOT_MAGIC2 = 0x28121969 constant LOCK_EX (line 744) | LOCK_EX = 0x2 constant LOCK_NB (line 745) | LOCK_NB = 0x4 constant LOCK_SH (line 746) | LOCK_SH = 0x1 constant LOCK_UN (line 747) | LOCK_UN = 0x8 constant MADV_DODUMP (line 748) | MADV_DODUMP = 0x11 constant MADV_DOFORK (line 749) | MADV_DOFORK = 0xb constant MADV_DONTDUMP (line 750) | MADV_DONTDUMP = 0x10 constant MADV_DONTFORK (line 751) | MADV_DONTFORK = 0xa constant MADV_DONTNEED (line 752) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 753) | MADV_FREE = 0x8 constant MADV_HUGEPAGE (line 754) | MADV_HUGEPAGE = 0xe constant MADV_HWPOISON (line 755) | MADV_HWPOISON = 0x64 constant MADV_MERGEABLE (line 756) | MADV_MERGEABLE = 0xc constant MADV_NOHUGEPAGE (line 757) | MADV_NOHUGEPAGE = 0xf constant MADV_NORMAL (line 758) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 759) | MADV_RANDOM = 0x1 constant MADV_REMOVE (line 760) | MADV_REMOVE = 0x9 constant MADV_SEQUENTIAL (line 761) | MADV_SEQUENTIAL = 0x2 constant MADV_UNMERGEABLE (line 762) | MADV_UNMERGEABLE = 0xd constant MADV_WILLNEED (line 763) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 764) | MAP_ANON = 0x20 constant MAP_ANONYMOUS (line 765) | MAP_ANONYMOUS = 0x20 constant MAP_DENYWRITE (line 766) | MAP_DENYWRITE = 0x800 constant MAP_EXECUTABLE (line 767) | MAP_EXECUTABLE = 0x1000 constant MAP_FILE (line 768) | MAP_FILE = 0x0 constant MAP_FIXED (line 769) | MAP_FIXED = 0x10 constant MAP_GROWSDOWN (line 770) | MAP_GROWSDOWN = 0x200 constant MAP_HUGETLB (line 771) | MAP_HUGETLB = 0x40000 constant MAP_HUGE_MASK (line 772) | MAP_HUGE_MASK = 0x3f constant MAP_HUGE_SHIFT (line 773) | MAP_HUGE_SHIFT = 0x1a constant MAP_LOCKED (line 774) | MAP_LOCKED = 0x100 constant MAP_NONBLOCK (line 775) | MAP_NONBLOCK = 0x10000 constant MAP_NORESERVE (line 776) | MAP_NORESERVE = 0x40 constant MAP_POPULATE (line 777) | MAP_POPULATE = 0x8000 constant MAP_PRIVATE (line 778) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 779) | MAP_RENAME = 0x20 constant MAP_SHARED (line 780) | MAP_SHARED = 0x1 constant MAP_STACK (line 781) | MAP_STACK = 0x20000 constant MAP_TYPE (line 782) | MAP_TYPE = 0xf constant MCL_CURRENT (line 783) | MCL_CURRENT = 0x2000 constant MCL_FUTURE (line 784) | MCL_FUTURE = 0x4000 constant MCL_ONFAULT (line 785) | MCL_ONFAULT = 0x8000 constant MNT_DETACH (line 786) | MNT_DETACH = 0x2 constant MNT_EXPIRE (line 787) | MNT_EXPIRE = 0x4 constant MNT_FORCE (line 788) | MNT_FORCE = 0x1 constant MSG_BATCH (line 789) | MSG_BATCH = 0x40000 constant MSG_CMSG_CLOEXEC (line 790) | MSG_CMSG_CLOEXEC = 0x40000000 constant MSG_CONFIRM (line 791) | MSG_CONFIRM = 0x800 constant MSG_CTRUNC (line 792) | MSG_CTRUNC = 0x8 constant MSG_DONTROUTE (line 793) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 794) | MSG_DONTWAIT = 0x40 constant MSG_EOR (line 795) | MSG_EOR = 0x80 constant MSG_ERRQUEUE (line 796) | MSG_ERRQUEUE = 0x2000 constant MSG_FASTOPEN (line 797) | MSG_FASTOPEN = 0x20000000 constant MSG_FIN (line 798) | MSG_FIN = 0x200 constant MSG_MORE (line 799) | MSG_MORE = 0x8000 constant MSG_NOSIGNAL (line 800) | MSG_NOSIGNAL = 0x4000 constant MSG_OOB (line 801) | MSG_OOB = 0x1 constant MSG_PEEK (line 802) | MSG_PEEK = 0x2 constant MSG_PROXY (line 803) | MSG_PROXY = 0x10 constant MSG_RST (line 804) | MSG_RST = 0x1000 constant MSG_SYN (line 805) | MSG_SYN = 0x400 constant MSG_TRUNC (line 806) | MSG_TRUNC = 0x20 constant MSG_TRYHARD (line 807) | MSG_TRYHARD = 0x4 constant MSG_WAITALL (line 808) | MSG_WAITALL = 0x100 constant MSG_WAITFORONE (line 809) | MSG_WAITFORONE = 0x10000 constant MS_ACTIVE (line 810) | MS_ACTIVE = 0x40000000 constant MS_ASYNC (line 811) | MS_ASYNC = 0x1 constant MS_BIND (line 812) | MS_BIND = 0x1000 constant MS_DIRSYNC (line 813) | MS_DIRSYNC = 0x80 constant MS_INVALIDATE (line 814) | MS_INVALIDATE = 0x2 constant MS_I_VERSION (line 815) | MS_I_VERSION = 0x800000 constant MS_KERNMOUNT (line 816) | MS_KERNMOUNT = 0x400000 constant MS_LAZYTIME (line 817) | MS_LAZYTIME = 0x2000000 constant MS_MANDLOCK (line 818) | MS_MANDLOCK = 0x40 constant MS_MGC_MSK (line 819) | MS_MGC_MSK = 0xffff0000 constant MS_MGC_VAL (line 820) | MS_MGC_VAL = 0xc0ed0000 constant MS_MOVE (line 821) | MS_MOVE = 0x2000 constant MS_NOATIME (line 822) | MS_NOATIME = 0x400 constant MS_NODEV (line 823) | MS_NODEV = 0x4 constant MS_NODIRATIME (line 824) | MS_NODIRATIME = 0x800 constant MS_NOEXEC (line 825) | MS_NOEXEC = 0x8 constant MS_NOSUID (line 826) | MS_NOSUID = 0x2 constant MS_NOUSER (line 827) | MS_NOUSER = -0x80000000 constant MS_POSIXACL (line 828) | MS_POSIXACL = 0x10000 constant MS_PRIVATE (line 829) | MS_PRIVATE = 0x40000 constant MS_RDONLY (line 830) | MS_RDONLY = 0x1 constant MS_REC (line 831) | MS_REC = 0x4000 constant MS_RELATIME (line 832) | MS_RELATIME = 0x200000 constant MS_REMOUNT (line 833) | MS_REMOUNT = 0x20 constant MS_RMT_MASK (line 834) | MS_RMT_MASK = 0x2800051 constant MS_SHARED (line 835) | MS_SHARED = 0x100000 constant MS_SILENT (line 836) | MS_SILENT = 0x8000 constant MS_SLAVE (line 837) | MS_SLAVE = 0x80000 constant MS_STRICTATIME (line 838) | MS_STRICTATIME = 0x1000000 constant MS_SYNC (line 839) | MS_SYNC = 0x4 constant MS_SYNCHRONOUS (line 840) | MS_SYNCHRONOUS = 0x10 constant MS_UNBINDABLE (line 841) | MS_UNBINDABLE = 0x20000 constant NAME_MAX (line 842) | NAME_MAX = 0xff constant NETLINK_ADD_MEMBERSHIP (line 843) | NETLINK_ADD_MEMBERSHIP = 0x1 constant NETLINK_AUDIT (line 844) | NETLINK_AUDIT = 0x9 constant NETLINK_BROADCAST_ERROR (line 845) | NETLINK_BROADCAST_ERROR = 0x4 constant NETLINK_CAP_ACK (line 846) | NETLINK_CAP_ACK = 0xa constant NETLINK_CONNECTOR (line 847) | NETLINK_CONNECTOR = 0xb constant NETLINK_CRYPTO (line 848) | NETLINK_CRYPTO = 0x15 constant NETLINK_DNRTMSG (line 849) | NETLINK_DNRTMSG = 0xe constant NETLINK_DROP_MEMBERSHIP (line 850) | NETLINK_DROP_MEMBERSHIP = 0x2 constant NETLINK_ECRYPTFS (line 851) | NETLINK_ECRYPTFS = 0x13 constant NETLINK_FIB_LOOKUP (line 852) | NETLINK_FIB_LOOKUP = 0xa constant NETLINK_FIREWALL (line 853) | NETLINK_FIREWALL = 0x3 constant NETLINK_GENERIC (line 854) | NETLINK_GENERIC = 0x10 constant NETLINK_INET_DIAG (line 855) | NETLINK_INET_DIAG = 0x4 constant NETLINK_IP6_FW (line 856) | NETLINK_IP6_FW = 0xd constant NETLINK_ISCSI (line 857) | NETLINK_ISCSI = 0x8 constant NETLINK_KOBJECT_UEVENT (line 858) | NETLINK_KOBJECT_UEVENT = 0xf constant NETLINK_LISTEN_ALL_NSID (line 859) | NETLINK_LISTEN_ALL_NSID = 0x8 constant NETLINK_LIST_MEMBERSHIPS (line 860) | NETLINK_LIST_MEMBERSHIPS = 0x9 constant NETLINK_NETFILTER (line 861) | NETLINK_NETFILTER = 0xc constant NETLINK_NFLOG (line 862) | NETLINK_NFLOG = 0x5 constant NETLINK_NO_ENOBUFS (line 863) | NETLINK_NO_ENOBUFS = 0x5 constant NETLINK_PKTINFO (line 864) | NETLINK_PKTINFO = 0x3 constant NETLINK_RDMA (line 865) | NETLINK_RDMA = 0x14 constant NETLINK_ROUTE (line 866) | NETLINK_ROUTE = 0x0 constant NETLINK_RX_RING (line 867) | NETLINK_RX_RING = 0x6 constant NETLINK_SCSITRANSPORT (line 868) | NETLINK_SCSITRANSPORT = 0x12 constant NETLINK_SELINUX (line 869) | NETLINK_SELINUX = 0x7 constant NETLINK_SOCK_DIAG (line 870) | NETLINK_SOCK_DIAG = 0x4 constant NETLINK_TX_RING (line 871) | NETLINK_TX_RING = 0x7 constant NETLINK_UNUSED (line 872) | NETLINK_UNUSED = 0x1 constant NETLINK_USERSOCK (line 873) | NETLINK_USERSOCK = 0x2 constant NETLINK_XFRM (line 874) | NETLINK_XFRM = 0x6 constant NL0 (line 875) | NL0 = 0x0 constant NL1 (line 876) | NL1 = 0x100 constant NLA_ALIGNTO (line 877) | NLA_ALIGNTO = 0x4 constant NLA_F_NESTED (line 878) | NLA_F_NESTED = 0x8000 constant NLA_F_NET_BYTEORDER (line 879) | NLA_F_NET_BYTEORDER = 0x4000 constant NLA_HDRLEN (line 880) | NLA_HDRLEN = 0x4 constant NLDLY (line 881) | NLDLY = 0x100 constant NLMSG_ALIGNTO (line 882) | NLMSG_ALIGNTO = 0x4 constant NLMSG_DONE (line 883) | NLMSG_DONE = 0x3 constant NLMSG_ERROR (line 884) | NLMSG_ERROR = 0x2 constant NLMSG_HDRLEN (line 885) | NLMSG_HDRLEN = 0x10 constant NLMSG_MIN_TYPE (line 886) | NLMSG_MIN_TYPE = 0x10 constant NLMSG_NOOP (line 887) | NLMSG_NOOP = 0x1 constant NLMSG_OVERRUN (line 888) | NLMSG_OVERRUN = 0x4 constant NLM_F_ACK (line 889) | NLM_F_ACK = 0x4 constant NLM_F_APPEND (line 890) | NLM_F_APPEND = 0x800 constant NLM_F_ATOMIC (line 891) | NLM_F_ATOMIC = 0x400 constant NLM_F_CREATE (line 892) | NLM_F_CREATE = 0x400 constant NLM_F_DUMP (line 893) | NLM_F_DUMP = 0x300 constant NLM_F_DUMP_FILTERED (line 894) | NLM_F_DUMP_FILTERED = 0x20 constant NLM_F_DUMP_INTR (line 895) | NLM_F_DUMP_INTR = 0x10 constant NLM_F_ECHO (line 896) | NLM_F_ECHO = 0x8 constant NLM_F_EXCL (line 897) | NLM_F_EXCL = 0x200 constant NLM_F_MATCH (line 898) | NLM_F_MATCH = 0x200 constant NLM_F_MULTI (line 899) | NLM_F_MULTI = 0x2 constant NLM_F_REPLACE (line 900) | NLM_F_REPLACE = 0x100 constant NLM_F_REQUEST (line 901) | NLM_F_REQUEST = 0x1 constant NLM_F_ROOT (line 902) | NLM_F_ROOT = 0x100 constant NOFLSH (line 903) | NOFLSH = 0x80 constant OCRNL (line 904) | OCRNL = 0x8 constant OFDEL (line 905) | OFDEL = 0x80 constant OFILL (line 906) | OFILL = 0x40 constant OLCUC (line 907) | OLCUC = 0x2 constant ONLCR (line 908) | ONLCR = 0x4 constant ONLRET (line 909) | ONLRET = 0x20 constant ONOCR (line 910) | ONOCR = 0x10 constant OPOST (line 911) | OPOST = 0x1 constant O_ACCMODE (line 912) | O_ACCMODE = 0x3 constant O_APPEND (line 913) | O_APPEND = 0x8 constant O_ASYNC (line 914) | O_ASYNC = 0x40 constant O_CLOEXEC (line 915) | O_CLOEXEC = 0x400000 constant O_CREAT (line 916) | O_CREAT = 0x200 constant O_DIRECT (line 917) | O_DIRECT = 0x100000 constant O_DIRECTORY (line 918) | O_DIRECTORY = 0x10000 constant O_DSYNC (line 919) | O_DSYNC = 0x2000 constant O_EXCL (line 920) | O_EXCL = 0x800 constant O_FSYNC (line 921) | O_FSYNC = 0x802000 constant O_LARGEFILE (line 922) | O_LARGEFILE = 0x0 constant O_NDELAY (line 923) | O_NDELAY = 0x4004 constant O_NOATIME (line 924) | O_NOATIME = 0x200000 constant O_NOCTTY (line 925) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 926) | O_NOFOLLOW = 0x20000 constant O_NONBLOCK (line 927) | O_NONBLOCK = 0x4000 constant O_PATH (line 928) | O_PATH = 0x1000000 constant O_RDONLY (line 929) | O_RDONLY = 0x0 constant O_RDWR (line 930) | O_RDWR = 0x2 constant O_RSYNC (line 931) | O_RSYNC = 0x802000 constant O_SYNC (line 932) | O_SYNC = 0x802000 constant O_TMPFILE (line 933) | O_TMPFILE = 0x2010000 constant O_TRUNC (line 934) | O_TRUNC = 0x400 constant O_WRONLY (line 935) | O_WRONLY = 0x1 constant PACKET_ADD_MEMBERSHIP (line 936) | PACKET_ADD_MEMBERSHIP = 0x1 constant PACKET_AUXDATA (line 937) | PACKET_AUXDATA = 0x8 constant PACKET_BROADCAST (line 938) | PACKET_BROADCAST = 0x1 constant PACKET_COPY_THRESH (line 939) | PACKET_COPY_THRESH = 0x7 constant PACKET_DROP_MEMBERSHIP (line 940) | PACKET_DROP_MEMBERSHIP = 0x2 constant PACKET_FANOUT (line 941) | PACKET_FANOUT = 0x12 constant PACKET_FANOUT_CBPF (line 942) | PACKET_FANOUT_CBPF = 0x6 constant PACKET_FANOUT_CPU (line 943) | PACKET_FANOUT_CPU = 0x2 constant PACKET_FANOUT_DATA (line 944) | PACKET_FANOUT_DATA = 0x16 constant PACKET_FANOUT_EBPF (line 945) | PACKET_FANOUT_EBPF = 0x7 constant PACKET_FANOUT_FLAG_DEFRAG (line 946) | PACKET_FANOUT_FLAG_DEFRAG = 0x8000 constant PACKET_FANOUT_FLAG_ROLLOVER (line 947) | PACKET_FANOUT_FLAG_ROLLOVER = 0x1000 constant PACKET_FANOUT_HASH (line 948) | PACKET_FANOUT_HASH = 0x0 constant PACKET_FANOUT_LB (line 949) | PACKET_FANOUT_LB = 0x1 constant PACKET_FANOUT_QM (line 950) | PACKET_FANOUT_QM = 0x5 constant PACKET_FANOUT_RND (line 951) | PACKET_FANOUT_RND = 0x4 constant PACKET_FANOUT_ROLLOVER (line 952) | PACKET_FANOUT_ROLLOVER = 0x3 constant PACKET_FASTROUTE (line 953) | PACKET_FASTROUTE = 0x6 constant PACKET_HDRLEN (line 954) | PACKET_HDRLEN = 0xb constant PACKET_HOST (line 955) | PACKET_HOST = 0x0 constant PACKET_KERNEL (line 956) | PACKET_KERNEL = 0x7 constant PACKET_LOOPBACK (line 957) | PACKET_LOOPBACK = 0x5 constant PACKET_LOSS (line 958) | PACKET_LOSS = 0xe constant PACKET_MR_ALLMULTI (line 959) | PACKET_MR_ALLMULTI = 0x2 constant PACKET_MR_MULTICAST (line 960) | PACKET_MR_MULTICAST = 0x0 constant PACKET_MR_PROMISC (line 961) | PACKET_MR_PROMISC = 0x1 constant PACKET_MR_UNICAST (line 962) | PACKET_MR_UNICAST = 0x3 constant PACKET_MULTICAST (line 963) | PACKET_MULTICAST = 0x2 constant PACKET_ORIGDEV (line 964) | PACKET_ORIGDEV = 0x9 constant PACKET_OTHERHOST (line 965) | PACKET_OTHERHOST = 0x3 constant PACKET_OUTGOING (line 966) | PACKET_OUTGOING = 0x4 constant PACKET_QDISC_BYPASS (line 967) | PACKET_QDISC_BYPASS = 0x14 constant PACKET_RECV_OUTPUT (line 968) | PACKET_RECV_OUTPUT = 0x3 constant PACKET_RESERVE (line 969) | PACKET_RESERVE = 0xc constant PACKET_ROLLOVER_STATS (line 970) | PACKET_ROLLOVER_STATS = 0x15 constant PACKET_RX_RING (line 971) | PACKET_RX_RING = 0x5 constant PACKET_STATISTICS (line 972) | PACKET_STATISTICS = 0x6 constant PACKET_TIMESTAMP (line 973) | PACKET_TIMESTAMP = 0x11 constant PACKET_TX_HAS_OFF (line 974) | PACKET_TX_HAS_OFF = 0x13 constant PACKET_TX_RING (line 975) | PACKET_TX_RING = 0xd constant PACKET_TX_TIMESTAMP (line 976) | PACKET_TX_TIMESTAMP = 0x10 constant PACKET_USER (line 977) | PACKET_USER = 0x6 constant PACKET_VERSION (line 978) | PACKET_VERSION = 0xa constant PACKET_VNET_HDR (line 979) | PACKET_VNET_HDR = 0xf constant PARENB (line 980) | PARENB = 0x100 constant PARITY_CRC16_PR0 (line 981) | PARITY_CRC16_PR0 = 0x2 constant PARITY_CRC16_PR0_CCITT (line 982) | PARITY_CRC16_PR0_CCITT = 0x4 constant PARITY_CRC16_PR1 (line 983) | PARITY_CRC16_PR1 = 0x3 constant PARITY_CRC16_PR1_CCITT (line 984) | PARITY_CRC16_PR1_CCITT = 0x5 constant PARITY_CRC32_PR0_CCITT (line 985) | PARITY_CRC32_PR0_CCITT = 0x6 constant PARITY_CRC32_PR1_CCITT (line 986) | PARITY_CRC32_PR1_CCITT = 0x7 constant PARITY_DEFAULT (line 987) | PARITY_DEFAULT = 0x0 constant PARITY_NONE (line 988) | PARITY_NONE = 0x1 constant PARMRK (line 989) | PARMRK = 0x8 constant PARODD (line 990) | PARODD = 0x200 constant PENDIN (line 991) | PENDIN = 0x4000 constant PRIO_PGRP (line 992) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 993) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 994) | PRIO_USER = 0x2 constant PROT_EXEC (line 995) | PROT_EXEC = 0x4 constant PROT_GROWSDOWN (line 996) | PROT_GROWSDOWN = 0x1000000 constant PROT_GROWSUP (line 997) | PROT_GROWSUP = 0x2000000 constant PROT_NONE (line 998) | PROT_NONE = 0x0 constant PROT_READ (line 999) | PROT_READ = 0x1 constant PROT_WRITE (line 1000) | PROT_WRITE = 0x2 constant PR_CAPBSET_DROP (line 1001) | PR_CAPBSET_DROP = 0x18 constant PR_CAPBSET_READ (line 1002) | PR_CAPBSET_READ = 0x17 constant PR_CAP_AMBIENT (line 1003) | PR_CAP_AMBIENT = 0x2f constant PR_CAP_AMBIENT_CLEAR_ALL (line 1004) | PR_CAP_AMBIENT_CLEAR_ALL = 0x4 constant PR_CAP_AMBIENT_IS_SET (line 1005) | PR_CAP_AMBIENT_IS_SET = 0x1 constant PR_CAP_AMBIENT_LOWER (line 1006) | PR_CAP_AMBIENT_LOWER = 0x3 constant PR_CAP_AMBIENT_RAISE (line 1007) | PR_CAP_AMBIENT_RAISE = 0x2 constant PR_ENDIAN_BIG (line 1008) | PR_ENDIAN_BIG = 0x0 constant PR_ENDIAN_LITTLE (line 1009) | PR_ENDIAN_LITTLE = 0x1 constant PR_ENDIAN_PPC_LITTLE (line 1010) | PR_ENDIAN_PPC_LITTLE = 0x2 constant PR_FPEMU_NOPRINT (line 1011) | PR_FPEMU_NOPRINT = 0x1 constant PR_FPEMU_SIGFPE (line 1012) | PR_FPEMU_SIGFPE = 0x2 constant PR_FP_EXC_ASYNC (line 1013) | PR_FP_EXC_ASYNC = 0x2 constant PR_FP_EXC_DISABLED (line 1014) | PR_FP_EXC_DISABLED = 0x0 constant PR_FP_EXC_DIV (line 1015) | PR_FP_EXC_DIV = 0x10000 constant PR_FP_EXC_INV (line 1016) | PR_FP_EXC_INV = 0x100000 constant PR_FP_EXC_NONRECOV (line 1017) | PR_FP_EXC_NONRECOV = 0x1 constant PR_FP_EXC_OVF (line 1018) | PR_FP_EXC_OVF = 0x20000 constant PR_FP_EXC_PRECISE (line 1019) | PR_FP_EXC_PRECISE = 0x3 constant PR_FP_EXC_RES (line 1020) | PR_FP_EXC_RES = 0x80000 constant PR_FP_EXC_SW_ENABLE (line 1021) | PR_FP_EXC_SW_ENABLE = 0x80 constant PR_FP_EXC_UND (line 1022) | PR_FP_EXC_UND = 0x40000 constant PR_FP_MODE_FR (line 1023) | PR_FP_MODE_FR = 0x1 constant PR_FP_MODE_FRE (line 1024) | PR_FP_MODE_FRE = 0x2 constant PR_GET_CHILD_SUBREAPER (line 1025) | PR_GET_CHILD_SUBREAPER = 0x25 constant PR_GET_DUMPABLE (line 1026) | PR_GET_DUMPABLE = 0x3 constant PR_GET_ENDIAN (line 1027) | PR_GET_ENDIAN = 0x13 constant PR_GET_FPEMU (line 1028) | PR_GET_FPEMU = 0x9 constant PR_GET_FPEXC (line 1029) | PR_GET_FPEXC = 0xb constant PR_GET_FP_MODE (line 1030) | PR_GET_FP_MODE = 0x2e constant PR_GET_KEEPCAPS (line 1031) | PR_GET_KEEPCAPS = 0x7 constant PR_GET_NAME (line 1032) | PR_GET_NAME = 0x10 constant PR_GET_NO_NEW_PRIVS (line 1033) | PR_GET_NO_NEW_PRIVS = 0x27 constant PR_GET_PDEATHSIG (line 1034) | PR_GET_PDEATHSIG = 0x2 constant PR_GET_SECCOMP (line 1035) | PR_GET_SECCOMP = 0x15 constant PR_GET_SECUREBITS (line 1036) | PR_GET_SECUREBITS = 0x1b constant PR_GET_THP_DISABLE (line 1037) | PR_GET_THP_DISABLE = 0x2a constant PR_GET_TID_ADDRESS (line 1038) | PR_GET_TID_ADDRESS = 0x28 constant PR_GET_TIMERSLACK (line 1039) | PR_GET_TIMERSLACK = 0x1e constant PR_GET_TIMING (line 1040) | PR_GET_TIMING = 0xd constant PR_GET_TSC (line 1041) | PR_GET_TSC = 0x19 constant PR_GET_UNALIGN (line 1042) | PR_GET_UNALIGN = 0x5 constant PR_MCE_KILL (line 1043) | PR_MCE_KILL = 0x21 constant PR_MCE_KILL_CLEAR (line 1044) | PR_MCE_KILL_CLEAR = 0x0 constant PR_MCE_KILL_DEFAULT (line 1045) | PR_MCE_KILL_DEFAULT = 0x2 constant PR_MCE_KILL_EARLY (line 1046) | PR_MCE_KILL_EARLY = 0x1 constant PR_MCE_KILL_GET (line 1047) | PR_MCE_KILL_GET = 0x22 constant PR_MCE_KILL_LATE (line 1048) | PR_MCE_KILL_LATE = 0x0 constant PR_MCE_KILL_SET (line 1049) | PR_MCE_KILL_SET = 0x1 constant PR_MPX_DISABLE_MANAGEMENT (line 1050) | PR_MPX_DISABLE_MANAGEMENT = 0x2c constant PR_MPX_ENABLE_MANAGEMENT (line 1051) | PR_MPX_ENABLE_MANAGEMENT = 0x2b constant PR_SET_CHILD_SUBREAPER (line 1052) | PR_SET_CHILD_SUBREAPER = 0x24 constant PR_SET_DUMPABLE (line 1053) | PR_SET_DUMPABLE = 0x4 constant PR_SET_ENDIAN (line 1054) | PR_SET_ENDIAN = 0x14 constant PR_SET_FPEMU (line 1055) | PR_SET_FPEMU = 0xa constant PR_SET_FPEXC (line 1056) | PR_SET_FPEXC = 0xc constant PR_SET_FP_MODE (line 1057) | PR_SET_FP_MODE = 0x2d constant PR_SET_KEEPCAPS (line 1058) | PR_SET_KEEPCAPS = 0x8 constant PR_SET_MM (line 1059) | PR_SET_MM = 0x23 constant PR_SET_MM_ARG_END (line 1060) | PR_SET_MM_ARG_END = 0x9 constant PR_SET_MM_ARG_START (line 1061) | PR_SET_MM_ARG_START = 0x8 constant PR_SET_MM_AUXV (line 1062) | PR_SET_MM_AUXV = 0xc constant PR_SET_MM_BRK (line 1063) | PR_SET_MM_BRK = 0x7 constant PR_SET_MM_END_CODE (line 1064) | PR_SET_MM_END_CODE = 0x2 constant PR_SET_MM_END_DATA (line 1065) | PR_SET_MM_END_DATA = 0x4 constant PR_SET_MM_ENV_END (line 1066) | PR_SET_MM_ENV_END = 0xb constant PR_SET_MM_ENV_START (line 1067) | PR_SET_MM_ENV_START = 0xa constant PR_SET_MM_EXE_FILE (line 1068) | PR_SET_MM_EXE_FILE = 0xd constant PR_SET_MM_MAP (line 1069) | PR_SET_MM_MAP = 0xe constant PR_SET_MM_MAP_SIZE (line 1070) | PR_SET_MM_MAP_SIZE = 0xf constant PR_SET_MM_START_BRK (line 1071) | PR_SET_MM_START_BRK = 0x6 constant PR_SET_MM_START_CODE (line 1072) | PR_SET_MM_START_CODE = 0x1 constant PR_SET_MM_START_DATA (line 1073) | PR_SET_MM_START_DATA = 0x3 constant PR_SET_MM_START_STACK (line 1074) | PR_SET_MM_START_STACK = 0x5 constant PR_SET_NAME (line 1075) | PR_SET_NAME = 0xf constant PR_SET_NO_NEW_PRIVS (line 1076) | PR_SET_NO_NEW_PRIVS = 0x26 constant PR_SET_PDEATHSIG (line 1077) | PR_SET_PDEATHSIG = 0x1 constant PR_SET_PTRACER (line 1078) | PR_SET_PTRACER = 0x59616d61 constant PR_SET_PTRACER_ANY (line 1079) | PR_SET_PTRACER_ANY = -0x1 constant PR_SET_SECCOMP (line 1080) | PR_SET_SECCOMP = 0x16 constant PR_SET_SECUREBITS (line 1081) | PR_SET_SECUREBITS = 0x1c constant PR_SET_THP_DISABLE (line 1082) | PR_SET_THP_DISABLE = 0x29 constant PR_SET_TIMERSLACK (line 1083) | PR_SET_TIMERSLACK = 0x1d constant PR_SET_TIMING (line 1084) | PR_SET_TIMING = 0xe constant PR_SET_TSC (line 1085) | PR_SET_TSC = 0x1a constant PR_SET_UNALIGN (line 1086) | PR_SET_UNALIGN = 0x6 constant PR_TASK_PERF_EVENTS_DISABLE (line 1087) | PR_TASK_PERF_EVENTS_DISABLE = 0x1f constant PR_TASK_PERF_EVENTS_ENABLE (line 1088) | PR_TASK_PERF_EVENTS_ENABLE = 0x20 constant PR_TIMING_STATISTICAL (line 1089) | PR_TIMING_STATISTICAL = 0x0 constant PR_TIMING_TIMESTAMP (line 1090) | PR_TIMING_TIMESTAMP = 0x1 constant PR_TSC_ENABLE (line 1091) | PR_TSC_ENABLE = 0x1 constant PR_TSC_SIGSEGV (line 1092) | PR_TSC_SIGSEGV = 0x2 constant PR_UNALIGN_NOPRINT (line 1093) | PR_UNALIGN_NOPRINT = 0x1 constant PR_UNALIGN_SIGBUS (line 1094) | PR_UNALIGN_SIGBUS = 0x2 constant PTRACE_ATTACH (line 1095) | PTRACE_ATTACH = 0x10 constant PTRACE_CONT (line 1096) | PTRACE_CONT = 0x7 constant PTRACE_DETACH (line 1097) | PTRACE_DETACH = 0x11 constant PTRACE_EVENT_CLONE (line 1098) | PTRACE_EVENT_CLONE = 0x3 constant PTRACE_EVENT_EXEC (line 1099) | PTRACE_EVENT_EXEC = 0x4 constant PTRACE_EVENT_EXIT (line 1100) | PTRACE_EVENT_EXIT = 0x6 constant PTRACE_EVENT_FORK (line 1101) | PTRACE_EVENT_FORK = 0x1 constant PTRACE_EVENT_SECCOMP (line 1102) | PTRACE_EVENT_SECCOMP = 0x7 constant PTRACE_EVENT_STOP (line 1103) | PTRACE_EVENT_STOP = 0x80 constant PTRACE_EVENT_VFORK (line 1104) | PTRACE_EVENT_VFORK = 0x2 constant PTRACE_EVENT_VFORK_DONE (line 1105) | PTRACE_EVENT_VFORK_DONE = 0x5 constant PTRACE_GETEVENTMSG (line 1106) | PTRACE_GETEVENTMSG = 0x4201 constant PTRACE_GETFPAREGS (line 1107) | PTRACE_GETFPAREGS = 0x14 constant PTRACE_GETFPREGS (line 1108) | PTRACE_GETFPREGS = 0xe constant PTRACE_GETFPREGS64 (line 1109) | PTRACE_GETFPREGS64 = 0x19 constant PTRACE_GETREGS (line 1110) | PTRACE_GETREGS = 0xc constant PTRACE_GETREGS64 (line 1111) | PTRACE_GETREGS64 = 0x16 constant PTRACE_GETREGSET (line 1112) | PTRACE_GETREGSET = 0x4204 constant PTRACE_GETSIGINFO (line 1113) | PTRACE_GETSIGINFO = 0x4202 constant PTRACE_GETSIGMASK (line 1114) | PTRACE_GETSIGMASK = 0x420a constant PTRACE_INTERRUPT (line 1115) | PTRACE_INTERRUPT = 0x4207 constant PTRACE_KILL (line 1116) | PTRACE_KILL = 0x8 constant PTRACE_LISTEN (line 1117) | PTRACE_LISTEN = 0x4208 constant PTRACE_O_EXITKILL (line 1118) | PTRACE_O_EXITKILL = 0x100000 constant PTRACE_O_MASK (line 1119) | PTRACE_O_MASK = 0x3000ff constant PTRACE_O_SUSPEND_SECCOMP (line 1120) | PTRACE_O_SUSPEND_SECCOMP = 0x200000 constant PTRACE_O_TRACECLONE (line 1121) | PTRACE_O_TRACECLONE = 0x8 constant PTRACE_O_TRACEEXEC (line 1122) | PTRACE_O_TRACEEXEC = 0x10 constant PTRACE_O_TRACEEXIT (line 1123) | PTRACE_O_TRACEEXIT = 0x40 constant PTRACE_O_TRACEFORK (line 1124) | PTRACE_O_TRACEFORK = 0x2 constant PTRACE_O_TRACESECCOMP (line 1125) | PTRACE_O_TRACESECCOMP = 0x80 constant PTRACE_O_TRACESYSGOOD (line 1126) | PTRACE_O_TRACESYSGOOD = 0x1 constant PTRACE_O_TRACEVFORK (line 1127) | PTRACE_O_TRACEVFORK = 0x4 constant PTRACE_O_TRACEVFORKDONE (line 1128) | PTRACE_O_TRACEVFORKDONE = 0x20 constant PTRACE_PEEKDATA (line 1129) | PTRACE_PEEKDATA = 0x2 constant PTRACE_PEEKSIGINFO (line 1130) | PTRACE_PEEKSIGINFO = 0x4209 constant PTRACE_PEEKSIGINFO_SHARED (line 1131) | PTRACE_PEEKSIGINFO_SHARED = 0x1 constant PTRACE_PEEKTEXT (line 1132) | PTRACE_PEEKTEXT = 0x1 constant PTRACE_PEEKUSR (line 1133) | PTRACE_PEEKUSR = 0x3 constant PTRACE_POKEDATA (line 1134) | PTRACE_POKEDATA = 0x5 constant PTRACE_POKETEXT (line 1135) | PTRACE_POKETEXT = 0x4 constant PTRACE_POKEUSR (line 1136) | PTRACE_POKEUSR = 0x6 constant PTRACE_READDATA (line 1137) | PTRACE_READDATA = 0x10 constant PTRACE_READTEXT (line 1138) | PTRACE_READTEXT = 0x12 constant PTRACE_SECCOMP_GET_FILTER (line 1139) | PTRACE_SECCOMP_GET_FILTER = 0x420c constant PTRACE_SEIZE (line 1140) | PTRACE_SEIZE = 0x4206 constant PTRACE_SETFPAREGS (line 1141) | PTRACE_SETFPAREGS = 0x15 constant PTRACE_SETFPREGS (line 1142) | PTRACE_SETFPREGS = 0xf constant PTRACE_SETFPREGS64 (line 1143) | PTRACE_SETFPREGS64 = 0x1a constant PTRACE_SETOPTIONS (line 1144) | PTRACE_SETOPTIONS = 0x4200 constant PTRACE_SETREGS (line 1145) | PTRACE_SETREGS = 0xd constant PTRACE_SETREGS64 (line 1146) | PTRACE_SETREGS64 = 0x17 constant PTRACE_SETREGSET (line 1147) | PTRACE_SETREGSET = 0x4205 constant PTRACE_SETSIGINFO (line 1148) | PTRACE_SETSIGINFO = 0x4203 constant PTRACE_SETSIGMASK (line 1149) | PTRACE_SETSIGMASK = 0x420b constant PTRACE_SINGLESTEP (line 1150) | PTRACE_SINGLESTEP = 0x9 constant PTRACE_SPARC_DETACH (line 1151) | PTRACE_SPARC_DETACH = 0xb constant PTRACE_SYSCALL (line 1152) | PTRACE_SYSCALL = 0x18 constant PTRACE_TRACEME (line 1153) | PTRACE_TRACEME = 0x0 constant PTRACE_WRITEDATA (line 1154) | PTRACE_WRITEDATA = 0x11 constant PTRACE_WRITETEXT (line 1155) | PTRACE_WRITETEXT = 0x13 constant PT_FP (line 1156) | PT_FP = 0x48 constant PT_G0 (line 1157) | PT_G0 = 0x10 constant PT_G1 (line 1158) | PT_G1 = 0x14 constant PT_G2 (line 1159) | PT_G2 = 0x18 constant PT_G3 (line 1160) | PT_G3 = 0x1c constant PT_G4 (line 1161) | PT_G4 = 0x20 constant PT_G5 (line 1162) | PT_G5 = 0x24 constant PT_G6 (line 1163) | PT_G6 = 0x28 constant PT_G7 (line 1164) | PT_G7 = 0x2c constant PT_I0 (line 1165) | PT_I0 = 0x30 constant PT_I1 (line 1166) | PT_I1 = 0x34 constant PT_I2 (line 1167) | PT_I2 = 0x38 constant PT_I3 (line 1168) | PT_I3 = 0x3c constant PT_I4 (line 1169) | PT_I4 = 0x40 constant PT_I5 (line 1170) | PT_I5 = 0x44 constant PT_I6 (line 1171) | PT_I6 = 0x48 constant PT_I7 (line 1172) | PT_I7 = 0x4c constant PT_NPC (line 1173) | PT_NPC = 0x8 constant PT_PC (line 1174) | PT_PC = 0x4 constant PT_PSR (line 1175) | PT_PSR = 0x0 constant PT_REGS_MAGIC (line 1176) | PT_REGS_MAGIC = 0x57ac6c00 constant PT_TNPC (line 1177) | PT_TNPC = 0x90 constant PT_TPC (line 1178) | PT_TPC = 0x88 constant PT_TSTATE (line 1179) | PT_TSTATE = 0x80 constant PT_V9_FP (line 1180) | PT_V9_FP = 0x70 constant PT_V9_G0 (line 1181) | PT_V9_G0 = 0x0 constant PT_V9_G1 (line 1182) | PT_V9_G1 = 0x8 constant PT_V9_G2 (line 1183) | PT_V9_G2 = 0x10 constant PT_V9_G3 (line 1184) | PT_V9_G3 = 0x18 constant PT_V9_G4 (line 1185) | PT_V9_G4 = 0x20 constant PT_V9_G5 (line 1186) | PT_V9_G5 = 0x28 constant PT_V9_G6 (line 1187) | PT_V9_G6 = 0x30 constant PT_V9_G7 (line 1188) | PT_V9_G7 = 0x38 constant PT_V9_I0 (line 1189) | PT_V9_I0 = 0x40 constant PT_V9_I1 (line 1190) | PT_V9_I1 = 0x48 constant PT_V9_I2 (line 1191) | PT_V9_I2 = 0x50 constant PT_V9_I3 (line 1192) | PT_V9_I3 = 0x58 constant PT_V9_I4 (line 1193) | PT_V9_I4 = 0x60 constant PT_V9_I5 (line 1194) | PT_V9_I5 = 0x68 constant PT_V9_I6 (line 1195) | PT_V9_I6 = 0x70 constant PT_V9_I7 (line 1196) | PT_V9_I7 = 0x78 constant PT_V9_MAGIC (line 1197) | PT_V9_MAGIC = 0x9c constant PT_V9_TNPC (line 1198) | PT_V9_TNPC = 0x90 constant PT_V9_TPC (line 1199) | PT_V9_TPC = 0x88 constant PT_V9_TSTATE (line 1200) | PT_V9_TSTATE = 0x80 constant PT_V9_Y (line 1201) | PT_V9_Y = 0x98 constant PT_WIM (line 1202) | PT_WIM = 0x10 constant PT_Y (line 1203) | PT_Y = 0xc constant RLIMIT_AS (line 1204) | RLIMIT_AS = 0x9 constant RLIMIT_CORE (line 1205) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1206) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1207) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1208) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1209) | RLIMIT_NOFILE = 0x6 constant RLIMIT_STACK (line 1210) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1211) | RLIM_INFINITY = -0x1 constant RTAX_ADVMSS (line 1212) | RTAX_ADVMSS = 0x8 constant RTAX_CC_ALGO (line 1213) | RTAX_CC_ALGO = 0x10 constant RTAX_CWND (line 1214) | RTAX_CWND = 0x7 constant RTAX_FEATURES (line 1215) | RTAX_FEATURES = 0xc constant RTAX_FEATURE_ALLFRAG (line 1216) | RTAX_FEATURE_ALLFRAG = 0x8 constant RTAX_FEATURE_ECN (line 1217) | RTAX_FEATURE_ECN = 0x1 constant RTAX_FEATURE_MASK (line 1218) | RTAX_FEATURE_MASK = 0xf constant RTAX_FEATURE_SACK (line 1219) | RTAX_FEATURE_SACK = 0x2 constant RTAX_FEATURE_TIMESTAMP (line 1220) | RTAX_FEATURE_TIMESTAMP = 0x4 constant RTAX_HOPLIMIT (line 1221) | RTAX_HOPLIMIT = 0xa constant RTAX_INITCWND (line 1222) | RTAX_INITCWND = 0xb constant RTAX_INITRWND (line 1223) | RTAX_INITRWND = 0xe constant RTAX_LOCK (line 1224) | RTAX_LOCK = 0x1 constant RTAX_MAX (line 1225) | RTAX_MAX = 0x10 constant RTAX_MTU (line 1226) | RTAX_MTU = 0x2 constant RTAX_QUICKACK (line 1227) | RTAX_QUICKACK = 0xf constant RTAX_REORDERING (line 1228) | RTAX_REORDERING = 0x9 constant RTAX_RTO_MIN (line 1229) | RTAX_RTO_MIN = 0xd constant RTAX_RTT (line 1230) | RTAX_RTT = 0x4 constant RTAX_RTTVAR (line 1231) | RTAX_RTTVAR = 0x5 constant RTAX_SSTHRESH (line 1232) | RTAX_SSTHRESH = 0x6 constant RTAX_UNSPEC (line 1233) | RTAX_UNSPEC = 0x0 constant RTAX_WINDOW (line 1234) | RTAX_WINDOW = 0x3 constant RTA_ALIGNTO (line 1235) | RTA_ALIGNTO = 0x4 constant RTA_MAX (line 1236) | RTA_MAX = 0x18 constant RTCF_DIRECTSRC (line 1237) | RTCF_DIRECTSRC = 0x4000000 constant RTCF_DOREDIRECT (line 1238) | RTCF_DOREDIRECT = 0x1000000 constant RTCF_LOG (line 1239) | RTCF_LOG = 0x2000000 constant RTCF_MASQ (line 1240) | RTCF_MASQ = 0x400000 constant RTCF_NAT (line 1241) | RTCF_NAT = 0x800000 constant RTCF_VALVE (line 1242) | RTCF_VALVE = 0x200000 constant RTF_ADDRCLASSMASK (line 1243) | RTF_ADDRCLASSMASK = 0xf8000000 constant RTF_ADDRCONF (line 1244) | RTF_ADDRCONF = 0x40000 constant RTF_ALLONLINK (line 1245) | RTF_ALLONLINK = 0x20000 constant RTF_BROADCAST (line 1246) | RTF_BROADCAST = 0x10000000 constant RTF_CACHE (line 1247) | RTF_CACHE = 0x1000000 constant RTF_DEFAULT (line 1248) | RTF_DEFAULT = 0x10000 constant RTF_DYNAMIC (line 1249) | RTF_DYNAMIC = 0x10 constant RTF_FLOW (line 1250) | RTF_FLOW = 0x2000000 constant RTF_GATEWAY (line 1251) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1252) | RTF_HOST = 0x4 constant RTF_INTERFACE (line 1253) | RTF_INTERFACE = 0x40000000 constant RTF_IRTT (line 1254) | RTF_IRTT = 0x100 constant RTF_LINKRT (line 1255) | RTF_LINKRT = 0x100000 constant RTF_LOCAL (line 1256) | RTF_LOCAL = 0x80000000 constant RTF_MODIFIED (line 1257) | RTF_MODIFIED = 0x20 constant RTF_MSS (line 1258) | RTF_MSS = 0x40 constant RTF_MTU (line 1259) | RTF_MTU = 0x40 constant RTF_MULTICAST (line 1260) | RTF_MULTICAST = 0x20000000 constant RTF_NAT (line 1261) | RTF_NAT = 0x8000000 constant RTF_NOFORWARD (line 1262) | RTF_NOFORWARD = 0x1000 constant RTF_NONEXTHOP (line 1263) | RTF_NONEXTHOP = 0x200000 constant RTF_NOPMTUDISC (line 1264) | RTF_NOPMTUDISC = 0x4000 constant RTF_POLICY (line 1265) | RTF_POLICY = 0x4000000 constant RTF_REINSTATE (line 1266) | RTF_REINSTATE = 0x8 constant RTF_REJECT (line 1267) | RTF_REJECT = 0x200 constant RTF_STATIC (line 1268) | RTF_STATIC = 0x400 constant RTF_THROW (line 1269) | RTF_THROW = 0x2000 constant RTF_UP (line 1270) | RTF_UP = 0x1 constant RTF_WINDOW (line 1271) | RTF_WINDOW = 0x80 constant RTF_XRESOLVE (line 1272) | RTF_XRESOLVE = 0x800 constant RTM_BASE (line 1273) | RTM_BASE = 0x10 constant RTM_DELACTION (line 1274) | RTM_DELACTION = 0x31 constant RTM_DELADDR (line 1275) | RTM_DELADDR = 0x15 constant RTM_DELADDRLABEL (line 1276) | RTM_DELADDRLABEL = 0x49 constant RTM_DELLINK (line 1277) | RTM_DELLINK = 0x11 constant RTM_DELMDB (line 1278) | RTM_DELMDB = 0x55 constant RTM_DELNEIGH (line 1279) | RTM_DELNEIGH = 0x1d constant RTM_DELNSID (line 1280) | RTM_DELNSID = 0x59 constant RTM_DELQDISC (line 1281) | RTM_DELQDISC = 0x25 constant RTM_DELROUTE (line 1282) | RTM_DELROUTE = 0x19 constant RTM_DELRULE (line 1283) | RTM_DELRULE = 0x21 constant RTM_DELTCLASS (line 1284) | RTM_DELTCLASS = 0x29 constant RTM_DELTFILTER (line 1285) | RTM_DELTFILTER = 0x2d constant RTM_F_CLONED (line 1286) | RTM_F_CLONED = 0x200 constant RTM_F_EQUALIZE (line 1287) | RTM_F_EQUALIZE = 0x400 constant RTM_F_LOOKUP_TABLE (line 1288) | RTM_F_LOOKUP_TABLE = 0x1000 constant RTM_F_NOTIFY (line 1289) | RTM_F_NOTIFY = 0x100 constant RTM_F_PREFIX (line 1290) | RTM_F_PREFIX = 0x800 constant RTM_GETACTION (line 1291) | RTM_GETACTION = 0x32 constant RTM_GETADDR (line 1292) | RTM_GETADDR = 0x16 constant RTM_GETADDRLABEL (line 1293) | RTM_GETADDRLABEL = 0x4a constant RTM_GETANYCAST (line 1294) | RTM_GETANYCAST = 0x3e constant RTM_GETDCB (line 1295) | RTM_GETDCB = 0x4e constant RTM_GETLINK (line 1296) | RTM_GETLINK = 0x12 constant RTM_GETMDB (line 1297) | RTM_GETMDB = 0x56 constant RTM_GETMULTICAST (line 1298) | RTM_GETMULTICAST = 0x3a constant RTM_GETNEIGH (line 1299) | RTM_GETNEIGH = 0x1e constant RTM_GETNEIGHTBL (line 1300) | RTM_GETNEIGHTBL = 0x42 constant RTM_GETNETCONF (line 1301) | RTM_GETNETCONF = 0x52 constant RTM_GETNSID (line 1302) | RTM_GETNSID = 0x5a constant RTM_GETQDISC (line 1303) | RTM_GETQDISC = 0x26 constant RTM_GETROUTE (line 1304) | RTM_GETROUTE = 0x1a constant RTM_GETRULE (line 1305) | RTM_GETRULE = 0x22 constant RTM_GETSTATS (line 1306) | RTM_GETSTATS = 0x5e constant RTM_GETTCLASS (line 1307) | RTM_GETTCLASS = 0x2a constant RTM_GETTFILTER (line 1308) | RTM_GETTFILTER = 0x2e constant RTM_MAX (line 1309) | RTM_MAX = 0x5f constant RTM_NEWACTION (line 1310) | RTM_NEWACTION = 0x30 constant RTM_NEWADDR (line 1311) | RTM_NEWADDR = 0x14 constant RTM_NEWADDRLABEL (line 1312) | RTM_NEWADDRLABEL = 0x48 constant RTM_NEWLINK (line 1313) | RTM_NEWLINK = 0x10 constant RTM_NEWMDB (line 1314) | RTM_NEWMDB = 0x54 constant RTM_NEWNDUSEROPT (line 1315) | RTM_NEWNDUSEROPT = 0x44 constant RTM_NEWNEIGH (line 1316) | RTM_NEWNEIGH = 0x1c constant RTM_NEWNEIGHTBL (line 1317) | RTM_NEWNEIGHTBL = 0x40 constant RTM_NEWNETCONF (line 1318) | RTM_NEWNETCONF = 0x50 constant RTM_NEWNSID (line 1319) | RTM_NEWNSID = 0x58 constant RTM_NEWPREFIX (line 1320) | RTM_NEWPREFIX = 0x34 constant RTM_NEWQDISC (line 1321) | RTM_NEWQDISC = 0x24 constant RTM_NEWROUTE (line 1322) | RTM_NEWROUTE = 0x18 constant RTM_NEWRULE (line 1323) | RTM_NEWRULE = 0x20 constant RTM_NEWSTATS (line 1324) | RTM_NEWSTATS = 0x5c constant RTM_NEWTCLASS (line 1325) | RTM_NEWTCLASS = 0x28 constant RTM_NEWTFILTER (line 1326) | RTM_NEWTFILTER = 0x2c constant RTM_NR_FAMILIES (line 1327) | RTM_NR_FAMILIES = 0x14 constant RTM_NR_MSGTYPES (line 1328) | RTM_NR_MSGTYPES = 0x50 constant RTM_SETDCB (line 1329) | RTM_SETDCB = 0x4f constant RTM_SETLINK (line 1330) | RTM_SETLINK = 0x13 constant RTM_SETNEIGHTBL (line 1331) | RTM_SETNEIGHTBL = 0x43 constant RTNH_ALIGNTO (line 1332) | RTNH_ALIGNTO = 0x4 constant RTNH_COMPARE_MASK (line 1333) | RTNH_COMPARE_MASK = 0x11 constant RTNH_F_DEAD (line 1334) | RTNH_F_DEAD = 0x1 constant RTNH_F_LINKDOWN (line 1335) | RTNH_F_LINKDOWN = 0x10 constant RTNH_F_OFFLOAD (line 1336) | RTNH_F_OFFLOAD = 0x8 constant RTNH_F_ONLINK (line 1337) | RTNH_F_ONLINK = 0x4 constant RTNH_F_PERVASIVE (line 1338) | RTNH_F_PERVASIVE = 0x2 constant RTN_MAX (line 1339) | RTN_MAX = 0xb constant RTPROT_BABEL (line 1340) | RTPROT_BABEL = 0x2a constant RTPROT_BIRD (line 1341) | RTPROT_BIRD = 0xc constant RTPROT_BOOT (line 1342) | RTPROT_BOOT = 0x3 constant RTPROT_DHCP (line 1343) | RTPROT_DHCP = 0x10 constant RTPROT_DNROUTED (line 1344) | RTPROT_DNROUTED = 0xd constant RTPROT_GATED (line 1345) | RTPROT_GATED = 0x8 constant RTPROT_KERNEL (line 1346) | RTPROT_KERNEL = 0x2 constant RTPROT_MROUTED (line 1347) | RTPROT_MROUTED = 0x11 constant RTPROT_MRT (line 1348) | RTPROT_MRT = 0xa constant RTPROT_NTK (line 1349) | RTPROT_NTK = 0xf constant RTPROT_RA (line 1350) | RTPROT_RA = 0x9 constant RTPROT_REDIRECT (line 1351) | RTPROT_REDIRECT = 0x1 constant RTPROT_STATIC (line 1352) | RTPROT_STATIC = 0x4 constant RTPROT_UNSPEC (line 1353) | RTPROT_UNSPEC = 0x0 constant RTPROT_XORP (line 1354) | RTPROT_XORP = 0xe constant RTPROT_ZEBRA (line 1355) | RTPROT_ZEBRA = 0xb constant RT_CLASS_DEFAULT (line 1356) | RT_CLASS_DEFAULT = 0xfd constant RT_CLASS_LOCAL (line 1357) | RT_CLASS_LOCAL = 0xff constant RT_CLASS_MAIN (line 1358) | RT_CLASS_MAIN = 0xfe constant RT_CLASS_MAX (line 1359) | RT_CLASS_MAX = 0xff constant RT_CLASS_UNSPEC (line 1360) | RT_CLASS_UNSPEC = 0x0 constant RUSAGE_CHILDREN (line 1361) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1362) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1363) | RUSAGE_THREAD = 0x1 constant SCM_CREDENTIALS (line 1364) | SCM_CREDENTIALS = 0x2 constant SCM_RIGHTS (line 1365) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1366) | SCM_TIMESTAMP = 0x1d constant SCM_TIMESTAMPING (line 1367) | SCM_TIMESTAMPING = 0x23 constant SCM_TIMESTAMPNS (line 1368) | SCM_TIMESTAMPNS = 0x21 constant SCM_WIFI_STATUS (line 1369) | SCM_WIFI_STATUS = 0x25 constant SHUT_RD (line 1370) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1371) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1372) | SHUT_WR = 0x1 constant SIOCADDDLCI (line 1373) | SIOCADDDLCI = 0x8980 constant SIOCADDMULTI (line 1374) | SIOCADDMULTI = 0x8931 constant SIOCADDRT (line 1375) | SIOCADDRT = 0x890b constant SIOCATMARK (line 1376) | SIOCATMARK = 0x8905 constant SIOCBONDCHANGEACTIVE (line 1377) | SIOCBONDCHANGEACTIVE = 0x8995 constant SIOCBONDENSLAVE (line 1378) | SIOCBONDENSLAVE = 0x8990 constant SIOCBONDINFOQUERY (line 1379) | SIOCBONDINFOQUERY = 0x8994 constant SIOCBONDRELEASE (line 1380) | SIOCBONDRELEASE = 0x8991 constant SIOCBONDSETHWADDR (line 1381) | SIOCBONDSETHWADDR = 0x8992 constant SIOCBONDSLAVEINFOQUERY (line 1382) | SIOCBONDSLAVEINFOQUERY = 0x8993 constant SIOCBRADDBR (line 1383) | SIOCBRADDBR = 0x89a0 constant SIOCBRADDIF (line 1384) | SIOCBRADDIF = 0x89a2 constant SIOCBRDELBR (line 1385) | SIOCBRDELBR = 0x89a1 constant SIOCBRDELIF (line 1386) | SIOCBRDELIF = 0x89a3 constant SIOCDARP (line 1387) | SIOCDARP = 0x8953 constant SIOCDELDLCI (line 1388) | SIOCDELDLCI = 0x8981 constant SIOCDELMULTI (line 1389) | SIOCDELMULTI = 0x8932 constant SIOCDELRT (line 1390) | SIOCDELRT = 0x890c constant SIOCDEVPRIVATE (line 1391) | SIOCDEVPRIVATE = 0x89f0 constant SIOCDIFADDR (line 1392) | SIOCDIFADDR = 0x8936 constant SIOCDRARP (line 1393) | SIOCDRARP = 0x8960 constant SIOCETHTOOL (line 1394) | SIOCETHTOOL = 0x8946 constant SIOCGARP (line 1395) | SIOCGARP = 0x8954 constant SIOCGHWTSTAMP (line 1396) | SIOCGHWTSTAMP = 0x89b1 constant SIOCGIFADDR (line 1397) | SIOCGIFADDR = 0x8915 constant SIOCGIFBR (line 1398) | SIOCGIFBR = 0x8940 constant SIOCGIFBRDADDR (line 1399) | SIOCGIFBRDADDR = 0x8919 constant SIOCGIFCONF (line 1400) | SIOCGIFCONF = 0x8912 constant SIOCGIFCOUNT (line 1401) | SIOCGIFCOUNT = 0x8938 constant SIOCGIFDSTADDR (line 1402) | SIOCGIFDSTADDR = 0x8917 constant SIOCGIFENCAP (line 1403) | SIOCGIFENCAP = 0x8925 constant SIOCGIFFLAGS (line 1404) | SIOCGIFFLAGS = 0x8913 constant SIOCGIFHWADDR (line 1405) | SIOCGIFHWADDR = 0x8927 constant SIOCGIFINDEX (line 1406) | SIOCGIFINDEX = 0x8933 constant SIOCGIFMAP (line 1407) | SIOCGIFMAP = 0x8970 constant SIOCGIFMEM (line 1408) | SIOCGIFMEM = 0x891f constant SIOCGIFMETRIC (line 1409) | SIOCGIFMETRIC = 0x891d constant SIOCGIFMTU (line 1410) | SIOCGIFMTU = 0x8921 constant SIOCGIFNAME (line 1411) | SIOCGIFNAME = 0x8910 constant SIOCGIFNETMASK (line 1412) | SIOCGIFNETMASK = 0x891b constant SIOCGIFPFLAGS (line 1413) | SIOCGIFPFLAGS = 0x8935 constant SIOCGIFSLAVE (line 1414) | SIOCGIFSLAVE = 0x8929 constant SIOCGIFTXQLEN (line 1415) | SIOCGIFTXQLEN = 0x8942 constant SIOCGIFVLAN (line 1416) | SIOCGIFVLAN = 0x8982 constant SIOCGMIIPHY (line 1417) | SIOCGMIIPHY = 0x8947 constant SIOCGMIIREG (line 1418) | SIOCGMIIREG = 0x8948 constant SIOCGPGRP (line 1419) | SIOCGPGRP = 0x8904 constant SIOCGRARP (line 1420) | SIOCGRARP = 0x8961 constant SIOCGSTAMP (line 1421) | SIOCGSTAMP = 0x8906 constant SIOCGSTAMPNS (line 1422) | SIOCGSTAMPNS = 0x8907 constant SIOCINQ (line 1423) | SIOCINQ = 0x4004667f constant SIOCOUTQ (line 1424) | SIOCOUTQ = 0x40047473 constant SIOCOUTQNSD (line 1425) | SIOCOUTQNSD = 0x894b constant SIOCPROTOPRIVATE (line 1426) | SIOCPROTOPRIVATE = 0x89e0 constant SIOCRTMSG (line 1427) | SIOCRTMSG = 0x890d constant SIOCSARP (line 1428) | SIOCSARP = 0x8955 constant SIOCSHWTSTAMP (line 1429) | SIOCSHWTSTAMP = 0x89b0 constant SIOCSIFADDR (line 1430) | SIOCSIFADDR = 0x8916 constant SIOCSIFBR (line 1431) | SIOCSIFBR = 0x8941 constant SIOCSIFBRDADDR (line 1432) | SIOCSIFBRDADDR = 0x891a constant SIOCSIFDSTADDR (line 1433) | SIOCSIFDSTADDR = 0x8918 constant SIOCSIFENCAP (line 1434) | SIOCSIFENCAP = 0x8926 constant SIOCSIFFLAGS (line 1435) | SIOCSIFFLAGS = 0x8914 constant SIOCSIFHWADDR (line 1436) | SIOCSIFHWADDR = 0x8924 constant SIOCSIFHWBROADCAST (line 1437) | SIOCSIFHWBROADCAST = 0x8937 constant SIOCSIFLINK (line 1438) | SIOCSIFLINK = 0x8911 constant SIOCSIFMAP (line 1439) | SIOCSIFMAP = 0x8971 constant SIOCSIFMEM (line 1440) | SIOCSIFMEM = 0x8920 constant SIOCSIFMETRIC (line 1441) | SIOCSIFMETRIC = 0x891e constant SIOCSIFMTU (line 1442) | SIOCSIFMTU = 0x8922 constant SIOCSIFNAME (line 1443) | SIOCSIFNAME = 0x8923 constant SIOCSIFNETMASK (line 1444) | SIOCSIFNETMASK = 0x891c constant SIOCSIFPFLAGS (line 1445) | SIOCSIFPFLAGS = 0x8934 constant SIOCSIFSLAVE (line 1446) | SIOCSIFSLAVE = 0x8930 constant SIOCSIFTXQLEN (line 1447) | SIOCSIFTXQLEN = 0x8943 constant SIOCSIFVLAN (line 1448) | SIOCSIFVLAN = 0x8983 constant SIOCSMIIREG (line 1449) | SIOCSMIIREG = 0x8949 constant SIOCSPGRP (line 1450) | SIOCSPGRP = 0x8902 constant SIOCSRARP (line 1451) | SIOCSRARP = 0x8962 constant SIOCWANDEV (line 1452) | SIOCWANDEV = 0x894a constant SOCK_CLOEXEC (line 1453) | SOCK_CLOEXEC = 0x400000 constant SOCK_DCCP (line 1454) | SOCK_DCCP = 0x6 constant SOCK_DGRAM (line 1455) | SOCK_DGRAM = 0x2 constant SOCK_NONBLOCK (line 1456) | SOCK_NONBLOCK = 0x4000 constant SOCK_PACKET (line 1457) | SOCK_PACKET = 0xa constant SOCK_RAW (line 1458) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1459) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1460) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1461) | SOCK_STREAM = 0x1 constant SOL_AAL (line 1462) | SOL_AAL = 0x109 constant SOL_ALG (line 1463) | SOL_ALG = 0x117 constant SOL_ATM (line 1464) | SOL_ATM = 0x108 constant SOL_CAIF (line 1465) | SOL_CAIF = 0x116 constant SOL_DCCP (line 1466) | SOL_DCCP = 0x10d constant SOL_DECNET (line 1467) | SOL_DECNET = 0x105 constant SOL_ICMPV6 (line 1468) | SOL_ICMPV6 = 0x3a constant SOL_IP (line 1469) | SOL_IP = 0x0 constant SOL_IPV6 (line 1470) | SOL_IPV6 = 0x29 constant SOL_IRDA (line 1471) | SOL_IRDA = 0x10a constant SOL_IUCV (line 1472) | SOL_IUCV = 0x115 constant SOL_KCM (line 1473) | SOL_KCM = 0x119 constant SOL_LLC (line 1474) | SOL_LLC = 0x10c constant SOL_NETBEUI (line 1475) | SOL_NETBEUI = 0x10b constant SOL_NETLINK (line 1476) | SOL_NETLINK = 0x10e constant SOL_NFC (line 1477) | SOL_NFC = 0x118 constant SOL_PACKET (line 1478) | SOL_PACKET = 0x107 constant SOL_PNPIPE (line 1479) | SOL_PNPIPE = 0x113 constant SOL_PPPOL2TP (line 1480) | SOL_PPPOL2TP = 0x111 constant SOL_RAW (line 1481) | SOL_RAW = 0xff constant SOL_RDS (line 1482) | SOL_RDS = 0x114 constant SOL_RXRPC (line 1483) | SOL_RXRPC = 0x110 constant SOL_SOCKET (line 1484) | SOL_SOCKET = 0xffff constant SOL_TCP (line 1485) | SOL_TCP = 0x6 constant SOL_TIPC (line 1486) | SOL_TIPC = 0x10f constant SOL_X25 (line 1487) | SOL_X25 = 0x106 constant SOMAXCONN (line 1488) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1489) | SO_ACCEPTCONN = 0x8000 constant SO_ATTACH_BPF (line 1490) | SO_ATTACH_BPF = 0x34 constant SO_ATTACH_FILTER (line 1491) | SO_ATTACH_FILTER = 0x1a constant SO_ATTACH_REUSEPORT_CBPF (line 1492) | SO_ATTACH_REUSEPORT_CBPF = 0x35 constant SO_ATTACH_REUSEPORT_EBPF (line 1493) | SO_ATTACH_REUSEPORT_EBPF = 0x36 constant SO_BINDTODEVICE (line 1494) | SO_BINDTODEVICE = 0xd constant SO_BPF_EXTENSIONS (line 1495) | SO_BPF_EXTENSIONS = 0x32 constant SO_BROADCAST (line 1496) | SO_BROADCAST = 0x20 constant SO_BSDCOMPAT (line 1497) | SO_BSDCOMPAT = 0x400 constant SO_BUSY_POLL (line 1498) | SO_BUSY_POLL = 0x30 constant SO_CNX_ADVICE (line 1499) | SO_CNX_ADVICE = 0x37 constant SO_DEBUG (line 1500) | SO_DEBUG = 0x1 constant SO_DETACH_BPF (line 1501) | SO_DETACH_BPF = 0x1b constant SO_DETACH_FILTER (line 1502) | SO_DETACH_FILTER = 0x1b constant SO_DOMAIN (line 1503) | SO_DOMAIN = 0x1029 constant SO_DONTROUTE (line 1504) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1505) | SO_ERROR = 0x1007 constant SO_GET_FILTER (line 1506) | SO_GET_FILTER = 0x1a constant SO_INCOMING_CPU (line 1507) | SO_INCOMING_CPU = 0x33 constant SO_KEEPALIVE (line 1508) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1509) | SO_LINGER = 0x80 constant SO_LOCK_FILTER (line 1510) | SO_LOCK_FILTER = 0x28 constant SO_MARK (line 1511) | SO_MARK = 0x22 constant SO_MAX_PACING_RATE (line 1512) | SO_MAX_PACING_RATE = 0x31 constant SO_NOFCS (line 1513) | SO_NOFCS = 0x27 constant SO_NO_CHECK (line 1514) | SO_NO_CHECK = 0xb constant SO_OOBINLINE (line 1515) | SO_OOBINLINE = 0x100 constant SO_PASSCRED (line 1516) | SO_PASSCRED = 0x2 constant SO_PASSSEC (line 1517) | SO_PASSSEC = 0x1f constant SO_PEEK_OFF (line 1518) | SO_PEEK_OFF = 0x26 constant SO_PEERCRED (line 1519) | SO_PEERCRED = 0x40 constant SO_PEERNAME (line 1520) | SO_PEERNAME = 0x1c constant SO_PEERSEC (line 1521) | SO_PEERSEC = 0x1e constant SO_PRIORITY (line 1522) | SO_PRIORITY = 0xc constant SO_PROTOCOL (line 1523) | SO_PROTOCOL = 0x1028 constant SO_RCVBUF (line 1524) | SO_RCVBUF = 0x1002 constant SO_RCVBUFFORCE (line 1525) | SO_RCVBUFFORCE = 0x100b constant SO_RCVLOWAT (line 1526) | SO_RCVLOWAT = 0x800 constant SO_RCVTIMEO (line 1527) | SO_RCVTIMEO = 0x2000 constant SO_REUSEADDR (line 1528) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1529) | SO_REUSEPORT = 0x200 constant SO_RXQ_OVFL (line 1530) | SO_RXQ_OVFL = 0x24 constant SO_SECURITY_AUTHENTICATION (line 1531) | SO_SECURITY_AUTHENTICATION = 0x5001 constant SO_SECURITY_ENCRYPTION_NETWORK (line 1532) | SO_SECURITY_ENCRYPTION_NETWORK = 0x5004 constant SO_SECURITY_ENCRYPTION_TRANSPORT (line 1533) | SO_SECURITY_ENCRYPTION_TRANSPORT = 0x5002 constant SO_SELECT_ERR_QUEUE (line 1534) | SO_SELECT_ERR_QUEUE = 0x29 constant SO_SNDBUF (line 1535) | SO_SNDBUF = 0x1001 constant SO_SNDBUFFORCE (line 1536) | SO_SNDBUFFORCE = 0x100a constant SO_SNDLOWAT (line 1537) | SO_SNDLOWAT = 0x1000 constant SO_SNDTIMEO (line 1538) | SO_SNDTIMEO = 0x4000 constant SO_TIMESTAMP (line 1539) | SO_TIMESTAMP = 0x1d constant SO_TIMESTAMPING (line 1540) | SO_TIMESTAMPING = 0x23 constant SO_TIMESTAMPNS (line 1541) | SO_TIMESTAMPNS = 0x21 constant SO_TYPE (line 1542) | SO_TYPE = 0x1008 constant SO_VM_SOCKETS_BUFFER_MAX_SIZE (line 1543) | SO_VM_SOCKETS_BUFFER_MAX_SIZE = 0x2 constant SO_VM_SOCKETS_BUFFER_MIN_SIZE (line 1544) | SO_VM_SOCKETS_BUFFER_MIN_SIZE = 0x1 constant SO_VM_SOCKETS_BUFFER_SIZE (line 1545) | SO_VM_SOCKETS_BUFFER_SIZE = 0x0 constant SO_VM_SOCKETS_CONNECT_TIMEOUT (line 1546) | SO_VM_SOCKETS_CONNECT_TIMEOUT = 0x6 constant SO_VM_SOCKETS_NONBLOCK_TXRX (line 1547) | SO_VM_SOCKETS_NONBLOCK_TXRX = 0x7 constant SO_VM_SOCKETS_PEER_HOST_VM_ID (line 1548) | SO_VM_SOCKETS_PEER_HOST_VM_ID = 0x3 constant SO_VM_SOCKETS_TRUSTED (line 1549) | SO_VM_SOCKETS_TRUSTED = 0x5 constant SO_WIFI_STATUS (line 1550) | SO_WIFI_STATUS = 0x25 constant SPLICE_F_GIFT (line 1551) | SPLICE_F_GIFT = 0x8 constant SPLICE_F_MORE (line 1552) | SPLICE_F_MORE = 0x4 constant SPLICE_F_MOVE (line 1553) | SPLICE_F_MOVE = 0x1 constant SPLICE_F_NONBLOCK (line 1554) | SPLICE_F_NONBLOCK = 0x2 constant S_BLKSIZE (line 1555) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1556) | S_IEXEC = 0x40 constant S_IFBLK (line 1557) | S_IFBLK = 0x6000 constant S_IFCHR (line 1558) | S_IFCHR = 0x2000 constant S_IFDIR (line 1559) | S_IFDIR = 0x4000 constant S_IFIFO (line 1560) | S_IFIFO = 0x1000 constant S_IFLNK (line 1561) | S_IFLNK = 0xa000 constant S_IFMT (line 1562) | S_IFMT = 0xf000 constant S_IFREG (line 1563) | S_IFREG = 0x8000 constant S_IFSOCK (line 1564) | S_IFSOCK = 0xc000 constant S_IREAD (line 1565) | S_IREAD = 0x100 constant S_IRGRP (line 1566) | S_IRGRP = 0x20 constant S_IROTH (line 1567) | S_IROTH = 0x4 constant S_IRUSR (line 1568) | S_IRUSR = 0x100 constant S_IRWXG (line 1569) | S_IRWXG = 0x38 constant S_IRWXO (line 1570) | S_IRWXO = 0x7 constant S_IRWXU (line 1571) | S_IRWXU = 0x1c0 constant S_ISGID (line 1572) | S_ISGID = 0x400 constant S_ISUID (line 1573) | S_ISUID = 0x800 constant S_ISVTX (line 1574) | S_ISVTX = 0x200 constant S_IWGRP (line 1575) | S_IWGRP = 0x10 constant S_IWOTH (line 1576) | S_IWOTH = 0x2 constant S_IWRITE (line 1577) | S_IWRITE = 0x80 constant S_IWUSR (line 1578) | S_IWUSR = 0x80 constant S_IXGRP (line 1579) | S_IXGRP = 0x8 constant S_IXOTH (line 1580) | S_IXOTH = 0x1 constant S_IXUSR (line 1581) | S_IXUSR = 0x40 constant TAB0 (line 1582) | TAB0 = 0x0 constant TAB1 (line 1583) | TAB1 = 0x800 constant TAB2 (line 1584) | TAB2 = 0x1000 constant TAB3 (line 1585) | TAB3 = 0x1800 constant TABDLY (line 1586) | TABDLY = 0x1800 constant TCFLSH (line 1587) | TCFLSH = 0x20005407 constant TCGETA (line 1588) | TCGETA = 0x40125401 constant TCGETS (line 1589) | TCGETS = 0x40245408 constant TCGETS2 (line 1590) | TCGETS2 = 0x402c540c constant TCIFLUSH (line 1591) | TCIFLUSH = 0x0 constant TCIOFF (line 1592) | TCIOFF = 0x2 constant TCIOFLUSH (line 1593) | TCIOFLUSH = 0x2 constant TCION (line 1594) | TCION = 0x3 constant TCOFLUSH (line 1595) | TCOFLUSH = 0x1 constant TCOOFF (line 1596) | TCOOFF = 0x0 constant TCOON (line 1597) | TCOON = 0x1 constant TCP_CC_INFO (line 1598) | TCP_CC_INFO = 0x1a constant TCP_CONGESTION (line 1599) | TCP_CONGESTION = 0xd constant TCP_COOKIE_IN_ALWAYS (line 1600) | TCP_COOKIE_IN_ALWAYS = 0x1 constant TCP_COOKIE_MAX (line 1601) | TCP_COOKIE_MAX = 0x10 constant TCP_COOKIE_MIN (line 1602) | TCP_COOKIE_MIN = 0x8 constant TCP_COOKIE_OUT_NEVER (line 1603) | TCP_COOKIE_OUT_NEVER = 0x2 constant TCP_COOKIE_PAIR_SIZE (line 1604) | TCP_COOKIE_PAIR_SIZE = 0x20 constant TCP_COOKIE_TRANSACTIONS (line 1605) | TCP_COOKIE_TRANSACTIONS = 0xf constant TCP_CORK (line 1606) | TCP_CORK = 0x3 constant TCP_DEFER_ACCEPT (line 1607) | TCP_DEFER_ACCEPT = 0x9 constant TCP_FASTOPEN (line 1608) | TCP_FASTOPEN = 0x17 constant TCP_INFO (line 1609) | TCP_INFO = 0xb constant TCP_KEEPCNT (line 1610) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1611) | TCP_KEEPIDLE = 0x4 constant TCP_KEEPINTVL (line 1612) | TCP_KEEPINTVL = 0x5 constant TCP_LINGER2 (line 1613) | TCP_LINGER2 = 0x8 constant TCP_MAXSEG (line 1614) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1615) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1616) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1617) | TCP_MD5SIG = 0xe constant TCP_MD5SIG_MAXKEYLEN (line 1618) | TCP_MD5SIG_MAXKEYLEN = 0x50 constant TCP_MSS (line 1619) | TCP_MSS = 0x200 constant TCP_MSS_DEFAULT (line 1620) | TCP_MSS_DEFAULT = 0x218 constant TCP_MSS_DESIRED (line 1621) | TCP_MSS_DESIRED = 0x4c4 constant TCP_NODELAY (line 1622) | TCP_NODELAY = 0x1 constant TCP_NOTSENT_LOWAT (line 1623) | TCP_NOTSENT_LOWAT = 0x19 constant TCP_QUEUE_SEQ (line 1624) | TCP_QUEUE_SEQ = 0x15 constant TCP_QUICKACK (line 1625) | TCP_QUICKACK = 0xc constant TCP_REPAIR (line 1626) | TCP_REPAIR = 0x13 constant TCP_REPAIR_OPTIONS (line 1627) | TCP_REPAIR_OPTIONS = 0x16 constant TCP_REPAIR_QUEUE (line 1628) | TCP_REPAIR_QUEUE = 0x14 constant TCP_SAVED_SYN (line 1629) | TCP_SAVED_SYN = 0x1c constant TCP_SAVE_SYN (line 1630) | TCP_SAVE_SYN = 0x1b constant TCP_SYNCNT (line 1631) | TCP_SYNCNT = 0x7 constant TCP_S_DATA_IN (line 1632) | TCP_S_DATA_IN = 0x4 constant TCP_S_DATA_OUT (line 1633) | TCP_S_DATA_OUT = 0x8 constant TCP_THIN_DUPACK (line 1634) | TCP_THIN_DUPACK = 0x11 constant TCP_THIN_LINEAR_TIMEOUTS (line 1635) | TCP_THIN_LINEAR_TIMEOUTS = 0x10 constant TCP_TIMESTAMP (line 1636) | TCP_TIMESTAMP = 0x18 constant TCP_USER_TIMEOUT (line 1637) | TCP_USER_TIMEOUT = 0x12 constant TCP_WINDOW_CLAMP (line 1638) | TCP_WINDOW_CLAMP = 0xa constant TCSAFLUSH (line 1639) | TCSAFLUSH = 0x2 constant TCSBRK (line 1640) | TCSBRK = 0x20005405 constant TCSBRKP (line 1641) | TCSBRKP = 0x5425 constant TCSETA (line 1642) | TCSETA = 0x80125402 constant TCSETAF (line 1643) | TCSETAF = 0x80125404 constant TCSETAW (line 1644) | TCSETAW = 0x80125403 constant TCSETS (line 1645) | TCSETS = 0x80245409 constant TCSETS2 (line 1646) | TCSETS2 = 0x802c540d constant TCSETSF (line 1647) | TCSETSF = 0x8024540b constant TCSETSF2 (line 1648) | TCSETSF2 = 0x802c540f constant TCSETSW (line 1649) | TCSETSW = 0x8024540a constant TCSETSW2 (line 1650) | TCSETSW2 = 0x802c540e constant TCXONC (line 1651) | TCXONC = 0x20005406 constant TIOCCBRK (line 1652) | TIOCCBRK = 0x2000747a constant TIOCCONS (line 1653) | TIOCCONS = 0x20007424 constant TIOCEXCL (line 1654) | TIOCEXCL = 0x2000740d constant TIOCGDEV (line 1655) | TIOCGDEV = 0x40045432 constant TIOCGETD (line 1656) | TIOCGETD = 0x40047400 constant TIOCGEXCL (line 1657) | TIOCGEXCL = 0x40045440 constant TIOCGICOUNT (line 1658) | TIOCGICOUNT = 0x545d constant TIOCGLCKTRMIOS (line 1659) | TIOCGLCKTRMIOS = 0x5456 constant TIOCGPGRP (line 1660) | TIOCGPGRP = 0x40047483 constant TIOCGPKT (line 1661) | TIOCGPKT = 0x40045438 constant TIOCGPTLCK (line 1662) | TIOCGPTLCK = 0x40045439 constant TIOCGPTN (line 1663) | TIOCGPTN = 0x40047486 constant TIOCGRS485 (line 1664) | TIOCGRS485 = 0x40205441 constant TIOCGSERIAL (line 1665) | TIOCGSERIAL = 0x541e constant TIOCGSID (line 1666) | TIOCGSID = 0x40047485 constant TIOCGSOFTCAR (line 1667) | TIOCGSOFTCAR = 0x40047464 constant TIOCGWINSZ (line 1668) | TIOCGWINSZ = 0x40087468 constant TIOCINQ (line 1669) | TIOCINQ = 0x4004667f constant TIOCLINUX (line 1670) | TIOCLINUX = 0x541c constant TIOCMBIC (line 1671) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1672) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1673) | TIOCMGET = 0x4004746a constant TIOCMIWAIT (line 1674) | TIOCMIWAIT = 0x545c constant TIOCMSET (line 1675) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1676) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1677) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1678) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1679) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1680) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1681) | TIOCM_LE = 0x1 constant TIOCM_LOOP (line 1682) | TIOCM_LOOP = 0x8000 constant TIOCM_OUT1 (line 1683) | TIOCM_OUT1 = 0x2000 constant TIOCM_OUT2 (line 1684) | TIOCM_OUT2 = 0x4000 constant TIOCM_RI (line 1685) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1686) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1687) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1688) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1689) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1690) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1691) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1692) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1693) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1694) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1695) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1696) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1697) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1698) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1699) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1700) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1701) | TIOCPKT_STOP = 0x4 constant TIOCSBRK (line 1702) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1703) | TIOCSCTTY = 0x20007484 constant TIOCSERCONFIG (line 1704) | TIOCSERCONFIG = 0x5453 constant TIOCSERGETLSR (line 1705) | TIOCSERGETLSR = 0x5459 constant TIOCSERGETMULTI (line 1706) | TIOCSERGETMULTI = 0x545a constant TIOCSERGSTRUCT (line 1707) | TIOCSERGSTRUCT = 0x5458 constant TIOCSERGWILD (line 1708) | TIOCSERGWILD = 0x5454 constant TIOCSERSETMULTI (line 1709) | TIOCSERSETMULTI = 0x545b constant TIOCSERSWILD (line 1710) | TIOCSERSWILD = 0x5455 constant TIOCSER_TEMT (line 1711) | TIOCSER_TEMT = 0x1 constant TIOCSETD (line 1712) | TIOCSETD = 0x80047401 constant TIOCSIG (line 1713) | TIOCSIG = 0x80047488 constant TIOCSLCKTRMIOS (line 1714) | TIOCSLCKTRMIOS = 0x5457 constant TIOCSPGRP (line 1715) | TIOCSPGRP = 0x80047482 constant TIOCSPTLCK (line 1716) | TIOCSPTLCK = 0x80047487 constant TIOCSRS485 (line 1717) | TIOCSRS485 = 0xc0205442 constant TIOCSSERIAL (line 1718) | TIOCSSERIAL = 0x541f constant TIOCSSOFTCAR (line 1719) | TIOCSSOFTCAR = 0x80047465 constant TIOCSTART (line 1720) | TIOCSTART = 0x2000746e constant TIOCSTI (line 1721) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1722) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1723) | TIOCSWINSZ = 0x80087467 constant TIOCVHANGUP (line 1724) | TIOCVHANGUP = 0x20005437 constant TOSTOP (line 1725) | TOSTOP = 0x100 constant TUNATTACHFILTER (line 1726) | TUNATTACHFILTER = 0x801054d5 constant TUNDETACHFILTER (line 1727) | TUNDETACHFILTER = 0x801054d6 constant TUNGETFEATURES (line 1728) | TUNGETFEATURES = 0x400454cf constant TUNGETFILTER (line 1729) | TUNGETFILTER = 0x401054db constant TUNGETIFF (line 1730) | TUNGETIFF = 0x400454d2 constant TUNGETSNDBUF (line 1731) | TUNGETSNDBUF = 0x400454d3 constant TUNGETVNETBE (line 1732) | TUNGETVNETBE = 0x400454df constant TUNGETVNETHDRSZ (line 1733) | TUNGETVNETHDRSZ = 0x400454d7 constant TUNGETVNETLE (line 1734) | TUNGETVNETLE = 0x400454dd constant TUNSETDEBUG (line 1735) | TUNSETDEBUG = 0x800454c9 constant TUNSETGROUP (line 1736) | TUNSETGROUP = 0x800454ce constant TUNSETIFF (line 1737) | TUNSETIFF = 0x800454ca constant TUNSETIFINDEX (line 1738) | TUNSETIFINDEX = 0x800454da constant TUNSETLINK (line 1739) | TUNSETLINK = 0x800454cd constant TUNSETNOCSUM (line 1740) | TUNSETNOCSUM = 0x800454c8 constant TUNSETOFFLOAD (line 1741) | TUNSETOFFLOAD = 0x800454d0 constant TUNSETOWNER (line 1742) | TUNSETOWNER = 0x800454cc constant TUNSETPERSIST (line 1743) | TUNSETPERSIST = 0x800454cb constant TUNSETQUEUE (line 1744) | TUNSETQUEUE = 0x800454d9 constant TUNSETSNDBUF (line 1745) | TUNSETSNDBUF = 0x800454d4 constant TUNSETTXFILTER (line 1746) | TUNSETTXFILTER = 0x800454d1 constant TUNSETVNETBE (line 1747) | TUNSETVNETBE = 0x800454de constant TUNSETVNETHDRSZ (line 1748) | TUNSETVNETHDRSZ = 0x800454d8 constant TUNSETVNETLE (line 1749) | TUNSETVNETLE = 0x800454dc constant VDISCARD (line 1750) | VDISCARD = 0xd constant VDSUSP (line 1751) | VDSUSP = 0xb constant VEOF (line 1752) | VEOF = 0x4 constant VEOL (line 1753) | VEOL = 0x5 constant VEOL2 (line 1754) | VEOL2 = 0x6 constant VERASE (line 1755) | VERASE = 0x2 constant VINTR (line 1756) | VINTR = 0x0 constant VKILL (line 1757) | VKILL = 0x3 constant VLNEXT (line 1758) | VLNEXT = 0xf constant VMADDR_CID_ANY (line 1759) | VMADDR_CID_ANY = 0xffffffff constant VMADDR_CID_HOST (line 1760) | VMADDR_CID_HOST = 0x2 constant VMADDR_CID_HYPERVISOR (line 1761) | VMADDR_CID_HYPERVISOR = 0x0 constant VMADDR_CID_RESERVED (line 1762) | VMADDR_CID_RESERVED = 0x1 constant VMADDR_PORT_ANY (line 1763) | VMADDR_PORT_ANY = 0xffffffff constant VMIN (line 1764) | VMIN = 0x4 constant VQUIT (line 1765) | VQUIT = 0x1 constant VREPRINT (line 1766) | VREPRINT = 0xc constant VSTART (line 1767) | VSTART = 0x8 constant VSTOP (line 1768) | VSTOP = 0x9 constant VSUSP (line 1769) | VSUSP = 0xa constant VSWTC (line 1770) | VSWTC = 0x7 constant VT0 (line 1771) | VT0 = 0x0 constant VT1 (line 1772) | VT1 = 0x4000 constant VTDLY (line 1773) | VTDLY = 0x4000 constant VTIME (line 1774) | VTIME = 0x5 constant VWERASE (line 1775) | VWERASE = 0xe constant WALL (line 1776) | WALL = 0x40000000 constant WCLONE (line 1777) | WCLONE = 0x80000000 constant WCONTINUED (line 1778) | WCONTINUED = 0x8 constant WEXITED (line 1779) | WEXITED = 0x4 constant WNOHANG (line 1780) | WNOHANG = 0x1 constant WNOTHREAD (line 1781) | WNOTHREAD = 0x20000000 constant WNOWAIT (line 1782) | WNOWAIT = 0x1000000 constant WORDSIZE (line 1783) | WORDSIZE = 0x40 constant WRAP (line 1784) | WRAP = 0x20000 constant WSTOPPED (line 1785) | WSTOPPED = 0x2 constant WUNTRACED (line 1786) | WUNTRACED = 0x2 constant XCASE (line 1787) | XCASE = 0x4 constant XTABS (line 1788) | XTABS = 0x1800 constant __TIOCFLUSH (line 1789) | __TIOCFLUSH = 0x80047410 constant E2BIG (line 1794) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1795) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1796) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1797) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EADV (line 1798) | EADV = syscall.Errno(0x53) constant EAFNOSUPPORT (line 1799) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1800) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1801) | EALREADY = syscall.Errno(0x25) constant EBADE (line 1802) | EBADE = syscall.Errno(0x66) constant EBADF (line 1803) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1804) | EBADFD = syscall.Errno(0x5d) constant EBADMSG (line 1805) | EBADMSG = syscall.Errno(0x4c) constant EBADR (line 1806) | EBADR = syscall.Errno(0x67) constant EBADRQC (line 1807) | EBADRQC = syscall.Errno(0x6a) constant EBADSLT (line 1808) | EBADSLT = syscall.Errno(0x6b) constant EBFONT (line 1809) | EBFONT = syscall.Errno(0x6d) constant EBUSY (line 1810) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1811) | ECANCELED = syscall.Errno(0x7f) constant ECHILD (line 1812) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1813) | ECHRNG = syscall.Errno(0x5e) constant ECOMM (line 1814) | ECOMM = syscall.Errno(0x55) constant ECONNABORTED (line 1815) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1816) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1817) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1818) | EDEADLK = syscall.Errno(0x4e) constant EDEADLOCK (line 1819) | EDEADLOCK = syscall.Errno(0x6c) constant EDESTADDRREQ (line 1820) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1821) | EDOM = syscall.Errno(0x21) constant EDOTDOT (line 1822) | EDOTDOT = syscall.Errno(0x58) constant EDQUOT (line 1823) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1824) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1825) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1826) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1827) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1828) | EHOSTUNREACH = syscall.Errno(0x41) constant EHWPOISON (line 1829) | EHWPOISON = syscall.Errno(0x87) constant EIDRM (line 1830) | EIDRM = syscall.Errno(0x4d) constant EILSEQ (line 1831) | EILSEQ = syscall.Errno(0x7a) constant EINPROGRESS (line 1832) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1833) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1834) | EINVAL = syscall.Errno(0x16) constant EIO (line 1835) | EIO = syscall.Errno(0x5) constant EISCONN (line 1836) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1837) | EISDIR = syscall.Errno(0x15) constant EISNAM (line 1838) | EISNAM = syscall.Errno(0x78) constant EKEYEXPIRED (line 1839) | EKEYEXPIRED = syscall.Errno(0x81) constant EKEYREJECTED (line 1840) | EKEYREJECTED = syscall.Errno(0x83) constant EKEYREVOKED (line 1841) | EKEYREVOKED = syscall.Errno(0x82) constant EL2HLT (line 1842) | EL2HLT = syscall.Errno(0x65) constant EL2NSYNC (line 1843) | EL2NSYNC = syscall.Errno(0x5f) constant EL3HLT (line 1844) | EL3HLT = syscall.Errno(0x60) constant EL3RST (line 1845) | EL3RST = syscall.Errno(0x61) constant ELIBACC (line 1846) | ELIBACC = syscall.Errno(0x72) constant ELIBBAD (line 1847) | ELIBBAD = syscall.Errno(0x70) constant ELIBEXEC (line 1848) | ELIBEXEC = syscall.Errno(0x6e) constant ELIBMAX (line 1849) | ELIBMAX = syscall.Errno(0x7b) constant ELIBSCN (line 1850) | ELIBSCN = syscall.Errno(0x7c) constant ELNRNG (line 1851) | ELNRNG = syscall.Errno(0x62) constant ELOOP (line 1852) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1853) | EMEDIUMTYPE = syscall.Errno(0x7e) constant EMFILE (line 1854) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1855) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1856) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1857) | EMULTIHOP = syscall.Errno(0x57) constant ENAMETOOLONG (line 1858) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENAVAIL (line 1859) | ENAVAIL = syscall.Errno(0x77) constant ENETDOWN (line 1860) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1861) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1862) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1863) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1864) | ENOANO = syscall.Errno(0x69) constant ENOBUFS (line 1865) | ENOBUFS = syscall.Errno(0x37) constant ENOCSI (line 1866) | ENOCSI = syscall.Errno(0x64) constant ENODATA (line 1867) | ENODATA = syscall.Errno(0x6f) constant ENODEV (line 1868) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1869) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1870) | ENOEXEC = syscall.Errno(0x8) constant ENOKEY (line 1871) | ENOKEY = syscall.Errno(0x80) constant ENOLCK (line 1872) | ENOLCK = syscall.Errno(0x4f) constant ENOLINK (line 1873) | ENOLINK = syscall.Errno(0x52) constant ENOMEDIUM (line 1874) | ENOMEDIUM = syscall.Errno(0x7d) constant ENOMEM (line 1875) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1876) | ENOMSG = syscall.Errno(0x4b) constant ENONET (line 1877) | ENONET = syscall.Errno(0x50) constant ENOPKG (line 1878) | ENOPKG = syscall.Errno(0x71) constant ENOPROTOOPT (line 1879) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1880) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1881) | ENOSR = syscall.Errno(0x4a) constant ENOSTR (line 1882) | ENOSTR = syscall.Errno(0x48) constant ENOSYS (line 1883) | ENOSYS = syscall.Errno(0x5a) constant ENOTBLK (line 1884) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1885) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1886) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1887) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTNAM (line 1888) | ENOTNAM = syscall.Errno(0x76) constant ENOTRECOVERABLE (line 1889) | ENOTRECOVERABLE = syscall.Errno(0x85) constant ENOTSOCK (line 1890) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1891) | ENOTSUP = syscall.Errno(0x2d) constant ENOTTY (line 1892) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1893) | ENOTUNIQ = syscall.Errno(0x73) constant ENXIO (line 1894) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1895) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1896) | EOVERFLOW = syscall.Errno(0x5c) constant EOWNERDEAD (line 1897) | EOWNERDEAD = syscall.Errno(0x84) constant EPERM (line 1898) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1899) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1900) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1901) | EPROCLIM = syscall.Errno(0x43) constant EPROTO (line 1902) | EPROTO = syscall.Errno(0x56) constant EPROTONOSUPPORT (line 1903) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1904) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1905) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1906) | EREMCHG = syscall.Errno(0x59) constant EREMOTE (line 1907) | EREMOTE = syscall.Errno(0x47) constant EREMOTEIO (line 1908) | EREMOTEIO = syscall.Errno(0x79) constant ERESTART (line 1909) | ERESTART = syscall.Errno(0x74) constant ERFKILL (line 1910) | ERFKILL = syscall.Errno(0x86) constant EROFS (line 1911) | EROFS = syscall.Errno(0x1e) constant ERREMOTE (line 1912) | ERREMOTE = syscall.Errno(0x51) constant ESHUTDOWN (line 1913) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1914) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1915) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1916) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1917) | ESRMNT = syscall.Errno(0x54) constant ESTALE (line 1918) | ESTALE = syscall.Errno(0x46) constant ESTRPIPE (line 1919) | ESTRPIPE = syscall.Errno(0x5b) constant ETIME (line 1920) | ETIME = syscall.Errno(0x49) constant ETIMEDOUT (line 1921) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1922) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1923) | ETXTBSY = syscall.Errno(0x1a) constant EUCLEAN (line 1924) | EUCLEAN = syscall.Errno(0x75) constant EUNATCH (line 1925) | EUNATCH = syscall.Errno(0x63) constant EUSERS (line 1926) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1927) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1928) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1929) | EXFULL = syscall.Errno(0x68) constant SIGABRT (line 1934) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1935) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1936) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1937) | SIGCHLD = syscall.Signal(0x14) constant SIGCLD (line 1938) | SIGCLD = syscall.Signal(0x14) constant SIGCONT (line 1939) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1940) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1941) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1942) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1943) | SIGILL = syscall.Signal(0x4) constant SIGINT (line 1944) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1945) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1946) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1947) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1948) | SIGLOST = syscall.Signal(0x1d) constant SIGPIPE (line 1949) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1950) | SIGPOLL = syscall.Signal(0x17) constant SIGPROF (line 1951) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1952) | SIGPWR = syscall.Signal(0x1d) constant SIGQUIT (line 1953) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1954) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1955) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1956) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1957) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1958) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1959) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1960) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1961) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1962) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1963) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1964) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1965) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1966) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1967) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1968) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x1f constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x20 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x18 constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x23 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OROUTE (line 41) | AF_OROUTE = 0x11 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x22 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ARCNET (line 48) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 49) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 50) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 51) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 52) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 53) | ARPHRD_STRIP = 0x17 constant B0 (line 54) | B0 = 0x0 constant B110 (line 55) | B110 = 0x6e constant B115200 (line 56) | B115200 = 0x1c200 constant B1200 (line 57) | B1200 = 0x4b0 constant B134 (line 58) | B134 = 0x86 constant B14400 (line 59) | B14400 = 0x3840 constant B150 (line 60) | B150 = 0x96 constant B1800 (line 61) | B1800 = 0x708 constant B19200 (line 62) | B19200 = 0x4b00 constant B200 (line 63) | B200 = 0xc8 constant B230400 (line 64) | B230400 = 0x38400 constant B2400 (line 65) | B2400 = 0x960 constant B28800 (line 66) | B28800 = 0x7080 constant B300 (line 67) | B300 = 0x12c constant B38400 (line 68) | B38400 = 0x9600 constant B460800 (line 69) | B460800 = 0x70800 constant B4800 (line 70) | B4800 = 0x12c0 constant B50 (line 71) | B50 = 0x32 constant B57600 (line 72) | B57600 = 0xe100 constant B600 (line 73) | B600 = 0x258 constant B7200 (line 74) | B7200 = 0x1c20 constant B75 (line 75) | B75 = 0x4b constant B76800 (line 76) | B76800 = 0x12c00 constant B921600 (line 77) | B921600 = 0xe1000 constant B9600 (line 78) | B9600 = 0x2580 constant BIOCFEEDBACK (line 79) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 80) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 81) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 82) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 83) | BIOCGDLTLIST = 0xc0084277 constant BIOCGETIF (line 84) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 85) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 86) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 87) | BIOCGRTIMEOUT = 0x400c427b constant BIOCGSEESENT (line 88) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 89) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 90) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 91) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 92) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 93) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 94) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 95) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 96) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 97) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x800c427a constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 101) | BIOCSTCPF = 0x80084272 constant BIOCSUDPF (line 102) | BIOCSUDPF = 0x80084273 constant BIOCVERSION (line 103) | BIOCVERSION = 0x40044271 constant BPF_A (line 104) | BPF_A = 0x10 constant BPF_ABS (line 105) | BPF_ABS = 0x20 constant BPF_ADD (line 106) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 107) | BPF_ALIGNMENT = 0x4 constant BPF_ALIGNMENT32 (line 108) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 109) | BPF_ALU = 0x4 constant BPF_AND (line 110) | BPF_AND = 0x50 constant BPF_B (line 111) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 112) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 113) | BPF_DIV = 0x30 constant BPF_H (line 114) | BPF_H = 0x8 constant BPF_IMM (line 115) | BPF_IMM = 0x0 constant BPF_IND (line 116) | BPF_IND = 0x40 constant BPF_JA (line 117) | BPF_JA = 0x0 constant BPF_JEQ (line 118) | BPF_JEQ = 0x10 constant BPF_JGE (line 119) | BPF_JGE = 0x30 constant BPF_JGT (line 120) | BPF_JGT = 0x20 constant BPF_JMP (line 121) | BPF_JMP = 0x5 constant BPF_JSET (line 122) | BPF_JSET = 0x40 constant BPF_K (line 123) | BPF_K = 0x0 constant BPF_LD (line 124) | BPF_LD = 0x0 constant BPF_LDX (line 125) | BPF_LDX = 0x1 constant BPF_LEN (line 126) | BPF_LEN = 0x80 constant BPF_LSH (line 127) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 128) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 129) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 130) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 131) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 132) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 133) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 134) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 135) | BPF_MISC = 0x7 constant BPF_MSH (line 136) | BPF_MSH = 0xa0 constant BPF_MUL (line 137) | BPF_MUL = 0x20 constant BPF_NEG (line 138) | BPF_NEG = 0x80 constant BPF_OR (line 139) | BPF_OR = 0x40 constant BPF_RELEASE (line 140) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 141) | BPF_RET = 0x6 constant BPF_RSH (line 142) | BPF_RSH = 0x70 constant BPF_ST (line 143) | BPF_ST = 0x2 constant BPF_STX (line 144) | BPF_STX = 0x3 constant BPF_SUB (line 145) | BPF_SUB = 0x10 constant BPF_TAX (line 146) | BPF_TAX = 0x0 constant BPF_TXA (line 147) | BPF_TXA = 0x80 constant BPF_W (line 148) | BPF_W = 0x0 constant BPF_X (line 149) | BPF_X = 0x8 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 153) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 154) | CLONE_FILES = 0x400 constant CLONE_FS (line 155) | CLONE_FS = 0x200 constant CLONE_PID (line 156) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 157) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 158) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 159) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 160) | CLONE_VM = 0x100 constant CREAD (line 161) | CREAD = 0x800 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant CTL_QUERY (line 174) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 175) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 176) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 177) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 178) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 179) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 180) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 181) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 182) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 183) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 184) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 185) | DLT_AURORA = 0x7e constant DLT_AX25 (line 186) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 187) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 188) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 189) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 190) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 191) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 192) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 193) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 194) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 195) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 196) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 199) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 200) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 201) | DLT_EN3MB = 0x2 constant DLT_ENC (line 202) | DLT_ENC = 0x6d constant DLT_ERF (line 203) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 204) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 205) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 206) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 207) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 208) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 209) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 210) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 211) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 212) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 213) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 214) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 215) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 216) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 217) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 218) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 219) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 221) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 222) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 223) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 224) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 225) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 226) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 227) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 228) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 229) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 233) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 234) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 235) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 236) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 237) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 238) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 239) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 240) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 241) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 242) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 243) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 244) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 245) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 246) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 247) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 248) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 249) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 250) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 251) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 252) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 253) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 254) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 255) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 256) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 257) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 258) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 259) | DLT_LAPD = 0xcb constant DLT_LIN (line 260) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 261) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 262) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 263) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 264) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 265) | DLT_LOOP = 0x6c constant DLT_LTALK (line 266) | DLT_LTALK = 0x72 constant DLT_MFR (line 267) | DLT_MFR = 0xb6 constant DLT_MOST (line 268) | DLT_MOST = 0xd3 constant DLT_MPLS (line 269) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 270) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 271) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 272) | DLT_MTP3 = 0x8d constant DLT_NULL (line 273) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 274) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 275) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 276) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 277) | DLT_PPI = 0xc0 constant DLT_PPP (line 278) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 279) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 280) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 281) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 282) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 283) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 284) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 285) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 286) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 287) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 288) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 289) | DLT_RIO = 0x7c constant DLT_SCCP (line 290) | DLT_SCCP = 0x8e constant DLT_SITA (line 291) | DLT_SITA = 0xc4 constant DLT_SLIP (line 292) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 293) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 294) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 295) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 296) | DLT_TZSP = 0x80 constant DLT_USB (line 297) | DLT_USB = 0xba constant DLT_USB_LINUX (line 298) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 299) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 300) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 301) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 302) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 303) | DT_BLK = 0x6 constant DT_CHR (line 304) | DT_CHR = 0x2 constant DT_DIR (line 305) | DT_DIR = 0x4 constant DT_FIFO (line 306) | DT_FIFO = 0x1 constant DT_LNK (line 307) | DT_LNK = 0xa constant DT_REG (line 308) | DT_REG = 0x8 constant DT_SOCK (line 309) | DT_SOCK = 0xc constant DT_UNKNOWN (line 310) | DT_UNKNOWN = 0x0 constant DT_WHT (line 311) | DT_WHT = 0xe constant ECHO (line 312) | ECHO = 0x8 constant ECHOCTL (line 313) | ECHOCTL = 0x40 constant ECHOE (line 314) | ECHOE = 0x2 constant ECHOK (line 315) | ECHOK = 0x4 constant ECHOKE (line 316) | ECHOKE = 0x1 constant ECHONL (line 317) | ECHONL = 0x10 constant ECHOPRT (line 318) | ECHOPRT = 0x20 constant EMUL_LINUX (line 319) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 320) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 321) | EMUL_MAXID = 0x6 constant EN_SW_CTL_INF (line 322) | EN_SW_CTL_INF = 0x1000 constant EN_SW_CTL_PREC (line 323) | EN_SW_CTL_PREC = 0x300 constant EN_SW_CTL_ROUND (line 324) | EN_SW_CTL_ROUND = 0xc00 constant EN_SW_DATACHAIN (line 325) | EN_SW_DATACHAIN = 0x80 constant EN_SW_DENORM (line 326) | EN_SW_DENORM = 0x2 constant EN_SW_INVOP (line 327) | EN_SW_INVOP = 0x1 constant EN_SW_OVERFLOW (line 328) | EN_SW_OVERFLOW = 0x8 constant EN_SW_PRECLOSS (line 329) | EN_SW_PRECLOSS = 0x20 constant EN_SW_UNDERFLOW (line 330) | EN_SW_UNDERFLOW = 0x10 constant EN_SW_ZERODIV (line 331) | EN_SW_ZERODIV = 0x4 constant ETHERCAP_JUMBO_MTU (line 332) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 333) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 334) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 335) | ETHERMIN = 0x2e constant ETHERMTU (line 336) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 337) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 338) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 339) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 340) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 341) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 342) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 343) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 344) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 345) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 346) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 347) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 348) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 349) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 350) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 351) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 352) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 353) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 354) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 355) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 356) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 357) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 358) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 359) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 360) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 361) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 362) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 363) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 364) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 365) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 366) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 367) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 368) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 369) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 370) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 371) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 372) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 373) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 374) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 375) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 376) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 377) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 378) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 379) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 380) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 381) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 382) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 383) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 384) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 385) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 386) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 387) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 388) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 389) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 390) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 391) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 392) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 393) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 394) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 395) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 396) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 397) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 398) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 399) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 400) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 401) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 402) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 403) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 404) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 405) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 406) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 407) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 408) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 409) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 410) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 411) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 412) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 413) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 414) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 415) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 416) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 417) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 418) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 419) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 420) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 421) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 422) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 423) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 424) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 425) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 426) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 427) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 428) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 429) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 430) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 431) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 432) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 433) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 434) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 435) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 436) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 437) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 438) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 439) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 440) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 441) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 442) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 443) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 444) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 445) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 446) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 447) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 448) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 449) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 450) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 451) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 452) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 453) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 454) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 455) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 456) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 457) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 458) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 459) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 460) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 461) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 462) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 463) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 464) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 465) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 466) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 467) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 468) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 469) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 470) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 471) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 472) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 473) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 474) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 475) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 476) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 477) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 478) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 479) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 480) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 481) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 482) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 483) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 484) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 485) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 486) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 487) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 488) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 489) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 490) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 491) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 492) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 493) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 494) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 495) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 496) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 497) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 498) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 499) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 500) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 501) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 502) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 503) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 504) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 505) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 506) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 507) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 508) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 509) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 510) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 511) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 512) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 513) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 514) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 515) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 516) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 517) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 518) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 519) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 520) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 521) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 522) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 523) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 524) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 525) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 526) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 527) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 528) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 529) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 530) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 531) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 532) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 533) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 534) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 535) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 536) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 537) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 538) | EVFILT_WRITE = 0x1 constant EV_ADD (line 539) | EV_ADD = 0x1 constant EV_CLEAR (line 540) | EV_CLEAR = 0x20 constant EV_DELETE (line 541) | EV_DELETE = 0x2 constant EV_DISABLE (line 542) | EV_DISABLE = 0x8 constant EV_ENABLE (line 543) | EV_ENABLE = 0x4 constant EV_EOF (line 544) | EV_EOF = 0x8000 constant EV_ERROR (line 545) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 546) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 547) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 548) | EV_SYSFLAGS = 0xf000 constant EXTA (line 549) | EXTA = 0x4b00 constant EXTB (line 550) | EXTB = 0x9600 constant EXTPROC (line 551) | EXTPROC = 0x800 constant FD_CLOEXEC (line 552) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 553) | FD_SETSIZE = 0x100 constant FLUSHO (line 554) | FLUSHO = 0x800000 constant F_CLOSEM (line 555) | F_CLOSEM = 0xa constant F_DUPFD (line 556) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 557) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 558) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 559) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 560) | F_FSIN = 0x10000000 constant F_FSINOUT (line 561) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 562) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 563) | F_FSPRIV = 0x8000 constant F_FSVOID (line 564) | F_FSVOID = 0x40000000 constant F_GETFD (line 565) | F_GETFD = 0x1 constant F_GETFL (line 566) | F_GETFL = 0x3 constant F_GETLK (line 567) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 568) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 569) | F_GETOWN = 0x5 constant F_MAXFD (line 570) | F_MAXFD = 0xb constant F_OK (line 571) | F_OK = 0x0 constant F_PARAM_MASK (line 572) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 573) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 574) | F_RDLCK = 0x1 constant F_SETFD (line 575) | F_SETFD = 0x2 constant F_SETFL (line 576) | F_SETFL = 0x4 constant F_SETLK (line 577) | F_SETLK = 0x8 constant F_SETLKW (line 578) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 579) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 580) | F_SETOWN = 0x6 constant F_UNLCK (line 581) | F_UNLCK = 0x2 constant F_WRLCK (line 582) | F_WRLCK = 0x3 constant HUPCL (line 583) | HUPCL = 0x4000 constant ICANON (line 584) | ICANON = 0x100 constant ICMP6_FILTER (line 585) | ICMP6_FILTER = 0x12 constant ICRNL (line 586) | ICRNL = 0x100 constant IEXTEN (line 587) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 588) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 589) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 590) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 591) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 592) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 593) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 594) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 595) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 596) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 597) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 598) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 599) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 600) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 601) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 602) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 603) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 604) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 605) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 606) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 607) | IFF_UP = 0x1 constant IFNAMSIZ (line 608) | IFNAMSIZ = 0x10 constant IFT_1822 (line 609) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 610) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 611) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 612) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 613) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 614) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 615) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 616) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 617) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 618) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 619) | IFT_ASYNC = 0x54 constant IFT_ATM (line 620) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 621) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 622) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 623) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 624) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 625) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 626) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 627) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 628) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 629) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 630) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 631) | IFT_BSC = 0x53 constant IFT_CARP (line 632) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 633) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 634) | IFT_CEPT = 0x13 constant IFT_CES (line 635) | IFT_CES = 0x85 constant IFT_CHANNEL (line 636) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 637) | IFT_CNR = 0x55 constant IFT_COFFEE (line 638) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 639) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 640) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 641) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 642) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 643) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 644) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 645) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 646) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 647) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 648) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 649) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 650) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 651) | IFT_DS3 = 0x1e constant IFT_DTM (line 652) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 653) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 654) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 655) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 656) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 657) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 658) | IFT_ECONET = 0xce constant IFT_EON (line 659) | IFT_EON = 0x19 constant IFT_EPLRS (line 660) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 661) | IFT_ESCON = 0x49 constant IFT_ETHER (line 662) | IFT_ETHER = 0x6 constant IFT_FAITH (line 663) | IFT_FAITH = 0xf2 constant IFT_FAST (line 664) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 665) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 666) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 667) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 668) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 669) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 670) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 671) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 672) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 673) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 674) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 675) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 676) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 677) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 678) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 679) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 680) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 681) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 682) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 683) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 684) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 685) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 686) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 687) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 688) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 689) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 690) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 691) | IFT_HSSI = 0x2e constant IFT_HY (line 692) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 693) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 694) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 695) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 696) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 697) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 698) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 699) | IFT_IFGSN = 0x91 constant IFT_IMT (line 700) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 701) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 702) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 703) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 704) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 705) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 706) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 707) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 708) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 709) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 710) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 711) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 712) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 713) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 714) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 715) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 716) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 717) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 718) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 719) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 720) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 721) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 722) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 723) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 724) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 725) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 726) | IFT_LAPB = 0x10 constant IFT_LAPD (line 727) | IFT_LAPD = 0x4d constant IFT_LAPF (line 728) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 729) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 730) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 731) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 732) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 733) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 734) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 735) | IFT_MODEM = 0x30 constant IFT_MPC (line 736) | IFT_MPC = 0x71 constant IFT_MPLS (line 737) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 738) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 739) | IFT_MSDSL = 0x8f constant IFT_MVL (line 740) | IFT_MVL = 0xbf constant IFT_MYRINET (line 741) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 742) | IFT_NFAS = 0xaf constant IFT_NSIP (line 743) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 744) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 745) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 746) | IFT_OTHER = 0x1 constant IFT_P10 (line 747) | IFT_P10 = 0xc constant IFT_P80 (line 748) | IFT_P80 = 0xd constant IFT_PARA (line 749) | IFT_PARA = 0x22 constant IFT_PFLOG (line 750) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 751) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 752) | IFT_PLC = 0xae constant IFT_PON155 (line 753) | IFT_PON155 = 0xcf constant IFT_PON622 (line 754) | IFT_PON622 = 0xd0 constant IFT_POS (line 755) | IFT_POS = 0xab constant IFT_PPP (line 756) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 757) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 758) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 759) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 760) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 761) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 762) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 763) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 764) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 765) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 766) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 767) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 768) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 769) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 770) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 771) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 772) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 773) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 774) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 775) | IFT_RS232 = 0x21 constant IFT_RSRB (line 776) | IFT_RSRB = 0x4f constant IFT_SDLC (line 777) | IFT_SDLC = 0x11 constant IFT_SDSL (line 778) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 779) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 780) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 781) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 782) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 783) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 784) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 785) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 786) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 787) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 788) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 789) | IFT_SONETVT = 0x33 constant IFT_SRP (line 790) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 791) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 792) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 793) | IFT_STARLAN = 0xb constant IFT_STF (line 794) | IFT_STF = 0xd7 constant IFT_T1 (line 795) | IFT_T1 = 0x12 constant IFT_TDLC (line 796) | IFT_TDLC = 0x74 constant IFT_TELINK (line 797) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 798) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 799) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 800) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 801) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 802) | IFT_ULTRA = 0x1d constant IFT_USB (line 803) | IFT_USB = 0xa0 constant IFT_V11 (line 804) | IFT_V11 = 0x40 constant IFT_V35 (line 805) | IFT_V35 = 0x2d constant IFT_V36 (line 806) | IFT_V36 = 0x41 constant IFT_V37 (line 807) | IFT_V37 = 0x78 constant IFT_VDSL (line 808) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 809) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 810) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 811) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 812) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 813) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 814) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 815) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 816) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 817) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 818) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 819) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 820) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 821) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 822) | IFT_X213 = 0x5d constant IFT_X25 (line 823) | IFT_X25 = 0x5 constant IFT_X25DDN (line 824) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 825) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 826) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 827) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 828) | IFT_XETHER = 0x1a constant IGNBRK (line 829) | IGNBRK = 0x1 constant IGNCR (line 830) | IGNCR = 0x80 constant IGNPAR (line 831) | IGNPAR = 0x4 constant IMAXBEL (line 832) | IMAXBEL = 0x2000 constant INLCR (line 833) | INLCR = 0x40 constant INPCK (line 834) | INPCK = 0x10 constant IN_CLASSA_HOST (line 835) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 836) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 837) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 838) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 839) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 840) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 841) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 842) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 843) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 844) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 845) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 846) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 847) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 848) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 849) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 850) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 851) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 852) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 853) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 854) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 855) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 856) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 857) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 858) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 859) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 860) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 861) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 862) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 863) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 864) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 865) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 866) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 867) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 868) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 869) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 870) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 871) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 872) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 873) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 874) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 875) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 876) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 877) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 878) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 879) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 880) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 881) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 882) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 883) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 884) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 885) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 886) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 887) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 888) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 889) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 890) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 891) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 892) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 893) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 894) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 895) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 896) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 897) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 898) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 899) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 900) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 901) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 902) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 903) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 904) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 905) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 906) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 907) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 908) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 909) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 910) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 911) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 912) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 913) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 914) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 915) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 916) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 917) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 918) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 919) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 920) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 921) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 922) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 923) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 924) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 925) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 926) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 927) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 928) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 929) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 930) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 931) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 932) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 933) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 934) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 935) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 936) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 937) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 938) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 939) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 940) | IP_EF = 0x8000 constant IP_ERRORMTU (line 941) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 942) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 943) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 944) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 945) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 946) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 947) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 948) | IP_MINTTL = 0x18 constant IP_MSS (line 949) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 950) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 951) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 952) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 953) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 954) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 955) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 956) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 957) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 958) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 959) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 960) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 961) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 962) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 963) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 964) | IP_RETOPTS = 0x8 constant IP_RF (line 965) | IP_RF = 0x8000 constant IP_TOS (line 966) | IP_TOS = 0x3 constant IP_TTL (line 967) | IP_TTL = 0x4 constant ISIG (line 968) | ISIG = 0x80 constant ISTRIP (line 969) | ISTRIP = 0x20 constant IXANY (line 970) | IXANY = 0x800 constant IXOFF (line 971) | IXOFF = 0x400 constant IXON (line 972) | IXON = 0x200 constant LOCK_EX (line 973) | LOCK_EX = 0x2 constant LOCK_NB (line 974) | LOCK_NB = 0x4 constant LOCK_SH (line 975) | LOCK_SH = 0x1 constant LOCK_UN (line 976) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 977) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 978) | MADV_FREE = 0x6 constant MADV_NORMAL (line 979) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 980) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 981) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 982) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 983) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 984) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 985) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 986) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 987) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 988) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 989) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 990) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 991) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 992) | MAP_ANON = 0x1000 constant MAP_FILE (line 993) | MAP_FILE = 0x0 constant MAP_FIXED (line 994) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 995) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 996) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 997) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 998) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 999) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 1000) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 1001) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 1002) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 1003) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 1004) | MAP_RENAME = 0x20 constant MAP_SHARED (line 1005) | MAP_SHARED = 0x1 constant MAP_STACK (line 1006) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 1007) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 1008) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 1009) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1010) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 1011) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1012) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1013) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1014) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1015) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1016) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1017) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1018) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1019) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1020) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1021) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1022) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1023) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1024) | MSG_OOB = 0x1 constant MSG_PEEK (line 1025) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1026) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1027) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1028) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1029) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1030) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1031) | MS_SYNC = 0x4 constant NAME_MAX (line 1032) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1033) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1034) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1035) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1036) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1037) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1038) | NET_RT_OOIFLIST = 0x3 constant NOFLSH (line 1039) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1040) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1041) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1042) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1043) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1044) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1045) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1046) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1047) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1048) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1049) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1050) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1051) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1052) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1053) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1054) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1055) | NOTE_WRITE = 0x2 constant OCRNL (line 1056) | OCRNL = 0x10 constant OFIOGETBMAP (line 1057) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1058) | ONLCR = 0x2 constant ONLRET (line 1059) | ONLRET = 0x40 constant ONOCR (line 1060) | ONOCR = 0x20 constant ONOEOT (line 1061) | ONOEOT = 0x8 constant OPOST (line 1062) | OPOST = 0x1 constant O_ACCMODE (line 1063) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1064) | O_ALT_IO = 0x40000 constant O_APPEND (line 1065) | O_APPEND = 0x8 constant O_ASYNC (line 1066) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1067) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1068) | O_CREAT = 0x200 constant O_DIRECT (line 1069) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1070) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1071) | O_DSYNC = 0x10000 constant O_EXCL (line 1072) | O_EXCL = 0x800 constant O_EXLOCK (line 1073) | O_EXLOCK = 0x20 constant O_FSYNC (line 1074) | O_FSYNC = 0x80 constant O_NDELAY (line 1075) | O_NDELAY = 0x4 constant O_NOCTTY (line 1076) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1077) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1078) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1079) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1080) | O_RDONLY = 0x0 constant O_RDWR (line 1081) | O_RDWR = 0x2 constant O_RSYNC (line 1082) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1083) | O_SHLOCK = 0x10 constant O_SYNC (line 1084) | O_SYNC = 0x80 constant O_TRUNC (line 1085) | O_TRUNC = 0x400 constant O_WRONLY (line 1086) | O_WRONLY = 0x1 constant PARENB (line 1087) | PARENB = 0x1000 constant PARMRK (line 1088) | PARMRK = 0x8 constant PARODD (line 1089) | PARODD = 0x2000 constant PENDIN (line 1090) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1091) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1092) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1093) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1094) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1095) | PROT_EXEC = 0x4 constant PROT_NONE (line 1096) | PROT_NONE = 0x0 constant PROT_READ (line 1097) | PROT_READ = 0x1 constant PROT_WRITE (line 1098) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1099) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1100) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1101) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1102) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1103) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1104) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1105) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1106) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1107) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1108) | RTAX_BRD = 0x7 constant RTAX_DST (line 1109) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1110) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1111) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1112) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1113) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1114) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1115) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1116) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1117) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1118) | RTA_BRD = 0x80 constant RTA_DST (line 1119) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1120) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1121) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1122) | RTA_IFA = 0x20 constant RTA_IFP (line 1123) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1124) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1125) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1126) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1127) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1128) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1129) | RTF_CLONING = 0x100 constant RTF_DONE (line 1130) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1131) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1132) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1133) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1134) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1135) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1136) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1137) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1138) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1139) | RTF_REJECT = 0x8 constant RTF_SRC (line 1140) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1141) | RTF_STATIC = 0x800 constant RTF_UP (line 1142) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1143) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1144) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1145) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1146) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1147) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1148) | RTM_DELETE = 0x2 constant RTM_GET (line 1149) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1150) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1151) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1152) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1153) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1154) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1155) | RTM_LOSING = 0x5 constant RTM_MISS (line 1156) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1157) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1158) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1159) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1160) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1161) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1162) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1163) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1164) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1165) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1166) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1167) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1168) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1169) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1170) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1171) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1172) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1173) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1174) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1175) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1176) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1177) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1178) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1179) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1180) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1181) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1182) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1183) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1184) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1185) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1186) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1187) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1188) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1189) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1190) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1191) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1192) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1193) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETPFSYNC (line 1194) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1195) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1196) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGHIWAT (line 1197) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1198) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1199) | SIOCGIFADDRPREF = 0xc0946920 constant SIOCGIFALIAS (line 1200) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1201) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1202) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1203) | SIOCGIFCONF = 0xc0086926 constant SIOCGIFDATA (line 1204) | SIOCGIFDATA = 0xc0946985 constant SIOCGIFDLT (line 1205) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1206) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1207) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1208) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1209) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1210) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1211) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1212) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1213) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1214) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1215) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1216) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1217) | SIOCGLINKSTR = 0xc01c6987 constant SIOCGLOWAT (line 1218) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1219) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1220) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1221) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1222) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1223) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCINITIFADDR (line 1224) | SIOCINITIFADDR = 0xc0446984 constant SIOCSDRVSPEC (line 1225) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETPFSYNC (line 1226) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1227) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1228) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1229) | SIOCSIFADDRPREF = 0x8094691f constant SIOCSIFBRDADDR (line 1230) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1231) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1232) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1233) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1234) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1235) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1236) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1237) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1238) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1239) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1240) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1241) | SIOCSLINKSTR = 0x801c6988 constant SIOCSLOWAT (line 1242) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1243) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1244) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1245) | SIOCZIFDATA = 0xc0946986 constant SOCK_CLOEXEC (line 1246) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1247) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1248) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1249) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1250) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1251) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1252) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1253) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1254) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1255) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1256) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1257) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1258) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1259) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1260) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1261) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1262) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1263) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1264) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1265) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1266) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1267) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1268) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1269) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1270) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1271) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1272) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1273) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1274) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1275) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1276) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1277) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1278) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1279) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1280) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1281) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1282) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1283) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1284) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1285) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1286) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1287) | S_IEXEC = 0x40 constant S_IFBLK (line 1288) | S_IFBLK = 0x6000 constant S_IFCHR (line 1289) | S_IFCHR = 0x2000 constant S_IFDIR (line 1290) | S_IFDIR = 0x4000 constant S_IFIFO (line 1291) | S_IFIFO = 0x1000 constant S_IFLNK (line 1292) | S_IFLNK = 0xa000 constant S_IFMT (line 1293) | S_IFMT = 0xf000 constant S_IFREG (line 1294) | S_IFREG = 0x8000 constant S_IFSOCK (line 1295) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1296) | S_IFWHT = 0xe000 constant S_IREAD (line 1297) | S_IREAD = 0x100 constant S_IRGRP (line 1298) | S_IRGRP = 0x20 constant S_IROTH (line 1299) | S_IROTH = 0x4 constant S_IRUSR (line 1300) | S_IRUSR = 0x100 constant S_IRWXG (line 1301) | S_IRWXG = 0x38 constant S_IRWXO (line 1302) | S_IRWXO = 0x7 constant S_IRWXU (line 1303) | S_IRWXU = 0x1c0 constant S_ISGID (line 1304) | S_ISGID = 0x400 constant S_ISTXT (line 1305) | S_ISTXT = 0x200 constant S_ISUID (line 1306) | S_ISUID = 0x800 constant S_ISVTX (line 1307) | S_ISVTX = 0x200 constant S_IWGRP (line 1308) | S_IWGRP = 0x10 constant S_IWOTH (line 1309) | S_IWOTH = 0x2 constant S_IWRITE (line 1310) | S_IWRITE = 0x80 constant S_IWUSR (line 1311) | S_IWUSR = 0x80 constant S_IXGRP (line 1312) | S_IXGRP = 0x8 constant S_IXOTH (line 1313) | S_IXOTH = 0x1 constant S_IXUSR (line 1314) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1315) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1316) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1317) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1318) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1319) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1320) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1321) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1322) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1323) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1324) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1325) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1326) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1327) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1328) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1329) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1330) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1331) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1332) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1333) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1334) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1335) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1336) | TIOCDCDTIMESTAMP = 0x400c7458 constant TIOCDRAIN (line 1337) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1338) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1339) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1340) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1341) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1342) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1343) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1344) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1345) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1346) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1347) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1348) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1349) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1350) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1351) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1352) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1353) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1354) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1355) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1356) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1357) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1358) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1359) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1360) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1361) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1362) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1363) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1364) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1365) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1366) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1367) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1368) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1369) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1370) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1371) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1372) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1373) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1374) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1375) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1376) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1377) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1378) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1379) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1380) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1381) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1382) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1383) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1384) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1385) | TIOCRCVFRAME = 0x80047445 constant TIOCREMOTE (line 1386) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1387) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1388) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1389) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1390) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1391) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1392) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1393) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1394) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1395) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1396) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1397) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1398) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1399) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1400) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1401) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1402) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1403) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1404) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1405) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1406) | TIOCXMTFRAME = 0x80047444 constant TOSTOP (line 1407) | TOSTOP = 0x400000 constant VDISCARD (line 1408) | VDISCARD = 0xf constant VDSUSP (line 1409) | VDSUSP = 0xb constant VEOF (line 1410) | VEOF = 0x0 constant VEOL (line 1411) | VEOL = 0x1 constant VEOL2 (line 1412) | VEOL2 = 0x2 constant VERASE (line 1413) | VERASE = 0x3 constant VINTR (line 1414) | VINTR = 0x8 constant VKILL (line 1415) | VKILL = 0x5 constant VLNEXT (line 1416) | VLNEXT = 0xe constant VMIN (line 1417) | VMIN = 0x10 constant VQUIT (line 1418) | VQUIT = 0x9 constant VREPRINT (line 1419) | VREPRINT = 0x6 constant VSTART (line 1420) | VSTART = 0xc constant VSTATUS (line 1421) | VSTATUS = 0x12 constant VSTOP (line 1422) | VSTOP = 0xd constant VSUSP (line 1423) | VSUSP = 0xa constant VTIME (line 1424) | VTIME = 0x11 constant VWERASE (line 1425) | VWERASE = 0x4 constant WALL (line 1426) | WALL = 0x8 constant WALLSIG (line 1427) | WALLSIG = 0x8 constant WALTSIG (line 1428) | WALTSIG = 0x4 constant WCLONE (line 1429) | WCLONE = 0x4 constant WCOREFLAG (line 1430) | WCOREFLAG = 0x80 constant WNOHANG (line 1431) | WNOHANG = 0x1 constant WNOWAIT (line 1432) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1433) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1434) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1435) | WSTOPPED = 0x7f constant WUNTRACED (line 1436) | WUNTRACED = 0x2 constant E2BIG (line 1441) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1442) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1443) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1444) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1445) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1446) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1447) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1448) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1449) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1450) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1451) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1452) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1453) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1454) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1455) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1456) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1457) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1458) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1459) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1460) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1461) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1462) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1463) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1464) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1465) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1466) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1467) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1468) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1469) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1470) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1471) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1472) | EINVAL = syscall.Errno(0x16) constant EIO (line 1473) | EIO = syscall.Errno(0x5) constant EISCONN (line 1474) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1475) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1476) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1477) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1478) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1479) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1480) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1481) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1482) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1483) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1484) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1485) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1486) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1487) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1488) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1489) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1490) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1491) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1492) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1493) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1494) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1495) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1496) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1497) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1498) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1499) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1500) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1501) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1502) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1503) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1504) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1505) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1506) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1507) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1508) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1509) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1510) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1511) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1512) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1513) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1514) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1515) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1516) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1517) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1518) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1519) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1520) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1521) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1522) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1523) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1524) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1525) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1526) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1527) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1528) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1529) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1530) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1531) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1532) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1533) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1534) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1535) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1536) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1537) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1538) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1543) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1544) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1545) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1546) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1547) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1548) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1549) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1550) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1551) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1552) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1553) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1554) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1555) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1556) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1557) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1558) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1559) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1560) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1561) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1562) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1563) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1564) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1565) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1566) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1567) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1568) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1569) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1570) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1571) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1572) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1573) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1574) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1575) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x1f constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x20 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x18 constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x23 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OROUTE (line 41) | AF_OROUTE = 0x11 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x22 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ARCNET (line 48) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 49) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 50) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 51) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 52) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 53) | ARPHRD_STRIP = 0x17 constant B0 (line 54) | B0 = 0x0 constant B110 (line 55) | B110 = 0x6e constant B115200 (line 56) | B115200 = 0x1c200 constant B1200 (line 57) | B1200 = 0x4b0 constant B134 (line 58) | B134 = 0x86 constant B14400 (line 59) | B14400 = 0x3840 constant B150 (line 60) | B150 = 0x96 constant B1800 (line 61) | B1800 = 0x708 constant B19200 (line 62) | B19200 = 0x4b00 constant B200 (line 63) | B200 = 0xc8 constant B230400 (line 64) | B230400 = 0x38400 constant B2400 (line 65) | B2400 = 0x960 constant B28800 (line 66) | B28800 = 0x7080 constant B300 (line 67) | B300 = 0x12c constant B38400 (line 68) | B38400 = 0x9600 constant B460800 (line 69) | B460800 = 0x70800 constant B4800 (line 70) | B4800 = 0x12c0 constant B50 (line 71) | B50 = 0x32 constant B57600 (line 72) | B57600 = 0xe100 constant B600 (line 73) | B600 = 0x258 constant B7200 (line 74) | B7200 = 0x1c20 constant B75 (line 75) | B75 = 0x4b constant B76800 (line 76) | B76800 = 0x12c00 constant B921600 (line 77) | B921600 = 0xe1000 constant B9600 (line 78) | B9600 = 0x2580 constant BIOCFEEDBACK (line 79) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 80) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 81) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 82) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 83) | BIOCGDLTLIST = 0xc0104277 constant BIOCGETIF (line 84) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 85) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 86) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 87) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGSEESENT (line 88) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 89) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 90) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 91) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 92) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 93) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 94) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 95) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 96) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 97) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x8010427a constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 101) | BIOCSTCPF = 0x80104272 constant BIOCSUDPF (line 102) | BIOCSUDPF = 0x80104273 constant BIOCVERSION (line 103) | BIOCVERSION = 0x40044271 constant BPF_A (line 104) | BPF_A = 0x10 constant BPF_ABS (line 105) | BPF_ABS = 0x20 constant BPF_ADD (line 106) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 107) | BPF_ALIGNMENT = 0x8 constant BPF_ALIGNMENT32 (line 108) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 109) | BPF_ALU = 0x4 constant BPF_AND (line 110) | BPF_AND = 0x50 constant BPF_B (line 111) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 112) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 113) | BPF_DIV = 0x30 constant BPF_H (line 114) | BPF_H = 0x8 constant BPF_IMM (line 115) | BPF_IMM = 0x0 constant BPF_IND (line 116) | BPF_IND = 0x40 constant BPF_JA (line 117) | BPF_JA = 0x0 constant BPF_JEQ (line 118) | BPF_JEQ = 0x10 constant BPF_JGE (line 119) | BPF_JGE = 0x30 constant BPF_JGT (line 120) | BPF_JGT = 0x20 constant BPF_JMP (line 121) | BPF_JMP = 0x5 constant BPF_JSET (line 122) | BPF_JSET = 0x40 constant BPF_K (line 123) | BPF_K = 0x0 constant BPF_LD (line 124) | BPF_LD = 0x0 constant BPF_LDX (line 125) | BPF_LDX = 0x1 constant BPF_LEN (line 126) | BPF_LEN = 0x80 constant BPF_LSH (line 127) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 128) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 129) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 130) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 131) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 132) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 133) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 134) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 135) | BPF_MISC = 0x7 constant BPF_MSH (line 136) | BPF_MSH = 0xa0 constant BPF_MUL (line 137) | BPF_MUL = 0x20 constant BPF_NEG (line 138) | BPF_NEG = 0x80 constant BPF_OR (line 139) | BPF_OR = 0x40 constant BPF_RELEASE (line 140) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 141) | BPF_RET = 0x6 constant BPF_RSH (line 142) | BPF_RSH = 0x70 constant BPF_ST (line 143) | BPF_ST = 0x2 constant BPF_STX (line 144) | BPF_STX = 0x3 constant BPF_SUB (line 145) | BPF_SUB = 0x10 constant BPF_TAX (line 146) | BPF_TAX = 0x0 constant BPF_TXA (line 147) | BPF_TXA = 0x80 constant BPF_W (line 148) | BPF_W = 0x0 constant BPF_X (line 149) | BPF_X = 0x8 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CLONE_CSIGNAL (line 153) | CLONE_CSIGNAL = 0xff constant CLONE_FILES (line 154) | CLONE_FILES = 0x400 constant CLONE_FS (line 155) | CLONE_FS = 0x200 constant CLONE_PID (line 156) | CLONE_PID = 0x1000 constant CLONE_PTRACE (line 157) | CLONE_PTRACE = 0x2000 constant CLONE_SIGHAND (line 158) | CLONE_SIGHAND = 0x800 constant CLONE_VFORK (line 159) | CLONE_VFORK = 0x4000 constant CLONE_VM (line 160) | CLONE_VM = 0x100 constant CREAD (line 161) | CREAD = 0x800 constant CS5 (line 162) | CS5 = 0x0 constant CS6 (line 163) | CS6 = 0x100 constant CS7 (line 164) | CS7 = 0x200 constant CS8 (line 165) | CS8 = 0x300 constant CSIZE (line 166) | CSIZE = 0x300 constant CSTART (line 167) | CSTART = 0x11 constant CSTATUS (line 168) | CSTATUS = 0x14 constant CSTOP (line 169) | CSTOP = 0x13 constant CSTOPB (line 170) | CSTOPB = 0x400 constant CSUSP (line 171) | CSUSP = 0x1a constant CTL_MAXNAME (line 172) | CTL_MAXNAME = 0xc constant CTL_NET (line 173) | CTL_NET = 0x4 constant CTL_QUERY (line 174) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 175) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 176) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 177) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 178) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 179) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 180) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 181) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 182) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 183) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 184) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 185) | DLT_AURORA = 0x7e constant DLT_AX25 (line 186) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 187) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 188) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 189) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 190) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 191) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 192) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 193) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 194) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 195) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 196) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 197) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 198) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 199) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 200) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 201) | DLT_EN3MB = 0x2 constant DLT_ENC (line 202) | DLT_ENC = 0x6d constant DLT_ERF (line 203) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 204) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 205) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 206) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 207) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 208) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 209) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 210) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 211) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 212) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 213) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 214) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 215) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 216) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 217) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 218) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 219) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 220) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 221) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 222) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 223) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 224) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 225) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 226) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 227) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 228) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 229) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 230) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 231) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 232) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 233) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 234) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 235) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 236) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 237) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 238) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 239) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 240) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 241) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 242) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 243) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 244) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 245) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 246) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 247) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 248) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 249) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 250) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 251) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 252) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 253) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 254) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 255) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 256) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 257) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 258) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 259) | DLT_LAPD = 0xcb constant DLT_LIN (line 260) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 261) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 262) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 263) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 264) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 265) | DLT_LOOP = 0x6c constant DLT_LTALK (line 266) | DLT_LTALK = 0x72 constant DLT_MFR (line 267) | DLT_MFR = 0xb6 constant DLT_MOST (line 268) | DLT_MOST = 0xd3 constant DLT_MPLS (line 269) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 270) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 271) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 272) | DLT_MTP3 = 0x8d constant DLT_NULL (line 273) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 274) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 275) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 276) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 277) | DLT_PPI = 0xc0 constant DLT_PPP (line 278) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 279) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 280) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 281) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 282) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 283) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 284) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 285) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 286) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 287) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 288) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 289) | DLT_RIO = 0x7c constant DLT_SCCP (line 290) | DLT_SCCP = 0x8e constant DLT_SITA (line 291) | DLT_SITA = 0xc4 constant DLT_SLIP (line 292) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 293) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 294) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 295) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 296) | DLT_TZSP = 0x80 constant DLT_USB (line 297) | DLT_USB = 0xba constant DLT_USB_LINUX (line 298) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 299) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 300) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 301) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 302) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 303) | DT_BLK = 0x6 constant DT_CHR (line 304) | DT_CHR = 0x2 constant DT_DIR (line 305) | DT_DIR = 0x4 constant DT_FIFO (line 306) | DT_FIFO = 0x1 constant DT_LNK (line 307) | DT_LNK = 0xa constant DT_REG (line 308) | DT_REG = 0x8 constant DT_SOCK (line 309) | DT_SOCK = 0xc constant DT_UNKNOWN (line 310) | DT_UNKNOWN = 0x0 constant DT_WHT (line 311) | DT_WHT = 0xe constant ECHO (line 312) | ECHO = 0x8 constant ECHOCTL (line 313) | ECHOCTL = 0x40 constant ECHOE (line 314) | ECHOE = 0x2 constant ECHOK (line 315) | ECHOK = 0x4 constant ECHOKE (line 316) | ECHOKE = 0x1 constant ECHONL (line 317) | ECHONL = 0x10 constant ECHOPRT (line 318) | ECHOPRT = 0x20 constant EMUL_LINUX (line 319) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 320) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 321) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 322) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 323) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 324) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 325) | ETHERMIN = 0x2e constant ETHERMTU (line 326) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 327) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 328) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 329) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 330) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 331) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 332) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 333) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 334) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 335) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 336) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 337) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 338) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 339) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 340) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 341) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 342) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 343) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 344) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 345) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 346) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 347) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 348) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 349) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 350) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 351) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 352) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 353) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 354) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 355) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 356) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 357) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 358) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 359) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 360) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 361) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 362) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 363) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 364) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 365) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 366) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 367) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 368) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 369) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 370) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 371) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 372) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 373) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 374) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 375) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 376) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 377) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 378) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 379) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 380) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 381) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 382) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 383) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 384) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 385) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 386) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 387) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 388) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 389) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 390) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 391) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 392) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 393) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 394) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 395) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 396) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 397) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 398) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 399) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 400) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 401) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 402) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 403) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 404) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 405) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 406) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 407) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 408) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 409) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 410) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 411) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 412) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 413) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 414) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 415) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 416) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 417) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 418) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 419) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 420) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 421) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 422) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 423) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 424) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 425) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 426) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 427) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 428) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 429) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 430) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 431) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 432) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 433) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 434) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 435) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 436) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 437) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 438) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 439) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 440) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 441) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 442) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 443) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 444) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 445) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 446) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 447) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 448) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 449) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 450) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 451) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 452) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 453) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 454) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 455) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 456) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 457) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 458) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 459) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 460) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 461) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 462) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 463) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 464) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 465) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 466) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 467) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 468) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 469) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 470) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 471) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 472) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 473) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 474) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 475) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 476) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 477) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 478) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 479) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 480) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 481) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 482) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 483) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 484) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 485) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 486) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 487) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 488) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 489) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 490) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 491) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 492) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 493) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 494) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 495) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 496) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 497) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 498) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 499) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 500) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 501) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 502) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 503) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 504) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 505) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 506) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 507) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 508) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 509) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 510) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 511) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 512) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 513) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 514) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 515) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 516) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 517) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 518) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 519) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 520) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 521) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 522) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 523) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 524) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 525) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 526) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 527) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 528) | EVFILT_WRITE = 0x1 constant EV_ADD (line 529) | EV_ADD = 0x1 constant EV_CLEAR (line 530) | EV_CLEAR = 0x20 constant EV_DELETE (line 531) | EV_DELETE = 0x2 constant EV_DISABLE (line 532) | EV_DISABLE = 0x8 constant EV_ENABLE (line 533) | EV_ENABLE = 0x4 constant EV_EOF (line 534) | EV_EOF = 0x8000 constant EV_ERROR (line 535) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 536) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 537) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 538) | EV_SYSFLAGS = 0xf000 constant EXTA (line 539) | EXTA = 0x4b00 constant EXTB (line 540) | EXTB = 0x9600 constant EXTPROC (line 541) | EXTPROC = 0x800 constant FD_CLOEXEC (line 542) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 543) | FD_SETSIZE = 0x100 constant FLUSHO (line 544) | FLUSHO = 0x800000 constant F_CLOSEM (line 545) | F_CLOSEM = 0xa constant F_DUPFD (line 546) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 547) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 548) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 549) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 550) | F_FSIN = 0x10000000 constant F_FSINOUT (line 551) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 552) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 553) | F_FSPRIV = 0x8000 constant F_FSVOID (line 554) | F_FSVOID = 0x40000000 constant F_GETFD (line 555) | F_GETFD = 0x1 constant F_GETFL (line 556) | F_GETFL = 0x3 constant F_GETLK (line 557) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 558) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 559) | F_GETOWN = 0x5 constant F_MAXFD (line 560) | F_MAXFD = 0xb constant F_OK (line 561) | F_OK = 0x0 constant F_PARAM_MASK (line 562) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 563) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 564) | F_RDLCK = 0x1 constant F_SETFD (line 565) | F_SETFD = 0x2 constant F_SETFL (line 566) | F_SETFL = 0x4 constant F_SETLK (line 567) | F_SETLK = 0x8 constant F_SETLKW (line 568) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 569) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 570) | F_SETOWN = 0x6 constant F_UNLCK (line 571) | F_UNLCK = 0x2 constant F_WRLCK (line 572) | F_WRLCK = 0x3 constant HUPCL (line 573) | HUPCL = 0x4000 constant ICANON (line 574) | ICANON = 0x100 constant ICMP6_FILTER (line 575) | ICMP6_FILTER = 0x12 constant ICRNL (line 576) | ICRNL = 0x100 constant IEXTEN (line 577) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 578) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 579) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 580) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 581) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 582) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 583) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 584) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 585) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 586) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 587) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 588) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 589) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 590) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 591) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 592) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 593) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 594) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 595) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 596) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 597) | IFF_UP = 0x1 constant IFNAMSIZ (line 598) | IFNAMSIZ = 0x10 constant IFT_1822 (line 599) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 600) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 601) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 602) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 603) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 604) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 605) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 606) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 607) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 608) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 609) | IFT_ASYNC = 0x54 constant IFT_ATM (line 610) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 611) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 612) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 613) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 614) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 615) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 616) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 617) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 618) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 619) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 620) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 621) | IFT_BSC = 0x53 constant IFT_CARP (line 622) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 623) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 624) | IFT_CEPT = 0x13 constant IFT_CES (line 625) | IFT_CES = 0x85 constant IFT_CHANNEL (line 626) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 627) | IFT_CNR = 0x55 constant IFT_COFFEE (line 628) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 629) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 630) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 631) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 632) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 633) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 634) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 635) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 636) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 637) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 638) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 639) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 640) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 641) | IFT_DS3 = 0x1e constant IFT_DTM (line 642) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 643) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 644) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 645) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 646) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 647) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 648) | IFT_ECONET = 0xce constant IFT_EON (line 649) | IFT_EON = 0x19 constant IFT_EPLRS (line 650) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 651) | IFT_ESCON = 0x49 constant IFT_ETHER (line 652) | IFT_ETHER = 0x6 constant IFT_FAITH (line 653) | IFT_FAITH = 0xf2 constant IFT_FAST (line 654) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 655) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 656) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 657) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 658) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 659) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 660) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 661) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 662) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 663) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 664) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 665) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 666) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 667) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 668) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 669) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 670) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 671) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 672) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 673) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 674) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 675) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 676) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 677) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 678) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 679) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 680) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 681) | IFT_HSSI = 0x2e constant IFT_HY (line 682) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 683) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 684) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 685) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 686) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 687) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 688) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 689) | IFT_IFGSN = 0x91 constant IFT_IMT (line 690) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 691) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 692) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 693) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 694) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 695) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 696) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 697) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 698) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 699) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 700) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 701) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 702) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 703) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 704) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 705) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 706) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 707) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 708) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 709) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 710) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 711) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 712) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 713) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 714) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 715) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 716) | IFT_LAPB = 0x10 constant IFT_LAPD (line 717) | IFT_LAPD = 0x4d constant IFT_LAPF (line 718) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 719) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 720) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 721) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 722) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 723) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 724) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 725) | IFT_MODEM = 0x30 constant IFT_MPC (line 726) | IFT_MPC = 0x71 constant IFT_MPLS (line 727) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 728) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 729) | IFT_MSDSL = 0x8f constant IFT_MVL (line 730) | IFT_MVL = 0xbf constant IFT_MYRINET (line 731) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 732) | IFT_NFAS = 0xaf constant IFT_NSIP (line 733) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 734) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 735) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 736) | IFT_OTHER = 0x1 constant IFT_P10 (line 737) | IFT_P10 = 0xc constant IFT_P80 (line 738) | IFT_P80 = 0xd constant IFT_PARA (line 739) | IFT_PARA = 0x22 constant IFT_PFLOG (line 740) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 741) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 742) | IFT_PLC = 0xae constant IFT_PON155 (line 743) | IFT_PON155 = 0xcf constant IFT_PON622 (line 744) | IFT_PON622 = 0xd0 constant IFT_POS (line 745) | IFT_POS = 0xab constant IFT_PPP (line 746) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 747) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 748) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 749) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 750) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 751) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 752) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 753) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 754) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 755) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 756) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 757) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 758) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 759) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 760) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 761) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 762) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 763) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 764) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 765) | IFT_RS232 = 0x21 constant IFT_RSRB (line 766) | IFT_RSRB = 0x4f constant IFT_SDLC (line 767) | IFT_SDLC = 0x11 constant IFT_SDSL (line 768) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 769) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 770) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 771) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 772) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 773) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 774) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 775) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 776) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 777) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 778) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 779) | IFT_SONETVT = 0x33 constant IFT_SRP (line 780) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 781) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 782) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 783) | IFT_STARLAN = 0xb constant IFT_STF (line 784) | IFT_STF = 0xd7 constant IFT_T1 (line 785) | IFT_T1 = 0x12 constant IFT_TDLC (line 786) | IFT_TDLC = 0x74 constant IFT_TELINK (line 787) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 788) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 789) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 790) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 791) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 792) | IFT_ULTRA = 0x1d constant IFT_USB (line 793) | IFT_USB = 0xa0 constant IFT_V11 (line 794) | IFT_V11 = 0x40 constant IFT_V35 (line 795) | IFT_V35 = 0x2d constant IFT_V36 (line 796) | IFT_V36 = 0x41 constant IFT_V37 (line 797) | IFT_V37 = 0x78 constant IFT_VDSL (line 798) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 799) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 800) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 801) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 802) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 803) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 804) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 805) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 806) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 807) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 808) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 809) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 810) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 811) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 812) | IFT_X213 = 0x5d constant IFT_X25 (line 813) | IFT_X25 = 0x5 constant IFT_X25DDN (line 814) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 815) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 816) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 817) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 818) | IFT_XETHER = 0x1a constant IGNBRK (line 819) | IGNBRK = 0x1 constant IGNCR (line 820) | IGNCR = 0x80 constant IGNPAR (line 821) | IGNPAR = 0x4 constant IMAXBEL (line 822) | IMAXBEL = 0x2000 constant INLCR (line 823) | INLCR = 0x40 constant INPCK (line 824) | INPCK = 0x10 constant IN_CLASSA_HOST (line 825) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 826) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 827) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 828) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 829) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 830) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 831) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 832) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 833) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 834) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 835) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 836) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 837) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 838) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 839) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 840) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 841) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 842) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 843) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 844) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 845) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 846) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 847) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 848) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 849) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 850) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 851) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 852) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 853) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 854) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 855) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 856) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 857) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 858) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 859) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 860) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 861) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 862) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 863) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 864) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 865) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 866) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 867) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 868) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 869) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 870) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 871) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 872) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 873) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 874) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 875) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 876) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 877) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 878) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 879) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 880) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 881) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 882) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 883) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 884) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 885) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 886) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 887) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 888) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 889) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 890) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 891) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 892) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 893) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 894) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 895) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 896) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 897) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 898) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 899) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 900) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 901) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 902) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 903) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 904) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 905) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 906) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 907) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 908) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 909) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 910) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 911) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 912) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 913) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 914) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 915) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 916) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 917) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 918) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 919) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 920) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 921) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 922) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 923) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 924) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 925) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 926) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 927) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 928) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 929) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 930) | IP_EF = 0x8000 constant IP_ERRORMTU (line 931) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 932) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 933) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 934) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 935) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 936) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 937) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 938) | IP_MINTTL = 0x18 constant IP_MSS (line 939) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 940) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 941) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 942) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 943) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 944) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 945) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 946) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 947) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 948) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 949) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 950) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 951) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 952) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 953) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 954) | IP_RETOPTS = 0x8 constant IP_RF (line 955) | IP_RF = 0x8000 constant IP_TOS (line 956) | IP_TOS = 0x3 constant IP_TTL (line 957) | IP_TTL = 0x4 constant ISIG (line 958) | ISIG = 0x80 constant ISTRIP (line 959) | ISTRIP = 0x20 constant IXANY (line 960) | IXANY = 0x800 constant IXOFF (line 961) | IXOFF = 0x400 constant IXON (line 962) | IXON = 0x200 constant LOCK_EX (line 963) | LOCK_EX = 0x2 constant LOCK_NB (line 964) | LOCK_NB = 0x4 constant LOCK_SH (line 965) | LOCK_SH = 0x1 constant LOCK_UN (line 966) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 967) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 968) | MADV_FREE = 0x6 constant MADV_NORMAL (line 969) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 970) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 971) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 972) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 973) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 974) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 975) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 976) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 977) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 978) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 979) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 980) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 981) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 982) | MAP_ANON = 0x1000 constant MAP_FILE (line 983) | MAP_FILE = 0x0 constant MAP_FIXED (line 984) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 985) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 986) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 987) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 988) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 989) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 990) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 991) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 992) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 993) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 994) | MAP_RENAME = 0x20 constant MAP_SHARED (line 995) | MAP_SHARED = 0x1 constant MAP_STACK (line 996) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 997) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 998) | MAP_WIRED = 0x800 constant MCL_CURRENT (line 999) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 1000) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 1001) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 1002) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 1003) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 1004) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 1005) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 1006) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 1007) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 1008) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 1009) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1010) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1011) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1012) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1013) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1014) | MSG_OOB = 0x1 constant MSG_PEEK (line 1015) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1016) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1017) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1018) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 1019) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 1020) | MS_INVALIDATE = 0x2 constant MS_SYNC (line 1021) | MS_SYNC = 0x4 constant NAME_MAX (line 1022) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1023) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1024) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1025) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1026) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1027) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1028) | NET_RT_OOIFLIST = 0x3 constant NOFLSH (line 1029) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1030) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1031) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1032) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1033) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1034) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1035) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1036) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1037) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1038) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1039) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1040) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1041) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1042) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1043) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1044) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1045) | NOTE_WRITE = 0x2 constant OCRNL (line 1046) | OCRNL = 0x10 constant OFIOGETBMAP (line 1047) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1048) | ONLCR = 0x2 constant ONLRET (line 1049) | ONLRET = 0x40 constant ONOCR (line 1050) | ONOCR = 0x20 constant ONOEOT (line 1051) | ONOEOT = 0x8 constant OPOST (line 1052) | OPOST = 0x1 constant O_ACCMODE (line 1053) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1054) | O_ALT_IO = 0x40000 constant O_APPEND (line 1055) | O_APPEND = 0x8 constant O_ASYNC (line 1056) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1057) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1058) | O_CREAT = 0x200 constant O_DIRECT (line 1059) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1060) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1061) | O_DSYNC = 0x10000 constant O_EXCL (line 1062) | O_EXCL = 0x800 constant O_EXLOCK (line 1063) | O_EXLOCK = 0x20 constant O_FSYNC (line 1064) | O_FSYNC = 0x80 constant O_NDELAY (line 1065) | O_NDELAY = 0x4 constant O_NOCTTY (line 1066) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1067) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1068) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1069) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1070) | O_RDONLY = 0x0 constant O_RDWR (line 1071) | O_RDWR = 0x2 constant O_RSYNC (line 1072) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1073) | O_SHLOCK = 0x10 constant O_SYNC (line 1074) | O_SYNC = 0x80 constant O_TRUNC (line 1075) | O_TRUNC = 0x400 constant O_WRONLY (line 1076) | O_WRONLY = 0x1 constant PARENB (line 1077) | PARENB = 0x1000 constant PARMRK (line 1078) | PARMRK = 0x8 constant PARODD (line 1079) | PARODD = 0x2000 constant PENDIN (line 1080) | PENDIN = 0x20000000 constant PRIO_PGRP (line 1081) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1082) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1083) | PRIO_USER = 0x2 constant PRI_IOFLUSH (line 1084) | PRI_IOFLUSH = 0x7c constant PROT_EXEC (line 1085) | PROT_EXEC = 0x4 constant PROT_NONE (line 1086) | PROT_NONE = 0x0 constant PROT_READ (line 1087) | PROT_READ = 0x1 constant PROT_WRITE (line 1088) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 1089) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1090) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1091) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1092) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1093) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1094) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1095) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1096) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1097) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1098) | RTAX_BRD = 0x7 constant RTAX_DST (line 1099) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1100) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1101) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1102) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1103) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1104) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1105) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1106) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1107) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1108) | RTA_BRD = 0x80 constant RTA_DST (line 1109) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1110) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1111) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1112) | RTA_IFA = 0x20 constant RTA_IFP (line 1113) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1114) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1115) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1116) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1117) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1118) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1119) | RTF_CLONING = 0x100 constant RTF_DONE (line 1120) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1121) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1122) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1123) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1124) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1125) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1126) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1127) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1128) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1129) | RTF_REJECT = 0x8 constant RTF_SRC (line 1130) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1131) | RTF_STATIC = 0x800 constant RTF_UP (line 1132) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1133) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1134) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1135) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1136) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1137) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1138) | RTM_DELETE = 0x2 constant RTM_GET (line 1139) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1140) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1141) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1142) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1143) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1144) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1145) | RTM_LOSING = 0x5 constant RTM_MISS (line 1146) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1147) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1148) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1149) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1150) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1151) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1152) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1153) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1154) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1155) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1156) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1157) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1158) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1159) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1160) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1161) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1162) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1163) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1164) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1165) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1166) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1167) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1168) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1169) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1170) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1171) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1172) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1173) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1174) | SIOCADDRT = 0x8038720a constant SIOCAIFADDR (line 1175) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1176) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1177) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1178) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1179) | SIOCDELRT = 0x8038720b constant SIOCDIFADDR (line 1180) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1181) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1182) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1183) | SIOCGDRVSPEC = 0xc028697b constant SIOCGETPFSYNC (line 1184) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1185) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1186) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGHIWAT (line 1187) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1188) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1189) | SIOCGIFADDRPREF = 0xc0986920 constant SIOCGIFALIAS (line 1190) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1191) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1192) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1193) | SIOCGIFCONF = 0xc0106926 constant SIOCGIFDATA (line 1194) | SIOCGIFDATA = 0xc0986985 constant SIOCGIFDLT (line 1195) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1196) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1197) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1198) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1199) | SIOCGIFMEDIA = 0xc0306936 constant SIOCGIFMETRIC (line 1200) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1201) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1202) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1203) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1204) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1205) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1206) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1207) | SIOCGLINKSTR = 0xc0286987 constant SIOCGLOWAT (line 1208) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1209) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1210) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1211) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1212) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1213) | SIOCIFGCLONERS = 0xc0106978 constant SIOCINITIFADDR (line 1214) | SIOCINITIFADDR = 0xc0706984 constant SIOCSDRVSPEC (line 1215) | SIOCSDRVSPEC = 0x8028697b constant SIOCSETPFSYNC (line 1216) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1217) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1218) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1219) | SIOCSIFADDRPREF = 0x8098691f constant SIOCSIFBRDADDR (line 1220) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1221) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1222) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1223) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1224) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1225) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1226) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1227) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1228) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1229) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1230) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1231) | SIOCSLINKSTR = 0x80286988 constant SIOCSLOWAT (line 1232) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1233) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1234) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1235) | SIOCZIFDATA = 0xc0986986 constant SOCK_CLOEXEC (line 1236) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1237) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1238) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1239) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1240) | SOCK_NOSIGPIPE = 0x40000000 constant SOCK_RAW (line 1241) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1242) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1243) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1244) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1245) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1246) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1247) | SO_ACCEPTCONN = 0x2 constant SO_ACCEPTFILTER (line 1248) | SO_ACCEPTFILTER = 0x1000 constant SO_BROADCAST (line 1249) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1250) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1251) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1252) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1253) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1254) | SO_LINGER = 0x80 constant SO_NOHEADER (line 1255) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1256) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1257) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1258) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1259) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1260) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1261) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1262) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1263) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1264) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1265) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1266) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1267) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1268) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1269) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1270) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1271) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1272) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1273) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1274) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1275) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1276) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1277) | S_IEXEC = 0x40 constant S_IFBLK (line 1278) | S_IFBLK = 0x6000 constant S_IFCHR (line 1279) | S_IFCHR = 0x2000 constant S_IFDIR (line 1280) | S_IFDIR = 0x4000 constant S_IFIFO (line 1281) | S_IFIFO = 0x1000 constant S_IFLNK (line 1282) | S_IFLNK = 0xa000 constant S_IFMT (line 1283) | S_IFMT = 0xf000 constant S_IFREG (line 1284) | S_IFREG = 0x8000 constant S_IFSOCK (line 1285) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1286) | S_IFWHT = 0xe000 constant S_IREAD (line 1287) | S_IREAD = 0x100 constant S_IRGRP (line 1288) | S_IRGRP = 0x20 constant S_IROTH (line 1289) | S_IROTH = 0x4 constant S_IRUSR (line 1290) | S_IRUSR = 0x100 constant S_IRWXG (line 1291) | S_IRWXG = 0x38 constant S_IRWXO (line 1292) | S_IRWXO = 0x7 constant S_IRWXU (line 1293) | S_IRWXU = 0x1c0 constant S_ISGID (line 1294) | S_ISGID = 0x400 constant S_ISTXT (line 1295) | S_ISTXT = 0x200 constant S_ISUID (line 1296) | S_ISUID = 0x800 constant S_ISVTX (line 1297) | S_ISVTX = 0x200 constant S_IWGRP (line 1298) | S_IWGRP = 0x10 constant S_IWOTH (line 1299) | S_IWOTH = 0x2 constant S_IWRITE (line 1300) | S_IWRITE = 0x80 constant S_IWUSR (line 1301) | S_IWUSR = 0x80 constant S_IXGRP (line 1302) | S_IXGRP = 0x8 constant S_IXOTH (line 1303) | S_IXOTH = 0x1 constant S_IXUSR (line 1304) | S_IXUSR = 0x40 constant S_LOGIN_SET (line 1305) | S_LOGIN_SET = 0x1 constant TCIFLUSH (line 1306) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1307) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1308) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1309) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1310) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1311) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1312) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1313) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1314) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1315) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1316) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1317) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1318) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1319) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1320) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1321) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1322) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1323) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1324) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1325) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1326) | TIOCDCDTIMESTAMP = 0x40107458 constant TIOCDRAIN (line 1327) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1328) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1329) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1330) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1331) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1332) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1333) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1334) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1335) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1336) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1337) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1338) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1339) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1340) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1341) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1342) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1343) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1344) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1345) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1346) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1347) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1348) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1349) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1350) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1351) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1352) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1353) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1354) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1355) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1356) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1357) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1358) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1359) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1360) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1361) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1362) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1363) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1364) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1365) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1366) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1367) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1368) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1369) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1370) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1371) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1372) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1373) | TIOCPTMGET = 0x40287446 constant TIOCPTSNAME (line 1374) | TIOCPTSNAME = 0x40287448 constant TIOCRCVFRAME (line 1375) | TIOCRCVFRAME = 0x80087445 constant TIOCREMOTE (line 1376) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1377) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1378) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1379) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1380) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1381) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1382) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1383) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1384) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1385) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1386) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1387) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1388) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1389) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1390) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1391) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1392) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1393) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1394) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1395) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1396) | TIOCXMTFRAME = 0x80087444 constant TOSTOP (line 1397) | TOSTOP = 0x400000 constant VDISCARD (line 1398) | VDISCARD = 0xf constant VDSUSP (line 1399) | VDSUSP = 0xb constant VEOF (line 1400) | VEOF = 0x0 constant VEOL (line 1401) | VEOL = 0x1 constant VEOL2 (line 1402) | VEOL2 = 0x2 constant VERASE (line 1403) | VERASE = 0x3 constant VINTR (line 1404) | VINTR = 0x8 constant VKILL (line 1405) | VKILL = 0x5 constant VLNEXT (line 1406) | VLNEXT = 0xe constant VMIN (line 1407) | VMIN = 0x10 constant VQUIT (line 1408) | VQUIT = 0x9 constant VREPRINT (line 1409) | VREPRINT = 0x6 constant VSTART (line 1410) | VSTART = 0xc constant VSTATUS (line 1411) | VSTATUS = 0x12 constant VSTOP (line 1412) | VSTOP = 0xd constant VSUSP (line 1413) | VSUSP = 0xa constant VTIME (line 1414) | VTIME = 0x11 constant VWERASE (line 1415) | VWERASE = 0x4 constant WALL (line 1416) | WALL = 0x8 constant WALLSIG (line 1417) | WALLSIG = 0x8 constant WALTSIG (line 1418) | WALTSIG = 0x4 constant WCLONE (line 1419) | WCLONE = 0x4 constant WCOREFLAG (line 1420) | WCOREFLAG = 0x80 constant WNOHANG (line 1421) | WNOHANG = 0x1 constant WNOWAIT (line 1422) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1423) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1424) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1425) | WSTOPPED = 0x7f constant WUNTRACED (line 1426) | WUNTRACED = 0x2 constant E2BIG (line 1431) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1432) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1433) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1434) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1435) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1436) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1437) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1438) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1439) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1440) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1441) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1442) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1443) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1444) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1445) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1446) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1447) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1448) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1449) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1450) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1451) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1452) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1453) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1454) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1455) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1456) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1457) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1458) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1459) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1460) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1461) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1462) | EINVAL = syscall.Errno(0x16) constant EIO (line 1463) | EIO = syscall.Errno(0x5) constant EISCONN (line 1464) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1465) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1466) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1467) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1468) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1469) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1470) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1471) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1472) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1473) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1474) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1475) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1476) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1477) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1478) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1479) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1480) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1481) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1482) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1483) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1484) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1485) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1486) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1487) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1488) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1489) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1490) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1491) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1492) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1493) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1494) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1495) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1496) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1497) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1498) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1499) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1500) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1501) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1502) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1503) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1504) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1505) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1506) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1507) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1508) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1509) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1510) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1511) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1512) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1513) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1514) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1515) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1516) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1517) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1518) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1519) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1520) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1521) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1522) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1523) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1524) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1525) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1526) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1527) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1528) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1533) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1534) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1535) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1536) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1537) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1538) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1539) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1540) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1541) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1542) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1543) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1544) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1545) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1546) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1547) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1548) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1549) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1550) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1551) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1552) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1553) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1554) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1555) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1556) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1557) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1558) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1559) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1560) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1561) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1562) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1563) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1564) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1565) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_ARP (line 15) | AF_ARP = 0x1c constant AF_BLUETOOTH (line 16) | AF_BLUETOOTH = 0x1f constant AF_CCITT (line 17) | AF_CCITT = 0xa constant AF_CHAOS (line 18) | AF_CHAOS = 0x5 constant AF_CNT (line 19) | AF_CNT = 0x15 constant AF_COIP (line 20) | AF_COIP = 0x14 constant AF_DATAKIT (line 21) | AF_DATAKIT = 0x9 constant AF_DECnet (line 22) | AF_DECnet = 0xc constant AF_DLI (line 23) | AF_DLI = 0xd constant AF_E164 (line 24) | AF_E164 = 0x1a constant AF_ECMA (line 25) | AF_ECMA = 0x8 constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IEEE80211 (line 27) | AF_IEEE80211 = 0x20 constant AF_IMPLINK (line 28) | AF_IMPLINK = 0x3 constant AF_INET (line 29) | AF_INET = 0x2 constant AF_INET6 (line 30) | AF_INET6 = 0x18 constant AF_IPX (line 31) | AF_IPX = 0x17 constant AF_ISDN (line 32) | AF_ISDN = 0x1a constant AF_ISO (line 33) | AF_ISO = 0x7 constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x23 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OROUTE (line 41) | AF_OROUTE = 0x11 constant AF_OSI (line 42) | AF_OSI = 0x7 constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x22 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ARCNET (line 48) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ETHER (line 49) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 50) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 51) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 52) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_STRIP (line 53) | ARPHRD_STRIP = 0x17 constant B0 (line 54) | B0 = 0x0 constant B110 (line 55) | B110 = 0x6e constant B115200 (line 56) | B115200 = 0x1c200 constant B1200 (line 57) | B1200 = 0x4b0 constant B134 (line 58) | B134 = 0x86 constant B14400 (line 59) | B14400 = 0x3840 constant B150 (line 60) | B150 = 0x96 constant B1800 (line 61) | B1800 = 0x708 constant B19200 (line 62) | B19200 = 0x4b00 constant B200 (line 63) | B200 = 0xc8 constant B230400 (line 64) | B230400 = 0x38400 constant B2400 (line 65) | B2400 = 0x960 constant B28800 (line 66) | B28800 = 0x7080 constant B300 (line 67) | B300 = 0x12c constant B38400 (line 68) | B38400 = 0x9600 constant B460800 (line 69) | B460800 = 0x70800 constant B4800 (line 70) | B4800 = 0x12c0 constant B50 (line 71) | B50 = 0x32 constant B57600 (line 72) | B57600 = 0xe100 constant B600 (line 73) | B600 = 0x258 constant B7200 (line 74) | B7200 = 0x1c20 constant B75 (line 75) | B75 = 0x4b constant B76800 (line 76) | B76800 = 0x12c00 constant B921600 (line 77) | B921600 = 0xe1000 constant B9600 (line 78) | B9600 = 0x2580 constant BIOCFEEDBACK (line 79) | BIOCFEEDBACK = 0x8004427d constant BIOCFLUSH (line 80) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 81) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 82) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 83) | BIOCGDLTLIST = 0xc0084277 constant BIOCGETIF (line 84) | BIOCGETIF = 0x4090426b constant BIOCGFEEDBACK (line 85) | BIOCGFEEDBACK = 0x4004427c constant BIOCGHDRCMPLT (line 86) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 87) | BIOCGRTIMEOUT = 0x400c427b constant BIOCGSEESENT (line 88) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 89) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 90) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 91) | BIOCIMMEDIATE = 0x80044270 constant BIOCPROMISC (line 92) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 93) | BIOCSBLEN = 0xc0044266 constant BIOCSDLT (line 94) | BIOCSDLT = 0x80044276 constant BIOCSETF (line 95) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 96) | BIOCSETIF = 0x8090426c constant BIOCSFEEDBACK (line 97) | BIOCSFEEDBACK = 0x8004427d constant BIOCSHDRCMPLT (line 98) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRTIMEOUT (line 99) | BIOCSRTIMEOUT = 0x800c427a constant BIOCSSEESENT (line 100) | BIOCSSEESENT = 0x80044279 constant BIOCSTCPF (line 101) | BIOCSTCPF = 0x80084272 constant BIOCSUDPF (line 102) | BIOCSUDPF = 0x80084273 constant BIOCVERSION (line 103) | BIOCVERSION = 0x40044271 constant BPF_A (line 104) | BPF_A = 0x10 constant BPF_ABS (line 105) | BPF_ABS = 0x20 constant BPF_ADD (line 106) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 107) | BPF_ALIGNMENT = 0x4 constant BPF_ALIGNMENT32 (line 108) | BPF_ALIGNMENT32 = 0x4 constant BPF_ALU (line 109) | BPF_ALU = 0x4 constant BPF_AND (line 110) | BPF_AND = 0x50 constant BPF_B (line 111) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 112) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 113) | BPF_DIV = 0x30 constant BPF_H (line 114) | BPF_H = 0x8 constant BPF_IMM (line 115) | BPF_IMM = 0x0 constant BPF_IND (line 116) | BPF_IND = 0x40 constant BPF_JA (line 117) | BPF_JA = 0x0 constant BPF_JEQ (line 118) | BPF_JEQ = 0x10 constant BPF_JGE (line 119) | BPF_JGE = 0x30 constant BPF_JGT (line 120) | BPF_JGT = 0x20 constant BPF_JMP (line 121) | BPF_JMP = 0x5 constant BPF_JSET (line 122) | BPF_JSET = 0x40 constant BPF_K (line 123) | BPF_K = 0x0 constant BPF_LD (line 124) | BPF_LD = 0x0 constant BPF_LDX (line 125) | BPF_LDX = 0x1 constant BPF_LEN (line 126) | BPF_LEN = 0x80 constant BPF_LSH (line 127) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 128) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 129) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 130) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 131) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 132) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 133) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 134) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 135) | BPF_MISC = 0x7 constant BPF_MSH (line 136) | BPF_MSH = 0xa0 constant BPF_MUL (line 137) | BPF_MUL = 0x20 constant BPF_NEG (line 138) | BPF_NEG = 0x80 constant BPF_OR (line 139) | BPF_OR = 0x40 constant BPF_RELEASE (line 140) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 141) | BPF_RET = 0x6 constant BPF_RSH (line 142) | BPF_RSH = 0x70 constant BPF_ST (line 143) | BPF_ST = 0x2 constant BPF_STX (line 144) | BPF_STX = 0x3 constant BPF_SUB (line 145) | BPF_SUB = 0x10 constant BPF_TAX (line 146) | BPF_TAX = 0x0 constant BPF_TXA (line 147) | BPF_TXA = 0x80 constant BPF_W (line 148) | BPF_W = 0x0 constant BPF_X (line 149) | BPF_X = 0x8 constant BRKINT (line 150) | BRKINT = 0x2 constant CFLUSH (line 151) | CFLUSH = 0xf constant CLOCAL (line 152) | CLOCAL = 0x8000 constant CREAD (line 153) | CREAD = 0x800 constant CS5 (line 154) | CS5 = 0x0 constant CS6 (line 155) | CS6 = 0x100 constant CS7 (line 156) | CS7 = 0x200 constant CS8 (line 157) | CS8 = 0x300 constant CSIZE (line 158) | CSIZE = 0x300 constant CSTART (line 159) | CSTART = 0x11 constant CSTATUS (line 160) | CSTATUS = 0x14 constant CSTOP (line 161) | CSTOP = 0x13 constant CSTOPB (line 162) | CSTOPB = 0x400 constant CSUSP (line 163) | CSUSP = 0x1a constant CTL_MAXNAME (line 164) | CTL_MAXNAME = 0xc constant CTL_NET (line 165) | CTL_NET = 0x4 constant CTL_QUERY (line 166) | CTL_QUERY = -0x2 constant DIOCBSFLUSH (line 167) | DIOCBSFLUSH = 0x20006478 constant DLT_A429 (line 168) | DLT_A429 = 0xb8 constant DLT_A653_ICM (line 169) | DLT_A653_ICM = 0xb9 constant DLT_AIRONET_HEADER (line 170) | DLT_AIRONET_HEADER = 0x78 constant DLT_AOS (line 171) | DLT_AOS = 0xde constant DLT_APPLE_IP_OVER_IEEE1394 (line 172) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 173) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 174) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 175) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 176) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 177) | DLT_AURORA = 0x7e constant DLT_AX25 (line 178) | DLT_AX25 = 0x3 constant DLT_AX25_KISS (line 179) | DLT_AX25_KISS = 0xca constant DLT_BACNET_MS_TP (line 180) | DLT_BACNET_MS_TP = 0xa5 constant DLT_BLUETOOTH_HCI_H4 (line 181) | DLT_BLUETOOTH_HCI_H4 = 0xbb constant DLT_BLUETOOTH_HCI_H4_WITH_PHDR (line 182) | DLT_BLUETOOTH_HCI_H4_WITH_PHDR = 0xc9 constant DLT_CAN20B (line 183) | DLT_CAN20B = 0xbe constant DLT_CAN_SOCKETCAN (line 184) | DLT_CAN_SOCKETCAN = 0xe3 constant DLT_CHAOS (line 185) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 186) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 187) | DLT_C_HDLC = 0x68 constant DLT_C_HDLC_WITH_DIR (line 188) | DLT_C_HDLC_WITH_DIR = 0xcd constant DLT_DECT (line 189) | DLT_DECT = 0xdd constant DLT_DOCSIS (line 190) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 191) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 192) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 193) | DLT_EN3MB = 0x2 constant DLT_ENC (line 194) | DLT_ENC = 0x6d constant DLT_ERF (line 195) | DLT_ERF = 0xc5 constant DLT_ERF_ETH (line 196) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 197) | DLT_ERF_POS = 0xb0 constant DLT_FC_2 (line 198) | DLT_FC_2 = 0xe0 constant DLT_FC_2_WITH_FRAME_DELIMS (line 199) | DLT_FC_2_WITH_FRAME_DELIMS = 0xe1 constant DLT_FDDI (line 200) | DLT_FDDI = 0xa constant DLT_FLEXRAY (line 201) | DLT_FLEXRAY = 0xd2 constant DLT_FRELAY (line 202) | DLT_FRELAY = 0x6b constant DLT_FRELAY_WITH_DIR (line 203) | DLT_FRELAY_WITH_DIR = 0xce constant DLT_GCOM_SERIAL (line 204) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 205) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 206) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 207) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 208) | DLT_GPRS_LLC = 0xa9 constant DLT_GSMTAP_ABIS (line 209) | DLT_GSMTAP_ABIS = 0xda constant DLT_GSMTAP_UM (line 210) | DLT_GSMTAP_UM = 0xd9 constant DLT_HDLC (line 211) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 212) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 213) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 214) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 215) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 216) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 217) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 218) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 219) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IEEE802_15_4 (line 220) | DLT_IEEE802_15_4 = 0xc3 constant DLT_IEEE802_15_4_LINUX (line 221) | DLT_IEEE802_15_4_LINUX = 0xbf constant DLT_IEEE802_15_4_NONASK_PHY (line 222) | DLT_IEEE802_15_4_NONASK_PHY = 0xd7 constant DLT_IEEE802_16_MAC_CPS (line 223) | DLT_IEEE802_16_MAC_CPS = 0xbc constant DLT_IEEE802_16_MAC_CPS_RADIO (line 224) | DLT_IEEE802_16_MAC_CPS_RADIO = 0xc1 constant DLT_IPMB (line 225) | DLT_IPMB = 0xc7 constant DLT_IPMB_LINUX (line 226) | DLT_IPMB_LINUX = 0xd1 constant DLT_IPNET (line 227) | DLT_IPNET = 0xe2 constant DLT_IPV4 (line 228) | DLT_IPV4 = 0xe4 constant DLT_IPV6 (line 229) | DLT_IPV6 = 0xe5 constant DLT_IP_OVER_FC (line 230) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 231) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 232) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 233) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 234) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 235) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 236) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 237) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_ISM (line 238) | DLT_JUNIPER_ISM = 0xc2 constant DLT_JUNIPER_MFR (line 239) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 240) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 241) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 242) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 243) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 244) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 245) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 246) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 247) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_JUNIPER_ST (line 248) | DLT_JUNIPER_ST = 0xc8 constant DLT_JUNIPER_VP (line 249) | DLT_JUNIPER_VP = 0xb7 constant DLT_LAPB_WITH_DIR (line 250) | DLT_LAPB_WITH_DIR = 0xcf constant DLT_LAPD (line 251) | DLT_LAPD = 0xcb constant DLT_LIN (line 252) | DLT_LIN = 0xd4 constant DLT_LINUX_EVDEV (line 253) | DLT_LINUX_EVDEV = 0xd8 constant DLT_LINUX_IRDA (line 254) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 255) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 256) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 257) | DLT_LOOP = 0x6c constant DLT_LTALK (line 258) | DLT_LTALK = 0x72 constant DLT_MFR (line 259) | DLT_MFR = 0xb6 constant DLT_MOST (line 260) | DLT_MOST = 0xd3 constant DLT_MPLS (line 261) | DLT_MPLS = 0xdb constant DLT_MTP2 (line 262) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 263) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 264) | DLT_MTP3 = 0x8d constant DLT_NULL (line 265) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 266) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 267) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 268) | DLT_PFSYNC = 0x12 constant DLT_PPI (line 269) | DLT_PPI = 0xc0 constant DLT_PPP (line 270) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 271) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_ETHER (line 272) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_PPPD (line 273) | DLT_PPP_PPPD = 0xa6 constant DLT_PPP_SERIAL (line 274) | DLT_PPP_SERIAL = 0x32 constant DLT_PPP_WITH_DIR (line 275) | DLT_PPP_WITH_DIR = 0xcc constant DLT_PRISM_HEADER (line 276) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 277) | DLT_PRONET = 0x4 constant DLT_RAIF1 (line 278) | DLT_RAIF1 = 0xc6 constant DLT_RAW (line 279) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 280) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 281) | DLT_RIO = 0x7c constant DLT_SCCP (line 282) | DLT_SCCP = 0x8e constant DLT_SITA (line 283) | DLT_SITA = 0xc4 constant DLT_SLIP (line 284) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 285) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 286) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 287) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 288) | DLT_TZSP = 0x80 constant DLT_USB (line 289) | DLT_USB = 0xba constant DLT_USB_LINUX (line 290) | DLT_USB_LINUX = 0xbd constant DLT_USB_LINUX_MMAPPED (line 291) | DLT_USB_LINUX_MMAPPED = 0xdc constant DLT_WIHART (line 292) | DLT_WIHART = 0xdf constant DLT_X2E_SERIAL (line 293) | DLT_X2E_SERIAL = 0xd5 constant DLT_X2E_XORAYA (line 294) | DLT_X2E_XORAYA = 0xd6 constant DT_BLK (line 295) | DT_BLK = 0x6 constant DT_CHR (line 296) | DT_CHR = 0x2 constant DT_DIR (line 297) | DT_DIR = 0x4 constant DT_FIFO (line 298) | DT_FIFO = 0x1 constant DT_LNK (line 299) | DT_LNK = 0xa constant DT_REG (line 300) | DT_REG = 0x8 constant DT_SOCK (line 301) | DT_SOCK = 0xc constant DT_UNKNOWN (line 302) | DT_UNKNOWN = 0x0 constant DT_WHT (line 303) | DT_WHT = 0xe constant ECHO (line 304) | ECHO = 0x8 constant ECHOCTL (line 305) | ECHOCTL = 0x40 constant ECHOE (line 306) | ECHOE = 0x2 constant ECHOK (line 307) | ECHOK = 0x4 constant ECHOKE (line 308) | ECHOKE = 0x1 constant ECHONL (line 309) | ECHONL = 0x10 constant ECHOPRT (line 310) | ECHOPRT = 0x20 constant EMUL_LINUX (line 311) | EMUL_LINUX = 0x1 constant EMUL_LINUX32 (line 312) | EMUL_LINUX32 = 0x5 constant EMUL_MAXID (line 313) | EMUL_MAXID = 0x6 constant ETHERCAP_JUMBO_MTU (line 314) | ETHERCAP_JUMBO_MTU = 0x4 constant ETHERCAP_VLAN_HWTAGGING (line 315) | ETHERCAP_VLAN_HWTAGGING = 0x2 constant ETHERCAP_VLAN_MTU (line 316) | ETHERCAP_VLAN_MTU = 0x1 constant ETHERMIN (line 317) | ETHERMIN = 0x2e constant ETHERMTU (line 318) | ETHERMTU = 0x5dc constant ETHERMTU_JUMBO (line 319) | ETHERMTU_JUMBO = 0x2328 constant ETHERTYPE_8023 (line 320) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 321) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 322) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 323) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 324) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 325) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 326) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_APOLLO (line 327) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 328) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 329) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 330) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 331) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 332) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 333) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 334) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 335) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 336) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 337) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 338) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 339) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 340) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 341) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 342) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 343) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 344) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 345) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 346) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 347) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 348) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 349) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 350) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 351) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 352) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 353) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 354) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 355) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 356) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 357) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 358) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 359) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 360) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 361) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 362) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 363) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 364) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 365) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 366) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 367) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 368) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 369) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 370) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 371) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 372) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 373) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 374) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 375) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 376) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 377) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 378) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 379) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 380) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 381) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 382) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 383) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 384) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 385) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 386) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 387) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 388) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 389) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 390) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 391) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 392) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 393) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 394) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 395) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 396) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LOGICRAFT (line 397) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 398) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 399) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 400) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 401) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 402) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 403) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 404) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 405) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 406) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 407) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 408) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 409) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 410) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 411) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 412) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 413) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 414) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 415) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 416) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 417) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 418) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 419) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 420) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 421) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 422) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 423) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 424) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 425) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 426) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 427) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 428) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 429) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 430) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 431) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 432) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 433) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 434) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 435) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 436) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 437) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 438) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 439) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 440) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 441) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 442) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 443) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_RACAL (line 444) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 445) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 446) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 447) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 448) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 449) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 450) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 451) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 452) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 453) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 454) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 455) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 456) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 457) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 458) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 459) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOWPROTOCOLS (line 460) | ETHERTYPE_SLOWPROTOCOLS = 0x8809 constant ETHERTYPE_SNA (line 461) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 462) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 463) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 464) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 465) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 466) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 467) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 468) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 469) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 470) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 471) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 472) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 473) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 474) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 475) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 476) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 477) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 478) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 479) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 480) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 481) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 482) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 483) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 484) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 485) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 486) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 487) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 488) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 489) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 490) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 491) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 492) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 493) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 494) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 495) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 496) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 497) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 498) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 499) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 500) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 501) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 502) | ETHER_ADDR_LEN = 0x6 constant ETHER_CRC_LEN (line 503) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 504) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 505) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 506) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_LEN (line 507) | ETHER_MAX_LEN = 0x5ee constant ETHER_MAX_LEN_JUMBO (line 508) | ETHER_MAX_LEN_JUMBO = 0x233a constant ETHER_MIN_LEN (line 509) | ETHER_MIN_LEN = 0x40 constant ETHER_PPPOE_ENCAP_LEN (line 510) | ETHER_PPPOE_ENCAP_LEN = 0x8 constant ETHER_TYPE_LEN (line 511) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 512) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 513) | EVFILT_AIO = 0x2 constant EVFILT_PROC (line 514) | EVFILT_PROC = 0x4 constant EVFILT_READ (line 515) | EVFILT_READ = 0x0 constant EVFILT_SIGNAL (line 516) | EVFILT_SIGNAL = 0x5 constant EVFILT_SYSCOUNT (line 517) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 518) | EVFILT_TIMER = 0x6 constant EVFILT_VNODE (line 519) | EVFILT_VNODE = 0x3 constant EVFILT_WRITE (line 520) | EVFILT_WRITE = 0x1 constant EV_ADD (line 521) | EV_ADD = 0x1 constant EV_CLEAR (line 522) | EV_CLEAR = 0x20 constant EV_DELETE (line 523) | EV_DELETE = 0x2 constant EV_DISABLE (line 524) | EV_DISABLE = 0x8 constant EV_ENABLE (line 525) | EV_ENABLE = 0x4 constant EV_EOF (line 526) | EV_EOF = 0x8000 constant EV_ERROR (line 527) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 528) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 529) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 530) | EV_SYSFLAGS = 0xf000 constant EXTA (line 531) | EXTA = 0x4b00 constant EXTB (line 532) | EXTB = 0x9600 constant EXTPROC (line 533) | EXTPROC = 0x800 constant FD_CLOEXEC (line 534) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 535) | FD_SETSIZE = 0x100 constant FLUSHO (line 536) | FLUSHO = 0x800000 constant F_CLOSEM (line 537) | F_CLOSEM = 0xa constant F_DUPFD (line 538) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 539) | F_DUPFD_CLOEXEC = 0xc constant F_FSCTL (line 540) | F_FSCTL = -0x80000000 constant F_FSDIRMASK (line 541) | F_FSDIRMASK = 0x70000000 constant F_FSIN (line 542) | F_FSIN = 0x10000000 constant F_FSINOUT (line 543) | F_FSINOUT = 0x30000000 constant F_FSOUT (line 544) | F_FSOUT = 0x20000000 constant F_FSPRIV (line 545) | F_FSPRIV = 0x8000 constant F_FSVOID (line 546) | F_FSVOID = 0x40000000 constant F_GETFD (line 547) | F_GETFD = 0x1 constant F_GETFL (line 548) | F_GETFL = 0x3 constant F_GETLK (line 549) | F_GETLK = 0x7 constant F_GETNOSIGPIPE (line 550) | F_GETNOSIGPIPE = 0xd constant F_GETOWN (line 551) | F_GETOWN = 0x5 constant F_MAXFD (line 552) | F_MAXFD = 0xb constant F_OK (line 553) | F_OK = 0x0 constant F_PARAM_MASK (line 554) | F_PARAM_MASK = 0xfff constant F_PARAM_MAX (line 555) | F_PARAM_MAX = 0xfff constant F_RDLCK (line 556) | F_RDLCK = 0x1 constant F_SETFD (line 557) | F_SETFD = 0x2 constant F_SETFL (line 558) | F_SETFL = 0x4 constant F_SETLK (line 559) | F_SETLK = 0x8 constant F_SETLKW (line 560) | F_SETLKW = 0x9 constant F_SETNOSIGPIPE (line 561) | F_SETNOSIGPIPE = 0xe constant F_SETOWN (line 562) | F_SETOWN = 0x6 constant F_UNLCK (line 563) | F_UNLCK = 0x2 constant F_WRLCK (line 564) | F_WRLCK = 0x3 constant HUPCL (line 565) | HUPCL = 0x4000 constant ICANON (line 566) | ICANON = 0x100 constant ICMP6_FILTER (line 567) | ICMP6_FILTER = 0x12 constant ICRNL (line 568) | ICRNL = 0x100 constant IEXTEN (line 569) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 570) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 571) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 572) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 573) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 574) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 575) | IFF_CANTCHANGE = 0x8f52 constant IFF_DEBUG (line 576) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 577) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 578) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 579) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 580) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 581) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 582) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 583) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 584) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 585) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 586) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 587) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 588) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 589) | IFF_UP = 0x1 constant IFNAMSIZ (line 590) | IFNAMSIZ = 0x10 constant IFT_1822 (line 591) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 592) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 593) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 594) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 595) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 596) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 597) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 598) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 599) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 600) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 601) | IFT_ASYNC = 0x54 constant IFT_ATM (line 602) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 603) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 604) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 605) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 606) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 607) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 608) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 609) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 610) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 611) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BRIDGE (line 612) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 613) | IFT_BSC = 0x53 constant IFT_CARP (line 614) | IFT_CARP = 0xf8 constant IFT_CCTEMUL (line 615) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 616) | IFT_CEPT = 0x13 constant IFT_CES (line 617) | IFT_CES = 0x85 constant IFT_CHANNEL (line 618) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 619) | IFT_CNR = 0x55 constant IFT_COFFEE (line 620) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 621) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 622) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 623) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 624) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 625) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 626) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 627) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 628) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 629) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 630) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 631) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 632) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 633) | IFT_DS3 = 0x1e constant IFT_DTM (line 634) | IFT_DTM = 0x8c constant IFT_DVBASILN (line 635) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 636) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 637) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 638) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 639) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 640) | IFT_ECONET = 0xce constant IFT_EON (line 641) | IFT_EON = 0x19 constant IFT_EPLRS (line 642) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 643) | IFT_ESCON = 0x49 constant IFT_ETHER (line 644) | IFT_ETHER = 0x6 constant IFT_FAITH (line 645) | IFT_FAITH = 0xf2 constant IFT_FAST (line 646) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 647) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 648) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 649) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 650) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 651) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 652) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 653) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 654) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 655) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 656) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 657) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 658) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 659) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 660) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 661) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 662) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 663) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 664) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 665) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 666) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 667) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 668) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 669) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 670) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 671) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 672) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 673) | IFT_HSSI = 0x2e constant IFT_HY (line 674) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 675) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 676) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 677) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 678) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 679) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 680) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 681) | IFT_IFGSN = 0x91 constant IFT_IMT (line 682) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 683) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 684) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 685) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 686) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 687) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 688) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 689) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 690) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 691) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 692) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 693) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 694) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 695) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 696) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 697) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 698) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 699) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 700) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 701) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 702) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 703) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 704) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 705) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 706) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 707) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 708) | IFT_LAPB = 0x10 constant IFT_LAPD (line 709) | IFT_LAPD = 0x4d constant IFT_LAPF (line 710) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 711) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 712) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 713) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 714) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 715) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 716) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 717) | IFT_MODEM = 0x30 constant IFT_MPC (line 718) | IFT_MPC = 0x71 constant IFT_MPLS (line 719) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 720) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 721) | IFT_MSDSL = 0x8f constant IFT_MVL (line 722) | IFT_MVL = 0xbf constant IFT_MYRINET (line 723) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 724) | IFT_NFAS = 0xaf constant IFT_NSIP (line 725) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 726) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 727) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 728) | IFT_OTHER = 0x1 constant IFT_P10 (line 729) | IFT_P10 = 0xc constant IFT_P80 (line 730) | IFT_P80 = 0xd constant IFT_PARA (line 731) | IFT_PARA = 0x22 constant IFT_PFLOG (line 732) | IFT_PFLOG = 0xf5 constant IFT_PFSYNC (line 733) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 734) | IFT_PLC = 0xae constant IFT_PON155 (line 735) | IFT_PON155 = 0xcf constant IFT_PON622 (line 736) | IFT_PON622 = 0xd0 constant IFT_POS (line 737) | IFT_POS = 0xab constant IFT_PPP (line 738) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 739) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 740) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 741) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 742) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 743) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 744) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 745) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 746) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 747) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 748) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 749) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 750) | IFT_PVC = 0xf1 constant IFT_Q2931 (line 751) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 752) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 753) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 754) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 755) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 756) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 757) | IFT_RS232 = 0x21 constant IFT_RSRB (line 758) | IFT_RSRB = 0x4f constant IFT_SDLC (line 759) | IFT_SDLC = 0x11 constant IFT_SDSL (line 760) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 761) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 762) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 763) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 764) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 765) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 766) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 767) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 768) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 769) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 770) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 771) | IFT_SONETVT = 0x33 constant IFT_SRP (line 772) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 773) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 774) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 775) | IFT_STARLAN = 0xb constant IFT_STF (line 776) | IFT_STF = 0xd7 constant IFT_T1 (line 777) | IFT_T1 = 0x12 constant IFT_TDLC (line 778) | IFT_TDLC = 0x74 constant IFT_TELINK (line 779) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 780) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 781) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 782) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 783) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 784) | IFT_ULTRA = 0x1d constant IFT_USB (line 785) | IFT_USB = 0xa0 constant IFT_V11 (line 786) | IFT_V11 = 0x40 constant IFT_V35 (line 787) | IFT_V35 = 0x2d constant IFT_V36 (line 788) | IFT_V36 = 0x41 constant IFT_V37 (line 789) | IFT_V37 = 0x78 constant IFT_VDSL (line 790) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 791) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 792) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 793) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 794) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 795) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 796) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 797) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 798) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 799) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 800) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 801) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 802) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 803) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 804) | IFT_X213 = 0x5d constant IFT_X25 (line 805) | IFT_X25 = 0x5 constant IFT_X25DDN (line 806) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 807) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 808) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 809) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 810) | IFT_XETHER = 0x1a constant IGNBRK (line 811) | IGNBRK = 0x1 constant IGNCR (line 812) | IGNCR = 0x80 constant IGNPAR (line 813) | IGNPAR = 0x4 constant IMAXBEL (line 814) | IMAXBEL = 0x2000 constant INLCR (line 815) | INLCR = 0x40 constant INPCK (line 816) | INPCK = 0x10 constant IN_CLASSA_HOST (line 817) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 818) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 819) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 820) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 821) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 822) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 823) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 824) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 825) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 826) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 827) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 828) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 829) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 830) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 831) | IN_LOOPBACKNET = 0x7f constant IPPROTO_AH (line 832) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 833) | IPPROTO_CARP = 0x70 constant IPPROTO_DONE (line 834) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 835) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 836) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 837) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 838) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 839) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 840) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 841) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 842) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 843) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 844) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 845) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 846) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 847) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 848) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 849) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 850) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 851) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 852) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 853) | IPPROTO_IPV6 = 0x29 constant IPPROTO_IPV6_ICMP (line 854) | IPPROTO_IPV6_ICMP = 0x3a constant IPPROTO_MAX (line 855) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 856) | IPPROTO_MAXID = 0x34 constant IPPROTO_MOBILE (line 857) | IPPROTO_MOBILE = 0x37 constant IPPROTO_NONE (line 858) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 859) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 860) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 861) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 862) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 863) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 864) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 865) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 866) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 867) | IPPROTO_UDP = 0x11 constant IPPROTO_VRRP (line 868) | IPPROTO_VRRP = 0x70 constant IPV6_CHECKSUM (line 869) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 870) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 871) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 872) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 873) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 874) | IPV6_DSTOPTS = 0x32 constant IPV6_FAITH (line 875) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 876) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 877) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 878) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 879) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 880) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 881) | IPV6_HOPOPTS = 0x31 constant IPV6_IPSEC_POLICY (line 882) | IPV6_IPSEC_POLICY = 0x1c constant IPV6_JOIN_GROUP (line 883) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 884) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 885) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 886) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 887) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 888) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 889) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 890) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 891) | IPV6_NEXTHOP = 0x30 constant IPV6_PATHMTU (line 892) | IPV6_PATHMTU = 0x2c constant IPV6_PKTINFO (line 893) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 894) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 895) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 896) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 897) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 898) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 899) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 900) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 901) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 902) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 903) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 904) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTHDR (line 905) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 906) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 907) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 908) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 909) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 910) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 911) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 912) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 913) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 914) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 915) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 916) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 917) | IP_ADD_MEMBERSHIP = 0xc constant IP_DEFAULT_MULTICAST_LOOP (line 918) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 919) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 920) | IP_DF = 0x4000 constant IP_DROP_MEMBERSHIP (line 921) | IP_DROP_MEMBERSHIP = 0xd constant IP_EF (line 922) | IP_EF = 0x8000 constant IP_ERRORMTU (line 923) | IP_ERRORMTU = 0x15 constant IP_HDRINCL (line 924) | IP_HDRINCL = 0x2 constant IP_IPSEC_POLICY (line 925) | IP_IPSEC_POLICY = 0x16 constant IP_MAXPACKET (line 926) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 927) | IP_MAX_MEMBERSHIPS = 0x14 constant IP_MF (line 928) | IP_MF = 0x2000 constant IP_MINFRAGSIZE (line 929) | IP_MINFRAGSIZE = 0x45 constant IP_MINTTL (line 930) | IP_MINTTL = 0x18 constant IP_MSS (line 931) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 932) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 933) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 934) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 935) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 936) | IP_OPTIONS = 0x1 constant IP_PORTRANGE (line 937) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 938) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 939) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 940) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 941) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 942) | IP_RECVIF = 0x14 constant IP_RECVOPTS (line 943) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 944) | IP_RECVRETOPTS = 0x6 constant IP_RECVTTL (line 945) | IP_RECVTTL = 0x17 constant IP_RETOPTS (line 946) | IP_RETOPTS = 0x8 constant IP_RF (line 947) | IP_RF = 0x8000 constant IP_TOS (line 948) | IP_TOS = 0x3 constant IP_TTL (line 949) | IP_TTL = 0x4 constant ISIG (line 950) | ISIG = 0x80 constant ISTRIP (line 951) | ISTRIP = 0x20 constant IXANY (line 952) | IXANY = 0x800 constant IXOFF (line 953) | IXOFF = 0x400 constant IXON (line 954) | IXON = 0x200 constant LOCK_EX (line 955) | LOCK_EX = 0x2 constant LOCK_NB (line 956) | LOCK_NB = 0x4 constant LOCK_SH (line 957) | LOCK_SH = 0x1 constant LOCK_UN (line 958) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 959) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 960) | MADV_FREE = 0x6 constant MADV_NORMAL (line 961) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 962) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 963) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 964) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 965) | MADV_WILLNEED = 0x3 constant MAP_ALIGNMENT_16MB (line 966) | MAP_ALIGNMENT_16MB = 0x18000000 constant MAP_ALIGNMENT_1TB (line 967) | MAP_ALIGNMENT_1TB = 0x28000000 constant MAP_ALIGNMENT_256TB (line 968) | MAP_ALIGNMENT_256TB = 0x30000000 constant MAP_ALIGNMENT_4GB (line 969) | MAP_ALIGNMENT_4GB = 0x20000000 constant MAP_ALIGNMENT_64KB (line 970) | MAP_ALIGNMENT_64KB = 0x10000000 constant MAP_ALIGNMENT_64PB (line 971) | MAP_ALIGNMENT_64PB = 0x38000000 constant MAP_ALIGNMENT_MASK (line 972) | MAP_ALIGNMENT_MASK = -0x1000000 constant MAP_ALIGNMENT_SHIFT (line 973) | MAP_ALIGNMENT_SHIFT = 0x18 constant MAP_ANON (line 974) | MAP_ANON = 0x1000 constant MAP_FILE (line 975) | MAP_FILE = 0x0 constant MAP_FIXED (line 976) | MAP_FIXED = 0x10 constant MAP_HASSEMAPHORE (line 977) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 978) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 979) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DEFAULT (line 980) | MAP_INHERIT_DEFAULT = 0x1 constant MAP_INHERIT_DONATE_COPY (line 981) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 982) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 983) | MAP_INHERIT_SHARE = 0x0 constant MAP_NORESERVE (line 984) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 985) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 986) | MAP_RENAME = 0x20 constant MAP_SHARED (line 987) | MAP_SHARED = 0x1 constant MAP_STACK (line 988) | MAP_STACK = 0x2000 constant MAP_TRYFIXED (line 989) | MAP_TRYFIXED = 0x400 constant MAP_WIRED (line 990) | MAP_WIRED = 0x800 constant MSG_BCAST (line 991) | MSG_BCAST = 0x100 constant MSG_CMSG_CLOEXEC (line 992) | MSG_CMSG_CLOEXEC = 0x800 constant MSG_CONTROLMBUF (line 993) | MSG_CONTROLMBUF = 0x2000000 constant MSG_CTRUNC (line 994) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 995) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 996) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 997) | MSG_EOR = 0x8 constant MSG_IOVUSRSPACE (line 998) | MSG_IOVUSRSPACE = 0x4000000 constant MSG_LENUSRSPACE (line 999) | MSG_LENUSRSPACE = 0x8000000 constant MSG_MCAST (line 1000) | MSG_MCAST = 0x200 constant MSG_NAMEMBUF (line 1001) | MSG_NAMEMBUF = 0x1000000 constant MSG_NBIO (line 1002) | MSG_NBIO = 0x1000 constant MSG_NOSIGNAL (line 1003) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 1004) | MSG_OOB = 0x1 constant MSG_PEEK (line 1005) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 1006) | MSG_TRUNC = 0x10 constant MSG_USERFLAGS (line 1007) | MSG_USERFLAGS = 0xffffff constant MSG_WAITALL (line 1008) | MSG_WAITALL = 0x40 constant NAME_MAX (line 1009) | NAME_MAX = 0x1ff constant NET_RT_DUMP (line 1010) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 1011) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 1012) | NET_RT_IFLIST = 0x5 constant NET_RT_MAXID (line 1013) | NET_RT_MAXID = 0x6 constant NET_RT_OIFLIST (line 1014) | NET_RT_OIFLIST = 0x4 constant NET_RT_OOIFLIST (line 1015) | NET_RT_OOIFLIST = 0x3 constant NOFLSH (line 1016) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 1017) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 1018) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 1019) | NOTE_DELETE = 0x1 constant NOTE_EXEC (line 1020) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 1021) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 1022) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 1023) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 1024) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 1025) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 1026) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 1027) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 1028) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 1029) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 1030) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 1031) | NOTE_TRACKERR = 0x2 constant NOTE_WRITE (line 1032) | NOTE_WRITE = 0x2 constant OCRNL (line 1033) | OCRNL = 0x10 constant OFIOGETBMAP (line 1034) | OFIOGETBMAP = 0xc004667a constant ONLCR (line 1035) | ONLCR = 0x2 constant ONLRET (line 1036) | ONLRET = 0x40 constant ONOCR (line 1037) | ONOCR = 0x20 constant ONOEOT (line 1038) | ONOEOT = 0x8 constant OPOST (line 1039) | OPOST = 0x1 constant O_ACCMODE (line 1040) | O_ACCMODE = 0x3 constant O_ALT_IO (line 1041) | O_ALT_IO = 0x40000 constant O_APPEND (line 1042) | O_APPEND = 0x8 constant O_ASYNC (line 1043) | O_ASYNC = 0x40 constant O_CLOEXEC (line 1044) | O_CLOEXEC = 0x400000 constant O_CREAT (line 1045) | O_CREAT = 0x200 constant O_DIRECT (line 1046) | O_DIRECT = 0x80000 constant O_DIRECTORY (line 1047) | O_DIRECTORY = 0x200000 constant O_DSYNC (line 1048) | O_DSYNC = 0x10000 constant O_EXCL (line 1049) | O_EXCL = 0x800 constant O_EXLOCK (line 1050) | O_EXLOCK = 0x20 constant O_FSYNC (line 1051) | O_FSYNC = 0x80 constant O_NDELAY (line 1052) | O_NDELAY = 0x4 constant O_NOCTTY (line 1053) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 1054) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 1055) | O_NONBLOCK = 0x4 constant O_NOSIGPIPE (line 1056) | O_NOSIGPIPE = 0x1000000 constant O_RDONLY (line 1057) | O_RDONLY = 0x0 constant O_RDWR (line 1058) | O_RDWR = 0x2 constant O_RSYNC (line 1059) | O_RSYNC = 0x20000 constant O_SHLOCK (line 1060) | O_SHLOCK = 0x10 constant O_SYNC (line 1061) | O_SYNC = 0x80 constant O_TRUNC (line 1062) | O_TRUNC = 0x400 constant O_WRONLY (line 1063) | O_WRONLY = 0x1 constant PARENB (line 1064) | PARENB = 0x1000 constant PARMRK (line 1065) | PARMRK = 0x8 constant PARODD (line 1066) | PARODD = 0x2000 constant PENDIN (line 1067) | PENDIN = 0x20000000 constant PROT_EXEC (line 1068) | PROT_EXEC = 0x4 constant PROT_NONE (line 1069) | PROT_NONE = 0x0 constant PROT_READ (line 1070) | PROT_READ = 0x1 constant PROT_WRITE (line 1071) | PROT_WRITE = 0x2 constant PRI_IOFLUSH (line 1072) | PRI_IOFLUSH = 0x7c constant PRIO_PGRP (line 1073) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 1074) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 1075) | PRIO_USER = 0x2 constant RLIMIT_AS (line 1076) | RLIMIT_AS = 0xa constant RLIMIT_CORE (line 1077) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 1078) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 1079) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 1080) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 1081) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 1082) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 1083) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 1084) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 1085) | RTAX_BRD = 0x7 constant RTAX_DST (line 1086) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 1087) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 1088) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 1089) | RTAX_IFA = 0x5 constant RTAX_IFP (line 1090) | RTAX_IFP = 0x4 constant RTAX_MAX (line 1091) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 1092) | RTAX_NETMASK = 0x2 constant RTAX_TAG (line 1093) | RTAX_TAG = 0x8 constant RTA_AUTHOR (line 1094) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 1095) | RTA_BRD = 0x80 constant RTA_DST (line 1096) | RTA_DST = 0x1 constant RTA_GATEWAY (line 1097) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 1098) | RTA_GENMASK = 0x8 constant RTA_IFA (line 1099) | RTA_IFA = 0x20 constant RTA_IFP (line 1100) | RTA_IFP = 0x10 constant RTA_NETMASK (line 1101) | RTA_NETMASK = 0x4 constant RTA_TAG (line 1102) | RTA_TAG = 0x100 constant RTF_ANNOUNCE (line 1103) | RTF_ANNOUNCE = 0x20000 constant RTF_BLACKHOLE (line 1104) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1105) | RTF_CLONED = 0x2000 constant RTF_CLONING (line 1106) | RTF_CLONING = 0x100 constant RTF_DONE (line 1107) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1108) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 1109) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1110) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1111) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1112) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1113) | RTF_MODIFIED = 0x20 constant RTF_PROTO1 (line 1114) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1115) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 1116) | RTF_REJECT = 0x8 constant RTF_SRC (line 1117) | RTF_SRC = 0x10000 constant RTF_STATIC (line 1118) | RTF_STATIC = 0x800 constant RTF_UP (line 1119) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 1120) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1121) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1122) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 1123) | RTM_CHGADDR = 0x15 constant RTM_DELADDR (line 1124) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1125) | RTM_DELETE = 0x2 constant RTM_GET (line 1126) | RTM_GET = 0x4 constant RTM_IEEE80211 (line 1127) | RTM_IEEE80211 = 0x11 constant RTM_IFANNOUNCE (line 1128) | RTM_IFANNOUNCE = 0x10 constant RTM_IFINFO (line 1129) | RTM_IFINFO = 0x14 constant RTM_LLINFO_UPD (line 1130) | RTM_LLINFO_UPD = 0x13 constant RTM_LOCK (line 1131) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1132) | RTM_LOSING = 0x5 constant RTM_MISS (line 1133) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1134) | RTM_NEWADDR = 0xc constant RTM_OIFINFO (line 1135) | RTM_OIFINFO = 0xf constant RTM_OLDADD (line 1136) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 1137) | RTM_OLDDEL = 0xa constant RTM_OOIFINFO (line 1138) | RTM_OOIFINFO = 0xe constant RTM_REDIRECT (line 1139) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1140) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1141) | RTM_RTTUNIT = 0xf4240 constant RTM_SETGATE (line 1142) | RTM_SETGATE = 0x12 constant RTM_VERSION (line 1143) | RTM_VERSION = 0x4 constant RTV_EXPIRE (line 1144) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1145) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1146) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1147) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1148) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1149) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1150) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1151) | RTV_SSTHRESH = 0x20 constant RUSAGE_CHILDREN (line 1152) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1153) | RUSAGE_SELF = 0x0 constant SCM_CREDS (line 1154) | SCM_CREDS = 0x4 constant SCM_RIGHTS (line 1155) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1156) | SCM_TIMESTAMP = 0x8 constant SHUT_RD (line 1157) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1158) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1159) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1160) | SIOCADDMULTI = 0x80906931 constant SIOCADDRT (line 1161) | SIOCADDRT = 0x8030720a constant SIOCAIFADDR (line 1162) | SIOCAIFADDR = 0x8040691a constant SIOCALIFADDR (line 1163) | SIOCALIFADDR = 0x8118691c constant SIOCATMARK (line 1164) | SIOCATMARK = 0x40047307 constant SIOCDELMULTI (line 1165) | SIOCDELMULTI = 0x80906932 constant SIOCDELRT (line 1166) | SIOCDELRT = 0x8030720b constant SIOCDIFADDR (line 1167) | SIOCDIFADDR = 0x80906919 constant SIOCDIFPHYADDR (line 1168) | SIOCDIFPHYADDR = 0x80906949 constant SIOCDLIFADDR (line 1169) | SIOCDLIFADDR = 0x8118691e constant SIOCGDRVSPEC (line 1170) | SIOCGDRVSPEC = 0xc01c697b constant SIOCGETPFSYNC (line 1171) | SIOCGETPFSYNC = 0xc09069f8 constant SIOCGETSGCNT (line 1172) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1173) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGHIWAT (line 1174) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1175) | SIOCGIFADDR = 0xc0906921 constant SIOCGIFADDRPREF (line 1176) | SIOCGIFADDRPREF = 0xc0946920 constant SIOCGIFALIAS (line 1177) | SIOCGIFALIAS = 0xc040691b constant SIOCGIFBRDADDR (line 1178) | SIOCGIFBRDADDR = 0xc0906923 constant SIOCGIFCAP (line 1179) | SIOCGIFCAP = 0xc0206976 constant SIOCGIFCONF (line 1180) | SIOCGIFCONF = 0xc0086926 constant SIOCGIFDATA (line 1181) | SIOCGIFDATA = 0xc0946985 constant SIOCGIFDLT (line 1182) | SIOCGIFDLT = 0xc0906977 constant SIOCGIFDSTADDR (line 1183) | SIOCGIFDSTADDR = 0xc0906922 constant SIOCGIFFLAGS (line 1184) | SIOCGIFFLAGS = 0xc0906911 constant SIOCGIFGENERIC (line 1185) | SIOCGIFGENERIC = 0xc090693a constant SIOCGIFMEDIA (line 1186) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1187) | SIOCGIFMETRIC = 0xc0906917 constant SIOCGIFMTU (line 1188) | SIOCGIFMTU = 0xc090697e constant SIOCGIFNETMASK (line 1189) | SIOCGIFNETMASK = 0xc0906925 constant SIOCGIFPDSTADDR (line 1190) | SIOCGIFPDSTADDR = 0xc0906948 constant SIOCGIFPSRCADDR (line 1191) | SIOCGIFPSRCADDR = 0xc0906947 constant SIOCGLIFADDR (line 1192) | SIOCGLIFADDR = 0xc118691d constant SIOCGLIFPHYADDR (line 1193) | SIOCGLIFPHYADDR = 0xc118694b constant SIOCGLINKSTR (line 1194) | SIOCGLINKSTR = 0xc01c6987 constant SIOCGLOWAT (line 1195) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1196) | SIOCGPGRP = 0x40047309 constant SIOCGVH (line 1197) | SIOCGVH = 0xc0906983 constant SIOCIFCREATE (line 1198) | SIOCIFCREATE = 0x8090697a constant SIOCIFDESTROY (line 1199) | SIOCIFDESTROY = 0x80906979 constant SIOCIFGCLONERS (line 1200) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCINITIFADDR (line 1201) | SIOCINITIFADDR = 0xc0446984 constant SIOCSDRVSPEC (line 1202) | SIOCSDRVSPEC = 0x801c697b constant SIOCSETPFSYNC (line 1203) | SIOCSETPFSYNC = 0x809069f7 constant SIOCSHIWAT (line 1204) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1205) | SIOCSIFADDR = 0x8090690c constant SIOCSIFADDRPREF (line 1206) | SIOCSIFADDRPREF = 0x8094691f constant SIOCSIFBRDADDR (line 1207) | SIOCSIFBRDADDR = 0x80906913 constant SIOCSIFCAP (line 1208) | SIOCSIFCAP = 0x80206975 constant SIOCSIFDSTADDR (line 1209) | SIOCSIFDSTADDR = 0x8090690e constant SIOCSIFFLAGS (line 1210) | SIOCSIFFLAGS = 0x80906910 constant SIOCSIFGENERIC (line 1211) | SIOCSIFGENERIC = 0x80906939 constant SIOCSIFMEDIA (line 1212) | SIOCSIFMEDIA = 0xc0906935 constant SIOCSIFMETRIC (line 1213) | SIOCSIFMETRIC = 0x80906918 constant SIOCSIFMTU (line 1214) | SIOCSIFMTU = 0x8090697f constant SIOCSIFNETMASK (line 1215) | SIOCSIFNETMASK = 0x80906916 constant SIOCSIFPHYADDR (line 1216) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSLIFPHYADDR (line 1217) | SIOCSLIFPHYADDR = 0x8118694a constant SIOCSLINKSTR (line 1218) | SIOCSLINKSTR = 0x801c6988 constant SIOCSLOWAT (line 1219) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1220) | SIOCSPGRP = 0x80047308 constant SIOCSVH (line 1221) | SIOCSVH = 0xc0906982 constant SIOCZIFDATA (line 1222) | SIOCZIFDATA = 0xc0946986 constant SOCK_CLOEXEC (line 1223) | SOCK_CLOEXEC = 0x10000000 constant SOCK_DGRAM (line 1224) | SOCK_DGRAM = 0x2 constant SOCK_FLAGS_MASK (line 1225) | SOCK_FLAGS_MASK = 0xf0000000 constant SOCK_NONBLOCK (line 1226) | SOCK_NONBLOCK = 0x20000000 constant SOCK_NOSIGPIPE (line 1227) | SOCK_NOSIGPIPE = 0x40000000 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_ACCEPTFILTER (line 1235) | SO_ACCEPTFILTER = 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_NOHEADER (line 1242) | SO_NOHEADER = 0x100a constant SO_NOSIGPIPE (line 1243) | SO_NOSIGPIPE = 0x800 constant SO_OOBINLINE (line 1244) | SO_OOBINLINE = 0x100 constant SO_OVERFLOWED (line 1245) | SO_OVERFLOWED = 0x1009 constant SO_RCVBUF (line 1246) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1247) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1248) | SO_RCVTIMEO = 0x100c constant SO_REUSEADDR (line 1249) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1250) | SO_REUSEPORT = 0x200 constant SO_SNDBUF (line 1251) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1252) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1253) | SO_SNDTIMEO = 0x100b constant SO_TIMESTAMP (line 1254) | SO_TIMESTAMP = 0x2000 constant SO_TYPE (line 1255) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1256) | SO_USELOOPBACK = 0x40 constant SYSCTL_VERSION (line 1257) | SYSCTL_VERSION = 0x1000000 constant SYSCTL_VERS_0 (line 1258) | SYSCTL_VERS_0 = 0x0 constant SYSCTL_VERS_1 (line 1259) | SYSCTL_VERS_1 = 0x1000000 constant SYSCTL_VERS_MASK (line 1260) | SYSCTL_VERS_MASK = 0xff000000 constant S_ARCH1 (line 1261) | S_ARCH1 = 0x10000 constant S_ARCH2 (line 1262) | S_ARCH2 = 0x20000 constant S_BLKSIZE (line 1263) | S_BLKSIZE = 0x200 constant S_IEXEC (line 1264) | S_IEXEC = 0x40 constant S_IFBLK (line 1265) | S_IFBLK = 0x6000 constant S_IFCHR (line 1266) | S_IFCHR = 0x2000 constant S_IFDIR (line 1267) | S_IFDIR = 0x4000 constant S_IFIFO (line 1268) | S_IFIFO = 0x1000 constant S_IFLNK (line 1269) | S_IFLNK = 0xa000 constant S_IFMT (line 1270) | S_IFMT = 0xf000 constant S_IFREG (line 1271) | S_IFREG = 0x8000 constant S_IFSOCK (line 1272) | S_IFSOCK = 0xc000 constant S_IFWHT (line 1273) | S_IFWHT = 0xe000 constant S_IREAD (line 1274) | S_IREAD = 0x100 constant S_IRGRP (line 1275) | S_IRGRP = 0x20 constant S_IROTH (line 1276) | S_IROTH = 0x4 constant S_IRUSR (line 1277) | S_IRUSR = 0x100 constant S_IRWXG (line 1278) | S_IRWXG = 0x38 constant S_IRWXO (line 1279) | S_IRWXO = 0x7 constant S_IRWXU (line 1280) | S_IRWXU = 0x1c0 constant S_ISGID (line 1281) | S_ISGID = 0x400 constant S_ISTXT (line 1282) | S_ISTXT = 0x200 constant S_ISUID (line 1283) | S_ISUID = 0x800 constant S_ISVTX (line 1284) | S_ISVTX = 0x200 constant S_IWGRP (line 1285) | S_IWGRP = 0x10 constant S_IWOTH (line 1286) | S_IWOTH = 0x2 constant S_IWRITE (line 1287) | S_IWRITE = 0x80 constant S_IWUSR (line 1288) | S_IWUSR = 0x80 constant S_IXGRP (line 1289) | S_IXGRP = 0x8 constant S_IXOTH (line 1290) | S_IXOTH = 0x1 constant S_IXUSR (line 1291) | S_IXUSR = 0x40 constant TCIFLUSH (line 1292) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1293) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1294) | TCOFLUSH = 0x2 constant TCP_CONGCTL (line 1295) | TCP_CONGCTL = 0x20 constant TCP_KEEPCNT (line 1296) | TCP_KEEPCNT = 0x6 constant TCP_KEEPIDLE (line 1297) | TCP_KEEPIDLE = 0x3 constant TCP_KEEPINIT (line 1298) | TCP_KEEPINIT = 0x7 constant TCP_KEEPINTVL (line 1299) | TCP_KEEPINTVL = 0x5 constant TCP_MAXBURST (line 1300) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1301) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1302) | TCP_MAXWIN = 0xffff constant TCP_MAX_WINSHIFT (line 1303) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1304) | TCP_MD5SIG = 0x10 constant TCP_MINMSS (line 1305) | TCP_MINMSS = 0xd8 constant TCP_MSS (line 1306) | TCP_MSS = 0x218 constant TCP_NODELAY (line 1307) | TCP_NODELAY = 0x1 constant TCSAFLUSH (line 1308) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1309) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1310) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1311) | TIOCCONS = 0x80047462 constant TIOCDCDTIMESTAMP (line 1312) | TIOCDCDTIMESTAMP = 0x400c7458 constant TIOCDRAIN (line 1313) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1314) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1315) | TIOCEXT = 0x80047460 constant TIOCFLAG_CDTRCTS (line 1316) | TIOCFLAG_CDTRCTS = 0x10 constant TIOCFLAG_CLOCAL (line 1317) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1318) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1319) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_SOFTCAR (line 1320) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1321) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1322) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1323) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1324) | TIOCGFLAGS = 0x4004745d constant TIOCGLINED (line 1325) | TIOCGLINED = 0x40207442 constant TIOCGPGRP (line 1326) | TIOCGPGRP = 0x40047477 constant TIOCGQSIZE (line 1327) | TIOCGQSIZE = 0x40047481 constant TIOCGRANTPT (line 1328) | TIOCGRANTPT = 0x20007447 constant TIOCGSID (line 1329) | TIOCGSID = 0x40047463 constant TIOCGSIZE (line 1330) | TIOCGSIZE = 0x40087468 constant TIOCGWINSZ (line 1331) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1332) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1333) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1334) | TIOCMGET = 0x4004746a constant TIOCMSET (line 1335) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1336) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1337) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1338) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1339) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1340) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1341) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1342) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1343) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1344) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1345) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1346) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1347) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1348) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1349) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1350) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1351) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1352) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1353) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1354) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1355) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1356) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1357) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1358) | TIOCPKT_STOP = 0x4 constant TIOCPTMGET (line 1359) | TIOCPTMGET = 0x48087446 constant TIOCPTSNAME (line 1360) | TIOCPTSNAME = 0x48087448 constant TIOCRCVFRAME (line 1361) | TIOCRCVFRAME = 0x80047445 constant TIOCREMOTE (line 1362) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1363) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1364) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1365) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1366) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1367) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1368) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1369) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1370) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1371) | TIOCSIG = 0x2000745f constant TIOCSLINED (line 1372) | TIOCSLINED = 0x80207443 constant TIOCSPGRP (line 1373) | TIOCSPGRP = 0x80047476 constant TIOCSQSIZE (line 1374) | TIOCSQSIZE = 0x80047480 constant TIOCSSIZE (line 1375) | TIOCSSIZE = 0x80087467 constant TIOCSTART (line 1376) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1377) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1378) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1379) | TIOCSTOP = 0x2000746f constant TIOCSWINSZ (line 1380) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1381) | TIOCUCNTL = 0x80047466 constant TIOCXMTFRAME (line 1382) | TIOCXMTFRAME = 0x80047444 constant TOSTOP (line 1383) | TOSTOP = 0x400000 constant VDISCARD (line 1384) | VDISCARD = 0xf constant VDSUSP (line 1385) | VDSUSP = 0xb constant VEOF (line 1386) | VEOF = 0x0 constant VEOL (line 1387) | VEOL = 0x1 constant VEOL2 (line 1388) | VEOL2 = 0x2 constant VERASE (line 1389) | VERASE = 0x3 constant VINTR (line 1390) | VINTR = 0x8 constant VKILL (line 1391) | VKILL = 0x5 constant VLNEXT (line 1392) | VLNEXT = 0xe constant VMIN (line 1393) | VMIN = 0x10 constant VQUIT (line 1394) | VQUIT = 0x9 constant VREPRINT (line 1395) | VREPRINT = 0x6 constant VSTART (line 1396) | VSTART = 0xc constant VSTATUS (line 1397) | VSTATUS = 0x12 constant VSTOP (line 1398) | VSTOP = 0xd constant VSUSP (line 1399) | VSUSP = 0xa constant VTIME (line 1400) | VTIME = 0x11 constant VWERASE (line 1401) | VWERASE = 0x4 constant WALL (line 1402) | WALL = 0x8 constant WALLSIG (line 1403) | WALLSIG = 0x8 constant WALTSIG (line 1404) | WALTSIG = 0x4 constant WCLONE (line 1405) | WCLONE = 0x4 constant WCOREFLAG (line 1406) | WCOREFLAG = 0x80 constant WNOHANG (line 1407) | WNOHANG = 0x1 constant WNOWAIT (line 1408) | WNOWAIT = 0x10000 constant WNOZOMBIE (line 1409) | WNOZOMBIE = 0x20000 constant WOPTSCHECKED (line 1410) | WOPTSCHECKED = 0x40000 constant WSTOPPED (line 1411) | WSTOPPED = 0x7f constant WUNTRACED (line 1412) | WUNTRACED = 0x2 constant E2BIG (line 1417) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1418) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1419) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1420) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1421) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1422) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1423) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1424) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1425) | EBADF = syscall.Errno(0x9) constant EBADMSG (line 1426) | EBADMSG = syscall.Errno(0x58) constant EBADRPC (line 1427) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1428) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1429) | ECANCELED = syscall.Errno(0x57) constant ECHILD (line 1430) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1431) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1432) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1433) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1434) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1435) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1436) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1437) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1438) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1439) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1440) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1441) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1442) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1443) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1444) | EIDRM = syscall.Errno(0x52) constant EILSEQ (line 1445) | EILSEQ = syscall.Errno(0x55) constant EINPROGRESS (line 1446) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1447) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1448) | EINVAL = syscall.Errno(0x16) constant EIO (line 1449) | EIO = syscall.Errno(0x5) constant EISCONN (line 1450) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1451) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1452) | ELAST = syscall.Errno(0x60) constant ELOOP (line 1453) | ELOOP = syscall.Errno(0x3e) constant EMFILE (line 1454) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1455) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1456) | EMSGSIZE = syscall.Errno(0x28) constant EMULTIHOP (line 1457) | EMULTIHOP = syscall.Errno(0x5e) constant ENAMETOOLONG (line 1458) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1459) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1460) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1461) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1462) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1463) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1464) | ENOATTR = syscall.Errno(0x5d) constant ENOBUFS (line 1465) | ENOBUFS = syscall.Errno(0x37) constant ENODATA (line 1466) | ENODATA = syscall.Errno(0x59) constant ENODEV (line 1467) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1468) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1469) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1470) | ENOLCK = syscall.Errno(0x4d) constant ENOLINK (line 1471) | ENOLINK = syscall.Errno(0x5f) constant ENOMEM (line 1472) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1473) | ENOMSG = syscall.Errno(0x53) constant ENOPROTOOPT (line 1474) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1475) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1476) | ENOSR = syscall.Errno(0x5a) constant ENOSTR (line 1477) | ENOSTR = syscall.Errno(0x5b) constant ENOSYS (line 1478) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1479) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1480) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1481) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1482) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1483) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1484) | ENOTSUP = syscall.Errno(0x56) constant ENOTTY (line 1485) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1486) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1487) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1488) | EOVERFLOW = syscall.Errno(0x54) constant EPERM (line 1489) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1490) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1491) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1492) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1493) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1494) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1495) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTO (line 1496) | EPROTO = syscall.Errno(0x60) constant EPROTONOSUPPORT (line 1497) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1498) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1499) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1500) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1501) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1502) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1503) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1504) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1505) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1506) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1507) | ESTALE = syscall.Errno(0x46) constant ETIME (line 1508) | ETIME = syscall.Errno(0x5c) constant ETIMEDOUT (line 1509) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1510) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1511) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1512) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1513) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1514) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1519) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1520) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1521) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1522) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1523) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1524) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1525) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1526) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1527) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1528) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1529) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1530) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1531) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1532) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1533) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1534) | SIGPROF = syscall.Signal(0x1b) constant SIGPWR (line 1535) | SIGPWR = syscall.Signal(0x20) constant SIGQUIT (line 1536) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1537) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1538) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1539) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1540) | SIGTERM = syscall.Signal(0xf) constant SIGTRAP (line 1541) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1542) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1543) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1544) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1545) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1546) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1547) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1548) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1549) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1550) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1551) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 15) | AF_BLUETOOTH = 0x20 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_CNT (line 18) | AF_CNT = 0x15 constant AF_COIP (line 19) | AF_COIP = 0x14 constant AF_DATAKIT (line 20) | AF_DATAKIT = 0x9 constant AF_DECnet (line 21) | AF_DECnet = 0xc constant AF_DLI (line 22) | AF_DLI = 0xd constant AF_E164 (line 23) | AF_E164 = 0x1a constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_ENCAP (line 25) | AF_ENCAP = 0x1c constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x18 constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1a constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_KEY (line 33) | AF_KEY = 0x1e constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_ROUTE (line 43) | AF_ROUTE = 0x11 constant AF_SIP (line 44) | AF_SIP = 0x1d constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ETHER (line 48) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 49) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 50) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 51) | ARPHRD_IEEE802 = 0x6 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 77) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 78) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 79) | BIOCGDLTLIST = 0xc008427b constant BIOCGETIF (line 80) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 81) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 82) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 83) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 84) | BIOCGRTIMEOUT = 0x400c426e constant BIOCGSTATS (line 85) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 86) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 87) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 88) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 89) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 90) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 91) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 92) | BIOCSETF = 0x80084267 constant BIOCSETIF (line 93) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 94) | BIOCSETWF = 0x80084277 constant BIOCSFILDROP (line 95) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 96) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 97) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 98) | BIOCSRTIMEOUT = 0x800c426d constant BIOCVERSION (line 99) | BIOCVERSION = 0x40044271 constant BPF_A (line 100) | BPF_A = 0x10 constant BPF_ABS (line 101) | BPF_ABS = 0x20 constant BPF_ADD (line 102) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 103) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 104) | BPF_ALU = 0x4 constant BPF_AND (line 105) | BPF_AND = 0x50 constant BPF_B (line 106) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 107) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 108) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 109) | BPF_DIV = 0x30 constant BPF_H (line 110) | BPF_H = 0x8 constant BPF_IMM (line 111) | BPF_IMM = 0x0 constant BPF_IND (line 112) | BPF_IND = 0x40 constant BPF_JA (line 113) | BPF_JA = 0x0 constant BPF_JEQ (line 114) | BPF_JEQ = 0x10 constant BPF_JGE (line 115) | BPF_JGE = 0x30 constant BPF_JGT (line 116) | BPF_JGT = 0x20 constant BPF_JMP (line 117) | BPF_JMP = 0x5 constant BPF_JSET (line 118) | BPF_JSET = 0x40 constant BPF_K (line 119) | BPF_K = 0x0 constant BPF_LD (line 120) | BPF_LD = 0x0 constant BPF_LDX (line 121) | BPF_LDX = 0x1 constant BPF_LEN (line 122) | BPF_LEN = 0x80 constant BPF_LSH (line 123) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 124) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 125) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 126) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 127) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 128) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 129) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 130) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 131) | BPF_MISC = 0x7 constant BPF_MSH (line 132) | BPF_MSH = 0xa0 constant BPF_MUL (line 133) | BPF_MUL = 0x20 constant BPF_NEG (line 134) | BPF_NEG = 0x80 constant BPF_OR (line 135) | BPF_OR = 0x40 constant BPF_RELEASE (line 136) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 137) | BPF_RET = 0x6 constant BPF_RSH (line 138) | BPF_RSH = 0x70 constant BPF_ST (line 139) | BPF_ST = 0x2 constant BPF_STX (line 140) | BPF_STX = 0x3 constant BPF_SUB (line 141) | BPF_SUB = 0x10 constant BPF_TAX (line 142) | BPF_TAX = 0x0 constant BPF_TXA (line 143) | BPF_TXA = 0x80 constant BPF_W (line 144) | BPF_W = 0x0 constant BPF_X (line 145) | BPF_X = 0x8 constant BRKINT (line 146) | BRKINT = 0x2 constant CFLUSH (line 147) | CFLUSH = 0xf constant CLOCAL (line 148) | CLOCAL = 0x8000 constant CREAD (line 149) | CREAD = 0x800 constant CS5 (line 150) | CS5 = 0x0 constant CS6 (line 151) | CS6 = 0x100 constant CS7 (line 152) | CS7 = 0x200 constant CS8 (line 153) | CS8 = 0x300 constant CSIZE (line 154) | CSIZE = 0x300 constant CSTART (line 155) | CSTART = 0x11 constant CSTATUS (line 156) | CSTATUS = 0xff constant CSTOP (line 157) | CSTOP = 0x13 constant CSTOPB (line 158) | CSTOPB = 0x400 constant CSUSP (line 159) | CSUSP = 0x1a constant CTL_MAXNAME (line 160) | CTL_MAXNAME = 0xc constant CTL_NET (line 161) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 162) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 163) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 165) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 166) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 167) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 168) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 169) | DLT_EN3MB = 0x2 constant DLT_ENC (line 170) | DLT_ENC = 0xd constant DLT_FDDI (line 171) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 172) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 173) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 174) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 175) | DLT_LOOP = 0xc constant DLT_MPLS (line 176) | DLT_MPLS = 0xdb constant DLT_NULL (line 177) | DLT_NULL = 0x0 constant DLT_PFLOG (line 178) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 179) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 180) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 181) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 182) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 183) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 184) | DLT_PRONET = 0x4 constant DLT_RAW (line 185) | DLT_RAW = 0xe constant DLT_SLIP (line 186) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 187) | DLT_SLIP_BSDOS = 0xf constant DT_BLK (line 188) | DT_BLK = 0x6 constant DT_CHR (line 189) | DT_CHR = 0x2 constant DT_DIR (line 190) | DT_DIR = 0x4 constant DT_FIFO (line 191) | DT_FIFO = 0x1 constant DT_LNK (line 192) | DT_LNK = 0xa constant DT_REG (line 193) | DT_REG = 0x8 constant DT_SOCK (line 194) | DT_SOCK = 0xc constant DT_UNKNOWN (line 195) | DT_UNKNOWN = 0x0 constant ECHO (line 196) | ECHO = 0x8 constant ECHOCTL (line 197) | ECHOCTL = 0x40 constant ECHOE (line 198) | ECHOE = 0x2 constant ECHOK (line 199) | ECHOK = 0x4 constant ECHOKE (line 200) | ECHOKE = 0x1 constant ECHONL (line 201) | ECHONL = 0x10 constant ECHOPRT (line 202) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 203) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 204) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 205) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 206) | ENDRUNDISC = 0x9 constant ETHERMIN (line 207) | ETHERMIN = 0x2e constant ETHERMTU (line 208) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 209) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 210) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 211) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 212) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 213) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 214) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 215) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 216) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 217) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 218) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 219) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 220) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 221) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 222) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 223) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 224) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 225) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 226) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 227) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 228) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 229) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 230) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 231) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 232) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 233) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 234) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 235) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 236) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 237) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 238) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 239) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 240) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 241) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 242) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 243) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 244) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 245) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 246) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 247) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 248) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 249) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 250) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 251) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 252) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 253) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 254) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 255) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 256) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 257) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 258) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 259) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 260) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 261) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 262) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 263) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 264) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 265) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 266) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 267) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 268) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 269) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 270) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 271) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 272) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 273) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 274) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 275) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 276) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 277) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 278) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 279) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 280) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 281) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 282) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 283) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 284) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 285) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 286) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 287) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 288) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 289) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 290) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 291) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 292) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 293) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 294) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 295) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 296) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 297) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 298) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 299) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 300) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 301) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 302) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 303) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 304) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 305) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 306) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 307) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 308) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 309) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 310) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 311) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 312) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 313) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 314) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 315) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 316) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 317) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 318) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 319) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 320) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 321) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 322) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 323) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 324) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 325) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 326) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 327) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 328) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 329) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 330) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 331) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 332) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 333) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 334) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 335) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 336) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 337) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 338) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 339) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 340) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 341) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 342) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 343) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 344) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 345) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 346) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 347) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 348) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 349) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 350) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 351) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 352) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 353) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 354) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 355) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 356) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 357) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 358) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 359) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 360) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 361) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 362) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 363) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 364) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 365) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 366) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 367) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 368) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 369) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 370) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 371) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 372) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 373) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 374) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 375) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 376) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 377) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 378) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 379) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 380) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 381) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 382) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 383) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 384) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 385) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 386) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 387) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 388) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 389) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 390) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 391) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 392) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 393) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 394) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 395) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 396) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 397) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 398) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 399) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 400) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 401) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 402) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 403) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 404) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 405) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 406) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 407) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 408) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 409) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 410) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 411) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 412) | EVFILT_WRITE = -0x2 constant EV_ADD (line 413) | EV_ADD = 0x1 constant EV_CLEAR (line 414) | EV_CLEAR = 0x20 constant EV_DELETE (line 415) | EV_DELETE = 0x2 constant EV_DISABLE (line 416) | EV_DISABLE = 0x8 constant EV_ENABLE (line 417) | EV_ENABLE = 0x4 constant EV_EOF (line 418) | EV_EOF = 0x8000 constant EV_ERROR (line 419) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 420) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 421) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 422) | EV_SYSFLAGS = 0xf000 constant EXTA (line 423) | EXTA = 0x4b00 constant EXTB (line 424) | EXTB = 0x9600 constant EXTPROC (line 425) | EXTPROC = 0x800 constant FD_CLOEXEC (line 426) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 427) | FD_SETSIZE = 0x400 constant FLUSHO (line 428) | FLUSHO = 0x800000 constant F_DUPFD (line 429) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 430) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 431) | F_GETFD = 0x1 constant F_GETFL (line 432) | F_GETFL = 0x3 constant F_GETLK (line 433) | F_GETLK = 0x7 constant F_GETOWN (line 434) | F_GETOWN = 0x5 constant F_OK (line 435) | F_OK = 0x0 constant F_RDLCK (line 436) | F_RDLCK = 0x1 constant F_SETFD (line 437) | F_SETFD = 0x2 constant F_SETFL (line 438) | F_SETFL = 0x4 constant F_SETLK (line 439) | F_SETLK = 0x8 constant F_SETLKW (line 440) | F_SETLKW = 0x9 constant F_SETOWN (line 441) | F_SETOWN = 0x6 constant F_UNLCK (line 442) | F_UNLCK = 0x2 constant F_WRLCK (line 443) | F_WRLCK = 0x3 constant HUPCL (line 444) | HUPCL = 0x4000 constant ICANON (line 445) | ICANON = 0x100 constant ICMP6_FILTER (line 446) | ICMP6_FILTER = 0x12 constant ICRNL (line 447) | ICRNL = 0x100 constant IEXTEN (line 448) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 449) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 450) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 451) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 453) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 454) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 471) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 472) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 473) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 474) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 475) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 476) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 477) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 478) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 479) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 480) | IFT_ASYNC = 0x54 constant IFT_ATM (line 481) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 482) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 483) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 484) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 485) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 486) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 487) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 488) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 489) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 490) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 491) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 492) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 493) | IFT_BSC = 0x53 constant IFT_CARP (line 494) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 495) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 496) | IFT_CEPT = 0x13 constant IFT_CES (line 497) | IFT_CES = 0x85 constant IFT_CHANNEL (line 498) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 499) | IFT_CNR = 0x55 constant IFT_COFFEE (line 500) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 501) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 502) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 503) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 504) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 505) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 506) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 507) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 508) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 509) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 510) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 511) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 512) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 513) | IFT_DS3 = 0x1e constant IFT_DTM (line 514) | IFT_DTM = 0x8c constant IFT_DUMMY (line 515) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 516) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 517) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 518) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 519) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 520) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 521) | IFT_ECONET = 0xce constant IFT_ENC (line 522) | IFT_ENC = 0xf4 constant IFT_EON (line 523) | IFT_EON = 0x19 constant IFT_EPLRS (line 524) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 525) | IFT_ESCON = 0x49 constant IFT_ETHER (line 526) | IFT_ETHER = 0x6 constant IFT_FAITH (line 527) | IFT_FAITH = 0xf3 constant IFT_FAST (line 528) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 529) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 530) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 531) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 532) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 533) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 534) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 535) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 536) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 537) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 538) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 539) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 540) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 541) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 542) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 543) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 544) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 545) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 546) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 547) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 548) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 549) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 550) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 551) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 552) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 553) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 554) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 555) | IFT_HSSI = 0x2e constant IFT_HY (line 556) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 557) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 558) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 559) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 560) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 561) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 562) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 563) | IFT_IFGSN = 0x91 constant IFT_IMT (line 564) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 565) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 566) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 567) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 568) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 569) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 570) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 571) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 572) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 573) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 574) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 575) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 576) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 577) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 578) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 579) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 580) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 581) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 582) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 583) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 584) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 585) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 586) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 587) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 588) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 589) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 590) | IFT_LAPB = 0x10 constant IFT_LAPD (line 591) | IFT_LAPD = 0x4d constant IFT_LAPF (line 592) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 593) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 594) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 595) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 596) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 597) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 598) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 599) | IFT_MODEM = 0x30 constant IFT_MPC (line 600) | IFT_MPC = 0x71 constant IFT_MPLS (line 601) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 602) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 603) | IFT_MSDSL = 0x8f constant IFT_MVL (line 604) | IFT_MVL = 0xbf constant IFT_MYRINET (line 605) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 606) | IFT_NFAS = 0xaf constant IFT_NSIP (line 607) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 608) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 609) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 610) | IFT_OTHER = 0x1 constant IFT_P10 (line 611) | IFT_P10 = 0xc constant IFT_P80 (line 612) | IFT_P80 = 0xd constant IFT_PARA (line 613) | IFT_PARA = 0x22 constant IFT_PFLOG (line 614) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 615) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 616) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 617) | IFT_PLC = 0xae constant IFT_PON155 (line 618) | IFT_PON155 = 0xcf constant IFT_PON622 (line 619) | IFT_PON622 = 0xd0 constant IFT_POS (line 620) | IFT_POS = 0xab constant IFT_PPP (line 621) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 622) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 623) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 624) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 625) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 626) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 627) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 628) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 629) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 630) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 631) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 632) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 633) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 634) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 635) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 636) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 637) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 638) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 639) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 640) | IFT_RS232 = 0x21 constant IFT_RSRB (line 641) | IFT_RSRB = 0x4f constant IFT_SDLC (line 642) | IFT_SDLC = 0x11 constant IFT_SDSL (line 643) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 644) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 645) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 646) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 647) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 648) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 649) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 650) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 651) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 652) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 653) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 654) | IFT_SONETVT = 0x33 constant IFT_SRP (line 655) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 656) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 657) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 658) | IFT_STARLAN = 0xb constant IFT_T1 (line 659) | IFT_T1 = 0x12 constant IFT_TDLC (line 660) | IFT_TDLC = 0x74 constant IFT_TELINK (line 661) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 662) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 663) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 664) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 665) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 666) | IFT_ULTRA = 0x1d constant IFT_USB (line 667) | IFT_USB = 0xa0 constant IFT_V11 (line 668) | IFT_V11 = 0x40 constant IFT_V35 (line 669) | IFT_V35 = 0x2d constant IFT_V36 (line 670) | IFT_V36 = 0x41 constant IFT_V37 (line 671) | IFT_V37 = 0x78 constant IFT_VDSL (line 672) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 673) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 674) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 675) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 676) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 677) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 678) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 679) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 680) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 681) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 682) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 683) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 684) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 685) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 686) | IFT_X213 = 0x5d constant IFT_X25 (line 687) | IFT_X25 = 0x5 constant IFT_X25DDN (line 688) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 689) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 690) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 691) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 692) | IFT_XETHER = 0x1a constant IGNBRK (line 693) | IGNBRK = 0x1 constant IGNCR (line 694) | IGNCR = 0x80 constant IGNPAR (line 695) | IGNPAR = 0x4 constant IMAXBEL (line 696) | IMAXBEL = 0x2000 constant INLCR (line 697) | INLCR = 0x40 constant INPCK (line 698) | INPCK = 0x10 constant IN_CLASSA_HOST (line 699) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 700) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 701) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 702) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 703) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 704) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 705) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 706) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 707) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 708) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 709) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 710) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 711) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 712) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 713) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 714) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 715) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 716) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 717) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 718) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 719) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 720) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 721) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 722) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 723) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 724) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 725) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 726) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 727) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 728) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 729) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 730) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 731) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 732) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 733) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 734) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 735) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 736) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 737) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 738) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 739) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 740) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 741) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 742) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 743) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 744) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 745) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 747) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 748) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 749) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 750) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 751) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 752) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 753) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 754) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 755) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 756) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 757) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 758) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 759) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 760) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 761) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 762) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 763) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 764) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 765) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 766) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 767) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 768) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 769) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 770) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 771) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 772) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 773) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 774) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 775) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 776) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 777) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 778) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 779) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 780) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 781) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 782) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 783) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 784) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 785) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 786) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 787) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 788) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 789) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 790) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 791) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 792) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 793) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 794) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 795) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 796) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 797) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 798) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 799) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 800) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 801) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 802) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 803) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 804) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 805) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 806) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 807) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 808) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 809) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 810) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 811) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 812) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 813) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 814) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 815) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 816) | IP_DF = 0x4000 constant IP_DIVERTFL (line 817) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 818) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 819) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 820) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 821) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 822) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 823) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 824) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 825) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 826) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 827) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 828) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 829) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 830) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 831) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 832) | IP_MF = 0x2000 constant IP_MINTTL (line 833) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 834) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 835) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 836) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 837) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 838) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 839) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 840) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 841) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 842) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 843) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 844) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 845) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 846) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 847) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 848) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 849) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 850) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 851) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 852) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 853) | IP_RETOPTS = 0x8 constant IP_RF (line 854) | IP_RF = 0x8000 constant IP_RTABLE (line 855) | IP_RTABLE = 0x1021 constant IP_TOS (line 856) | IP_TOS = 0x3 constant IP_TTL (line 857) | IP_TTL = 0x4 constant ISIG (line 858) | ISIG = 0x80 constant ISTRIP (line 859) | ISTRIP = 0x20 constant IXANY (line 860) | IXANY = 0x800 constant IXOFF (line 861) | IXOFF = 0x400 constant IXON (line 862) | IXON = 0x200 constant LCNT_OVERLOAD_FLUSH (line 863) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 864) | LOCK_EX = 0x2 constant LOCK_NB (line 865) | LOCK_NB = 0x4 constant LOCK_SH (line 866) | LOCK_SH = 0x1 constant LOCK_UN (line 867) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 868) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 869) | MADV_FREE = 0x6 constant MADV_NORMAL (line 870) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 871) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 872) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 873) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 874) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 875) | MAP_ANON = 0x1000 constant MAP_COPY (line 876) | MAP_COPY = 0x4 constant MAP_FILE (line 877) | MAP_FILE = 0x0 constant MAP_FIXED (line 878) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 879) | MAP_FLAGMASK = 0x1ff7 constant MAP_HASSEMAPHORE (line 880) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 881) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 882) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DONATE_COPY (line 883) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 884) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 885) | MAP_INHERIT_SHARE = 0x0 constant MAP_NOEXTEND (line 886) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 887) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 888) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 889) | MAP_RENAME = 0x20 constant MAP_SHARED (line 890) | MAP_SHARED = 0x1 constant MAP_TRYFIXED (line 891) | MAP_TRYFIXED = 0x400 constant MCL_CURRENT (line 892) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 893) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 894) | MSG_BCAST = 0x100 constant MSG_CTRUNC (line 895) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 896) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 897) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 898) | MSG_EOR = 0x8 constant MSG_MCAST (line 899) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 900) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 901) | MSG_OOB = 0x1 constant MSG_PEEK (line 902) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 903) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 904) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 905) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 906) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 907) | MS_SYNC = 0x2 constant NAME_MAX (line 908) | NAME_MAX = 0xff constant NET_RT_DUMP (line 909) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 910) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 911) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 912) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 913) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 914) | NET_RT_TABLE = 0x5 constant NOFLSH (line 915) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 916) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 917) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 918) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 919) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 920) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 921) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 922) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 923) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 924) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 925) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 926) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 927) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 930) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 931) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 932) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 933) | NOTE_WRITE = 0x2 constant OCRNL (line 934) | OCRNL = 0x10 constant ONLCR (line 935) | ONLCR = 0x2 constant ONLRET (line 936) | ONLRET = 0x80 constant ONOCR (line 937) | ONOCR = 0x40 constant ONOEOT (line 938) | ONOEOT = 0x8 constant OPOST (line 939) | OPOST = 0x1 constant O_ACCMODE (line 940) | O_ACCMODE = 0x3 constant O_APPEND (line 941) | O_APPEND = 0x8 constant O_ASYNC (line 942) | O_ASYNC = 0x40 constant O_CLOEXEC (line 943) | O_CLOEXEC = 0x10000 constant O_CREAT (line 944) | O_CREAT = 0x200 constant O_DIRECTORY (line 945) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 946) | O_DSYNC = 0x80 constant O_EXCL (line 947) | O_EXCL = 0x800 constant O_EXLOCK (line 948) | O_EXLOCK = 0x20 constant O_FSYNC (line 949) | O_FSYNC = 0x80 constant O_NDELAY (line 950) | O_NDELAY = 0x4 constant O_NOCTTY (line 951) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 952) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 953) | O_NONBLOCK = 0x4 constant O_RDONLY (line 954) | O_RDONLY = 0x0 constant O_RDWR (line 955) | O_RDWR = 0x2 constant O_RSYNC (line 956) | O_RSYNC = 0x80 constant O_SHLOCK (line 957) | O_SHLOCK = 0x10 constant O_SYNC (line 958) | O_SYNC = 0x80 constant O_TRUNC (line 959) | O_TRUNC = 0x400 constant O_WRONLY (line 960) | O_WRONLY = 0x1 constant PARENB (line 961) | PARENB = 0x1000 constant PARMRK (line 962) | PARMRK = 0x8 constant PARODD (line 963) | PARODD = 0x2000 constant PENDIN (line 964) | PENDIN = 0x20000000 constant PF_FLUSH (line 965) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 966) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 967) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 968) | PRIO_USER = 0x2 constant PROT_EXEC (line 969) | PROT_EXEC = 0x4 constant PROT_NONE (line 970) | PROT_NONE = 0x0 constant PROT_READ (line 971) | PROT_READ = 0x1 constant PROT_WRITE (line 972) | PROT_WRITE = 0x2 constant PT_MASK (line 973) | PT_MASK = 0x3ff000 constant RLIMIT_CORE (line 974) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 975) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 976) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 977) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 978) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 979) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 980) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 981) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 982) | RTAX_BRD = 0x7 constant RTAX_DST (line 983) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 984) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 985) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 986) | RTAX_IFA = 0x5 constant RTAX_IFP (line 987) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 988) | RTAX_LABEL = 0xa constant RTAX_MAX (line 989) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 990) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 991) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 992) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 993) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 994) | RTA_BRD = 0x80 constant RTA_DST (line 995) | RTA_DST = 0x1 constant RTA_GATEWAY (line 996) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 997) | RTA_GENMASK = 0x8 constant RTA_IFA (line 998) | RTA_IFA = 0x20 constant RTA_IFP (line 999) | RTA_IFP = 0x10 constant RTA_LABEL (line 1000) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1001) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1002) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1003) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1004) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1005) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1006) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1007) | RTF_CLONING = 0x100 constant RTF_DONE (line 1008) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1009) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1010) | RTF_FMASK = 0x10f808 constant RTF_GATEWAY (line 1011) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1012) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1013) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1014) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1015) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1016) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1017) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1018) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1019) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1020) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1021) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1022) | RTF_REJECT = 0x8 constant RTF_SOURCE (line 1023) | RTF_SOURCE = 0x20000 constant RTF_STATIC (line 1024) | RTF_STATIC = 0x800 constant RTF_TUNNEL (line 1025) | RTF_TUNNEL = 0x100000 constant RTF_UP (line 1026) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1027) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1028) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1029) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1030) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1031) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1032) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1033) | RTM_DESYNC = 0x10 constant RTM_GET (line 1034) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1035) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1036) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1037) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1038) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1039) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1040) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1041) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1042) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1043) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1044) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1045) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1046) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1047) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1048) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1049) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1050) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1051) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1052) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1053) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_MAX (line 1054) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1055) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1056) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1057) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1058) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1059) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1060) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1061) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1062) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1063) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1064) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1065) | SIOCAIFGROUP = 0x80246987 constant SIOCALIFADDR (line 1066) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1067) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1068) | SIOCBRDGADD = 0x8054693c constant SIOCBRDGADDS (line 1069) | SIOCBRDGADDS = 0x80546941 constant SIOCBRDGARL (line 1070) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1071) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1072) | SIOCBRDGDEL = 0x8054693d constant SIOCBRDGDELS (line 1073) | SIOCBRDGDELS = 0x80546942 constant SIOCBRDGFLUSH (line 1074) | SIOCBRDGFLUSH = 0x80546948 constant SIOCBRDGFRL (line 1075) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1076) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1077) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1078) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1079) | SIOCBRDGGIFFLGS = 0xc054693e constant SIOCBRDGGMA (line 1080) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1081) | SIOCBRDGGPARAM = 0xc03c6958 constant SIOCBRDGGPRI (line 1082) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1083) | SIOCBRDGGRL = 0xc028694f constant SIOCBRDGGSIFS (line 1084) | SIOCBRDGGSIFS = 0xc054693c constant SIOCBRDGGTO (line 1085) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1086) | SIOCBRDGIFS = 0xc0546942 constant SIOCBRDGRTS (line 1087) | SIOCBRDGRTS = 0xc0186943 constant SIOCBRDGSADDR (line 1088) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1089) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1090) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1091) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1092) | SIOCBRDGSIFCOST = 0x80546955 constant SIOCBRDGSIFFLGS (line 1093) | SIOCBRDGSIFFLGS = 0x8054693f constant SIOCBRDGSIFPRIO (line 1094) | SIOCBRDGSIFPRIO = 0x80546954 constant SIOCBRDGSMA (line 1095) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1096) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1097) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1098) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1099) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1100) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1101) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1102) | SIOCDIFGROUP = 0x80246989 constant SIOCDIFPHYADDR (line 1103) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1104) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1105) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1106) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1107) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1108) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1109) | SIOCGETSGCNT = 0xc0147534 constant SIOCGETVIFCNT (line 1110) | SIOCGETVIFCNT = 0xc0147533 constant SIOCGETVLAN (line 1111) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1112) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1113) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1114) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1115) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1116) | SIOCGIFCONF = 0xc0086924 constant SIOCGIFDATA (line 1117) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1118) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1119) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1120) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1121) | SIOCGIFGATTR = 0xc024698b constant SIOCGIFGENERIC (line 1122) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1123) | SIOCGIFGMEMB = 0xc024698a constant SIOCGIFGROUP (line 1124) | SIOCGIFGROUP = 0xc0246988 constant SIOCGIFHARDMTU (line 1125) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1126) | SIOCGIFMEDIA = 0xc0286936 constant SIOCGIFMETRIC (line 1127) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1128) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1129) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1130) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1131) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1132) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1133) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1134) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFTIMESLOT (line 1135) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1136) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1137) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1138) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1139) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1140) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1141) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1142) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1143) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1144) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1145) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1146) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1147) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1148) | SIOCIFGCLONERS = 0xc00c6978 constant SIOCSETKALIVE (line 1149) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1150) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1151) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1152) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1153) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1154) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1155) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1156) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1157) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1158) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1159) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1160) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1161) | SIOCSIFGATTR = 0x8024698c constant SIOCSIFGENERIC (line 1162) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1163) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1164) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1165) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1166) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1167) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1168) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1169) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1170) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1171) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1172) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1173) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1174) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1175) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1176) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1177) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1178) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1179) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1180) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1181) | SIOCSVNETID = 0x802069a6 constant SOCK_DGRAM (line 1182) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 1183) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1184) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1185) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1186) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1187) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1188) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1189) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1190) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1191) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1192) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1193) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1194) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1195) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1196) | SO_LINGER = 0x80 constant SO_NETPROC (line 1197) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1198) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1199) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1200) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1201) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1202) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1203) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1204) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1205) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1206) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1207) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1208) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1209) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1210) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1211) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1212) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1213) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1214) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1215) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1216) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1217) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1218) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1219) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1220) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1221) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1222) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1223) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1224) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1225) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1226) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1227) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1228) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1229) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1230) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1231) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1232) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1233) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1234) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1235) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1236) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1237) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1238) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1239) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1240) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1241) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1242) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1243) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1244) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1245) | TIOCGTSTAMP = 0x400c745b constant TIOCGWINSZ (line 1246) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1247) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1248) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1249) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1250) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1251) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1252) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1253) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1254) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1255) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1256) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1257) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1258) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1259) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1260) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1261) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1262) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1263) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1264) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1265) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1266) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1267) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1268) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1269) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1270) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1271) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1272) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1273) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1274) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1275) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1276) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1277) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1278) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1279) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1280) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1281) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1282) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1283) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1284) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1285) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1286) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1287) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1288) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1289) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1290) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1291) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1292) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1293) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1294) | TOSTOP = 0x400000 constant VDISCARD (line 1295) | VDISCARD = 0xf constant VDSUSP (line 1296) | VDSUSP = 0xb constant VEOF (line 1297) | VEOF = 0x0 constant VEOL (line 1298) | VEOL = 0x1 constant VEOL2 (line 1299) | VEOL2 = 0x2 constant VERASE (line 1300) | VERASE = 0x3 constant VINTR (line 1301) | VINTR = 0x8 constant VKILL (line 1302) | VKILL = 0x5 constant VLNEXT (line 1303) | VLNEXT = 0xe constant VMIN (line 1304) | VMIN = 0x10 constant VQUIT (line 1305) | VQUIT = 0x9 constant VREPRINT (line 1306) | VREPRINT = 0x6 constant VSTART (line 1307) | VSTART = 0xc constant VSTATUS (line 1308) | VSTATUS = 0x12 constant VSTOP (line 1309) | VSTOP = 0xd constant VSUSP (line 1310) | VSUSP = 0xa constant VTIME (line 1311) | VTIME = 0x11 constant VWERASE (line 1312) | VWERASE = 0x4 constant WALTSIG (line 1313) | WALTSIG = 0x4 constant WCONTINUED (line 1314) | WCONTINUED = 0x8 constant WCOREFLAG (line 1315) | WCOREFLAG = 0x80 constant WNOHANG (line 1316) | WNOHANG = 0x1 constant WSTOPPED (line 1317) | WSTOPPED = 0x7f constant WUNTRACED (line 1318) | WUNTRACED = 0x2 constant E2BIG (line 1323) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1324) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1325) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1326) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1327) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1328) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1329) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1330) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1331) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1332) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1333) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1334) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1335) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1336) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1337) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1338) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1339) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1340) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1341) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1342) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1343) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1344) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1345) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1346) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1347) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1348) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1349) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1350) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1351) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1352) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1353) | EINVAL = syscall.Errno(0x16) constant EIO (line 1354) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1355) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1356) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1357) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1358) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1359) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1360) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1361) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1362) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1363) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1364) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1365) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1366) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1367) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1368) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1369) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1370) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1371) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1372) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1373) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1374) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1375) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1376) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1377) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1378) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1379) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1380) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1381) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1382) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1383) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1384) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1385) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1386) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1387) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1388) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1389) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1390) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1391) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1392) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1393) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1394) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1395) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1396) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1397) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1398) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1399) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1400) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1401) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1402) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1403) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1404) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1405) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1406) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1407) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1408) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1409) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1410) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1411) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1412) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1413) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1414) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1415) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1420) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1421) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1422) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1423) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1424) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1425) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1426) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1427) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1428) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1429) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1430) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1431) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1432) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1433) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1434) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1435) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1436) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1437) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1438) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1439) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1440) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1441) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1442) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1443) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1444) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1445) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1446) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1447) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1448) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1449) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1450) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1451) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1452) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go constant AF_APPLETALK (line 14) | AF_APPLETALK = 0x10 constant AF_BLUETOOTH (line 15) | AF_BLUETOOTH = 0x20 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_CNT (line 18) | AF_CNT = 0x15 constant AF_COIP (line 19) | AF_COIP = 0x14 constant AF_DATAKIT (line 20) | AF_DATAKIT = 0x9 constant AF_DECnet (line 21) | AF_DECnet = 0xc constant AF_DLI (line 22) | AF_DLI = 0xd constant AF_E164 (line 23) | AF_E164 = 0x1a constant AF_ECMA (line 24) | AF_ECMA = 0x8 constant AF_ENCAP (line 25) | AF_ENCAP = 0x1c constant AF_HYLINK (line 26) | AF_HYLINK = 0xf constant AF_IMPLINK (line 27) | AF_IMPLINK = 0x3 constant AF_INET (line 28) | AF_INET = 0x2 constant AF_INET6 (line 29) | AF_INET6 = 0x18 constant AF_IPX (line 30) | AF_IPX = 0x17 constant AF_ISDN (line 31) | AF_ISDN = 0x1a constant AF_ISO (line 32) | AF_ISO = 0x7 constant AF_KEY (line 33) | AF_KEY = 0x1e constant AF_LAT (line 34) | AF_LAT = 0xe constant AF_LINK (line 35) | AF_LINK = 0x12 constant AF_LOCAL (line 36) | AF_LOCAL = 0x1 constant AF_MAX (line 37) | AF_MAX = 0x24 constant AF_MPLS (line 38) | AF_MPLS = 0x21 constant AF_NATM (line 39) | AF_NATM = 0x1b constant AF_NS (line 40) | AF_NS = 0x6 constant AF_OSI (line 41) | AF_OSI = 0x7 constant AF_PUP (line 42) | AF_PUP = 0x4 constant AF_ROUTE (line 43) | AF_ROUTE = 0x11 constant AF_SIP (line 44) | AF_SIP = 0x1d constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_UNIX (line 46) | AF_UNIX = 0x1 constant AF_UNSPEC (line 47) | AF_UNSPEC = 0x0 constant ARPHRD_ETHER (line 48) | ARPHRD_ETHER = 0x1 constant ARPHRD_FRELAY (line 49) | ARPHRD_FRELAY = 0xf constant ARPHRD_IEEE1394 (line 50) | ARPHRD_IEEE1394 = 0x18 constant ARPHRD_IEEE802 (line 51) | ARPHRD_IEEE802 = 0x6 constant B0 (line 52) | B0 = 0x0 constant B110 (line 53) | B110 = 0x6e constant B115200 (line 54) | B115200 = 0x1c200 constant B1200 (line 55) | B1200 = 0x4b0 constant B134 (line 56) | B134 = 0x86 constant B14400 (line 57) | B14400 = 0x3840 constant B150 (line 58) | B150 = 0x96 constant B1800 (line 59) | B1800 = 0x708 constant B19200 (line 60) | B19200 = 0x4b00 constant B200 (line 61) | B200 = 0xc8 constant B230400 (line 62) | B230400 = 0x38400 constant B2400 (line 63) | B2400 = 0x960 constant B28800 (line 64) | B28800 = 0x7080 constant B300 (line 65) | B300 = 0x12c constant B38400 (line 66) | B38400 = 0x9600 constant B4800 (line 67) | B4800 = 0x12c0 constant B50 (line 68) | B50 = 0x32 constant B57600 (line 69) | B57600 = 0xe100 constant B600 (line 70) | B600 = 0x258 constant B7200 (line 71) | B7200 = 0x1c20 constant B75 (line 72) | B75 = 0x4b constant B76800 (line 73) | B76800 = 0x12c00 constant B9600 (line 74) | B9600 = 0x2580 constant BIOCFLUSH (line 75) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 76) | BIOCGBLEN = 0x40044266 constant BIOCGDIRFILT (line 77) | BIOCGDIRFILT = 0x4004427c constant BIOCGDLT (line 78) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 79) | BIOCGDLTLIST = 0xc010427b constant BIOCGETIF (line 80) | BIOCGETIF = 0x4020426b constant BIOCGFILDROP (line 81) | BIOCGFILDROP = 0x40044278 constant BIOCGHDRCMPLT (line 82) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRSIG (line 83) | BIOCGRSIG = 0x40044273 constant BIOCGRTIMEOUT (line 84) | BIOCGRTIMEOUT = 0x4010426e constant BIOCGSTATS (line 85) | BIOCGSTATS = 0x4008426f constant BIOCIMMEDIATE (line 86) | BIOCIMMEDIATE = 0x80044270 constant BIOCLOCK (line 87) | BIOCLOCK = 0x20004276 constant BIOCPROMISC (line 88) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 89) | BIOCSBLEN = 0xc0044266 constant BIOCSDIRFILT (line 90) | BIOCSDIRFILT = 0x8004427d constant BIOCSDLT (line 91) | BIOCSDLT = 0x8004427a constant BIOCSETF (line 92) | BIOCSETF = 0x80104267 constant BIOCSETIF (line 93) | BIOCSETIF = 0x8020426c constant BIOCSETWF (line 94) | BIOCSETWF = 0x80104277 constant BIOCSFILDROP (line 95) | BIOCSFILDROP = 0x80044279 constant BIOCSHDRCMPLT (line 96) | BIOCSHDRCMPLT = 0x80044275 constant BIOCSRSIG (line 97) | BIOCSRSIG = 0x80044272 constant BIOCSRTIMEOUT (line 98) | BIOCSRTIMEOUT = 0x8010426d constant BIOCVERSION (line 99) | BIOCVERSION = 0x40044271 constant BPF_A (line 100) | BPF_A = 0x10 constant BPF_ABS (line 101) | BPF_ABS = 0x20 constant BPF_ADD (line 102) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 103) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 104) | BPF_ALU = 0x4 constant BPF_AND (line 105) | BPF_AND = 0x50 constant BPF_B (line 106) | BPF_B = 0x10 constant BPF_DIRECTION_IN (line 107) | BPF_DIRECTION_IN = 0x1 constant BPF_DIRECTION_OUT (line 108) | BPF_DIRECTION_OUT = 0x2 constant BPF_DIV (line 109) | BPF_DIV = 0x30 constant BPF_H (line 110) | BPF_H = 0x8 constant BPF_IMM (line 111) | BPF_IMM = 0x0 constant BPF_IND (line 112) | BPF_IND = 0x40 constant BPF_JA (line 113) | BPF_JA = 0x0 constant BPF_JEQ (line 114) | BPF_JEQ = 0x10 constant BPF_JGE (line 115) | BPF_JGE = 0x30 constant BPF_JGT (line 116) | BPF_JGT = 0x20 constant BPF_JMP (line 117) | BPF_JMP = 0x5 constant BPF_JSET (line 118) | BPF_JSET = 0x40 constant BPF_K (line 119) | BPF_K = 0x0 constant BPF_LD (line 120) | BPF_LD = 0x0 constant BPF_LDX (line 121) | BPF_LDX = 0x1 constant BPF_LEN (line 122) | BPF_LEN = 0x80 constant BPF_LSH (line 123) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 124) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 125) | BPF_MAXBUFSIZE = 0x200000 constant BPF_MAXINSNS (line 126) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 127) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 128) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 129) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 130) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 131) | BPF_MISC = 0x7 constant BPF_MSH (line 132) | BPF_MSH = 0xa0 constant BPF_MUL (line 133) | BPF_MUL = 0x20 constant BPF_NEG (line 134) | BPF_NEG = 0x80 constant BPF_OR (line 135) | BPF_OR = 0x40 constant BPF_RELEASE (line 136) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 137) | BPF_RET = 0x6 constant BPF_RSH (line 138) | BPF_RSH = 0x70 constant BPF_ST (line 139) | BPF_ST = 0x2 constant BPF_STX (line 140) | BPF_STX = 0x3 constant BPF_SUB (line 141) | BPF_SUB = 0x10 constant BPF_TAX (line 142) | BPF_TAX = 0x0 constant BPF_TXA (line 143) | BPF_TXA = 0x80 constant BPF_W (line 144) | BPF_W = 0x0 constant BPF_X (line 145) | BPF_X = 0x8 constant BRKINT (line 146) | BRKINT = 0x2 constant CFLUSH (line 147) | CFLUSH = 0xf constant CLOCAL (line 148) | CLOCAL = 0x8000 constant CREAD (line 149) | CREAD = 0x800 constant CS5 (line 150) | CS5 = 0x0 constant CS6 (line 151) | CS6 = 0x100 constant CS7 (line 152) | CS7 = 0x200 constant CS8 (line 153) | CS8 = 0x300 constant CSIZE (line 154) | CSIZE = 0x300 constant CSTART (line 155) | CSTART = 0x11 constant CSTATUS (line 156) | CSTATUS = 0xff constant CSTOP (line 157) | CSTOP = 0x13 constant CSTOPB (line 158) | CSTOPB = 0x400 constant CSUSP (line 159) | CSUSP = 0x1a constant CTL_MAXNAME (line 160) | CTL_MAXNAME = 0xc constant CTL_NET (line 161) | CTL_NET = 0x4 constant DIOCOSFPFLUSH (line 162) | DIOCOSFPFLUSH = 0x2000444e constant DLT_ARCNET (line 163) | DLT_ARCNET = 0x7 constant DLT_ATM_RFC1483 (line 164) | DLT_ATM_RFC1483 = 0xb constant DLT_AX25 (line 165) | DLT_AX25 = 0x3 constant DLT_CHAOS (line 166) | DLT_CHAOS = 0x5 constant DLT_C_HDLC (line 167) | DLT_C_HDLC = 0x68 constant DLT_EN10MB (line 168) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 169) | DLT_EN3MB = 0x2 constant DLT_ENC (line 170) | DLT_ENC = 0xd constant DLT_FDDI (line 171) | DLT_FDDI = 0xa constant DLT_IEEE802 (line 172) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 173) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 174) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_LOOP (line 175) | DLT_LOOP = 0xc constant DLT_MPLS (line 176) | DLT_MPLS = 0xdb constant DLT_NULL (line 177) | DLT_NULL = 0x0 constant DLT_PFLOG (line 178) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 179) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 180) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 181) | DLT_PPP_BSDOS = 0x10 constant DLT_PPP_ETHER (line 182) | DLT_PPP_ETHER = 0x33 constant DLT_PPP_SERIAL (line 183) | DLT_PPP_SERIAL = 0x32 constant DLT_PRONET (line 184) | DLT_PRONET = 0x4 constant DLT_RAW (line 185) | DLT_RAW = 0xe constant DLT_SLIP (line 186) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 187) | DLT_SLIP_BSDOS = 0xf constant DT_BLK (line 188) | DT_BLK = 0x6 constant DT_CHR (line 189) | DT_CHR = 0x2 constant DT_DIR (line 190) | DT_DIR = 0x4 constant DT_FIFO (line 191) | DT_FIFO = 0x1 constant DT_LNK (line 192) | DT_LNK = 0xa constant DT_REG (line 193) | DT_REG = 0x8 constant DT_SOCK (line 194) | DT_SOCK = 0xc constant DT_UNKNOWN (line 195) | DT_UNKNOWN = 0x0 constant ECHO (line 196) | ECHO = 0x8 constant ECHOCTL (line 197) | ECHOCTL = 0x40 constant ECHOE (line 198) | ECHOE = 0x2 constant ECHOK (line 199) | ECHOK = 0x4 constant ECHOKE (line 200) | ECHOKE = 0x1 constant ECHONL (line 201) | ECHONL = 0x10 constant ECHOPRT (line 202) | ECHOPRT = 0x20 constant EMT_TAGOVF (line 203) | EMT_TAGOVF = 0x1 constant EMUL_ENABLED (line 204) | EMUL_ENABLED = 0x1 constant EMUL_NATIVE (line 205) | EMUL_NATIVE = 0x2 constant ENDRUNDISC (line 206) | ENDRUNDISC = 0x9 constant ETHERMIN (line 207) | ETHERMIN = 0x2e constant ETHERMTU (line 208) | ETHERMTU = 0x5dc constant ETHERTYPE_8023 (line 209) | ETHERTYPE_8023 = 0x4 constant ETHERTYPE_AARP (line 210) | ETHERTYPE_AARP = 0x80f3 constant ETHERTYPE_ACCTON (line 211) | ETHERTYPE_ACCTON = 0x8390 constant ETHERTYPE_AEONIC (line 212) | ETHERTYPE_AEONIC = 0x8036 constant ETHERTYPE_ALPHA (line 213) | ETHERTYPE_ALPHA = 0x814a constant ETHERTYPE_AMBER (line 214) | ETHERTYPE_AMBER = 0x6008 constant ETHERTYPE_AMOEBA (line 215) | ETHERTYPE_AMOEBA = 0x8145 constant ETHERTYPE_AOE (line 216) | ETHERTYPE_AOE = 0x88a2 constant ETHERTYPE_APOLLO (line 217) | ETHERTYPE_APOLLO = 0x80f7 constant ETHERTYPE_APOLLODOMAIN (line 218) | ETHERTYPE_APOLLODOMAIN = 0x8019 constant ETHERTYPE_APPLETALK (line 219) | ETHERTYPE_APPLETALK = 0x809b constant ETHERTYPE_APPLITEK (line 220) | ETHERTYPE_APPLITEK = 0x80c7 constant ETHERTYPE_ARGONAUT (line 221) | ETHERTYPE_ARGONAUT = 0x803a constant ETHERTYPE_ARP (line 222) | ETHERTYPE_ARP = 0x806 constant ETHERTYPE_AT (line 223) | ETHERTYPE_AT = 0x809b constant ETHERTYPE_ATALK (line 224) | ETHERTYPE_ATALK = 0x809b constant ETHERTYPE_ATOMIC (line 225) | ETHERTYPE_ATOMIC = 0x86df constant ETHERTYPE_ATT (line 226) | ETHERTYPE_ATT = 0x8069 constant ETHERTYPE_ATTSTANFORD (line 227) | ETHERTYPE_ATTSTANFORD = 0x8008 constant ETHERTYPE_AUTOPHON (line 228) | ETHERTYPE_AUTOPHON = 0x806a constant ETHERTYPE_AXIS (line 229) | ETHERTYPE_AXIS = 0x8856 constant ETHERTYPE_BCLOOP (line 230) | ETHERTYPE_BCLOOP = 0x9003 constant ETHERTYPE_BOFL (line 231) | ETHERTYPE_BOFL = 0x8102 constant ETHERTYPE_CABLETRON (line 232) | ETHERTYPE_CABLETRON = 0x7034 constant ETHERTYPE_CHAOS (line 233) | ETHERTYPE_CHAOS = 0x804 constant ETHERTYPE_COMDESIGN (line 234) | ETHERTYPE_COMDESIGN = 0x806c constant ETHERTYPE_COMPUGRAPHIC (line 235) | ETHERTYPE_COMPUGRAPHIC = 0x806d constant ETHERTYPE_COUNTERPOINT (line 236) | ETHERTYPE_COUNTERPOINT = 0x8062 constant ETHERTYPE_CRONUS (line 237) | ETHERTYPE_CRONUS = 0x8004 constant ETHERTYPE_CRONUSVLN (line 238) | ETHERTYPE_CRONUSVLN = 0x8003 constant ETHERTYPE_DCA (line 239) | ETHERTYPE_DCA = 0x1234 constant ETHERTYPE_DDE (line 240) | ETHERTYPE_DDE = 0x807b constant ETHERTYPE_DEBNI (line 241) | ETHERTYPE_DEBNI = 0xaaaa constant ETHERTYPE_DECAM (line 242) | ETHERTYPE_DECAM = 0x8048 constant ETHERTYPE_DECCUST (line 243) | ETHERTYPE_DECCUST = 0x6006 constant ETHERTYPE_DECDIAG (line 244) | ETHERTYPE_DECDIAG = 0x6005 constant ETHERTYPE_DECDNS (line 245) | ETHERTYPE_DECDNS = 0x803c constant ETHERTYPE_DECDTS (line 246) | ETHERTYPE_DECDTS = 0x803e constant ETHERTYPE_DECEXPER (line 247) | ETHERTYPE_DECEXPER = 0x6000 constant ETHERTYPE_DECLAST (line 248) | ETHERTYPE_DECLAST = 0x8041 constant ETHERTYPE_DECLTM (line 249) | ETHERTYPE_DECLTM = 0x803f constant ETHERTYPE_DECMUMPS (line 250) | ETHERTYPE_DECMUMPS = 0x6009 constant ETHERTYPE_DECNETBIOS (line 251) | ETHERTYPE_DECNETBIOS = 0x8040 constant ETHERTYPE_DELTACON (line 252) | ETHERTYPE_DELTACON = 0x86de constant ETHERTYPE_DIDDLE (line 253) | ETHERTYPE_DIDDLE = 0x4321 constant ETHERTYPE_DLOG1 (line 254) | ETHERTYPE_DLOG1 = 0x660 constant ETHERTYPE_DLOG2 (line 255) | ETHERTYPE_DLOG2 = 0x661 constant ETHERTYPE_DN (line 256) | ETHERTYPE_DN = 0x6003 constant ETHERTYPE_DOGFIGHT (line 257) | ETHERTYPE_DOGFIGHT = 0x1989 constant ETHERTYPE_DSMD (line 258) | ETHERTYPE_DSMD = 0x8039 constant ETHERTYPE_ECMA (line 259) | ETHERTYPE_ECMA = 0x803 constant ETHERTYPE_ENCRYPT (line 260) | ETHERTYPE_ENCRYPT = 0x803d constant ETHERTYPE_ES (line 261) | ETHERTYPE_ES = 0x805d constant ETHERTYPE_EXCELAN (line 262) | ETHERTYPE_EXCELAN = 0x8010 constant ETHERTYPE_EXPERDATA (line 263) | ETHERTYPE_EXPERDATA = 0x8049 constant ETHERTYPE_FLIP (line 264) | ETHERTYPE_FLIP = 0x8146 constant ETHERTYPE_FLOWCONTROL (line 265) | ETHERTYPE_FLOWCONTROL = 0x8808 constant ETHERTYPE_FRARP (line 266) | ETHERTYPE_FRARP = 0x808 constant ETHERTYPE_GENDYN (line 267) | ETHERTYPE_GENDYN = 0x8068 constant ETHERTYPE_HAYES (line 268) | ETHERTYPE_HAYES = 0x8130 constant ETHERTYPE_HIPPI_FP (line 269) | ETHERTYPE_HIPPI_FP = 0x8180 constant ETHERTYPE_HITACHI (line 270) | ETHERTYPE_HITACHI = 0x8820 constant ETHERTYPE_HP (line 271) | ETHERTYPE_HP = 0x8005 constant ETHERTYPE_IEEEPUP (line 272) | ETHERTYPE_IEEEPUP = 0xa00 constant ETHERTYPE_IEEEPUPAT (line 273) | ETHERTYPE_IEEEPUPAT = 0xa01 constant ETHERTYPE_IMLBL (line 274) | ETHERTYPE_IMLBL = 0x4c42 constant ETHERTYPE_IMLBLDIAG (line 275) | ETHERTYPE_IMLBLDIAG = 0x424c constant ETHERTYPE_IP (line 276) | ETHERTYPE_IP = 0x800 constant ETHERTYPE_IPAS (line 277) | ETHERTYPE_IPAS = 0x876c constant ETHERTYPE_IPV6 (line 278) | ETHERTYPE_IPV6 = 0x86dd constant ETHERTYPE_IPX (line 279) | ETHERTYPE_IPX = 0x8137 constant ETHERTYPE_IPXNEW (line 280) | ETHERTYPE_IPXNEW = 0x8037 constant ETHERTYPE_KALPANA (line 281) | ETHERTYPE_KALPANA = 0x8582 constant ETHERTYPE_LANBRIDGE (line 282) | ETHERTYPE_LANBRIDGE = 0x8038 constant ETHERTYPE_LANPROBE (line 283) | ETHERTYPE_LANPROBE = 0x8888 constant ETHERTYPE_LAT (line 284) | ETHERTYPE_LAT = 0x6004 constant ETHERTYPE_LBACK (line 285) | ETHERTYPE_LBACK = 0x9000 constant ETHERTYPE_LITTLE (line 286) | ETHERTYPE_LITTLE = 0x8060 constant ETHERTYPE_LLDP (line 287) | ETHERTYPE_LLDP = 0x88cc constant ETHERTYPE_LOGICRAFT (line 288) | ETHERTYPE_LOGICRAFT = 0x8148 constant ETHERTYPE_LOOPBACK (line 289) | ETHERTYPE_LOOPBACK = 0x9000 constant ETHERTYPE_MATRA (line 290) | ETHERTYPE_MATRA = 0x807a constant ETHERTYPE_MAX (line 291) | ETHERTYPE_MAX = 0xffff constant ETHERTYPE_MERIT (line 292) | ETHERTYPE_MERIT = 0x807c constant ETHERTYPE_MICP (line 293) | ETHERTYPE_MICP = 0x873a constant ETHERTYPE_MOPDL (line 294) | ETHERTYPE_MOPDL = 0x6001 constant ETHERTYPE_MOPRC (line 295) | ETHERTYPE_MOPRC = 0x6002 constant ETHERTYPE_MOTOROLA (line 296) | ETHERTYPE_MOTOROLA = 0x818d constant ETHERTYPE_MPLS (line 297) | ETHERTYPE_MPLS = 0x8847 constant ETHERTYPE_MPLS_MCAST (line 298) | ETHERTYPE_MPLS_MCAST = 0x8848 constant ETHERTYPE_MUMPS (line 299) | ETHERTYPE_MUMPS = 0x813f constant ETHERTYPE_NBPCC (line 300) | ETHERTYPE_NBPCC = 0x3c04 constant ETHERTYPE_NBPCLAIM (line 301) | ETHERTYPE_NBPCLAIM = 0x3c09 constant ETHERTYPE_NBPCLREQ (line 302) | ETHERTYPE_NBPCLREQ = 0x3c05 constant ETHERTYPE_NBPCLRSP (line 303) | ETHERTYPE_NBPCLRSP = 0x3c06 constant ETHERTYPE_NBPCREQ (line 304) | ETHERTYPE_NBPCREQ = 0x3c02 constant ETHERTYPE_NBPCRSP (line 305) | ETHERTYPE_NBPCRSP = 0x3c03 constant ETHERTYPE_NBPDG (line 306) | ETHERTYPE_NBPDG = 0x3c07 constant ETHERTYPE_NBPDGB (line 307) | ETHERTYPE_NBPDGB = 0x3c08 constant ETHERTYPE_NBPDLTE (line 308) | ETHERTYPE_NBPDLTE = 0x3c0a constant ETHERTYPE_NBPRAR (line 309) | ETHERTYPE_NBPRAR = 0x3c0c constant ETHERTYPE_NBPRAS (line 310) | ETHERTYPE_NBPRAS = 0x3c0b constant ETHERTYPE_NBPRST (line 311) | ETHERTYPE_NBPRST = 0x3c0d constant ETHERTYPE_NBPSCD (line 312) | ETHERTYPE_NBPSCD = 0x3c01 constant ETHERTYPE_NBPVCD (line 313) | ETHERTYPE_NBPVCD = 0x3c00 constant ETHERTYPE_NBS (line 314) | ETHERTYPE_NBS = 0x802 constant ETHERTYPE_NCD (line 315) | ETHERTYPE_NCD = 0x8149 constant ETHERTYPE_NESTAR (line 316) | ETHERTYPE_NESTAR = 0x8006 constant ETHERTYPE_NETBEUI (line 317) | ETHERTYPE_NETBEUI = 0x8191 constant ETHERTYPE_NOVELL (line 318) | ETHERTYPE_NOVELL = 0x8138 constant ETHERTYPE_NS (line 319) | ETHERTYPE_NS = 0x600 constant ETHERTYPE_NSAT (line 320) | ETHERTYPE_NSAT = 0x601 constant ETHERTYPE_NSCOMPAT (line 321) | ETHERTYPE_NSCOMPAT = 0x807 constant ETHERTYPE_NTRAILER (line 322) | ETHERTYPE_NTRAILER = 0x10 constant ETHERTYPE_OS9 (line 323) | ETHERTYPE_OS9 = 0x7007 constant ETHERTYPE_OS9NET (line 324) | ETHERTYPE_OS9NET = 0x7009 constant ETHERTYPE_PACER (line 325) | ETHERTYPE_PACER = 0x80c6 constant ETHERTYPE_PAE (line 326) | ETHERTYPE_PAE = 0x888e constant ETHERTYPE_PCS (line 327) | ETHERTYPE_PCS = 0x4242 constant ETHERTYPE_PLANNING (line 328) | ETHERTYPE_PLANNING = 0x8044 constant ETHERTYPE_PPP (line 329) | ETHERTYPE_PPP = 0x880b constant ETHERTYPE_PPPOE (line 330) | ETHERTYPE_PPPOE = 0x8864 constant ETHERTYPE_PPPOEDISC (line 331) | ETHERTYPE_PPPOEDISC = 0x8863 constant ETHERTYPE_PRIMENTS (line 332) | ETHERTYPE_PRIMENTS = 0x7031 constant ETHERTYPE_PUP (line 333) | ETHERTYPE_PUP = 0x200 constant ETHERTYPE_PUPAT (line 334) | ETHERTYPE_PUPAT = 0x200 constant ETHERTYPE_QINQ (line 335) | ETHERTYPE_QINQ = 0x88a8 constant ETHERTYPE_RACAL (line 336) | ETHERTYPE_RACAL = 0x7030 constant ETHERTYPE_RATIONAL (line 337) | ETHERTYPE_RATIONAL = 0x8150 constant ETHERTYPE_RAWFR (line 338) | ETHERTYPE_RAWFR = 0x6559 constant ETHERTYPE_RCL (line 339) | ETHERTYPE_RCL = 0x1995 constant ETHERTYPE_RDP (line 340) | ETHERTYPE_RDP = 0x8739 constant ETHERTYPE_RETIX (line 341) | ETHERTYPE_RETIX = 0x80f2 constant ETHERTYPE_REVARP (line 342) | ETHERTYPE_REVARP = 0x8035 constant ETHERTYPE_SCA (line 343) | ETHERTYPE_SCA = 0x6007 constant ETHERTYPE_SECTRA (line 344) | ETHERTYPE_SECTRA = 0x86db constant ETHERTYPE_SECUREDATA (line 345) | ETHERTYPE_SECUREDATA = 0x876d constant ETHERTYPE_SGITW (line 346) | ETHERTYPE_SGITW = 0x817e constant ETHERTYPE_SG_BOUNCE (line 347) | ETHERTYPE_SG_BOUNCE = 0x8016 constant ETHERTYPE_SG_DIAG (line 348) | ETHERTYPE_SG_DIAG = 0x8013 constant ETHERTYPE_SG_NETGAMES (line 349) | ETHERTYPE_SG_NETGAMES = 0x8014 constant ETHERTYPE_SG_RESV (line 350) | ETHERTYPE_SG_RESV = 0x8015 constant ETHERTYPE_SIMNET (line 351) | ETHERTYPE_SIMNET = 0x5208 constant ETHERTYPE_SLOW (line 352) | ETHERTYPE_SLOW = 0x8809 constant ETHERTYPE_SNA (line 353) | ETHERTYPE_SNA = 0x80d5 constant ETHERTYPE_SNMP (line 354) | ETHERTYPE_SNMP = 0x814c constant ETHERTYPE_SONIX (line 355) | ETHERTYPE_SONIX = 0xfaf5 constant ETHERTYPE_SPIDER (line 356) | ETHERTYPE_SPIDER = 0x809f constant ETHERTYPE_SPRITE (line 357) | ETHERTYPE_SPRITE = 0x500 constant ETHERTYPE_STP (line 358) | ETHERTYPE_STP = 0x8181 constant ETHERTYPE_TALARIS (line 359) | ETHERTYPE_TALARIS = 0x812b constant ETHERTYPE_TALARISMC (line 360) | ETHERTYPE_TALARISMC = 0x852b constant ETHERTYPE_TCPCOMP (line 361) | ETHERTYPE_TCPCOMP = 0x876b constant ETHERTYPE_TCPSM (line 362) | ETHERTYPE_TCPSM = 0x9002 constant ETHERTYPE_TEC (line 363) | ETHERTYPE_TEC = 0x814f constant ETHERTYPE_TIGAN (line 364) | ETHERTYPE_TIGAN = 0x802f constant ETHERTYPE_TRAIL (line 365) | ETHERTYPE_TRAIL = 0x1000 constant ETHERTYPE_TRANSETHER (line 366) | ETHERTYPE_TRANSETHER = 0x6558 constant ETHERTYPE_TYMSHARE (line 367) | ETHERTYPE_TYMSHARE = 0x802e constant ETHERTYPE_UBBST (line 368) | ETHERTYPE_UBBST = 0x7005 constant ETHERTYPE_UBDEBUG (line 369) | ETHERTYPE_UBDEBUG = 0x900 constant ETHERTYPE_UBDIAGLOOP (line 370) | ETHERTYPE_UBDIAGLOOP = 0x7002 constant ETHERTYPE_UBDL (line 371) | ETHERTYPE_UBDL = 0x7000 constant ETHERTYPE_UBNIU (line 372) | ETHERTYPE_UBNIU = 0x7001 constant ETHERTYPE_UBNMC (line 373) | ETHERTYPE_UBNMC = 0x7003 constant ETHERTYPE_VALID (line 374) | ETHERTYPE_VALID = 0x1600 constant ETHERTYPE_VARIAN (line 375) | ETHERTYPE_VARIAN = 0x80dd constant ETHERTYPE_VAXELN (line 376) | ETHERTYPE_VAXELN = 0x803b constant ETHERTYPE_VEECO (line 377) | ETHERTYPE_VEECO = 0x8067 constant ETHERTYPE_VEXP (line 378) | ETHERTYPE_VEXP = 0x805b constant ETHERTYPE_VGLAB (line 379) | ETHERTYPE_VGLAB = 0x8131 constant ETHERTYPE_VINES (line 380) | ETHERTYPE_VINES = 0xbad constant ETHERTYPE_VINESECHO (line 381) | ETHERTYPE_VINESECHO = 0xbaf constant ETHERTYPE_VINESLOOP (line 382) | ETHERTYPE_VINESLOOP = 0xbae constant ETHERTYPE_VITAL (line 383) | ETHERTYPE_VITAL = 0xff00 constant ETHERTYPE_VLAN (line 384) | ETHERTYPE_VLAN = 0x8100 constant ETHERTYPE_VLTLMAN (line 385) | ETHERTYPE_VLTLMAN = 0x8080 constant ETHERTYPE_VPROD (line 386) | ETHERTYPE_VPROD = 0x805c constant ETHERTYPE_VURESERVED (line 387) | ETHERTYPE_VURESERVED = 0x8147 constant ETHERTYPE_WATERLOO (line 388) | ETHERTYPE_WATERLOO = 0x8130 constant ETHERTYPE_WELLFLEET (line 389) | ETHERTYPE_WELLFLEET = 0x8103 constant ETHERTYPE_X25 (line 390) | ETHERTYPE_X25 = 0x805 constant ETHERTYPE_X75 (line 391) | ETHERTYPE_X75 = 0x801 constant ETHERTYPE_XNSSM (line 392) | ETHERTYPE_XNSSM = 0x9001 constant ETHERTYPE_XTP (line 393) | ETHERTYPE_XTP = 0x817d constant ETHER_ADDR_LEN (line 394) | ETHER_ADDR_LEN = 0x6 constant ETHER_ALIGN (line 395) | ETHER_ALIGN = 0x2 constant ETHER_CRC_LEN (line 396) | ETHER_CRC_LEN = 0x4 constant ETHER_CRC_POLY_BE (line 397) | ETHER_CRC_POLY_BE = 0x4c11db6 constant ETHER_CRC_POLY_LE (line 398) | ETHER_CRC_POLY_LE = 0xedb88320 constant ETHER_HDR_LEN (line 399) | ETHER_HDR_LEN = 0xe constant ETHER_MAX_DIX_LEN (line 400) | ETHER_MAX_DIX_LEN = 0x600 constant ETHER_MAX_LEN (line 401) | ETHER_MAX_LEN = 0x5ee constant ETHER_MIN_LEN (line 402) | ETHER_MIN_LEN = 0x40 constant ETHER_TYPE_LEN (line 403) | ETHER_TYPE_LEN = 0x2 constant ETHER_VLAN_ENCAP_LEN (line 404) | ETHER_VLAN_ENCAP_LEN = 0x4 constant EVFILT_AIO (line 405) | EVFILT_AIO = -0x3 constant EVFILT_PROC (line 406) | EVFILT_PROC = -0x5 constant EVFILT_READ (line 407) | EVFILT_READ = -0x1 constant EVFILT_SIGNAL (line 408) | EVFILT_SIGNAL = -0x6 constant EVFILT_SYSCOUNT (line 409) | EVFILT_SYSCOUNT = 0x7 constant EVFILT_TIMER (line 410) | EVFILT_TIMER = -0x7 constant EVFILT_VNODE (line 411) | EVFILT_VNODE = -0x4 constant EVFILT_WRITE (line 412) | EVFILT_WRITE = -0x2 constant EV_ADD (line 413) | EV_ADD = 0x1 constant EV_CLEAR (line 414) | EV_CLEAR = 0x20 constant EV_DELETE (line 415) | EV_DELETE = 0x2 constant EV_DISABLE (line 416) | EV_DISABLE = 0x8 constant EV_ENABLE (line 417) | EV_ENABLE = 0x4 constant EV_EOF (line 418) | EV_EOF = 0x8000 constant EV_ERROR (line 419) | EV_ERROR = 0x4000 constant EV_FLAG1 (line 420) | EV_FLAG1 = 0x2000 constant EV_ONESHOT (line 421) | EV_ONESHOT = 0x10 constant EV_SYSFLAGS (line 422) | EV_SYSFLAGS = 0xf000 constant EXTA (line 423) | EXTA = 0x4b00 constant EXTB (line 424) | EXTB = 0x9600 constant EXTPROC (line 425) | EXTPROC = 0x800 constant FD_CLOEXEC (line 426) | FD_CLOEXEC = 0x1 constant FD_SETSIZE (line 427) | FD_SETSIZE = 0x400 constant FLUSHO (line 428) | FLUSHO = 0x800000 constant F_DUPFD (line 429) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 430) | F_DUPFD_CLOEXEC = 0xa constant F_GETFD (line 431) | F_GETFD = 0x1 constant F_GETFL (line 432) | F_GETFL = 0x3 constant F_GETLK (line 433) | F_GETLK = 0x7 constant F_GETOWN (line 434) | F_GETOWN = 0x5 constant F_OK (line 435) | F_OK = 0x0 constant F_RDLCK (line 436) | F_RDLCK = 0x1 constant F_SETFD (line 437) | F_SETFD = 0x2 constant F_SETFL (line 438) | F_SETFL = 0x4 constant F_SETLK (line 439) | F_SETLK = 0x8 constant F_SETLKW (line 440) | F_SETLKW = 0x9 constant F_SETOWN (line 441) | F_SETOWN = 0x6 constant F_UNLCK (line 442) | F_UNLCK = 0x2 constant F_WRLCK (line 443) | F_WRLCK = 0x3 constant HUPCL (line 444) | HUPCL = 0x4000 constant ICANON (line 445) | ICANON = 0x100 constant ICMP6_FILTER (line 446) | ICMP6_FILTER = 0x12 constant ICRNL (line 447) | ICRNL = 0x100 constant IEXTEN (line 448) | IEXTEN = 0x400 constant IFAN_ARRIVAL (line 449) | IFAN_ARRIVAL = 0x0 constant IFAN_DEPARTURE (line 450) | IFAN_DEPARTURE = 0x1 constant IFA_ROUTE (line 451) | IFA_ROUTE = 0x1 constant IFF_ALLMULTI (line 452) | IFF_ALLMULTI = 0x200 constant IFF_BROADCAST (line 453) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 454) | IFF_CANTCHANGE = 0x8e52 constant IFF_DEBUG (line 455) | IFF_DEBUG = 0x4 constant IFF_LINK0 (line 456) | IFF_LINK0 = 0x1000 constant IFF_LINK1 (line 457) | IFF_LINK1 = 0x2000 constant IFF_LINK2 (line 458) | IFF_LINK2 = 0x4000 constant IFF_LOOPBACK (line 459) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 460) | IFF_MULTICAST = 0x8000 constant IFF_NOARP (line 461) | IFF_NOARP = 0x80 constant IFF_NOTRAILERS (line 462) | IFF_NOTRAILERS = 0x20 constant IFF_OACTIVE (line 463) | IFF_OACTIVE = 0x400 constant IFF_POINTOPOINT (line 464) | IFF_POINTOPOINT = 0x10 constant IFF_PROMISC (line 465) | IFF_PROMISC = 0x100 constant IFF_RUNNING (line 466) | IFF_RUNNING = 0x40 constant IFF_SIMPLEX (line 467) | IFF_SIMPLEX = 0x800 constant IFF_UP (line 468) | IFF_UP = 0x1 constant IFNAMSIZ (line 469) | IFNAMSIZ = 0x10 constant IFT_1822 (line 470) | IFT_1822 = 0x2 constant IFT_A12MPPSWITCH (line 471) | IFT_A12MPPSWITCH = 0x82 constant IFT_AAL2 (line 472) | IFT_AAL2 = 0xbb constant IFT_AAL5 (line 473) | IFT_AAL5 = 0x31 constant IFT_ADSL (line 474) | IFT_ADSL = 0x5e constant IFT_AFLANE8023 (line 475) | IFT_AFLANE8023 = 0x3b constant IFT_AFLANE8025 (line 476) | IFT_AFLANE8025 = 0x3c constant IFT_ARAP (line 477) | IFT_ARAP = 0x58 constant IFT_ARCNET (line 478) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 479) | IFT_ARCNETPLUS = 0x24 constant IFT_ASYNC (line 480) | IFT_ASYNC = 0x54 constant IFT_ATM (line 481) | IFT_ATM = 0x25 constant IFT_ATMDXI (line 482) | IFT_ATMDXI = 0x69 constant IFT_ATMFUNI (line 483) | IFT_ATMFUNI = 0x6a constant IFT_ATMIMA (line 484) | IFT_ATMIMA = 0x6b constant IFT_ATMLOGICAL (line 485) | IFT_ATMLOGICAL = 0x50 constant IFT_ATMRADIO (line 486) | IFT_ATMRADIO = 0xbd constant IFT_ATMSUBINTERFACE (line 487) | IFT_ATMSUBINTERFACE = 0x86 constant IFT_ATMVCIENDPT (line 488) | IFT_ATMVCIENDPT = 0xc2 constant IFT_ATMVIRTUAL (line 489) | IFT_ATMVIRTUAL = 0x95 constant IFT_BGPPOLICYACCOUNTING (line 490) | IFT_BGPPOLICYACCOUNTING = 0xa2 constant IFT_BLUETOOTH (line 491) | IFT_BLUETOOTH = 0xf8 constant IFT_BRIDGE (line 492) | IFT_BRIDGE = 0xd1 constant IFT_BSC (line 493) | IFT_BSC = 0x53 constant IFT_CARP (line 494) | IFT_CARP = 0xf7 constant IFT_CCTEMUL (line 495) | IFT_CCTEMUL = 0x3d constant IFT_CEPT (line 496) | IFT_CEPT = 0x13 constant IFT_CES (line 497) | IFT_CES = 0x85 constant IFT_CHANNEL (line 498) | IFT_CHANNEL = 0x46 constant IFT_CNR (line 499) | IFT_CNR = 0x55 constant IFT_COFFEE (line 500) | IFT_COFFEE = 0x84 constant IFT_COMPOSITELINK (line 501) | IFT_COMPOSITELINK = 0x9b constant IFT_DCN (line 502) | IFT_DCN = 0x8d constant IFT_DIGITALPOWERLINE (line 503) | IFT_DIGITALPOWERLINE = 0x8a constant IFT_DIGITALWRAPPEROVERHEADCHANNEL (line 504) | IFT_DIGITALWRAPPEROVERHEADCHANNEL = 0xba constant IFT_DLSW (line 505) | IFT_DLSW = 0x4a constant IFT_DOCSCABLEDOWNSTREAM (line 506) | IFT_DOCSCABLEDOWNSTREAM = 0x80 constant IFT_DOCSCABLEMACLAYER (line 507) | IFT_DOCSCABLEMACLAYER = 0x7f constant IFT_DOCSCABLEUPSTREAM (line 508) | IFT_DOCSCABLEUPSTREAM = 0x81 constant IFT_DOCSCABLEUPSTREAMCHANNEL (line 509) | IFT_DOCSCABLEUPSTREAMCHANNEL = 0xcd constant IFT_DS0 (line 510) | IFT_DS0 = 0x51 constant IFT_DS0BUNDLE (line 511) | IFT_DS0BUNDLE = 0x52 constant IFT_DS1FDL (line 512) | IFT_DS1FDL = 0xaa constant IFT_DS3 (line 513) | IFT_DS3 = 0x1e constant IFT_DTM (line 514) | IFT_DTM = 0x8c constant IFT_DUMMY (line 515) | IFT_DUMMY = 0xf1 constant IFT_DVBASILN (line 516) | IFT_DVBASILN = 0xac constant IFT_DVBASIOUT (line 517) | IFT_DVBASIOUT = 0xad constant IFT_DVBRCCDOWNSTREAM (line 518) | IFT_DVBRCCDOWNSTREAM = 0x93 constant IFT_DVBRCCMACLAYER (line 519) | IFT_DVBRCCMACLAYER = 0x92 constant IFT_DVBRCCUPSTREAM (line 520) | IFT_DVBRCCUPSTREAM = 0x94 constant IFT_ECONET (line 521) | IFT_ECONET = 0xce constant IFT_ENC (line 522) | IFT_ENC = 0xf4 constant IFT_EON (line 523) | IFT_EON = 0x19 constant IFT_EPLRS (line 524) | IFT_EPLRS = 0x57 constant IFT_ESCON (line 525) | IFT_ESCON = 0x49 constant IFT_ETHER (line 526) | IFT_ETHER = 0x6 constant IFT_FAITH (line 527) | IFT_FAITH = 0xf3 constant IFT_FAST (line 528) | IFT_FAST = 0x7d constant IFT_FASTETHER (line 529) | IFT_FASTETHER = 0x3e constant IFT_FASTETHERFX (line 530) | IFT_FASTETHERFX = 0x45 constant IFT_FDDI (line 531) | IFT_FDDI = 0xf constant IFT_FIBRECHANNEL (line 532) | IFT_FIBRECHANNEL = 0x38 constant IFT_FRAMERELAYINTERCONNECT (line 533) | IFT_FRAMERELAYINTERCONNECT = 0x3a constant IFT_FRAMERELAYMPI (line 534) | IFT_FRAMERELAYMPI = 0x5c constant IFT_FRDLCIENDPT (line 535) | IFT_FRDLCIENDPT = 0xc1 constant IFT_FRELAY (line 536) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 537) | IFT_FRELAYDCE = 0x2c constant IFT_FRF16MFRBUNDLE (line 538) | IFT_FRF16MFRBUNDLE = 0xa3 constant IFT_FRFORWARD (line 539) | IFT_FRFORWARD = 0x9e constant IFT_G703AT2MB (line 540) | IFT_G703AT2MB = 0x43 constant IFT_G703AT64K (line 541) | IFT_G703AT64K = 0x42 constant IFT_GIF (line 542) | IFT_GIF = 0xf0 constant IFT_GIGABITETHERNET (line 543) | IFT_GIGABITETHERNET = 0x75 constant IFT_GR303IDT (line 544) | IFT_GR303IDT = 0xb2 constant IFT_GR303RDT (line 545) | IFT_GR303RDT = 0xb1 constant IFT_H323GATEKEEPER (line 546) | IFT_H323GATEKEEPER = 0xa4 constant IFT_H323PROXY (line 547) | IFT_H323PROXY = 0xa5 constant IFT_HDH1822 (line 548) | IFT_HDH1822 = 0x3 constant IFT_HDLC (line 549) | IFT_HDLC = 0x76 constant IFT_HDSL2 (line 550) | IFT_HDSL2 = 0xa8 constant IFT_HIPERLAN2 (line 551) | IFT_HIPERLAN2 = 0xb7 constant IFT_HIPPI (line 552) | IFT_HIPPI = 0x2f constant IFT_HIPPIINTERFACE (line 553) | IFT_HIPPIINTERFACE = 0x39 constant IFT_HOSTPAD (line 554) | IFT_HOSTPAD = 0x5a constant IFT_HSSI (line 555) | IFT_HSSI = 0x2e constant IFT_HY (line 556) | IFT_HY = 0xe constant IFT_IBM370PARCHAN (line 557) | IFT_IBM370PARCHAN = 0x48 constant IFT_IDSL (line 558) | IFT_IDSL = 0x9a constant IFT_IEEE1394 (line 559) | IFT_IEEE1394 = 0x90 constant IFT_IEEE80211 (line 560) | IFT_IEEE80211 = 0x47 constant IFT_IEEE80212 (line 561) | IFT_IEEE80212 = 0x37 constant IFT_IEEE8023ADLAG (line 562) | IFT_IEEE8023ADLAG = 0xa1 constant IFT_IFGSN (line 563) | IFT_IFGSN = 0x91 constant IFT_IMT (line 564) | IFT_IMT = 0xbe constant IFT_INFINIBAND (line 565) | IFT_INFINIBAND = 0xc7 constant IFT_INTERLEAVE (line 566) | IFT_INTERLEAVE = 0x7c constant IFT_IP (line 567) | IFT_IP = 0x7e constant IFT_IPFORWARD (line 568) | IFT_IPFORWARD = 0x8e constant IFT_IPOVERATM (line 569) | IFT_IPOVERATM = 0x72 constant IFT_IPOVERCDLC (line 570) | IFT_IPOVERCDLC = 0x6d constant IFT_IPOVERCLAW (line 571) | IFT_IPOVERCLAW = 0x6e constant IFT_IPSWITCH (line 572) | IFT_IPSWITCH = 0x4e constant IFT_ISDN (line 573) | IFT_ISDN = 0x3f constant IFT_ISDNBASIC (line 574) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 575) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISDNS (line 576) | IFT_ISDNS = 0x4b constant IFT_ISDNU (line 577) | IFT_ISDNU = 0x4c constant IFT_ISO88022LLC (line 578) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 579) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 580) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 581) | IFT_ISO88025 = 0x9 constant IFT_ISO88025CRFPINT (line 582) | IFT_ISO88025CRFPINT = 0x62 constant IFT_ISO88025DTR (line 583) | IFT_ISO88025DTR = 0x56 constant IFT_ISO88025FIBER (line 584) | IFT_ISO88025FIBER = 0x73 constant IFT_ISO88026 (line 585) | IFT_ISO88026 = 0xa constant IFT_ISUP (line 586) | IFT_ISUP = 0xb3 constant IFT_L2VLAN (line 587) | IFT_L2VLAN = 0x87 constant IFT_L3IPVLAN (line 588) | IFT_L3IPVLAN = 0x88 constant IFT_L3IPXVLAN (line 589) | IFT_L3IPXVLAN = 0x89 constant IFT_LAPB (line 590) | IFT_LAPB = 0x10 constant IFT_LAPD (line 591) | IFT_LAPD = 0x4d constant IFT_LAPF (line 592) | IFT_LAPF = 0x77 constant IFT_LINEGROUP (line 593) | IFT_LINEGROUP = 0xd2 constant IFT_LOCALTALK (line 594) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 595) | IFT_LOOP = 0x18 constant IFT_MEDIAMAILOVERIP (line 596) | IFT_MEDIAMAILOVERIP = 0x8b constant IFT_MFSIGLINK (line 597) | IFT_MFSIGLINK = 0xa7 constant IFT_MIOX25 (line 598) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 599) | IFT_MODEM = 0x30 constant IFT_MPC (line 600) | IFT_MPC = 0x71 constant IFT_MPLS (line 601) | IFT_MPLS = 0xa6 constant IFT_MPLSTUNNEL (line 602) | IFT_MPLSTUNNEL = 0x96 constant IFT_MSDSL (line 603) | IFT_MSDSL = 0x8f constant IFT_MVL (line 604) | IFT_MVL = 0xbf constant IFT_MYRINET (line 605) | IFT_MYRINET = 0x63 constant IFT_NFAS (line 606) | IFT_NFAS = 0xaf constant IFT_NSIP (line 607) | IFT_NSIP = 0x1b constant IFT_OPTICALCHANNEL (line 608) | IFT_OPTICALCHANNEL = 0xc3 constant IFT_OPTICALTRANSPORT (line 609) | IFT_OPTICALTRANSPORT = 0xc4 constant IFT_OTHER (line 610) | IFT_OTHER = 0x1 constant IFT_P10 (line 611) | IFT_P10 = 0xc constant IFT_P80 (line 612) | IFT_P80 = 0xd constant IFT_PARA (line 613) | IFT_PARA = 0x22 constant IFT_PFLOG (line 614) | IFT_PFLOG = 0xf5 constant IFT_PFLOW (line 615) | IFT_PFLOW = 0xf9 constant IFT_PFSYNC (line 616) | IFT_PFSYNC = 0xf6 constant IFT_PLC (line 617) | IFT_PLC = 0xae constant IFT_PON155 (line 618) | IFT_PON155 = 0xcf constant IFT_PON622 (line 619) | IFT_PON622 = 0xd0 constant IFT_POS (line 620) | IFT_POS = 0xab constant IFT_PPP (line 621) | IFT_PPP = 0x17 constant IFT_PPPMULTILINKBUNDLE (line 622) | IFT_PPPMULTILINKBUNDLE = 0x6c constant IFT_PROPATM (line 623) | IFT_PROPATM = 0xc5 constant IFT_PROPBWAP2MP (line 624) | IFT_PROPBWAP2MP = 0xb8 constant IFT_PROPCNLS (line 625) | IFT_PROPCNLS = 0x59 constant IFT_PROPDOCSWIRELESSDOWNSTREAM (line 626) | IFT_PROPDOCSWIRELESSDOWNSTREAM = 0xb5 constant IFT_PROPDOCSWIRELESSMACLAYER (line 627) | IFT_PROPDOCSWIRELESSMACLAYER = 0xb4 constant IFT_PROPDOCSWIRELESSUPSTREAM (line 628) | IFT_PROPDOCSWIRELESSUPSTREAM = 0xb6 constant IFT_PROPMUX (line 629) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 630) | IFT_PROPVIRTUAL = 0x35 constant IFT_PROPWIRELESSP2P (line 631) | IFT_PROPWIRELESSP2P = 0x9d constant IFT_PTPSERIAL (line 632) | IFT_PTPSERIAL = 0x16 constant IFT_PVC (line 633) | IFT_PVC = 0xf2 constant IFT_Q2931 (line 634) | IFT_Q2931 = 0xc9 constant IFT_QLLC (line 635) | IFT_QLLC = 0x44 constant IFT_RADIOMAC (line 636) | IFT_RADIOMAC = 0xbc constant IFT_RADSL (line 637) | IFT_RADSL = 0x5f constant IFT_REACHDSL (line 638) | IFT_REACHDSL = 0xc0 constant IFT_RFC1483 (line 639) | IFT_RFC1483 = 0x9f constant IFT_RS232 (line 640) | IFT_RS232 = 0x21 constant IFT_RSRB (line 641) | IFT_RSRB = 0x4f constant IFT_SDLC (line 642) | IFT_SDLC = 0x11 constant IFT_SDSL (line 643) | IFT_SDSL = 0x60 constant IFT_SHDSL (line 644) | IFT_SHDSL = 0xa9 constant IFT_SIP (line 645) | IFT_SIP = 0x1f constant IFT_SIPSIG (line 646) | IFT_SIPSIG = 0xcc constant IFT_SIPTG (line 647) | IFT_SIPTG = 0xcb constant IFT_SLIP (line 648) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 649) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 650) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 651) | IFT_SONET = 0x27 constant IFT_SONETOVERHEADCHANNEL (line 652) | IFT_SONETOVERHEADCHANNEL = 0xb9 constant IFT_SONETPATH (line 653) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 654) | IFT_SONETVT = 0x33 constant IFT_SRP (line 655) | IFT_SRP = 0x97 constant IFT_SS7SIGLINK (line 656) | IFT_SS7SIGLINK = 0x9c constant IFT_STACKTOSTACK (line 657) | IFT_STACKTOSTACK = 0x6f constant IFT_STARLAN (line 658) | IFT_STARLAN = 0xb constant IFT_T1 (line 659) | IFT_T1 = 0x12 constant IFT_TDLC (line 660) | IFT_TDLC = 0x74 constant IFT_TELINK (line 661) | IFT_TELINK = 0xc8 constant IFT_TERMPAD (line 662) | IFT_TERMPAD = 0x5b constant IFT_TR008 (line 663) | IFT_TR008 = 0xb0 constant IFT_TRANSPHDLC (line 664) | IFT_TRANSPHDLC = 0x7b constant IFT_TUNNEL (line 665) | IFT_TUNNEL = 0x83 constant IFT_ULTRA (line 666) | IFT_ULTRA = 0x1d constant IFT_USB (line 667) | IFT_USB = 0xa0 constant IFT_V11 (line 668) | IFT_V11 = 0x40 constant IFT_V35 (line 669) | IFT_V35 = 0x2d constant IFT_V36 (line 670) | IFT_V36 = 0x41 constant IFT_V37 (line 671) | IFT_V37 = 0x78 constant IFT_VDSL (line 672) | IFT_VDSL = 0x61 constant IFT_VIRTUALIPADDRESS (line 673) | IFT_VIRTUALIPADDRESS = 0x70 constant IFT_VIRTUALTG (line 674) | IFT_VIRTUALTG = 0xca constant IFT_VOICEDID (line 675) | IFT_VOICEDID = 0xd5 constant IFT_VOICEEM (line 676) | IFT_VOICEEM = 0x64 constant IFT_VOICEEMFGD (line 677) | IFT_VOICEEMFGD = 0xd3 constant IFT_VOICEENCAP (line 678) | IFT_VOICEENCAP = 0x67 constant IFT_VOICEFGDEANA (line 679) | IFT_VOICEFGDEANA = 0xd4 constant IFT_VOICEFXO (line 680) | IFT_VOICEFXO = 0x65 constant IFT_VOICEFXS (line 681) | IFT_VOICEFXS = 0x66 constant IFT_VOICEOVERATM (line 682) | IFT_VOICEOVERATM = 0x98 constant IFT_VOICEOVERCABLE (line 683) | IFT_VOICEOVERCABLE = 0xc6 constant IFT_VOICEOVERFRAMERELAY (line 684) | IFT_VOICEOVERFRAMERELAY = 0x99 constant IFT_VOICEOVERIP (line 685) | IFT_VOICEOVERIP = 0x68 constant IFT_X213 (line 686) | IFT_X213 = 0x5d constant IFT_X25 (line 687) | IFT_X25 = 0x5 constant IFT_X25DDN (line 688) | IFT_X25DDN = 0x4 constant IFT_X25HUNTGROUP (line 689) | IFT_X25HUNTGROUP = 0x7a constant IFT_X25MLP (line 690) | IFT_X25MLP = 0x79 constant IFT_X25PLE (line 691) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 692) | IFT_XETHER = 0x1a constant IGNBRK (line 693) | IGNBRK = 0x1 constant IGNCR (line 694) | IGNCR = 0x80 constant IGNPAR (line 695) | IGNPAR = 0x4 constant IMAXBEL (line 696) | IMAXBEL = 0x2000 constant INLCR (line 697) | INLCR = 0x40 constant INPCK (line 698) | INPCK = 0x10 constant IN_CLASSA_HOST (line 699) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 700) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 701) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 702) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 703) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 704) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 705) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 706) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 707) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 708) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 709) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 710) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 711) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 712) | IN_CLASSD_NSHIFT = 0x1c constant IN_LOOPBACKNET (line 713) | IN_LOOPBACKNET = 0x7f constant IN_RFC3021_HOST (line 714) | IN_RFC3021_HOST = 0x1 constant IN_RFC3021_NET (line 715) | IN_RFC3021_NET = 0xfffffffe constant IN_RFC3021_NSHIFT (line 716) | IN_RFC3021_NSHIFT = 0x1f constant IPPROTO_AH (line 717) | IPPROTO_AH = 0x33 constant IPPROTO_CARP (line 718) | IPPROTO_CARP = 0x70 constant IPPROTO_DIVERT (line 719) | IPPROTO_DIVERT = 0x102 constant IPPROTO_DIVERT_INIT (line 720) | IPPROTO_DIVERT_INIT = 0x2 constant IPPROTO_DIVERT_RESP (line 721) | IPPROTO_DIVERT_RESP = 0x1 constant IPPROTO_DONE (line 722) | IPPROTO_DONE = 0x101 constant IPPROTO_DSTOPTS (line 723) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 724) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 725) | IPPROTO_ENCAP = 0x62 constant IPPROTO_EON (line 726) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 727) | IPPROTO_ESP = 0x32 constant IPPROTO_ETHERIP (line 728) | IPPROTO_ETHERIP = 0x61 constant IPPROTO_FRAGMENT (line 729) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 730) | IPPROTO_GGP = 0x3 constant IPPROTO_GRE (line 731) | IPPROTO_GRE = 0x2f constant IPPROTO_HOPOPTS (line 732) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 733) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 734) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 735) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 736) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 737) | IPPROTO_IP = 0x0 constant IPPROTO_IPCOMP (line 738) | IPPROTO_IPCOMP = 0x6c constant IPPROTO_IPIP (line 739) | IPPROTO_IPIP = 0x4 constant IPPROTO_IPV4 (line 740) | IPPROTO_IPV4 = 0x4 constant IPPROTO_IPV6 (line 741) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 742) | IPPROTO_MAX = 0x100 constant IPPROTO_MAXID (line 743) | IPPROTO_MAXID = 0x103 constant IPPROTO_MOBILE (line 744) | IPPROTO_MOBILE = 0x37 constant IPPROTO_MPLS (line 745) | IPPROTO_MPLS = 0x89 constant IPPROTO_NONE (line 746) | IPPROTO_NONE = 0x3b constant IPPROTO_PFSYNC (line 747) | IPPROTO_PFSYNC = 0xf0 constant IPPROTO_PIM (line 748) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 749) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 750) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 751) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 752) | IPPROTO_RSVP = 0x2e constant IPPROTO_TCP (line 753) | IPPROTO_TCP = 0x6 constant IPPROTO_TP (line 754) | IPPROTO_TP = 0x1d constant IPPROTO_UDP (line 755) | IPPROTO_UDP = 0x11 constant IPV6_AUTH_LEVEL (line 756) | IPV6_AUTH_LEVEL = 0x35 constant IPV6_AUTOFLOWLABEL (line 757) | IPV6_AUTOFLOWLABEL = 0x3b constant IPV6_CHECKSUM (line 758) | IPV6_CHECKSUM = 0x1a constant IPV6_DEFAULT_MULTICAST_HOPS (line 759) | IPV6_DEFAULT_MULTICAST_HOPS = 0x1 constant IPV6_DEFAULT_MULTICAST_LOOP (line 760) | IPV6_DEFAULT_MULTICAST_LOOP = 0x1 constant IPV6_DEFHLIM (line 761) | IPV6_DEFHLIM = 0x40 constant IPV6_DONTFRAG (line 762) | IPV6_DONTFRAG = 0x3e constant IPV6_DSTOPTS (line 763) | IPV6_DSTOPTS = 0x32 constant IPV6_ESP_NETWORK_LEVEL (line 764) | IPV6_ESP_NETWORK_LEVEL = 0x37 constant IPV6_ESP_TRANS_LEVEL (line 765) | IPV6_ESP_TRANS_LEVEL = 0x36 constant IPV6_FAITH (line 766) | IPV6_FAITH = 0x1d constant IPV6_FLOWINFO_MASK (line 767) | IPV6_FLOWINFO_MASK = 0xffffff0f constant IPV6_FLOWLABEL_MASK (line 768) | IPV6_FLOWLABEL_MASK = 0xffff0f00 constant IPV6_FRAGTTL (line 769) | IPV6_FRAGTTL = 0x78 constant IPV6_HLIMDEC (line 770) | IPV6_HLIMDEC = 0x1 constant IPV6_HOPLIMIT (line 771) | IPV6_HOPLIMIT = 0x2f constant IPV6_HOPOPTS (line 772) | IPV6_HOPOPTS = 0x31 constant IPV6_IPCOMP_LEVEL (line 773) | IPV6_IPCOMP_LEVEL = 0x3c constant IPV6_JOIN_GROUP (line 774) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 775) | IPV6_LEAVE_GROUP = 0xd constant IPV6_MAXHLIM (line 776) | IPV6_MAXHLIM = 0xff constant IPV6_MAXPACKET (line 777) | IPV6_MAXPACKET = 0xffff constant IPV6_MMTU (line 778) | IPV6_MMTU = 0x500 constant IPV6_MULTICAST_HOPS (line 779) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_IF (line 780) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_LOOP (line 781) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_NEXTHOP (line 782) | IPV6_NEXTHOP = 0x30 constant IPV6_OPTIONS (line 783) | IPV6_OPTIONS = 0x1 constant IPV6_PATHMTU (line 784) | IPV6_PATHMTU = 0x2c constant IPV6_PIPEX (line 785) | IPV6_PIPEX = 0x3f constant IPV6_PKTINFO (line 786) | IPV6_PKTINFO = 0x2e constant IPV6_PORTRANGE (line 787) | IPV6_PORTRANGE = 0xe constant IPV6_PORTRANGE_DEFAULT (line 788) | IPV6_PORTRANGE_DEFAULT = 0x0 constant IPV6_PORTRANGE_HIGH (line 789) | IPV6_PORTRANGE_HIGH = 0x1 constant IPV6_PORTRANGE_LOW (line 790) | IPV6_PORTRANGE_LOW = 0x2 constant IPV6_RECVDSTOPTS (line 791) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVDSTPORT (line 792) | IPV6_RECVDSTPORT = 0x40 constant IPV6_RECVHOPLIMIT (line 793) | IPV6_RECVHOPLIMIT = 0x25 constant IPV6_RECVHOPOPTS (line 794) | IPV6_RECVHOPOPTS = 0x27 constant IPV6_RECVPATHMTU (line 795) | IPV6_RECVPATHMTU = 0x2b constant IPV6_RECVPKTINFO (line 796) | IPV6_RECVPKTINFO = 0x24 constant IPV6_RECVRTHDR (line 797) | IPV6_RECVRTHDR = 0x26 constant IPV6_RECVTCLASS (line 798) | IPV6_RECVTCLASS = 0x39 constant IPV6_RTABLE (line 799) | IPV6_RTABLE = 0x1021 constant IPV6_RTHDR (line 800) | IPV6_RTHDR = 0x33 constant IPV6_RTHDRDSTOPTS (line 801) | IPV6_RTHDRDSTOPTS = 0x23 constant IPV6_RTHDR_LOOSE (line 802) | IPV6_RTHDR_LOOSE = 0x0 constant IPV6_RTHDR_STRICT (line 803) | IPV6_RTHDR_STRICT = 0x1 constant IPV6_RTHDR_TYPE_0 (line 804) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SOCKOPT_RESERVED1 (line 805) | IPV6_SOCKOPT_RESERVED1 = 0x3 constant IPV6_TCLASS (line 806) | IPV6_TCLASS = 0x3d constant IPV6_UNICAST_HOPS (line 807) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_USE_MIN_MTU (line 808) | IPV6_USE_MIN_MTU = 0x2a constant IPV6_V6ONLY (line 809) | IPV6_V6ONLY = 0x1b constant IPV6_VERSION (line 810) | IPV6_VERSION = 0x60 constant IPV6_VERSION_MASK (line 811) | IPV6_VERSION_MASK = 0xf0 constant IP_ADD_MEMBERSHIP (line 812) | IP_ADD_MEMBERSHIP = 0xc constant IP_AUTH_LEVEL (line 813) | IP_AUTH_LEVEL = 0x14 constant IP_DEFAULT_MULTICAST_LOOP (line 814) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 815) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 816) | IP_DF = 0x4000 constant IP_DIVERTFL (line 817) | IP_DIVERTFL = 0x1022 constant IP_DROP_MEMBERSHIP (line 818) | IP_DROP_MEMBERSHIP = 0xd constant IP_ESP_NETWORK_LEVEL (line 819) | IP_ESP_NETWORK_LEVEL = 0x16 constant IP_ESP_TRANS_LEVEL (line 820) | IP_ESP_TRANS_LEVEL = 0x15 constant IP_HDRINCL (line 821) | IP_HDRINCL = 0x2 constant IP_IPCOMP_LEVEL (line 822) | IP_IPCOMP_LEVEL = 0x1d constant IP_IPSECFLOWINFO (line 823) | IP_IPSECFLOWINFO = 0x24 constant IP_IPSEC_LOCAL_AUTH (line 824) | IP_IPSEC_LOCAL_AUTH = 0x1b constant IP_IPSEC_LOCAL_CRED (line 825) | IP_IPSEC_LOCAL_CRED = 0x19 constant IP_IPSEC_LOCAL_ID (line 826) | IP_IPSEC_LOCAL_ID = 0x17 constant IP_IPSEC_REMOTE_AUTH (line 827) | IP_IPSEC_REMOTE_AUTH = 0x1c constant IP_IPSEC_REMOTE_CRED (line 828) | IP_IPSEC_REMOTE_CRED = 0x1a constant IP_IPSEC_REMOTE_ID (line 829) | IP_IPSEC_REMOTE_ID = 0x18 constant IP_MAXPACKET (line 830) | IP_MAXPACKET = 0xffff constant IP_MAX_MEMBERSHIPS (line 831) | IP_MAX_MEMBERSHIPS = 0xfff constant IP_MF (line 832) | IP_MF = 0x2000 constant IP_MINTTL (line 833) | IP_MINTTL = 0x20 constant IP_MIN_MEMBERSHIPS (line 834) | IP_MIN_MEMBERSHIPS = 0xf constant IP_MSS (line 835) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 836) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_LOOP (line 837) | IP_MULTICAST_LOOP = 0xb constant IP_MULTICAST_TTL (line 838) | IP_MULTICAST_TTL = 0xa constant IP_OFFMASK (line 839) | IP_OFFMASK = 0x1fff constant IP_OPTIONS (line 840) | IP_OPTIONS = 0x1 constant IP_PIPEX (line 841) | IP_PIPEX = 0x22 constant IP_PORTRANGE (line 842) | IP_PORTRANGE = 0x13 constant IP_PORTRANGE_DEFAULT (line 843) | IP_PORTRANGE_DEFAULT = 0x0 constant IP_PORTRANGE_HIGH (line 844) | IP_PORTRANGE_HIGH = 0x1 constant IP_PORTRANGE_LOW (line 845) | IP_PORTRANGE_LOW = 0x2 constant IP_RECVDSTADDR (line 846) | IP_RECVDSTADDR = 0x7 constant IP_RECVDSTPORT (line 847) | IP_RECVDSTPORT = 0x21 constant IP_RECVIF (line 848) | IP_RECVIF = 0x1e constant IP_RECVOPTS (line 849) | IP_RECVOPTS = 0x5 constant IP_RECVRETOPTS (line 850) | IP_RECVRETOPTS = 0x6 constant IP_RECVRTABLE (line 851) | IP_RECVRTABLE = 0x23 constant IP_RECVTTL (line 852) | IP_RECVTTL = 0x1f constant IP_RETOPTS (line 853) | IP_RETOPTS = 0x8 constant IP_RF (line 854) | IP_RF = 0x8000 constant IP_RTABLE (line 855) | IP_RTABLE = 0x1021 constant IP_TOS (line 856) | IP_TOS = 0x3 constant IP_TTL (line 857) | IP_TTL = 0x4 constant ISIG (line 858) | ISIG = 0x80 constant ISTRIP (line 859) | ISTRIP = 0x20 constant IXANY (line 860) | IXANY = 0x800 constant IXOFF (line 861) | IXOFF = 0x400 constant IXON (line 862) | IXON = 0x200 constant LCNT_OVERLOAD_FLUSH (line 863) | LCNT_OVERLOAD_FLUSH = 0x6 constant LOCK_EX (line 864) | LOCK_EX = 0x2 constant LOCK_NB (line 865) | LOCK_NB = 0x4 constant LOCK_SH (line 866) | LOCK_SH = 0x1 constant LOCK_UN (line 867) | LOCK_UN = 0x8 constant MADV_DONTNEED (line 868) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 869) | MADV_FREE = 0x6 constant MADV_NORMAL (line 870) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 871) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 872) | MADV_SEQUENTIAL = 0x2 constant MADV_SPACEAVAIL (line 873) | MADV_SPACEAVAIL = 0x5 constant MADV_WILLNEED (line 874) | MADV_WILLNEED = 0x3 constant MAP_ANON (line 875) | MAP_ANON = 0x1000 constant MAP_COPY (line 876) | MAP_COPY = 0x4 constant MAP_FILE (line 877) | MAP_FILE = 0x0 constant MAP_FIXED (line 878) | MAP_FIXED = 0x10 constant MAP_FLAGMASK (line 879) | MAP_FLAGMASK = 0x1ff7 constant MAP_HASSEMAPHORE (line 880) | MAP_HASSEMAPHORE = 0x200 constant MAP_INHERIT (line 881) | MAP_INHERIT = 0x80 constant MAP_INHERIT_COPY (line 882) | MAP_INHERIT_COPY = 0x1 constant MAP_INHERIT_DONATE_COPY (line 883) | MAP_INHERIT_DONATE_COPY = 0x3 constant MAP_INHERIT_NONE (line 884) | MAP_INHERIT_NONE = 0x2 constant MAP_INHERIT_SHARE (line 885) | MAP_INHERIT_SHARE = 0x0 constant MAP_NOEXTEND (line 886) | MAP_NOEXTEND = 0x100 constant MAP_NORESERVE (line 887) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 888) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 889) | MAP_RENAME = 0x20 constant MAP_SHARED (line 890) | MAP_SHARED = 0x1 constant MAP_TRYFIXED (line 891) | MAP_TRYFIXED = 0x400 constant MCL_CURRENT (line 892) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 893) | MCL_FUTURE = 0x2 constant MSG_BCAST (line 894) | MSG_BCAST = 0x100 constant MSG_CTRUNC (line 895) | MSG_CTRUNC = 0x20 constant MSG_DONTROUTE (line 896) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 897) | MSG_DONTWAIT = 0x80 constant MSG_EOR (line 898) | MSG_EOR = 0x8 constant MSG_MCAST (line 899) | MSG_MCAST = 0x200 constant MSG_NOSIGNAL (line 900) | MSG_NOSIGNAL = 0x400 constant MSG_OOB (line 901) | MSG_OOB = 0x1 constant MSG_PEEK (line 902) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 903) | MSG_TRUNC = 0x10 constant MSG_WAITALL (line 904) | MSG_WAITALL = 0x40 constant MS_ASYNC (line 905) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 906) | MS_INVALIDATE = 0x4 constant MS_SYNC (line 907) | MS_SYNC = 0x2 constant NAME_MAX (line 908) | NAME_MAX = 0xff constant NET_RT_DUMP (line 909) | NET_RT_DUMP = 0x1 constant NET_RT_FLAGS (line 910) | NET_RT_FLAGS = 0x2 constant NET_RT_IFLIST (line 911) | NET_RT_IFLIST = 0x3 constant NET_RT_MAXID (line 912) | NET_RT_MAXID = 0x6 constant NET_RT_STATS (line 913) | NET_RT_STATS = 0x4 constant NET_RT_TABLE (line 914) | NET_RT_TABLE = 0x5 constant NOFLSH (line 915) | NOFLSH = 0x80000000 constant NOTE_ATTRIB (line 916) | NOTE_ATTRIB = 0x8 constant NOTE_CHILD (line 917) | NOTE_CHILD = 0x4 constant NOTE_DELETE (line 918) | NOTE_DELETE = 0x1 constant NOTE_EOF (line 919) | NOTE_EOF = 0x2 constant NOTE_EXEC (line 920) | NOTE_EXEC = 0x20000000 constant NOTE_EXIT (line 921) | NOTE_EXIT = 0x80000000 constant NOTE_EXTEND (line 922) | NOTE_EXTEND = 0x4 constant NOTE_FORK (line 923) | NOTE_FORK = 0x40000000 constant NOTE_LINK (line 924) | NOTE_LINK = 0x10 constant NOTE_LOWAT (line 925) | NOTE_LOWAT = 0x1 constant NOTE_PCTRLMASK (line 926) | NOTE_PCTRLMASK = 0xf0000000 constant NOTE_PDATAMASK (line 927) | NOTE_PDATAMASK = 0xfffff constant NOTE_RENAME (line 928) | NOTE_RENAME = 0x20 constant NOTE_REVOKE (line 929) | NOTE_REVOKE = 0x40 constant NOTE_TRACK (line 930) | NOTE_TRACK = 0x1 constant NOTE_TRACKERR (line 931) | NOTE_TRACKERR = 0x2 constant NOTE_TRUNCATE (line 932) | NOTE_TRUNCATE = 0x80 constant NOTE_WRITE (line 933) | NOTE_WRITE = 0x2 constant OCRNL (line 934) | OCRNL = 0x10 constant ONLCR (line 935) | ONLCR = 0x2 constant ONLRET (line 936) | ONLRET = 0x80 constant ONOCR (line 937) | ONOCR = 0x40 constant ONOEOT (line 938) | ONOEOT = 0x8 constant OPOST (line 939) | OPOST = 0x1 constant O_ACCMODE (line 940) | O_ACCMODE = 0x3 constant O_APPEND (line 941) | O_APPEND = 0x8 constant O_ASYNC (line 942) | O_ASYNC = 0x40 constant O_CLOEXEC (line 943) | O_CLOEXEC = 0x10000 constant O_CREAT (line 944) | O_CREAT = 0x200 constant O_DIRECTORY (line 945) | O_DIRECTORY = 0x20000 constant O_DSYNC (line 946) | O_DSYNC = 0x80 constant O_EXCL (line 947) | O_EXCL = 0x800 constant O_EXLOCK (line 948) | O_EXLOCK = 0x20 constant O_FSYNC (line 949) | O_FSYNC = 0x80 constant O_NDELAY (line 950) | O_NDELAY = 0x4 constant O_NOCTTY (line 951) | O_NOCTTY = 0x8000 constant O_NOFOLLOW (line 952) | O_NOFOLLOW = 0x100 constant O_NONBLOCK (line 953) | O_NONBLOCK = 0x4 constant O_RDONLY (line 954) | O_RDONLY = 0x0 constant O_RDWR (line 955) | O_RDWR = 0x2 constant O_RSYNC (line 956) | O_RSYNC = 0x80 constant O_SHLOCK (line 957) | O_SHLOCK = 0x10 constant O_SYNC (line 958) | O_SYNC = 0x80 constant O_TRUNC (line 959) | O_TRUNC = 0x400 constant O_WRONLY (line 960) | O_WRONLY = 0x1 constant PARENB (line 961) | PARENB = 0x1000 constant PARMRK (line 962) | PARMRK = 0x8 constant PARODD (line 963) | PARODD = 0x2000 constant PENDIN (line 964) | PENDIN = 0x20000000 constant PF_FLUSH (line 965) | PF_FLUSH = 0x1 constant PRIO_PGRP (line 966) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 967) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 968) | PRIO_USER = 0x2 constant PROT_EXEC (line 969) | PROT_EXEC = 0x4 constant PROT_NONE (line 970) | PROT_NONE = 0x0 constant PROT_READ (line 971) | PROT_READ = 0x1 constant PROT_WRITE (line 972) | PROT_WRITE = 0x2 constant RLIMIT_CORE (line 973) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 974) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 975) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 976) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 977) | RLIMIT_NOFILE = 0x8 constant RLIMIT_STACK (line 978) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 979) | RLIM_INFINITY = 0x7fffffffffffffff constant RTAX_AUTHOR (line 980) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 981) | RTAX_BRD = 0x7 constant RTAX_DST (line 982) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 983) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 984) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 985) | RTAX_IFA = 0x5 constant RTAX_IFP (line 986) | RTAX_IFP = 0x4 constant RTAX_LABEL (line 987) | RTAX_LABEL = 0xa constant RTAX_MAX (line 988) | RTAX_MAX = 0xb constant RTAX_NETMASK (line 989) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 990) | RTAX_SRC = 0x8 constant RTAX_SRCMASK (line 991) | RTAX_SRCMASK = 0x9 constant RTA_AUTHOR (line 992) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 993) | RTA_BRD = 0x80 constant RTA_DST (line 994) | RTA_DST = 0x1 constant RTA_GATEWAY (line 995) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 996) | RTA_GENMASK = 0x8 constant RTA_IFA (line 997) | RTA_IFA = 0x20 constant RTA_IFP (line 998) | RTA_IFP = 0x10 constant RTA_LABEL (line 999) | RTA_LABEL = 0x400 constant RTA_NETMASK (line 1000) | RTA_NETMASK = 0x4 constant RTA_SRC (line 1001) | RTA_SRC = 0x100 constant RTA_SRCMASK (line 1002) | RTA_SRCMASK = 0x200 constant RTF_ANNOUNCE (line 1003) | RTF_ANNOUNCE = 0x4000 constant RTF_BLACKHOLE (line 1004) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONED (line 1005) | RTF_CLONED = 0x10000 constant RTF_CLONING (line 1006) | RTF_CLONING = 0x100 constant RTF_DONE (line 1007) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 1008) | RTF_DYNAMIC = 0x10 constant RTF_FMASK (line 1009) | RTF_FMASK = 0x10f808 constant RTF_GATEWAY (line 1010) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 1011) | RTF_HOST = 0x4 constant RTF_LLINFO (line 1012) | RTF_LLINFO = 0x400 constant RTF_MASK (line 1013) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 1014) | RTF_MODIFIED = 0x20 constant RTF_MPATH (line 1015) | RTF_MPATH = 0x40000 constant RTF_MPLS (line 1016) | RTF_MPLS = 0x100000 constant RTF_PERMANENT_ARP (line 1017) | RTF_PERMANENT_ARP = 0x2000 constant RTF_PROTO1 (line 1018) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 1019) | RTF_PROTO2 = 0x4000 constant RTF_PROTO3 (line 1020) | RTF_PROTO3 = 0x2000 constant RTF_REJECT (line 1021) | RTF_REJECT = 0x8 constant RTF_SOURCE (line 1022) | RTF_SOURCE = 0x20000 constant RTF_STATIC (line 1023) | RTF_STATIC = 0x800 constant RTF_TUNNEL (line 1024) | RTF_TUNNEL = 0x100000 constant RTF_UP (line 1025) | RTF_UP = 0x1 constant RTF_USETRAILERS (line 1026) | RTF_USETRAILERS = 0x8000 constant RTF_XRESOLVE (line 1027) | RTF_XRESOLVE = 0x200 constant RTM_ADD (line 1028) | RTM_ADD = 0x1 constant RTM_CHANGE (line 1029) | RTM_CHANGE = 0x3 constant RTM_DELADDR (line 1030) | RTM_DELADDR = 0xd constant RTM_DELETE (line 1031) | RTM_DELETE = 0x2 constant RTM_DESYNC (line 1032) | RTM_DESYNC = 0x10 constant RTM_GET (line 1033) | RTM_GET = 0x4 constant RTM_IFANNOUNCE (line 1034) | RTM_IFANNOUNCE = 0xf constant RTM_IFINFO (line 1035) | RTM_IFINFO = 0xe constant RTM_LOCK (line 1036) | RTM_LOCK = 0x8 constant RTM_LOSING (line 1037) | RTM_LOSING = 0x5 constant RTM_MAXSIZE (line 1038) | RTM_MAXSIZE = 0x800 constant RTM_MISS (line 1039) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 1040) | RTM_NEWADDR = 0xc constant RTM_REDIRECT (line 1041) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 1042) | RTM_RESOLVE = 0xb constant RTM_RTTUNIT (line 1043) | RTM_RTTUNIT = 0xf4240 constant RTM_VERSION (line 1044) | RTM_VERSION = 0x5 constant RTV_EXPIRE (line 1045) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 1046) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 1047) | RTV_MTU = 0x1 constant RTV_RPIPE (line 1048) | RTV_RPIPE = 0x8 constant RTV_RTT (line 1049) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 1050) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 1051) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 1052) | RTV_SSTHRESH = 0x20 constant RT_TABLEID_MAX (line 1053) | RT_TABLEID_MAX = 0xff constant RUSAGE_CHILDREN (line 1054) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 1055) | RUSAGE_SELF = 0x0 constant RUSAGE_THREAD (line 1056) | RUSAGE_THREAD = 0x1 constant SCM_RIGHTS (line 1057) | SCM_RIGHTS = 0x1 constant SCM_TIMESTAMP (line 1058) | SCM_TIMESTAMP = 0x4 constant SHUT_RD (line 1059) | SHUT_RD = 0x0 constant SHUT_RDWR (line 1060) | SHUT_RDWR = 0x2 constant SHUT_WR (line 1061) | SHUT_WR = 0x1 constant SIOCADDMULTI (line 1062) | SIOCADDMULTI = 0x80206931 constant SIOCAIFADDR (line 1063) | SIOCAIFADDR = 0x8040691a constant SIOCAIFGROUP (line 1064) | SIOCAIFGROUP = 0x80286987 constant SIOCALIFADDR (line 1065) | SIOCALIFADDR = 0x8218691c constant SIOCATMARK (line 1066) | SIOCATMARK = 0x40047307 constant SIOCBRDGADD (line 1067) | SIOCBRDGADD = 0x8058693c constant SIOCBRDGADDS (line 1068) | SIOCBRDGADDS = 0x80586941 constant SIOCBRDGARL (line 1069) | SIOCBRDGARL = 0x806e694d constant SIOCBRDGDADDR (line 1070) | SIOCBRDGDADDR = 0x81286947 constant SIOCBRDGDEL (line 1071) | SIOCBRDGDEL = 0x8058693d constant SIOCBRDGDELS (line 1072) | SIOCBRDGDELS = 0x80586942 constant SIOCBRDGFLUSH (line 1073) | SIOCBRDGFLUSH = 0x80586948 constant SIOCBRDGFRL (line 1074) | SIOCBRDGFRL = 0x806e694e constant SIOCBRDGGCACHE (line 1075) | SIOCBRDGGCACHE = 0xc0146941 constant SIOCBRDGGFD (line 1076) | SIOCBRDGGFD = 0xc0146952 constant SIOCBRDGGHT (line 1077) | SIOCBRDGGHT = 0xc0146951 constant SIOCBRDGGIFFLGS (line 1078) | SIOCBRDGGIFFLGS = 0xc058693e constant SIOCBRDGGMA (line 1079) | SIOCBRDGGMA = 0xc0146953 constant SIOCBRDGGPARAM (line 1080) | SIOCBRDGGPARAM = 0xc0406958 constant SIOCBRDGGPRI (line 1081) | SIOCBRDGGPRI = 0xc0146950 constant SIOCBRDGGRL (line 1082) | SIOCBRDGGRL = 0xc030694f constant SIOCBRDGGSIFS (line 1083) | SIOCBRDGGSIFS = 0xc058693c constant SIOCBRDGGTO (line 1084) | SIOCBRDGGTO = 0xc0146946 constant SIOCBRDGIFS (line 1085) | SIOCBRDGIFS = 0xc0586942 constant SIOCBRDGRTS (line 1086) | SIOCBRDGRTS = 0xc0206943 constant SIOCBRDGSADDR (line 1087) | SIOCBRDGSADDR = 0xc1286944 constant SIOCBRDGSCACHE (line 1088) | SIOCBRDGSCACHE = 0x80146940 constant SIOCBRDGSFD (line 1089) | SIOCBRDGSFD = 0x80146952 constant SIOCBRDGSHT (line 1090) | SIOCBRDGSHT = 0x80146951 constant SIOCBRDGSIFCOST (line 1091) | SIOCBRDGSIFCOST = 0x80586955 constant SIOCBRDGSIFFLGS (line 1092) | SIOCBRDGSIFFLGS = 0x8058693f constant SIOCBRDGSIFPRIO (line 1093) | SIOCBRDGSIFPRIO = 0x80586954 constant SIOCBRDGSMA (line 1094) | SIOCBRDGSMA = 0x80146953 constant SIOCBRDGSPRI (line 1095) | SIOCBRDGSPRI = 0x80146950 constant SIOCBRDGSPROTO (line 1096) | SIOCBRDGSPROTO = 0x8014695a constant SIOCBRDGSTO (line 1097) | SIOCBRDGSTO = 0x80146945 constant SIOCBRDGSTXHC (line 1098) | SIOCBRDGSTXHC = 0x80146959 constant SIOCDELMULTI (line 1099) | SIOCDELMULTI = 0x80206932 constant SIOCDIFADDR (line 1100) | SIOCDIFADDR = 0x80206919 constant SIOCDIFGROUP (line 1101) | SIOCDIFGROUP = 0x80286989 constant SIOCDIFPHYADDR (line 1102) | SIOCDIFPHYADDR = 0x80206949 constant SIOCDLIFADDR (line 1103) | SIOCDLIFADDR = 0x8218691e constant SIOCGETKALIVE (line 1104) | SIOCGETKALIVE = 0xc01869a4 constant SIOCGETLABEL (line 1105) | SIOCGETLABEL = 0x8020699a constant SIOCGETPFLOW (line 1106) | SIOCGETPFLOW = 0xc02069fe constant SIOCGETPFSYNC (line 1107) | SIOCGETPFSYNC = 0xc02069f8 constant SIOCGETSGCNT (line 1108) | SIOCGETSGCNT = 0xc0207534 constant SIOCGETVIFCNT (line 1109) | SIOCGETVIFCNT = 0xc0287533 constant SIOCGETVLAN (line 1110) | SIOCGETVLAN = 0xc0206990 constant SIOCGHIWAT (line 1111) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 1112) | SIOCGIFADDR = 0xc0206921 constant SIOCGIFASYNCMAP (line 1113) | SIOCGIFASYNCMAP = 0xc020697c constant SIOCGIFBRDADDR (line 1114) | SIOCGIFBRDADDR = 0xc0206923 constant SIOCGIFCONF (line 1115) | SIOCGIFCONF = 0xc0106924 constant SIOCGIFDATA (line 1116) | SIOCGIFDATA = 0xc020691b constant SIOCGIFDESCR (line 1117) | SIOCGIFDESCR = 0xc0206981 constant SIOCGIFDSTADDR (line 1118) | SIOCGIFDSTADDR = 0xc0206922 constant SIOCGIFFLAGS (line 1119) | SIOCGIFFLAGS = 0xc0206911 constant SIOCGIFGATTR (line 1120) | SIOCGIFGATTR = 0xc028698b constant SIOCGIFGENERIC (line 1121) | SIOCGIFGENERIC = 0xc020693a constant SIOCGIFGMEMB (line 1122) | SIOCGIFGMEMB = 0xc028698a constant SIOCGIFGROUP (line 1123) | SIOCGIFGROUP = 0xc0286988 constant SIOCGIFHARDMTU (line 1124) | SIOCGIFHARDMTU = 0xc02069a5 constant SIOCGIFMEDIA (line 1125) | SIOCGIFMEDIA = 0xc0306936 constant SIOCGIFMETRIC (line 1126) | SIOCGIFMETRIC = 0xc0206917 constant SIOCGIFMTU (line 1127) | SIOCGIFMTU = 0xc020697e constant SIOCGIFNETMASK (line 1128) | SIOCGIFNETMASK = 0xc0206925 constant SIOCGIFPDSTADDR (line 1129) | SIOCGIFPDSTADDR = 0xc0206948 constant SIOCGIFPRIORITY (line 1130) | SIOCGIFPRIORITY = 0xc020699c constant SIOCGIFPSRCADDR (line 1131) | SIOCGIFPSRCADDR = 0xc0206947 constant SIOCGIFRDOMAIN (line 1132) | SIOCGIFRDOMAIN = 0xc02069a0 constant SIOCGIFRTLABEL (line 1133) | SIOCGIFRTLABEL = 0xc0206983 constant SIOCGIFTIMESLOT (line 1134) | SIOCGIFTIMESLOT = 0xc0206986 constant SIOCGIFXFLAGS (line 1135) | SIOCGIFXFLAGS = 0xc020699e constant SIOCGLIFADDR (line 1136) | SIOCGLIFADDR = 0xc218691d constant SIOCGLIFPHYADDR (line 1137) | SIOCGLIFPHYADDR = 0xc218694b constant SIOCGLIFPHYRTABLE (line 1138) | SIOCGLIFPHYRTABLE = 0xc02069a2 constant SIOCGLIFPHYTTL (line 1139) | SIOCGLIFPHYTTL = 0xc02069a9 constant SIOCGLOWAT (line 1140) | SIOCGLOWAT = 0x40047303 constant SIOCGPGRP (line 1141) | SIOCGPGRP = 0x40047309 constant SIOCGSPPPPARAMS (line 1142) | SIOCGSPPPPARAMS = 0xc0206994 constant SIOCGVH (line 1143) | SIOCGVH = 0xc02069f6 constant SIOCGVNETID (line 1144) | SIOCGVNETID = 0xc02069a7 constant SIOCIFCREATE (line 1145) | SIOCIFCREATE = 0x8020697a constant SIOCIFDESTROY (line 1146) | SIOCIFDESTROY = 0x80206979 constant SIOCIFGCLONERS (line 1147) | SIOCIFGCLONERS = 0xc0106978 constant SIOCSETKALIVE (line 1148) | SIOCSETKALIVE = 0x801869a3 constant SIOCSETLABEL (line 1149) | SIOCSETLABEL = 0x80206999 constant SIOCSETPFLOW (line 1150) | SIOCSETPFLOW = 0x802069fd constant SIOCSETPFSYNC (line 1151) | SIOCSETPFSYNC = 0x802069f7 constant SIOCSETVLAN (line 1152) | SIOCSETVLAN = 0x8020698f constant SIOCSHIWAT (line 1153) | SIOCSHIWAT = 0x80047300 constant SIOCSIFADDR (line 1154) | SIOCSIFADDR = 0x8020690c constant SIOCSIFASYNCMAP (line 1155) | SIOCSIFASYNCMAP = 0x8020697d constant SIOCSIFBRDADDR (line 1156) | SIOCSIFBRDADDR = 0x80206913 constant SIOCSIFDESCR (line 1157) | SIOCSIFDESCR = 0x80206980 constant SIOCSIFDSTADDR (line 1158) | SIOCSIFDSTADDR = 0x8020690e constant SIOCSIFFLAGS (line 1159) | SIOCSIFFLAGS = 0x80206910 constant SIOCSIFGATTR (line 1160) | SIOCSIFGATTR = 0x8028698c constant SIOCSIFGENERIC (line 1161) | SIOCSIFGENERIC = 0x80206939 constant SIOCSIFLLADDR (line 1162) | SIOCSIFLLADDR = 0x8020691f constant SIOCSIFMEDIA (line 1163) | SIOCSIFMEDIA = 0xc0206935 constant SIOCSIFMETRIC (line 1164) | SIOCSIFMETRIC = 0x80206918 constant SIOCSIFMTU (line 1165) | SIOCSIFMTU = 0x8020697f constant SIOCSIFNETMASK (line 1166) | SIOCSIFNETMASK = 0x80206916 constant SIOCSIFPHYADDR (line 1167) | SIOCSIFPHYADDR = 0x80406946 constant SIOCSIFPRIORITY (line 1168) | SIOCSIFPRIORITY = 0x8020699b constant SIOCSIFRDOMAIN (line 1169) | SIOCSIFRDOMAIN = 0x8020699f constant SIOCSIFRTLABEL (line 1170) | SIOCSIFRTLABEL = 0x80206982 constant SIOCSIFTIMESLOT (line 1171) | SIOCSIFTIMESLOT = 0x80206985 constant SIOCSIFXFLAGS (line 1172) | SIOCSIFXFLAGS = 0x8020699d constant SIOCSLIFPHYADDR (line 1173) | SIOCSLIFPHYADDR = 0x8218694a constant SIOCSLIFPHYRTABLE (line 1174) | SIOCSLIFPHYRTABLE = 0x802069a1 constant SIOCSLIFPHYTTL (line 1175) | SIOCSLIFPHYTTL = 0x802069a8 constant SIOCSLOWAT (line 1176) | SIOCSLOWAT = 0x80047302 constant SIOCSPGRP (line 1177) | SIOCSPGRP = 0x80047308 constant SIOCSSPPPPARAMS (line 1178) | SIOCSSPPPPARAMS = 0x80206993 constant SIOCSVH (line 1179) | SIOCSVH = 0xc02069f5 constant SIOCSVNETID (line 1180) | SIOCSVNETID = 0x802069a6 constant SOCK_DGRAM (line 1181) | SOCK_DGRAM = 0x2 constant SOCK_RAW (line 1182) | SOCK_RAW = 0x3 constant SOCK_RDM (line 1183) | SOCK_RDM = 0x4 constant SOCK_SEQPACKET (line 1184) | SOCK_SEQPACKET = 0x5 constant SOCK_STREAM (line 1185) | SOCK_STREAM = 0x1 constant SOL_SOCKET (line 1186) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 1187) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 1188) | SO_ACCEPTCONN = 0x2 constant SO_BINDANY (line 1189) | SO_BINDANY = 0x1000 constant SO_BROADCAST (line 1190) | SO_BROADCAST = 0x20 constant SO_DEBUG (line 1191) | SO_DEBUG = 0x1 constant SO_DONTROUTE (line 1192) | SO_DONTROUTE = 0x10 constant SO_ERROR (line 1193) | SO_ERROR = 0x1007 constant SO_KEEPALIVE (line 1194) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 1195) | SO_LINGER = 0x80 constant SO_NETPROC (line 1196) | SO_NETPROC = 0x1020 constant SO_OOBINLINE (line 1197) | SO_OOBINLINE = 0x100 constant SO_PEERCRED (line 1198) | SO_PEERCRED = 0x1022 constant SO_RCVBUF (line 1199) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 1200) | SO_RCVLOWAT = 0x1004 constant SO_RCVTIMEO (line 1201) | SO_RCVTIMEO = 0x1006 constant SO_REUSEADDR (line 1202) | SO_REUSEADDR = 0x4 constant SO_REUSEPORT (line 1203) | SO_REUSEPORT = 0x200 constant SO_RTABLE (line 1204) | SO_RTABLE = 0x1021 constant SO_SNDBUF (line 1205) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 1206) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 1207) | SO_SNDTIMEO = 0x1005 constant SO_SPLICE (line 1208) | SO_SPLICE = 0x1023 constant SO_TIMESTAMP (line 1209) | SO_TIMESTAMP = 0x800 constant SO_TYPE (line 1210) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 1211) | SO_USELOOPBACK = 0x40 constant TCIFLUSH (line 1212) | TCIFLUSH = 0x1 constant TCIOFLUSH (line 1213) | TCIOFLUSH = 0x3 constant TCOFLUSH (line 1214) | TCOFLUSH = 0x2 constant TCP_MAXBURST (line 1215) | TCP_MAXBURST = 0x4 constant TCP_MAXSEG (line 1216) | TCP_MAXSEG = 0x2 constant TCP_MAXWIN (line 1217) | TCP_MAXWIN = 0xffff constant TCP_MAX_SACK (line 1218) | TCP_MAX_SACK = 0x3 constant TCP_MAX_WINSHIFT (line 1219) | TCP_MAX_WINSHIFT = 0xe constant TCP_MD5SIG (line 1220) | TCP_MD5SIG = 0x4 constant TCP_MSS (line 1221) | TCP_MSS = 0x200 constant TCP_NODELAY (line 1222) | TCP_NODELAY = 0x1 constant TCP_NOPUSH (line 1223) | TCP_NOPUSH = 0x10 constant TCP_NSTATES (line 1224) | TCP_NSTATES = 0xb constant TCP_SACK_ENABLE (line 1225) | TCP_SACK_ENABLE = 0x8 constant TCSAFLUSH (line 1226) | TCSAFLUSH = 0x2 constant TIOCCBRK (line 1227) | TIOCCBRK = 0x2000747a constant TIOCCDTR (line 1228) | TIOCCDTR = 0x20007478 constant TIOCCONS (line 1229) | TIOCCONS = 0x80047462 constant TIOCDRAIN (line 1230) | TIOCDRAIN = 0x2000745e constant TIOCEXCL (line 1231) | TIOCEXCL = 0x2000740d constant TIOCEXT (line 1232) | TIOCEXT = 0x80047460 constant TIOCFLAG_CLOCAL (line 1233) | TIOCFLAG_CLOCAL = 0x2 constant TIOCFLAG_CRTSCTS (line 1234) | TIOCFLAG_CRTSCTS = 0x4 constant TIOCFLAG_MDMBUF (line 1235) | TIOCFLAG_MDMBUF = 0x8 constant TIOCFLAG_PPS (line 1236) | TIOCFLAG_PPS = 0x10 constant TIOCFLAG_SOFTCAR (line 1237) | TIOCFLAG_SOFTCAR = 0x1 constant TIOCFLUSH (line 1238) | TIOCFLUSH = 0x80047410 constant TIOCGETA (line 1239) | TIOCGETA = 0x402c7413 constant TIOCGETD (line 1240) | TIOCGETD = 0x4004741a constant TIOCGFLAGS (line 1241) | TIOCGFLAGS = 0x4004745d constant TIOCGPGRP (line 1242) | TIOCGPGRP = 0x40047477 constant TIOCGSID (line 1243) | TIOCGSID = 0x40047463 constant TIOCGTSTAMP (line 1244) | TIOCGTSTAMP = 0x4010745b constant TIOCGWINSZ (line 1245) | TIOCGWINSZ = 0x40087468 constant TIOCMBIC (line 1246) | TIOCMBIC = 0x8004746b constant TIOCMBIS (line 1247) | TIOCMBIS = 0x8004746c constant TIOCMGET (line 1248) | TIOCMGET = 0x4004746a constant TIOCMODG (line 1249) | TIOCMODG = 0x4004746a constant TIOCMODS (line 1250) | TIOCMODS = 0x8004746d constant TIOCMSET (line 1251) | TIOCMSET = 0x8004746d constant TIOCM_CAR (line 1252) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1253) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1254) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1255) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1256) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1257) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1258) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1259) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1260) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1261) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1262) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1263) | TIOCNOTTY = 0x20007471 constant TIOCNXCL (line 1264) | TIOCNXCL = 0x2000740e constant TIOCOUTQ (line 1265) | TIOCOUTQ = 0x40047473 constant TIOCPKT (line 1266) | TIOCPKT = 0x80047470 constant TIOCPKT_DATA (line 1267) | TIOCPKT_DATA = 0x0 constant TIOCPKT_DOSTOP (line 1268) | TIOCPKT_DOSTOP = 0x20 constant TIOCPKT_FLUSHREAD (line 1269) | TIOCPKT_FLUSHREAD = 0x1 constant TIOCPKT_FLUSHWRITE (line 1270) | TIOCPKT_FLUSHWRITE = 0x2 constant TIOCPKT_IOCTL (line 1271) | TIOCPKT_IOCTL = 0x40 constant TIOCPKT_NOSTOP (line 1272) | TIOCPKT_NOSTOP = 0x10 constant TIOCPKT_START (line 1273) | TIOCPKT_START = 0x8 constant TIOCPKT_STOP (line 1274) | TIOCPKT_STOP = 0x4 constant TIOCREMOTE (line 1275) | TIOCREMOTE = 0x80047469 constant TIOCSBRK (line 1276) | TIOCSBRK = 0x2000747b constant TIOCSCTTY (line 1277) | TIOCSCTTY = 0x20007461 constant TIOCSDTR (line 1278) | TIOCSDTR = 0x20007479 constant TIOCSETA (line 1279) | TIOCSETA = 0x802c7414 constant TIOCSETAF (line 1280) | TIOCSETAF = 0x802c7416 constant TIOCSETAW (line 1281) | TIOCSETAW = 0x802c7415 constant TIOCSETD (line 1282) | TIOCSETD = 0x8004741b constant TIOCSFLAGS (line 1283) | TIOCSFLAGS = 0x8004745c constant TIOCSIG (line 1284) | TIOCSIG = 0x8004745f constant TIOCSPGRP (line 1285) | TIOCSPGRP = 0x80047476 constant TIOCSTART (line 1286) | TIOCSTART = 0x2000746e constant TIOCSTAT (line 1287) | TIOCSTAT = 0x80047465 constant TIOCSTI (line 1288) | TIOCSTI = 0x80017472 constant TIOCSTOP (line 1289) | TIOCSTOP = 0x2000746f constant TIOCSTSTAMP (line 1290) | TIOCSTSTAMP = 0x8008745a constant TIOCSWINSZ (line 1291) | TIOCSWINSZ = 0x80087467 constant TIOCUCNTL (line 1292) | TIOCUCNTL = 0x80047466 constant TOSTOP (line 1293) | TOSTOP = 0x400000 constant VDISCARD (line 1294) | VDISCARD = 0xf constant VDSUSP (line 1295) | VDSUSP = 0xb constant VEOF (line 1296) | VEOF = 0x0 constant VEOL (line 1297) | VEOL = 0x1 constant VEOL2 (line 1298) | VEOL2 = 0x2 constant VERASE (line 1299) | VERASE = 0x3 constant VINTR (line 1300) | VINTR = 0x8 constant VKILL (line 1301) | VKILL = 0x5 constant VLNEXT (line 1302) | VLNEXT = 0xe constant VMIN (line 1303) | VMIN = 0x10 constant VQUIT (line 1304) | VQUIT = 0x9 constant VREPRINT (line 1305) | VREPRINT = 0x6 constant VSTART (line 1306) | VSTART = 0xc constant VSTATUS (line 1307) | VSTATUS = 0x12 constant VSTOP (line 1308) | VSTOP = 0xd constant VSUSP (line 1309) | VSUSP = 0xa constant VTIME (line 1310) | VTIME = 0x11 constant VWERASE (line 1311) | VWERASE = 0x4 constant WALTSIG (line 1312) | WALTSIG = 0x4 constant WCONTINUED (line 1313) | WCONTINUED = 0x8 constant WCOREFLAG (line 1314) | WCOREFLAG = 0x80 constant WNOHANG (line 1315) | WNOHANG = 0x1 constant WSTOPPED (line 1316) | WSTOPPED = 0x7f constant WUNTRACED (line 1317) | WUNTRACED = 0x2 constant E2BIG (line 1322) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1323) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1324) | EADDRINUSE = syscall.Errno(0x30) constant EADDRNOTAVAIL (line 1325) | EADDRNOTAVAIL = syscall.Errno(0x31) constant EAFNOSUPPORT (line 1326) | EAFNOSUPPORT = syscall.Errno(0x2f) constant EAGAIN (line 1327) | EAGAIN = syscall.Errno(0x23) constant EALREADY (line 1328) | EALREADY = syscall.Errno(0x25) constant EAUTH (line 1329) | EAUTH = syscall.Errno(0x50) constant EBADF (line 1330) | EBADF = syscall.Errno(0x9) constant EBADRPC (line 1331) | EBADRPC = syscall.Errno(0x48) constant EBUSY (line 1332) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1333) | ECANCELED = syscall.Errno(0x58) constant ECHILD (line 1334) | ECHILD = syscall.Errno(0xa) constant ECONNABORTED (line 1335) | ECONNABORTED = syscall.Errno(0x35) constant ECONNREFUSED (line 1336) | ECONNREFUSED = syscall.Errno(0x3d) constant ECONNRESET (line 1337) | ECONNRESET = syscall.Errno(0x36) constant EDEADLK (line 1338) | EDEADLK = syscall.Errno(0xb) constant EDESTADDRREQ (line 1339) | EDESTADDRREQ = syscall.Errno(0x27) constant EDOM (line 1340) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1341) | EDQUOT = syscall.Errno(0x45) constant EEXIST (line 1342) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1343) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1344) | EFBIG = syscall.Errno(0x1b) constant EFTYPE (line 1345) | EFTYPE = syscall.Errno(0x4f) constant EHOSTDOWN (line 1346) | EHOSTDOWN = syscall.Errno(0x40) constant EHOSTUNREACH (line 1347) | EHOSTUNREACH = syscall.Errno(0x41) constant EIDRM (line 1348) | EIDRM = syscall.Errno(0x59) constant EILSEQ (line 1349) | EILSEQ = syscall.Errno(0x54) constant EINPROGRESS (line 1350) | EINPROGRESS = syscall.Errno(0x24) constant EINTR (line 1351) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1352) | EINVAL = syscall.Errno(0x16) constant EIO (line 1353) | EIO = syscall.Errno(0x5) constant EIPSEC (line 1354) | EIPSEC = syscall.Errno(0x52) constant EISCONN (line 1355) | EISCONN = syscall.Errno(0x38) constant EISDIR (line 1356) | EISDIR = syscall.Errno(0x15) constant ELAST (line 1357) | ELAST = syscall.Errno(0x5b) constant ELOOP (line 1358) | ELOOP = syscall.Errno(0x3e) constant EMEDIUMTYPE (line 1359) | EMEDIUMTYPE = syscall.Errno(0x56) constant EMFILE (line 1360) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1361) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1362) | EMSGSIZE = syscall.Errno(0x28) constant ENAMETOOLONG (line 1363) | ENAMETOOLONG = syscall.Errno(0x3f) constant ENEEDAUTH (line 1364) | ENEEDAUTH = syscall.Errno(0x51) constant ENETDOWN (line 1365) | ENETDOWN = syscall.Errno(0x32) constant ENETRESET (line 1366) | ENETRESET = syscall.Errno(0x34) constant ENETUNREACH (line 1367) | ENETUNREACH = syscall.Errno(0x33) constant ENFILE (line 1368) | ENFILE = syscall.Errno(0x17) constant ENOATTR (line 1369) | ENOATTR = syscall.Errno(0x53) constant ENOBUFS (line 1370) | ENOBUFS = syscall.Errno(0x37) constant ENODEV (line 1371) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1372) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1373) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1374) | ENOLCK = syscall.Errno(0x4d) constant ENOMEDIUM (line 1375) | ENOMEDIUM = syscall.Errno(0x55) constant ENOMEM (line 1376) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1377) | ENOMSG = syscall.Errno(0x5a) constant ENOPROTOOPT (line 1378) | ENOPROTOOPT = syscall.Errno(0x2a) constant ENOSPC (line 1379) | ENOSPC = syscall.Errno(0x1c) constant ENOSYS (line 1380) | ENOSYS = syscall.Errno(0x4e) constant ENOTBLK (line 1381) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1382) | ENOTCONN = syscall.Errno(0x39) constant ENOTDIR (line 1383) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1384) | ENOTEMPTY = syscall.Errno(0x42) constant ENOTSOCK (line 1385) | ENOTSOCK = syscall.Errno(0x26) constant ENOTSUP (line 1386) | ENOTSUP = syscall.Errno(0x5b) constant ENOTTY (line 1387) | ENOTTY = syscall.Errno(0x19) constant ENXIO (line 1388) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1389) | EOPNOTSUPP = syscall.Errno(0x2d) constant EOVERFLOW (line 1390) | EOVERFLOW = syscall.Errno(0x57) constant EPERM (line 1391) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1392) | EPFNOSUPPORT = syscall.Errno(0x2e) constant EPIPE (line 1393) | EPIPE = syscall.Errno(0x20) constant EPROCLIM (line 1394) | EPROCLIM = syscall.Errno(0x43) constant EPROCUNAVAIL (line 1395) | EPROCUNAVAIL = syscall.Errno(0x4c) constant EPROGMISMATCH (line 1396) | EPROGMISMATCH = syscall.Errno(0x4b) constant EPROGUNAVAIL (line 1397) | EPROGUNAVAIL = syscall.Errno(0x4a) constant EPROTONOSUPPORT (line 1398) | EPROTONOSUPPORT = syscall.Errno(0x2b) constant EPROTOTYPE (line 1399) | EPROTOTYPE = syscall.Errno(0x29) constant ERANGE (line 1400) | ERANGE = syscall.Errno(0x22) constant EREMOTE (line 1401) | EREMOTE = syscall.Errno(0x47) constant EROFS (line 1402) | EROFS = syscall.Errno(0x1e) constant ERPCMISMATCH (line 1403) | ERPCMISMATCH = syscall.Errno(0x49) constant ESHUTDOWN (line 1404) | ESHUTDOWN = syscall.Errno(0x3a) constant ESOCKTNOSUPPORT (line 1405) | ESOCKTNOSUPPORT = syscall.Errno(0x2c) constant ESPIPE (line 1406) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1407) | ESRCH = syscall.Errno(0x3) constant ESTALE (line 1408) | ESTALE = syscall.Errno(0x46) constant ETIMEDOUT (line 1409) | ETIMEDOUT = syscall.Errno(0x3c) constant ETOOMANYREFS (line 1410) | ETOOMANYREFS = syscall.Errno(0x3b) constant ETXTBSY (line 1411) | ETXTBSY = syscall.Errno(0x1a) constant EUSERS (line 1412) | EUSERS = syscall.Errno(0x44) constant EWOULDBLOCK (line 1413) | EWOULDBLOCK = syscall.Errno(0x23) constant EXDEV (line 1414) | EXDEV = syscall.Errno(0x12) constant SIGABRT (line 1419) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1420) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1421) | SIGBUS = syscall.Signal(0xa) constant SIGCHLD (line 1422) | SIGCHLD = syscall.Signal(0x14) constant SIGCONT (line 1423) | SIGCONT = syscall.Signal(0x13) constant SIGEMT (line 1424) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1425) | SIGFPE = syscall.Signal(0x8) constant SIGHUP (line 1426) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1427) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1428) | SIGINFO = syscall.Signal(0x1d) constant SIGINT (line 1429) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1430) | SIGIO = syscall.Signal(0x17) constant SIGIOT (line 1431) | SIGIOT = syscall.Signal(0x6) constant SIGKILL (line 1432) | SIGKILL = syscall.Signal(0x9) constant SIGPIPE (line 1433) | SIGPIPE = syscall.Signal(0xd) constant SIGPROF (line 1434) | SIGPROF = syscall.Signal(0x1b) constant SIGQUIT (line 1435) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1436) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1437) | SIGSTOP = syscall.Signal(0x11) constant SIGSYS (line 1438) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1439) | SIGTERM = syscall.Signal(0xf) constant SIGTHR (line 1440) | SIGTHR = syscall.Signal(0x20) constant SIGTRAP (line 1441) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1442) | SIGTSTP = syscall.Signal(0x12) constant SIGTTIN (line 1443) | SIGTTIN = syscall.Signal(0x15) constant SIGTTOU (line 1444) | SIGTTOU = syscall.Signal(0x16) constant SIGURG (line 1445) | SIGURG = syscall.Signal(0x10) constant SIGUSR1 (line 1446) | SIGUSR1 = syscall.Signal(0x1e) constant SIGUSR2 (line 1447) | SIGUSR2 = syscall.Signal(0x1f) constant SIGVTALRM (line 1448) | SIGVTALRM = syscall.Signal(0x1a) constant SIGWINCH (line 1449) | SIGWINCH = syscall.Signal(0x1c) constant SIGXCPU (line 1450) | SIGXCPU = syscall.Signal(0x18) constant SIGXFSZ (line 1451) | SIGXFSZ = syscall.Signal(0x19) FILE: vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go constant AF_802 (line 14) | AF_802 = 0x12 constant AF_APPLETALK (line 15) | AF_APPLETALK = 0x10 constant AF_CCITT (line 16) | AF_CCITT = 0xa constant AF_CHAOS (line 17) | AF_CHAOS = 0x5 constant AF_DATAKIT (line 18) | AF_DATAKIT = 0x9 constant AF_DECnet (line 19) | AF_DECnet = 0xc constant AF_DLI (line 20) | AF_DLI = 0xd constant AF_ECMA (line 21) | AF_ECMA = 0x8 constant AF_FILE (line 22) | AF_FILE = 0x1 constant AF_GOSIP (line 23) | AF_GOSIP = 0x16 constant AF_HYLINK (line 24) | AF_HYLINK = 0xf constant AF_IMPLINK (line 25) | AF_IMPLINK = 0x3 constant AF_INET (line 26) | AF_INET = 0x2 constant AF_INET6 (line 27) | AF_INET6 = 0x1a constant AF_INET_OFFLOAD (line 28) | AF_INET_OFFLOAD = 0x1e constant AF_IPX (line 29) | AF_IPX = 0x17 constant AF_KEY (line 30) | AF_KEY = 0x1b constant AF_LAT (line 31) | AF_LAT = 0xe constant AF_LINK (line 32) | AF_LINK = 0x19 constant AF_LOCAL (line 33) | AF_LOCAL = 0x1 constant AF_MAX (line 34) | AF_MAX = 0x20 constant AF_NBS (line 35) | AF_NBS = 0x7 constant AF_NCA (line 36) | AF_NCA = 0x1c constant AF_NIT (line 37) | AF_NIT = 0x11 constant AF_NS (line 38) | AF_NS = 0x6 constant AF_OSI (line 39) | AF_OSI = 0x13 constant AF_OSINET (line 40) | AF_OSINET = 0x15 constant AF_PACKET (line 41) | AF_PACKET = 0x20 constant AF_POLICY (line 42) | AF_POLICY = 0x1d constant AF_PUP (line 43) | AF_PUP = 0x4 constant AF_ROUTE (line 44) | AF_ROUTE = 0x18 constant AF_SNA (line 45) | AF_SNA = 0xb constant AF_TRILL (line 46) | AF_TRILL = 0x1f constant AF_UNIX (line 47) | AF_UNIX = 0x1 constant AF_UNSPEC (line 48) | AF_UNSPEC = 0x0 constant AF_X25 (line 49) | AF_X25 = 0x14 constant ARPHRD_ARCNET (line 50) | ARPHRD_ARCNET = 0x7 constant ARPHRD_ATM (line 51) | ARPHRD_ATM = 0x10 constant ARPHRD_AX25 (line 52) | ARPHRD_AX25 = 0x3 constant ARPHRD_CHAOS (line 53) | ARPHRD_CHAOS = 0x5 constant ARPHRD_EETHER (line 54) | ARPHRD_EETHER = 0x2 constant ARPHRD_ETHER (line 55) | ARPHRD_ETHER = 0x1 constant ARPHRD_FC (line 56) | ARPHRD_FC = 0x12 constant ARPHRD_FRAME (line 57) | ARPHRD_FRAME = 0xf constant ARPHRD_HDLC (line 58) | ARPHRD_HDLC = 0x11 constant ARPHRD_IB (line 59) | ARPHRD_IB = 0x20 constant ARPHRD_IEEE802 (line 60) | ARPHRD_IEEE802 = 0x6 constant ARPHRD_IPATM (line 61) | ARPHRD_IPATM = 0x13 constant ARPHRD_METRICOM (line 62) | ARPHRD_METRICOM = 0x17 constant ARPHRD_TUNNEL (line 63) | ARPHRD_TUNNEL = 0x1f constant B0 (line 64) | B0 = 0x0 constant B110 (line 65) | B110 = 0x3 constant B115200 (line 66) | B115200 = 0x12 constant B1200 (line 67) | B1200 = 0x9 constant B134 (line 68) | B134 = 0x4 constant B150 (line 69) | B150 = 0x5 constant B153600 (line 70) | B153600 = 0x13 constant B1800 (line 71) | B1800 = 0xa constant B19200 (line 72) | B19200 = 0xe constant B200 (line 73) | B200 = 0x6 constant B230400 (line 74) | B230400 = 0x14 constant B2400 (line 75) | B2400 = 0xb constant B300 (line 76) | B300 = 0x7 constant B307200 (line 77) | B307200 = 0x15 constant B38400 (line 78) | B38400 = 0xf constant B460800 (line 79) | B460800 = 0x16 constant B4800 (line 80) | B4800 = 0xc constant B50 (line 81) | B50 = 0x1 constant B57600 (line 82) | B57600 = 0x10 constant B600 (line 83) | B600 = 0x8 constant B75 (line 84) | B75 = 0x2 constant B76800 (line 85) | B76800 = 0x11 constant B921600 (line 86) | B921600 = 0x17 constant B9600 (line 87) | B9600 = 0xd constant BIOCFLUSH (line 88) | BIOCFLUSH = 0x20004268 constant BIOCGBLEN (line 89) | BIOCGBLEN = 0x40044266 constant BIOCGDLT (line 90) | BIOCGDLT = 0x4004426a constant BIOCGDLTLIST (line 91) | BIOCGDLTLIST = -0x3fefbd89 constant BIOCGDLTLIST32 (line 92) | BIOCGDLTLIST32 = -0x3ff7bd89 constant BIOCGETIF (line 93) | BIOCGETIF = 0x4020426b constant BIOCGETLIF (line 94) | BIOCGETLIF = 0x4078426b constant BIOCGHDRCMPLT (line 95) | BIOCGHDRCMPLT = 0x40044274 constant BIOCGRTIMEOUT (line 96) | BIOCGRTIMEOUT = 0x4010427b constant BIOCGRTIMEOUT32 (line 97) | BIOCGRTIMEOUT32 = 0x4008427b constant BIOCGSEESENT (line 98) | BIOCGSEESENT = 0x40044278 constant BIOCGSTATS (line 99) | BIOCGSTATS = 0x4080426f constant BIOCGSTATSOLD (line 100) | BIOCGSTATSOLD = 0x4008426f constant BIOCIMMEDIATE (line 101) | BIOCIMMEDIATE = -0x7ffbbd90 constant BIOCPROMISC (line 102) | BIOCPROMISC = 0x20004269 constant BIOCSBLEN (line 103) | BIOCSBLEN = -0x3ffbbd9a constant BIOCSDLT (line 104) | BIOCSDLT = -0x7ffbbd8a constant BIOCSETF (line 105) | BIOCSETF = -0x7fefbd99 constant BIOCSETF32 (line 106) | BIOCSETF32 = -0x7ff7bd99 constant BIOCSETIF (line 107) | BIOCSETIF = -0x7fdfbd94 constant BIOCSETLIF (line 108) | BIOCSETLIF = -0x7f87bd94 constant BIOCSHDRCMPLT (line 109) | BIOCSHDRCMPLT = -0x7ffbbd8b constant BIOCSRTIMEOUT (line 110) | BIOCSRTIMEOUT = -0x7fefbd86 constant BIOCSRTIMEOUT32 (line 111) | BIOCSRTIMEOUT32 = -0x7ff7bd86 constant BIOCSSEESENT (line 112) | BIOCSSEESENT = -0x7ffbbd87 constant BIOCSTCPF (line 113) | BIOCSTCPF = -0x7fefbd8e constant BIOCSUDPF (line 114) | BIOCSUDPF = -0x7fefbd8d constant BIOCVERSION (line 115) | BIOCVERSION = 0x40044271 constant BPF_A (line 116) | BPF_A = 0x10 constant BPF_ABS (line 117) | BPF_ABS = 0x20 constant BPF_ADD (line 118) | BPF_ADD = 0x0 constant BPF_ALIGNMENT (line 119) | BPF_ALIGNMENT = 0x4 constant BPF_ALU (line 120) | BPF_ALU = 0x4 constant BPF_AND (line 121) | BPF_AND = 0x50 constant BPF_B (line 122) | BPF_B = 0x10 constant BPF_DFLTBUFSIZE (line 123) | BPF_DFLTBUFSIZE = 0x100000 constant BPF_DIV (line 124) | BPF_DIV = 0x30 constant BPF_H (line 125) | BPF_H = 0x8 constant BPF_IMM (line 126) | BPF_IMM = 0x0 constant BPF_IND (line 127) | BPF_IND = 0x40 constant BPF_JA (line 128) | BPF_JA = 0x0 constant BPF_JEQ (line 129) | BPF_JEQ = 0x10 constant BPF_JGE (line 130) | BPF_JGE = 0x30 constant BPF_JGT (line 131) | BPF_JGT = 0x20 constant BPF_JMP (line 132) | BPF_JMP = 0x5 constant BPF_JSET (line 133) | BPF_JSET = 0x40 constant BPF_K (line 134) | BPF_K = 0x0 constant BPF_LD (line 135) | BPF_LD = 0x0 constant BPF_LDX (line 136) | BPF_LDX = 0x1 constant BPF_LEN (line 137) | BPF_LEN = 0x80 constant BPF_LSH (line 138) | BPF_LSH = 0x60 constant BPF_MAJOR_VERSION (line 139) | BPF_MAJOR_VERSION = 0x1 constant BPF_MAXBUFSIZE (line 140) | BPF_MAXBUFSIZE = 0x1000000 constant BPF_MAXINSNS (line 141) | BPF_MAXINSNS = 0x200 constant BPF_MEM (line 142) | BPF_MEM = 0x60 constant BPF_MEMWORDS (line 143) | BPF_MEMWORDS = 0x10 constant BPF_MINBUFSIZE (line 144) | BPF_MINBUFSIZE = 0x20 constant BPF_MINOR_VERSION (line 145) | BPF_MINOR_VERSION = 0x1 constant BPF_MISC (line 146) | BPF_MISC = 0x7 constant BPF_MSH (line 147) | BPF_MSH = 0xa0 constant BPF_MUL (line 148) | BPF_MUL = 0x20 constant BPF_NEG (line 149) | BPF_NEG = 0x80 constant BPF_OR (line 150) | BPF_OR = 0x40 constant BPF_RELEASE (line 151) | BPF_RELEASE = 0x30bb6 constant BPF_RET (line 152) | BPF_RET = 0x6 constant BPF_RSH (line 153) | BPF_RSH = 0x70 constant BPF_ST (line 154) | BPF_ST = 0x2 constant BPF_STX (line 155) | BPF_STX = 0x3 constant BPF_SUB (line 156) | BPF_SUB = 0x10 constant BPF_TAX (line 157) | BPF_TAX = 0x0 constant BPF_TXA (line 158) | BPF_TXA = 0x80 constant BPF_W (line 159) | BPF_W = 0x0 constant BPF_X (line 160) | BPF_X = 0x8 constant BRKINT (line 161) | BRKINT = 0x2 constant CFLUSH (line 162) | CFLUSH = 0xf constant CLOCAL (line 163) | CLOCAL = 0x800 constant CLOCK_HIGHRES (line 164) | CLOCK_HIGHRES = 0x4 constant CLOCK_LEVEL (line 165) | CLOCK_LEVEL = 0xa constant CLOCK_MONOTONIC (line 166) | CLOCK_MONOTONIC = 0x4 constant CLOCK_PROCESS_CPUTIME_ID (line 167) | CLOCK_PROCESS_CPUTIME_ID = 0x5 constant CLOCK_PROF (line 168) | CLOCK_PROF = 0x2 constant CLOCK_REALTIME (line 169) | CLOCK_REALTIME = 0x3 constant CLOCK_THREAD_CPUTIME_ID (line 170) | CLOCK_THREAD_CPUTIME_ID = 0x2 constant CLOCK_VIRTUAL (line 171) | CLOCK_VIRTUAL = 0x1 constant CREAD (line 172) | CREAD = 0x80 constant CS5 (line 173) | CS5 = 0x0 constant CS6 (line 174) | CS6 = 0x10 constant CS7 (line 175) | CS7 = 0x20 constant CS8 (line 176) | CS8 = 0x30 constant CSIZE (line 177) | CSIZE = 0x30 constant CSTART (line 178) | CSTART = 0x11 constant CSTATUS (line 179) | CSTATUS = 0x14 constant CSTOP (line 180) | CSTOP = 0x13 constant CSTOPB (line 181) | CSTOPB = 0x40 constant CSUSP (line 182) | CSUSP = 0x1a constant CSWTCH (line 183) | CSWTCH = 0x1a constant DLT_AIRONET_HEADER (line 184) | DLT_AIRONET_HEADER = 0x78 constant DLT_APPLE_IP_OVER_IEEE1394 (line 185) | DLT_APPLE_IP_OVER_IEEE1394 = 0x8a constant DLT_ARCNET (line 186) | DLT_ARCNET = 0x7 constant DLT_ARCNET_LINUX (line 187) | DLT_ARCNET_LINUX = 0x81 constant DLT_ATM_CLIP (line 188) | DLT_ATM_CLIP = 0x13 constant DLT_ATM_RFC1483 (line 189) | DLT_ATM_RFC1483 = 0xb constant DLT_AURORA (line 190) | DLT_AURORA = 0x7e constant DLT_AX25 (line 191) | DLT_AX25 = 0x3 constant DLT_BACNET_MS_TP (line 192) | DLT_BACNET_MS_TP = 0xa5 constant DLT_CHAOS (line 193) | DLT_CHAOS = 0x5 constant DLT_CISCO_IOS (line 194) | DLT_CISCO_IOS = 0x76 constant DLT_C_HDLC (line 195) | DLT_C_HDLC = 0x68 constant DLT_DOCSIS (line 196) | DLT_DOCSIS = 0x8f constant DLT_ECONET (line 197) | DLT_ECONET = 0x73 constant DLT_EN10MB (line 198) | DLT_EN10MB = 0x1 constant DLT_EN3MB (line 199) | DLT_EN3MB = 0x2 constant DLT_ENC (line 200) | DLT_ENC = 0x6d constant DLT_ERF_ETH (line 201) | DLT_ERF_ETH = 0xaf constant DLT_ERF_POS (line 202) | DLT_ERF_POS = 0xb0 constant DLT_FDDI (line 203) | DLT_FDDI = 0xa constant DLT_FRELAY (line 204) | DLT_FRELAY = 0x6b constant DLT_GCOM_SERIAL (line 205) | DLT_GCOM_SERIAL = 0xad constant DLT_GCOM_T1E1 (line 206) | DLT_GCOM_T1E1 = 0xac constant DLT_GPF_F (line 207) | DLT_GPF_F = 0xab constant DLT_GPF_T (line 208) | DLT_GPF_T = 0xaa constant DLT_GPRS_LLC (line 209) | DLT_GPRS_LLC = 0xa9 constant DLT_HDLC (line 210) | DLT_HDLC = 0x10 constant DLT_HHDLC (line 211) | DLT_HHDLC = 0x79 constant DLT_HIPPI (line 212) | DLT_HIPPI = 0xf constant DLT_IBM_SN (line 213) | DLT_IBM_SN = 0x92 constant DLT_IBM_SP (line 214) | DLT_IBM_SP = 0x91 constant DLT_IEEE802 (line 215) | DLT_IEEE802 = 0x6 constant DLT_IEEE802_11 (line 216) | DLT_IEEE802_11 = 0x69 constant DLT_IEEE802_11_RADIO (line 217) | DLT_IEEE802_11_RADIO = 0x7f constant DLT_IEEE802_11_RADIO_AVS (line 218) | DLT_IEEE802_11_RADIO_AVS = 0xa3 constant DLT_IPNET (line 219) | DLT_IPNET = 0xe2 constant DLT_IPOIB (line 220) | DLT_IPOIB = 0xa2 constant DLT_IP_OVER_FC (line 221) | DLT_IP_OVER_FC = 0x7a constant DLT_JUNIPER_ATM1 (line 222) | DLT_JUNIPER_ATM1 = 0x89 constant DLT_JUNIPER_ATM2 (line 223) | DLT_JUNIPER_ATM2 = 0x87 constant DLT_JUNIPER_CHDLC (line 224) | DLT_JUNIPER_CHDLC = 0xb5 constant DLT_JUNIPER_ES (line 225) | DLT_JUNIPER_ES = 0x84 constant DLT_JUNIPER_ETHER (line 226) | DLT_JUNIPER_ETHER = 0xb2 constant DLT_JUNIPER_FRELAY (line 227) | DLT_JUNIPER_FRELAY = 0xb4 constant DLT_JUNIPER_GGSN (line 228) | DLT_JUNIPER_GGSN = 0x85 constant DLT_JUNIPER_MFR (line 229) | DLT_JUNIPER_MFR = 0x86 constant DLT_JUNIPER_MLFR (line 230) | DLT_JUNIPER_MLFR = 0x83 constant DLT_JUNIPER_MLPPP (line 231) | DLT_JUNIPER_MLPPP = 0x82 constant DLT_JUNIPER_MONITOR (line 232) | DLT_JUNIPER_MONITOR = 0xa4 constant DLT_JUNIPER_PIC_PEER (line 233) | DLT_JUNIPER_PIC_PEER = 0xae constant DLT_JUNIPER_PPP (line 234) | DLT_JUNIPER_PPP = 0xb3 constant DLT_JUNIPER_PPPOE (line 235) | DLT_JUNIPER_PPPOE = 0xa7 constant DLT_JUNIPER_PPPOE_ATM (line 236) | DLT_JUNIPER_PPPOE_ATM = 0xa8 constant DLT_JUNIPER_SERVICES (line 237) | DLT_JUNIPER_SERVICES = 0x88 constant DLT_LINUX_IRDA (line 238) | DLT_LINUX_IRDA = 0x90 constant DLT_LINUX_LAPD (line 239) | DLT_LINUX_LAPD = 0xb1 constant DLT_LINUX_SLL (line 240) | DLT_LINUX_SLL = 0x71 constant DLT_LOOP (line 241) | DLT_LOOP = 0x6c constant DLT_LTALK (line 242) | DLT_LTALK = 0x72 constant DLT_MTP2 (line 243) | DLT_MTP2 = 0x8c constant DLT_MTP2_WITH_PHDR (line 244) | DLT_MTP2_WITH_PHDR = 0x8b constant DLT_MTP3 (line 245) | DLT_MTP3 = 0x8d constant DLT_NULL (line 246) | DLT_NULL = 0x0 constant DLT_PCI_EXP (line 247) | DLT_PCI_EXP = 0x7d constant DLT_PFLOG (line 248) | DLT_PFLOG = 0x75 constant DLT_PFSYNC (line 249) | DLT_PFSYNC = 0x12 constant DLT_PPP (line 250) | DLT_PPP = 0x9 constant DLT_PPP_BSDOS (line 251) | DLT_PPP_BSDOS = 0xe constant DLT_PPP_PPPD (line 252) | DLT_PPP_PPPD = 0xa6 constant DLT_PRISM_HEADER (line 253) | DLT_PRISM_HEADER = 0x77 constant DLT_PRONET (line 254) | DLT_PRONET = 0x4 constant DLT_RAW (line 255) | DLT_RAW = 0xc constant DLT_RAWAF_MASK (line 256) | DLT_RAWAF_MASK = 0x2240000 constant DLT_RIO (line 257) | DLT_RIO = 0x7c constant DLT_SCCP (line 258) | DLT_SCCP = 0x8e constant DLT_SLIP (line 259) | DLT_SLIP = 0x8 constant DLT_SLIP_BSDOS (line 260) | DLT_SLIP_BSDOS = 0xd constant DLT_SUNATM (line 261) | DLT_SUNATM = 0x7b constant DLT_SYMANTEC_FIREWALL (line 262) | DLT_SYMANTEC_FIREWALL = 0x63 constant DLT_TZSP (line 263) | DLT_TZSP = 0x80 constant ECHO (line 264) | ECHO = 0x8 constant ECHOCTL (line 265) | ECHOCTL = 0x200 constant ECHOE (line 266) | ECHOE = 0x10 constant ECHOK (line 267) | ECHOK = 0x20 constant ECHOKE (line 268) | ECHOKE = 0x800 constant ECHONL (line 269) | ECHONL = 0x40 constant ECHOPRT (line 270) | ECHOPRT = 0x400 constant EMPTY_SET (line 271) | EMPTY_SET = 0x0 constant EMT_CPCOVF (line 272) | EMT_CPCOVF = 0x1 constant EQUALITY_CHECK (line 273) | EQUALITY_CHECK = 0x0 constant EXTA (line 274) | EXTA = 0xe constant EXTB (line 275) | EXTB = 0xf constant FD_CLOEXEC (line 276) | FD_CLOEXEC = 0x1 constant FD_NFDBITS (line 277) | FD_NFDBITS = 0x40 constant FD_SETSIZE (line 278) | FD_SETSIZE = 0x10000 constant FLUSHALL (line 279) | FLUSHALL = 0x1 constant FLUSHDATA (line 280) | FLUSHDATA = 0x0 constant FLUSHO (line 281) | FLUSHO = 0x2000 constant F_ALLOCSP (line 282) | F_ALLOCSP = 0xa constant F_ALLOCSP64 (line 283) | F_ALLOCSP64 = 0xa constant F_BADFD (line 284) | F_BADFD = 0x2e constant F_BLKSIZE (line 285) | F_BLKSIZE = 0x13 constant F_BLOCKS (line 286) | F_BLOCKS = 0x12 constant F_CHKFL (line 287) | F_CHKFL = 0x8 constant F_COMPAT (line 288) | F_COMPAT = 0x8 constant F_DUP2FD (line 289) | F_DUP2FD = 0x9 constant F_DUP2FD_CLOEXEC (line 290) | F_DUP2FD_CLOEXEC = 0x24 constant F_DUPFD (line 291) | F_DUPFD = 0x0 constant F_DUPFD_CLOEXEC (line 292) | F_DUPFD_CLOEXEC = 0x25 constant F_FREESP (line 293) | F_FREESP = 0xb constant F_FREESP64 (line 294) | F_FREESP64 = 0xb constant F_GETFD (line 295) | F_GETFD = 0x1 constant F_GETFL (line 296) | F_GETFL = 0x3 constant F_GETLK (line 297) | F_GETLK = 0xe constant F_GETLK64 (line 298) | F_GETLK64 = 0xe constant F_GETOWN (line 299) | F_GETOWN = 0x17 constant F_GETXFL (line 300) | F_GETXFL = 0x2d constant F_HASREMOTELOCKS (line 301) | F_HASREMOTELOCKS = 0x1a constant F_ISSTREAM (line 302) | F_ISSTREAM = 0xd constant F_MANDDNY (line 303) | F_MANDDNY = 0x10 constant F_MDACC (line 304) | F_MDACC = 0x20 constant F_NODNY (line 305) | F_NODNY = 0x0 constant F_NPRIV (line 306) | F_NPRIV = 0x10 constant F_PRIV (line 307) | F_PRIV = 0xf constant F_QUOTACTL (line 308) | F_QUOTACTL = 0x11 constant F_RDACC (line 309) | F_RDACC = 0x1 constant F_RDDNY (line 310) | F_RDDNY = 0x1 constant F_RDLCK (line 311) | F_RDLCK = 0x1 constant F_REVOKE (line 312) | F_REVOKE = 0x19 constant F_RMACC (line 313) | F_RMACC = 0x4 constant F_RMDNY (line 314) | F_RMDNY = 0x4 constant F_RWACC (line 315) | F_RWACC = 0x3 constant F_RWDNY (line 316) | F_RWDNY = 0x3 constant F_SETFD (line 317) | F_SETFD = 0x2 constant F_SETFL (line 318) | F_SETFL = 0x4 constant F_SETLK (line 319) | F_SETLK = 0x6 constant F_SETLK64 (line 320) | F_SETLK64 = 0x6 constant F_SETLK64_NBMAND (line 321) | F_SETLK64_NBMAND = 0x2a constant F_SETLKW (line 322) | F_SETLKW = 0x7 constant F_SETLKW64 (line 323) | F_SETLKW64 = 0x7 constant F_SETLK_NBMAND (line 324) | F_SETLK_NBMAND = 0x2a constant F_SETOWN (line 325) | F_SETOWN = 0x18 constant F_SHARE (line 326) | F_SHARE = 0x28 constant F_SHARE_NBMAND (line 327) | F_SHARE_NBMAND = 0x2b constant F_UNLCK (line 328) | F_UNLCK = 0x3 constant F_UNLKSYS (line 329) | F_UNLKSYS = 0x4 constant F_UNSHARE (line 330) | F_UNSHARE = 0x29 constant F_WRACC (line 331) | F_WRACC = 0x2 constant F_WRDNY (line 332) | F_WRDNY = 0x2 constant F_WRLCK (line 333) | F_WRLCK = 0x2 constant HUPCL (line 334) | HUPCL = 0x400 constant ICANON (line 335) | ICANON = 0x2 constant ICRNL (line 336) | ICRNL = 0x100 constant IEXTEN (line 337) | IEXTEN = 0x8000 constant IFF_ADDRCONF (line 338) | IFF_ADDRCONF = 0x80000 constant IFF_ALLMULTI (line 339) | IFF_ALLMULTI = 0x200 constant IFF_ANYCAST (line 340) | IFF_ANYCAST = 0x400000 constant IFF_BROADCAST (line 341) | IFF_BROADCAST = 0x2 constant IFF_CANTCHANGE (line 342) | IFF_CANTCHANGE = 0x7f203003b5a constant IFF_COS_ENABLED (line 343) | IFF_COS_ENABLED = 0x200000000 constant IFF_DEBUG (line 344) | IFF_DEBUG = 0x4 constant IFF_DEPRECATED (line 345) | IFF_DEPRECATED = 0x40000 constant IFF_DHCPRUNNING (line 346) | IFF_DHCPRUNNING = 0x4000 constant IFF_DUPLICATE (line 347) | IFF_DUPLICATE = 0x4000000000 constant IFF_FAILED (line 348) | IFF_FAILED = 0x10000000 constant IFF_FIXEDMTU (line 349) | IFF_FIXEDMTU = 0x1000000000 constant IFF_INACTIVE (line 350) | IFF_INACTIVE = 0x40000000 constant IFF_INTELLIGENT (line 351) | IFF_INTELLIGENT = 0x400 constant IFF_IPMP (line 352) | IFF_IPMP = 0x8000000000 constant IFF_IPMP_CANTCHANGE (line 353) | IFF_IPMP_CANTCHANGE = 0x10000000 constant IFF_IPMP_INVALID (line 354) | IFF_IPMP_INVALID = 0x1ec200080 constant IFF_IPV4 (line 355) | IFF_IPV4 = 0x1000000 constant IFF_IPV6 (line 356) | IFF_IPV6 = 0x2000000 constant IFF_L3PROTECT (line 357) | IFF_L3PROTECT = 0x40000000000 constant IFF_LOOPBACK (line 358) | IFF_LOOPBACK = 0x8 constant IFF_MULTICAST (line 359) | IFF_MULTICAST = 0x800 constant IFF_MULTI_BCAST (line 360) | IFF_MULTI_BCAST = 0x1000 constant IFF_NOACCEPT (line 361) | IFF_NOACCEPT = 0x4000000 constant IFF_NOARP (line 362) | IFF_NOARP = 0x80 constant IFF_NOFAILOVER (line 363) | IFF_NOFAILOVER = 0x8000000 constant IFF_NOLINKLOCAL (line 364) | IFF_NOLINKLOCAL = 0x20000000000 constant IFF_NOLOCAL (line 365) | IFF_NOLOCAL = 0x20000 constant IFF_NONUD (line 366) | IFF_NONUD = 0x200000 constant IFF_NORTEXCH (line 367) | IFF_NORTEXCH = 0x800000 constant IFF_NOTRAILERS (line 368) | IFF_NOTRAILERS = 0x20 constant IFF_NOXMIT (line 369) | IFF_NOXMIT = 0x10000 constant IFF_OFFLINE (line 370) | IFF_OFFLINE = 0x80000000 constant IFF_POINTOPOINT (line 371) | IFF_POINTOPOINT = 0x10 constant IFF_PREFERRED (line 372) | IFF_PREFERRED = 0x400000000 constant IFF_PRIVATE (line 373) | IFF_PRIVATE = 0x8000 constant IFF_PROMISC (line 374) | IFF_PROMISC = 0x100 constant IFF_ROUTER (line 375) | IFF_ROUTER = 0x100000 constant IFF_RUNNING (line 376) | IFF_RUNNING = 0x40 constant IFF_STANDBY (line 377) | IFF_STANDBY = 0x20000000 constant IFF_TEMPORARY (line 378) | IFF_TEMPORARY = 0x800000000 constant IFF_UNNUMBERED (line 379) | IFF_UNNUMBERED = 0x2000 constant IFF_UP (line 380) | IFF_UP = 0x1 constant IFF_VIRTUAL (line 381) | IFF_VIRTUAL = 0x2000000000 constant IFF_VRRP (line 382) | IFF_VRRP = 0x10000000000 constant IFF_XRESOLV (line 383) | IFF_XRESOLV = 0x100000000 constant IFNAMSIZ (line 384) | IFNAMSIZ = 0x10 constant IFT_1822 (line 385) | IFT_1822 = 0x2 constant IFT_6TO4 (line 386) | IFT_6TO4 = 0xca constant IFT_AAL5 (line 387) | IFT_AAL5 = 0x31 constant IFT_ARCNET (line 388) | IFT_ARCNET = 0x23 constant IFT_ARCNETPLUS (line 389) | IFT_ARCNETPLUS = 0x24 constant IFT_ATM (line 390) | IFT_ATM = 0x25 constant IFT_CEPT (line 391) | IFT_CEPT = 0x13 constant IFT_DS3 (line 392) | IFT_DS3 = 0x1e constant IFT_EON (line 393) | IFT_EON = 0x19 constant IFT_ETHER (line 394) | IFT_ETHER = 0x6 constant IFT_FDDI (line 395) | IFT_FDDI = 0xf constant IFT_FRELAY (line 396) | IFT_FRELAY = 0x20 constant IFT_FRELAYDCE (line 397) | IFT_FRELAYDCE = 0x2c constant IFT_HDH1822 (line 398) | IFT_HDH1822 = 0x3 constant IFT_HIPPI (line 399) | IFT_HIPPI = 0x2f constant IFT_HSSI (line 400) | IFT_HSSI = 0x2e constant IFT_HY (line 401) | IFT_HY = 0xe constant IFT_IB (line 402) | IFT_IB = 0xc7 constant IFT_IPV4 (line 403) | IFT_IPV4 = 0xc8 constant IFT_IPV6 (line 404) | IFT_IPV6 = 0xc9 constant IFT_ISDNBASIC (line 405) | IFT_ISDNBASIC = 0x14 constant IFT_ISDNPRIMARY (line 406) | IFT_ISDNPRIMARY = 0x15 constant IFT_ISO88022LLC (line 407) | IFT_ISO88022LLC = 0x29 constant IFT_ISO88023 (line 408) | IFT_ISO88023 = 0x7 constant IFT_ISO88024 (line 409) | IFT_ISO88024 = 0x8 constant IFT_ISO88025 (line 410) | IFT_ISO88025 = 0x9 constant IFT_ISO88026 (line 411) | IFT_ISO88026 = 0xa constant IFT_LAPB (line 412) | IFT_LAPB = 0x10 constant IFT_LOCALTALK (line 413) | IFT_LOCALTALK = 0x2a constant IFT_LOOP (line 414) | IFT_LOOP = 0x18 constant IFT_MIOX25 (line 415) | IFT_MIOX25 = 0x26 constant IFT_MODEM (line 416) | IFT_MODEM = 0x30 constant IFT_NSIP (line 417) | IFT_NSIP = 0x1b constant IFT_OTHER (line 418) | IFT_OTHER = 0x1 constant IFT_P10 (line 419) | IFT_P10 = 0xc constant IFT_P80 (line 420) | IFT_P80 = 0xd constant IFT_PARA (line 421) | IFT_PARA = 0x22 constant IFT_PPP (line 422) | IFT_PPP = 0x17 constant IFT_PROPMUX (line 423) | IFT_PROPMUX = 0x36 constant IFT_PROPVIRTUAL (line 424) | IFT_PROPVIRTUAL = 0x35 constant IFT_PTPSERIAL (line 425) | IFT_PTPSERIAL = 0x16 constant IFT_RS232 (line 426) | IFT_RS232 = 0x21 constant IFT_SDLC (line 427) | IFT_SDLC = 0x11 constant IFT_SIP (line 428) | IFT_SIP = 0x1f constant IFT_SLIP (line 429) | IFT_SLIP = 0x1c constant IFT_SMDSDXI (line 430) | IFT_SMDSDXI = 0x2b constant IFT_SMDSICIP (line 431) | IFT_SMDSICIP = 0x34 constant IFT_SONET (line 432) | IFT_SONET = 0x27 constant IFT_SONETPATH (line 433) | IFT_SONETPATH = 0x32 constant IFT_SONETVT (line 434) | IFT_SONETVT = 0x33 constant IFT_STARLAN (line 435) | IFT_STARLAN = 0xb constant IFT_T1 (line 436) | IFT_T1 = 0x12 constant IFT_ULTRA (line 437) | IFT_ULTRA = 0x1d constant IFT_V35 (line 438) | IFT_V35 = 0x2d constant IFT_X25 (line 439) | IFT_X25 = 0x5 constant IFT_X25DDN (line 440) | IFT_X25DDN = 0x4 constant IFT_X25PLE (line 441) | IFT_X25PLE = 0x28 constant IFT_XETHER (line 442) | IFT_XETHER = 0x1a constant IGNBRK (line 443) | IGNBRK = 0x1 constant IGNCR (line 444) | IGNCR = 0x80 constant IGNPAR (line 445) | IGNPAR = 0x4 constant IMAXBEL (line 446) | IMAXBEL = 0x2000 constant INLCR (line 447) | INLCR = 0x40 constant INPCK (line 448) | INPCK = 0x10 constant IN_AUTOCONF_MASK (line 449) | IN_AUTOCONF_MASK = 0xffff0000 constant IN_AUTOCONF_NET (line 450) | IN_AUTOCONF_NET = 0xa9fe0000 constant IN_CLASSA_HOST (line 451) | IN_CLASSA_HOST = 0xffffff constant IN_CLASSA_MAX (line 452) | IN_CLASSA_MAX = 0x80 constant IN_CLASSA_NET (line 453) | IN_CLASSA_NET = 0xff000000 constant IN_CLASSA_NSHIFT (line 454) | IN_CLASSA_NSHIFT = 0x18 constant IN_CLASSB_HOST (line 455) | IN_CLASSB_HOST = 0xffff constant IN_CLASSB_MAX (line 456) | IN_CLASSB_MAX = 0x10000 constant IN_CLASSB_NET (line 457) | IN_CLASSB_NET = 0xffff0000 constant IN_CLASSB_NSHIFT (line 458) | IN_CLASSB_NSHIFT = 0x10 constant IN_CLASSC_HOST (line 459) | IN_CLASSC_HOST = 0xff constant IN_CLASSC_NET (line 460) | IN_CLASSC_NET = 0xffffff00 constant IN_CLASSC_NSHIFT (line 461) | IN_CLASSC_NSHIFT = 0x8 constant IN_CLASSD_HOST (line 462) | IN_CLASSD_HOST = 0xfffffff constant IN_CLASSD_NET (line 463) | IN_CLASSD_NET = 0xf0000000 constant IN_CLASSD_NSHIFT (line 464) | IN_CLASSD_NSHIFT = 0x1c constant IN_CLASSE_NET (line 465) | IN_CLASSE_NET = 0xffffffff constant IN_LOOPBACKNET (line 466) | IN_LOOPBACKNET = 0x7f constant IN_PRIVATE12_MASK (line 467) | IN_PRIVATE12_MASK = 0xfff00000 constant IN_PRIVATE12_NET (line 468) | IN_PRIVATE12_NET = 0xac100000 constant IN_PRIVATE16_MASK (line 469) | IN_PRIVATE16_MASK = 0xffff0000 constant IN_PRIVATE16_NET (line 470) | IN_PRIVATE16_NET = 0xc0a80000 constant IN_PRIVATE8_MASK (line 471) | IN_PRIVATE8_MASK = 0xff000000 constant IN_PRIVATE8_NET (line 472) | IN_PRIVATE8_NET = 0xa000000 constant IPPROTO_AH (line 473) | IPPROTO_AH = 0x33 constant IPPROTO_DSTOPTS (line 474) | IPPROTO_DSTOPTS = 0x3c constant IPPROTO_EGP (line 475) | IPPROTO_EGP = 0x8 constant IPPROTO_ENCAP (line 476) | IPPROTO_ENCAP = 0x4 constant IPPROTO_EON (line 477) | IPPROTO_EON = 0x50 constant IPPROTO_ESP (line 478) | IPPROTO_ESP = 0x32 constant IPPROTO_FRAGMENT (line 479) | IPPROTO_FRAGMENT = 0x2c constant IPPROTO_GGP (line 480) | IPPROTO_GGP = 0x3 constant IPPROTO_HELLO (line 481) | IPPROTO_HELLO = 0x3f constant IPPROTO_HOPOPTS (line 482) | IPPROTO_HOPOPTS = 0x0 constant IPPROTO_ICMP (line 483) | IPPROTO_ICMP = 0x1 constant IPPROTO_ICMPV6 (line 484) | IPPROTO_ICMPV6 = 0x3a constant IPPROTO_IDP (line 485) | IPPROTO_IDP = 0x16 constant IPPROTO_IGMP (line 486) | IPPROTO_IGMP = 0x2 constant IPPROTO_IP (line 487) | IPPROTO_IP = 0x0 constant IPPROTO_IPV6 (line 488) | IPPROTO_IPV6 = 0x29 constant IPPROTO_MAX (line 489) | IPPROTO_MAX = 0x100 constant IPPROTO_ND (line 490) | IPPROTO_ND = 0x4d constant IPPROTO_NONE (line 491) | IPPROTO_NONE = 0x3b constant IPPROTO_OSPF (line 492) | IPPROTO_OSPF = 0x59 constant IPPROTO_PIM (line 493) | IPPROTO_PIM = 0x67 constant IPPROTO_PUP (line 494) | IPPROTO_PUP = 0xc constant IPPROTO_RAW (line 495) | IPPROTO_RAW = 0xff constant IPPROTO_ROUTING (line 496) | IPPROTO_ROUTING = 0x2b constant IPPROTO_RSVP (line 497) | IPPROTO_RSVP = 0x2e constant IPPROTO_SCTP (line 498) | IPPROTO_SCTP = 0x84 constant IPPROTO_TCP (line 499) | IPPROTO_TCP = 0x6 constant IPPROTO_UDP (line 500) | IPPROTO_UDP = 0x11 constant IPV6_ADD_MEMBERSHIP (line 501) | IPV6_ADD_MEMBERSHIP = 0x9 constant IPV6_BOUND_IF (line 502) | IPV6_BOUND_IF = 0x41 constant IPV6_CHECKSUM (line 503) | IPV6_CHECKSUM = 0x18 constant IPV6_DONTFRAG (line 504) | IPV6_DONTFRAG = 0x21 constant IPV6_DROP_MEMBERSHIP (line 505) | IPV6_DROP_MEMBERSHIP = 0xa constant IPV6_DSTOPTS (line 506) | IPV6_DSTOPTS = 0xf constant IPV6_FLOWINFO_FLOWLABEL (line 507) | IPV6_FLOWINFO_FLOWLABEL = 0xffff0f00 constant IPV6_FLOWINFO_TCLASS (line 508) | IPV6_FLOWINFO_TCLASS = 0xf00f constant IPV6_HOPLIMIT (line 509) | IPV6_HOPLIMIT = 0xc constant IPV6_HOPOPTS (line 510) | IPV6_HOPOPTS = 0xe constant IPV6_JOIN_GROUP (line 511) | IPV6_JOIN_GROUP = 0x9 constant IPV6_LEAVE_GROUP (line 512) | IPV6_LEAVE_GROUP = 0xa constant IPV6_MULTICAST_HOPS (line 513) | IPV6_MULTICAST_HOPS = 0x7 constant IPV6_MULTICAST_IF (line 514) | IPV6_MULTICAST_IF = 0x6 constant IPV6_MULTICAST_LOOP (line 515) | IPV6_MULTICAST_LOOP = 0x8 constant IPV6_NEXTHOP (line 516) | IPV6_NEXTHOP = 0xd constant IPV6_PAD1_OPT (line 517) | IPV6_PAD1_OPT = 0x0 constant IPV6_PATHMTU (line 518) | IPV6_PATHMTU = 0x25 constant IPV6_PKTINFO (line 519) | IPV6_PKTINFO = 0xb constant IPV6_PREFER_SRC_CGA (line 520) | IPV6_PREFER_SRC_CGA = 0x20 constant IPV6_PREFER_SRC_CGADEFAULT (line 521) | IPV6_PREFER_SRC_CGADEFAULT = 0x10 constant IPV6_PREFER_SRC_CGAMASK (line 522) | IPV6_PREFER_SRC_CGAMASK = 0x30 constant IPV6_PREFER_SRC_COA (line 523) | IPV6_PREFER_SRC_COA = 0x2 constant IPV6_PREFER_SRC_DEFAULT (line 524) | IPV6_PREFER_SRC_DEFAULT = 0x15 constant IPV6_PREFER_SRC_HOME (line 525) | IPV6_PREFER_SRC_HOME = 0x1 constant IPV6_PREFER_SRC_MASK (line 526) | IPV6_PREFER_SRC_MASK = 0x3f constant IPV6_PREFER_SRC_MIPDEFAULT (line 527) | IPV6_PREFER_SRC_MIPDEFAULT = 0x1 constant IPV6_PREFER_SRC_MIPMASK (line 528) | IPV6_PREFER_SRC_MIPMASK = 0x3 constant IPV6_PREFER_SRC_NONCGA (line 529) | IPV6_PREFER_SRC_NONCGA = 0x10 constant IPV6_PREFER_SRC_PUBLIC (line 530) | IPV6_PREFER_SRC_PUBLIC = 0x4 constant IPV6_PREFER_SRC_TMP (line 531) | IPV6_PREFER_SRC_TMP = 0x8 constant IPV6_PREFER_SRC_TMPDEFAULT (line 532) | IPV6_PREFER_SRC_TMPDEFAULT = 0x4 constant IPV6_PREFER_SRC_TMPMASK (line 533) | IPV6_PREFER_SRC_TMPMASK = 0xc constant IPV6_RECVDSTOPTS (line 534) | IPV6_RECVDSTOPTS = 0x28 constant IPV6_RECVHOPLIMIT (line 535) | IPV6_RECVHOPLIMIT = 0x13 constant IPV6_RECVHOPOPTS (line 536) | IPV6_RECVHOPOPTS = 0x14 constant IPV6_RECVPATHMTU (line 537) | IPV6_RECVPATHMTU = 0x24 constant IPV6_RECVPKTINFO (line 538) | IPV6_RECVPKTINFO = 0x12 constant IPV6_RECVRTHDR (line 539) | IPV6_RECVRTHDR = 0x16 constant IPV6_RECVRTHDRDSTOPTS (line 540) | IPV6_RECVRTHDRDSTOPTS = 0x17 constant IPV6_RECVTCLASS (line 541) | IPV6_RECVTCLASS = 0x19 constant IPV6_RTHDR (line 542) | IPV6_RTHDR = 0x10 constant IPV6_RTHDRDSTOPTS (line 543) | IPV6_RTHDRDSTOPTS = 0x11 constant IPV6_RTHDR_TYPE_0 (line 544) | IPV6_RTHDR_TYPE_0 = 0x0 constant IPV6_SEC_OPT (line 545) | IPV6_SEC_OPT = 0x22 constant IPV6_SRC_PREFERENCES (line 546) | IPV6_SRC_PREFERENCES = 0x23 constant IPV6_TCLASS (line 547) | IPV6_TCLASS = 0x26 constant IPV6_UNICAST_HOPS (line 548) | IPV6_UNICAST_HOPS = 0x5 constant IPV6_UNSPEC_SRC (line 549) | IPV6_UNSPEC_SRC = 0x42 constant IPV6_USE_MIN_MTU (line 550) | IPV6_USE_MIN_MTU = 0x20 constant IPV6_V6ONLY (line 551) | IPV6_V6ONLY = 0x27 constant IP_ADD_MEMBERSHIP (line 552) | IP_ADD_MEMBERSHIP = 0x13 constant IP_ADD_SOURCE_MEMBERSHIP (line 553) | IP_ADD_SOURCE_MEMBERSHIP = 0x17 constant IP_BLOCK_SOURCE (line 554) | IP_BLOCK_SOURCE = 0x15 constant IP_BOUND_IF (line 555) | IP_BOUND_IF = 0x41 constant IP_BROADCAST (line 556) | IP_BROADCAST = 0x106 constant IP_BROADCAST_TTL (line 557) | IP_BROADCAST_TTL = 0x43 constant IP_DEFAULT_MULTICAST_LOOP (line 558) | IP_DEFAULT_MULTICAST_LOOP = 0x1 constant IP_DEFAULT_MULTICAST_TTL (line 559) | IP_DEFAULT_MULTICAST_TTL = 0x1 constant IP_DF (line 560) | IP_DF = 0x4000 constant IP_DHCPINIT_IF (line 561) | IP_DHCPINIT_IF = 0x45 constant IP_DONTFRAG (line 562) | IP_DONTFRAG = 0x1b constant IP_DONTROUTE (line 563) | IP_DONTROUTE = 0x105 constant IP_DROP_MEMBERSHIP (line 564) | IP_DROP_MEMBERSHIP = 0x14 constant IP_DROP_SOURCE_MEMBERSHIP (line 565) | IP_DROP_SOURCE_MEMBERSHIP = 0x18 constant IP_HDRINCL (line 566) | IP_HDRINCL = 0x2 constant IP_MAXPACKET (line 567) | IP_MAXPACKET = 0xffff constant IP_MF (line 568) | IP_MF = 0x2000 constant IP_MSS (line 569) | IP_MSS = 0x240 constant IP_MULTICAST_IF (line 570) | IP_MULTICAST_IF = 0x10 constant IP_MULTICAST_LOOP (line 571) | IP_MULTICAST_LOOP = 0x12 constant IP_MULTICAST_TTL (line 572) | IP_MULTICAST_TTL = 0x11 constant IP_NEXTHOP (line 573) | IP_NEXTHOP = 0x19 constant IP_OPTIONS (line 574) | IP_OPTIONS = 0x1 constant IP_PKTINFO (line 575) | IP_PKTINFO = 0x1a constant IP_RECVDSTADDR (line 576) | IP_RECVDSTADDR = 0x7 constant IP_RECVIF (line 577) | IP_RECVIF = 0x9 constant IP_RECVOPTS (line 578) | IP_RECVOPTS = 0x5 constant IP_RECVPKTINFO (line 579) | IP_RECVPKTINFO = 0x1a constant IP_RECVRETOPTS (line 580) | IP_RECVRETOPTS = 0x6 constant IP_RECVSLLA (line 581) | IP_RECVSLLA = 0xa constant IP_RECVTTL (line 582) | IP_RECVTTL = 0xb constant IP_RETOPTS (line 583) | IP_RETOPTS = 0x8 constant IP_REUSEADDR (line 584) | IP_REUSEADDR = 0x104 constant IP_SEC_OPT (line 585) | IP_SEC_OPT = 0x22 constant IP_TOS (line 586) | IP_TOS = 0x3 constant IP_TTL (line 587) | IP_TTL = 0x4 constant IP_UNBLOCK_SOURCE (line 588) | IP_UNBLOCK_SOURCE = 0x16 constant IP_UNSPEC_SRC (line 589) | IP_UNSPEC_SRC = 0x42 constant ISIG (line 590) | ISIG = 0x1 constant ISTRIP (line 591) | ISTRIP = 0x20 constant IXANY (line 592) | IXANY = 0x800 constant IXOFF (line 593) | IXOFF = 0x1000 constant IXON (line 594) | IXON = 0x400 constant MADV_ACCESS_DEFAULT (line 595) | MADV_ACCESS_DEFAULT = 0x6 constant MADV_ACCESS_LWP (line 596) | MADV_ACCESS_LWP = 0x7 constant MADV_ACCESS_MANY (line 597) | MADV_ACCESS_MANY = 0x8 constant MADV_DONTNEED (line 598) | MADV_DONTNEED = 0x4 constant MADV_FREE (line 599) | MADV_FREE = 0x5 constant MADV_NORMAL (line 600) | MADV_NORMAL = 0x0 constant MADV_RANDOM (line 601) | MADV_RANDOM = 0x1 constant MADV_SEQUENTIAL (line 602) | MADV_SEQUENTIAL = 0x2 constant MADV_WILLNEED (line 603) | MADV_WILLNEED = 0x3 constant MAP_32BIT (line 604) | MAP_32BIT = 0x80 constant MAP_ALIGN (line 605) | MAP_ALIGN = 0x200 constant MAP_ANON (line 606) | MAP_ANON = 0x100 constant MAP_ANONYMOUS (line 607) | MAP_ANONYMOUS = 0x100 constant MAP_FIXED (line 608) | MAP_FIXED = 0x10 constant MAP_INITDATA (line 609) | MAP_INITDATA = 0x800 constant MAP_NORESERVE (line 610) | MAP_NORESERVE = 0x40 constant MAP_PRIVATE (line 611) | MAP_PRIVATE = 0x2 constant MAP_RENAME (line 612) | MAP_RENAME = 0x20 constant MAP_SHARED (line 613) | MAP_SHARED = 0x1 constant MAP_TEXT (line 614) | MAP_TEXT = 0x400 constant MAP_TYPE (line 615) | MAP_TYPE = 0xf constant MCL_CURRENT (line 616) | MCL_CURRENT = 0x1 constant MCL_FUTURE (line 617) | MCL_FUTURE = 0x2 constant MSG_CTRUNC (line 618) | MSG_CTRUNC = 0x10 constant MSG_DONTROUTE (line 619) | MSG_DONTROUTE = 0x4 constant MSG_DONTWAIT (line 620) | MSG_DONTWAIT = 0x80 constant MSG_DUPCTRL (line 621) | MSG_DUPCTRL = 0x800 constant MSG_EOR (line 622) | MSG_EOR = 0x8 constant MSG_MAXIOVLEN (line 623) | MSG_MAXIOVLEN = 0x10 constant MSG_NOTIFICATION (line 624) | MSG_NOTIFICATION = 0x100 constant MSG_OOB (line 625) | MSG_OOB = 0x1 constant MSG_PEEK (line 626) | MSG_PEEK = 0x2 constant MSG_TRUNC (line 627) | MSG_TRUNC = 0x20 constant MSG_WAITALL (line 628) | MSG_WAITALL = 0x40 constant MSG_XPG4_2 (line 629) | MSG_XPG4_2 = 0x8000 constant MS_ASYNC (line 630) | MS_ASYNC = 0x1 constant MS_INVALIDATE (line 631) | MS_INVALIDATE = 0x2 constant MS_OLDSYNC (line 632) | MS_OLDSYNC = 0x0 constant MS_SYNC (line 633) | MS_SYNC = 0x4 constant M_FLUSH (line 634) | M_FLUSH = 0x86 constant NOFLSH (line 635) | NOFLSH = 0x80 constant OCRNL (line 636) | OCRNL = 0x8 constant OFDEL (line 637) | OFDEL = 0x80 constant OFILL (line 638) | OFILL = 0x40 constant ONLCR (line 639) | ONLCR = 0x4 constant ONLRET (line 640) | ONLRET = 0x20 constant ONOCR (line 641) | ONOCR = 0x10 constant OPENFAIL (line 642) | OPENFAIL = -0x1 constant OPOST (line 643) | OPOST = 0x1 constant O_ACCMODE (line 644) | O_ACCMODE = 0x600003 constant O_APPEND (line 645) | O_APPEND = 0x8 constant O_CLOEXEC (line 646) | O_CLOEXEC = 0x800000 constant O_CREAT (line 647) | O_CREAT = 0x100 constant O_DSYNC (line 648) | O_DSYNC = 0x40 constant O_EXCL (line 649) | O_EXCL = 0x400 constant O_EXEC (line 650) | O_EXEC = 0x400000 constant O_LARGEFILE (line 651) | O_LARGEFILE = 0x2000 constant O_NDELAY (line 652) | O_NDELAY = 0x4 constant O_NOCTTY (line 653) | O_NOCTTY = 0x800 constant O_NOFOLLOW (line 654) | O_NOFOLLOW = 0x20000 constant O_NOLINKS (line 655) | O_NOLINKS = 0x40000 constant O_NONBLOCK (line 656) | O_NONBLOCK = 0x80 constant O_RDONLY (line 657) | O_RDONLY = 0x0 constant O_RDWR (line 658) | O_RDWR = 0x2 constant O_RSYNC (line 659) | O_RSYNC = 0x8000 constant O_SEARCH (line 660) | O_SEARCH = 0x200000 constant O_SIOCGIFCONF (line 661) | O_SIOCGIFCONF = -0x3ff796ec constant O_SIOCGLIFCONF (line 662) | O_SIOCGLIFCONF = -0x3fef9688 constant O_SYNC (line 663) | O_SYNC = 0x10 constant O_TRUNC (line 664) | O_TRUNC = 0x200 constant O_WRONLY (line 665) | O_WRONLY = 0x1 constant O_XATTR (line 666) | O_XATTR = 0x4000 constant PARENB (line 667) | PARENB = 0x100 constant PAREXT (line 668) | PAREXT = 0x100000 constant PARMRK (line 669) | PARMRK = 0x8 constant PARODD (line 670) | PARODD = 0x200 constant PENDIN (line 671) | PENDIN = 0x4000 constant PRIO_PGRP (line 672) | PRIO_PGRP = 0x1 constant PRIO_PROCESS (line 673) | PRIO_PROCESS = 0x0 constant PRIO_USER (line 674) | PRIO_USER = 0x2 constant PROT_EXEC (line 675) | PROT_EXEC = 0x4 constant PROT_NONE (line 676) | PROT_NONE = 0x0 constant PROT_READ (line 677) | PROT_READ = 0x1 constant PROT_WRITE (line 678) | PROT_WRITE = 0x2 constant RLIMIT_AS (line 679) | RLIMIT_AS = 0x6 constant RLIMIT_CORE (line 680) | RLIMIT_CORE = 0x4 constant RLIMIT_CPU (line 681) | RLIMIT_CPU = 0x0 constant RLIMIT_DATA (line 682) | RLIMIT_DATA = 0x2 constant RLIMIT_FSIZE (line 683) | RLIMIT_FSIZE = 0x1 constant RLIMIT_NOFILE (line 684) | RLIMIT_NOFILE = 0x5 constant RLIMIT_STACK (line 685) | RLIMIT_STACK = 0x3 constant RLIM_INFINITY (line 686) | RLIM_INFINITY = -0x3 constant RTAX_AUTHOR (line 687) | RTAX_AUTHOR = 0x6 constant RTAX_BRD (line 688) | RTAX_BRD = 0x7 constant RTAX_DST (line 689) | RTAX_DST = 0x0 constant RTAX_GATEWAY (line 690) | RTAX_GATEWAY = 0x1 constant RTAX_GENMASK (line 691) | RTAX_GENMASK = 0x3 constant RTAX_IFA (line 692) | RTAX_IFA = 0x5 constant RTAX_IFP (line 693) | RTAX_IFP = 0x4 constant RTAX_MAX (line 694) | RTAX_MAX = 0x9 constant RTAX_NETMASK (line 695) | RTAX_NETMASK = 0x2 constant RTAX_SRC (line 696) | RTAX_SRC = 0x8 constant RTA_AUTHOR (line 697) | RTA_AUTHOR = 0x40 constant RTA_BRD (line 698) | RTA_BRD = 0x80 constant RTA_DST (line 699) | RTA_DST = 0x1 constant RTA_GATEWAY (line 700) | RTA_GATEWAY = 0x2 constant RTA_GENMASK (line 701) | RTA_GENMASK = 0x8 constant RTA_IFA (line 702) | RTA_IFA = 0x20 constant RTA_IFP (line 703) | RTA_IFP = 0x10 constant RTA_NETMASK (line 704) | RTA_NETMASK = 0x4 constant RTA_NUMBITS (line 705) | RTA_NUMBITS = 0x9 constant RTA_SRC (line 706) | RTA_SRC = 0x100 constant RTF_BLACKHOLE (line 707) | RTF_BLACKHOLE = 0x1000 constant RTF_CLONING (line 708) | RTF_CLONING = 0x100 constant RTF_DONE (line 709) | RTF_DONE = 0x40 constant RTF_DYNAMIC (line 710) | RTF_DYNAMIC = 0x10 constant RTF_GATEWAY (line 711) | RTF_GATEWAY = 0x2 constant RTF_HOST (line 712) | RTF_HOST = 0x4 constant RTF_INDIRECT (line 713) | RTF_INDIRECT = 0x40000 constant RTF_KERNEL (line 714) | RTF_KERNEL = 0x80000 constant RTF_LLINFO (line 715) | RTF_LLINFO = 0x400 constant RTF_MASK (line 716) | RTF_MASK = 0x80 constant RTF_MODIFIED (line 717) | RTF_MODIFIED = 0x20 constant RTF_MULTIRT (line 718) | RTF_MULTIRT = 0x10000 constant RTF_PRIVATE (line 719) | RTF_PRIVATE = 0x2000 constant RTF_PROTO1 (line 720) | RTF_PROTO1 = 0x8000 constant RTF_PROTO2 (line 721) | RTF_PROTO2 = 0x4000 constant RTF_REJECT (line 722) | RTF_REJECT = 0x8 constant RTF_SETSRC (line 723) | RTF_SETSRC = 0x20000 constant RTF_STATIC (line 724) | RTF_STATIC = 0x800 constant RTF_UP (line 725) | RTF_UP = 0x1 constant RTF_XRESOLVE (line 726) | RTF_XRESOLVE = 0x200 constant RTF_ZONE (line 727) | RTF_ZONE = 0x100000 constant RTM_ADD (line 728) | RTM_ADD = 0x1 constant RTM_CHANGE (line 729) | RTM_CHANGE = 0x3 constant RTM_CHGADDR (line 730) | RTM_CHGADDR = 0xf constant RTM_DELADDR (line 731) | RTM_DELADDR = 0xd constant RTM_DELETE (line 732) | RTM_DELETE = 0x2 constant RTM_FREEADDR (line 733) | RTM_FREEADDR = 0x10 constant RTM_GET (line 734) | RTM_GET = 0x4 constant RTM_IFINFO (line 735) | RTM_IFINFO = 0xe constant RTM_LOCK (line 736) | RTM_LOCK = 0x8 constant RTM_LOSING (line 737) | RTM_LOSING = 0x5 constant RTM_MISS (line 738) | RTM_MISS = 0x7 constant RTM_NEWADDR (line 739) | RTM_NEWADDR = 0xc constant RTM_OLDADD (line 740) | RTM_OLDADD = 0x9 constant RTM_OLDDEL (line 741) | RTM_OLDDEL = 0xa constant RTM_REDIRECT (line 742) | RTM_REDIRECT = 0x6 constant RTM_RESOLVE (line 743) | RTM_RESOLVE = 0xb constant RTM_VERSION (line 744) | RTM_VERSION = 0x3 constant RTV_EXPIRE (line 745) | RTV_EXPIRE = 0x4 constant RTV_HOPCOUNT (line 746) | RTV_HOPCOUNT = 0x2 constant RTV_MTU (line 747) | RTV_MTU = 0x1 constant RTV_RPIPE (line 748) | RTV_RPIPE = 0x8 constant RTV_RTT (line 749) | RTV_RTT = 0x40 constant RTV_RTTVAR (line 750) | RTV_RTTVAR = 0x80 constant RTV_SPIPE (line 751) | RTV_SPIPE = 0x10 constant RTV_SSTHRESH (line 752) | RTV_SSTHRESH = 0x20 constant RT_AWARE (line 753) | RT_AWARE = 0x1 constant RUSAGE_CHILDREN (line 754) | RUSAGE_CHILDREN = -0x1 constant RUSAGE_SELF (line 755) | RUSAGE_SELF = 0x0 constant SCM_RIGHTS (line 756) | SCM_RIGHTS = 0x1010 constant SCM_TIMESTAMP (line 757) | SCM_TIMESTAMP = 0x1013 constant SCM_UCRED (line 758) | SCM_UCRED = 0x1012 constant SHUT_RD (line 759) | SHUT_RD = 0x0 constant SHUT_RDWR (line 760) | SHUT_RDWR = 0x2 constant SHUT_WR (line 761) | SHUT_WR = 0x1 constant SIG2STR_MAX (line 762) | SIG2STR_MAX = 0x20 constant SIOCADDMULTI (line 763) | SIOCADDMULTI = -0x7fdf96cf constant SIOCADDRT (line 764) | SIOCADDRT = -0x7fcf8df6 constant SIOCATMARK (line 765) | SIOCATMARK = 0x40047307 constant SIOCDARP (line 766) | SIOCDARP = -0x7fdb96e0 constant SIOCDELMULTI (line 767) | SIOCDELMULTI = -0x7fdf96ce constant SIOCDELRT (line 768) | SIOCDELRT = -0x7fcf8df5 constant SIOCDXARP (line 769) | SIOCDXARP = -0x7fff9658 constant SIOCGARP (line 770) | SIOCGARP = -0x3fdb96e1 constant SIOCGDSTINFO (line 771) | SIOCGDSTINFO = -0x3fff965c constant SIOCGENADDR (line 772) | SIOCGENADDR = -0x3fdf96ab constant SIOCGENPSTATS (line 773) | SIOCGENPSTATS = -0x3fdf96c7 constant SIOCGETLSGCNT (line 774) | SIOCGETLSGCNT = -0x3fef8deb constant SIOCGETNAME (line 775) | SIOCGETNAME = 0x40107334 constant SIOCGETPEER (line 776) | SIOCGETPEER = 0x40107335 constant SIOCGETPROP (line 777) | SIOCGETPROP = -0x3fff8f44 constant SIOCGETSGCNT (line 778) | SIOCGETSGCNT = -0x3feb8deb constant SIOCGETSYNC (line 779) | SIOCGETSYNC = -0x3fdf96d3 constant SIOCGETVIFCNT (line 780) | SIOCGETVIFCNT = -0x3feb8dec constant SIOCGHIWAT (line 781) | SIOCGHIWAT = 0x40047301 constant SIOCGIFADDR (line 782) | SIOCGIFADDR = -0x3fdf96f3 constant SIOCGIFBRDADDR (line 783) | SIOCGIFBRDADDR = -0x3fdf96e9 constant SIOCGIFCONF (line 784) | SIOCGIFCONF = -0x3ff796a4 constant SIOCGIFDSTADDR (line 785) | SIOCGIFDSTADDR = -0x3fdf96f1 constant SIOCGIFFLAGS (line 786) | SIOCGIFFLAGS = -0x3fdf96ef constant SIOCGIFHWADDR (line 787) | SIOCGIFHWADDR = -0x3fdf9647 constant SIOCGIFINDEX (line 788) | SIOCGIFINDEX = -0x3fdf96a6 constant SIOCGIFMEM (line 789) | SIOCGIFMEM = -0x3fdf96ed constant SIOCGIFMETRIC (line 790) | SIOCGIFMETRIC = -0x3fdf96e5 constant SIOCGIFMTU (line 791) | SIOCGIFMTU = -0x3fdf96ea constant SIOCGIFMUXID (line 792) | SIOCGIFMUXID = -0x3fdf96a8 constant SIOCGIFNETMASK (line 793) | SIOCGIFNETMASK = -0x3fdf96e7 constant SIOCGIFNUM (line 794) | SIOCGIFNUM = 0x40046957 constant SIOCGIP6ADDRPOLICY (line 795) | SIOCGIP6ADDRPOLICY = -0x3fff965e constant SIOCGIPMSFILTER (line 796) | SIOCGIPMSFILTER = -0x3ffb964c constant SIOCGLIFADDR (line 797) | SIOCGLIFADDR = -0x3f87968f constant SIOCGLIFBINDING (line 798) | SIOCGLIFBINDING = -0x3f879666 constant SIOCGLIFBRDADDR (line 799) | SIOCGLIFBRDADDR = -0x3f879685 constant SIOCGLIFCONF (line 800) | SIOCGLIFCONF = -0x3fef965b constant SIOCGLIFDADSTATE (line 801) | SIOCGLIFDADSTATE = -0x3f879642 constant SIOCGLIFDSTADDR (line 802) | SIOCGLIFDSTADDR = -0x3f87968d constant SIOCGLIFFLAGS (line 803) | SIOCGLIFFLAGS = -0x3f87968b constant SIOCGLIFGROUPINFO (line 804) | SIOCGLIFGROUPINFO = -0x3f4b9663 constant SIOCGLIFGROUPNAME (line 805) | SIOCGLIFGROUPNAME = -0x3f879664 constant SIOCGLIFHWADDR (line 806) | SIOCGLIFHWADDR = -0x3f879640 constant SIOCGLIFINDEX (line 807) | SIOCGLIFINDEX = -0x3f87967b constant SIOCGLIFLNKINFO (line 808) | SIOCGLIFLNKINFO = -0x3f879674 constant SIOCGLIFMETRIC (line 809) | SIOCGLIFMETRIC = -0x3f879681 constant SIOCGLIFMTU (line 810) | SIOCGLIFMTU = -0x3f879686 constant SIOCGLIFMUXID (line 811) | SIOCGLIFMUXID = -0x3f87967d constant SIOCGLIFNETMASK (line 812) | SIOCGLIFNETMASK = -0x3f879683 constant SIOCGLIFNUM (line 813) | SIOCGLIFNUM = -0x3ff3967e constant SIOCGLIFSRCOF (line 814) | SIOCGLIFSRCOF = -0x3fef964f constant SIOCGLIFSUBNET (line 815) | SIOCGLIFSUBNET = -0x3f879676 constant SIOCGLIFTOKEN (line 816) | SIOCGLIFTOKEN = -0x3f879678 constant SIOCGLIFUSESRC (line 817) | SIOCGLIFUSESRC = -0x3f879651 constant SIOCGLIFZONE (line 818) | SIOCGLIFZONE = -0x3f879656 constant SIOCGLOWAT (line 819) | SIOCGLOWAT = 0x40047303 constant SIOCGMSFILTER (line 820) | SIOCGMSFILTER = -0x3ffb964e constant SIOCGPGRP (line 821) | SIOCGPGRP = 0x40047309 constant SIOCGSTAMP (line 822) | SIOCGSTAMP = -0x3fef9646 constant SIOCGXARP (line 823) | SIOCGXARP = -0x3fff9659 constant SIOCIFDETACH (line 824) | SIOCIFDETACH = -0x7fdf96c8 constant SIOCILB (line 825) | SIOCILB = -0x3ffb9645 constant SIOCLIFADDIF (line 826) | SIOCLIFADDIF = -0x3f879691 constant SIOCLIFDELND (line 827) | SIOCLIFDELND = -0x7f879673 constant SIOCLIFGETND (line 828) | SIOCLIFGETND = -0x3f879672 constant SIOCLIFREMOVEIF (line 829) | SIOCLIFREMOVEIF = -0x7f879692 constant SIOCLIFSETND (line 830) | SIOCLIFSETND = -0x7f879671 constant SIOCLOWER (line 831) | SIOCLOWER = -0x7fdf96d7 constant SIOCSARP (line 832) | SIOCSARP = -0x7fdb96e2 constant SIOCSCTPGOPT (line 833) | SIOCSCTPGOPT = -0x3fef9653 constant SIOCSCTPPEELOFF (line 834) | SIOCSCTPPEELOFF = -0x3ffb9652 constant SIOCSCTPSOPT (line 835) | SIOCSCTPSOPT = -0x7fef9654 constant SIOCSENABLESDP (line 836) | SIOCSENABLESDP = -0x3ffb9649 constant SIOCSETPROP (line 837) | SIOCSETPROP = -0x7ffb8f43 constant SIOCSETSYNC (line 838) | SIOCSETSYNC = -0x7fdf96d4 constant SIOCSHIWAT (line 839) | SIOCSHIWAT = -0x7ffb8d00 constant SIOCSIFADDR (line 840) | SIOCSIFADDR = -0x7fdf96f4 constant SIOCSIFBRDADDR (line 841) | SIOCSIFBRDADDR = -0x7fdf96e8 constant SIOCSIFDSTADDR (line 842) | SIOCSIFDSTADDR = -0x7fdf96f2 constant SIOCSIFFLAGS (line 843) | SIOCSIFFLAGS = -0x7fdf96f0 constant SIOCSIFINDEX (line 844) | SIOCSIFINDEX = -0x7fdf96a5 constant SIOCSIFMEM (line 845) | SIOCSIFMEM = -0x7fdf96ee constant SIOCSIFMETRIC (line 846) | SIOCSIFMETRIC = -0x7fdf96e4 constant SIOCSIFMTU (line 847) | SIOCSIFMTU = -0x7fdf96eb constant SIOCSIFMUXID (line 848) | SIOCSIFMUXID = -0x7fdf96a7 constant SIOCSIFNAME (line 849) | SIOCSIFNAME = -0x7fdf96b7 constant SIOCSIFNETMASK (line 850) | SIOCSIFNETMASK = -0x7fdf96e6 constant SIOCSIP6ADDRPOLICY (line 851) | SIOCSIP6ADDRPOLICY = -0x7fff965d constant SIOCSIPMSFILTER (line 852) | SIOCSIPMSFILTER = -0x7ffb964b constant SIOCSLGETREQ (line 853) | SIOCSLGETREQ = -0x3fdf96b9 constant SIOCSLIFADDR (line 854) | SIOCSLIFADDR = -0x7f879690 constant SIOCSLIFBRDADDR (line 855) | SIOCSLIFBRDADDR = -0x7f879684 constant SIOCSLIFDSTADDR (line 856) | SIOCSLIFDSTADDR = -0x7f87968e constant SIOCSLIFFLAGS (line 857) | SIOCSLIFFLAGS = -0x7f87968c constant SIOCSLIFGROUPNAME (line 858) | SIOCSLIFGROUPNAME = -0x7f879665 constant SIOCSLIFINDEX (line 859) | SIOCSLIFINDEX = -0x7f87967a constant SIOCSLIFLNKINFO (line 860) | SIOCSLIFLNKINFO = -0x7f879675 constant SIOCSLIFMETRIC (line 861) | SIOCSLIFMETRIC = -0x7f879680 constant SIOCSLIFMTU (line 862) | SIOCSLIFMTU = -0x7f879687 constant SIOCSLIFMUXID (line 863) | SIOCSLIFMUXID = -0x7f87967c constant SIOCSLIFNAME (line 864) | SIOCSLIFNAME = -0x3f87967f constant SIOCSLIFNETMASK (line 865) | SIOCSLIFNETMASK = -0x7f879682 constant SIOCSLIFPREFIX (line 866) | SIOCSLIFPREFIX = -0x3f879641 constant SIOCSLIFSUBNET (line 867) | SIOCSLIFSUBNET = -0x7f879677 constant SIOCSLIFTOKEN (line 868) | SIOCSLIFTOKEN = -0x7f879679 constant SIOCSLIFUSESRC (line 869) | SIOCSLIFUSESRC = -0x7f879650 constant SIOCSLIFZONE (line 870) | SIOCSLIFZONE = -0x7f879655 constant SIOCSLOWAT (line 871) | SIOCSLOWAT = -0x7ffb8cfe constant SIOCSLSTAT (line 872) | SIOCSLSTAT = -0x7fdf96b8 constant SIOCSMSFILTER (line 873) | SIOCSMSFILTER = -0x7ffb964d constant SIOCSPGRP (line 874) | SIOCSPGRP = -0x7ffb8cf8 constant SIOCSPROMISC (line 875) | SIOCSPROMISC = -0x7ffb96d0 constant SIOCSQPTR (line 876) | SIOCSQPTR = -0x3ffb9648 constant SIOCSSDSTATS (line 877) | SIOCSSDSTATS = -0x3fdf96d2 constant SIOCSSESTATS (line 878) | SIOCSSESTATS = -0x3fdf96d1 constant SIOCSXARP (line 879) | SIOCSXARP = -0x7fff965a constant SIOCTMYADDR (line 880) | SIOCTMYADDR = -0x3ff79670 constant SIOCTMYSITE (line 881) | SIOCTMYSITE = -0x3ff7966e constant SIOCTONLINK (line 882) | SIOCTONLINK = -0x3ff7966f constant SIOCUPPER (line 883) | SIOCUPPER = -0x7fdf96d8 constant SIOCX25RCV (line 884) | SIOCX25RCV = -0x3fdf96c4 constant SIOCX25TBL (line 885) | SIOCX25TBL = -0x3fdf96c3 constant SIOCX25XMT (line 886) | SIOCX25XMT = -0x3fdf96c5 constant SIOCXPROTO (line 887) | SIOCXPROTO = 0x20007337 constant SOCK_CLOEXEC (line 888) | SOCK_CLOEXEC = 0x80000 constant SOCK_DGRAM (line 889) | SOCK_DGRAM = 0x1 constant SOCK_NDELAY (line 890) | SOCK_NDELAY = 0x200000 constant SOCK_NONBLOCK (line 891) | SOCK_NONBLOCK = 0x100000 constant SOCK_RAW (line 892) | SOCK_RAW = 0x4 constant SOCK_RDM (line 893) | SOCK_RDM = 0x5 constant SOCK_SEQPACKET (line 894) | SOCK_SEQPACKET = 0x6 constant SOCK_STREAM (line 895) | SOCK_STREAM = 0x2 constant SOCK_TYPE_MASK (line 896) | SOCK_TYPE_MASK = 0xffff constant SOL_FILTER (line 897) | SOL_FILTER = 0xfffc constant SOL_PACKET (line 898) | SOL_PACKET = 0xfffd constant SOL_ROUTE (line 899) | SOL_ROUTE = 0xfffe constant SOL_SOCKET (line 900) | SOL_SOCKET = 0xffff constant SOMAXCONN (line 901) | SOMAXCONN = 0x80 constant SO_ACCEPTCONN (line 902) | SO_ACCEPTCONN = 0x2 constant SO_ALL (line 903) | SO_ALL = 0x3f constant SO_ALLZONES (line 904) | SO_ALLZONES = 0x1014 constant SO_ANON_MLP (line 905) | SO_ANON_MLP = 0x100a constant SO_ATTACH_FILTER (line 906) | SO_ATTACH_FILTER = 0x40000001 constant SO_BAND (line 907) | SO_BAND = 0x4000 constant SO_BROADCAST (line 908) | SO_BROADCAST = 0x20 constant SO_COPYOPT (line 909) | SO_COPYOPT = 0x80000 constant SO_DEBUG (line 910) | SO_DEBUG = 0x1 constant SO_DELIM (line 911) | SO_DELIM = 0x8000 constant SO_DETACH_FILTER (line 912) | SO_DETACH_FILTER = 0x40000002 constant SO_DGRAM_ERRIND (line 913) | SO_DGRAM_ERRIND = 0x200 constant SO_DOMAIN (line 914) | SO_DOMAIN = 0x100c constant SO_DONTLINGER (line 915) | SO_DONTLINGER = -0x81 constant SO_DONTROUTE (line 916) | SO_DONTROUTE = 0x10 constant SO_ERROPT (line 917) | SO_ERROPT = 0x40000 constant SO_ERROR (line 918) | SO_ERROR = 0x1007 constant SO_EXCLBIND (line 919) | SO_EXCLBIND = 0x1015 constant SO_HIWAT (line 920) | SO_HIWAT = 0x10 constant SO_ISNTTY (line 921) | SO_ISNTTY = 0x800 constant SO_ISTTY (line 922) | SO_ISTTY = 0x400 constant SO_KEEPALIVE (line 923) | SO_KEEPALIVE = 0x8 constant SO_LINGER (line 924) | SO_LINGER = 0x80 constant SO_LOWAT (line 925) | SO_LOWAT = 0x20 constant SO_MAC_EXEMPT (line 926) | SO_MAC_EXEMPT = 0x100b constant SO_MAC_IMPLICIT (line 927) | SO_MAC_IMPLICIT = 0x1016 constant SO_MAXBLK (line 928) | SO_MAXBLK = 0x100000 constant SO_MAXPSZ (line 929) | SO_MAXPSZ = 0x8 constant SO_MINPSZ (line 930) | SO_MINPSZ = 0x4 constant SO_MREADOFF (line 931) | SO_MREADOFF = 0x80 constant SO_MREADON (line 932) | SO_MREADON = 0x40 constant SO_NDELOFF (line 933) | SO_NDELOFF = 0x200 constant SO_NDELON (line 934) | SO_NDELON = 0x100 constant SO_NODELIM (line 935) | SO_NODELIM = 0x10000 constant SO_OOBINLINE (line 936) | SO_OOBINLINE = 0x100 constant SO_PROTOTYPE (line 937) | SO_PROTOTYPE = 0x1009 constant SO_RCVBUF (line 938) | SO_RCVBUF = 0x1002 constant SO_RCVLOWAT (line 939) | SO_RCVLOWAT = 0x1004 constant SO_RCVPSH (line 940) | SO_RCVPSH = 0x100d constant SO_RCVTIMEO (line 941) | SO_RCVTIMEO = 0x1006 constant SO_READOPT (line 942) | SO_READOPT = 0x1 constant SO_RECVUCRED (line 943) | SO_RECVUCRED = 0x400 constant SO_REUSEADDR (line 944) | SO_REUSEADDR = 0x4 constant SO_SECATTR (line 945) | SO_SECATTR = 0x1011 constant SO_SNDBUF (line 946) | SO_SNDBUF = 0x1001 constant SO_SNDLOWAT (line 947) | SO_SNDLOWAT = 0x1003 constant SO_SNDTIMEO (line 948) | SO_SNDTIMEO = 0x1005 constant SO_STRHOLD (line 949) | SO_STRHOLD = 0x20000 constant SO_TAIL (line 950) | SO_TAIL = 0x200000 constant SO_TIMESTAMP (line 951) | SO_TIMESTAMP = 0x1013 constant SO_TONSTOP (line 952) | SO_TONSTOP = 0x2000 constant SO_TOSTOP (line 953) | SO_TOSTOP = 0x1000 constant SO_TYPE (line 954) | SO_TYPE = 0x1008 constant SO_USELOOPBACK (line 955) | SO_USELOOPBACK = 0x40 constant SO_VRRP (line 956) | SO_VRRP = 0x1017 constant SO_WROFF (line 957) | SO_WROFF = 0x2 constant TCFLSH (line 958) | TCFLSH = 0x5407 constant TCGETA (line 959) | TCGETA = 0x5401 constant TCGETS (line 960) | TCGETS = 0x540d constant TCIFLUSH (line 961) | TCIFLUSH = 0x0 constant TCIOFLUSH (line 962) | TCIOFLUSH = 0x2 constant TCOFLUSH (line 963) | TCOFLUSH = 0x1 constant TCP_ABORT_THRESHOLD (line 964) | TCP_ABORT_THRESHOLD = 0x11 constant TCP_ANONPRIVBIND (line 965) | TCP_ANONPRIVBIND = 0x20 constant TCP_CONN_ABORT_THRESHOLD (line 966) | TCP_CONN_ABORT_THRESHOLD = 0x13 constant TCP_CONN_NOTIFY_THRESHOLD (line 967) | TCP_CONN_NOTIFY_THRESHOLD = 0x12 constant TCP_CORK (line 968) | TCP_CORK = 0x18 constant TCP_EXCLBIND (line 969) | TCP_EXCLBIND = 0x21 constant TCP_INIT_CWND (line 970) | TCP_INIT_CWND = 0x15 constant TCP_KEEPALIVE (line 971) | TCP_KEEPALIVE = 0x8 constant TCP_KEEPALIVE_ABORT_THRESHOLD (line 972) | TCP_KEEPALIVE_ABORT_THRESHOLD = 0x17 constant TCP_KEEPALIVE_THRESHOLD (line 973) | TCP_KEEPALIVE_THRESHOLD = 0x16 constant TCP_KEEPCNT (line 974) | TCP_KEEPCNT = 0x23 constant TCP_KEEPIDLE (line 975) | TCP_KEEPIDLE = 0x22 constant TCP_KEEPINTVL (line 976) | TCP_KEEPINTVL = 0x24 constant TCP_LINGER2 (line 977) | TCP_LINGER2 = 0x1c constant TCP_MAXSEG (line 978) | TCP_MAXSEG = 0x2 constant TCP_MSS (line 979) | TCP_MSS = 0x218 constant TCP_NODELAY (line 980) | TCP_NODELAY = 0x1 constant TCP_NOTIFY_THRESHOLD (line 981) | TCP_NOTIFY_THRESHOLD = 0x10 constant TCP_RECVDSTADDR (line 982) | TCP_RECVDSTADDR = 0x14 constant TCP_RTO_INITIAL (line 983) | TCP_RTO_INITIAL = 0x19 constant TCP_RTO_MAX (line 984) | TCP_RTO_MAX = 0x1b constant TCP_RTO_MIN (line 985) | TCP_RTO_MIN = 0x1a constant TCSAFLUSH (line 986) | TCSAFLUSH = 0x5410 constant TCSBRK (line 987) | TCSBRK = 0x5405 constant TCSETA (line 988) | TCSETA = 0x5402 constant TCSETAF (line 989) | TCSETAF = 0x5404 constant TCSETAW (line 990) | TCSETAW = 0x5403 constant TCSETS (line 991) | TCSETS = 0x540e constant TCSETSF (line 992) | TCSETSF = 0x5410 constant TCSETSW (line 993) | TCSETSW = 0x540f constant TCXONC (line 994) | TCXONC = 0x5406 constant TIOC (line 995) | TIOC = 0x5400 constant TIOCCBRK (line 996) | TIOCCBRK = 0x747a constant TIOCCDTR (line 997) | TIOCCDTR = 0x7478 constant TIOCCILOOP (line 998) | TIOCCILOOP = 0x746c constant TIOCEXCL (line 999) | TIOCEXCL = 0x740d constant TIOCFLUSH (line 1000) | TIOCFLUSH = 0x7410 constant TIOCGETC (line 1001) | TIOCGETC = 0x7412 constant TIOCGETD (line 1002) | TIOCGETD = 0x7400 constant TIOCGETP (line 1003) | TIOCGETP = 0x7408 constant TIOCGLTC (line 1004) | TIOCGLTC = 0x7474 constant TIOCGPGRP (line 1005) | TIOCGPGRP = 0x7414 constant TIOCGPPS (line 1006) | TIOCGPPS = 0x547d constant TIOCGPPSEV (line 1007) | TIOCGPPSEV = 0x547f constant TIOCGSID (line 1008) | TIOCGSID = 0x7416 constant TIOCGSOFTCAR (line 1009) | TIOCGSOFTCAR = 0x5469 constant TIOCGWINSZ (line 1010) | TIOCGWINSZ = 0x5468 constant TIOCHPCL (line 1011) | TIOCHPCL = 0x7402 constant TIOCKBOF (line 1012) | TIOCKBOF = 0x5409 constant TIOCKBON (line 1013) | TIOCKBON = 0x5408 constant TIOCLBIC (line 1014) | TIOCLBIC = 0x747e constant TIOCLBIS (line 1015) | TIOCLBIS = 0x747f constant TIOCLGET (line 1016) | TIOCLGET = 0x747c constant TIOCLSET (line 1017) | TIOCLSET = 0x747d constant TIOCMBIC (line 1018) | TIOCMBIC = 0x741c constant TIOCMBIS (line 1019) | TIOCMBIS = 0x741b constant TIOCMGET (line 1020) | TIOCMGET = 0x741d constant TIOCMSET (line 1021) | TIOCMSET = 0x741a constant TIOCM_CAR (line 1022) | TIOCM_CAR = 0x40 constant TIOCM_CD (line 1023) | TIOCM_CD = 0x40 constant TIOCM_CTS (line 1024) | TIOCM_CTS = 0x20 constant TIOCM_DSR (line 1025) | TIOCM_DSR = 0x100 constant TIOCM_DTR (line 1026) | TIOCM_DTR = 0x2 constant TIOCM_LE (line 1027) | TIOCM_LE = 0x1 constant TIOCM_RI (line 1028) | TIOCM_RI = 0x80 constant TIOCM_RNG (line 1029) | TIOCM_RNG = 0x80 constant TIOCM_RTS (line 1030) | TIOCM_RTS = 0x4 constant TIOCM_SR (line 1031) | TIOCM_SR = 0x10 constant TIOCM_ST (line 1032) | TIOCM_ST = 0x8 constant TIOCNOTTY (line 1033) | TIOCNOTTY = 0x7471 constant TIOCNXCL (line 1034) | TIOCNXCL = 0x740e constant TIOCOUTQ (line 1035) | TIOCOUTQ = 0x7473 constant TIOCREMOTE (line 1036) | TIOCREMOTE = 0x741e constant TIOCSBRK (line 1037) | TIOCSBRK = 0x747b constant TIOCSCTTY (line 1038) | TIOCSCTTY = 0x7484 constant TIOCSDTR (line 1039) | TIOCSDTR = 0x7479 constant TIOCSETC (line 1040) | TIOCSETC = 0x7411 constant TIOCSETD (line 1041) | TIOCSETD = 0x7401 constant TIOCSETN (line 1042) | TIOCSETN = 0x740a constant TIOCSETP (line 1043) | TIOCSETP = 0x7409 constant TIOCSIGNAL (line 1044) | TIOCSIGNAL = 0x741f constant TIOCSILOOP (line 1045) | TIOCSILOOP = 0x746d constant TIOCSLTC (line 1046) | TIOCSLTC = 0x7475 constant TIOCSPGRP (line 1047) | TIOCSPGRP = 0x7415 constant TIOCSPPS (line 1048) | TIOCSPPS = 0x547e constant TIOCSSOFTCAR (line 1049) | TIOCSSOFTCAR = 0x546a constant TIOCSTART (line 1050) | TIOCSTART = 0x746e constant TIOCSTI (line 1051) | TIOCSTI = 0x7417 constant TIOCSTOP (line 1052) | TIOCSTOP = 0x746f constant TIOCSWINSZ (line 1053) | TIOCSWINSZ = 0x5467 constant TOSTOP (line 1054) | TOSTOP = 0x100 constant VCEOF (line 1055) | VCEOF = 0x8 constant VCEOL (line 1056) | VCEOL = 0x9 constant VDISCARD (line 1057) | VDISCARD = 0xd constant VDSUSP (line 1058) | VDSUSP = 0xb constant VEOF (line 1059) | VEOF = 0x4 constant VEOL (line 1060) | VEOL = 0x5 constant VEOL2 (line 1061) | VEOL2 = 0x6 constant VERASE (line 1062) | VERASE = 0x2 constant VINTR (line 1063) | VINTR = 0x0 constant VKILL (line 1064) | VKILL = 0x3 constant VLNEXT (line 1065) | VLNEXT = 0xf constant VMIN (line 1066) | VMIN = 0x4 constant VQUIT (line 1067) | VQUIT = 0x1 constant VREPRINT (line 1068) | VREPRINT = 0xc constant VSTART (line 1069) | VSTART = 0x8 constant VSTATUS (line 1070) | VSTATUS = 0x10 constant VSTOP (line 1071) | VSTOP = 0x9 constant VSUSP (line 1072) | VSUSP = 0xa constant VSWTCH (line 1073) | VSWTCH = 0x7 constant VT0 (line 1074) | VT0 = 0x0 constant VT1 (line 1075) | VT1 = 0x4000 constant VTDLY (line 1076) | VTDLY = 0x4000 constant VTIME (line 1077) | VTIME = 0x5 constant VWERASE (line 1078) | VWERASE = 0xe constant WCONTFLG (line 1079) | WCONTFLG = 0xffff constant WCONTINUED (line 1080) | WCONTINUED = 0x8 constant WCOREFLG (line 1081) | WCOREFLG = 0x80 constant WEXITED (line 1082) | WEXITED = 0x1 constant WNOHANG (line 1083) | WNOHANG = 0x40 constant WNOWAIT (line 1084) | WNOWAIT = 0x80 constant WOPTMASK (line 1085) | WOPTMASK = 0xcf constant WRAP (line 1086) | WRAP = 0x20000 constant WSIGMASK (line 1087) | WSIGMASK = 0x7f constant WSTOPFLG (line 1088) | WSTOPFLG = 0x7f constant WSTOPPED (line 1089) | WSTOPPED = 0x4 constant WTRAPPED (line 1090) | WTRAPPED = 0x2 constant WUNTRACED (line 1091) | WUNTRACED = 0x4 constant E2BIG (line 1096) | E2BIG = syscall.Errno(0x7) constant EACCES (line 1097) | EACCES = syscall.Errno(0xd) constant EADDRINUSE (line 1098) | EADDRINUSE = syscall.Errno(0x7d) constant EADDRNOTAVAIL (line 1099) | EADDRNOTAVAIL = syscall.Errno(0x7e) constant EADV (line 1100) | EADV = syscall.Errno(0x44) constant EAFNOSUPPORT (line 1101) | EAFNOSUPPORT = syscall.Errno(0x7c) constant EAGAIN (line 1102) | EAGAIN = syscall.Errno(0xb) constant EALREADY (line 1103) | EALREADY = syscall.Errno(0x95) constant EBADE (line 1104) | EBADE = syscall.Errno(0x32) constant EBADF (line 1105) | EBADF = syscall.Errno(0x9) constant EBADFD (line 1106) | EBADFD = syscall.Errno(0x51) constant EBADMSG (line 1107) | EBADMSG = syscall.Errno(0x4d) constant EBADR (line 1108) | EBADR = syscall.Errno(0x33) constant EBADRQC (line 1109) | EBADRQC = syscall.Errno(0x36) constant EBADSLT (line 1110) | EBADSLT = syscall.Errno(0x37) constant EBFONT (line 1111) | EBFONT = syscall.Errno(0x39) constant EBUSY (line 1112) | EBUSY = syscall.Errno(0x10) constant ECANCELED (line 1113) | ECANCELED = syscall.Errno(0x2f) constant ECHILD (line 1114) | ECHILD = syscall.Errno(0xa) constant ECHRNG (line 1115) | ECHRNG = syscall.Errno(0x25) constant ECOMM (line 1116) | ECOMM = syscall.Errno(0x46) constant ECONNABORTED (line 1117) | ECONNABORTED = syscall.Errno(0x82) constant ECONNREFUSED (line 1118) | ECONNREFUSED = syscall.Errno(0x92) constant ECONNRESET (line 1119) | ECONNRESET = syscall.Errno(0x83) constant EDEADLK (line 1120) | EDEADLK = syscall.Errno(0x2d) constant EDEADLOCK (line 1121) | EDEADLOCK = syscall.Errno(0x38) constant EDESTADDRREQ (line 1122) | EDESTADDRREQ = syscall.Errno(0x60) constant EDOM (line 1123) | EDOM = syscall.Errno(0x21) constant EDQUOT (line 1124) | EDQUOT = syscall.Errno(0x31) constant EEXIST (line 1125) | EEXIST = syscall.Errno(0x11) constant EFAULT (line 1126) | EFAULT = syscall.Errno(0xe) constant EFBIG (line 1127) | EFBIG = syscall.Errno(0x1b) constant EHOSTDOWN (line 1128) | EHOSTDOWN = syscall.Errno(0x93) constant EHOSTUNREACH (line 1129) | EHOSTUNREACH = syscall.Errno(0x94) constant EIDRM (line 1130) | EIDRM = syscall.Errno(0x24) constant EILSEQ (line 1131) | EILSEQ = syscall.Errno(0x58) constant EINPROGRESS (line 1132) | EINPROGRESS = syscall.Errno(0x96) constant EINTR (line 1133) | EINTR = syscall.Errno(0x4) constant EINVAL (line 1134) | EINVAL = syscall.Errno(0x16) constant EIO (line 1135) | EIO = syscall.Errno(0x5) constant EISCONN (line 1136) | EISCONN = syscall.Errno(0x85) constant EISDIR (line 1137) | EISDIR = syscall.Errno(0x15) constant EL2HLT (line 1138) | EL2HLT = syscall.Errno(0x2c) constant EL2NSYNC (line 1139) | EL2NSYNC = syscall.Errno(0x26) constant EL3HLT (line 1140) | EL3HLT = syscall.Errno(0x27) constant EL3RST (line 1141) | EL3RST = syscall.Errno(0x28) constant ELIBACC (line 1142) | ELIBACC = syscall.Errno(0x53) constant ELIBBAD (line 1143) | ELIBBAD = syscall.Errno(0x54) constant ELIBEXEC (line 1144) | ELIBEXEC = syscall.Errno(0x57) constant ELIBMAX (line 1145) | ELIBMAX = syscall.Errno(0x56) constant ELIBSCN (line 1146) | ELIBSCN = syscall.Errno(0x55) constant ELNRNG (line 1147) | ELNRNG = syscall.Errno(0x29) constant ELOCKUNMAPPED (line 1148) | ELOCKUNMAPPED = syscall.Errno(0x48) constant ELOOP (line 1149) | ELOOP = syscall.Errno(0x5a) constant EMFILE (line 1150) | EMFILE = syscall.Errno(0x18) constant EMLINK (line 1151) | EMLINK = syscall.Errno(0x1f) constant EMSGSIZE (line 1152) | EMSGSIZE = syscall.Errno(0x61) constant EMULTIHOP (line 1153) | EMULTIHOP = syscall.Errno(0x4a) constant ENAMETOOLONG (line 1154) | ENAMETOOLONG = syscall.Errno(0x4e) constant ENETDOWN (line 1155) | ENETDOWN = syscall.Errno(0x7f) constant ENETRESET (line 1156) | ENETRESET = syscall.Errno(0x81) constant ENETUNREACH (line 1157) | ENETUNREACH = syscall.Errno(0x80) constant ENFILE (line 1158) | ENFILE = syscall.Errno(0x17) constant ENOANO (line 1159) | ENOANO = syscall.Errno(0x35) constant ENOBUFS (line 1160) | ENOBUFS = syscall.Errno(0x84) constant ENOCSI (line 1161) | ENOCSI = syscall.Errno(0x2b) constant ENODATA (line 1162) | ENODATA = syscall.Errno(0x3d) constant ENODEV (line 1163) | ENODEV = syscall.Errno(0x13) constant ENOENT (line 1164) | ENOENT = syscall.Errno(0x2) constant ENOEXEC (line 1165) | ENOEXEC = syscall.Errno(0x8) constant ENOLCK (line 1166) | ENOLCK = syscall.Errno(0x2e) constant ENOLINK (line 1167) | ENOLINK = syscall.Errno(0x43) constant ENOMEM (line 1168) | ENOMEM = syscall.Errno(0xc) constant ENOMSG (line 1169) | ENOMSG = syscall.Errno(0x23) constant ENONET (line 1170) | ENONET = syscall.Errno(0x40) constant ENOPKG (line 1171) | ENOPKG = syscall.Errno(0x41) constant ENOPROTOOPT (line 1172) | ENOPROTOOPT = syscall.Errno(0x63) constant ENOSPC (line 1173) | ENOSPC = syscall.Errno(0x1c) constant ENOSR (line 1174) | ENOSR = syscall.Errno(0x3f) constant ENOSTR (line 1175) | ENOSTR = syscall.Errno(0x3c) constant ENOSYS (line 1176) | ENOSYS = syscall.Errno(0x59) constant ENOTACTIVE (line 1177) | ENOTACTIVE = syscall.Errno(0x49) constant ENOTBLK (line 1178) | ENOTBLK = syscall.Errno(0xf) constant ENOTCONN (line 1179) | ENOTCONN = syscall.Errno(0x86) constant ENOTDIR (line 1180) | ENOTDIR = syscall.Errno(0x14) constant ENOTEMPTY (line 1181) | ENOTEMPTY = syscall.Errno(0x5d) constant ENOTRECOVERABLE (line 1182) | ENOTRECOVERABLE = syscall.Errno(0x3b) constant ENOTSOCK (line 1183) | ENOTSOCK = syscall.Errno(0x5f) constant ENOTSUP (line 1184) | ENOTSUP = syscall.Errno(0x30) constant ENOTTY (line 1185) | ENOTTY = syscall.Errno(0x19) constant ENOTUNIQ (line 1186) | ENOTUNIQ = syscall.Errno(0x50) constant ENXIO (line 1187) | ENXIO = syscall.Errno(0x6) constant EOPNOTSUPP (line 1188) | EOPNOTSUPP = syscall.Errno(0x7a) constant EOVERFLOW (line 1189) | EOVERFLOW = syscall.Errno(0x4f) constant EOWNERDEAD (line 1190) | EOWNERDEAD = syscall.Errno(0x3a) constant EPERM (line 1191) | EPERM = syscall.Errno(0x1) constant EPFNOSUPPORT (line 1192) | EPFNOSUPPORT = syscall.Errno(0x7b) constant EPIPE (line 1193) | EPIPE = syscall.Errno(0x20) constant EPROTO (line 1194) | EPROTO = syscall.Errno(0x47) constant EPROTONOSUPPORT (line 1195) | EPROTONOSUPPORT = syscall.Errno(0x78) constant EPROTOTYPE (line 1196) | EPROTOTYPE = syscall.Errno(0x62) constant ERANGE (line 1197) | ERANGE = syscall.Errno(0x22) constant EREMCHG (line 1198) | EREMCHG = syscall.Errno(0x52) constant EREMOTE (line 1199) | EREMOTE = syscall.Errno(0x42) constant ERESTART (line 1200) | ERESTART = syscall.Errno(0x5b) constant EROFS (line 1201) | EROFS = syscall.Errno(0x1e) constant ESHUTDOWN (line 1202) | ESHUTDOWN = syscall.Errno(0x8f) constant ESOCKTNOSUPPORT (line 1203) | ESOCKTNOSUPPORT = syscall.Errno(0x79) constant ESPIPE (line 1204) | ESPIPE = syscall.Errno(0x1d) constant ESRCH (line 1205) | ESRCH = syscall.Errno(0x3) constant ESRMNT (line 1206) | ESRMNT = syscall.Errno(0x45) constant ESTALE (line 1207) | ESTALE = syscall.Errno(0x97) constant ESTRPIPE (line 1208) | ESTRPIPE = syscall.Errno(0x5c) constant ETIME (line 1209) | ETIME = syscall.Errno(0x3e) constant ETIMEDOUT (line 1210) | ETIMEDOUT = syscall.Errno(0x91) constant ETOOMANYREFS (line 1211) | ETOOMANYREFS = syscall.Errno(0x90) constant ETXTBSY (line 1212) | ETXTBSY = syscall.Errno(0x1a) constant EUNATCH (line 1213) | EUNATCH = syscall.Errno(0x2a) constant EUSERS (line 1214) | EUSERS = syscall.Errno(0x5e) constant EWOULDBLOCK (line 1215) | EWOULDBLOCK = syscall.Errno(0xb) constant EXDEV (line 1216) | EXDEV = syscall.Errno(0x12) constant EXFULL (line 1217) | EXFULL = syscall.Errno(0x34) constant SIGABRT (line 1222) | SIGABRT = syscall.Signal(0x6) constant SIGALRM (line 1223) | SIGALRM = syscall.Signal(0xe) constant SIGBUS (line 1224) | SIGBUS = syscall.Signal(0xa) constant SIGCANCEL (line 1225) | SIGCANCEL = syscall.Signal(0x24) constant SIGCHLD (line 1226) | SIGCHLD = syscall.Signal(0x12) constant SIGCLD (line 1227) | SIGCLD = syscall.Signal(0x12) constant SIGCONT (line 1228) | SIGCONT = syscall.Signal(0x19) constant SIGEMT (line 1229) | SIGEMT = syscall.Signal(0x7) constant SIGFPE (line 1230) | SIGFPE = syscall.Signal(0x8) constant SIGFREEZE (line 1231) | SIGFREEZE = syscall.Signal(0x22) constant SIGHUP (line 1232) | SIGHUP = syscall.Signal(0x1) constant SIGILL (line 1233) | SIGILL = syscall.Signal(0x4) constant SIGINFO (line 1234) | SIGINFO = syscall.Signal(0x29) constant SIGINT (line 1235) | SIGINT = syscall.Signal(0x2) constant SIGIO (line 1236) | SIGIO = syscall.Signal(0x16) constant SIGIOT (line 1237) | SIGIOT = syscall.Signal(0x6) constant SIGJVM1 (line 1238) | SIGJVM1 = syscall.Signal(0x27) constant SIGJVM2 (line 1239) | SIGJVM2 = syscall.Signal(0x28) constant SIGKILL (line 1240) | SIGKILL = syscall.Signal(0x9) constant SIGLOST (line 1241) | SIGLOST = syscall.Signal(0x25) constant SIGLWP (line 1242) | SIGLWP = syscall.Signal(0x21) constant SIGPIPE (line 1243) | SIGPIPE = syscall.Signal(0xd) constant SIGPOLL (line 1244) | SIGPOLL = syscall.Signal(0x16) constant SIGPROF (line 1245) | SIGPROF = syscall.Signal(0x1d) constant SIGPWR (line 1246) | SIGPWR = syscall.Signal(0x13) constant SIGQUIT (line 1247) | SIGQUIT = syscall.Signal(0x3) constant SIGSEGV (line 1248) | SIGSEGV = syscall.Signal(0xb) constant SIGSTOP (line 1249) | SIGSTOP = syscall.Signal(0x17) constant SIGSYS (line 1250) | SIGSYS = syscall.Signal(0xc) constant SIGTERM (line 1251) | SIGTERM = syscall.Signal(0xf) constant SIGTHAW (line 1252) | SIGTHAW = syscall.Signal(0x23) constant SIGTRAP (line 1253) | SIGTRAP = syscall.Signal(0x5) constant SIGTSTP (line 1254) | SIGTSTP = syscall.Signal(0x18) constant SIGTTIN (line 1255) | SIGTTIN = syscall.Signal(0x1a) constant SIGTTOU (line 1256) | SIGTTOU = syscall.Signal(0x1b) constant SIGURG (line 1257) | SIGURG = syscall.Signal(0x15) constant SIGUSR1 (line 1258) | SIGUSR1 = syscall.Signal(0x10) constant SIGUSR2 (line 1259) | SIGUSR2 = syscall.Signal(0x11) constant SIGVTALRM (line 1260) | SIGVTALRM = syscall.Signal(0x1c) constant SIGWAITING (line 1261) | SIGWAITING = syscall.Signal(0x20) constant SIGWINCH (line 1262) | SIGWINCH = syscall.Signal(0x14) constant SIGXCPU (line 1263) | SIGXCPU = syscall.Signal(0x1e) constant SIGXFSZ (line 1264) | SIGXFSZ = syscall.Signal(0x1f) constant SIGXRES (line 1265) | SIGXRES = syscall.Signal(0x26) FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function ptrace (line 269) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 279) | func pipe() (r int, w int, err error) { function kill (line 291) | func kill(pid int, signum int, posix int) (err error) { function Access (line 301) | func Access(path string, mode uint32) (err error) { function Adjtime (line 316) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 326) | func Chdir(path string) (err error) { function Chflags (line 341) | func Chflags(path string, flags int) (err error) { function Chmod (line 356) | func Chmod(path string, mode uint32) (err error) { function Chown (line 371) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 386) | func Chroot(path string) (err error) { function Close (line 401) | func Close(fd int) (err error) { function Dup (line 411) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 422) | func Dup2(from int, to int) (err error) { function Exchangedata (line 432) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 452) | func Exit(code int) { function Fchdir (line 459) | func Fchdir(fd int) (err error) { function Fchflags (line 469) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 479) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 489) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 499) | func Flock(fd int, how int) (err error) { function Fpathconf (line 509) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 520) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 530) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 540) | func Fsync(fd int) (err error) { function Ftruncate (line 550) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 560) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 577) | func Getdtablesize() (size int) { function Getegid (line 585) | func Getegid() (egid int) { function Geteuid (line 593) | func Geteuid() (uid int) { function Getgid (line 601) | func Getgid() (gid int) { function Getpgid (line 609) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 620) | func Getpgrp() (pgrp int) { function Getpid (line 628) | func Getpid() (pid int) { function Getppid (line 636) | func Getppid() (ppid int) { function Getpriority (line 644) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 655) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 665) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 675) | func Getsid(pid int) (sid int, err error) { function Getuid (line 686) | func Getuid() (uid int) { function Issetugid (line 694) | func Issetugid() (tainted bool) { function Kqueue (line 702) | func Kqueue() (fd int, err error) { function Lchown (line 713) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 728) | func Link(path string, link string) (err error) { function Listen (line 748) | func Listen(s int, backlog int) (err error) { function Lstat (line 758) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 773) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 788) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 803) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 818) | func Mlock(b []byte) (err error) { function Mlockall (line 834) | func Mlockall(flags int) (err error) { function Mprotect (line 844) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 860) | func Munlock(b []byte) (err error) { function Munlockall (line 876) | func Munlockall() (err error) { function Open (line 886) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 902) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 918) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 935) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 952) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 969) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 991) | func Rename(from string, to string) (err error) { function Revoke (line 1011) | func Revoke(path string) (err error) { function Rmdir (line 1026) | func Rmdir(path string) (err error) { function Seek (line 1041) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1052) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1062) | func Setegid(egid int) (err error) { function Seteuid (line 1072) | func Seteuid(euid int) (err error) { function Setgid (line 1082) | func Setgid(gid int) (err error) { function Setlogin (line 1092) | func Setlogin(name string) (err error) { function Setpgid (line 1107) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1117) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1127) | func Setprivexec(flag int) (err error) { function Setregid (line 1137) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1147) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1157) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1167) | func Setsid() (pid int, err error) { function Settimeofday (line 1178) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1188) | func Setuid(uid int) (err error) { function Stat (line 1198) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1213) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1228) | func Symlink(path string, link string) (err error) { function Sync (line 1248) | func Sync() (err error) { function Truncate (line 1258) | func Truncate(path string, length int64) (err error) { function Umask (line 1273) | func Umask(newmask int) (oldmask int) { function Undelete (line 1281) | func Undelete(path string) (err error) { function Unlink (line 1296) | func Unlink(path string) (err error) { function Unmount (line 1311) | func Unmount(path string, flags int) (err error) { function write (line 1326) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1343) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1354) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1364) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1375) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1386) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function ptrace (line 269) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 279) | func pipe() (r int, w int, err error) { function kill (line 291) | func kill(pid int, signum int, posix int) (err error) { function Access (line 301) | func Access(path string, mode uint32) (err error) { function Adjtime (line 316) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 326) | func Chdir(path string) (err error) { function Chflags (line 341) | func Chflags(path string, flags int) (err error) { function Chmod (line 356) | func Chmod(path string, mode uint32) (err error) { function Chown (line 371) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 386) | func Chroot(path string) (err error) { function Close (line 401) | func Close(fd int) (err error) { function Dup (line 411) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 422) | func Dup2(from int, to int) (err error) { function Exchangedata (line 432) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 452) | func Exit(code int) { function Fchdir (line 459) | func Fchdir(fd int) (err error) { function Fchflags (line 469) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 479) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 489) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 499) | func Flock(fd int, how int) (err error) { function Fpathconf (line 509) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 520) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 530) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 540) | func Fsync(fd int) (err error) { function Ftruncate (line 550) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 560) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 577) | func Getdtablesize() (size int) { function Getegid (line 585) | func Getegid() (egid int) { function Geteuid (line 593) | func Geteuid() (uid int) { function Getgid (line 601) | func Getgid() (gid int) { function Getpgid (line 609) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 620) | func Getpgrp() (pgrp int) { function Getpid (line 628) | func Getpid() (pid int) { function Getppid (line 636) | func Getppid() (ppid int) { function Getpriority (line 644) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 655) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 665) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 675) | func Getsid(pid int) (sid int, err error) { function Getuid (line 686) | func Getuid() (uid int) { function Issetugid (line 694) | func Issetugid() (tainted bool) { function Kqueue (line 702) | func Kqueue() (fd int, err error) { function Lchown (line 713) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 728) | func Link(path string, link string) (err error) { function Listen (line 748) | func Listen(s int, backlog int) (err error) { function Lstat (line 758) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 773) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 788) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 803) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 818) | func Mlock(b []byte) (err error) { function Mlockall (line 834) | func Mlockall(flags int) (err error) { function Mprotect (line 844) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 860) | func Munlock(b []byte) (err error) { function Munlockall (line 876) | func Munlockall() (err error) { function Open (line 886) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 902) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 918) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 935) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 952) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 969) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 991) | func Rename(from string, to string) (err error) { function Revoke (line 1011) | func Revoke(path string) (err error) { function Rmdir (line 1026) | func Rmdir(path string) (err error) { function Seek (line 1041) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1052) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1062) | func Setegid(egid int) (err error) { function Seteuid (line 1072) | func Seteuid(euid int) (err error) { function Setgid (line 1082) | func Setgid(gid int) (err error) { function Setlogin (line 1092) | func Setlogin(name string) (err error) { function Setpgid (line 1107) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1117) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1127) | func Setprivexec(flag int) (err error) { function Setregid (line 1137) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1147) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1157) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1167) | func Setsid() (pid int, err error) { function Settimeofday (line 1178) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1188) | func Setuid(uid int) (err error) { function Stat (line 1198) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1213) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1228) | func Symlink(path string, link string) (err error) { function Sync (line 1248) | func Sync() (err error) { function Truncate (line 1258) | func Truncate(path string, length int64) (err error) { function Umask (line 1273) | func Umask(newmask int) (oldmask int) { function Undelete (line 1281) | func Undelete(path string) (err error) { function Unlink (line 1296) | func Unlink(path string) (err error) { function Unmount (line 1311) | func Unmount(path string, flags int) (err error) { function write (line 1326) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1343) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1354) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1364) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1375) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function Fchmodat (line 1386) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function gettimeofday (line 1401) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function ptrace (line 269) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 279) | func pipe() (r int, w int, err error) { function kill (line 291) | func kill(pid int, signum int, posix int) (err error) { function Access (line 301) | func Access(path string, mode uint32) (err error) { function Adjtime (line 316) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 326) | func Chdir(path string) (err error) { function Chflags (line 341) | func Chflags(path string, flags int) (err error) { function Chmod (line 356) | func Chmod(path string, mode uint32) (err error) { function Chown (line 371) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 386) | func Chroot(path string) (err error) { function Close (line 401) | func Close(fd int) (err error) { function Dup (line 411) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 422) | func Dup2(from int, to int) (err error) { function Exchangedata (line 432) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 452) | func Exit(code int) { function Fchdir (line 459) | func Fchdir(fd int) (err error) { function Fchflags (line 469) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 479) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 489) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 499) | func Flock(fd int, how int) (err error) { function Fpathconf (line 509) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 520) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 530) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 540) | func Fsync(fd int) (err error) { function Ftruncate (line 550) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 560) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 577) | func Getdtablesize() (size int) { function Getegid (line 585) | func Getegid() (egid int) { function Geteuid (line 593) | func Geteuid() (uid int) { function Getgid (line 601) | func Getgid() (gid int) { function Getpgid (line 609) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 620) | func Getpgrp() (pgrp int) { function Getpid (line 628) | func Getpid() (pid int) { function Getppid (line 636) | func Getppid() (ppid int) { function Getpriority (line 644) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 655) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 665) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 675) | func Getsid(pid int) (sid int, err error) { function Getuid (line 686) | func Getuid() (uid int) { function Issetugid (line 694) | func Issetugid() (tainted bool) { function Kqueue (line 702) | func Kqueue() (fd int, err error) { function Lchown (line 713) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 728) | func Link(path string, link string) (err error) { function Listen (line 748) | func Listen(s int, backlog int) (err error) { function Lstat (line 758) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 773) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 788) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 803) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 818) | func Mlock(b []byte) (err error) { function Mlockall (line 834) | func Mlockall(flags int) (err error) { function Mprotect (line 844) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 860) | func Munlock(b []byte) (err error) { function Munlockall (line 876) | func Munlockall() (err error) { function Open (line 886) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 902) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 918) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 935) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 952) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 969) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 991) | func Rename(from string, to string) (err error) { function Revoke (line 1011) | func Revoke(path string) (err error) { function Rmdir (line 1026) | func Rmdir(path string) (err error) { function Seek (line 1041) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1052) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1062) | func Setegid(egid int) (err error) { function Seteuid (line 1072) | func Seteuid(euid int) (err error) { function Setgid (line 1082) | func Setgid(gid int) (err error) { function Setlogin (line 1092) | func Setlogin(name string) (err error) { function Setpgid (line 1107) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1117) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1127) | func Setprivexec(flag int) (err error) { function Setregid (line 1137) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1147) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1157) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1167) | func Setsid() (pid int, err error) { function Settimeofday (line 1178) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1188) | func Setuid(uid int) (err error) { function Stat (line 1198) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1213) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1228) | func Symlink(path string, link string) (err error) { function Sync (line 1248) | func Sync() (err error) { function Truncate (line 1258) | func Truncate(path string, length int64) (err error) { function Umask (line 1273) | func Umask(newmask int) (oldmask int) { function Undelete (line 1281) | func Undelete(path string) (err error) { function Unlink (line 1296) | func Unlink(path string) (err error) { function Unmount (line 1311) | func Unmount(path string, flags int) (err error) { function write (line 1326) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1343) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1354) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1364) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1375) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1386) | func gettimeofday(tp *Timeval) (sec int32, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function ptrace (line 269) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function pipe (line 279) | func pipe() (r int, w int, err error) { function kill (line 291) | func kill(pid int, signum int, posix int) (err error) { function Access (line 301) | func Access(path string, mode uint32) (err error) { function Adjtime (line 316) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 326) | func Chdir(path string) (err error) { function Chflags (line 341) | func Chflags(path string, flags int) (err error) { function Chmod (line 356) | func Chmod(path string, mode uint32) (err error) { function Chown (line 371) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 386) | func Chroot(path string) (err error) { function Close (line 401) | func Close(fd int) (err error) { function Dup (line 411) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 422) | func Dup2(from int, to int) (err error) { function Exchangedata (line 432) | func Exchangedata(path1 string, path2 string, options int) (err error) { function Exit (line 452) | func Exit(code int) { function Fchdir (line 459) | func Fchdir(fd int) (err error) { function Fchflags (line 469) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 479) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 489) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 499) | func Flock(fd int, how int) (err error) { function Fpathconf (line 509) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 520) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 530) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 540) | func Fsync(fd int) (err error) { function Ftruncate (line 550) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 560) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 577) | func Getdtablesize() (size int) { function Getegid (line 585) | func Getegid() (egid int) { function Geteuid (line 593) | func Geteuid() (uid int) { function Getgid (line 601) | func Getgid() (gid int) { function Getpgid (line 609) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 620) | func Getpgrp() (pgrp int) { function Getpid (line 628) | func Getpid() (pid int) { function Getppid (line 636) | func Getppid() (ppid int) { function Getpriority (line 644) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 655) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 665) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 675) | func Getsid(pid int) (sid int, err error) { function Getuid (line 686) | func Getuid() (uid int) { function Issetugid (line 694) | func Issetugid() (tainted bool) { function Kqueue (line 702) | func Kqueue() (fd int, err error) { function Lchown (line 713) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 728) | func Link(path string, link string) (err error) { function Listen (line 748) | func Listen(s int, backlog int) (err error) { function Lstat (line 758) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 773) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 788) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 803) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 818) | func Mlock(b []byte) (err error) { function Mlockall (line 834) | func Mlockall(flags int) (err error) { function Mprotect (line 844) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 860) | func Munlock(b []byte) (err error) { function Munlockall (line 876) | func Munlockall() (err error) { function Open (line 886) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 902) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 918) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 935) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 952) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 969) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 991) | func Rename(from string, to string) (err error) { function Revoke (line 1011) | func Revoke(path string) (err error) { function Rmdir (line 1026) | func Rmdir(path string) (err error) { function Seek (line 1041) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1052) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1062) | func Setegid(egid int) (err error) { function Seteuid (line 1072) | func Seteuid(euid int) (err error) { function Setgid (line 1082) | func Setgid(gid int) (err error) { function Setlogin (line 1092) | func Setlogin(name string) (err error) { function Setpgid (line 1107) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1117) | func Setpriority(which int, who int, prio int) (err error) { function Setprivexec (line 1127) | func Setprivexec(flag int) (err error) { function Setregid (line 1137) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1147) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1157) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1167) | func Setsid() (pid int, err error) { function Settimeofday (line 1178) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1188) | func Setuid(uid int) (err error) { function Stat (line 1198) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1213) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1228) | func Symlink(path string, link string) (err error) { function Sync (line 1248) | func Sync() (err error) { function Truncate (line 1258) | func Truncate(path string, length int64) (err error) { function Umask (line 1273) | func Umask(newmask int) (oldmask int) { function Undelete (line 1281) | func Undelete(path string) (err error) { function Unlink (line 1296) | func Unlink(path string) (err error) { function Unmount (line 1311) | func Unmount(path string, flags int) (err error) { function write (line 1326) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1343) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1354) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1364) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1375) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function gettimeofday (line 1386) | func gettimeofday(tp *Timeval) (sec int64, usec int32, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (r int, w int, err error) { function extpread (line 281) | func extpread(fd int, p []byte, flags int, offset int64) (n int, err err... function extpwrite (line 298) | func extpwrite(fd int, p []byte, flags int, offset int64) (n int, err er... function Access (line 315) | func Access(path string, mode uint32) (err error) { function Adjtime (line 330) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 340) | func Chdir(path string) (err error) { function Chflags (line 355) | func Chflags(path string, flags int) (err error) { function Chmod (line 370) | func Chmod(path string, mode uint32) (err error) { function Chown (line 385) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 400) | func Chroot(path string) (err error) { function Close (line 415) | func Close(fd int) (err error) { function Dup (line 425) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 436) | func Dup2(from int, to int) (err error) { function Exit (line 446) | func Exit(code int) { function Fchdir (line 453) | func Fchdir(fd int) (err error) { function Fchflags (line 463) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 473) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 483) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 493) | func Flock(fd int, how int) (err error) { function Fpathconf (line 503) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 514) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 524) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 534) | func Fsync(fd int) (err error) { function Ftruncate (line 544) | func Ftruncate(fd int, length int64) (err error) { function Getdirentries (line 554) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 571) | func Getdtablesize() (size int) { function Getegid (line 579) | func Getegid() (egid int) { function Geteuid (line 587) | func Geteuid() (uid int) { function Getgid (line 595) | func Getgid() (gid int) { function Getpgid (line 603) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 614) | func Getpgrp() (pgrp int) { function Getpid (line 622) | func Getpid() (pid int) { function Getppid (line 630) | func Getppid() (ppid int) { function Getpriority (line 638) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 649) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 659) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 669) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 680) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 690) | func Getuid() (uid int) { function Issetugid (line 698) | func Issetugid() (tainted bool) { function Kill (line 706) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 716) | func Kqueue() (fd int, err error) { function Lchown (line 727) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 742) | func Link(path string, link string) (err error) { function Listen (line 762) | func Listen(s int, backlog int) (err error) { function Lstat (line 772) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 787) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 802) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 817) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 832) | func Mlock(b []byte) (err error) { function Mlockall (line 848) | func Mlockall(flags int) (err error) { function Mprotect (line 858) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 874) | func Munlock(b []byte) (err error) { function Munlockall (line 890) | func Munlockall() (err error) { function Nanosleep (line 900) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 910) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 926) | func Pathconf(path string, name int) (val int, err error) { function read (line 942) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 959) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 981) | func Rename(from string, to string) (err error) { function Revoke (line 1001) | func Revoke(path string) (err error) { function Rmdir (line 1016) | func Rmdir(path string) (err error) { function Seek (line 1031) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1042) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1052) | func Setegid(egid int) (err error) { function Seteuid (line 1062) | func Seteuid(euid int) (err error) { function Setgid (line 1072) | func Setgid(gid int) (err error) { function Setlogin (line 1082) | func Setlogin(name string) (err error) { function Setpgid (line 1097) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1107) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1117) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1127) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1137) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1147) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1157) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1167) | func Setsid() (pid int, err error) { function Settimeofday (line 1178) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1188) | func Setuid(uid int) (err error) { function Stat (line 1198) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1213) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1228) | func Symlink(path string, link string) (err error) { function Sync (line 1248) | func Sync() (err error) { function Truncate (line 1258) | func Truncate(path string, length int64) (err error) { function Umask (line 1273) | func Umask(newmask int) (oldmask int) { function Undelete (line 1281) | func Undelete(path string) (err error) { function Unlink (line 1296) | func Unlink(path string) (err error) { function Unmount (line 1311) | func Unmount(path string, flags int) (err error) { function write (line 1326) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1343) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1354) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1364) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1375) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (r int, w int, err error) { function Access (line 281) | func Access(path string, mode uint32) (err error) { function Adjtime (line 296) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 306) | func Chdir(path string) (err error) { function Chflags (line 321) | func Chflags(path string, flags int) (err error) { function Chmod (line 336) | func Chmod(path string, mode uint32) (err error) { function Chown (line 351) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 366) | func Chroot(path string) (err error) { function Close (line 381) | func Close(fd int) (err error) { function Dup (line 391) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 402) | func Dup2(from int, to int) (err error) { function Exit (line 412) | func Exit(code int) { function ExtattrGetFd (line 419) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 435) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 451) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 466) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 477) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 498) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 519) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 539) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 555) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 576) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 597) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 617) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 633) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 643) | func Fchdir(fd int) (err error) { function Fchflags (line 653) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 663) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 673) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 683) | func Flock(fd int, how int) (err error) { function Fpathconf (line 693) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 704) | func Fstat(fd int, stat *Stat_t) (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 Getdirentries (line 744) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 761) | func Getdtablesize() (size int) { function Getegid (line 769) | func Getegid() (egid int) { function Geteuid (line 777) | func Geteuid() (uid int) { function Getgid (line 785) | func Getgid() (gid int) { function Getpgid (line 793) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 804) | func Getpgrp() (pgrp int) { function Getpid (line 812) | func Getpid() (pid int) { function Getppid (line 820) | func Getppid() (ppid int) { function Getpriority (line 828) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 839) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 849) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 859) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 870) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 880) | func Getuid() (uid int) { function Issetugid (line 888) | func Issetugid() (tainted bool) { function Kill (line 896) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 906) | func Kqueue() (fd int, err error) { function Lchown (line 917) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 932) | func Link(path string, link string) (err error) { function Listen (line 952) | func Listen(s int, backlog int) (err error) { function Lstat (line 962) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 977) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 992) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1007) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 1022) | func Mlock(b []byte) (err error) { function Mlockall (line 1038) | func Mlockall(flags int) (err error) { function Mprotect (line 1048) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 1064) | func Munlock(b []byte) (err error) { function Munlockall (line 1080) | func Munlockall() (err error) { function Nanosleep (line 1090) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1100) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 1116) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1132) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1149) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1166) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1183) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1205) | func Rename(from string, to string) (err error) { function Revoke (line 1225) | func Revoke(path string) (err error) { function Rmdir (line 1240) | func Rmdir(path string) (err error) { function Seek (line 1255) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1266) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1276) | func Setegid(egid int) (err error) { function Seteuid (line 1286) | func Seteuid(euid int) (err error) { function Setgid (line 1296) | func Setgid(gid int) (err error) { function Setlogin (line 1306) | func Setlogin(name string) (err error) { function Setpgid (line 1321) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1331) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1341) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1351) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1361) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1371) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1381) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1391) | func Setsid() (pid int, err error) { function Settimeofday (line 1402) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1412) | func Setuid(uid int) (err error) { function Stat (line 1422) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1437) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1452) | func Symlink(path string, link string) (err error) { function Sync (line 1472) | func Sync() (err error) { function Truncate (line 1482) | func Truncate(path string, length int64) (err error) { function Umask (line 1497) | func Umask(newmask int) (oldmask int) { function Undelete (line 1505) | func Undelete(path string) (err error) { function Unlink (line 1520) | func Unlink(path string) (err error) { function Unmount (line 1535) | func Unmount(path string, flags int) (err error) { function write (line 1550) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1567) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1578) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1588) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1599) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1610) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (r int, w int, err error) { function Access (line 281) | func Access(path string, mode uint32) (err error) { function Adjtime (line 296) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 306) | func Chdir(path string) (err error) { function Chflags (line 321) | func Chflags(path string, flags int) (err error) { function Chmod (line 336) | func Chmod(path string, mode uint32) (err error) { function Chown (line 351) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 366) | func Chroot(path string) (err error) { function Close (line 381) | func Close(fd int) (err error) { function Dup (line 391) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 402) | func Dup2(from int, to int) (err error) { function Exit (line 412) | func Exit(code int) { function ExtattrGetFd (line 419) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 435) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 451) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 466) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 477) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 498) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 519) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 539) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 555) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 576) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 597) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 617) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 633) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 643) | func Fchdir(fd int) (err error) { function Fchflags (line 653) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 663) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 673) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 683) | func Flock(fd int, how int) (err error) { function Fpathconf (line 693) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 704) | func Fstat(fd int, stat *Stat_t) (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 Getdirentries (line 744) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 761) | func Getdtablesize() (size int) { function Getegid (line 769) | func Getegid() (egid int) { function Geteuid (line 777) | func Geteuid() (uid int) { function Getgid (line 785) | func Getgid() (gid int) { function Getpgid (line 793) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 804) | func Getpgrp() (pgrp int) { function Getpid (line 812) | func Getpid() (pid int) { function Getppid (line 820) | func Getppid() (ppid int) { function Getpriority (line 828) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 839) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 849) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 859) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 870) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 880) | func Getuid() (uid int) { function Issetugid (line 888) | func Issetugid() (tainted bool) { function Kill (line 896) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 906) | func Kqueue() (fd int, err error) { function Lchown (line 917) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 932) | func Link(path string, link string) (err error) { function Listen (line 952) | func Listen(s int, backlog int) (err error) { function Lstat (line 962) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 977) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 992) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1007) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 1022) | func Mlock(b []byte) (err error) { function Mlockall (line 1038) | func Mlockall(flags int) (err error) { function Mprotect (line 1048) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 1064) | func Munlock(b []byte) (err error) { function Munlockall (line 1080) | func Munlockall() (err error) { function Nanosleep (line 1090) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1100) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 1116) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1132) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1149) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1166) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1183) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1205) | func Rename(from string, to string) (err error) { function Revoke (line 1225) | func Revoke(path string) (err error) { function Rmdir (line 1240) | func Rmdir(path string) (err error) { function Seek (line 1255) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1266) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1276) | func Setegid(egid int) (err error) { function Seteuid (line 1286) | func Seteuid(euid int) (err error) { function Setgid (line 1296) | func Setgid(gid int) (err error) { function Setlogin (line 1306) | func Setlogin(name string) (err error) { function Setpgid (line 1321) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1331) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1341) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1351) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1361) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1371) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1381) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1391) | func Setsid() (pid int, err error) { function Settimeofday (line 1402) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1412) | func Setuid(uid int) (err error) { function Stat (line 1422) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1437) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1452) | func Symlink(path string, link string) (err error) { function Sync (line 1472) | func Sync() (err error) { function Truncate (line 1482) | func Truncate(path string, length int64) (err error) { function Umask (line 1497) | func Umask(newmask int) (oldmask int) { function Undelete (line 1505) | func Undelete(path string) (err error) { function Unlink (line 1520) | func Unlink(path string) (err error) { function Unmount (line 1535) | func Unmount(path string, flags int) (err error) { function write (line 1550) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1567) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1578) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1588) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1599) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1610) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... FILE: vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (r int, w int, err error) { function Access (line 281) | func Access(path string, mode uint32) (err error) { function Adjtime (line 296) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 306) | func Chdir(path string) (err error) { function Chflags (line 321) | func Chflags(path string, flags int) (err error) { function Chmod (line 336) | func Chmod(path string, mode uint32) (err error) { function Chown (line 351) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 366) | func Chroot(path string) (err error) { function Close (line 381) | func Close(fd int) (err error) { function Dup (line 391) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 402) | func Dup2(from int, to int) (err error) { function Exit (line 412) | func Exit(code int) { function ExtattrGetFd (line 419) | func ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrSetFd (line 435) | func ExtattrSetFd(fd int, attrnamespace int, attrname string, data uintp... function ExtattrDeleteFd (line 451) | func ExtattrDeleteFd(fd int, attrnamespace int, attrname string) (err er... function ExtattrListFd (line 466) | func ExtattrListFd(fd int, attrnamespace int, data uintptr, nbytes int) ... function ExtattrGetFile (line 477) | func ExtattrGetFile(file string, attrnamespace int, attrname string, dat... function ExtattrSetFile (line 498) | func ExtattrSetFile(file string, attrnamespace int, attrname string, dat... function ExtattrDeleteFile (line 519) | func ExtattrDeleteFile(file string, attrnamespace int, attrname string) ... function ExtattrListFile (line 539) | func ExtattrListFile(file string, attrnamespace int, data uintptr, nbyte... function ExtattrGetLink (line 555) | func ExtattrGetLink(link string, attrnamespace int, attrname string, dat... function ExtattrSetLink (line 576) | func ExtattrSetLink(link string, attrnamespace int, attrname string, dat... function ExtattrDeleteLink (line 597) | func ExtattrDeleteLink(link string, attrnamespace int, attrname string) ... function ExtattrListLink (line 617) | func ExtattrListLink(link string, attrnamespace int, data uintptr, nbyte... function Fadvise (line 633) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchdir (line 643) | func Fchdir(fd int) (err error) { function Fchflags (line 653) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 663) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 673) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 683) | func Flock(fd int, how int) (err error) { function Fpathconf (line 693) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 704) | func Fstat(fd int, stat *Stat_t) (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 Getdirentries (line 744) | func Getdirentries(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getdtablesize (line 761) | func Getdtablesize() (size int) { function Getegid (line 769) | func Getegid() (egid int) { function Geteuid (line 777) | func Geteuid() (uid int) { function Getgid (line 785) | func Getgid() (gid int) { function Getpgid (line 793) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 804) | func Getpgrp() (pgrp int) { function Getpid (line 812) | func Getpid() (pid int) { function Getppid (line 820) | func Getppid() (ppid int) { function Getpriority (line 828) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 839) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 849) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 859) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 870) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 880) | func Getuid() (uid int) { function Issetugid (line 888) | func Issetugid() (tainted bool) { function Kill (line 896) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 906) | func Kqueue() (fd int, err error) { function Lchown (line 917) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 932) | func Link(path string, link string) (err error) { function Listen (line 952) | func Listen(s int, backlog int) (err error) { function Lstat (line 962) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 977) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 992) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 1007) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 1022) | func Mlock(b []byte) (err error) { function Mlockall (line 1038) | func Mlockall(flags int) (err error) { function Mprotect (line 1048) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 1064) | func Munlock(b []byte) (err error) { function Munlockall (line 1080) | func Munlockall() (err error) { function Nanosleep (line 1090) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1100) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 1116) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 1132) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1149) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1166) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1183) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1205) | func Rename(from string, to string) (err error) { function Revoke (line 1225) | func Revoke(path string) (err error) { function Rmdir (line 1240) | func Rmdir(path string) (err error) { function Seek (line 1255) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1266) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1276) | func Setegid(egid int) (err error) { function Seteuid (line 1286) | func Seteuid(euid int) (err error) { function Setgid (line 1296) | func Setgid(gid int) (err error) { function Setlogin (line 1306) | func Setlogin(name string) (err error) { function Setpgid (line 1321) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1331) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1341) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1351) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1361) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1371) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1381) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1391) | func Setsid() (pid int, err error) { function Settimeofday (line 1402) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1412) | func Setuid(uid int) (err error) { function Stat (line 1422) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1437) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1452) | func Symlink(path string, link string) (err error) { function Sync (line 1472) | func Sync() (err error) { function Truncate (line 1482) | func Truncate(path string, length int64) (err error) { function Umask (line 1497) | func Umask(newmask int) (oldmask int) { function Undelete (line 1505) | func Undelete(path string) (err error) { function Unlink (line 1520) | func Unlink(path string) (err error) { function Unmount (line 1535) | func Unmount(path string, flags int) (err error) { function write (line 1550) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1567) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1578) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1588) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1599) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { function accept4 (line 1610) | func accept4(fd int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) ... FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_386.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function pipe (line 1197) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1207) | func pipe2(p *[2]_C_int, flags int) (err error) { function Dup2 (line 1217) | func Dup2(oldfd int, newfd int) (err error) { function Fadvise (line 1227) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 1237) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1247) | func Fstat(fd int, stat *Stat_t) (err error) { function Ftruncate (line 1257) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1267) | func Getegid() (egid int) { function Geteuid (line 1275) | func Geteuid() (euid int) { function Getgid (line 1283) | func Getgid() (gid int) { function Getuid (line 1291) | func Getuid() (uid int) { function InotifyInit (line 1299) | func InotifyInit() (fd int, err error) { function Ioperm (line 1310) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1320) | func Iopl(level int) (err error) { function Lchown (line 1330) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 1345) | func Lstat(path string, stat *Stat_t) (err error) { function Pread (line 1360) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1377) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function sendfile (line 1394) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1405) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1415) | func Setfsuid(uid int) (err error) { function Setregid (line 1425) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1435) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1445) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1455) | func Setreuid(ruid int, euid int) (err error) { function Splice (line 1465) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1476) | func Stat(path string, stat *Stat_t) (err error) { function SyncFileRange (line 1491) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1501) | func Truncate(path string, length int64) (err error) { function getgroups (line 1516) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1527) | func setgroups(n int, list *_Gid_t) (err error) { function Select (line 1537) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function mmap2 (line 1548) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function EpollWait (line 1559) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 1576) | func Pause() (err error) { function getrlimit (line 1586) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 1596) | func setrlimit(resource int, rlim *rlimit32) (err error) { function Gettimeofday (line 1606) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1616) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 1627) | func Utime(path string, buf *Utimbuf) (err error) { function poll (line 1642) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function Dup2 (line 1197) | func Dup2(oldfd int, newfd int) (err error) { function EpollWait (line 1207) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 1224) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 1234) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1244) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1254) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1264) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1274) | func Getegid() (egid int) { function Geteuid (line 1282) | func Geteuid() (euid int) { function Getgid (line 1290) | func Getgid() (gid int) { function Getrlimit (line 1298) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1308) | func Getuid() (uid int) { function InotifyInit (line 1316) | func InotifyInit() (fd int, err error) { function Ioperm (line 1327) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1337) | func Iopl(level int) (err error) { function Lchown (line 1347) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1362) | func Listen(s int, n int) (err error) { function Lstat (line 1372) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1387) | func Pause() (err error) { function Pread (line 1397) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1414) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1431) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1442) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1453) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1464) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1474) | func Setfsuid(uid int) (err error) { function Setregid (line 1484) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1494) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1504) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1514) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1524) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1534) | func Shutdown(fd int, how int) (err error) { function Splice (line 1544) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1555) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1570) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1585) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1595) | func Truncate(path string, length int64) (err error) { function accept (line 1610) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1621) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1632) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1642) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1652) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1663) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1673) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1683) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1693) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1704) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1714) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1724) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1734) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1751) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1767) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1778) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1789) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Utime (line 1800) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 1815) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1825) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1835) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function pipe2 (line 1197) | func pipe2(p *[2]_C_int, flags int) (err error) { function accept (line 1207) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1218) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1229) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1239) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1249) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1260) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1270) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1280) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1290) | func socket(domain int, typ int, proto int) (fd int, err error) { function getpeername (line 1301) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1311) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1321) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1338) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function socketpair (line 1354) | func socketpair(domain int, typ int, flags int, fd *[2]int32) (err error) { function recvmsg (line 1364) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1375) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function Dup2 (line 1386) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1396) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1406) | func Fstat(fd int, stat *Stat_t) (err error) { function Getegid (line 1416) | func Getegid() (egid int) { function Geteuid (line 1424) | func Geteuid() (euid int) { function Getgid (line 1432) | func Getgid() (gid int) { function Getuid (line 1440) | func Getuid() (uid int) { function InotifyInit (line 1448) | func InotifyInit() (fd int, err error) { function Lchown (line 1459) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1474) | func Listen(s int, n int) (err error) { function Lstat (line 1484) | func Lstat(path string, stat *Stat_t) (err error) { function sendfile (line 1499) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Select (line 1510) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function Setfsgid (line 1521) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1531) | func Setfsuid(uid int) (err error) { function Setregid (line 1541) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1551) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1561) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1571) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1581) | func Shutdown(fd int, how int) (err error) { function Splice (line 1591) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1602) | func Stat(path string, stat *Stat_t) (err error) { function Gettimeofday (line 1617) | func Gettimeofday(tv *Timeval) (err error) { function EpollWait (line 1627) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 1644) | func Pause() (err error) { function Pread (line 1654) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1671) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Truncate (line 1688) | func Truncate(path string, length int64) (err error) { function Ftruncate (line 1703) | func Ftruncate(fd int, length int64) (err error) { function mmap2 (line 1713) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 1724) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 1734) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 1744) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function EpollWait (line 1197) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 1214) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1224) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatat (line 1234) | func Fstatat(fd int, path string, stat *Stat_t, flags int) (err error) { function Fstatfs (line 1249) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1259) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1269) | func Getegid() (egid int) { function Geteuid (line 1277) | func Geteuid() (euid int) { function Getgid (line 1285) | func Getgid() (gid int) { function Getrlimit (line 1293) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1303) | func Getuid() (uid int) { function Listen (line 1311) | func Listen(s int, n int) (err error) { function Pread (line 1321) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1338) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1355) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1366) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1377) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1388) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1398) | func Setfsuid(uid int) (err error) { function Setregid (line 1408) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1418) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1428) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1438) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1448) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1458) | func Shutdown(fd int, how int) (err error) { function Splice (line 1468) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 1479) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1494) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1504) | func Truncate(path string, length int64) (err error) { function accept (line 1519) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1530) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1541) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1551) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1561) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1572) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1582) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1592) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1602) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1613) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1623) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1633) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1643) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1660) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1676) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1687) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1698) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1709) | func Gettimeofday(tv *Timeval) (err error) { function pipe2 (line 1719) | func pipe2(p *[2]_C_int, flags int) (err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function Dup2 (line 1197) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1207) | func Fchown(fd int, uid int, gid int) (err error) { function Ftruncate (line 1217) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1227) | func Getegid() (egid int) { function Geteuid (line 1235) | func Geteuid() (euid int) { function Getgid (line 1243) | func Getgid() (gid int) { function Getuid (line 1251) | func Getuid() (uid int) { function Lchown (line 1259) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1274) | func Listen(s int, n int) (err error) { function Pread (line 1284) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1301) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Select (line 1318) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1329) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1340) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1350) | func Setfsuid(uid int) (err error) { function Setregid (line 1360) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1370) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1380) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1390) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1400) | func Shutdown(fd int, how int) (err error) { function Splice (line 1410) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function SyncFileRange (line 1421) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1431) | func Truncate(path string, length int64) (err error) { function accept (line 1446) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1457) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1468) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1478) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1488) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1499) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1509) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1519) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1529) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1540) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1550) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1560) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1570) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1587) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1603) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1614) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function InotifyInit (line 1625) | func InotifyInit() (fd int, err error) { function Ioperm (line 1636) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1646) | func Iopl(level int) (err error) { function Gettimeofday (line 1656) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1666) | func Time(t *Time_t) (tt Time_t, err error) { function Lstat (line 1677) | func Lstat(path string, stat *Stat_t) (err error) { function Fstat (line 1692) | func Fstat(fd int, stat *Stat_t) (err error) { function Stat (line 1702) | func Stat(path string, stat *Stat_t) (err error) { function Utime (line 1717) | func Utime(path string, buf *Utimbuf) (err error) { function EpollWait (line 1732) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 1749) | func Pause() (err error) { function pipe2 (line 1759) | func pipe2(p *[2]_C_int, flags int) (err error) { function mmap2 (line 1769) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 1780) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 1790) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 1800) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function EpollWait (line 1197) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 1214) | func Fchown(fd int, uid int, gid int) (err error) { function Fstatfs (line 1224) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1234) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1244) | func Getegid() (egid int) { function Geteuid (line 1252) | func Geteuid() (euid int) { function Getgid (line 1260) | func Getgid() (gid int) { function Getrlimit (line 1268) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1278) | func Getuid() (uid int) { function Lchown (line 1286) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1301) | func Listen(s int, n int) (err error) { function Pause (line 1311) | func Pause() (err error) { function Pread (line 1321) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1338) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1355) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1366) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1377) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1388) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1398) | func Setfsuid(uid int) (err error) { function Setregid (line 1408) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1418) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1428) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1438) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1448) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1458) | func Shutdown(fd int, how int) (err error) { function Splice (line 1468) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 1479) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1494) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1504) | func Truncate(path string, length int64) (err error) { function accept (line 1519) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1530) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1541) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1551) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1561) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1572) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1582) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1592) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1602) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1613) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1623) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1633) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1643) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1660) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1676) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1687) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1698) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1709) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 1719) | func Utime(path string, buf *Utimbuf) (err error) { function pipe2 (line 1734) | func pipe2(p *[2]_C_int, flags int) (err error) { function fstat (line 1744) | func fstat(fd int, st *stat_t) (err error) { function lstat (line 1754) | func lstat(path string, st *stat_t) (err error) { function stat (line 1769) | func stat(path string, st *stat_t) (err error) { function poll (line 1784) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function EpollWait (line 1197) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fchown (line 1214) | func Fchown(fd int, uid int, gid int) (err error) { function Fstatfs (line 1224) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1234) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1244) | func Getegid() (egid int) { function Geteuid (line 1252) | func Geteuid() (euid int) { function Getgid (line 1260) | func Getgid() (gid int) { function Getrlimit (line 1268) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1278) | func Getuid() (uid int) { function Lchown (line 1286) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1301) | func Listen(s int, n int) (err error) { function Pause (line 1311) | func Pause() (err error) { function Pread (line 1321) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1338) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1355) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1366) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1377) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1388) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1398) | func Setfsuid(uid int) (err error) { function Setregid (line 1408) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1418) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1428) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1438) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1448) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1458) | func Shutdown(fd int, how int) (err error) { function Splice (line 1468) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Statfs (line 1479) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1494) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1504) | func Truncate(path string, length int64) (err error) { function accept (line 1519) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1530) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1541) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1551) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1561) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1572) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1582) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1592) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1602) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1613) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1623) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1633) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1643) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1660) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1676) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1687) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1698) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1709) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 1719) | func Utime(path string, buf *Utimbuf) (err error) { function pipe2 (line 1734) | func pipe2(p *[2]_C_int, flags int) (err error) { function fstat (line 1744) | func fstat(fd int, st *stat_t) (err error) { function lstat (line 1754) | func lstat(path string, st *stat_t) (err error) { function stat (line 1769) | func stat(path string, st *stat_t) (err error) { function poll (line 1784) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function Dup2 (line 1197) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1207) | func Fchown(fd int, uid int, gid int) (err error) { function Ftruncate (line 1217) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1227) | func Getegid() (egid int) { function Geteuid (line 1235) | func Geteuid() (euid int) { function Getgid (line 1243) | func Getgid() (gid int) { function Getuid (line 1251) | func Getuid() (uid int) { function Lchown (line 1259) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1274) | func Listen(s int, n int) (err error) { function Pread (line 1284) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1301) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Select (line 1318) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1329) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1340) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1350) | func Setfsuid(uid int) (err error) { function Setregid (line 1360) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1370) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1380) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setreuid (line 1390) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1400) | func Shutdown(fd int, how int) (err error) { function Splice (line 1410) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function SyncFileRange (line 1421) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1431) | func Truncate(path string, length int64) (err error) { function accept (line 1446) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1457) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1468) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1478) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1488) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1499) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1509) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1519) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1529) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1540) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1550) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1560) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1570) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1587) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1603) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1614) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function InotifyInit (line 1625) | func InotifyInit() (fd int, err error) { function Ioperm (line 1636) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1646) | func Iopl(level int) (err error) { function Gettimeofday (line 1656) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1666) | func Time(t *Time_t) (tt Time_t, err error) { function Lstat (line 1677) | func Lstat(path string, stat *Stat_t) (err error) { function Fstat (line 1692) | func Fstat(fd int, stat *Stat_t) (err error) { function Stat (line 1702) | func Stat(path string, stat *Stat_t) (err error) { function Utime (line 1717) | func Utime(path string, buf *Utimbuf) (err error) { function EpollWait (line 1732) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Pause (line 1749) | func Pause() (err error) { function pipe2 (line 1759) | func pipe2(p *[2]_C_int, flags int) (err error) { function mmap2 (line 1769) | func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pa... function getrlimit (line 1780) | func getrlimit(resource int, rlim *rlimit32) (err error) { function setrlimit (line 1790) | func setrlimit(resource int, rlim *rlimit32) (err error) { function poll (line 1800) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function EpollWait (line 1197) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Dup2 (line 1214) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1224) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1234) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1244) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1254) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1264) | func Getegid() (egid int) { function Geteuid (line 1272) | func Geteuid() (euid int) { function Getgid (line 1280) | func Getgid() (gid int) { function Getrlimit (line 1288) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1298) | func Getuid() (uid int) { function InotifyInit (line 1306) | func InotifyInit() (fd int, err error) { function Ioperm (line 1317) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1327) | func Iopl(level int) (err error) { function Lchown (line 1337) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1352) | func Listen(s int, n int) (err error) { function Lstat (line 1362) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1377) | func Pause() (err error) { function Pread (line 1387) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1404) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1421) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1432) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1443) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1454) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1464) | func Setfsuid(uid int) (err error) { function Setregid (line 1474) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1484) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1494) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1504) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1514) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1524) | func Shutdown(fd int, how int) (err error) { function Splice (line 1534) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1545) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1560) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1575) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1585) | func Truncate(path string, length int64) (err error) { function accept (line 1600) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1611) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1622) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1632) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1642) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1653) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1663) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1673) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1683) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1694) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1704) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1714) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1724) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1741) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1757) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1768) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1779) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1790) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1800) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 1811) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 1826) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1836) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1846) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function EpollWait (line 1197) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Dup2 (line 1214) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1224) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1234) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1244) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1254) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1264) | func Getegid() (egid int) { function Geteuid (line 1272) | func Geteuid() (euid int) { function Getgid (line 1280) | func Getgid() (gid int) { function Getrlimit (line 1288) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1298) | func Getuid() (uid int) { function InotifyInit (line 1306) | func InotifyInit() (fd int, err error) { function Ioperm (line 1317) | func Ioperm(from int, num int, on int) (err error) { function Iopl (line 1327) | func Iopl(level int) (err error) { function Lchown (line 1337) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1352) | func Listen(s int, n int) (err error) { function Lstat (line 1362) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1377) | func Pause() (err error) { function Pread (line 1387) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1404) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1421) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1432) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1443) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1454) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1464) | func Setfsuid(uid int) (err error) { function Setregid (line 1474) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1484) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1494) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1504) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1514) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1524) | func Shutdown(fd int, how int) (err error) { function Splice (line 1534) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1545) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1560) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1575) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1585) | func Truncate(path string, length int64) (err error) { function accept (line 1600) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1611) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1622) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1632) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1642) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1653) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1663) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1673) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1683) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1694) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1704) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1714) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1724) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1741) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1757) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1768) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1779) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1790) | func Gettimeofday(tv *Timeval) (err error) { function Time (line 1800) | func Time(t *Time_t) (tt Time_t, err error) { function Utime (line 1811) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 1826) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1836) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1846) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function Dup2 (line 1197) | func Dup2(oldfd int, newfd int) (err error) { function EpollWait (line 1207) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Fadvise (line 1224) | func Fadvise(fd int, offset int64, length int64, advice int) (err error) { function Fchown (line 1234) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1244) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1254) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1264) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1274) | func Getegid() (egid int) { function Geteuid (line 1282) | func Geteuid() (euid int) { function Getgid (line 1290) | func Getgid() (gid int) { function Getrlimit (line 1298) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1308) | func Getuid() (uid int) { function InotifyInit (line 1316) | func InotifyInit() (fd int, err error) { function Lchown (line 1327) | func Lchown(path string, uid int, gid int) (err error) { function Lstat (line 1342) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1357) | func Pause() (err error) { function Pread (line 1367) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1384) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1401) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1412) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1423) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1434) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1444) | func Setfsuid(uid int) (err error) { function Setregid (line 1454) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1464) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1474) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1484) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1494) | func Setreuid(ruid int, euid int) (err error) { function Splice (line 1504) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1515) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1530) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1545) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1555) | func Truncate(path string, length int64) (err error) { function getgroups (line 1570) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1581) | func setgroups(n int, list *_Gid_t) (err error) { function Gettimeofday (line 1591) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 1601) | func Utime(path string, buf *Utimbuf) (err error) { function pipe2 (line 1616) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1626) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go function Linkat (line 17) | func Linkat(olddirfd int, oldpath string, newdirfd int, newpath string, ... function openat (line 37) | func openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function ppoll (line 53) | func ppoll(fds *PollFd, nfds int, timeout *Timespec, sigmask *Sigset_t) ... function Readlinkat (line 64) | func Readlinkat(dirfd int, path string, buf []byte) (n int, err error) { function Symlinkat (line 86) | func Symlinkat(oldpath string, newdirfd int, newpath string) (err error) { function Unlinkat (line 106) | func Unlinkat(dirfd int, path string, flags int) (err error) { function utimes (line 121) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 136) | func utimensat(dirfd int, path string, times *[2]Timespec, flags int) (e... function futimesat (line 151) | func futimesat(dirfd int, path *byte, times *[2]Timeval) (err error) { function Getcwd (line 161) | func Getcwd(buf []byte) (n int, err error) { function wait4 (line 178) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function ptrace (line 189) | func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { function reboot (line 199) | func reboot(magic1 uint, magic2 uint, cmd int, arg string) (err error) { function mount (line 214) | func mount(source string, target string, fstype string, flags uintptr, d... function Acct (line 239) | func Acct(path string) (err error) { function Adjtimex (line 254) | func Adjtimex(buf *Timex) (state int, err error) { function Chdir (line 265) | func Chdir(path string) (err error) { function Chroot (line 280) | func Chroot(path string) (err error) { function ClockGettime (line 295) | func ClockGettime(clockid int32, time *Timespec) (err error) { function Close (line 305) | func Close(fd int) (err error) { function Dup (line 315) | func Dup(oldfd int) (fd int, err error) { function Dup3 (line 326) | func Dup3(oldfd int, newfd int, flags int) (err error) { function EpollCreate (line 336) | func EpollCreate(size int) (fd int, err error) { function EpollCreate1 (line 347) | func EpollCreate1(flag int) (fd int, err error) { function EpollCtl (line 358) | func EpollCtl(epfd int, op int, fd int, event *EpollEvent) (err error) { function Exit (line 368) | func Exit(code int) { function Faccessat (line 375) | func Faccessat(dirfd int, path string, mode uint32, flags int) (err erro... function Fallocate (line 390) | func Fallocate(fd int, mode uint32, off int64, len int64) (err error) { function Fchdir (line 400) | func Fchdir(fd int) (err error) { function Fchmod (line 410) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 420) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchownat (line 435) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function fcntl (line 450) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function Fdatasync (line 461) | func Fdatasync(fd int) (err error) { function Flock (line 471) | func Flock(fd int, how int) (err error) { function Fsync (line 481) | func Fsync(fd int) (err error) { function Getdents (line 491) | func Getdents(fd int, buf []byte) (n int, err error) { function Getpgid (line 508) | func Getpgid(pid int) (pgid int, err error) { function Getpid (line 519) | func Getpid() (pid int) { function Getppid (line 527) | func Getppid() (ppid int) { function Getpriority (line 535) | func Getpriority(which int, who int) (prio int, err error) { function Getrandom (line 546) | func Getrandom(buf []byte, flags int) (n int, err error) { function Getrusage (line 563) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 573) | func Getsid(pid int) (sid int, err error) { function Gettid (line 584) | func Gettid() (tid int) { function Getxattr (line 592) | func Getxattr(path string, attr string, dest []byte) (sz int, err error) { function InotifyAddWatch (line 619) | func InotifyAddWatch(fd int, pathname string, mask uint32) (watchdesc in... function InotifyInit1 (line 635) | func InotifyInit1(flags int) (fd int, err error) { function InotifyRmWatch (line 646) | func InotifyRmWatch(fd int, watchdesc uint32) (success int, err error) { function Kill (line 657) | func Kill(pid int, sig syscall.Signal) (err error) { function Klogctl (line 667) | func Klogctl(typ int, buf []byte) (n int, err error) { function Listxattr (line 684) | func Listxattr(path string, dest []byte) (sz int, err error) { function Mkdirat (line 706) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mknodat (line 721) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Nanosleep (line 736) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function PivotRoot (line 746) | func PivotRoot(newroot string, putold string) (err error) { function prlimit (line 766) | func prlimit(pid int, resource int, newlimit *Rlimit, old *Rlimit) (err ... function Prctl (line 776) | func Prctl(option int, arg2 uintptr, arg3 uintptr, arg4 uintptr, arg5 ui... function read (line 786) | func read(fd int, p []byte) (n int, err error) { function Removexattr (line 803) | func Removexattr(path string, attr string) (err error) { function Renameat (line 823) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Setdomainname (line 843) | func Setdomainname(p []byte) (err error) { function Sethostname (line 859) | func Sethostname(p []byte) (err error) { function Setpgid (line 875) | func Setpgid(pid int, pgid int) (err error) { function Setsid (line 885) | func Setsid() (pid int, err error) { function Settimeofday (line 896) | func Settimeofday(tv *Timeval) (err error) { function Setns (line 906) | func Setns(fd int, nstype int) (err error) { function Setpriority (line 916) | func Setpriority(which int, who int, prio int) (err error) { function Setxattr (line 926) | func Setxattr(path string, attr string, data []byte, flags int) (err err... function Sync (line 952) | func Sync() { function Sysinfo (line 959) | func Sysinfo(info *Sysinfo_t) (err error) { function Tee (line 969) | func Tee(rfd int, wfd int, len int, flags int) (n int64, err error) { function Tgkill (line 980) | func Tgkill(tgid int, tid int, sig syscall.Signal) (err error) { function Times (line 990) | func Times(tms *Tms) (ticks uintptr, err error) { function Umask (line 1001) | func Umask(mask int) (oldmask int) { function Uname (line 1009) | func Uname(buf *Utsname) (err error) { function Unmount (line 1019) | func Unmount(target string, flags int) (err error) { function Unshare (line 1034) | func Unshare(flags int) (err error) { function Ustat (line 1044) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function write (line 1054) | func write(fd int, p []byte) (n int, err error) { function exitThread (line 1071) | func exitThread(code int) (err error) { function readlen (line 1081) | func readlen(fd int, p *byte, np int) (n int, err error) { function writelen (line 1092) | func writelen(fd int, p *byte, np int) (n int, err error) { function munmap (line 1103) | func munmap(addr uintptr, length uintptr) (err error) { function Madvise (line 1113) | func Madvise(b []byte, advice int) (err error) { function Mprotect (line 1129) | func Mprotect(b []byte, prot int) (err error) { function Mlock (line 1145) | func Mlock(b []byte) (err error) { function Munlock (line 1161) | func Munlock(b []byte) (err error) { function Mlockall (line 1177) | func Mlockall(flags int) (err error) { function Munlockall (line 1187) | func Munlockall() (err error) { function EpollWait (line 1197) | func EpollWait(epfd int, events []EpollEvent, msec int) (n int, err erro... function Dup2 (line 1214) | func Dup2(oldfd int, newfd int) (err error) { function Fchown (line 1224) | func Fchown(fd int, uid int, gid int) (err error) { function Fstat (line 1234) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 1244) | func Fstatfs(fd int, buf *Statfs_t) (err error) { function Ftruncate (line 1254) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 1264) | func Getegid() (egid int) { function Geteuid (line 1272) | func Geteuid() (euid int) { function Getgid (line 1280) | func Getgid() (gid int) { function Getrlimit (line 1288) | func Getrlimit(resource int, rlim *Rlimit) (err error) { function Getuid (line 1298) | func Getuid() (uid int) { function InotifyInit (line 1306) | func InotifyInit() (fd int, err error) { function Lchown (line 1317) | func Lchown(path string, uid int, gid int) (err error) { function Listen (line 1332) | func Listen(s int, n int) (err error) { function Lstat (line 1342) | func Lstat(path string, stat *Stat_t) (err error) { function Pause (line 1357) | func Pause() (err error) { function Pread (line 1367) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1384) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function Seek (line 1401) | func Seek(fd int, offset int64, whence int) (off int64, err error) { function Select (line 1412) | func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n ... function sendfile (line 1423) | func sendfile(outfd int, infd int, offset *int64, count int) (written in... function Setfsgid (line 1434) | func Setfsgid(gid int) (err error) { function Setfsuid (line 1444) | func Setfsuid(uid int) (err error) { function Setregid (line 1454) | func Setregid(rgid int, egid int) (err error) { function Setresgid (line 1464) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1474) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1484) | func Setrlimit(resource int, rlim *Rlimit) (err error) { function Setreuid (line 1494) | func Setreuid(ruid int, euid int) (err error) { function Shutdown (line 1504) | func Shutdown(fd int, how int) (err error) { function Splice (line 1514) | func Splice(rfd int, roff *int64, wfd int, woff *int64, len int, flags i... function Stat (line 1525) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1540) | func Statfs(path string, buf *Statfs_t) (err error) { function SyncFileRange (line 1555) | func SyncFileRange(fd int, off int64, n int64, flags int) (err error) { function Truncate (line 1565) | func Truncate(path string, length int64) (err error) { function accept (line 1580) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function accept4 (line 1591) | func accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (... function bind (line 1602) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1612) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function getgroups (line 1622) | func getgroups(n int, list *_Gid_t) (nn int, err error) { function setgroups (line 1633) | func setgroups(n int, list *_Gid_t) (err error) { function getsockopt (line 1643) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 1653) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function socket (line 1663) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1674) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function getpeername (line 1684) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 1694) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function recvfrom (line 1704) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 1721) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 1737) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 1748) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function mmap (line 1759) | func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, off... function Gettimeofday (line 1770) | func Gettimeofday(tv *Timeval) (err error) { function Utime (line 1780) | func Utime(path string, buf *Utimbuf) (err error) { function pipe (line 1795) | func pipe(p *[2]_C_int) (err error) { function pipe2 (line 1805) | func pipe2(p *[2]_C_int, flags int) (err error) { function poll (line 1815) | func poll(fds *PollFd, nfds int, timeout int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (fd1 int, fd2 int, err error) { function getdents (line 281) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 298) | func Access(path string, mode uint32) (err error) { function Adjtime (line 313) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 323) | func Chdir(path string) (err error) { function Chflags (line 338) | func Chflags(path string, flags int) (err error) { function Chmod (line 353) | func Chmod(path string, mode uint32) (err error) { function Chown (line 368) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 383) | func Chroot(path string) (err error) { function Close (line 398) | func Close(fd int) (err error) { function Dup (line 408) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 419) | func Dup2(from int, to int) (err error) { function Exit (line 429) | func Exit(code int) { function Fchdir (line 436) | func Fchdir(fd int) (err error) { function Fchflags (line 446) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 456) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 466) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 476) | func Flock(fd int, how int) (err error) { function Fpathconf (line 486) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 497) | func Fstat(fd int, stat *Stat_t) (err error) { function Fsync (line 507) | func Fsync(fd int) (err error) { function Ftruncate (line 517) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 527) | func Getegid() (egid int) { function Geteuid (line 535) | func Geteuid() (uid int) { function Getgid (line 543) | func Getgid() (gid int) { function Getpgid (line 551) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 562) | func Getpgrp() (pgrp int) { function Getpid (line 570) | func Getpid() (pid int) { function Getppid (line 578) | func Getppid() (ppid int) { function Getpriority (line 586) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 597) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 607) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 617) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 628) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 638) | func Getuid() (uid int) { function Issetugid (line 646) | func Issetugid() (tainted bool) { function Kill (line 654) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 664) | func Kqueue() (fd int, err error) { function Lchown (line 675) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 690) | func Link(path string, link string) (err error) { function Listen (line 710) | func Listen(s int, backlog int) (err error) { function Lstat (line 720) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 735) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 750) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 765) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 780) | func Mlock(b []byte) (err error) { function Mlockall (line 796) | func Mlockall(flags int) (err error) { function Mprotect (line 806) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 822) | func Munlock(b []byte) (err error) { function Munlockall (line 838) | func Munlockall() (err error) { function Nanosleep (line 848) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 858) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 874) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 890) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 907) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 924) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 941) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 963) | func Rename(from string, to string) (err error) { function Revoke (line 983) | func Revoke(path string) (err error) { function Rmdir (line 998) | func Rmdir(path string) (err error) { function Seek (line 1013) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1024) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1034) | func Setegid(egid int) (err error) { function Seteuid (line 1044) | func Seteuid(euid int) (err error) { function Setgid (line 1054) | func Setgid(gid int) (err error) { function Setpgid (line 1064) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1074) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1084) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1094) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1104) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1114) | func Setsid() (pid int, err error) { function Settimeofday (line 1125) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1135) | func Setuid(uid int) (err error) { function Stat (line 1145) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1160) | func Symlink(path string, link string) (err error) { function Sync (line 1180) | func Sync() (err error) { function Truncate (line 1190) | func Truncate(path string, length int64) (err error) { function Umask (line 1205) | func Umask(newmask int) (oldmask int) { function Unlink (line 1213) | func Unlink(path string) (err error) { function Unmount (line 1228) | func Unmount(path string, flags int) (err error) { function write (line 1243) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1260) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1271) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1281) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1292) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (fd1 int, fd2 int, err error) { function getdents (line 281) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 298) | func Access(path string, mode uint32) (err error) { function Adjtime (line 313) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 323) | func Chdir(path string) (err error) { function Chflags (line 338) | func Chflags(path string, flags int) (err error) { function Chmod (line 353) | func Chmod(path string, mode uint32) (err error) { function Chown (line 368) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 383) | func Chroot(path string) (err error) { function Close (line 398) | func Close(fd int) (err error) { function Dup (line 408) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 419) | func Dup2(from int, to int) (err error) { function Exit (line 429) | func Exit(code int) { function Fchdir (line 436) | func Fchdir(fd int) (err error) { function Fchflags (line 446) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 456) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 466) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 476) | func Flock(fd int, how int) (err error) { function Fpathconf (line 486) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 497) | func Fstat(fd int, stat *Stat_t) (err error) { function Fsync (line 507) | func Fsync(fd int) (err error) { function Ftruncate (line 517) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 527) | func Getegid() (egid int) { function Geteuid (line 535) | func Geteuid() (uid int) { function Getgid (line 543) | func Getgid() (gid int) { function Getpgid (line 551) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 562) | func Getpgrp() (pgrp int) { function Getpid (line 570) | func Getpid() (pid int) { function Getppid (line 578) | func Getppid() (ppid int) { function Getpriority (line 586) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 597) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 607) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 617) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 628) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 638) | func Getuid() (uid int) { function Issetugid (line 646) | func Issetugid() (tainted bool) { function Kill (line 654) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 664) | func Kqueue() (fd int, err error) { function Lchown (line 675) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 690) | func Link(path string, link string) (err error) { function Listen (line 710) | func Listen(s int, backlog int) (err error) { function Lstat (line 720) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 735) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 750) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 765) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 780) | func Mlock(b []byte) (err error) { function Mlockall (line 796) | func Mlockall(flags int) (err error) { function Mprotect (line 806) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 822) | func Munlock(b []byte) (err error) { function Munlockall (line 838) | func Munlockall() (err error) { function Nanosleep (line 848) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 858) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 874) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 890) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 907) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 924) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 941) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 963) | func Rename(from string, to string) (err error) { function Revoke (line 983) | func Revoke(path string) (err error) { function Rmdir (line 998) | func Rmdir(path string) (err error) { function Seek (line 1013) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1024) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1034) | func Setegid(egid int) (err error) { function Seteuid (line 1044) | func Seteuid(euid int) (err error) { function Setgid (line 1054) | func Setgid(gid int) (err error) { function Setpgid (line 1064) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1074) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1084) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1094) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1104) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1114) | func Setsid() (pid int, err error) { function Settimeofday (line 1125) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1135) | func Setuid(uid int) (err error) { function Stat (line 1145) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1160) | func Symlink(path string, link string) (err error) { function Sync (line 1180) | func Sync() (err error) { function Truncate (line 1190) | func Truncate(path string, length int64) (err error) { function Umask (line 1205) | func Umask(newmask int) (oldmask int) { function Unlink (line 1213) | func Unlink(path string) (err error) { function Unmount (line 1228) | func Unmount(path string, flags int) (err error) { function write (line 1243) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1260) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1271) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1281) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1292) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe() (fd1 int, fd2 int, err error) { function getdents (line 281) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 298) | func Access(path string, mode uint32) (err error) { function Adjtime (line 313) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 323) | func Chdir(path string) (err error) { function Chflags (line 338) | func Chflags(path string, flags int) (err error) { function Chmod (line 353) | func Chmod(path string, mode uint32) (err error) { function Chown (line 368) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 383) | func Chroot(path string) (err error) { function Close (line 398) | func Close(fd int) (err error) { function Dup (line 408) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 419) | func Dup2(from int, to int) (err error) { function Exit (line 429) | func Exit(code int) { function Fchdir (line 436) | func Fchdir(fd int) (err error) { function Fchflags (line 446) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 456) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 466) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 476) | func Flock(fd int, how int) (err error) { function Fpathconf (line 486) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 497) | func Fstat(fd int, stat *Stat_t) (err error) { function Fsync (line 507) | func Fsync(fd int) (err error) { function Ftruncate (line 517) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 527) | func Getegid() (egid int) { function Geteuid (line 535) | func Geteuid() (uid int) { function Getgid (line 543) | func Getgid() (gid int) { function Getpgid (line 551) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 562) | func Getpgrp() (pgrp int) { function Getpid (line 570) | func Getpid() (pid int) { function Getppid (line 578) | func Getppid() (ppid int) { function Getpriority (line 586) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 597) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 607) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 617) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 628) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 638) | func Getuid() (uid int) { function Issetugid (line 646) | func Issetugid() (tainted bool) { function Kill (line 654) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 664) | func Kqueue() (fd int, err error) { function Lchown (line 675) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 690) | func Link(path string, link string) (err error) { function Listen (line 710) | func Listen(s int, backlog int) (err error) { function Lstat (line 720) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 735) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 750) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 765) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 780) | func Mlock(b []byte) (err error) { function Mlockall (line 796) | func Mlockall(flags int) (err error) { function Mprotect (line 806) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 822) | func Munlock(b []byte) (err error) { function Munlockall (line 838) | func Munlockall() (err error) { function Nanosleep (line 848) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 858) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 874) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 890) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 907) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 924) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 941) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 963) | func Rename(from string, to string) (err error) { function Revoke (line 983) | func Revoke(path string) (err error) { function Rmdir (line 998) | func Rmdir(path string) (err error) { function Seek (line 1013) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1024) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1034) | func Setegid(egid int) (err error) { function Seteuid (line 1044) | func Seteuid(euid int) (err error) { function Setgid (line 1054) | func Setgid(gid int) (err error) { function Setpgid (line 1064) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1074) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1084) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1094) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1104) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1114) | func Setsid() (pid int, err error) { function Settimeofday (line 1125) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1135) | func Setuid(uid int) (err error) { function Stat (line 1145) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1160) | func Symlink(path string, link string) (err error) { function Sync (line 1180) | func Sync() (err error) { function Truncate (line 1190) | func Truncate(path string, length int64) (err error) { function Umask (line 1205) | func Umask(newmask int) (oldmask int) { function Unlink (line 1213) | func Unlink(path string) (err error) { function Unmount (line 1228) | func Unmount(path string, flags int) (err error) { function write (line 1243) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1260) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1271) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1281) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1292) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe(p *[2]_C_int) (err error) { function getdents (line 279) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 296) | func Access(path string, mode uint32) (err error) { function Adjtime (line 311) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 321) | func Chdir(path string) (err error) { function Chflags (line 336) | func Chflags(path string, flags int) (err error) { function Chmod (line 351) | func Chmod(path string, mode uint32) (err error) { function Chown (line 366) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 381) | func Chroot(path string) (err error) { function Close (line 396) | func Close(fd int) (err error) { function Dup (line 406) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 417) | func Dup2(from int, to int) (err error) { function Exit (line 427) | func Exit(code int) { function Fchdir (line 434) | func Fchdir(fd int) (err error) { function Fchflags (line 444) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 454) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 464) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 474) | func Flock(fd int, how int) (err error) { function Fpathconf (line 484) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 495) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 505) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 515) | func Fsync(fd int) (err error) { function Ftruncate (line 525) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 535) | func Getegid() (egid int) { function Geteuid (line 543) | func Geteuid() (uid int) { function Getgid (line 551) | func Getgid() (gid int) { function Getpgid (line 559) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 570) | func Getpgrp() (pgrp int) { function Getpid (line 578) | func Getpid() (pid int) { function Getppid (line 586) | func Getppid() (ppid int) { function Getpriority (line 594) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 605) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 615) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 625) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 636) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 646) | func Getuid() (uid int) { function Issetugid (line 654) | func Issetugid() (tainted bool) { function Kill (line 662) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 672) | func Kqueue() (fd int, err error) { function Lchown (line 683) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 698) | func Link(path string, link string) (err error) { function Listen (line 718) | func Listen(s int, backlog int) (err error) { function Lstat (line 728) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 743) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 758) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 773) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 788) | func Mlock(b []byte) (err error) { function Mlockall (line 804) | func Mlockall(flags int) (err error) { function Mprotect (line 814) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 830) | func Munlock(b []byte) (err error) { function Munlockall (line 846) | func Munlockall() (err error) { function Nanosleep (line 856) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 866) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 882) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 898) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 915) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 932) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 949) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 971) | func Rename(from string, to string) (err error) { function Revoke (line 991) | func Revoke(path string) (err error) { function Rmdir (line 1006) | func Rmdir(path string) (err error) { function Seek (line 1021) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1032) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1042) | func Setegid(egid int) (err error) { function Seteuid (line 1052) | func Seteuid(euid int) (err error) { function Setgid (line 1062) | func Setgid(gid int) (err error) { function Setlogin (line 1072) | func Setlogin(name string) (err error) { function Setpgid (line 1087) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1097) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1107) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1117) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1127) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1137) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1147) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1157) | func Setsid() (pid int, err error) { function Settimeofday (line 1168) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1178) | func Setuid(uid int) (err error) { function Stat (line 1188) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1203) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1218) | func Symlink(path string, link string) (err error) { function Sync (line 1238) | func Sync() (err error) { function Truncate (line 1248) | func Truncate(path string, length int64) (err error) { function Umask (line 1263) | func Umask(newmask int) (oldmask int) { function Unlink (line 1271) | func Unlink(path string) (err error) { function Unmount (line 1286) | func Unmount(path string, flags int) (err error) { function write (line 1301) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1318) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1329) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1339) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1350) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go function getgroups (line 17) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 28) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 38) | func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid ... function accept (line 49) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function bind (line 60) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 70) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function socket (line 80) | func socket(domain int, typ int, proto int) (fd int, err error) { function getsockopt (line 91) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function setsockopt (line 101) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function getpeername (line 111) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function getsockname (line 121) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Shutdown (line 131) | func Shutdown(s int, how int) (err error) { function socketpair (line 141) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function recvfrom (line 151) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sendto (line 168) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function recvmsg (line 184) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 195) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function kevent (line 206) | func kevent(kq int, change unsafe.Pointer, nchange int, event unsafe.Poi... function sysctl (line 217) | func sysctl(mib []_C_int, old *byte, oldlen *uintptr, new *byte, newlen ... function utimes (line 233) | func utimes(path string, timeval *[2]Timeval) (err error) { function futimes (line 248) | func futimes(fd int, timeval *[2]Timeval) (err error) { function fcntl (line 258) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function pipe (line 269) | func pipe(p *[2]_C_int) (err error) { function getdents (line 279) | func getdents(fd int, buf []byte) (n int, err error) { function Access (line 296) | func Access(path string, mode uint32) (err error) { function Adjtime (line 311) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 321) | func Chdir(path string) (err error) { function Chflags (line 336) | func Chflags(path string, flags int) (err error) { function Chmod (line 351) | func Chmod(path string, mode uint32) (err error) { function Chown (line 366) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 381) | func Chroot(path string) (err error) { function Close (line 396) | func Close(fd int) (err error) { function Dup (line 406) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 417) | func Dup2(from int, to int) (err error) { function Exit (line 427) | func Exit(code int) { function Fchdir (line 434) | func Fchdir(fd int) (err error) { function Fchflags (line 444) | func Fchflags(fd int, flags int) (err error) { function Fchmod (line 454) | func Fchmod(fd int, mode uint32) (err error) { function Fchown (line 464) | func Fchown(fd int, uid int, gid int) (err error) { function Flock (line 474) | func Flock(fd int, how int) (err error) { function Fpathconf (line 484) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 495) | func Fstat(fd int, stat *Stat_t) (err error) { function Fstatfs (line 505) | func Fstatfs(fd int, stat *Statfs_t) (err error) { function Fsync (line 515) | func Fsync(fd int) (err error) { function Ftruncate (line 525) | func Ftruncate(fd int, length int64) (err error) { function Getegid (line 535) | func Getegid() (egid int) { function Geteuid (line 543) | func Geteuid() (uid int) { function Getgid (line 551) | func Getgid() (gid int) { function Getpgid (line 559) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 570) | func Getpgrp() (pgrp int) { function Getpid (line 578) | func Getpid() (pid int) { function Getppid (line 586) | func Getppid() (ppid int) { function Getpriority (line 594) | func Getpriority(which int, who int) (prio int, err error) { function Getrlimit (line 605) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 615) | func Getrusage(who int, rusage *Rusage) (err error) { function Getsid (line 625) | func Getsid(pid int) (sid int, err error) { function Gettimeofday (line 636) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 646) | func Getuid() (uid int) { function Issetugid (line 654) | func Issetugid() (tainted bool) { function Kill (line 662) | func Kill(pid int, signum syscall.Signal) (err error) { function Kqueue (line 672) | func Kqueue() (fd int, err error) { function Lchown (line 683) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 698) | func Link(path string, link string) (err error) { function Listen (line 718) | func Listen(s int, backlog int) (err error) { function Lstat (line 728) | func Lstat(path string, stat *Stat_t) (err error) { function Mkdir (line 743) | func Mkdir(path string, mode uint32) (err error) { function Mkfifo (line 758) | func Mkfifo(path string, mode uint32) (err error) { function Mknod (line 773) | func Mknod(path string, mode uint32, dev int) (err error) { function Mlock (line 788) | func Mlock(b []byte) (err error) { function Mlockall (line 804) | func Mlockall(flags int) (err error) { function Mprotect (line 814) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 830) | func Munlock(b []byte) (err error) { function Munlockall (line 846) | func Munlockall() (err error) { function Nanosleep (line 856) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 866) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Pathconf (line 882) | func Pathconf(path string, name int) (val int, err error) { function Pread (line 898) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 915) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 932) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 949) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 971) | func Rename(from string, to string) (err error) { function Revoke (line 991) | func Revoke(path string) (err error) { function Rmdir (line 1006) | func Rmdir(path string) (err error) { function Seek (line 1021) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Select (line 1032) | func Select(n int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (err ... function Setegid (line 1042) | func Setegid(egid int) (err error) { function Seteuid (line 1052) | func Seteuid(euid int) (err error) { function Setgid (line 1062) | func Setgid(gid int) (err error) { function Setlogin (line 1072) | func Setlogin(name string) (err error) { function Setpgid (line 1087) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1097) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1107) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1117) | func Setreuid(ruid int, euid int) (err error) { function Setresgid (line 1127) | func Setresgid(rgid int, egid int, sgid int) (err error) { function Setresuid (line 1137) | func Setresuid(ruid int, euid int, suid int) (err error) { function Setrlimit (line 1147) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1157) | func Setsid() (pid int, err error) { function Settimeofday (line 1168) | func Settimeofday(tp *Timeval) (err error) { function Setuid (line 1178) | func Setuid(uid int) (err error) { function Stat (line 1188) | func Stat(path string, stat *Stat_t) (err error) { function Statfs (line 1203) | func Statfs(path string, stat *Statfs_t) (err error) { function Symlink (line 1218) | func Symlink(path string, link string) (err error) { function Sync (line 1238) | func Sync() (err error) { function Truncate (line 1248) | func Truncate(path string, length int64) (err error) { function Umask (line 1263) | func Umask(newmask int) (oldmask int) { function Unlink (line 1271) | func Unlink(path string) (err error) { function Unmount (line 1286) | func Unmount(path string, flags int) (err error) { function write (line 1301) | func write(fd int, p []byte) (n int, err error) { function mmap (line 1318) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1329) | func munmap(addr uintptr, length uintptr) (err error) { function readlen (line 1339) | func readlen(fd int, buf *byte, nbuf int) (n int, err error) { function writelen (line 1350) | func writelen(fd int, buf *byte, nbuf int) (n int, err error) { FILE: vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go function pipe (line 369) | func pipe(p *[2]_C_int) (n int, err error) { function getsockname (line 378) | func getsockname(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function Getcwd (line 386) | func Getcwd(buf []byte) (n int, err error) { function getgroups (line 399) | func getgroups(ngid int, gid *_Gid_t) (n int, err error) { function setgroups (line 408) | func setgroups(ngid int, gid *_Gid_t) (err error) { function wait4 (line 416) | func wait4(pid int32, statusp *_C_int, options int, rusage *Rusage) (wpi... function gethostname (line 425) | func gethostname(buf []byte) (n int, err error) { function utimes (line 438) | func utimes(path string, times *[2]Timeval) (err error) { function utimensat (line 451) | func utimensat(fd int, path string, times *[2]Timespec, flag int) (err e... function fcntl (line 464) | func fcntl(fd int, cmd int, arg int) (val int, err error) { function futimesat (line 473) | func futimesat(fildes int, path *byte, times *[2]Timeval) (err error) { function accept (line 481) | func accept(s int, rsa *RawSockaddrAny, addrlen *_Socklen) (fd int, err ... function recvmsg (line 490) | func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) { function sendmsg (line 499) | func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) { function acct (line 508) | func acct(path *byte) (err error) { function ioctl (line 516) | func ioctl(fd int, req int, arg uintptr) (err error) { function Access (line 524) | func Access(path string, mode uint32) (err error) { function Adjtime (line 537) | func Adjtime(delta *Timeval, olddelta *Timeval) (err error) { function Chdir (line 545) | func Chdir(path string) (err error) { function Chmod (line 558) | func Chmod(path string, mode uint32) (err error) { function Chown (line 571) | func Chown(path string, uid int, gid int) (err error) { function Chroot (line 584) | func Chroot(path string) (err error) { function Close (line 597) | func Close(fd int) (err error) { function Creat (line 605) | func Creat(path string, mode uint32) (fd int, err error) { function Dup (line 619) | func Dup(fd int) (nfd int, err error) { function Dup2 (line 628) | func Dup2(oldfd int, newfd int) (err error) { function Exit (line 636) | func Exit(code int) { function Fchdir (line 641) | func Fchdir(fd int) (err error) { function Fchmod (line 649) | func Fchmod(fd int, mode uint32) (err error) { function Fchmodat (line 657) | func Fchmodat(dirfd int, path string, mode uint32, flags int) (err error) { function Fchown (line 670) | func Fchown(fd int, uid int, gid int) (err error) { function Fchownat (line 678) | func Fchownat(dirfd int, path string, uid int, gid int, flags int) (err ... function Fdatasync (line 691) | func Fdatasync(fd int) (err error) { function Fpathconf (line 699) | func Fpathconf(fd int, name int) (val int, err error) { function Fstat (line 708) | func Fstat(fd int, stat *Stat_t) (err error) { function Getdents (line 716) | func Getdents(fd int, buf []byte, basep *uintptr) (n int, err error) { function Getgid (line 729) | func Getgid() (gid int) { function Getpid (line 735) | func Getpid() (pid int) { function Getpgid (line 741) | func Getpgid(pid int) (pgid int, err error) { function Getpgrp (line 750) | func Getpgrp() (pgid int, err error) { function Geteuid (line 759) | func Geteuid() (euid int) { function Getegid (line 765) | func Getegid() (egid int) { function Getppid (line 771) | func Getppid() (ppid int) { function Getpriority (line 777) | func Getpriority(which int, who int) (n int, err error) { function Getrlimit (line 786) | func Getrlimit(which int, lim *Rlimit) (err error) { function Getrusage (line 794) | func Getrusage(who int, rusage *Rusage) (err error) { function Gettimeofday (line 802) | func Gettimeofday(tv *Timeval) (err error) { function Getuid (line 810) | func Getuid() (uid int) { function Kill (line 816) | func Kill(pid int, signum syscall.Signal) (err error) { function Lchown (line 824) | func Lchown(path string, uid int, gid int) (err error) { function Link (line 837) | func Link(path string, link string) (err error) { function Listen (line 855) | func Listen(s int, backlog int) (err error) { function Lstat (line 863) | func Lstat(path string, stat *Stat_t) (err error) { function Madvise (line 876) | func Madvise(b []byte, advice int) (err error) { function Mkdir (line 888) | func Mkdir(path string, mode uint32) (err error) { function Mkdirat (line 901) | func Mkdirat(dirfd int, path string, mode uint32) (err error) { function Mkfifo (line 914) | func Mkfifo(path string, mode uint32) (err error) { function Mkfifoat (line 927) | func Mkfifoat(dirfd int, path string, mode uint32) (err error) { function Mknod (line 940) | func Mknod(path string, mode uint32, dev int) (err error) { function Mknodat (line 953) | func Mknodat(dirfd int, path string, mode uint32, dev int) (err error) { function Mlock (line 966) | func Mlock(b []byte) (err error) { function Mlockall (line 978) | func Mlockall(flags int) (err error) { function Mprotect (line 986) | func Mprotect(b []byte, prot int) (err error) { function Munlock (line 998) | func Munlock(b []byte) (err error) { function Munlockall (line 1010) | func Munlockall() (err error) { function Nanosleep (line 1018) | func Nanosleep(time *Timespec, leftover *Timespec) (err error) { function Open (line 1026) | func Open(path string, mode int, perm uint32) (fd int, err error) { function Openat (line 1040) | func Openat(dirfd int, path string, flags int, mode uint32) (fd int, err... function Pathconf (line 1054) | func Pathconf(path string, name int) (val int, err error) { function Pause (line 1068) | func Pause() (err error) { function Pread (line 1076) | func Pread(fd int, p []byte, offset int64) (n int, err error) { function Pwrite (line 1089) | func Pwrite(fd int, p []byte, offset int64) (n int, err error) { function read (line 1102) | func read(fd int, p []byte) (n int, err error) { function Readlink (line 1115) | func Readlink(path string, buf []byte) (n int, err error) { function Rename (line 1133) | func Rename(from string, to string) (err error) { function Renameat (line 1151) | func Renameat(olddirfd int, oldpath string, newdirfd int, newpath string... function Rmdir (line 1169) | func Rmdir(path string) (err error) { function Seek (line 1182) | func Seek(fd int, offset int64, whence int) (newoffset int64, err error) { function Setegid (line 1191) | func Setegid(egid int) (err error) { function Seteuid (line 1199) | func Seteuid(euid int) (err error) { function Setgid (line 1207) | func Setgid(gid int) (err error) { function Sethostname (line 1215) | func Sethostname(p []byte) (err error) { function Setpgid (line 1227) | func Setpgid(pid int, pgid int) (err error) { function Setpriority (line 1235) | func Setpriority(which int, who int, prio int) (err error) { function Setregid (line 1243) | func Setregid(rgid int, egid int) (err error) { function Setreuid (line 1251) | func Setreuid(ruid int, euid int) (err error) { function Setrlimit (line 1259) | func Setrlimit(which int, lim *Rlimit) (err error) { function Setsid (line 1267) | func Setsid() (pid int, err error) { function Setuid (line 1276) | func Setuid(uid int) (err error) { function Shutdown (line 1284) | func Shutdown(s int, how int) (err error) { function Stat (line 1292) | func Stat(path string, stat *Stat_t) (err error) { function Symlink (line 1305) | func Symlink(path string, link string) (err error) { function Sync (line 1323) | func Sync() (err error) { function Times (line 1331) | func Times(tms *Tms) (ticks uintptr, err error) { function Truncate (line 1340) | func Truncate(path string, length int64) (err error) { function Fsync (line 1353) | func Fsync(fd int) (err error) { function Ftruncate (line 1361) | func Ftruncate(fd int, length int64) (err error) { function Umask (line 1369) | func Umask(mask int) (oldmask int) { function Uname (line 1375) | func Uname(buf *Utsname) (err error) { function Unmount (line 1383) | func Unmount(target string, flags int) (err error) { function Unlink (line 1396) | func Unlink(path string) (err error) { function Unlinkat (line 1409) | func Unlinkat(dirfd int, path string, flags int) (err error) { function Ustat (line 1422) | func Ustat(dev int, ubuf *Ustat_t) (err error) { function Utime (line 1430) | func Utime(path string, buf *Utimbuf) (err error) { function bind (line 1443) | func bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function connect (line 1451) | func connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error) { function mmap (line 1459) | func mmap(addr uintptr, length uintptr, prot int, flag int, fd int, pos ... function munmap (line 1468) | func munmap(addr uintptr, length uintptr) (err error) { function sendto (line 1476) | func sendto(s int, buf []byte, flags int, to unsafe.Pointer, addrlen _So... function socket (line 1488) | func socket(domain int, typ int, proto int) (fd int, err error) { function socketpair (line 1497) | func socketpair(domain int, typ int, proto int, fd *[2]int32) (err error) { function write (line 1505) | func write(fd int, p []byte) (n int, err error) { function getsockopt (line 1518) | func getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *... function getpeername (line 1526) | func getpeername(fd int, rsa *RawSockaddrAny, addrlen *_Socklen) (err er... function setsockopt (line 1534) | func setsockopt(s int, level int, name int, val unsafe.Pointer, vallen u... function recvfrom (line 1542) | func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen... function sysconf (line 1555) | func sysconf(name int) (n int64, err error) { FILE: vendor/golang.org/x/sys/unix/zsysctl_openbsd.go type mibentry (line 6) | type mibentry struct FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_386.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TRACE64 (line 124) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 125) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 126) | SYS_SETGID = 181 constant SYS_SETEGID (line 127) | SYS_SETEGID = 182 constant SYS_SETEUID (line 128) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 184 constant SYS_CHUD (line 130) | SYS_CHUD = 185 constant SYS_FDATASYNC (line 131) | SYS_FDATASYNC = 187 constant SYS_STAT (line 132) | SYS_STAT = 188 constant SYS_FSTAT (line 133) | SYS_FSTAT = 189 constant SYS_LSTAT (line 134) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 135) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 136) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 137) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 138) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 139) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 140) | SYS_MMAP = 197 constant SYS_LSEEK (line 141) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 142) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 143) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 144) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 145) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 146) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 147) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 148) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 149) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 150) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 151) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 152) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 153) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 154) | SYS_DELETE = 226 constant SYS_COPYFILE (line 155) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 156) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 157) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 158) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 159) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 160) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 161) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 163) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 164) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 165) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 166) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 167) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 169) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 170) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 171) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 172) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 173) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 174) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 175) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 176) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 177) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 178) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 179) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 180) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 181) | SYS_SEMGET = 255 constant SYS_SEMOP (line 182) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 184) | SYS_MSGGET = 259 constant SYS_MSGSND (line 185) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 186) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 187) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 188) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 189) | SYS_SHMDT = 264 constant SYS_SHMGET (line 190) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 191) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 192) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 193) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 194) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 195) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 196) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 197) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 198) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 199) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 200) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 201) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 202) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 203) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 204) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 205) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 206) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 207) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 208) | SYS_SETTID = 285 constant SYS_GETTID (line 209) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 210) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 211) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 212) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 213) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 214) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 215) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 216) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 217) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 218) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 219) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 220) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 221) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 222) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 223) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 224) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 225) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 226) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 227) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 228) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 229) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 230) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 231) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 232) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 233) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 234) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 235) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 236) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 237) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 238) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 239) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 240) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 241) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 242) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 243) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 244) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 245) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 246) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 247) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 248) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 249) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 250) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 251) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 252) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 253) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 254) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 255) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 256) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 257) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 258) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 259) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 260) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 261) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 262) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 263) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 266) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 267) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 268) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 269) | SYS_AUDIT = 350 constant SYS_AUDITON (line 270) | SYS_AUDITON = 351 constant SYS_GETAUID (line 271) | SYS_GETAUID = 353 constant SYS_SETAUID (line 272) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 273) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 274) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 275) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 276) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 277) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 278) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 279) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 280) | SYS_LCHOWN = 364 constant SYS_STACK_SNAPSHOT (line 281) | SYS_STACK_SNAPSHOT = 365 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS___MAC_EXECVE (line 290) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 291) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 292) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 293) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 294) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 295) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 296) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 297) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 298) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 299) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 300) | SYS___MAC_GET_PID = 390 constant SYS___MAC_GET_LCID (line 301) | SYS___MAC_GET_LCID = 391 constant SYS___MAC_GET_LCTX (line 302) | SYS___MAC_GET_LCTX = 392 constant SYS___MAC_SET_LCTX (line 303) | SYS___MAC_SET_LCTX = 393 constant SYS_SETLCID (line 304) | SYS_SETLCID = 394 constant SYS_GETLCID (line 305) | SYS_GETLCID = 395 constant SYS_READ_NOCANCEL (line 306) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 307) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 308) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 309) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 310) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 311) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 312) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 313) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 314) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 315) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 316) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 317) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 318) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 319) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 320) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 321) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 322) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 323) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 324) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 325) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 326) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 327) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 328) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 329) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 330) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 331) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 332) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 333) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 334) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 335) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 336) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 337) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 338) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 339) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 340) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 341) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 342) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 343) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 344) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 345) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 346) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 347) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 348) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 349) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 350) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 351) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 352) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 353) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_PROC_RLIMIT_CONTROL (line 354) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 355) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 356) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 357) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 358) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 359) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 360) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 361) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 362) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 363) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 364) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 365) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 366) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 367) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 368) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 369) | SYS_GETATTRLISTBULK = 461 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAME_EXT (line 395) | SYS_RENAME_EXT = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_MAXSYSCALL (line 397) | SYS_MAXSYSCALL = 490 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TRACE64 (line 124) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 125) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 126) | SYS_SETGID = 181 constant SYS_SETEGID (line 127) | SYS_SETEGID = 182 constant SYS_SETEUID (line 128) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 184 constant SYS_CHUD (line 130) | SYS_CHUD = 185 constant SYS_FDATASYNC (line 131) | SYS_FDATASYNC = 187 constant SYS_STAT (line 132) | SYS_STAT = 188 constant SYS_FSTAT (line 133) | SYS_FSTAT = 189 constant SYS_LSTAT (line 134) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 135) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 136) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 137) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 138) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 139) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 140) | SYS_MMAP = 197 constant SYS_LSEEK (line 141) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 142) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 143) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 144) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 145) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 146) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 147) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 148) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 149) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 150) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 151) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 152) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 153) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 154) | SYS_DELETE = 226 constant SYS_COPYFILE (line 155) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 156) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 157) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 158) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 159) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 160) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 161) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 163) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 164) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 165) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 166) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 167) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 169) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 170) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 171) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 172) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 173) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 174) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 175) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 176) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 177) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 178) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 179) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 180) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 181) | SYS_SEMGET = 255 constant SYS_SEMOP (line 182) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 184) | SYS_MSGGET = 259 constant SYS_MSGSND (line 185) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 186) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 187) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 188) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 189) | SYS_SHMDT = 264 constant SYS_SHMGET (line 190) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 191) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 192) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 193) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 194) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 195) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 196) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 197) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 198) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 199) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 200) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 201) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 202) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 203) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 204) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 205) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 206) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 207) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 208) | SYS_SETTID = 285 constant SYS_GETTID (line 209) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 210) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 211) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 212) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 213) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 214) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 215) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 216) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 217) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 218) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 219) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 220) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 221) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 222) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 223) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 224) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 225) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 226) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 227) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 228) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 229) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 230) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 231) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 232) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 233) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 234) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 235) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 236) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 237) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 238) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 239) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 240) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 241) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 242) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 243) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 244) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 245) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 246) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 247) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 248) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 249) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 250) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 251) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 252) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 253) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 254) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 255) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 256) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 257) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 258) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 259) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 260) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 261) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 262) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 263) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 266) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 267) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 268) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 269) | SYS_AUDIT = 350 constant SYS_AUDITON (line 270) | SYS_AUDITON = 351 constant SYS_GETAUID (line 271) | SYS_GETAUID = 353 constant SYS_SETAUID (line 272) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 273) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 274) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 275) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 276) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 277) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 278) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 279) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 280) | SYS_LCHOWN = 364 constant SYS_STACK_SNAPSHOT (line 281) | SYS_STACK_SNAPSHOT = 365 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS___MAC_EXECVE (line 290) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 291) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 292) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 293) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 294) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 295) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 296) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 297) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 298) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 299) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 300) | SYS___MAC_GET_PID = 390 constant SYS___MAC_GET_LCID (line 301) | SYS___MAC_GET_LCID = 391 constant SYS___MAC_GET_LCTX (line 302) | SYS___MAC_GET_LCTX = 392 constant SYS___MAC_SET_LCTX (line 303) | SYS___MAC_SET_LCTX = 393 constant SYS_SETLCID (line 304) | SYS_SETLCID = 394 constant SYS_GETLCID (line 305) | SYS_GETLCID = 395 constant SYS_READ_NOCANCEL (line 306) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 307) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 308) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 309) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 310) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 311) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 312) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 313) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 314) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 315) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 316) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 317) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 318) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 319) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 320) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 321) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 322) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 323) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 324) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 325) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 326) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 327) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 328) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 329) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 330) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 331) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 332) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 333) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 334) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 335) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 336) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 337) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 338) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 339) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 340) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 341) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 342) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 343) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 344) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 345) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 346) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 347) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 348) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 349) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 350) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 351) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 352) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 353) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_PROC_RLIMIT_CONTROL (line 354) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 355) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 356) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 357) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 358) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 359) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 360) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 361) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 362) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 363) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 364) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 365) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 366) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 367) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 368) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 369) | SYS_GETATTRLISTBULK = 461 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAME_EXT (line 395) | SYS_RENAME_EXT = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_MAXSYSCALL (line 397) | SYS_MAXSYSCALL = 490 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TRACE (line 124) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 125) | SYS_SETGID = 181 constant SYS_SETEGID (line 126) | SYS_SETEGID = 182 constant SYS_SETEUID (line 127) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 184 constant SYS_CHUD (line 129) | SYS_CHUD = 185 constant SYS_FDATASYNC (line 130) | SYS_FDATASYNC = 187 constant SYS_STAT (line 131) | SYS_STAT = 188 constant SYS_FSTAT (line 132) | SYS_FSTAT = 189 constant SYS_LSTAT (line 133) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 134) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 135) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 136) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 137) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 138) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 139) | SYS_MMAP = 197 constant SYS_LSEEK (line 140) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 141) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 142) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 143) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 144) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 145) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 146) | SYS_UNDELETE = 205 constant SYS_ATSOCKET (line 147) | SYS_ATSOCKET = 206 constant SYS_ATGETMSG (line 148) | SYS_ATGETMSG = 207 constant SYS_ATPUTMSG (line 149) | SYS_ATPUTMSG = 208 constant SYS_ATPSNDREQ (line 150) | SYS_ATPSNDREQ = 209 constant SYS_ATPSNDRSP (line 151) | SYS_ATPSNDRSP = 210 constant SYS_ATPGETREQ (line 152) | SYS_ATPGETREQ = 211 constant SYS_ATPGETRSP (line 153) | SYS_ATPGETRSP = 212 constant SYS_OPEN_DPROTECTED_NP (line 154) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 155) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 156) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 157) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 158) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 159) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 160) | SYS_DELETE = 226 constant SYS_COPYFILE (line 161) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 162) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 163) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 164) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 165) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 166) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 167) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 168) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 169) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 170) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 171) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 172) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 173) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 174) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 175) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 176) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 177) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 178) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 179) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 180) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 181) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 182) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 183) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 184) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 185) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 186) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 187) | SYS_SEMGET = 255 constant SYS_SEMOP (line 188) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 189) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 190) | SYS_MSGGET = 259 constant SYS_MSGSND (line 191) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 192) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 193) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 194) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 195) | SYS_SHMDT = 264 constant SYS_SHMGET (line 196) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 197) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 198) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 199) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 200) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 201) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 202) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 203) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 204) | SYS_SEM_POST = 273 constant SYS_SEM_GETVALUE (line 205) | SYS_SEM_GETVALUE = 274 constant SYS_SEM_INIT (line 206) | SYS_SEM_INIT = 275 constant SYS_SEM_DESTROY (line 207) | SYS_SEM_DESTROY = 276 constant SYS_OPEN_EXTENDED (line 208) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 209) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 210) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 211) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 212) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 213) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 214) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 215) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 216) | SYS_SETTID = 285 constant SYS_GETTID (line 217) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 218) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 219) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 220) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 221) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 222) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 223) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 224) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 225) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 226) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 227) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 228) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 229) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 230) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 231) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 232) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 233) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 234) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 235) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 236) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 237) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 238) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 239) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 240) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 241) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 242) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 243) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 244) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 245) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 246) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 247) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 248) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 249) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 250) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 251) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 252) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 253) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 254) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 255) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 256) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 257) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 258) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 259) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 260) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 261) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 262) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 263) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 264) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 265) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 266) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 267) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 268) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 269) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 270) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 271) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 272) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 273) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 274) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 275) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 276) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 277) | SYS_AUDIT = 350 constant SYS_AUDITON (line 278) | SYS_AUDITON = 351 constant SYS_GETAUID (line 279) | SYS_GETAUID = 353 constant SYS_SETAUID (line 280) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 281) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 282) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 283) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 284) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 285) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 286) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 287) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 288) | SYS_LCHOWN = 364 constant SYS_STACK_SNAPSHOT (line 289) | SYS_STACK_SNAPSHOT = 365 constant SYS_BSDTHREAD_REGISTER (line 290) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 291) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 292) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 293) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 294) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 295) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 296) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 297) | SYS_LEDGER = 373 constant SYS___MAC_EXECVE (line 298) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 299) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 300) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 301) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 302) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 303) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 304) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 305) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 306) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 307) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 308) | SYS___MAC_GET_PID = 390 constant SYS___MAC_GET_LCID (line 309) | SYS___MAC_GET_LCID = 391 constant SYS___MAC_GET_LCTX (line 310) | SYS___MAC_GET_LCTX = 392 constant SYS___MAC_SET_LCTX (line 311) | SYS___MAC_SET_LCTX = 393 constant SYS_SETLCID (line 312) | SYS_SETLCID = 394 constant SYS_GETLCID (line 313) | SYS_GETLCID = 395 constant SYS_READ_NOCANCEL (line 314) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 315) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 316) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 317) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 318) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 319) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 320) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 321) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 322) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 323) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 324) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 325) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 326) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 327) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 328) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 329) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 330) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 331) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 332) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 333) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 334) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 335) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 336) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 337) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 338) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 339) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 340) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 341) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 342) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 343) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 344) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 345) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 346) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 347) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 348) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 349) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 350) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 351) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 352) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 353) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 354) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 355) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 356) | SYS_KAS_INFO = 439 constant SYS_MAXSYSCALL (line 357) | SYS_MAXSYSCALL = 440 FILE: vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_GETFSSTAT (line 24) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_SETUID (line 26) | SYS_SETUID = 23 constant SYS_GETUID (line 27) | SYS_GETUID = 24 constant SYS_GETEUID (line 28) | SYS_GETEUID = 25 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 30) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 31) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 32) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 33) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 34) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 35) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 36) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 37) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 38) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 39) | SYS_SYNC = 36 constant SYS_KILL (line 40) | SYS_KILL = 37 constant SYS_GETPPID (line 41) | SYS_GETPPID = 39 constant SYS_DUP (line 42) | SYS_DUP = 41 constant SYS_PIPE (line 43) | SYS_PIPE = 42 constant SYS_GETEGID (line 44) | SYS_GETEGID = 43 constant SYS_SIGACTION (line 45) | SYS_SIGACTION = 46 constant SYS_GETGID (line 46) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 47) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 48) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 49) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 50) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 51) | SYS_SIGPENDING = 52 constant SYS_SIGALTSTACK (line 52) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 53) | SYS_IOCTL = 54 constant SYS_REBOOT (line 54) | SYS_REBOOT = 55 constant SYS_REVOKE (line 55) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 56) | SYS_SYMLINK = 57 constant SYS_READLINK (line 57) | SYS_READLINK = 58 constant SYS_EXECVE (line 58) | SYS_EXECVE = 59 constant SYS_UMASK (line 59) | SYS_UMASK = 60 constant SYS_CHROOT (line 60) | SYS_CHROOT = 61 constant SYS_MSYNC (line 61) | SYS_MSYNC = 65 constant SYS_VFORK (line 62) | SYS_VFORK = 66 constant SYS_MUNMAP (line 63) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 64) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 65) | SYS_MADVISE = 75 constant SYS_MINCORE (line 66) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 67) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 68) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 69) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 70) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 71) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 72) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 73) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 74) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 75) | SYS_DUP2 = 90 constant SYS_FCNTL (line 76) | SYS_FCNTL = 92 constant SYS_SELECT (line 77) | SYS_SELECT = 93 constant SYS_FSYNC (line 78) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 79) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 80) | SYS_SOCKET = 97 constant SYS_CONNECT (line 81) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 82) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 83) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 84) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 85) | SYS_LISTEN = 106 constant SYS_SIGSUSPEND (line 86) | SYS_SIGSUSPEND = 111 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 88) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 89) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 90) | SYS_READV = 120 constant SYS_WRITEV (line 91) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 92) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 93) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 94) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 95) | SYS_SETREUID = 126 constant SYS_SETREGID (line 96) | SYS_SETREGID = 127 constant SYS_RENAME (line 97) | SYS_RENAME = 128 constant SYS_FLOCK (line 98) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 99) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 100) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 101) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 102) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 103) | SYS_MKDIR = 136 constant SYS_RMDIR (line 104) | SYS_RMDIR = 137 constant SYS_UTIMES (line 105) | SYS_UTIMES = 138 constant SYS_FUTIMES (line 106) | SYS_FUTIMES = 139 constant SYS_ADJTIME (line 107) | SYS_ADJTIME = 140 constant SYS_GETHOSTUUID (line 108) | SYS_GETHOSTUUID = 142 constant SYS_SETSID (line 109) | SYS_SETSID = 147 constant SYS_GETPGID (line 110) | SYS_GETPGID = 151 constant SYS_SETPRIVEXEC (line 111) | SYS_SETPRIVEXEC = 152 constant SYS_PREAD (line 112) | SYS_PREAD = 153 constant SYS_PWRITE (line 113) | SYS_PWRITE = 154 constant SYS_NFSSVC (line 114) | SYS_NFSSVC = 155 constant SYS_STATFS (line 115) | SYS_STATFS = 157 constant SYS_FSTATFS (line 116) | SYS_FSTATFS = 158 constant SYS_UNMOUNT (line 117) | SYS_UNMOUNT = 159 constant SYS_GETFH (line 118) | SYS_GETFH = 161 constant SYS_QUOTACTL (line 119) | SYS_QUOTACTL = 165 constant SYS_MOUNT (line 120) | SYS_MOUNT = 167 constant SYS_CSOPS (line 121) | SYS_CSOPS = 169 constant SYS_CSOPS_AUDITTOKEN (line 122) | SYS_CSOPS_AUDITTOKEN = 170 constant SYS_WAITID (line 123) | SYS_WAITID = 173 constant SYS_KDEBUG_TRACE64 (line 124) | SYS_KDEBUG_TRACE64 = 179 constant SYS_KDEBUG_TRACE (line 125) | SYS_KDEBUG_TRACE = 180 constant SYS_SETGID (line 126) | SYS_SETGID = 181 constant SYS_SETEGID (line 127) | SYS_SETEGID = 182 constant SYS_SETEUID (line 128) | SYS_SETEUID = 183 constant SYS_SIGRETURN (line 129) | SYS_SIGRETURN = 184 constant SYS_CHUD (line 130) | SYS_CHUD = 185 constant SYS_FDATASYNC (line 131) | SYS_FDATASYNC = 187 constant SYS_STAT (line 132) | SYS_STAT = 188 constant SYS_FSTAT (line 133) | SYS_FSTAT = 189 constant SYS_LSTAT (line 134) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 135) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 136) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 137) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 138) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 139) | SYS_GETDIRENTRIES = 196 constant SYS_MMAP (line 140) | SYS_MMAP = 197 constant SYS_LSEEK (line 141) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 142) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 143) | SYS_FTRUNCATE = 201 constant SYS_SYSCTL (line 144) | SYS_SYSCTL = 202 constant SYS_MLOCK (line 145) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 146) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 147) | SYS_UNDELETE = 205 constant SYS_OPEN_DPROTECTED_NP (line 148) | SYS_OPEN_DPROTECTED_NP = 216 constant SYS_GETATTRLIST (line 149) | SYS_GETATTRLIST = 220 constant SYS_SETATTRLIST (line 150) | SYS_SETATTRLIST = 221 constant SYS_GETDIRENTRIESATTR (line 151) | SYS_GETDIRENTRIESATTR = 222 constant SYS_EXCHANGEDATA (line 152) | SYS_EXCHANGEDATA = 223 constant SYS_SEARCHFS (line 153) | SYS_SEARCHFS = 225 constant SYS_DELETE (line 154) | SYS_DELETE = 226 constant SYS_COPYFILE (line 155) | SYS_COPYFILE = 227 constant SYS_FGETATTRLIST (line 156) | SYS_FGETATTRLIST = 228 constant SYS_FSETATTRLIST (line 157) | SYS_FSETATTRLIST = 229 constant SYS_POLL (line 158) | SYS_POLL = 230 constant SYS_WATCHEVENT (line 159) | SYS_WATCHEVENT = 231 constant SYS_WAITEVENT (line 160) | SYS_WAITEVENT = 232 constant SYS_MODWATCH (line 161) | SYS_MODWATCH = 233 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 234 constant SYS_FGETXATTR (line 163) | SYS_FGETXATTR = 235 constant SYS_SETXATTR (line 164) | SYS_SETXATTR = 236 constant SYS_FSETXATTR (line 165) | SYS_FSETXATTR = 237 constant SYS_REMOVEXATTR (line 166) | SYS_REMOVEXATTR = 238 constant SYS_FREMOVEXATTR (line 167) | SYS_FREMOVEXATTR = 239 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 240 constant SYS_FLISTXATTR (line 169) | SYS_FLISTXATTR = 241 constant SYS_FSCTL (line 170) | SYS_FSCTL = 242 constant SYS_INITGROUPS (line 171) | SYS_INITGROUPS = 243 constant SYS_POSIX_SPAWN (line 172) | SYS_POSIX_SPAWN = 244 constant SYS_FFSCTL (line 173) | SYS_FFSCTL = 245 constant SYS_NFSCLNT (line 174) | SYS_NFSCLNT = 247 constant SYS_FHOPEN (line 175) | SYS_FHOPEN = 248 constant SYS_MINHERIT (line 176) | SYS_MINHERIT = 250 constant SYS_SEMSYS (line 177) | SYS_SEMSYS = 251 constant SYS_MSGSYS (line 178) | SYS_MSGSYS = 252 constant SYS_SHMSYS (line 179) | SYS_SHMSYS = 253 constant SYS_SEMCTL (line 180) | SYS_SEMCTL = 254 constant SYS_SEMGET (line 181) | SYS_SEMGET = 255 constant SYS_SEMOP (line 182) | SYS_SEMOP = 256 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 258 constant SYS_MSGGET (line 184) | SYS_MSGGET = 259 constant SYS_MSGSND (line 185) | SYS_MSGSND = 260 constant SYS_MSGRCV (line 186) | SYS_MSGRCV = 261 constant SYS_SHMAT (line 187) | SYS_SHMAT = 262 constant SYS_SHMCTL (line 188) | SYS_SHMCTL = 263 constant SYS_SHMDT (line 189) | SYS_SHMDT = 264 constant SYS_SHMGET (line 190) | SYS_SHMGET = 265 constant SYS_SHM_OPEN (line 191) | SYS_SHM_OPEN = 266 constant SYS_SHM_UNLINK (line 192) | SYS_SHM_UNLINK = 267 constant SYS_SEM_OPEN (line 193) | SYS_SEM_OPEN = 268 constant SYS_SEM_CLOSE (line 194) | SYS_SEM_CLOSE = 269 constant SYS_SEM_UNLINK (line 195) | SYS_SEM_UNLINK = 270 constant SYS_SEM_WAIT (line 196) | SYS_SEM_WAIT = 271 constant SYS_SEM_TRYWAIT (line 197) | SYS_SEM_TRYWAIT = 272 constant SYS_SEM_POST (line 198) | SYS_SEM_POST = 273 constant SYS_SYSCTLBYNAME (line 199) | SYS_SYSCTLBYNAME = 274 constant SYS_OPEN_EXTENDED (line 200) | SYS_OPEN_EXTENDED = 277 constant SYS_UMASK_EXTENDED (line 201) | SYS_UMASK_EXTENDED = 278 constant SYS_STAT_EXTENDED (line 202) | SYS_STAT_EXTENDED = 279 constant SYS_LSTAT_EXTENDED (line 203) | SYS_LSTAT_EXTENDED = 280 constant SYS_FSTAT_EXTENDED (line 204) | SYS_FSTAT_EXTENDED = 281 constant SYS_CHMOD_EXTENDED (line 205) | SYS_CHMOD_EXTENDED = 282 constant SYS_FCHMOD_EXTENDED (line 206) | SYS_FCHMOD_EXTENDED = 283 constant SYS_ACCESS_EXTENDED (line 207) | SYS_ACCESS_EXTENDED = 284 constant SYS_SETTID (line 208) | SYS_SETTID = 285 constant SYS_GETTID (line 209) | SYS_GETTID = 286 constant SYS_SETSGROUPS (line 210) | SYS_SETSGROUPS = 287 constant SYS_GETSGROUPS (line 211) | SYS_GETSGROUPS = 288 constant SYS_SETWGROUPS (line 212) | SYS_SETWGROUPS = 289 constant SYS_GETWGROUPS (line 213) | SYS_GETWGROUPS = 290 constant SYS_MKFIFO_EXTENDED (line 214) | SYS_MKFIFO_EXTENDED = 291 constant SYS_MKDIR_EXTENDED (line 215) | SYS_MKDIR_EXTENDED = 292 constant SYS_IDENTITYSVC (line 216) | SYS_IDENTITYSVC = 293 constant SYS_SHARED_REGION_CHECK_NP (line 217) | SYS_SHARED_REGION_CHECK_NP = 294 constant SYS_VM_PRESSURE_MONITOR (line 218) | SYS_VM_PRESSURE_MONITOR = 296 constant SYS_PSYNCH_RW_LONGRDLOCK (line 219) | SYS_PSYNCH_RW_LONGRDLOCK = 297 constant SYS_PSYNCH_RW_YIELDWRLOCK (line 220) | SYS_PSYNCH_RW_YIELDWRLOCK = 298 constant SYS_PSYNCH_RW_DOWNGRADE (line 221) | SYS_PSYNCH_RW_DOWNGRADE = 299 constant SYS_PSYNCH_RW_UPGRADE (line 222) | SYS_PSYNCH_RW_UPGRADE = 300 constant SYS_PSYNCH_MUTEXWAIT (line 223) | SYS_PSYNCH_MUTEXWAIT = 301 constant SYS_PSYNCH_MUTEXDROP (line 224) | SYS_PSYNCH_MUTEXDROP = 302 constant SYS_PSYNCH_CVBROAD (line 225) | SYS_PSYNCH_CVBROAD = 303 constant SYS_PSYNCH_CVSIGNAL (line 226) | SYS_PSYNCH_CVSIGNAL = 304 constant SYS_PSYNCH_CVWAIT (line 227) | SYS_PSYNCH_CVWAIT = 305 constant SYS_PSYNCH_RW_RDLOCK (line 228) | SYS_PSYNCH_RW_RDLOCK = 306 constant SYS_PSYNCH_RW_WRLOCK (line 229) | SYS_PSYNCH_RW_WRLOCK = 307 constant SYS_PSYNCH_RW_UNLOCK (line 230) | SYS_PSYNCH_RW_UNLOCK = 308 constant SYS_PSYNCH_RW_UNLOCK2 (line 231) | SYS_PSYNCH_RW_UNLOCK2 = 309 constant SYS_GETSID (line 232) | SYS_GETSID = 310 constant SYS_SETTID_WITH_PID (line 233) | SYS_SETTID_WITH_PID = 311 constant SYS_PSYNCH_CVCLRPREPOST (line 234) | SYS_PSYNCH_CVCLRPREPOST = 312 constant SYS_AIO_FSYNC (line 235) | SYS_AIO_FSYNC = 313 constant SYS_AIO_RETURN (line 236) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 237) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 238) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 239) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 240) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 241) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 242) | SYS_LIO_LISTIO = 320 constant SYS_IOPOLICYSYS (line 243) | SYS_IOPOLICYSYS = 322 constant SYS_PROCESS_POLICY (line 244) | SYS_PROCESS_POLICY = 323 constant SYS_MLOCKALL (line 245) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 246) | SYS_MUNLOCKALL = 325 constant SYS_ISSETUGID (line 247) | SYS_ISSETUGID = 327 constant SYS___PTHREAD_KILL (line 248) | SYS___PTHREAD_KILL = 328 constant SYS___PTHREAD_SIGMASK (line 249) | SYS___PTHREAD_SIGMASK = 329 constant SYS___SIGWAIT (line 250) | SYS___SIGWAIT = 330 constant SYS___DISABLE_THREADSIGNAL (line 251) | SYS___DISABLE_THREADSIGNAL = 331 constant SYS___PTHREAD_MARKCANCEL (line 252) | SYS___PTHREAD_MARKCANCEL = 332 constant SYS___PTHREAD_CANCELED (line 253) | SYS___PTHREAD_CANCELED = 333 constant SYS___SEMWAIT_SIGNAL (line 254) | SYS___SEMWAIT_SIGNAL = 334 constant SYS_PROC_INFO (line 255) | SYS_PROC_INFO = 336 constant SYS_SENDFILE (line 256) | SYS_SENDFILE = 337 constant SYS_STAT64 (line 257) | SYS_STAT64 = 338 constant SYS_FSTAT64 (line 258) | SYS_FSTAT64 = 339 constant SYS_LSTAT64 (line 259) | SYS_LSTAT64 = 340 constant SYS_STAT64_EXTENDED (line 260) | SYS_STAT64_EXTENDED = 341 constant SYS_LSTAT64_EXTENDED (line 261) | SYS_LSTAT64_EXTENDED = 342 constant SYS_FSTAT64_EXTENDED (line 262) | SYS_FSTAT64_EXTENDED = 343 constant SYS_GETDIRENTRIES64 (line 263) | SYS_GETDIRENTRIES64 = 344 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 345 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 346 constant SYS_GETFSSTAT64 (line 266) | SYS_GETFSSTAT64 = 347 constant SYS___PTHREAD_CHDIR (line 267) | SYS___PTHREAD_CHDIR = 348 constant SYS___PTHREAD_FCHDIR (line 268) | SYS___PTHREAD_FCHDIR = 349 constant SYS_AUDIT (line 269) | SYS_AUDIT = 350 constant SYS_AUDITON (line 270) | SYS_AUDITON = 351 constant SYS_GETAUID (line 271) | SYS_GETAUID = 353 constant SYS_SETAUID (line 272) | SYS_SETAUID = 354 constant SYS_GETAUDIT_ADDR (line 273) | SYS_GETAUDIT_ADDR = 357 constant SYS_SETAUDIT_ADDR (line 274) | SYS_SETAUDIT_ADDR = 358 constant SYS_AUDITCTL (line 275) | SYS_AUDITCTL = 359 constant SYS_BSDTHREAD_CREATE (line 276) | SYS_BSDTHREAD_CREATE = 360 constant SYS_BSDTHREAD_TERMINATE (line 277) | SYS_BSDTHREAD_TERMINATE = 361 constant SYS_KQUEUE (line 278) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 279) | SYS_KEVENT = 363 constant SYS_LCHOWN (line 280) | SYS_LCHOWN = 364 constant SYS_STACK_SNAPSHOT (line 281) | SYS_STACK_SNAPSHOT = 365 constant SYS_BSDTHREAD_REGISTER (line 282) | SYS_BSDTHREAD_REGISTER = 366 constant SYS_WORKQ_OPEN (line 283) | SYS_WORKQ_OPEN = 367 constant SYS_WORKQ_KERNRETURN (line 284) | SYS_WORKQ_KERNRETURN = 368 constant SYS_KEVENT64 (line 285) | SYS_KEVENT64 = 369 constant SYS___OLD_SEMWAIT_SIGNAL (line 286) | SYS___OLD_SEMWAIT_SIGNAL = 370 constant SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL (line 287) | SYS___OLD_SEMWAIT_SIGNAL_NOCANCEL = 371 constant SYS_THREAD_SELFID (line 288) | SYS_THREAD_SELFID = 372 constant SYS_LEDGER (line 289) | SYS_LEDGER = 373 constant SYS___MAC_EXECVE (line 290) | SYS___MAC_EXECVE = 380 constant SYS___MAC_SYSCALL (line 291) | SYS___MAC_SYSCALL = 381 constant SYS___MAC_GET_FILE (line 292) | SYS___MAC_GET_FILE = 382 constant SYS___MAC_SET_FILE (line 293) | SYS___MAC_SET_FILE = 383 constant SYS___MAC_GET_LINK (line 294) | SYS___MAC_GET_LINK = 384 constant SYS___MAC_SET_LINK (line 295) | SYS___MAC_SET_LINK = 385 constant SYS___MAC_GET_PROC (line 296) | SYS___MAC_GET_PROC = 386 constant SYS___MAC_SET_PROC (line 297) | SYS___MAC_SET_PROC = 387 constant SYS___MAC_GET_FD (line 298) | SYS___MAC_GET_FD = 388 constant SYS___MAC_SET_FD (line 299) | SYS___MAC_SET_FD = 389 constant SYS___MAC_GET_PID (line 300) | SYS___MAC_GET_PID = 390 constant SYS___MAC_GET_LCID (line 301) | SYS___MAC_GET_LCID = 391 constant SYS___MAC_GET_LCTX (line 302) | SYS___MAC_GET_LCTX = 392 constant SYS___MAC_SET_LCTX (line 303) | SYS___MAC_SET_LCTX = 393 constant SYS_SETLCID (line 304) | SYS_SETLCID = 394 constant SYS_GETLCID (line 305) | SYS_GETLCID = 395 constant SYS_READ_NOCANCEL (line 306) | SYS_READ_NOCANCEL = 396 constant SYS_WRITE_NOCANCEL (line 307) | SYS_WRITE_NOCANCEL = 397 constant SYS_OPEN_NOCANCEL (line 308) | SYS_OPEN_NOCANCEL = 398 constant SYS_CLOSE_NOCANCEL (line 309) | SYS_CLOSE_NOCANCEL = 399 constant SYS_WAIT4_NOCANCEL (line 310) | SYS_WAIT4_NOCANCEL = 400 constant SYS_RECVMSG_NOCANCEL (line 311) | SYS_RECVMSG_NOCANCEL = 401 constant SYS_SENDMSG_NOCANCEL (line 312) | SYS_SENDMSG_NOCANCEL = 402 constant SYS_RECVFROM_NOCANCEL (line 313) | SYS_RECVFROM_NOCANCEL = 403 constant SYS_ACCEPT_NOCANCEL (line 314) | SYS_ACCEPT_NOCANCEL = 404 constant SYS_MSYNC_NOCANCEL (line 315) | SYS_MSYNC_NOCANCEL = 405 constant SYS_FCNTL_NOCANCEL (line 316) | SYS_FCNTL_NOCANCEL = 406 constant SYS_SELECT_NOCANCEL (line 317) | SYS_SELECT_NOCANCEL = 407 constant SYS_FSYNC_NOCANCEL (line 318) | SYS_FSYNC_NOCANCEL = 408 constant SYS_CONNECT_NOCANCEL (line 319) | SYS_CONNECT_NOCANCEL = 409 constant SYS_SIGSUSPEND_NOCANCEL (line 320) | SYS_SIGSUSPEND_NOCANCEL = 410 constant SYS_READV_NOCANCEL (line 321) | SYS_READV_NOCANCEL = 411 constant SYS_WRITEV_NOCANCEL (line 322) | SYS_WRITEV_NOCANCEL = 412 constant SYS_SENDTO_NOCANCEL (line 323) | SYS_SENDTO_NOCANCEL = 413 constant SYS_PREAD_NOCANCEL (line 324) | SYS_PREAD_NOCANCEL = 414 constant SYS_PWRITE_NOCANCEL (line 325) | SYS_PWRITE_NOCANCEL = 415 constant SYS_WAITID_NOCANCEL (line 326) | SYS_WAITID_NOCANCEL = 416 constant SYS_POLL_NOCANCEL (line 327) | SYS_POLL_NOCANCEL = 417 constant SYS_MSGSND_NOCANCEL (line 328) | SYS_MSGSND_NOCANCEL = 418 constant SYS_MSGRCV_NOCANCEL (line 329) | SYS_MSGRCV_NOCANCEL = 419 constant SYS_SEM_WAIT_NOCANCEL (line 330) | SYS_SEM_WAIT_NOCANCEL = 420 constant SYS_AIO_SUSPEND_NOCANCEL (line 331) | SYS_AIO_SUSPEND_NOCANCEL = 421 constant SYS___SIGWAIT_NOCANCEL (line 332) | SYS___SIGWAIT_NOCANCEL = 422 constant SYS___SEMWAIT_SIGNAL_NOCANCEL (line 333) | SYS___SEMWAIT_SIGNAL_NOCANCEL = 423 constant SYS___MAC_MOUNT (line 334) | SYS___MAC_MOUNT = 424 constant SYS___MAC_GET_MOUNT (line 335) | SYS___MAC_GET_MOUNT = 425 constant SYS___MAC_GETFSSTAT (line 336) | SYS___MAC_GETFSSTAT = 426 constant SYS_FSGETPATH (line 337) | SYS_FSGETPATH = 427 constant SYS_AUDIT_SESSION_SELF (line 338) | SYS_AUDIT_SESSION_SELF = 428 constant SYS_AUDIT_SESSION_JOIN (line 339) | SYS_AUDIT_SESSION_JOIN = 429 constant SYS_FILEPORT_MAKEPORT (line 340) | SYS_FILEPORT_MAKEPORT = 430 constant SYS_FILEPORT_MAKEFD (line 341) | SYS_FILEPORT_MAKEFD = 431 constant SYS_AUDIT_SESSION_PORT (line 342) | SYS_AUDIT_SESSION_PORT = 432 constant SYS_PID_SUSPEND (line 343) | SYS_PID_SUSPEND = 433 constant SYS_PID_RESUME (line 344) | SYS_PID_RESUME = 434 constant SYS_PID_HIBERNATE (line 345) | SYS_PID_HIBERNATE = 435 constant SYS_PID_SHUTDOWN_SOCKETS (line 346) | SYS_PID_SHUTDOWN_SOCKETS = 436 constant SYS_SHARED_REGION_MAP_AND_SLIDE_NP (line 347) | SYS_SHARED_REGION_MAP_AND_SLIDE_NP = 438 constant SYS_KAS_INFO (line 348) | SYS_KAS_INFO = 439 constant SYS_MEMORYSTATUS_CONTROL (line 349) | SYS_MEMORYSTATUS_CONTROL = 440 constant SYS_GUARDED_OPEN_NP (line 350) | SYS_GUARDED_OPEN_NP = 441 constant SYS_GUARDED_CLOSE_NP (line 351) | SYS_GUARDED_CLOSE_NP = 442 constant SYS_GUARDED_KQUEUE_NP (line 352) | SYS_GUARDED_KQUEUE_NP = 443 constant SYS_CHANGE_FDGUARD_NP (line 353) | SYS_CHANGE_FDGUARD_NP = 444 constant SYS_PROC_RLIMIT_CONTROL (line 354) | SYS_PROC_RLIMIT_CONTROL = 446 constant SYS_CONNECTX (line 355) | SYS_CONNECTX = 447 constant SYS_DISCONNECTX (line 356) | SYS_DISCONNECTX = 448 constant SYS_PEELOFF (line 357) | SYS_PEELOFF = 449 constant SYS_SOCKET_DELEGATE (line 358) | SYS_SOCKET_DELEGATE = 450 constant SYS_TELEMETRY (line 359) | SYS_TELEMETRY = 451 constant SYS_PROC_UUID_POLICY (line 360) | SYS_PROC_UUID_POLICY = 452 constant SYS_MEMORYSTATUS_GET_LEVEL (line 361) | SYS_MEMORYSTATUS_GET_LEVEL = 453 constant SYS_SYSTEM_OVERRIDE (line 362) | SYS_SYSTEM_OVERRIDE = 454 constant SYS_VFS_PURGE (line 363) | SYS_VFS_PURGE = 455 constant SYS_SFI_CTL (line 364) | SYS_SFI_CTL = 456 constant SYS_SFI_PIDCTL (line 365) | SYS_SFI_PIDCTL = 457 constant SYS_COALITION (line 366) | SYS_COALITION = 458 constant SYS_COALITION_INFO (line 367) | SYS_COALITION_INFO = 459 constant SYS_NECP_MATCH_POLICY (line 368) | SYS_NECP_MATCH_POLICY = 460 constant SYS_GETATTRLISTBULK (line 369) | SYS_GETATTRLISTBULK = 461 constant SYS_OPENAT (line 370) | SYS_OPENAT = 463 constant SYS_OPENAT_NOCANCEL (line 371) | SYS_OPENAT_NOCANCEL = 464 constant SYS_RENAMEAT (line 372) | SYS_RENAMEAT = 465 constant SYS_FACCESSAT (line 373) | SYS_FACCESSAT = 466 constant SYS_FCHMODAT (line 374) | SYS_FCHMODAT = 467 constant SYS_FCHOWNAT (line 375) | SYS_FCHOWNAT = 468 constant SYS_FSTATAT (line 376) | SYS_FSTATAT = 469 constant SYS_FSTATAT64 (line 377) | SYS_FSTATAT64 = 470 constant SYS_LINKAT (line 378) | SYS_LINKAT = 471 constant SYS_UNLINKAT (line 379) | SYS_UNLINKAT = 472 constant SYS_READLINKAT (line 380) | SYS_READLINKAT = 473 constant SYS_SYMLINKAT (line 381) | SYS_SYMLINKAT = 474 constant SYS_MKDIRAT (line 382) | SYS_MKDIRAT = 475 constant SYS_GETATTRLISTAT (line 383) | SYS_GETATTRLISTAT = 476 constant SYS_PROC_TRACE_LOG (line 384) | SYS_PROC_TRACE_LOG = 477 constant SYS_BSDTHREAD_CTL (line 385) | SYS_BSDTHREAD_CTL = 478 constant SYS_OPENBYID_NP (line 386) | SYS_OPENBYID_NP = 479 constant SYS_RECVMSG_X (line 387) | SYS_RECVMSG_X = 480 constant SYS_SENDMSG_X (line 388) | SYS_SENDMSG_X = 481 constant SYS_THREAD_SELFUSAGE (line 389) | SYS_THREAD_SELFUSAGE = 482 constant SYS_CSRCTL (line 390) | SYS_CSRCTL = 483 constant SYS_GUARDED_OPEN_DPROTECTED_NP (line 391) | SYS_GUARDED_OPEN_DPROTECTED_NP = 484 constant SYS_GUARDED_WRITE_NP (line 392) | SYS_GUARDED_WRITE_NP = 485 constant SYS_GUARDED_PWRITE_NP (line 393) | SYS_GUARDED_PWRITE_NP = 486 constant SYS_GUARDED_WRITEV_NP (line 394) | SYS_GUARDED_WRITEV_NP = 487 constant SYS_RENAME_EXT (line 395) | SYS_RENAME_EXT = 488 constant SYS_MREMAP_ENCRYPTED (line 396) | SYS_MREMAP_ENCRYPTED = 489 constant SYS_MAXSYSCALL (line 397) | SYS_MAXSYSCALL = 490 FILE: vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETFSSTAT (line 25) | SYS_GETFSSTAT = 18 constant SYS_GETPID (line 26) | SYS_GETPID = 20 constant SYS_MOUNT (line 27) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 28) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 29) | SYS_SETUID = 23 constant SYS_GETUID (line 30) | SYS_GETUID = 24 constant SYS_GETEUID (line 31) | SYS_GETEUID = 25 constant SYS_PTRACE (line 32) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 33) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 34) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 35) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 36) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 37) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 38) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 39) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 40) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 41) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 42) | SYS_SYNC = 36 constant SYS_KILL (line 43) | SYS_KILL = 37 constant SYS_GETPPID (line 44) | SYS_GETPPID = 39 constant SYS_DUP (line 45) | SYS_DUP = 41 constant SYS_PIPE (line 46) | SYS_PIPE = 42 constant SYS_GETEGID (line 47) | SYS_GETEGID = 43 constant SYS_PROFIL (line 48) | SYS_PROFIL = 44 constant SYS_KTRACE (line 49) | SYS_KTRACE = 45 constant SYS_GETGID (line 50) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 51) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 52) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 53) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 54) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 55) | SYS_IOCTL = 54 constant SYS_REBOOT (line 56) | SYS_REBOOT = 55 constant SYS_REVOKE (line 57) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 58) | SYS_SYMLINK = 57 constant SYS_READLINK (line 59) | SYS_READLINK = 58 constant SYS_EXECVE (line 60) | SYS_EXECVE = 59 constant SYS_UMASK (line 61) | SYS_UMASK = 60 constant SYS_CHROOT (line 62) | SYS_CHROOT = 61 constant SYS_MSYNC (line 63) | SYS_MSYNC = 65 constant SYS_VFORK (line 64) | SYS_VFORK = 66 constant SYS_SBRK (line 65) | SYS_SBRK = 69 constant SYS_SSTK (line 66) | SYS_SSTK = 70 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_STATFS (line 112) | SYS_STATFS = 157 constant SYS_FSTATFS (line 113) | SYS_FSTATFS = 158 constant SYS_GETFH (line 114) | SYS_GETFH = 161 constant SYS_GETDOMAINNAME (line 115) | SYS_GETDOMAINNAME = 162 constant SYS_SETDOMAINNAME (line 116) | SYS_SETDOMAINNAME = 163 constant SYS_UNAME (line 117) | SYS_UNAME = 164 constant SYS_SYSARCH (line 118) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 119) | SYS_RTPRIO = 166 constant SYS_EXTPREAD (line 120) | SYS_EXTPREAD = 173 constant SYS_EXTPWRITE (line 121) | SYS_EXTPWRITE = 174 constant SYS_NTP_ADJTIME (line 122) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 123) | SYS_SETGID = 181 constant SYS_SETEGID (line 124) | SYS_SETEGID = 182 constant SYS_SETEUID (line 125) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 130) | SYS_MMAP = 197 constant SYS_LSEEK (line 132) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 133) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 134) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS___SEMCTL (line 142) | SYS___SEMCTL = 220 constant SYS_SEMGET (line 143) | SYS_SEMGET = 221 constant SYS_SEMOP (line 144) | SYS_SEMOP = 222 constant SYS_MSGCTL (line 145) | SYS_MSGCTL = 224 constant SYS_MSGGET (line 146) | SYS_MSGGET = 225 constant SYS_MSGSND (line 147) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 148) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 149) | SYS_SHMAT = 228 constant SYS_SHMCTL (line 150) | SYS_SHMCTL = 229 constant SYS_SHMDT (line 151) | SYS_SHMDT = 230 constant SYS_SHMGET (line 152) | SYS_SHMGET = 231 constant SYS_CLOCK_GETTIME (line 153) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 154) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 155) | SYS_CLOCK_GETRES = 234 constant SYS_NANOSLEEP (line 156) | SYS_NANOSLEEP = 240 constant SYS_MINHERIT (line 157) | SYS_MINHERIT = 250 constant SYS_RFORK (line 158) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 159) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 160) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 161) | SYS_LCHOWN = 254 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_EXTPREADV (line 164) | SYS_EXTPREADV = 289 constant SYS_EXTPWRITEV (line 165) | SYS_EXTPWRITEV = 290 constant SYS_FHSTATFS (line 166) | SYS_FHSTATFS = 297 constant SYS_FHOPEN (line 167) | SYS_FHOPEN = 298 constant SYS_MODNEXT (line 168) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 169) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 170) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 171) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 172) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 173) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 174) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 175) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 176) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 177) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 178) | SYS_GETSID = 310 constant SYS_SETRESUID (line 179) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 180) | SYS_SETRESGID = 312 constant SYS_AIO_RETURN (line 181) | SYS_AIO_RETURN = 314 constant SYS_AIO_SUSPEND (line 182) | SYS_AIO_SUSPEND = 315 constant SYS_AIO_CANCEL (line 183) | SYS_AIO_CANCEL = 316 constant SYS_AIO_ERROR (line 184) | SYS_AIO_ERROR = 317 constant SYS_AIO_READ (line 185) | SYS_AIO_READ = 318 constant SYS_AIO_WRITE (line 186) | SYS_AIO_WRITE = 319 constant SYS_LIO_LISTIO (line 187) | SYS_LIO_LISTIO = 320 constant SYS_YIELD (line 188) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 189) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 190) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 191) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 192) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 193) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 194) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 195) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 196) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 197) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 198) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 199) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 200) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 201) | SYS_KLDSYM = 337 constant SYS_JAIL (line 202) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 203) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 204) | SYS_SIGSUSPEND = 341 constant SYS_SIGACTION (line 205) | SYS_SIGACTION = 342 constant SYS_SIGPENDING (line 206) | SYS_SIGPENDING = 343 constant SYS_SIGRETURN (line 207) | SYS_SIGRETURN = 344 constant SYS_SIGTIMEDWAIT (line 208) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 209) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 210) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 211) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 212) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 213) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 214) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 215) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 216) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 217) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 218) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 219) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 220) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 221) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_AIO_WAITCOMPLETE (line 222) | SYS_AIO_WAITCOMPLETE = 359 constant SYS_GETRESUID (line 223) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 224) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 225) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 226) | SYS_KEVENT = 363 constant SYS_SCTP_PEELOFF (line 227) | SYS_SCTP_PEELOFF = 364 constant SYS_LCHFLAGS (line 228) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 229) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 230) | SYS_SENDFILE = 393 constant SYS_VARSYM_SET (line 231) | SYS_VARSYM_SET = 450 constant SYS_VARSYM_GET (line 232) | SYS_VARSYM_GET = 451 constant SYS_VARSYM_LIST (line 233) | SYS_VARSYM_LIST = 452 constant SYS_EXEC_SYS_REGISTER (line 234) | SYS_EXEC_SYS_REGISTER = 465 constant SYS_EXEC_SYS_UNREGISTER (line 235) | SYS_EXEC_SYS_UNREGISTER = 466 constant SYS_SYS_CHECKPOINT (line 236) | SYS_SYS_CHECKPOINT = 467 constant SYS_MOUNTCTL (line 237) | SYS_MOUNTCTL = 468 constant SYS_UMTX_SLEEP (line 238) | SYS_UMTX_SLEEP = 469 constant SYS_UMTX_WAKEUP (line 239) | SYS_UMTX_WAKEUP = 470 constant SYS_JAIL_ATTACH (line 240) | SYS_JAIL_ATTACH = 471 constant SYS_SET_TLS_AREA (line 241) | SYS_SET_TLS_AREA = 472 constant SYS_GET_TLS_AREA (line 242) | SYS_GET_TLS_AREA = 473 constant SYS_CLOSEFROM (line 243) | SYS_CLOSEFROM = 474 constant SYS_STAT (line 244) | SYS_STAT = 475 constant SYS_FSTAT (line 245) | SYS_FSTAT = 476 constant SYS_LSTAT (line 246) | SYS_LSTAT = 477 constant SYS_FHSTAT (line 247) | SYS_FHSTAT = 478 constant SYS_GETDIRENTRIES (line 248) | SYS_GETDIRENTRIES = 479 constant SYS_GETDENTS (line 249) | SYS_GETDENTS = 480 constant SYS_USCHED_SET (line 250) | SYS_USCHED_SET = 481 constant SYS_EXTACCEPT (line 251) | SYS_EXTACCEPT = 482 constant SYS_EXTCONNECT (line 252) | SYS_EXTCONNECT = 483 constant SYS_MCONTROL (line 253) | SYS_MCONTROL = 485 constant SYS_VMSPACE_CREATE (line 254) | SYS_VMSPACE_CREATE = 486 constant SYS_VMSPACE_DESTROY (line 255) | SYS_VMSPACE_DESTROY = 487 constant SYS_VMSPACE_CTL (line 256) | SYS_VMSPACE_CTL = 488 constant SYS_VMSPACE_MMAP (line 257) | SYS_VMSPACE_MMAP = 489 constant SYS_VMSPACE_MUNMAP (line 258) | SYS_VMSPACE_MUNMAP = 490 constant SYS_VMSPACE_MCONTROL (line 259) | SYS_VMSPACE_MCONTROL = 491 constant SYS_VMSPACE_PREAD (line 260) | SYS_VMSPACE_PREAD = 492 constant SYS_VMSPACE_PWRITE (line 261) | SYS_VMSPACE_PWRITE = 493 constant SYS_EXTEXIT (line 262) | SYS_EXTEXIT = 494 constant SYS_LWP_CREATE (line 263) | SYS_LWP_CREATE = 495 constant SYS_LWP_GETTID (line 264) | SYS_LWP_GETTID = 496 constant SYS_LWP_KILL (line 265) | SYS_LWP_KILL = 497 constant SYS_LWP_RTPRIO (line 266) | SYS_LWP_RTPRIO = 498 constant SYS_PSELECT (line 267) | SYS_PSELECT = 499 constant SYS_STATVFS (line 268) | SYS_STATVFS = 500 constant SYS_FSTATVFS (line 269) | SYS_FSTATVFS = 501 constant SYS_FHSTATVFS (line 270) | SYS_FHSTATVFS = 502 constant SYS_GETVFSSTAT (line 271) | SYS_GETVFSSTAT = 503 constant SYS_OPENAT (line 272) | SYS_OPENAT = 504 constant SYS_FSTATAT (line 273) | SYS_FSTATAT = 505 constant SYS_FCHMODAT (line 274) | SYS_FCHMODAT = 506 constant SYS_FCHOWNAT (line 275) | SYS_FCHOWNAT = 507 constant SYS_UNLINKAT (line 276) | SYS_UNLINKAT = 508 constant SYS_FACCESSAT (line 277) | SYS_FACCESSAT = 509 constant SYS_MQ_OPEN (line 278) | SYS_MQ_OPEN = 510 constant SYS_MQ_CLOSE (line 279) | SYS_MQ_CLOSE = 511 constant SYS_MQ_UNLINK (line 280) | SYS_MQ_UNLINK = 512 constant SYS_MQ_GETATTR (line 281) | SYS_MQ_GETATTR = 513 constant SYS_MQ_SETATTR (line 282) | SYS_MQ_SETATTR = 514 constant SYS_MQ_NOTIFY (line 283) | SYS_MQ_NOTIFY = 515 constant SYS_MQ_SEND (line 284) | SYS_MQ_SEND = 516 constant SYS_MQ_RECEIVE (line 285) | SYS_MQ_RECEIVE = 517 constant SYS_MQ_TIMEDSEND (line 286) | SYS_MQ_TIMEDSEND = 518 constant SYS_MQ_TIMEDRECEIVE (line 287) | SYS_MQ_TIMEDRECEIVE = 519 constant SYS_IOPRIO_SET (line 288) | SYS_IOPRIO_SET = 520 constant SYS_IOPRIO_GET (line 289) | SYS_IOPRIO_GET = 521 constant SYS_CHROOT_KERNEL (line 290) | SYS_CHROOT_KERNEL = 522 constant SYS_RENAMEAT (line 291) | SYS_RENAMEAT = 523 constant SYS_MKDIRAT (line 292) | SYS_MKDIRAT = 524 constant SYS_MKFIFOAT (line 293) | SYS_MKFIFOAT = 525 constant SYS_MKNODAT (line 294) | SYS_MKNODAT = 526 constant SYS_READLINKAT (line 295) | SYS_READLINKAT = 527 constant SYS_SYMLINKAT (line 296) | SYS_SYMLINKAT = 528 constant SYS_SWAPOFF (line 297) | SYS_SWAPOFF = 529 constant SYS_VQUOTACTL (line 298) | SYS_VQUOTACTL = 530 constant SYS_LINKAT (line 299) | SYS_LINKAT = 531 constant SYS_EACCESS (line 300) | SYS_EACCESS = 532 constant SYS_LPATHCONF (line 301) | SYS_LPATHCONF = 533 constant SYS_VMM_GUEST_CTL (line 302) | SYS_VMM_GUEST_CTL = 534 constant SYS_VMM_GUEST_SYNC_ADDR (line 303) | SYS_VMM_GUEST_SYNC_ADDR = 535 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 27) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_GETEUID (line 30) | SYS_GETEUID = 25 constant SYS_PTRACE (line 31) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 32) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 33) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 34) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 35) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 36) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 37) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 38) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 39) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 40) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 41) | SYS_SYNC = 36 constant SYS_KILL (line 42) | SYS_KILL = 37 constant SYS_GETPPID (line 43) | SYS_GETPPID = 39 constant SYS_DUP (line 44) | SYS_DUP = 41 constant SYS_PIPE (line 45) | SYS_PIPE = 42 constant SYS_GETEGID (line 46) | SYS_GETEGID = 43 constant SYS_PROFIL (line 47) | SYS_PROFIL = 44 constant SYS_KTRACE (line 48) | SYS_KTRACE = 45 constant SYS_GETGID (line 49) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 50) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 51) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 52) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 53) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 54) | SYS_IOCTL = 54 constant SYS_REBOOT (line 55) | SYS_REBOOT = 55 constant SYS_REVOKE (line 56) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 57) | SYS_SYMLINK = 57 constant SYS_READLINK (line 58) | SYS_READLINK = 58 constant SYS_EXECVE (line 59) | SYS_EXECVE = 59 constant SYS_UMASK (line 60) | SYS_UMASK = 60 constant SYS_CHROOT (line 61) | SYS_CHROOT = 61 constant SYS_MSYNC (line 62) | SYS_MSYNC = 65 constant SYS_VFORK (line 63) | SYS_VFORK = 66 constant SYS_SBRK (line 64) | SYS_SBRK = 69 constant SYS_SSTK (line 65) | SYS_SSTK = 70 constant SYS_OVADVISE (line 66) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_LGETFH (line 112) | SYS_LGETFH = 160 constant SYS_GETFH (line 113) | SYS_GETFH = 161 constant SYS_SYSARCH (line 114) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 115) | SYS_RTPRIO = 166 constant SYS_FREEBSD6_PREAD (line 116) | SYS_FREEBSD6_PREAD = 173 constant SYS_FREEBSD6_PWRITE (line 117) | SYS_FREEBSD6_PWRITE = 174 constant SYS_SETFIB (line 118) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 119) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 120) | SYS_SETGID = 181 constant SYS_SETEGID (line 121) | SYS_SETEGID = 182 constant SYS_SETEUID (line 122) | SYS_SETEUID = 183 constant SYS_STAT (line 123) | SYS_STAT = 188 constant SYS_FSTAT (line 124) | SYS_FSTAT = 189 constant SYS_LSTAT (line 125) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 130) | SYS_GETDIRENTRIES = 196 constant SYS_FREEBSD6_MMAP (line 131) | SYS_FREEBSD6_MMAP = 197 constant SYS_FREEBSD6_LSEEK (line 132) | SYS_FREEBSD6_LSEEK = 199 constant SYS_FREEBSD6_TRUNCATE (line 133) | SYS_FREEBSD6_TRUNCATE = 200 constant SYS_FREEBSD6_FTRUNCATE (line 134) | SYS_FREEBSD6_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS_CLOCK_GETTIME (line 142) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 143) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 144) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 145) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 146) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 147) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 148) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 149) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 150) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 151) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 152) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 153) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_GETCPUCLOCKID2 (line 154) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 155) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 156) | SYS_MINHERIT = 250 constant SYS_RFORK (line 157) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 158) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 159) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 160) | SYS_LCHOWN = 254 constant SYS_GETDENTS (line 161) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 164) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 165) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 166) | SYS_NLSTAT = 280 constant SYS_PREADV (line 167) | SYS_PREADV = 289 constant SYS_PWRITEV (line 168) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 169) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 170) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 171) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 172) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 173) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 174) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 175) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 176) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 177) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 178) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 179) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 180) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 181) | SYS_GETSID = 310 constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 183) | SYS_SETRESGID = 312 constant SYS_YIELD (line 184) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 185) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 186) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 187) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 188) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 189) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 190) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 191) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 192) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 193) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 194) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 195) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 196) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 197) | SYS_KLDSYM = 337 constant SYS_JAIL (line 198) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 199) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 200) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 201) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 202) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 203) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 204) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 205) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 206) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 207) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 208) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 209) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 210) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 211) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 212) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 213) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 214) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 215) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_GETRESUID (line 216) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 217) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 218) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 219) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 220) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 221) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 222) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 223) | SYS___SETUGID = 374 constant SYS_EACCESS (line 224) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 225) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 226) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 227) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 228) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 229) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 230) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 231) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 232) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 233) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 234) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 235) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 236) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 237) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 238) | SYS_STATFS = 396 constant SYS_FSTATFS (line 239) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 240) | SYS_FHSTATFS = 398 constant SYS___MAC_GET_PID (line 241) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 242) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 243) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 244) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 245) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 246) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 247) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 248) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 249) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 250) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 251) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 252) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 253) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 254) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 255) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 256) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 257) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 258) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 259) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 260) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 261) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 262) | SYS_THR_KILL = 433 constant SYS__UMTX_LOCK (line 263) | SYS__UMTX_LOCK = 434 constant SYS__UMTX_UNLOCK (line 264) | SYS__UMTX_UNLOCK = 435 constant SYS_JAIL_ATTACH (line 265) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 266) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 267) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 268) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_THR_SUSPEND (line 269) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 270) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 271) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 272) | SYS_AUDIT = 445 constant SYS_AUDITON (line 273) | SYS_AUDITON = 446 constant SYS_GETAUID (line 274) | SYS_GETAUID = 447 constant SYS_SETAUID (line 275) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 276) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 277) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 278) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 279) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 280) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 281) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 282) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 283) | SYS_SIGQUEUE = 456 constant SYS_ABORT2 (line 284) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 285) | SYS_THR_SET_NAME = 464 constant SYS_RTPRIO_THREAD (line 286) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 287) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 288) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 289) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 290) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 291) | SYS_PREAD = 475 constant SYS_PWRITE (line 292) | SYS_PWRITE = 476 constant SYS_MMAP (line 293) | SYS_MMAP = 477 constant SYS_LSEEK (line 294) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 295) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 296) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 297) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 298) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 299) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 300) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 301) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 302) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 303) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 304) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 305) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 306) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 307) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 308) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 309) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 310) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 311) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 312) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 313) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 314) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 315) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 316) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 317) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 318) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 319) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 320) | SYS_POSIX_OPENPT = 504 constant SYS_JAIL_GET (line 321) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 322) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 323) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 324) | SYS_CLOSEFROM = 509 constant SYS_LPATHCONF (line 325) | SYS_LPATHCONF = 513 constant SYS_CAP_NEW (line 326) | SYS_CAP_NEW = 514 constant SYS_CAP_GETRIGHTS (line 327) | SYS_CAP_GETRIGHTS = 515 constant SYS_CAP_ENTER (line 328) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 329) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 330) | SYS_PDFORK = 518 constant SYS_PDKILL (line 331) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 332) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 333) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 334) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 335) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 336) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 337) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 338) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 339) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 340) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 341) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 342) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 343) | SYS_WAIT6 = 532 constant SYS_BINDAT (line 344) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 345) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 346) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 347) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 348) | SYS_PIPE2 = 542 constant SYS_PROCCTL (line 349) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 350) | SYS_PPOLL = 545 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 27) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_GETEUID (line 30) | SYS_GETEUID = 25 constant SYS_PTRACE (line 31) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 32) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 33) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 34) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 35) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 36) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 37) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 38) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 39) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 40) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 41) | SYS_SYNC = 36 constant SYS_KILL (line 42) | SYS_KILL = 37 constant SYS_GETPPID (line 43) | SYS_GETPPID = 39 constant SYS_DUP (line 44) | SYS_DUP = 41 constant SYS_PIPE (line 45) | SYS_PIPE = 42 constant SYS_GETEGID (line 46) | SYS_GETEGID = 43 constant SYS_PROFIL (line 47) | SYS_PROFIL = 44 constant SYS_KTRACE (line 48) | SYS_KTRACE = 45 constant SYS_GETGID (line 49) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 50) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 51) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 52) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 53) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 54) | SYS_IOCTL = 54 constant SYS_REBOOT (line 55) | SYS_REBOOT = 55 constant SYS_REVOKE (line 56) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 57) | SYS_SYMLINK = 57 constant SYS_READLINK (line 58) | SYS_READLINK = 58 constant SYS_EXECVE (line 59) | SYS_EXECVE = 59 constant SYS_UMASK (line 60) | SYS_UMASK = 60 constant SYS_CHROOT (line 61) | SYS_CHROOT = 61 constant SYS_MSYNC (line 62) | SYS_MSYNC = 65 constant SYS_VFORK (line 63) | SYS_VFORK = 66 constant SYS_SBRK (line 64) | SYS_SBRK = 69 constant SYS_SSTK (line 65) | SYS_SSTK = 70 constant SYS_OVADVISE (line 66) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_LGETFH (line 112) | SYS_LGETFH = 160 constant SYS_GETFH (line 113) | SYS_GETFH = 161 constant SYS_SYSARCH (line 114) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 115) | SYS_RTPRIO = 166 constant SYS_FREEBSD6_PREAD (line 116) | SYS_FREEBSD6_PREAD = 173 constant SYS_FREEBSD6_PWRITE (line 117) | SYS_FREEBSD6_PWRITE = 174 constant SYS_SETFIB (line 118) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 119) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 120) | SYS_SETGID = 181 constant SYS_SETEGID (line 121) | SYS_SETEGID = 182 constant SYS_SETEUID (line 122) | SYS_SETEUID = 183 constant SYS_STAT (line 123) | SYS_STAT = 188 constant SYS_FSTAT (line 124) | SYS_FSTAT = 189 constant SYS_LSTAT (line 125) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 130) | SYS_GETDIRENTRIES = 196 constant SYS_FREEBSD6_MMAP (line 131) | SYS_FREEBSD6_MMAP = 197 constant SYS_FREEBSD6_LSEEK (line 132) | SYS_FREEBSD6_LSEEK = 199 constant SYS_FREEBSD6_TRUNCATE (line 133) | SYS_FREEBSD6_TRUNCATE = 200 constant SYS_FREEBSD6_FTRUNCATE (line 134) | SYS_FREEBSD6_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS_CLOCK_GETTIME (line 142) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 143) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 144) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 145) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 146) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 147) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 148) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 149) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 150) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 151) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 152) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 153) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_GETCPUCLOCKID2 (line 154) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 155) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 156) | SYS_MINHERIT = 250 constant SYS_RFORK (line 157) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 158) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 159) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 160) | SYS_LCHOWN = 254 constant SYS_GETDENTS (line 161) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 164) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 165) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 166) | SYS_NLSTAT = 280 constant SYS_PREADV (line 167) | SYS_PREADV = 289 constant SYS_PWRITEV (line 168) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 169) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 170) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 171) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 172) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 173) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 174) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 175) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 176) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 177) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 178) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 179) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 180) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 181) | SYS_GETSID = 310 constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 183) | SYS_SETRESGID = 312 constant SYS_YIELD (line 184) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 185) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 186) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 187) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 188) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 189) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 190) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 191) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 192) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 193) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 194) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 195) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 196) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 197) | SYS_KLDSYM = 337 constant SYS_JAIL (line 198) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 199) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 200) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 201) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 202) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 203) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 204) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 205) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 206) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 207) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 208) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 209) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 210) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 211) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 212) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 213) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 214) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 215) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_GETRESUID (line 216) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 217) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 218) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 219) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 220) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 221) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 222) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 223) | SYS___SETUGID = 374 constant SYS_EACCESS (line 224) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 225) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 226) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 227) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 228) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 229) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 230) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 231) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 232) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 233) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 234) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 235) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 236) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 237) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 238) | SYS_STATFS = 396 constant SYS_FSTATFS (line 239) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 240) | SYS_FHSTATFS = 398 constant SYS___MAC_GET_PID (line 241) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 242) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 243) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 244) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 245) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 246) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 247) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 248) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 249) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 250) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 251) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 252) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 253) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 254) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 255) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 256) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 257) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 258) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 259) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 260) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 261) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 262) | SYS_THR_KILL = 433 constant SYS__UMTX_LOCK (line 263) | SYS__UMTX_LOCK = 434 constant SYS__UMTX_UNLOCK (line 264) | SYS__UMTX_UNLOCK = 435 constant SYS_JAIL_ATTACH (line 265) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 266) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 267) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 268) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_THR_SUSPEND (line 269) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 270) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 271) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 272) | SYS_AUDIT = 445 constant SYS_AUDITON (line 273) | SYS_AUDITON = 446 constant SYS_GETAUID (line 274) | SYS_GETAUID = 447 constant SYS_SETAUID (line 275) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 276) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 277) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 278) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 279) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 280) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 281) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 282) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 283) | SYS_SIGQUEUE = 456 constant SYS_ABORT2 (line 284) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 285) | SYS_THR_SET_NAME = 464 constant SYS_RTPRIO_THREAD (line 286) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 287) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 288) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 289) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 290) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 291) | SYS_PREAD = 475 constant SYS_PWRITE (line 292) | SYS_PWRITE = 476 constant SYS_MMAP (line 293) | SYS_MMAP = 477 constant SYS_LSEEK (line 294) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 295) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 296) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 297) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 298) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 299) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 300) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 301) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 302) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 303) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 304) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 305) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 306) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 307) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 308) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 309) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 310) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 311) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 312) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 313) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 314) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 315) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 316) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 317) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 318) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 319) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 320) | SYS_POSIX_OPENPT = 504 constant SYS_JAIL_GET (line 321) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 322) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 323) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 324) | SYS_CLOSEFROM = 509 constant SYS_LPATHCONF (line 325) | SYS_LPATHCONF = 513 constant SYS_CAP_NEW (line 326) | SYS_CAP_NEW = 514 constant SYS_CAP_GETRIGHTS (line 327) | SYS_CAP_GETRIGHTS = 515 constant SYS_CAP_ENTER (line 328) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 329) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 330) | SYS_PDFORK = 518 constant SYS_PDKILL (line 331) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 332) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 333) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 334) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 335) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 336) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 337) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 338) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 339) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 340) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 341) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 342) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 343) | SYS_WAIT6 = 532 constant SYS_BINDAT (line 344) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 345) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 346) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 347) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 348) | SYS_PIPE2 = 542 constant SYS_PROCCTL (line 349) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 350) | SYS_PPOLL = 545 FILE: vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 27) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 28) | SYS_SETUID = 23 constant SYS_GETUID (line 29) | SYS_GETUID = 24 constant SYS_GETEUID (line 30) | SYS_GETEUID = 25 constant SYS_PTRACE (line 31) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 32) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 33) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 34) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 35) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 36) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 37) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 38) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 39) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 40) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 41) | SYS_SYNC = 36 constant SYS_KILL (line 42) | SYS_KILL = 37 constant SYS_GETPPID (line 43) | SYS_GETPPID = 39 constant SYS_DUP (line 44) | SYS_DUP = 41 constant SYS_PIPE (line 45) | SYS_PIPE = 42 constant SYS_GETEGID (line 46) | SYS_GETEGID = 43 constant SYS_PROFIL (line 47) | SYS_PROFIL = 44 constant SYS_KTRACE (line 48) | SYS_KTRACE = 45 constant SYS_GETGID (line 49) | SYS_GETGID = 47 constant SYS_GETLOGIN (line 50) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 51) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 52) | SYS_ACCT = 51 constant SYS_SIGALTSTACK (line 53) | SYS_SIGALTSTACK = 53 constant SYS_IOCTL (line 54) | SYS_IOCTL = 54 constant SYS_REBOOT (line 55) | SYS_REBOOT = 55 constant SYS_REVOKE (line 56) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 57) | SYS_SYMLINK = 57 constant SYS_READLINK (line 58) | SYS_READLINK = 58 constant SYS_EXECVE (line 59) | SYS_EXECVE = 59 constant SYS_UMASK (line 60) | SYS_UMASK = 60 constant SYS_CHROOT (line 61) | SYS_CHROOT = 61 constant SYS_MSYNC (line 62) | SYS_MSYNC = 65 constant SYS_VFORK (line 63) | SYS_VFORK = 66 constant SYS_SBRK (line 64) | SYS_SBRK = 69 constant SYS_SSTK (line 65) | SYS_SSTK = 70 constant SYS_OVADVISE (line 66) | SYS_OVADVISE = 72 constant SYS_MUNMAP (line 67) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 68) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 69) | SYS_MADVISE = 75 constant SYS_MINCORE (line 70) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 71) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 72) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 73) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 74) | SYS_SETPGID = 82 constant SYS_SETITIMER (line 75) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 76) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 86 constant SYS_GETDTABLESIZE (line 78) | SYS_GETDTABLESIZE = 89 constant SYS_DUP2 (line 79) | SYS_DUP2 = 90 constant SYS_FCNTL (line 80) | SYS_FCNTL = 92 constant SYS_SELECT (line 81) | SYS_SELECT = 93 constant SYS_FSYNC (line 82) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 83) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 84) | SYS_SOCKET = 97 constant SYS_CONNECT (line 85) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 86) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 87) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 88) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 89) | SYS_LISTEN = 106 constant SYS_GETTIMEOFDAY (line 90) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 91) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 92) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 93) | SYS_READV = 120 constant SYS_WRITEV (line 94) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 95) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 96) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 97) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 98) | SYS_SETREUID = 126 constant SYS_SETREGID (line 99) | SYS_SETREGID = 127 constant SYS_RENAME (line 100) | SYS_RENAME = 128 constant SYS_FLOCK (line 101) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 102) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 103) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 104) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 105) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 106) | SYS_MKDIR = 136 constant SYS_RMDIR (line 107) | SYS_RMDIR = 137 constant SYS_UTIMES (line 108) | SYS_UTIMES = 138 constant SYS_ADJTIME (line 109) | SYS_ADJTIME = 140 constant SYS_SETSID (line 110) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 111) | SYS_QUOTACTL = 148 constant SYS_LGETFH (line 112) | SYS_LGETFH = 160 constant SYS_GETFH (line 113) | SYS_GETFH = 161 constant SYS_SYSARCH (line 114) | SYS_SYSARCH = 165 constant SYS_RTPRIO (line 115) | SYS_RTPRIO = 166 constant SYS_FREEBSD6_PREAD (line 116) | SYS_FREEBSD6_PREAD = 173 constant SYS_FREEBSD6_PWRITE (line 117) | SYS_FREEBSD6_PWRITE = 174 constant SYS_SETFIB (line 118) | SYS_SETFIB = 175 constant SYS_NTP_ADJTIME (line 119) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 120) | SYS_SETGID = 181 constant SYS_SETEGID (line 121) | SYS_SETEGID = 182 constant SYS_SETEUID (line 122) | SYS_SETEUID = 183 constant SYS_STAT (line 123) | SYS_STAT = 188 constant SYS_FSTAT (line 124) | SYS_FSTAT = 189 constant SYS_LSTAT (line 125) | SYS_LSTAT = 190 constant SYS_PATHCONF (line 126) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 127) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 128) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 129) | SYS_SETRLIMIT = 195 constant SYS_GETDIRENTRIES (line 130) | SYS_GETDIRENTRIES = 196 constant SYS_FREEBSD6_MMAP (line 131) | SYS_FREEBSD6_MMAP = 197 constant SYS_FREEBSD6_LSEEK (line 132) | SYS_FREEBSD6_LSEEK = 199 constant SYS_FREEBSD6_TRUNCATE (line 133) | SYS_FREEBSD6_TRUNCATE = 200 constant SYS_FREEBSD6_FTRUNCATE (line 134) | SYS_FREEBSD6_FTRUNCATE = 201 constant SYS___SYSCTL (line 135) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 136) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 137) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 138) | SYS_UNDELETE = 205 constant SYS_FUTIMES (line 139) | SYS_FUTIMES = 206 constant SYS_GETPGID (line 140) | SYS_GETPGID = 207 constant SYS_POLL (line 141) | SYS_POLL = 209 constant SYS_CLOCK_GETTIME (line 142) | SYS_CLOCK_GETTIME = 232 constant SYS_CLOCK_SETTIME (line 143) | SYS_CLOCK_SETTIME = 233 constant SYS_CLOCK_GETRES (line 144) | SYS_CLOCK_GETRES = 234 constant SYS_KTIMER_CREATE (line 145) | SYS_KTIMER_CREATE = 235 constant SYS_KTIMER_DELETE (line 146) | SYS_KTIMER_DELETE = 236 constant SYS_KTIMER_SETTIME (line 147) | SYS_KTIMER_SETTIME = 237 constant SYS_KTIMER_GETTIME (line 148) | SYS_KTIMER_GETTIME = 238 constant SYS_KTIMER_GETOVERRUN (line 149) | SYS_KTIMER_GETOVERRUN = 239 constant SYS_NANOSLEEP (line 150) | SYS_NANOSLEEP = 240 constant SYS_FFCLOCK_GETCOUNTER (line 151) | SYS_FFCLOCK_GETCOUNTER = 241 constant SYS_FFCLOCK_SETESTIMATE (line 152) | SYS_FFCLOCK_SETESTIMATE = 242 constant SYS_FFCLOCK_GETESTIMATE (line 153) | SYS_FFCLOCK_GETESTIMATE = 243 constant SYS_CLOCK_GETCPUCLOCKID2 (line 154) | SYS_CLOCK_GETCPUCLOCKID2 = 247 constant SYS_NTP_GETTIME (line 155) | SYS_NTP_GETTIME = 248 constant SYS_MINHERIT (line 156) | SYS_MINHERIT = 250 constant SYS_RFORK (line 157) | SYS_RFORK = 251 constant SYS_OPENBSD_POLL (line 158) | SYS_OPENBSD_POLL = 252 constant SYS_ISSETUGID (line 159) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 160) | SYS_LCHOWN = 254 constant SYS_GETDENTS (line 161) | SYS_GETDENTS = 272 constant SYS_LCHMOD (line 162) | SYS_LCHMOD = 274 constant SYS_LUTIMES (line 163) | SYS_LUTIMES = 276 constant SYS_NSTAT (line 164) | SYS_NSTAT = 278 constant SYS_NFSTAT (line 165) | SYS_NFSTAT = 279 constant SYS_NLSTAT (line 166) | SYS_NLSTAT = 280 constant SYS_PREADV (line 167) | SYS_PREADV = 289 constant SYS_PWRITEV (line 168) | SYS_PWRITEV = 290 constant SYS_FHOPEN (line 169) | SYS_FHOPEN = 298 constant SYS_FHSTAT (line 170) | SYS_FHSTAT = 299 constant SYS_MODNEXT (line 171) | SYS_MODNEXT = 300 constant SYS_MODSTAT (line 172) | SYS_MODSTAT = 301 constant SYS_MODFNEXT (line 173) | SYS_MODFNEXT = 302 constant SYS_MODFIND (line 174) | SYS_MODFIND = 303 constant SYS_KLDLOAD (line 175) | SYS_KLDLOAD = 304 constant SYS_KLDUNLOAD (line 176) | SYS_KLDUNLOAD = 305 constant SYS_KLDFIND (line 177) | SYS_KLDFIND = 306 constant SYS_KLDNEXT (line 178) | SYS_KLDNEXT = 307 constant SYS_KLDSTAT (line 179) | SYS_KLDSTAT = 308 constant SYS_KLDFIRSTMOD (line 180) | SYS_KLDFIRSTMOD = 309 constant SYS_GETSID (line 181) | SYS_GETSID = 310 constant SYS_SETRESUID (line 182) | SYS_SETRESUID = 311 constant SYS_SETRESGID (line 183) | SYS_SETRESGID = 312 constant SYS_YIELD (line 184) | SYS_YIELD = 321 constant SYS_MLOCKALL (line 185) | SYS_MLOCKALL = 324 constant SYS_MUNLOCKALL (line 186) | SYS_MUNLOCKALL = 325 constant SYS___GETCWD (line 187) | SYS___GETCWD = 326 constant SYS_SCHED_SETPARAM (line 188) | SYS_SCHED_SETPARAM = 327 constant SYS_SCHED_GETPARAM (line 189) | SYS_SCHED_GETPARAM = 328 constant SYS_SCHED_SETSCHEDULER (line 190) | SYS_SCHED_SETSCHEDULER = 329 constant SYS_SCHED_GETSCHEDULER (line 191) | SYS_SCHED_GETSCHEDULER = 330 constant SYS_SCHED_YIELD (line 192) | SYS_SCHED_YIELD = 331 constant SYS_SCHED_GET_PRIORITY_MAX (line 193) | SYS_SCHED_GET_PRIORITY_MAX = 332 constant SYS_SCHED_GET_PRIORITY_MIN (line 194) | SYS_SCHED_GET_PRIORITY_MIN = 333 constant SYS_SCHED_RR_GET_INTERVAL (line 195) | SYS_SCHED_RR_GET_INTERVAL = 334 constant SYS_UTRACE (line 196) | SYS_UTRACE = 335 constant SYS_KLDSYM (line 197) | SYS_KLDSYM = 337 constant SYS_JAIL (line 198) | SYS_JAIL = 338 constant SYS_SIGPROCMASK (line 199) | SYS_SIGPROCMASK = 340 constant SYS_SIGSUSPEND (line 200) | SYS_SIGSUSPEND = 341 constant SYS_SIGPENDING (line 201) | SYS_SIGPENDING = 343 constant SYS_SIGTIMEDWAIT (line 202) | SYS_SIGTIMEDWAIT = 345 constant SYS_SIGWAITINFO (line 203) | SYS_SIGWAITINFO = 346 constant SYS___ACL_GET_FILE (line 204) | SYS___ACL_GET_FILE = 347 constant SYS___ACL_SET_FILE (line 205) | SYS___ACL_SET_FILE = 348 constant SYS___ACL_GET_FD (line 206) | SYS___ACL_GET_FD = 349 constant SYS___ACL_SET_FD (line 207) | SYS___ACL_SET_FD = 350 constant SYS___ACL_DELETE_FILE (line 208) | SYS___ACL_DELETE_FILE = 351 constant SYS___ACL_DELETE_FD (line 209) | SYS___ACL_DELETE_FD = 352 constant SYS___ACL_ACLCHECK_FILE (line 210) | SYS___ACL_ACLCHECK_FILE = 353 constant SYS___ACL_ACLCHECK_FD (line 211) | SYS___ACL_ACLCHECK_FD = 354 constant SYS_EXTATTRCTL (line 212) | SYS_EXTATTRCTL = 355 constant SYS_EXTATTR_SET_FILE (line 213) | SYS_EXTATTR_SET_FILE = 356 constant SYS_EXTATTR_GET_FILE (line 214) | SYS_EXTATTR_GET_FILE = 357 constant SYS_EXTATTR_DELETE_FILE (line 215) | SYS_EXTATTR_DELETE_FILE = 358 constant SYS_GETRESUID (line 216) | SYS_GETRESUID = 360 constant SYS_GETRESGID (line 217) | SYS_GETRESGID = 361 constant SYS_KQUEUE (line 218) | SYS_KQUEUE = 362 constant SYS_KEVENT (line 219) | SYS_KEVENT = 363 constant SYS_EXTATTR_SET_FD (line 220) | SYS_EXTATTR_SET_FD = 371 constant SYS_EXTATTR_GET_FD (line 221) | SYS_EXTATTR_GET_FD = 372 constant SYS_EXTATTR_DELETE_FD (line 222) | SYS_EXTATTR_DELETE_FD = 373 constant SYS___SETUGID (line 223) | SYS___SETUGID = 374 constant SYS_EACCESS (line 224) | SYS_EACCESS = 376 constant SYS_NMOUNT (line 225) | SYS_NMOUNT = 378 constant SYS___MAC_GET_PROC (line 226) | SYS___MAC_GET_PROC = 384 constant SYS___MAC_SET_PROC (line 227) | SYS___MAC_SET_PROC = 385 constant SYS___MAC_GET_FD (line 228) | SYS___MAC_GET_FD = 386 constant SYS___MAC_GET_FILE (line 229) | SYS___MAC_GET_FILE = 387 constant SYS___MAC_SET_FD (line 230) | SYS___MAC_SET_FD = 388 constant SYS___MAC_SET_FILE (line 231) | SYS___MAC_SET_FILE = 389 constant SYS_KENV (line 232) | SYS_KENV = 390 constant SYS_LCHFLAGS (line 233) | SYS_LCHFLAGS = 391 constant SYS_UUIDGEN (line 234) | SYS_UUIDGEN = 392 constant SYS_SENDFILE (line 235) | SYS_SENDFILE = 393 constant SYS_MAC_SYSCALL (line 236) | SYS_MAC_SYSCALL = 394 constant SYS_GETFSSTAT (line 237) | SYS_GETFSSTAT = 395 constant SYS_STATFS (line 238) | SYS_STATFS = 396 constant SYS_FSTATFS (line 239) | SYS_FSTATFS = 397 constant SYS_FHSTATFS (line 240) | SYS_FHSTATFS = 398 constant SYS___MAC_GET_PID (line 241) | SYS___MAC_GET_PID = 409 constant SYS___MAC_GET_LINK (line 242) | SYS___MAC_GET_LINK = 410 constant SYS___MAC_SET_LINK (line 243) | SYS___MAC_SET_LINK = 411 constant SYS_EXTATTR_SET_LINK (line 244) | SYS_EXTATTR_SET_LINK = 412 constant SYS_EXTATTR_GET_LINK (line 245) | SYS_EXTATTR_GET_LINK = 413 constant SYS_EXTATTR_DELETE_LINK (line 246) | SYS_EXTATTR_DELETE_LINK = 414 constant SYS___MAC_EXECVE (line 247) | SYS___MAC_EXECVE = 415 constant SYS_SIGACTION (line 248) | SYS_SIGACTION = 416 constant SYS_SIGRETURN (line 249) | SYS_SIGRETURN = 417 constant SYS_GETCONTEXT (line 250) | SYS_GETCONTEXT = 421 constant SYS_SETCONTEXT (line 251) | SYS_SETCONTEXT = 422 constant SYS_SWAPCONTEXT (line 252) | SYS_SWAPCONTEXT = 423 constant SYS_SWAPOFF (line 253) | SYS_SWAPOFF = 424 constant SYS___ACL_GET_LINK (line 254) | SYS___ACL_GET_LINK = 425 constant SYS___ACL_SET_LINK (line 255) | SYS___ACL_SET_LINK = 426 constant SYS___ACL_DELETE_LINK (line 256) | SYS___ACL_DELETE_LINK = 427 constant SYS___ACL_ACLCHECK_LINK (line 257) | SYS___ACL_ACLCHECK_LINK = 428 constant SYS_SIGWAIT (line 258) | SYS_SIGWAIT = 429 constant SYS_THR_CREATE (line 259) | SYS_THR_CREATE = 430 constant SYS_THR_EXIT (line 260) | SYS_THR_EXIT = 431 constant SYS_THR_SELF (line 261) | SYS_THR_SELF = 432 constant SYS_THR_KILL (line 262) | SYS_THR_KILL = 433 constant SYS__UMTX_LOCK (line 263) | SYS__UMTX_LOCK = 434 constant SYS__UMTX_UNLOCK (line 264) | SYS__UMTX_UNLOCK = 435 constant SYS_JAIL_ATTACH (line 265) | SYS_JAIL_ATTACH = 436 constant SYS_EXTATTR_LIST_FD (line 266) | SYS_EXTATTR_LIST_FD = 437 constant SYS_EXTATTR_LIST_FILE (line 267) | SYS_EXTATTR_LIST_FILE = 438 constant SYS_EXTATTR_LIST_LINK (line 268) | SYS_EXTATTR_LIST_LINK = 439 constant SYS_THR_SUSPEND (line 269) | SYS_THR_SUSPEND = 442 constant SYS_THR_WAKE (line 270) | SYS_THR_WAKE = 443 constant SYS_KLDUNLOADF (line 271) | SYS_KLDUNLOADF = 444 constant SYS_AUDIT (line 272) | SYS_AUDIT = 445 constant SYS_AUDITON (line 273) | SYS_AUDITON = 446 constant SYS_GETAUID (line 274) | SYS_GETAUID = 447 constant SYS_SETAUID (line 275) | SYS_SETAUID = 448 constant SYS_GETAUDIT (line 276) | SYS_GETAUDIT = 449 constant SYS_SETAUDIT (line 277) | SYS_SETAUDIT = 450 constant SYS_GETAUDIT_ADDR (line 278) | SYS_GETAUDIT_ADDR = 451 constant SYS_SETAUDIT_ADDR (line 279) | SYS_SETAUDIT_ADDR = 452 constant SYS_AUDITCTL (line 280) | SYS_AUDITCTL = 453 constant SYS__UMTX_OP (line 281) | SYS__UMTX_OP = 454 constant SYS_THR_NEW (line 282) | SYS_THR_NEW = 455 constant SYS_SIGQUEUE (line 283) | SYS_SIGQUEUE = 456 constant SYS_ABORT2 (line 284) | SYS_ABORT2 = 463 constant SYS_THR_SET_NAME (line 285) | SYS_THR_SET_NAME = 464 constant SYS_RTPRIO_THREAD (line 286) | SYS_RTPRIO_THREAD = 466 constant SYS_SCTP_PEELOFF (line 287) | SYS_SCTP_PEELOFF = 471 constant SYS_SCTP_GENERIC_SENDMSG (line 288) | SYS_SCTP_GENERIC_SENDMSG = 472 constant SYS_SCTP_GENERIC_SENDMSG_IOV (line 289) | SYS_SCTP_GENERIC_SENDMSG_IOV = 473 constant SYS_SCTP_GENERIC_RECVMSG (line 290) | SYS_SCTP_GENERIC_RECVMSG = 474 constant SYS_PREAD (line 291) | SYS_PREAD = 475 constant SYS_PWRITE (line 292) | SYS_PWRITE = 476 constant SYS_MMAP (line 293) | SYS_MMAP = 477 constant SYS_LSEEK (line 294) | SYS_LSEEK = 478 constant SYS_TRUNCATE (line 295) | SYS_TRUNCATE = 479 constant SYS_FTRUNCATE (line 296) | SYS_FTRUNCATE = 480 constant SYS_THR_KILL2 (line 297) | SYS_THR_KILL2 = 481 constant SYS_SHM_OPEN (line 298) | SYS_SHM_OPEN = 482 constant SYS_SHM_UNLINK (line 299) | SYS_SHM_UNLINK = 483 constant SYS_CPUSET (line 300) | SYS_CPUSET = 484 constant SYS_CPUSET_SETID (line 301) | SYS_CPUSET_SETID = 485 constant SYS_CPUSET_GETID (line 302) | SYS_CPUSET_GETID = 486 constant SYS_CPUSET_GETAFFINITY (line 303) | SYS_CPUSET_GETAFFINITY = 487 constant SYS_CPUSET_SETAFFINITY (line 304) | SYS_CPUSET_SETAFFINITY = 488 constant SYS_FACCESSAT (line 305) | SYS_FACCESSAT = 489 constant SYS_FCHMODAT (line 306) | SYS_FCHMODAT = 490 constant SYS_FCHOWNAT (line 307) | SYS_FCHOWNAT = 491 constant SYS_FEXECVE (line 308) | SYS_FEXECVE = 492 constant SYS_FSTATAT (line 309) | SYS_FSTATAT = 493 constant SYS_FUTIMESAT (line 310) | SYS_FUTIMESAT = 494 constant SYS_LINKAT (line 311) | SYS_LINKAT = 495 constant SYS_MKDIRAT (line 312) | SYS_MKDIRAT = 496 constant SYS_MKFIFOAT (line 313) | SYS_MKFIFOAT = 497 constant SYS_MKNODAT (line 314) | SYS_MKNODAT = 498 constant SYS_OPENAT (line 315) | SYS_OPENAT = 499 constant SYS_READLINKAT (line 316) | SYS_READLINKAT = 500 constant SYS_RENAMEAT (line 317) | SYS_RENAMEAT = 501 constant SYS_SYMLINKAT (line 318) | SYS_SYMLINKAT = 502 constant SYS_UNLINKAT (line 319) | SYS_UNLINKAT = 503 constant SYS_POSIX_OPENPT (line 320) | SYS_POSIX_OPENPT = 504 constant SYS_JAIL_GET (line 321) | SYS_JAIL_GET = 506 constant SYS_JAIL_SET (line 322) | SYS_JAIL_SET = 507 constant SYS_JAIL_REMOVE (line 323) | SYS_JAIL_REMOVE = 508 constant SYS_CLOSEFROM (line 324) | SYS_CLOSEFROM = 509 constant SYS_LPATHCONF (line 325) | SYS_LPATHCONF = 513 constant SYS_CAP_NEW (line 326) | SYS_CAP_NEW = 514 constant SYS_CAP_GETRIGHTS (line 327) | SYS_CAP_GETRIGHTS = 515 constant SYS_CAP_ENTER (line 328) | SYS_CAP_ENTER = 516 constant SYS_CAP_GETMODE (line 329) | SYS_CAP_GETMODE = 517 constant SYS_PDFORK (line 330) | SYS_PDFORK = 518 constant SYS_PDKILL (line 331) | SYS_PDKILL = 519 constant SYS_PDGETPID (line 332) | SYS_PDGETPID = 520 constant SYS_PSELECT (line 333) | SYS_PSELECT = 522 constant SYS_GETLOGINCLASS (line 334) | SYS_GETLOGINCLASS = 523 constant SYS_SETLOGINCLASS (line 335) | SYS_SETLOGINCLASS = 524 constant SYS_RCTL_GET_RACCT (line 336) | SYS_RCTL_GET_RACCT = 525 constant SYS_RCTL_GET_RULES (line 337) | SYS_RCTL_GET_RULES = 526 constant SYS_RCTL_GET_LIMITS (line 338) | SYS_RCTL_GET_LIMITS = 527 constant SYS_RCTL_ADD_RULE (line 339) | SYS_RCTL_ADD_RULE = 528 constant SYS_RCTL_REMOVE_RULE (line 340) | SYS_RCTL_REMOVE_RULE = 529 constant SYS_POSIX_FALLOCATE (line 341) | SYS_POSIX_FALLOCATE = 530 constant SYS_POSIX_FADVISE (line 342) | SYS_POSIX_FADVISE = 531 constant SYS_WAIT6 (line 343) | SYS_WAIT6 = 532 constant SYS_BINDAT (line 344) | SYS_BINDAT = 538 constant SYS_CONNECTAT (line 345) | SYS_CONNECTAT = 539 constant SYS_CHFLAGSAT (line 346) | SYS_CHFLAGSAT = 540 constant SYS_ACCEPT4 (line 347) | SYS_ACCEPT4 = 541 constant SYS_PIPE2 (line 348) | SYS_PIPE2 = 542 constant SYS_PROCCTL (line 349) | SYS_PROCCTL = 544 constant SYS_PPOLL (line 350) | SYS_PPOLL = 545 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_386.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAITPID (line 16) | SYS_WAITPID = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECVE (line 20) | SYS_EXECVE = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_TIME (line 22) | SYS_TIME = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BREAK (line 26) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 27) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_STIME (line 34) | SYS_STIME = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 37) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_STTY (line 40) | SYS_STTY = 31 constant SYS_GTTY (line 41) | SYS_GTTY = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_NICE (line 43) | SYS_NICE = 34 constant SYS_FTIME (line 44) | SYS_FTIME = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_KILL (line 46) | SYS_KILL = 37 constant SYS_RENAME (line 47) | SYS_RENAME = 38 constant SYS_MKDIR (line 48) | SYS_MKDIR = 39 constant SYS_RMDIR (line 49) | SYS_RMDIR = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_PIPE (line 51) | SYS_PIPE = 42 constant SYS_TIMES (line 52) | SYS_TIMES = 43 constant SYS_PROF (line 53) | SYS_PROF = 44 constant SYS_BRK (line 54) | SYS_BRK = 45 constant SYS_SETGID (line 55) | SYS_SETGID = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 58) | SYS_GETEUID = 49 constant SYS_GETEGID (line 59) | SYS_GETEGID = 50 constant SYS_ACCT (line 60) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 62) | SYS_LOCK = 53 constant SYS_IOCTL (line 63) | SYS_IOCTL = 54 constant SYS_FCNTL (line 64) | SYS_FCNTL = 55 constant SYS_MPX (line 65) | SYS_MPX = 56 constant SYS_SETPGID (line 66) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 68) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 69) | SYS_UMASK = 60 constant SYS_CHROOT (line 70) | SYS_CHROOT = 61 constant SYS_USTAT (line 71) | SYS_USTAT = 62 constant SYS_DUP2 (line 72) | SYS_DUP2 = 63 constant SYS_GETPPID (line 73) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 65 constant SYS_SETSID (line 75) | SYS_SETSID = 66 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 79) | SYS_SETREUID = 70 constant SYS_SETREGID (line 80) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 91) | SYS_SELECT = 82 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 93) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 94) | SYS_READLINK = 85 constant SYS_USELIB (line 95) | SYS_USELIB = 86 constant SYS_SWAPON (line 96) | SYS_SWAPON = 87 constant SYS_REBOOT (line 97) | SYS_REBOOT = 88 constant SYS_READDIR (line 98) | SYS_READDIR = 89 constant SYS_MMAP (line 99) | SYS_MMAP = 90 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 107) | SYS_PROFIL = 98 constant SYS_STATFS (line 108) | SYS_STATFS = 99 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 105 constant SYS_STAT (line 115) | SYS_STAT = 106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 118) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 119) | SYS_IOPL = 110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 111 constant SYS_IDLE (line 121) | SYS_IDLE = 112 constant SYS_VM86OLD (line 122) | SYS_VM86OLD = 113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 116 constant SYS_IPC (line 126) | SYS_IPC = 117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 129) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 131) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 144 constant SYS_READV (line 154) | SYS_READV = 145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 146 constant SYS_GETSID (line 156) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 157) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 158) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 159) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 163) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 164) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 165) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 166) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 167) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 168) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 169) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 170) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 171) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 172) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 173) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 174) | SYS_GETRESUID = 165 constant SYS_VM86 (line 175) | SYS_VM86 = 166 constant SYS_QUERY_MODULE (line 176) | SYS_QUERY_MODULE = 167 constant SYS_POLL (line 177) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 178) | SYS_NFSSERVCTL = 169 constant SYS_SETRESGID (line 179) | SYS_SETRESGID = 170 constant SYS_GETRESGID (line 180) | SYS_GETRESGID = 171 constant SYS_PRCTL (line 181) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 182) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 183) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 184) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 185) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 186) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 187) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 188) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 189) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 190) | SYS_PWRITE64 = 181 constant SYS_CHOWN (line 191) | SYS_CHOWN = 182 constant SYS_GETCWD (line 192) | SYS_GETCWD = 183 constant SYS_CAPGET (line 193) | SYS_CAPGET = 184 constant SYS_CAPSET (line 194) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 195) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 196) | SYS_SENDFILE = 187 constant SYS_GETPMSG (line 197) | SYS_GETPMSG = 188 constant SYS_PUTPMSG (line 198) | SYS_PUTPMSG = 189 constant SYS_VFORK (line 199) | SYS_VFORK = 190 constant SYS_UGETRLIMIT (line 200) | SYS_UGETRLIMIT = 191 constant SYS_MMAP2 (line 201) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 202) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 203) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 204) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 205) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 206) | SYS_FSTAT64 = 197 constant SYS_LCHOWN32 (line 207) | SYS_LCHOWN32 = 198 constant SYS_GETUID32 (line 208) | SYS_GETUID32 = 199 constant SYS_GETGID32 (line 209) | SYS_GETGID32 = 200 constant SYS_GETEUID32 (line 210) | SYS_GETEUID32 = 201 constant SYS_GETEGID32 (line 211) | SYS_GETEGID32 = 202 constant SYS_SETREUID32 (line 212) | SYS_SETREUID32 = 203 constant SYS_SETREGID32 (line 213) | SYS_SETREGID32 = 204 constant SYS_GETGROUPS32 (line 214) | SYS_GETGROUPS32 = 205 constant SYS_SETGROUPS32 (line 215) | SYS_SETGROUPS32 = 206 constant SYS_FCHOWN32 (line 216) | SYS_FCHOWN32 = 207 constant SYS_SETRESUID32 (line 217) | SYS_SETRESUID32 = 208 constant SYS_GETRESUID32 (line 218) | SYS_GETRESUID32 = 209 constant SYS_SETRESGID32 (line 219) | SYS_SETRESGID32 = 210 constant SYS_GETRESGID32 (line 220) | SYS_GETRESGID32 = 211 constant SYS_CHOWN32 (line 221) | SYS_CHOWN32 = 212 constant SYS_SETUID32 (line 222) | SYS_SETUID32 = 213 constant SYS_SETGID32 (line 223) | SYS_SETGID32 = 214 constant SYS_SETFSUID32 (line 224) | SYS_SETFSUID32 = 215 constant SYS_SETFSGID32 (line 225) | SYS_SETFSGID32 = 216 constant SYS_PIVOT_ROOT (line 226) | SYS_PIVOT_ROOT = 217 constant SYS_MINCORE (line 227) | SYS_MINCORE = 218 constant SYS_MADVISE (line 228) | SYS_MADVISE = 219 constant SYS_GETDENTS64 (line 229) | SYS_GETDENTS64 = 220 constant SYS_FCNTL64 (line 230) | SYS_FCNTL64 = 221 constant SYS_GETTID (line 231) | SYS_GETTID = 224 constant SYS_READAHEAD (line 232) | SYS_READAHEAD = 225 constant SYS_SETXATTR (line 233) | SYS_SETXATTR = 226 constant SYS_LSETXATTR (line 234) | SYS_LSETXATTR = 227 constant SYS_FSETXATTR (line 235) | SYS_FSETXATTR = 228 constant SYS_GETXATTR (line 236) | SYS_GETXATTR = 229 constant SYS_LGETXATTR (line 237) | SYS_LGETXATTR = 230 constant SYS_FGETXATTR (line 238) | SYS_FGETXATTR = 231 constant SYS_LISTXATTR (line 239) | SYS_LISTXATTR = 232 constant SYS_LLISTXATTR (line 240) | SYS_LLISTXATTR = 233 constant SYS_FLISTXATTR (line 241) | SYS_FLISTXATTR = 234 constant SYS_REMOVEXATTR (line 242) | SYS_REMOVEXATTR = 235 constant SYS_LREMOVEXATTR (line 243) | SYS_LREMOVEXATTR = 236 constant SYS_FREMOVEXATTR (line 244) | SYS_FREMOVEXATTR = 237 constant SYS_TKILL (line 245) | SYS_TKILL = 238 constant SYS_SENDFILE64 (line 246) | SYS_SENDFILE64 = 239 constant SYS_FUTEX (line 247) | SYS_FUTEX = 240 constant SYS_SCHED_SETAFFINITY (line 248) | SYS_SCHED_SETAFFINITY = 241 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 242 constant SYS_SET_THREAD_AREA (line 250) | SYS_SET_THREAD_AREA = 243 constant SYS_GET_THREAD_AREA (line 251) | SYS_GET_THREAD_AREA = 244 constant SYS_IO_SETUP (line 252) | SYS_IO_SETUP = 245 constant SYS_IO_DESTROY (line 253) | SYS_IO_DESTROY = 246 constant SYS_IO_GETEVENTS (line 254) | SYS_IO_GETEVENTS = 247 constant SYS_IO_SUBMIT (line 255) | SYS_IO_SUBMIT = 248 constant SYS_IO_CANCEL (line 256) | SYS_IO_CANCEL = 249 constant SYS_FADVISE64 (line 257) | SYS_FADVISE64 = 250 constant SYS_EXIT_GROUP (line 258) | SYS_EXIT_GROUP = 252 constant SYS_LOOKUP_DCOOKIE (line 259) | SYS_LOOKUP_DCOOKIE = 253 constant SYS_EPOLL_CREATE (line 260) | SYS_EPOLL_CREATE = 254 constant SYS_EPOLL_CTL (line 261) | SYS_EPOLL_CTL = 255 constant SYS_EPOLL_WAIT (line 262) | SYS_EPOLL_WAIT = 256 constant SYS_REMAP_FILE_PAGES (line 263) | SYS_REMAP_FILE_PAGES = 257 constant SYS_SET_TID_ADDRESS (line 264) | SYS_SET_TID_ADDRESS = 258 constant SYS_TIMER_CREATE (line 265) | SYS_TIMER_CREATE = 259 constant SYS_TIMER_SETTIME (line 266) | SYS_TIMER_SETTIME = 260 constant SYS_TIMER_GETTIME (line 267) | SYS_TIMER_GETTIME = 261 constant SYS_TIMER_GETOVERRUN (line 268) | SYS_TIMER_GETOVERRUN = 262 constant SYS_TIMER_DELETE (line 269) | SYS_TIMER_DELETE = 263 constant SYS_CLOCK_SETTIME (line 270) | SYS_CLOCK_SETTIME = 264 constant SYS_CLOCK_GETTIME (line 271) | SYS_CLOCK_GETTIME = 265 constant SYS_CLOCK_GETRES (line 272) | SYS_CLOCK_GETRES = 266 constant SYS_CLOCK_NANOSLEEP (line 273) | SYS_CLOCK_NANOSLEEP = 267 constant SYS_STATFS64 (line 274) | SYS_STATFS64 = 268 constant SYS_FSTATFS64 (line 275) | SYS_FSTATFS64 = 269 constant SYS_TGKILL (line 276) | SYS_TGKILL = 270 constant SYS_UTIMES (line 277) | SYS_UTIMES = 271 constant SYS_FADVISE64_64 (line 278) | SYS_FADVISE64_64 = 272 constant SYS_VSERVER (line 279) | SYS_VSERVER = 273 constant SYS_MBIND (line 280) | SYS_MBIND = 274 constant SYS_GET_MEMPOLICY (line 281) | SYS_GET_MEMPOLICY = 275 constant SYS_SET_MEMPOLICY (line 282) | SYS_SET_MEMPOLICY = 276 constant SYS_MQ_OPEN (line 283) | SYS_MQ_OPEN = 277 constant SYS_MQ_UNLINK (line 284) | SYS_MQ_UNLINK = 278 constant SYS_MQ_TIMEDSEND (line 285) | SYS_MQ_TIMEDSEND = 279 constant SYS_MQ_TIMEDRECEIVE (line 286) | SYS_MQ_TIMEDRECEIVE = 280 constant SYS_MQ_NOTIFY (line 287) | SYS_MQ_NOTIFY = 281 constant SYS_MQ_GETSETATTR (line 288) | SYS_MQ_GETSETATTR = 282 constant SYS_KEXEC_LOAD (line 289) | SYS_KEXEC_LOAD = 283 constant SYS_WAITID (line 290) | SYS_WAITID = 284 constant SYS_ADD_KEY (line 291) | SYS_ADD_KEY = 286 constant SYS_REQUEST_KEY (line 292) | SYS_REQUEST_KEY = 287 constant SYS_KEYCTL (line 293) | SYS_KEYCTL = 288 constant SYS_IOPRIO_SET (line 294) | SYS_IOPRIO_SET = 289 constant SYS_IOPRIO_GET (line 295) | SYS_IOPRIO_GET = 290 constant SYS_INOTIFY_INIT (line 296) | SYS_INOTIFY_INIT = 291 constant SYS_INOTIFY_ADD_WATCH (line 297) | SYS_INOTIFY_ADD_WATCH = 292 constant SYS_INOTIFY_RM_WATCH (line 298) | SYS_INOTIFY_RM_WATCH = 293 constant SYS_MIGRATE_PAGES (line 299) | SYS_MIGRATE_PAGES = 294 constant SYS_OPENAT (line 300) | SYS_OPENAT = 295 constant SYS_MKDIRAT (line 301) | SYS_MKDIRAT = 296 constant SYS_MKNODAT (line 302) | SYS_MKNODAT = 297 constant SYS_FCHOWNAT (line 303) | SYS_FCHOWNAT = 298 constant SYS_FUTIMESAT (line 304) | SYS_FUTIMESAT = 299 constant SYS_FSTATAT64 (line 305) | SYS_FSTATAT64 = 300 constant SYS_UNLINKAT (line 306) | SYS_UNLINKAT = 301 constant SYS_RENAMEAT (line 307) | SYS_RENAMEAT = 302 constant SYS_LINKAT (line 308) | SYS_LINKAT = 303 constant SYS_SYMLINKAT (line 309) | SYS_SYMLINKAT = 304 constant SYS_READLINKAT (line 310) | SYS_READLINKAT = 305 constant SYS_FCHMODAT (line 311) | SYS_FCHMODAT = 306 constant SYS_FACCESSAT (line 312) | SYS_FACCESSAT = 307 constant SYS_PSELECT6 (line 313) | SYS_PSELECT6 = 308 constant SYS_PPOLL (line 314) | SYS_PPOLL = 309 constant SYS_UNSHARE (line 315) | SYS_UNSHARE = 310 constant SYS_SET_ROBUST_LIST (line 316) | SYS_SET_ROBUST_LIST = 311 constant SYS_GET_ROBUST_LIST (line 317) | SYS_GET_ROBUST_LIST = 312 constant SYS_SPLICE (line 318) | SYS_SPLICE = 313 constant SYS_SYNC_FILE_RANGE (line 319) | SYS_SYNC_FILE_RANGE = 314 constant SYS_TEE (line 320) | SYS_TEE = 315 constant SYS_VMSPLICE (line 321) | SYS_VMSPLICE = 316 constant SYS_MOVE_PAGES (line 322) | SYS_MOVE_PAGES = 317 constant SYS_GETCPU (line 323) | SYS_GETCPU = 318 constant SYS_EPOLL_PWAIT (line 324) | SYS_EPOLL_PWAIT = 319 constant SYS_UTIMENSAT (line 325) | SYS_UTIMENSAT = 320 constant SYS_SIGNALFD (line 326) | SYS_SIGNALFD = 321 constant SYS_TIMERFD_CREATE (line 327) | SYS_TIMERFD_CREATE = 322 constant SYS_EVENTFD (line 328) | SYS_EVENTFD = 323 constant SYS_FALLOCATE (line 329) | SYS_FALLOCATE = 324 constant SYS_TIMERFD_SETTIME (line 330) | SYS_TIMERFD_SETTIME = 325 constant SYS_TIMERFD_GETTIME (line 331) | SYS_TIMERFD_GETTIME = 326 constant SYS_SIGNALFD4 (line 332) | SYS_SIGNALFD4 = 327 constant SYS_EVENTFD2 (line 333) | SYS_EVENTFD2 = 328 constant SYS_EPOLL_CREATE1 (line 334) | SYS_EPOLL_CREATE1 = 329 constant SYS_DUP3 (line 335) | SYS_DUP3 = 330 constant SYS_PIPE2 (line 336) | SYS_PIPE2 = 331 constant SYS_INOTIFY_INIT1 (line 337) | SYS_INOTIFY_INIT1 = 332 constant SYS_PREADV (line 338) | SYS_PREADV = 333 constant SYS_PWRITEV (line 339) | SYS_PWRITEV = 334 constant SYS_RT_TGSIGQUEUEINFO (line 340) | SYS_RT_TGSIGQUEUEINFO = 335 constant SYS_PERF_EVENT_OPEN (line 341) | SYS_PERF_EVENT_OPEN = 336 constant SYS_RECVMMSG (line 342) | SYS_RECVMMSG = 337 constant SYS_FANOTIFY_INIT (line 343) | SYS_FANOTIFY_INIT = 338 constant SYS_FANOTIFY_MARK (line 344) | SYS_FANOTIFY_MARK = 339 constant SYS_PRLIMIT64 (line 345) | SYS_PRLIMIT64 = 340 constant SYS_NAME_TO_HANDLE_AT (line 346) | SYS_NAME_TO_HANDLE_AT = 341 constant SYS_OPEN_BY_HANDLE_AT (line 347) | SYS_OPEN_BY_HANDLE_AT = 342 constant SYS_CLOCK_ADJTIME (line 348) | SYS_CLOCK_ADJTIME = 343 constant SYS_SYNCFS (line 349) | SYS_SYNCFS = 344 constant SYS_SENDMMSG (line 350) | SYS_SENDMMSG = 345 constant SYS_SETNS (line 351) | SYS_SETNS = 346 constant SYS_PROCESS_VM_READV (line 352) | SYS_PROCESS_VM_READV = 347 constant SYS_PROCESS_VM_WRITEV (line 353) | SYS_PROCESS_VM_WRITEV = 348 constant SYS_KCMP (line 354) | SYS_KCMP = 349 constant SYS_FINIT_MODULE (line 355) | SYS_FINIT_MODULE = 350 constant SYS_SCHED_SETATTR (line 356) | SYS_SCHED_SETATTR = 351 constant SYS_SCHED_GETATTR (line 357) | SYS_SCHED_GETATTR = 352 constant SYS_RENAMEAT2 (line 358) | SYS_RENAMEAT2 = 353 constant SYS_SECCOMP (line 359) | SYS_SECCOMP = 354 constant SYS_GETRANDOM (line 360) | SYS_GETRANDOM = 355 constant SYS_MEMFD_CREATE (line 361) | SYS_MEMFD_CREATE = 356 constant SYS_BPF (line 362) | SYS_BPF = 357 constant SYS_EXECVEAT (line 363) | SYS_EXECVEAT = 358 constant SYS_SOCKET (line 364) | SYS_SOCKET = 359 constant SYS_SOCKETPAIR (line 365) | SYS_SOCKETPAIR = 360 constant SYS_BIND (line 366) | SYS_BIND = 361 constant SYS_CONNECT (line 367) | SYS_CONNECT = 362 constant SYS_LISTEN (line 368) | SYS_LISTEN = 363 constant SYS_ACCEPT4 (line 369) | SYS_ACCEPT4 = 364 constant SYS_GETSOCKOPT (line 370) | SYS_GETSOCKOPT = 365 constant SYS_SETSOCKOPT (line 371) | SYS_SETSOCKOPT = 366 constant SYS_GETSOCKNAME (line 372) | SYS_GETSOCKNAME = 367 constant SYS_GETPEERNAME (line 373) | SYS_GETPEERNAME = 368 constant SYS_SENDTO (line 374) | SYS_SENDTO = 369 constant SYS_SENDMSG (line 375) | SYS_SENDMSG = 370 constant SYS_RECVFROM (line 376) | SYS_RECVFROM = 371 constant SYS_RECVMSG (line 377) | SYS_RECVMSG = 372 constant SYS_SHUTDOWN (line 378) | SYS_SHUTDOWN = 373 constant SYS_USERFAULTFD (line 379) | SYS_USERFAULTFD = 374 constant SYS_MEMBARRIER (line 380) | SYS_MEMBARRIER = 375 constant SYS_MLOCK2 (line 381) | SYS_MLOCK2 = 376 constant SYS_COPY_FILE_RANGE (line 382) | SYS_COPY_FILE_RANGE = 377 constant SYS_PREADV2 (line 383) | SYS_PREADV2 = 378 constant SYS_PWRITEV2 (line 384) | SYS_PWRITEV2 = 379 constant SYS_PKEY_MPROTECT (line 385) | SYS_PKEY_MPROTECT = 380 constant SYS_PKEY_ALLOC (line 386) | SYS_PKEY_ALLOC = 381 constant SYS_PKEY_FREE (line 387) | SYS_PKEY_FREE = 382 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go constant SYS_READ (line 9) | SYS_READ = 0 constant SYS_WRITE (line 10) | SYS_WRITE = 1 constant SYS_OPEN (line 11) | SYS_OPEN = 2 constant SYS_CLOSE (line 12) | SYS_CLOSE = 3 constant SYS_STAT (line 13) | SYS_STAT = 4 constant SYS_FSTAT (line 14) | SYS_FSTAT = 5 constant SYS_LSTAT (line 15) | SYS_LSTAT = 6 constant SYS_POLL (line 16) | SYS_POLL = 7 constant SYS_LSEEK (line 17) | SYS_LSEEK = 8 constant SYS_MMAP (line 18) | SYS_MMAP = 9 constant SYS_MPROTECT (line 19) | SYS_MPROTECT = 10 constant SYS_MUNMAP (line 20) | SYS_MUNMAP = 11 constant SYS_BRK (line 21) | SYS_BRK = 12 constant SYS_RT_SIGACTION (line 22) | SYS_RT_SIGACTION = 13 constant SYS_RT_SIGPROCMASK (line 23) | SYS_RT_SIGPROCMASK = 14 constant SYS_RT_SIGRETURN (line 24) | SYS_RT_SIGRETURN = 15 constant SYS_IOCTL (line 25) | SYS_IOCTL = 16 constant SYS_PREAD64 (line 26) | SYS_PREAD64 = 17 constant SYS_PWRITE64 (line 27) | SYS_PWRITE64 = 18 constant SYS_READV (line 28) | SYS_READV = 19 constant SYS_WRITEV (line 29) | SYS_WRITEV = 20 constant SYS_ACCESS (line 30) | SYS_ACCESS = 21 constant SYS_PIPE (line 31) | SYS_PIPE = 22 constant SYS_SELECT (line 32) | SYS_SELECT = 23 constant SYS_SCHED_YIELD (line 33) | SYS_SCHED_YIELD = 24 constant SYS_MREMAP (line 34) | SYS_MREMAP = 25 constant SYS_MSYNC (line 35) | SYS_MSYNC = 26 constant SYS_MINCORE (line 36) | SYS_MINCORE = 27 constant SYS_MADVISE (line 37) | SYS_MADVISE = 28 constant SYS_SHMGET (line 38) | SYS_SHMGET = 29 constant SYS_SHMAT (line 39) | SYS_SHMAT = 30 constant SYS_SHMCTL (line 40) | SYS_SHMCTL = 31 constant SYS_DUP (line 41) | SYS_DUP = 32 constant SYS_DUP2 (line 42) | SYS_DUP2 = 33 constant SYS_PAUSE (line 43) | SYS_PAUSE = 34 constant SYS_NANOSLEEP (line 44) | SYS_NANOSLEEP = 35 constant SYS_GETITIMER (line 45) | SYS_GETITIMER = 36 constant SYS_ALARM (line 46) | SYS_ALARM = 37 constant SYS_SETITIMER (line 47) | SYS_SETITIMER = 38 constant SYS_GETPID (line 48) | SYS_GETPID = 39 constant SYS_SENDFILE (line 49) | SYS_SENDFILE = 40 constant SYS_SOCKET (line 50) | SYS_SOCKET = 41 constant SYS_CONNECT (line 51) | SYS_CONNECT = 42 constant SYS_ACCEPT (line 52) | SYS_ACCEPT = 43 constant SYS_SENDTO (line 53) | SYS_SENDTO = 44 constant SYS_RECVFROM (line 54) | SYS_RECVFROM = 45 constant SYS_SENDMSG (line 55) | SYS_SENDMSG = 46 constant SYS_RECVMSG (line 56) | SYS_RECVMSG = 47 constant SYS_SHUTDOWN (line 57) | SYS_SHUTDOWN = 48 constant SYS_BIND (line 58) | SYS_BIND = 49 constant SYS_LISTEN (line 59) | SYS_LISTEN = 50 constant SYS_GETSOCKNAME (line 60) | SYS_GETSOCKNAME = 51 constant SYS_GETPEERNAME (line 61) | SYS_GETPEERNAME = 52 constant SYS_SOCKETPAIR (line 62) | SYS_SOCKETPAIR = 53 constant SYS_SETSOCKOPT (line 63) | SYS_SETSOCKOPT = 54 constant SYS_GETSOCKOPT (line 64) | SYS_GETSOCKOPT = 55 constant SYS_CLONE (line 65) | SYS_CLONE = 56 constant SYS_FORK (line 66) | SYS_FORK = 57 constant SYS_VFORK (line 67) | SYS_VFORK = 58 constant SYS_EXECVE (line 68) | SYS_EXECVE = 59 constant SYS_EXIT (line 69) | SYS_EXIT = 60 constant SYS_WAIT4 (line 70) | SYS_WAIT4 = 61 constant SYS_KILL (line 71) | SYS_KILL = 62 constant SYS_UNAME (line 72) | SYS_UNAME = 63 constant SYS_SEMGET (line 73) | SYS_SEMGET = 64 constant SYS_SEMOP (line 74) | SYS_SEMOP = 65 constant SYS_SEMCTL (line 75) | SYS_SEMCTL = 66 constant SYS_SHMDT (line 76) | SYS_SHMDT = 67 constant SYS_MSGGET (line 77) | SYS_MSGGET = 68 constant SYS_MSGSND (line 78) | SYS_MSGSND = 69 constant SYS_MSGRCV (line 79) | SYS_MSGRCV = 70 constant SYS_MSGCTL (line 80) | SYS_MSGCTL = 71 constant SYS_FCNTL (line 81) | SYS_FCNTL = 72 constant SYS_FLOCK (line 82) | SYS_FLOCK = 73 constant SYS_FSYNC (line 83) | SYS_FSYNC = 74 constant SYS_FDATASYNC (line 84) | SYS_FDATASYNC = 75 constant SYS_TRUNCATE (line 85) | SYS_TRUNCATE = 76 constant SYS_FTRUNCATE (line 86) | SYS_FTRUNCATE = 77 constant SYS_GETDENTS (line 87) | SYS_GETDENTS = 78 constant SYS_GETCWD (line 88) | SYS_GETCWD = 79 constant SYS_CHDIR (line 89) | SYS_CHDIR = 80 constant SYS_FCHDIR (line 90) | SYS_FCHDIR = 81 constant SYS_RENAME (line 91) | SYS_RENAME = 82 constant SYS_MKDIR (line 92) | SYS_MKDIR = 83 constant SYS_RMDIR (line 93) | SYS_RMDIR = 84 constant SYS_CREAT (line 94) | SYS_CREAT = 85 constant SYS_LINK (line 95) | SYS_LINK = 86 constant SYS_UNLINK (line 96) | SYS_UNLINK = 87 constant SYS_SYMLINK (line 97) | SYS_SYMLINK = 88 constant SYS_READLINK (line 98) | SYS_READLINK = 89 constant SYS_CHMOD (line 99) | SYS_CHMOD = 90 constant SYS_FCHMOD (line 100) | SYS_FCHMOD = 91 constant SYS_CHOWN (line 101) | SYS_CHOWN = 92 constant SYS_FCHOWN (line 102) | SYS_FCHOWN = 93 constant SYS_LCHOWN (line 103) | SYS_LCHOWN = 94 constant SYS_UMASK (line 104) | SYS_UMASK = 95 constant SYS_GETTIMEOFDAY (line 105) | SYS_GETTIMEOFDAY = 96 constant SYS_GETRLIMIT (line 106) | SYS_GETRLIMIT = 97 constant SYS_GETRUSAGE (line 107) | SYS_GETRUSAGE = 98 constant SYS_SYSINFO (line 108) | SYS_SYSINFO = 99 constant SYS_TIMES (line 109) | SYS_TIMES = 100 constant SYS_PTRACE (line 110) | SYS_PTRACE = 101 constant SYS_GETUID (line 111) | SYS_GETUID = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_GETGID (line 113) | SYS_GETGID = 104 constant SYS_SETUID (line 114) | SYS_SETUID = 105 constant SYS_SETGID (line 115) | SYS_SETGID = 106 constant SYS_GETEUID (line 116) | SYS_GETEUID = 107 constant SYS_GETEGID (line 117) | SYS_GETEGID = 108 constant SYS_SETPGID (line 118) | SYS_SETPGID = 109 constant SYS_GETPPID (line 119) | SYS_GETPPID = 110 constant SYS_GETPGRP (line 120) | SYS_GETPGRP = 111 constant SYS_SETSID (line 121) | SYS_SETSID = 112 constant SYS_SETREUID (line 122) | SYS_SETREUID = 113 constant SYS_SETREGID (line 123) | SYS_SETREGID = 114 constant SYS_GETGROUPS (line 124) | SYS_GETGROUPS = 115 constant SYS_SETGROUPS (line 125) | SYS_SETGROUPS = 116 constant SYS_SETRESUID (line 126) | SYS_SETRESUID = 117 constant SYS_GETRESUID (line 127) | SYS_GETRESUID = 118 constant SYS_SETRESGID (line 128) | SYS_SETRESGID = 119 constant SYS_GETRESGID (line 129) | SYS_GETRESGID = 120 constant SYS_GETPGID (line 130) | SYS_GETPGID = 121 constant SYS_SETFSUID (line 131) | SYS_SETFSUID = 122 constant SYS_SETFSGID (line 132) | SYS_SETFSGID = 123 constant SYS_GETSID (line 133) | SYS_GETSID = 124 constant SYS_CAPGET (line 134) | SYS_CAPGET = 125 constant SYS_CAPSET (line 135) | SYS_CAPSET = 126 constant SYS_RT_SIGPENDING (line 136) | SYS_RT_SIGPENDING = 127 constant SYS_RT_SIGTIMEDWAIT (line 137) | SYS_RT_SIGTIMEDWAIT = 128 constant SYS_RT_SIGQUEUEINFO (line 138) | SYS_RT_SIGQUEUEINFO = 129 constant SYS_RT_SIGSUSPEND (line 139) | SYS_RT_SIGSUSPEND = 130 constant SYS_SIGALTSTACK (line 140) | SYS_SIGALTSTACK = 131 constant SYS_UTIME (line 141) | SYS_UTIME = 132 constant SYS_MKNOD (line 142) | SYS_MKNOD = 133 constant SYS_USELIB (line 143) | SYS_USELIB = 134 constant SYS_PERSONALITY (line 144) | SYS_PERSONALITY = 135 constant SYS_USTAT (line 145) | SYS_USTAT = 136 constant SYS_STATFS (line 146) | SYS_STATFS = 137 constant SYS_FSTATFS (line 147) | SYS_FSTATFS = 138 constant SYS_SYSFS (line 148) | SYS_SYSFS = 139 constant SYS_GETPRIORITY (line 149) | SYS_GETPRIORITY = 140 constant SYS_SETPRIORITY (line 150) | SYS_SETPRIORITY = 141 constant SYS_SCHED_SETPARAM (line 151) | SYS_SCHED_SETPARAM = 142 constant SYS_SCHED_GETPARAM (line 152) | SYS_SCHED_GETPARAM = 143 constant SYS_SCHED_SETSCHEDULER (line 153) | SYS_SCHED_SETSCHEDULER = 144 constant SYS_SCHED_GETSCHEDULER (line 154) | SYS_SCHED_GETSCHEDULER = 145 constant SYS_SCHED_GET_PRIORITY_MAX (line 155) | SYS_SCHED_GET_PRIORITY_MAX = 146 constant SYS_SCHED_GET_PRIORITY_MIN (line 156) | SYS_SCHED_GET_PRIORITY_MIN = 147 constant SYS_SCHED_RR_GET_INTERVAL (line 157) | SYS_SCHED_RR_GET_INTERVAL = 148 constant SYS_MLOCK (line 158) | SYS_MLOCK = 149 constant SYS_MUNLOCK (line 159) | SYS_MUNLOCK = 150 constant SYS_MLOCKALL (line 160) | SYS_MLOCKALL = 151 constant SYS_MUNLOCKALL (line 161) | SYS_MUNLOCKALL = 152 constant SYS_VHANGUP (line 162) | SYS_VHANGUP = 153 constant SYS_MODIFY_LDT (line 163) | SYS_MODIFY_LDT = 154 constant SYS_PIVOT_ROOT (line 164) | SYS_PIVOT_ROOT = 155 constant SYS__SYSCTL (line 165) | SYS__SYSCTL = 156 constant SYS_PRCTL (line 166) | SYS_PRCTL = 157 constant SYS_ARCH_PRCTL (line 167) | SYS_ARCH_PRCTL = 158 constant SYS_ADJTIMEX (line 168) | SYS_ADJTIMEX = 159 constant SYS_SETRLIMIT (line 169) | SYS_SETRLIMIT = 160 constant SYS_CHROOT (line 170) | SYS_CHROOT = 161 constant SYS_SYNC (line 171) | SYS_SYNC = 162 constant SYS_ACCT (line 172) | SYS_ACCT = 163 constant SYS_SETTIMEOFDAY (line 173) | SYS_SETTIMEOFDAY = 164 constant SYS_MOUNT (line 174) | SYS_MOUNT = 165 constant SYS_UMOUNT2 (line 175) | SYS_UMOUNT2 = 166 constant SYS_SWAPON (line 176) | SYS_SWAPON = 167 constant SYS_SWAPOFF (line 177) | SYS_SWAPOFF = 168 constant SYS_REBOOT (line 178) | SYS_REBOOT = 169 constant SYS_SETHOSTNAME (line 179) | SYS_SETHOSTNAME = 170 constant SYS_SETDOMAINNAME (line 180) | SYS_SETDOMAINNAME = 171 constant SYS_IOPL (line 181) | SYS_IOPL = 172 constant SYS_IOPERM (line 182) | SYS_IOPERM = 173 constant SYS_CREATE_MODULE (line 183) | SYS_CREATE_MODULE = 174 constant SYS_INIT_MODULE (line 184) | SYS_INIT_MODULE = 175 constant SYS_DELETE_MODULE (line 185) | SYS_DELETE_MODULE = 176 constant SYS_GET_KERNEL_SYMS (line 186) | SYS_GET_KERNEL_SYMS = 177 constant SYS_QUERY_MODULE (line 187) | SYS_QUERY_MODULE = 178 constant SYS_QUOTACTL (line 188) | SYS_QUOTACTL = 179 constant SYS_NFSSERVCTL (line 189) | SYS_NFSSERVCTL = 180 constant SYS_GETPMSG (line 190) | SYS_GETPMSG = 181 constant SYS_PUTPMSG (line 191) | SYS_PUTPMSG = 182 constant SYS_AFS_SYSCALL (line 192) | SYS_AFS_SYSCALL = 183 constant SYS_TUXCALL (line 193) | SYS_TUXCALL = 184 constant SYS_SECURITY (line 194) | SYS_SECURITY = 185 constant SYS_GETTID (line 195) | SYS_GETTID = 186 constant SYS_READAHEAD (line 196) | SYS_READAHEAD = 187 constant SYS_SETXATTR (line 197) | SYS_SETXATTR = 188 constant SYS_LSETXATTR (line 198) | SYS_LSETXATTR = 189 constant SYS_FSETXATTR (line 199) | SYS_FSETXATTR = 190 constant SYS_GETXATTR (line 200) | SYS_GETXATTR = 191 constant SYS_LGETXATTR (line 201) | SYS_LGETXATTR = 192 constant SYS_FGETXATTR (line 202) | SYS_FGETXATTR = 193 constant SYS_LISTXATTR (line 203) | SYS_LISTXATTR = 194 constant SYS_LLISTXATTR (line 204) | SYS_LLISTXATTR = 195 constant SYS_FLISTXATTR (line 205) | SYS_FLISTXATTR = 196 constant SYS_REMOVEXATTR (line 206) | SYS_REMOVEXATTR = 197 constant SYS_LREMOVEXATTR (line 207) | SYS_LREMOVEXATTR = 198 constant SYS_FREMOVEXATTR (line 208) | SYS_FREMOVEXATTR = 199 constant SYS_TKILL (line 209) | SYS_TKILL = 200 constant SYS_TIME (line 210) | SYS_TIME = 201 constant SYS_FUTEX (line 211) | SYS_FUTEX = 202 constant SYS_SCHED_SETAFFINITY (line 212) | SYS_SCHED_SETAFFINITY = 203 constant SYS_SCHED_GETAFFINITY (line 213) | SYS_SCHED_GETAFFINITY = 204 constant SYS_SET_THREAD_AREA (line 214) | SYS_SET_THREAD_AREA = 205 constant SYS_IO_SETUP (line 215) | SYS_IO_SETUP = 206 constant SYS_IO_DESTROY (line 216) | SYS_IO_DESTROY = 207 constant SYS_IO_GETEVENTS (line 217) | SYS_IO_GETEVENTS = 208 constant SYS_IO_SUBMIT (line 218) | SYS_IO_SUBMIT = 209 constant SYS_IO_CANCEL (line 219) | SYS_IO_CANCEL = 210 constant SYS_GET_THREAD_AREA (line 220) | SYS_GET_THREAD_AREA = 211 constant SYS_LOOKUP_DCOOKIE (line 221) | SYS_LOOKUP_DCOOKIE = 212 constant SYS_EPOLL_CREATE (line 222) | SYS_EPOLL_CREATE = 213 constant SYS_EPOLL_CTL_OLD (line 223) | SYS_EPOLL_CTL_OLD = 214 constant SYS_EPOLL_WAIT_OLD (line 224) | SYS_EPOLL_WAIT_OLD = 215 constant SYS_REMAP_FILE_PAGES (line 225) | SYS_REMAP_FILE_PAGES = 216 constant SYS_GETDENTS64 (line 226) | SYS_GETDENTS64 = 217 constant SYS_SET_TID_ADDRESS (line 227) | SYS_SET_TID_ADDRESS = 218 constant SYS_RESTART_SYSCALL (line 228) | SYS_RESTART_SYSCALL = 219 constant SYS_SEMTIMEDOP (line 229) | SYS_SEMTIMEDOP = 220 constant SYS_FADVISE64 (line 230) | SYS_FADVISE64 = 221 constant SYS_TIMER_CREATE (line 231) | SYS_TIMER_CREATE = 222 constant SYS_TIMER_SETTIME (line 232) | SYS_TIMER_SETTIME = 223 constant SYS_TIMER_GETTIME (line 233) | SYS_TIMER_GETTIME = 224 constant SYS_TIMER_GETOVERRUN (line 234) | SYS_TIMER_GETOVERRUN = 225 constant SYS_TIMER_DELETE (line 235) | SYS_TIMER_DELETE = 226 constant SYS_CLOCK_SETTIME (line 236) | SYS_CLOCK_SETTIME = 227 constant SYS_CLOCK_GETTIME (line 237) | SYS_CLOCK_GETTIME = 228 constant SYS_CLOCK_GETRES (line 238) | SYS_CLOCK_GETRES = 229 constant SYS_CLOCK_NANOSLEEP (line 239) | SYS_CLOCK_NANOSLEEP = 230 constant SYS_EXIT_GROUP (line 240) | SYS_EXIT_GROUP = 231 constant SYS_EPOLL_WAIT (line 241) | SYS_EPOLL_WAIT = 232 constant SYS_EPOLL_CTL (line 242) | SYS_EPOLL_CTL = 233 constant SYS_TGKILL (line 243) | SYS_TGKILL = 234 constant SYS_UTIMES (line 244) | SYS_UTIMES = 235 constant SYS_VSERVER (line 245) | SYS_VSERVER = 236 constant SYS_MBIND (line 246) | SYS_MBIND = 237 constant SYS_SET_MEMPOLICY (line 247) | SYS_SET_MEMPOLICY = 238 constant SYS_GET_MEMPOLICY (line 248) | SYS_GET_MEMPOLICY = 239 constant SYS_MQ_OPEN (line 249) | SYS_MQ_OPEN = 240 constant SYS_MQ_UNLINK (line 250) | SYS_MQ_UNLINK = 241 constant SYS_MQ_TIMEDSEND (line 251) | SYS_MQ_TIMEDSEND = 242 constant SYS_MQ_TIMEDRECEIVE (line 252) | SYS_MQ_TIMEDRECEIVE = 243 constant SYS_MQ_NOTIFY (line 253) | SYS_MQ_NOTIFY = 244 constant SYS_MQ_GETSETATTR (line 254) | SYS_MQ_GETSETATTR = 245 constant SYS_KEXEC_LOAD (line 255) | SYS_KEXEC_LOAD = 246 constant SYS_WAITID (line 256) | SYS_WAITID = 247 constant SYS_ADD_KEY (line 257) | SYS_ADD_KEY = 248 constant SYS_REQUEST_KEY (line 258) | SYS_REQUEST_KEY = 249 constant SYS_KEYCTL (line 259) | SYS_KEYCTL = 250 constant SYS_IOPRIO_SET (line 260) | SYS_IOPRIO_SET = 251 constant SYS_IOPRIO_GET (line 261) | SYS_IOPRIO_GET = 252 constant SYS_INOTIFY_INIT (line 262) | SYS_INOTIFY_INIT = 253 constant SYS_INOTIFY_ADD_WATCH (line 263) | SYS_INOTIFY_ADD_WATCH = 254 constant SYS_INOTIFY_RM_WATCH (line 264) | SYS_INOTIFY_RM_WATCH = 255 constant SYS_MIGRATE_PAGES (line 265) | SYS_MIGRATE_PAGES = 256 constant SYS_OPENAT (line 266) | SYS_OPENAT = 257 constant SYS_MKDIRAT (line 267) | SYS_MKDIRAT = 258 constant SYS_MKNODAT (line 268) | SYS_MKNODAT = 259 constant SYS_FCHOWNAT (line 269) | SYS_FCHOWNAT = 260 constant SYS_FUTIMESAT (line 270) | SYS_FUTIMESAT = 261 constant SYS_NEWFSTATAT (line 271) | SYS_NEWFSTATAT = 262 constant SYS_UNLINKAT (line 272) | SYS_UNLINKAT = 263 constant SYS_RENAMEAT (line 273) | SYS_RENAMEAT = 264 constant SYS_LINKAT (line 274) | SYS_LINKAT = 265 constant SYS_SYMLINKAT (line 275) | SYS_SYMLINKAT = 266 constant SYS_READLINKAT (line 276) | SYS_READLINKAT = 267 constant SYS_FCHMODAT (line 277) | SYS_FCHMODAT = 268 constant SYS_FACCESSAT (line 278) | SYS_FACCESSAT = 269 constant SYS_PSELECT6 (line 279) | SYS_PSELECT6 = 270 constant SYS_PPOLL (line 280) | SYS_PPOLL = 271 constant SYS_UNSHARE (line 281) | SYS_UNSHARE = 272 constant SYS_SET_ROBUST_LIST (line 282) | SYS_SET_ROBUST_LIST = 273 constant SYS_GET_ROBUST_LIST (line 283) | SYS_GET_ROBUST_LIST = 274 constant SYS_SPLICE (line 284) | SYS_SPLICE = 275 constant SYS_TEE (line 285) | SYS_TEE = 276 constant SYS_SYNC_FILE_RANGE (line 286) | SYS_SYNC_FILE_RANGE = 277 constant SYS_VMSPLICE (line 287) | SYS_VMSPLICE = 278 constant SYS_MOVE_PAGES (line 288) | SYS_MOVE_PAGES = 279 constant SYS_UTIMENSAT (line 289) | SYS_UTIMENSAT = 280 constant SYS_EPOLL_PWAIT (line 290) | SYS_EPOLL_PWAIT = 281 constant SYS_SIGNALFD (line 291) | SYS_SIGNALFD = 282 constant SYS_TIMERFD_CREATE (line 292) | SYS_TIMERFD_CREATE = 283 constant SYS_EVENTFD (line 293) | SYS_EVENTFD = 284 constant SYS_FALLOCATE (line 294) | SYS_FALLOCATE = 285 constant SYS_TIMERFD_SETTIME (line 295) | SYS_TIMERFD_SETTIME = 286 constant SYS_TIMERFD_GETTIME (line 296) | SYS_TIMERFD_GETTIME = 287 constant SYS_ACCEPT4 (line 297) | SYS_ACCEPT4 = 288 constant SYS_SIGNALFD4 (line 298) | SYS_SIGNALFD4 = 289 constant SYS_EVENTFD2 (line 299) | SYS_EVENTFD2 = 290 constant SYS_EPOLL_CREATE1 (line 300) | SYS_EPOLL_CREATE1 = 291 constant SYS_DUP3 (line 301) | SYS_DUP3 = 292 constant SYS_PIPE2 (line 302) | SYS_PIPE2 = 293 constant SYS_INOTIFY_INIT1 (line 303) | SYS_INOTIFY_INIT1 = 294 constant SYS_PREADV (line 304) | SYS_PREADV = 295 constant SYS_PWRITEV (line 305) | SYS_PWRITEV = 296 constant SYS_RT_TGSIGQUEUEINFO (line 306) | SYS_RT_TGSIGQUEUEINFO = 297 constant SYS_PERF_EVENT_OPEN (line 307) | SYS_PERF_EVENT_OPEN = 298 constant SYS_RECVMMSG (line 308) | SYS_RECVMMSG = 299 constant SYS_FANOTIFY_INIT (line 309) | SYS_FANOTIFY_INIT = 300 constant SYS_FANOTIFY_MARK (line 310) | SYS_FANOTIFY_MARK = 301 constant SYS_PRLIMIT64 (line 311) | SYS_PRLIMIT64 = 302 constant SYS_NAME_TO_HANDLE_AT (line 312) | SYS_NAME_TO_HANDLE_AT = 303 constant SYS_OPEN_BY_HANDLE_AT (line 313) | SYS_OPEN_BY_HANDLE_AT = 304 constant SYS_CLOCK_ADJTIME (line 314) | SYS_CLOCK_ADJTIME = 305 constant SYS_SYNCFS (line 315) | SYS_SYNCFS = 306 constant SYS_SENDMMSG (line 316) | SYS_SENDMMSG = 307 constant SYS_SETNS (line 317) | SYS_SETNS = 308 constant SYS_GETCPU (line 318) | SYS_GETCPU = 309 constant SYS_PROCESS_VM_READV (line 319) | SYS_PROCESS_VM_READV = 310 constant SYS_PROCESS_VM_WRITEV (line 320) | SYS_PROCESS_VM_WRITEV = 311 constant SYS_KCMP (line 321) | SYS_KCMP = 312 constant SYS_FINIT_MODULE (line 322) | SYS_FINIT_MODULE = 313 constant SYS_SCHED_SETATTR (line 323) | SYS_SCHED_SETATTR = 314 constant SYS_SCHED_GETATTR (line 324) | SYS_SCHED_GETATTR = 315 constant SYS_RENAMEAT2 (line 325) | SYS_RENAMEAT2 = 316 constant SYS_SECCOMP (line 326) | SYS_SECCOMP = 317 constant SYS_GETRANDOM (line 327) | SYS_GETRANDOM = 318 constant SYS_MEMFD_CREATE (line 328) | SYS_MEMFD_CREATE = 319 constant SYS_KEXEC_FILE_LOAD (line 329) | SYS_KEXEC_FILE_LOAD = 320 constant SYS_BPF (line 330) | SYS_BPF = 321 constant SYS_EXECVEAT (line 331) | SYS_EXECVEAT = 322 constant SYS_USERFAULTFD (line 332) | SYS_USERFAULTFD = 323 constant SYS_MEMBARRIER (line 333) | SYS_MEMBARRIER = 324 constant SYS_MLOCK2 (line 334) | SYS_MLOCK2 = 325 constant SYS_COPY_FILE_RANGE (line 335) | SYS_COPY_FILE_RANGE = 326 constant SYS_PREADV2 (line 336) | SYS_PREADV2 = 327 constant SYS_PWRITEV2 (line 337) | SYS_PWRITEV2 = 328 constant SYS_PKEY_MPROTECT (line 338) | SYS_PKEY_MPROTECT = 329 constant SYS_PKEY_ALLOC (line 339) | SYS_PKEY_ALLOC = 330 constant SYS_PKEY_FREE (line 340) | SYS_PKEY_FREE = 331 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_CREAT (line 16) | SYS_CREAT = 8 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_EXECVE (line 19) | SYS_EXECVE = 11 constant SYS_CHDIR (line 20) | SYS_CHDIR = 12 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 23) | SYS_LCHOWN = 16 constant SYS_LSEEK (line 24) | SYS_LSEEK = 19 constant SYS_GETPID (line 25) | SYS_GETPID = 20 constant SYS_MOUNT (line 26) | SYS_MOUNT = 21 constant SYS_SETUID (line 27) | SYS_SETUID = 23 constant SYS_GETUID (line 28) | SYS_GETUID = 24 constant SYS_PTRACE (line 29) | SYS_PTRACE = 26 constant SYS_PAUSE (line 30) | SYS_PAUSE = 29 constant SYS_ACCESS (line 31) | SYS_ACCESS = 33 constant SYS_NICE (line 32) | SYS_NICE = 34 constant SYS_SYNC (line 33) | SYS_SYNC = 36 constant SYS_KILL (line 34) | SYS_KILL = 37 constant SYS_RENAME (line 35) | SYS_RENAME = 38 constant SYS_MKDIR (line 36) | SYS_MKDIR = 39 constant SYS_RMDIR (line 37) | SYS_RMDIR = 40 constant SYS_DUP (line 38) | SYS_DUP = 41 constant SYS_PIPE (line 39) | SYS_PIPE = 42 constant SYS_TIMES (line 40) | SYS_TIMES = 43 constant SYS_BRK (line 41) | SYS_BRK = 45 constant SYS_SETGID (line 42) | SYS_SETGID = 46 constant SYS_GETGID (line 43) | SYS_GETGID = 47 constant SYS_GETEUID (line 44) | SYS_GETEUID = 49 constant SYS_GETEGID (line 45) | SYS_GETEGID = 50 constant SYS_ACCT (line 46) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 47) | SYS_UMOUNT2 = 52 constant SYS_IOCTL (line 48) | SYS_IOCTL = 54 constant SYS_FCNTL (line 49) | SYS_FCNTL = 55 constant SYS_SETPGID (line 50) | SYS_SETPGID = 57 constant SYS_UMASK (line 51) | SYS_UMASK = 60 constant SYS_CHROOT (line 52) | SYS_CHROOT = 61 constant SYS_USTAT (line 53) | SYS_USTAT = 62 constant SYS_DUP2 (line 54) | SYS_DUP2 = 63 constant SYS_GETPPID (line 55) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 56) | SYS_GETPGRP = 65 constant SYS_SETSID (line 57) | SYS_SETSID = 66 constant SYS_SIGACTION (line 58) | SYS_SIGACTION = 67 constant SYS_SETREUID (line 59) | SYS_SETREUID = 70 constant SYS_SETREGID (line 60) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 61) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 62) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 63) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 64) | SYS_SETRLIMIT = 75 constant SYS_GETRUSAGE (line 65) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 66) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 67) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 68) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 69) | SYS_SETGROUPS = 81 constant SYS_SYMLINK (line 70) | SYS_SYMLINK = 83 constant SYS_READLINK (line 71) | SYS_READLINK = 85 constant SYS_USELIB (line 72) | SYS_USELIB = 86 constant SYS_SWAPON (line 73) | SYS_SWAPON = 87 constant SYS_REBOOT (line 74) | SYS_REBOOT = 88 constant SYS_MUNMAP (line 75) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 76) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 77) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 78) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 79) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 80) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 81) | SYS_SETPRIORITY = 97 constant SYS_STATFS (line 82) | SYS_STATFS = 99 constant SYS_FSTATFS (line 83) | SYS_FSTATFS = 100 constant SYS_SYSLOG (line 84) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 85) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 86) | SYS_GETITIMER = 105 constant SYS_STAT (line 87) | SYS_STAT = 106 constant SYS_LSTAT (line 88) | SYS_LSTAT = 107 constant SYS_FSTAT (line 89) | SYS_FSTAT = 108 constant SYS_VHANGUP (line 90) | SYS_VHANGUP = 111 constant SYS_WAIT4 (line 91) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 92) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 93) | SYS_SYSINFO = 116 constant SYS_FSYNC (line 94) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 95) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 96) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 97) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 98) | SYS_UNAME = 122 constant SYS_ADJTIMEX (line 99) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 100) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 101) | SYS_SIGPROCMASK = 126 constant SYS_INIT_MODULE (line 102) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 103) | SYS_DELETE_MODULE = 129 constant SYS_QUOTACTL (line 104) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 105) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 106) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 107) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 108) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 109) | SYS_PERSONALITY = 136 constant SYS_SETFSUID (line 110) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 111) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 112) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 113) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 114) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 115) | SYS_FLOCK = 143 constant SYS_MSYNC (line 116) | SYS_MSYNC = 144 constant SYS_READV (line 117) | SYS_READV = 145 constant SYS_WRITEV (line 118) | SYS_WRITEV = 146 constant SYS_GETSID (line 119) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 120) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 121) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 122) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 123) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 124) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 125) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 126) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 127) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 128) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 129) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 130) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 131) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 132) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 133) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 134) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 135) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 136) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 137) | SYS_GETRESUID = 165 constant SYS_POLL (line 138) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 139) | SYS_NFSSERVCTL = 169 constant SYS_SETRESGID (line 140) | SYS_SETRESGID = 170 constant SYS_GETRESGID (line 141) | SYS_GETRESGID = 171 constant SYS_PRCTL (line 142) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 143) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 144) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 145) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 146) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 147) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 148) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 149) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 150) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 151) | SYS_PWRITE64 = 181 constant SYS_CHOWN (line 152) | SYS_CHOWN = 182 constant SYS_GETCWD (line 153) | SYS_GETCWD = 183 constant SYS_CAPGET (line 154) | SYS_CAPGET = 184 constant SYS_CAPSET (line 155) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 156) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 157) | SYS_SENDFILE = 187 constant SYS_VFORK (line 158) | SYS_VFORK = 190 constant SYS_UGETRLIMIT (line 159) | SYS_UGETRLIMIT = 191 constant SYS_MMAP2 (line 160) | SYS_MMAP2 = 192 constant SYS_TRUNCATE64 (line 161) | SYS_TRUNCATE64 = 193 constant SYS_FTRUNCATE64 (line 162) | SYS_FTRUNCATE64 = 194 constant SYS_STAT64 (line 163) | SYS_STAT64 = 195 constant SYS_LSTAT64 (line 164) | SYS_LSTAT64 = 196 constant SYS_FSTAT64 (line 165) | SYS_FSTAT64 = 197 constant SYS_LCHOWN32 (line 166) | SYS_LCHOWN32 = 198 constant SYS_GETUID32 (line 167) | SYS_GETUID32 = 199 constant SYS_GETGID32 (line 168) | SYS_GETGID32 = 200 constant SYS_GETEUID32 (line 169) | SYS_GETEUID32 = 201 constant SYS_GETEGID32 (line 170) | SYS_GETEGID32 = 202 constant SYS_SETREUID32 (line 171) | SYS_SETREUID32 = 203 constant SYS_SETREGID32 (line 172) | SYS_SETREGID32 = 204 constant SYS_GETGROUPS32 (line 173) | SYS_GETGROUPS32 = 205 constant SYS_SETGROUPS32 (line 174) | SYS_SETGROUPS32 = 206 constant SYS_FCHOWN32 (line 175) | SYS_FCHOWN32 = 207 constant SYS_SETRESUID32 (line 176) | SYS_SETRESUID32 = 208 constant SYS_GETRESUID32 (line 177) | SYS_GETRESUID32 = 209 constant SYS_SETRESGID32 (line 178) | SYS_SETRESGID32 = 210 constant SYS_GETRESGID32 (line 179) | SYS_GETRESGID32 = 211 constant SYS_CHOWN32 (line 180) | SYS_CHOWN32 = 212 constant SYS_SETUID32 (line 181) | SYS_SETUID32 = 213 constant SYS_SETGID32 (line 182) | SYS_SETGID32 = 214 constant SYS_SETFSUID32 (line 183) | SYS_SETFSUID32 = 215 constant SYS_SETFSGID32 (line 184) | SYS_SETFSGID32 = 216 constant SYS_GETDENTS64 (line 185) | SYS_GETDENTS64 = 217 constant SYS_PIVOT_ROOT (line 186) | SYS_PIVOT_ROOT = 218 constant SYS_MINCORE (line 187) | SYS_MINCORE = 219 constant SYS_MADVISE (line 188) | SYS_MADVISE = 220 constant SYS_FCNTL64 (line 189) | SYS_FCNTL64 = 221 constant SYS_GETTID (line 190) | SYS_GETTID = 224 constant SYS_READAHEAD (line 191) | SYS_READAHEAD = 225 constant SYS_SETXATTR (line 192) | SYS_SETXATTR = 226 constant SYS_LSETXATTR (line 193) | SYS_LSETXATTR = 227 constant SYS_FSETXATTR (line 194) | SYS_FSETXATTR = 228 constant SYS_GETXATTR (line 195) | SYS_GETXATTR = 229 constant SYS_LGETXATTR (line 196) | SYS_LGETXATTR = 230 constant SYS_FGETXATTR (line 197) | SYS_FGETXATTR = 231 constant SYS_LISTXATTR (line 198) | SYS_LISTXATTR = 232 constant SYS_LLISTXATTR (line 199) | SYS_LLISTXATTR = 233 constant SYS_FLISTXATTR (line 200) | SYS_FLISTXATTR = 234 constant SYS_REMOVEXATTR (line 201) | SYS_REMOVEXATTR = 235 constant SYS_LREMOVEXATTR (line 202) | SYS_LREMOVEXATTR = 236 constant SYS_FREMOVEXATTR (line 203) | SYS_FREMOVEXATTR = 237 constant SYS_TKILL (line 204) | SYS_TKILL = 238 constant SYS_SENDFILE64 (line 205) | SYS_SENDFILE64 = 239 constant SYS_FUTEX (line 206) | SYS_FUTEX = 240 constant SYS_SCHED_SETAFFINITY (line 207) | SYS_SCHED_SETAFFINITY = 241 constant SYS_SCHED_GETAFFINITY (line 208) | SYS_SCHED_GETAFFINITY = 242 constant SYS_IO_SETUP (line 209) | SYS_IO_SETUP = 243 constant SYS_IO_DESTROY (line 210) | SYS_IO_DESTROY = 244 constant SYS_IO_GETEVENTS (line 211) | SYS_IO_GETEVENTS = 245 constant SYS_IO_SUBMIT (line 212) | SYS_IO_SUBMIT = 246 constant SYS_IO_CANCEL (line 213) | SYS_IO_CANCEL = 247 constant SYS_EXIT_GROUP (line 214) | SYS_EXIT_GROUP = 248 constant SYS_LOOKUP_DCOOKIE (line 215) | SYS_LOOKUP_DCOOKIE = 249 constant SYS_EPOLL_CREATE (line 216) | SYS_EPOLL_CREATE = 250 constant SYS_EPOLL_CTL (line 217) | SYS_EPOLL_CTL = 251 constant SYS_EPOLL_WAIT (line 218) | SYS_EPOLL_WAIT = 252 constant SYS_REMAP_FILE_PAGES (line 219) | SYS_REMAP_FILE_PAGES = 253 constant SYS_SET_TID_ADDRESS (line 220) | SYS_SET_TID_ADDRESS = 256 constant SYS_TIMER_CREATE (line 221) | SYS_TIMER_CREATE = 257 constant SYS_TIMER_SETTIME (line 222) | SYS_TIMER_SETTIME = 258 constant SYS_TIMER_GETTIME (line 223) | SYS_TIMER_GETTIME = 259 constant SYS_TIMER_GETOVERRUN (line 224) | SYS_TIMER_GETOVERRUN = 260 constant SYS_TIMER_DELETE (line 225) | SYS_TIMER_DELETE = 261 constant SYS_CLOCK_SETTIME (line 226) | SYS_CLOCK_SETTIME = 262 constant SYS_CLOCK_GETTIME (line 227) | SYS_CLOCK_GETTIME = 263 constant SYS_CLOCK_GETRES (line 228) | SYS_CLOCK_GETRES = 264 constant SYS_CLOCK_NANOSLEEP (line 229) | SYS_CLOCK_NANOSLEEP = 265 constant SYS_STATFS64 (line 230) | SYS_STATFS64 = 266 constant SYS_FSTATFS64 (line 231) | SYS_FSTATFS64 = 267 constant SYS_TGKILL (line 232) | SYS_TGKILL = 268 constant SYS_UTIMES (line 233) | SYS_UTIMES = 269 constant SYS_ARM_FADVISE64_64 (line 234) | SYS_ARM_FADVISE64_64 = 270 constant SYS_PCICONFIG_IOBASE (line 235) | SYS_PCICONFIG_IOBASE = 271 constant SYS_PCICONFIG_READ (line 236) | SYS_PCICONFIG_READ = 272 constant SYS_PCICONFIG_WRITE (line 237) | SYS_PCICONFIG_WRITE = 273 constant SYS_MQ_OPEN (line 238) | SYS_MQ_OPEN = 274 constant SYS_MQ_UNLINK (line 239) | SYS_MQ_UNLINK = 275 constant SYS_MQ_TIMEDSEND (line 240) | SYS_MQ_TIMEDSEND = 276 constant SYS_MQ_TIMEDRECEIVE (line 241) | SYS_MQ_TIMEDRECEIVE = 277 constant SYS_MQ_NOTIFY (line 242) | SYS_MQ_NOTIFY = 278 constant SYS_MQ_GETSETATTR (line 243) | SYS_MQ_GETSETATTR = 279 constant SYS_WAITID (line 244) | SYS_WAITID = 280 constant SYS_SOCKET (line 245) | SYS_SOCKET = 281 constant SYS_BIND (line 246) | SYS_BIND = 282 constant SYS_CONNECT (line 247) | SYS_CONNECT = 283 constant SYS_LISTEN (line 248) | SYS_LISTEN = 284 constant SYS_ACCEPT (line 249) | SYS_ACCEPT = 285 constant SYS_GETSOCKNAME (line 250) | SYS_GETSOCKNAME = 286 constant SYS_GETPEERNAME (line 251) | SYS_GETPEERNAME = 287 constant SYS_SOCKETPAIR (line 252) | SYS_SOCKETPAIR = 288 constant SYS_SEND (line 253) | SYS_SEND = 289 constant SYS_SENDTO (line 254) | SYS_SENDTO = 290 constant SYS_RECV (line 255) | SYS_RECV = 291 constant SYS_RECVFROM (line 256) | SYS_RECVFROM = 292 constant SYS_SHUTDOWN (line 257) | SYS_SHUTDOWN = 293 constant SYS_SETSOCKOPT (line 258) | SYS_SETSOCKOPT = 294 constant SYS_GETSOCKOPT (line 259) | SYS_GETSOCKOPT = 295 constant SYS_SENDMSG (line 260) | SYS_SENDMSG = 296 constant SYS_RECVMSG (line 261) | SYS_RECVMSG = 297 constant SYS_SEMOP (line 262) | SYS_SEMOP = 298 constant SYS_SEMGET (line 263) | SYS_SEMGET = 299 constant SYS_SEMCTL (line 264) | SYS_SEMCTL = 300 constant SYS_MSGSND (line 265) | SYS_MSGSND = 301 constant SYS_MSGRCV (line 266) | SYS_MSGRCV = 302 constant SYS_MSGGET (line 267) | SYS_MSGGET = 303 constant SYS_MSGCTL (line 268) | SYS_MSGCTL = 304 constant SYS_SHMAT (line 269) | SYS_SHMAT = 305 constant SYS_SHMDT (line 270) | SYS_SHMDT = 306 constant SYS_SHMGET (line 271) | SYS_SHMGET = 307 constant SYS_SHMCTL (line 272) | SYS_SHMCTL = 308 constant SYS_ADD_KEY (line 273) | SYS_ADD_KEY = 309 constant SYS_REQUEST_KEY (line 274) | SYS_REQUEST_KEY = 310 constant SYS_KEYCTL (line 275) | SYS_KEYCTL = 311 constant SYS_SEMTIMEDOP (line 276) | SYS_SEMTIMEDOP = 312 constant SYS_VSERVER (line 277) | SYS_VSERVER = 313 constant SYS_IOPRIO_SET (line 278) | SYS_IOPRIO_SET = 314 constant SYS_IOPRIO_GET (line 279) | SYS_IOPRIO_GET = 315 constant SYS_INOTIFY_INIT (line 280) | SYS_INOTIFY_INIT = 316 constant SYS_INOTIFY_ADD_WATCH (line 281) | SYS_INOTIFY_ADD_WATCH = 317 constant SYS_INOTIFY_RM_WATCH (line 282) | SYS_INOTIFY_RM_WATCH = 318 constant SYS_MBIND (line 283) | SYS_MBIND = 319 constant SYS_GET_MEMPOLICY (line 284) | SYS_GET_MEMPOLICY = 320 constant SYS_SET_MEMPOLICY (line 285) | SYS_SET_MEMPOLICY = 321 constant SYS_OPENAT (line 286) | SYS_OPENAT = 322 constant SYS_MKDIRAT (line 287) | SYS_MKDIRAT = 323 constant SYS_MKNODAT (line 288) | SYS_MKNODAT = 324 constant SYS_FCHOWNAT (line 289) | SYS_FCHOWNAT = 325 constant SYS_FUTIMESAT (line 290) | SYS_FUTIMESAT = 326 constant SYS_FSTATAT64 (line 291) | SYS_FSTATAT64 = 327 constant SYS_UNLINKAT (line 292) | SYS_UNLINKAT = 328 constant SYS_RENAMEAT (line 293) | SYS_RENAMEAT = 329 constant SYS_LINKAT (line 294) | SYS_LINKAT = 330 constant SYS_SYMLINKAT (line 295) | SYS_SYMLINKAT = 331 constant SYS_READLINKAT (line 296) | SYS_READLINKAT = 332 constant SYS_FCHMODAT (line 297) | SYS_FCHMODAT = 333 constant SYS_FACCESSAT (line 298) | SYS_FACCESSAT = 334 constant SYS_PSELECT6 (line 299) | SYS_PSELECT6 = 335 constant SYS_PPOLL (line 300) | SYS_PPOLL = 336 constant SYS_UNSHARE (line 301) | SYS_UNSHARE = 337 constant SYS_SET_ROBUST_LIST (line 302) | SYS_SET_ROBUST_LIST = 338 constant SYS_GET_ROBUST_LIST (line 303) | SYS_GET_ROBUST_LIST = 339 constant SYS_SPLICE (line 304) | SYS_SPLICE = 340 constant SYS_ARM_SYNC_FILE_RANGE (line 305) | SYS_ARM_SYNC_FILE_RANGE = 341 constant SYS_TEE (line 306) | SYS_TEE = 342 constant SYS_VMSPLICE (line 307) | SYS_VMSPLICE = 343 constant SYS_MOVE_PAGES (line 308) | SYS_MOVE_PAGES = 344 constant SYS_GETCPU (line 309) | SYS_GETCPU = 345 constant SYS_EPOLL_PWAIT (line 310) | SYS_EPOLL_PWAIT = 346 constant SYS_KEXEC_LOAD (line 311) | SYS_KEXEC_LOAD = 347 constant SYS_UTIMENSAT (line 312) | SYS_UTIMENSAT = 348 constant SYS_SIGNALFD (line 313) | SYS_SIGNALFD = 349 constant SYS_TIMERFD_CREATE (line 314) | SYS_TIMERFD_CREATE = 350 constant SYS_EVENTFD (line 315) | SYS_EVENTFD = 351 constant SYS_FALLOCATE (line 316) | SYS_FALLOCATE = 352 constant SYS_TIMERFD_SETTIME (line 317) | SYS_TIMERFD_SETTIME = 353 constant SYS_TIMERFD_GETTIME (line 318) | SYS_TIMERFD_GETTIME = 354 constant SYS_SIGNALFD4 (line 319) | SYS_SIGNALFD4 = 355 constant SYS_EVENTFD2 (line 320) | SYS_EVENTFD2 = 356 constant SYS_EPOLL_CREATE1 (line 321) | SYS_EPOLL_CREATE1 = 357 constant SYS_DUP3 (line 322) | SYS_DUP3 = 358 constant SYS_PIPE2 (line 323) | SYS_PIPE2 = 359 constant SYS_INOTIFY_INIT1 (line 324) | SYS_INOTIFY_INIT1 = 360 constant SYS_PREADV (line 325) | SYS_PREADV = 361 constant SYS_PWRITEV (line 326) | SYS_PWRITEV = 362 constant SYS_RT_TGSIGQUEUEINFO (line 327) | SYS_RT_TGSIGQUEUEINFO = 363 constant SYS_PERF_EVENT_OPEN (line 328) | SYS_PERF_EVENT_OPEN = 364 constant SYS_RECVMMSG (line 329) | SYS_RECVMMSG = 365 constant SYS_ACCEPT4 (line 330) | SYS_ACCEPT4 = 366 constant SYS_FANOTIFY_INIT (line 331) | SYS_FANOTIFY_INIT = 367 constant SYS_FANOTIFY_MARK (line 332) | SYS_FANOTIFY_MARK = 368 constant SYS_PRLIMIT64 (line 333) | SYS_PRLIMIT64 = 369 constant SYS_NAME_TO_HANDLE_AT (line 334) | SYS_NAME_TO_HANDLE_AT = 370 constant SYS_OPEN_BY_HANDLE_AT (line 335) | SYS_OPEN_BY_HANDLE_AT = 371 constant SYS_CLOCK_ADJTIME (line 336) | SYS_CLOCK_ADJTIME = 372 constant SYS_SYNCFS (line 337) | SYS_SYNCFS = 373 constant SYS_SENDMMSG (line 338) | SYS_SENDMMSG = 374 constant SYS_SETNS (line 339) | SYS_SETNS = 375 constant SYS_PROCESS_VM_READV (line 340) | SYS_PROCESS_VM_READV = 376 constant SYS_PROCESS_VM_WRITEV (line 341) | SYS_PROCESS_VM_WRITEV = 377 constant SYS_KCMP (line 342) | SYS_KCMP = 378 constant SYS_FINIT_MODULE (line 343) | SYS_FINIT_MODULE = 379 constant SYS_SCHED_SETATTR (line 344) | SYS_SCHED_SETATTR = 380 constant SYS_SCHED_GETATTR (line 345) | SYS_SCHED_GETATTR = 381 constant SYS_RENAMEAT2 (line 346) | SYS_RENAMEAT2 = 382 constant SYS_SECCOMP (line 347) | SYS_SECCOMP = 383 constant SYS_GETRANDOM (line 348) | SYS_GETRANDOM = 384 constant SYS_MEMFD_CREATE (line 349) | SYS_MEMFD_CREATE = 385 constant SYS_BPF (line 350) | SYS_BPF = 386 constant SYS_EXECVEAT (line 351) | SYS_EXECVEAT = 387 constant SYS_USERFAULTFD (line 352) | SYS_USERFAULTFD = 388 constant SYS_MEMBARRIER (line 353) | SYS_MEMBARRIER = 389 constant SYS_MLOCK2 (line 354) | SYS_MLOCK2 = 390 constant SYS_COPY_FILE_RANGE (line 355) | SYS_COPY_FILE_RANGE = 391 constant SYS_PREADV2 (line 356) | SYS_PREADV2 = 392 constant SYS_PWRITEV2 (line 357) | SYS_PWRITEV2 = 393 constant SYS_PKEY_MPROTECT (line 358) | SYS_PKEY_MPROTECT = 394 constant SYS_PKEY_ALLOC (line 359) | SYS_PKEY_ALLOC = 395 constant SYS_PKEY_FREE (line 360) | SYS_PKEY_FREE = 396 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go constant SYS_IO_SETUP (line 9) | SYS_IO_SETUP = 0 constant SYS_IO_DESTROY (line 10) | SYS_IO_DESTROY = 1 constant SYS_IO_SUBMIT (line 11) | SYS_IO_SUBMIT = 2 constant SYS_IO_CANCEL (line 12) | SYS_IO_CANCEL = 3 constant SYS_IO_GETEVENTS (line 13) | SYS_IO_GETEVENTS = 4 constant SYS_SETXATTR (line 14) | SYS_SETXATTR = 5 constant SYS_LSETXATTR (line 15) | SYS_LSETXATTR = 6 constant SYS_FSETXATTR (line 16) | SYS_FSETXATTR = 7 constant SYS_GETXATTR (line 17) | SYS_GETXATTR = 8 constant SYS_LGETXATTR (line 18) | SYS_LGETXATTR = 9 constant SYS_FGETXATTR (line 19) | SYS_FGETXATTR = 10 constant SYS_LISTXATTR (line 20) | SYS_LISTXATTR = 11 constant SYS_LLISTXATTR (line 21) | SYS_LLISTXATTR = 12 constant SYS_FLISTXATTR (line 22) | SYS_FLISTXATTR = 13 constant SYS_REMOVEXATTR (line 23) | SYS_REMOVEXATTR = 14 constant SYS_LREMOVEXATTR (line 24) | SYS_LREMOVEXATTR = 15 constant SYS_FREMOVEXATTR (line 25) | SYS_FREMOVEXATTR = 16 constant SYS_GETCWD (line 26) | SYS_GETCWD = 17 constant SYS_LOOKUP_DCOOKIE (line 27) | SYS_LOOKUP_DCOOKIE = 18 constant SYS_EVENTFD2 (line 28) | SYS_EVENTFD2 = 19 constant SYS_EPOLL_CREATE1 (line 29) | SYS_EPOLL_CREATE1 = 20 constant SYS_EPOLL_CTL (line 30) | SYS_EPOLL_CTL = 21 constant SYS_EPOLL_PWAIT (line 31) | SYS_EPOLL_PWAIT = 22 constant SYS_DUP (line 32) | SYS_DUP = 23 constant SYS_DUP3 (line 33) | SYS_DUP3 = 24 constant SYS_FCNTL (line 34) | SYS_FCNTL = 25 constant SYS_INOTIFY_INIT1 (line 35) | SYS_INOTIFY_INIT1 = 26 constant SYS_INOTIFY_ADD_WATCH (line 36) | SYS_INOTIFY_ADD_WATCH = 27 constant SYS_INOTIFY_RM_WATCH (line 37) | SYS_INOTIFY_RM_WATCH = 28 constant SYS_IOCTL (line 38) | SYS_IOCTL = 29 constant SYS_IOPRIO_SET (line 39) | SYS_IOPRIO_SET = 30 constant SYS_IOPRIO_GET (line 40) | SYS_IOPRIO_GET = 31 constant SYS_FLOCK (line 41) | SYS_FLOCK = 32 constant SYS_MKNODAT (line 42) | SYS_MKNODAT = 33 constant SYS_MKDIRAT (line 43) | SYS_MKDIRAT = 34 constant SYS_UNLINKAT (line 44) | SYS_UNLINKAT = 35 constant SYS_SYMLINKAT (line 45) | SYS_SYMLINKAT = 36 constant SYS_LINKAT (line 46) | SYS_LINKAT = 37 constant SYS_RENAMEAT (line 47) | SYS_RENAMEAT = 38 constant SYS_UMOUNT2 (line 48) | SYS_UMOUNT2 = 39 constant SYS_MOUNT (line 49) | SYS_MOUNT = 40 constant SYS_PIVOT_ROOT (line 50) | SYS_PIVOT_ROOT = 41 constant SYS_NFSSERVCTL (line 51) | SYS_NFSSERVCTL = 42 constant SYS_STATFS (line 52) | SYS_STATFS = 43 constant SYS_FSTATFS (line 53) | SYS_FSTATFS = 44 constant SYS_TRUNCATE (line 54) | SYS_TRUNCATE = 45 constant SYS_FTRUNCATE (line 55) | SYS_FTRUNCATE = 46 constant SYS_FALLOCATE (line 56) | SYS_FALLOCATE = 47 constant SYS_FACCESSAT (line 57) | SYS_FACCESSAT = 48 constant SYS_CHDIR (line 58) | SYS_CHDIR = 49 constant SYS_FCHDIR (line 59) | SYS_FCHDIR = 50 constant SYS_CHROOT (line 60) | SYS_CHROOT = 51 constant SYS_FCHMOD (line 61) | SYS_FCHMOD = 52 constant SYS_FCHMODAT (line 62) | SYS_FCHMODAT = 53 constant SYS_FCHOWNAT (line 63) | SYS_FCHOWNAT = 54 constant SYS_FCHOWN (line 64) | SYS_FCHOWN = 55 constant SYS_OPENAT (line 65) | SYS_OPENAT = 56 constant SYS_CLOSE (line 66) | SYS_CLOSE = 57 constant SYS_VHANGUP (line 67) | SYS_VHANGUP = 58 constant SYS_PIPE2 (line 68) | SYS_PIPE2 = 59 constant SYS_QUOTACTL (line 69) | SYS_QUOTACTL = 60 constant SYS_GETDENTS64 (line 70) | SYS_GETDENTS64 = 61 constant SYS_LSEEK (line 71) | SYS_LSEEK = 62 constant SYS_READ (line 72) | SYS_READ = 63 constant SYS_WRITE (line 73) | SYS_WRITE = 64 constant SYS_READV (line 74) | SYS_READV = 65 constant SYS_WRITEV (line 75) | SYS_WRITEV = 66 constant SYS_PREAD64 (line 76) | SYS_PREAD64 = 67 constant SYS_PWRITE64 (line 77) | SYS_PWRITE64 = 68 constant SYS_PREADV (line 78) | SYS_PREADV = 69 constant SYS_PWRITEV (line 79) | SYS_PWRITEV = 70 constant SYS_SENDFILE (line 80) | SYS_SENDFILE = 71 constant SYS_PSELECT6 (line 81) | SYS_PSELECT6 = 72 constant SYS_PPOLL (line 82) | SYS_PPOLL = 73 constant SYS_SIGNALFD4 (line 83) | SYS_SIGNALFD4 = 74 constant SYS_VMSPLICE (line 84) | SYS_VMSPLICE = 75 constant SYS_SPLICE (line 85) | SYS_SPLICE = 76 constant SYS_TEE (line 86) | SYS_TEE = 77 constant SYS_READLINKAT (line 87) | SYS_READLINKAT = 78 constant SYS_FSTATAT (line 88) | SYS_FSTATAT = 79 constant SYS_FSTAT (line 89) | SYS_FSTAT = 80 constant SYS_SYNC (line 90) | SYS_SYNC = 81 constant SYS_FSYNC (line 91) | SYS_FSYNC = 82 constant SYS_FDATASYNC (line 92) | SYS_FDATASYNC = 83 constant SYS_SYNC_FILE_RANGE (line 93) | SYS_SYNC_FILE_RANGE = 84 constant SYS_TIMERFD_CREATE (line 94) | SYS_TIMERFD_CREATE = 85 constant SYS_TIMERFD_SETTIME (line 95) | SYS_TIMERFD_SETTIME = 86 constant SYS_TIMERFD_GETTIME (line 96) | SYS_TIMERFD_GETTIME = 87 constant SYS_UTIMENSAT (line 97) | SYS_UTIMENSAT = 88 constant SYS_ACCT (line 98) | SYS_ACCT = 89 constant SYS_CAPGET (line 99) | SYS_CAPGET = 90 constant SYS_CAPSET (line 100) | SYS_CAPSET = 91 constant SYS_PERSONALITY (line 101) | SYS_PERSONALITY = 92 constant SYS_EXIT (line 102) | SYS_EXIT = 93 constant SYS_EXIT_GROUP (line 103) | SYS_EXIT_GROUP = 94 constant SYS_WAITID (line 104) | SYS_WAITID = 95 constant SYS_SET_TID_ADDRESS (line 105) | SYS_SET_TID_ADDRESS = 96 constant SYS_UNSHARE (line 106) | SYS_UNSHARE = 97 constant SYS_FUTEX (line 107) | SYS_FUTEX = 98 constant SYS_SET_ROBUST_LIST (line 108) | SYS_SET_ROBUST_LIST = 99 constant SYS_GET_ROBUST_LIST (line 109) | SYS_GET_ROBUST_LIST = 100 constant SYS_NANOSLEEP (line 110) | SYS_NANOSLEEP = 101 constant SYS_GETITIMER (line 111) | SYS_GETITIMER = 102 constant SYS_SETITIMER (line 112) | SYS_SETITIMER = 103 constant SYS_KEXEC_LOAD (line 113) | SYS_KEXEC_LOAD = 104 constant SYS_INIT_MODULE (line 114) | SYS_INIT_MODULE = 105 constant SYS_DELETE_MODULE (line 115) | SYS_DELETE_MODULE = 106 constant SYS_TIMER_CREATE (line 116) | SYS_TIMER_CREATE = 107 constant SYS_TIMER_GETTIME (line 117) | SYS_TIMER_GETTIME = 108 constant SYS_TIMER_GETOVERRUN (line 118) | SYS_TIMER_GETOVERRUN = 109 constant SYS_TIMER_SETTIME (line 119) | SYS_TIMER_SETTIME = 110 constant SYS_TIMER_DELETE (line 120) | SYS_TIMER_DELETE = 111 constant SYS_CLOCK_SETTIME (line 121) | SYS_CLOCK_SETTIME = 112 constant SYS_CLOCK_GETTIME (line 122) | SYS_CLOCK_GETTIME = 113 constant SYS_CLOCK_GETRES (line 123) | SYS_CLOCK_GETRES = 114 constant SYS_CLOCK_NANOSLEEP (line 124) | SYS_CLOCK_NANOSLEEP = 115 constant SYS_SYSLOG (line 125) | SYS_SYSLOG = 116 constant SYS_PTRACE (line 126) | SYS_PTRACE = 117 constant SYS_SCHED_SETPARAM (line 127) | SYS_SCHED_SETPARAM = 118 constant SYS_SCHED_SETSCHEDULER (line 128) | SYS_SCHED_SETSCHEDULER = 119 constant SYS_SCHED_GETSCHEDULER (line 129) | SYS_SCHED_GETSCHEDULER = 120 constant SYS_SCHED_GETPARAM (line 130) | SYS_SCHED_GETPARAM = 121 constant SYS_SCHED_SETAFFINITY (line 131) | SYS_SCHED_SETAFFINITY = 122 constant SYS_SCHED_GETAFFINITY (line 132) | SYS_SCHED_GETAFFINITY = 123 constant SYS_SCHED_YIELD (line 133) | SYS_SCHED_YIELD = 124 constant SYS_SCHED_GET_PRIORITY_MAX (line 134) | SYS_SCHED_GET_PRIORITY_MAX = 125 constant SYS_SCHED_GET_PRIORITY_MIN (line 135) | SYS_SCHED_GET_PRIORITY_MIN = 126 constant SYS_SCHED_RR_GET_INTERVAL (line 136) | SYS_SCHED_RR_GET_INTERVAL = 127 constant SYS_RESTART_SYSCALL (line 137) | SYS_RESTART_SYSCALL = 128 constant SYS_KILL (line 138) | SYS_KILL = 129 constant SYS_TKILL (line 139) | SYS_TKILL = 130 constant SYS_TGKILL (line 140) | SYS_TGKILL = 131 constant SYS_SIGALTSTACK (line 141) | SYS_SIGALTSTACK = 132 constant SYS_RT_SIGSUSPEND (line 142) | SYS_RT_SIGSUSPEND = 133 constant SYS_RT_SIGACTION (line 143) | SYS_RT_SIGACTION = 134 constant SYS_RT_SIGPROCMASK (line 144) | SYS_RT_SIGPROCMASK = 135 constant SYS_RT_SIGPENDING (line 145) | SYS_RT_SIGPENDING = 136 constant SYS_RT_SIGTIMEDWAIT (line 146) | SYS_RT_SIGTIMEDWAIT = 137 constant SYS_RT_SIGQUEUEINFO (line 147) | SYS_RT_SIGQUEUEINFO = 138 constant SYS_RT_SIGRETURN (line 148) | SYS_RT_SIGRETURN = 139 constant SYS_SETPRIORITY (line 149) | SYS_SETPRIORITY = 140 constant SYS_GETPRIORITY (line 150) | SYS_GETPRIORITY = 141 constant SYS_REBOOT (line 151) | SYS_REBOOT = 142 constant SYS_SETREGID (line 152) | SYS_SETREGID = 143 constant SYS_SETGID (line 153) | SYS_SETGID = 144 constant SYS_SETREUID (line 154) | SYS_SETREUID = 145 constant SYS_SETUID (line 155) | SYS_SETUID = 146 constant SYS_SETRESUID (line 156) | SYS_SETRESUID = 147 constant SYS_GETRESUID (line 157) | SYS_GETRESUID = 148 constant SYS_SETRESGID (line 158) | SYS_SETRESGID = 149 constant SYS_GETRESGID (line 159) | SYS_GETRESGID = 150 constant SYS_SETFSUID (line 160) | SYS_SETFSUID = 151 constant SYS_SETFSGID (line 161) | SYS_SETFSGID = 152 constant SYS_TIMES (line 162) | SYS_TIMES = 153 constant SYS_SETPGID (line 163) | SYS_SETPGID = 154 constant SYS_GETPGID (line 164) | SYS_GETPGID = 155 constant SYS_GETSID (line 165) | SYS_GETSID = 156 constant SYS_SETSID (line 166) | SYS_SETSID = 157 constant SYS_GETGROUPS (line 167) | SYS_GETGROUPS = 158 constant SYS_SETGROUPS (line 168) | SYS_SETGROUPS = 159 constant SYS_UNAME (line 169) | SYS_UNAME = 160 constant SYS_SETHOSTNAME (line 170) | SYS_SETHOSTNAME = 161 constant SYS_SETDOMAINNAME (line 171) | SYS_SETDOMAINNAME = 162 constant SYS_GETRLIMIT (line 172) | SYS_GETRLIMIT = 163 constant SYS_SETRLIMIT (line 173) | SYS_SETRLIMIT = 164 constant SYS_GETRUSAGE (line 174) | SYS_GETRUSAGE = 165 constant SYS_UMASK (line 175) | SYS_UMASK = 166 constant SYS_PRCTL (line 176) | SYS_PRCTL = 167 constant SYS_GETCPU (line 177) | SYS_GETCPU = 168 constant SYS_GETTIMEOFDAY (line 178) | SYS_GETTIMEOFDAY = 169 constant SYS_SETTIMEOFDAY (line 179) | SYS_SETTIMEOFDAY = 170 constant SYS_ADJTIMEX (line 180) | SYS_ADJTIMEX = 171 constant SYS_GETPID (line 181) | SYS_GETPID = 172 constant SYS_GETPPID (line 182) | SYS_GETPPID = 173 constant SYS_GETUID (line 183) | SYS_GETUID = 174 constant SYS_GETEUID (line 184) | SYS_GETEUID = 175 constant SYS_GETGID (line 185) | SYS_GETGID = 176 constant SYS_GETEGID (line 186) | SYS_GETEGID = 177 constant SYS_GETTID (line 187) | SYS_GETTID = 178 constant SYS_SYSINFO (line 188) | SYS_SYSINFO = 179 constant SYS_MQ_OPEN (line 189) | SYS_MQ_OPEN = 180 constant SYS_MQ_UNLINK (line 190) | SYS_MQ_UNLINK = 181 constant SYS_MQ_TIMEDSEND (line 191) | SYS_MQ_TIMEDSEND = 182 constant SYS_MQ_TIMEDRECEIVE (line 192) | SYS_MQ_TIMEDRECEIVE = 183 constant SYS_MQ_NOTIFY (line 193) | SYS_MQ_NOTIFY = 184 constant SYS_MQ_GETSETATTR (line 194) | SYS_MQ_GETSETATTR = 185 constant SYS_MSGGET (line 195) | SYS_MSGGET = 186 constant SYS_MSGCTL (line 196) | SYS_MSGCTL = 187 constant SYS_MSGRCV (line 197) | SYS_MSGRCV = 188 constant SYS_MSGSND (line 198) | SYS_MSGSND = 189 constant SYS_SEMGET (line 199) | SYS_SEMGET = 190 constant SYS_SEMCTL (line 200) | SYS_SEMCTL = 191 constant SYS_SEMTIMEDOP (line 201) | SYS_SEMTIMEDOP = 192 constant SYS_SEMOP (line 202) | SYS_SEMOP = 193 constant SYS_SHMGET (line 203) | SYS_SHMGET = 194 constant SYS_SHMCTL (line 204) | SYS_SHMCTL = 195 constant SYS_SHMAT (line 205) | SYS_SHMAT = 196 constant SYS_SHMDT (line 206) | SYS_SHMDT = 197 constant SYS_SOCKET (line 207) | SYS_SOCKET = 198 constant SYS_SOCKETPAIR (line 208) | SYS_SOCKETPAIR = 199 constant SYS_BIND (line 209) | SYS_BIND = 200 constant SYS_LISTEN (line 210) | SYS_LISTEN = 201 constant SYS_ACCEPT (line 211) | SYS_ACCEPT = 202 constant SYS_CONNECT (line 212) | SYS_CONNECT = 203 constant SYS_GETSOCKNAME (line 213) | SYS_GETSOCKNAME = 204 constant SYS_GETPEERNAME (line 214) | SYS_GETPEERNAME = 205 constant SYS_SENDTO (line 215) | SYS_SENDTO = 206 constant SYS_RECVFROM (line 216) | SYS_RECVFROM = 207 constant SYS_SETSOCKOPT (line 217) | SYS_SETSOCKOPT = 208 constant SYS_GETSOCKOPT (line 218) | SYS_GETSOCKOPT = 209 constant SYS_SHUTDOWN (line 219) | SYS_SHUTDOWN = 210 constant SYS_SENDMSG (line 220) | SYS_SENDMSG = 211 constant SYS_RECVMSG (line 221) | SYS_RECVMSG = 212 constant SYS_READAHEAD (line 222) | SYS_READAHEAD = 213 constant SYS_BRK (line 223) | SYS_BRK = 214 constant SYS_MUNMAP (line 224) | SYS_MUNMAP = 215 constant SYS_MREMAP (line 225) | SYS_MREMAP = 216 constant SYS_ADD_KEY (line 226) | SYS_ADD_KEY = 217 constant SYS_REQUEST_KEY (line 227) | SYS_REQUEST_KEY = 218 constant SYS_KEYCTL (line 228) | SYS_KEYCTL = 219 constant SYS_CLONE (line 229) | SYS_CLONE = 220 constant SYS_EXECVE (line 230) | SYS_EXECVE = 221 constant SYS_MMAP (line 231) | SYS_MMAP = 222 constant SYS_FADVISE64 (line 232) | SYS_FADVISE64 = 223 constant SYS_SWAPON (line 233) | SYS_SWAPON = 224 constant SYS_SWAPOFF (line 234) | SYS_SWAPOFF = 225 constant SYS_MPROTECT (line 235) | SYS_MPROTECT = 226 constant SYS_MSYNC (line 236) | SYS_MSYNC = 227 constant SYS_MLOCK (line 237) | SYS_MLOCK = 228 constant SYS_MUNLOCK (line 238) | SYS_MUNLOCK = 229 constant SYS_MLOCKALL (line 239) | SYS_MLOCKALL = 230 constant SYS_MUNLOCKALL (line 240) | SYS_MUNLOCKALL = 231 constant SYS_MINCORE (line 241) | SYS_MINCORE = 232 constant SYS_MADVISE (line 242) | SYS_MADVISE = 233 constant SYS_REMAP_FILE_PAGES (line 243) | SYS_REMAP_FILE_PAGES = 234 constant SYS_MBIND (line 244) | SYS_MBIND = 235 constant SYS_GET_MEMPOLICY (line 245) | SYS_GET_MEMPOLICY = 236 constant SYS_SET_MEMPOLICY (line 246) | SYS_SET_MEMPOLICY = 237 constant SYS_MIGRATE_PAGES (line 247) | SYS_MIGRATE_PAGES = 238 constant SYS_MOVE_PAGES (line 248) | SYS_MOVE_PAGES = 239 constant SYS_RT_TGSIGQUEUEINFO (line 249) | SYS_RT_TGSIGQUEUEINFO = 240 constant SYS_PERF_EVENT_OPEN (line 250) | SYS_PERF_EVENT_OPEN = 241 constant SYS_ACCEPT4 (line 251) | SYS_ACCEPT4 = 242 constant SYS_RECVMMSG (line 252) | SYS_RECVMMSG = 243 constant SYS_ARCH_SPECIFIC_SYSCALL (line 253) | SYS_ARCH_SPECIFIC_SYSCALL = 244 constant SYS_WAIT4 (line 254) | SYS_WAIT4 = 260 constant SYS_PRLIMIT64 (line 255) | SYS_PRLIMIT64 = 261 constant SYS_FANOTIFY_INIT (line 256) | SYS_FANOTIFY_INIT = 262 constant SYS_FANOTIFY_MARK (line 257) | SYS_FANOTIFY_MARK = 263 constant SYS_NAME_TO_HANDLE_AT (line 258) | SYS_NAME_TO_HANDLE_AT = 264 constant SYS_OPEN_BY_HANDLE_AT (line 259) | SYS_OPEN_BY_HANDLE_AT = 265 constant SYS_CLOCK_ADJTIME (line 260) | SYS_CLOCK_ADJTIME = 266 constant SYS_SYNCFS (line 261) | SYS_SYNCFS = 267 constant SYS_SETNS (line 262) | SYS_SETNS = 268 constant SYS_SENDMMSG (line 263) | SYS_SENDMMSG = 269 constant SYS_PROCESS_VM_READV (line 264) | SYS_PROCESS_VM_READV = 270 constant SYS_PROCESS_VM_WRITEV (line 265) | SYS_PROCESS_VM_WRITEV = 271 constant SYS_KCMP (line 266) | SYS_KCMP = 272 constant SYS_FINIT_MODULE (line 267) | SYS_FINIT_MODULE = 273 constant SYS_SCHED_SETATTR (line 268) | SYS_SCHED_SETATTR = 274 constant SYS_SCHED_GETATTR (line 269) | SYS_SCHED_GETATTR = 275 constant SYS_RENAMEAT2 (line 270) | SYS_RENAMEAT2 = 276 constant SYS_SECCOMP (line 271) | SYS_SECCOMP = 277 constant SYS_GETRANDOM (line 272) | SYS_GETRANDOM = 278 constant SYS_MEMFD_CREATE (line 273) | SYS_MEMFD_CREATE = 279 constant SYS_BPF (line 274) | SYS_BPF = 280 constant SYS_EXECVEAT (line 275) | SYS_EXECVEAT = 281 constant SYS_USERFAULTFD (line 276) | SYS_USERFAULTFD = 282 constant SYS_MEMBARRIER (line 277) | SYS_MEMBARRIER = 283 constant SYS_MLOCK2 (line 278) | SYS_MLOCK2 = 284 constant SYS_COPY_FILE_RANGE (line 279) | SYS_COPY_FILE_RANGE = 285 constant SYS_PREADV2 (line 280) | SYS_PREADV2 = 286 constant SYS_PWRITEV2 (line 281) | SYS_PWRITEV2 = 287 constant SYS_PKEY_MPROTECT (line 282) | SYS_PKEY_MPROTECT = 288 constant SYS_PKEY_ALLOC (line 283) | SYS_PKEY_ALLOC = 289 constant SYS_PKEY_FREE (line 284) | SYS_PKEY_FREE = 290 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 4000 constant SYS_EXIT (line 10) | SYS_EXIT = 4001 constant SYS_FORK (line 11) | SYS_FORK = 4002 constant SYS_READ (line 12) | SYS_READ = 4003 constant SYS_WRITE (line 13) | SYS_WRITE = 4004 constant SYS_OPEN (line 14) | SYS_OPEN = 4005 constant SYS_CLOSE (line 15) | SYS_CLOSE = 4006 constant SYS_WAITPID (line 16) | SYS_WAITPID = 4007 constant SYS_CREAT (line 17) | SYS_CREAT = 4008 constant SYS_LINK (line 18) | SYS_LINK = 4009 constant SYS_UNLINK (line 19) | SYS_UNLINK = 4010 constant SYS_EXECVE (line 20) | SYS_EXECVE = 4011 constant SYS_CHDIR (line 21) | SYS_CHDIR = 4012 constant SYS_TIME (line 22) | SYS_TIME = 4013 constant SYS_MKNOD (line 23) | SYS_MKNOD = 4014 constant SYS_CHMOD (line 24) | SYS_CHMOD = 4015 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 4016 constant SYS_BREAK (line 26) | SYS_BREAK = 4017 constant SYS_UNUSED18 (line 27) | SYS_UNUSED18 = 4018 constant SYS_LSEEK (line 28) | SYS_LSEEK = 4019 constant SYS_GETPID (line 29) | SYS_GETPID = 4020 constant SYS_MOUNT (line 30) | SYS_MOUNT = 4021 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 4022 constant SYS_SETUID (line 32) | SYS_SETUID = 4023 constant SYS_GETUID (line 33) | SYS_GETUID = 4024 constant SYS_STIME (line 34) | SYS_STIME = 4025 constant SYS_PTRACE (line 35) | SYS_PTRACE = 4026 constant SYS_ALARM (line 36) | SYS_ALARM = 4027 constant SYS_UNUSED28 (line 37) | SYS_UNUSED28 = 4028 constant SYS_PAUSE (line 38) | SYS_PAUSE = 4029 constant SYS_UTIME (line 39) | SYS_UTIME = 4030 constant SYS_STTY (line 40) | SYS_STTY = 4031 constant SYS_GTTY (line 41) | SYS_GTTY = 4032 constant SYS_ACCESS (line 42) | SYS_ACCESS = 4033 constant SYS_NICE (line 43) | SYS_NICE = 4034 constant SYS_FTIME (line 44) | SYS_FTIME = 4035 constant SYS_SYNC (line 45) | SYS_SYNC = 4036 constant SYS_KILL (line 46) | SYS_KILL = 4037 constant SYS_RENAME (line 47) | SYS_RENAME = 4038 constant SYS_MKDIR (line 48) | SYS_MKDIR = 4039 constant SYS_RMDIR (line 49) | SYS_RMDIR = 4040 constant SYS_DUP (line 50) | SYS_DUP = 4041 constant SYS_PIPE (line 51) | SYS_PIPE = 4042 constant SYS_TIMES (line 52) | SYS_TIMES = 4043 constant SYS_PROF (line 53) | SYS_PROF = 4044 constant SYS_BRK (line 54) | SYS_BRK = 4045 constant SYS_SETGID (line 55) | SYS_SETGID = 4046 constant SYS_GETGID (line 56) | SYS_GETGID = 4047 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 4048 constant SYS_GETEUID (line 58) | SYS_GETEUID = 4049 constant SYS_GETEGID (line 59) | SYS_GETEGID = 4050 constant SYS_ACCT (line 60) | SYS_ACCT = 4051 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 4052 constant SYS_LOCK (line 62) | SYS_LOCK = 4053 constant SYS_IOCTL (line 63) | SYS_IOCTL = 4054 constant SYS_FCNTL (line 64) | SYS_FCNTL = 4055 constant SYS_MPX (line 65) | SYS_MPX = 4056 constant SYS_SETPGID (line 66) | SYS_SETPGID = 4057 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 4058 constant SYS_UNUSED59 (line 68) | SYS_UNUSED59 = 4059 constant SYS_UMASK (line 69) | SYS_UMASK = 4060 constant SYS_CHROOT (line 70) | SYS_CHROOT = 4061 constant SYS_USTAT (line 71) | SYS_USTAT = 4062 constant SYS_DUP2 (line 72) | SYS_DUP2 = 4063 constant SYS_GETPPID (line 73) | SYS_GETPPID = 4064 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 4065 constant SYS_SETSID (line 75) | SYS_SETSID = 4066 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 4067 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 4068 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 4069 constant SYS_SETREUID (line 79) | SYS_SETREUID = 4070 constant SYS_SETREGID (line 80) | SYS_SETREGID = 4071 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 4072 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 4073 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 4074 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 4075 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 4076 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 4077 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 4078 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 4079 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 4080 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 4081 constant SYS_RESERVED82 (line 91) | SYS_RESERVED82 = 4082 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 4083 constant SYS_UNUSED84 (line 93) | SYS_UNUSED84 = 4084 constant SYS_READLINK (line 94) | SYS_READLINK = 4085 constant SYS_USELIB (line 95) | SYS_USELIB = 4086 constant SYS_SWAPON (line 96) | SYS_SWAPON = 4087 constant SYS_REBOOT (line 97) | SYS_REBOOT = 4088 constant SYS_READDIR (line 98) | SYS_READDIR = 4089 constant SYS_MMAP (line 99) | SYS_MMAP = 4090 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 4091 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 4092 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 4093 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 4094 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 4095 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 4096 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 4097 constant SYS_PROFIL (line 107) | SYS_PROFIL = 4098 constant SYS_STATFS (line 108) | SYS_STATFS = 4099 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 4100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 4101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 4102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 4103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 4104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 4105 constant SYS_STAT (line 115) | SYS_STAT = 4106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 4107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 4108 constant SYS_UNUSED109 (line 118) | SYS_UNUSED109 = 4109 constant SYS_IOPL (line 119) | SYS_IOPL = 4110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 4111 constant SYS_IDLE (line 121) | SYS_IDLE = 4112 constant SYS_VM86 (line 122) | SYS_VM86 = 4113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 4114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 4115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 4116 constant SYS_IPC (line 126) | SYS_IPC = 4117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 4118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 4119 constant SYS_CLONE (line 129) | SYS_CLONE = 4120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 4121 constant SYS_UNAME (line 131) | SYS_UNAME = 4122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 4123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 4124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 4125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 4126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 4127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 4128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 4129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 4130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 4131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 4132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 4133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 4134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 4135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 4136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 4137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 4138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 4139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 4140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 4141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 4142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 4143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 4144 constant SYS_READV (line 154) | SYS_READV = 4145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 4146 constant SYS_CACHEFLUSH (line 156) | SYS_CACHEFLUSH = 4147 constant SYS_CACHECTL (line 157) | SYS_CACHECTL = 4148 constant SYS_SYSMIPS (line 158) | SYS_SYSMIPS = 4149 constant SYS_UNUSED150 (line 159) | SYS_UNUSED150 = 4150 constant SYS_GETSID (line 160) | SYS_GETSID = 4151 constant SYS_FDATASYNC (line 161) | SYS_FDATASYNC = 4152 constant SYS__SYSCTL (line 162) | SYS__SYSCTL = 4153 constant SYS_MLOCK (line 163) | SYS_MLOCK = 4154 constant SYS_MUNLOCK (line 164) | SYS_MUNLOCK = 4155 constant SYS_MLOCKALL (line 165) | SYS_MLOCKALL = 4156 constant SYS_MUNLOCKALL (line 166) | SYS_MUNLOCKALL = 4157 constant SYS_SCHED_SETPARAM (line 167) | SYS_SCHED_SETPARAM = 4158 constant SYS_SCHED_GETPARAM (line 168) | SYS_SCHED_GETPARAM = 4159 constant SYS_SCHED_SETSCHEDULER (line 169) | SYS_SCHED_SETSCHEDULER = 4160 constant SYS_SCHED_GETSCHEDULER (line 170) | SYS_SCHED_GETSCHEDULER = 4161 constant SYS_SCHED_YIELD (line 171) | SYS_SCHED_YIELD = 4162 constant SYS_SCHED_GET_PRIORITY_MAX (line 172) | SYS_SCHED_GET_PRIORITY_MAX = 4163 constant SYS_SCHED_GET_PRIORITY_MIN (line 173) | SYS_SCHED_GET_PRIORITY_MIN = 4164 constant SYS_SCHED_RR_GET_INTERVAL (line 174) | SYS_SCHED_RR_GET_INTERVAL = 4165 constant SYS_NANOSLEEP (line 175) | SYS_NANOSLEEP = 4166 constant SYS_MREMAP (line 176) | SYS_MREMAP = 4167 constant SYS_ACCEPT (line 177) | SYS_ACCEPT = 4168 constant SYS_BIND (line 178) | SYS_BIND = 4169 constant SYS_CONNECT (line 179) | SYS_CONNECT = 4170 constant SYS_GETPEERNAME (line 180) | SYS_GETPEERNAME = 4171 constant SYS_GETSOCKNAME (line 181) | SYS_GETSOCKNAME = 4172 constant SYS_GETSOCKOPT (line 182) | SYS_GETSOCKOPT = 4173 constant SYS_LISTEN (line 183) | SYS_LISTEN = 4174 constant SYS_RECV (line 184) | SYS_RECV = 4175 constant SYS_RECVFROM (line 185) | SYS_RECVFROM = 4176 constant SYS_RECVMSG (line 186) | SYS_RECVMSG = 4177 constant SYS_SEND (line 187) | SYS_SEND = 4178 constant SYS_SENDMSG (line 188) | SYS_SENDMSG = 4179 constant SYS_SENDTO (line 189) | SYS_SENDTO = 4180 constant SYS_SETSOCKOPT (line 190) | SYS_SETSOCKOPT = 4181 constant SYS_SHUTDOWN (line 191) | SYS_SHUTDOWN = 4182 constant SYS_SOCKET (line 192) | SYS_SOCKET = 4183 constant SYS_SOCKETPAIR (line 193) | SYS_SOCKETPAIR = 4184 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 4185 constant SYS_GETRESUID (line 195) | SYS_GETRESUID = 4186 constant SYS_QUERY_MODULE (line 196) | SYS_QUERY_MODULE = 4187 constant SYS_POLL (line 197) | SYS_POLL = 4188 constant SYS_NFSSERVCTL (line 198) | SYS_NFSSERVCTL = 4189 constant SYS_SETRESGID (line 199) | SYS_SETRESGID = 4190 constant SYS_GETRESGID (line 200) | SYS_GETRESGID = 4191 constant SYS_PRCTL (line 201) | SYS_PRCTL = 4192 constant SYS_RT_SIGRETURN (line 202) | SYS_RT_SIGRETURN = 4193 constant SYS_RT_SIGACTION (line 203) | SYS_RT_SIGACTION = 4194 constant SYS_RT_SIGPROCMASK (line 204) | SYS_RT_SIGPROCMASK = 4195 constant SYS_RT_SIGPENDING (line 205) | SYS_RT_SIGPENDING = 4196 constant SYS_RT_SIGTIMEDWAIT (line 206) | SYS_RT_SIGTIMEDWAIT = 4197 constant SYS_RT_SIGQUEUEINFO (line 207) | SYS_RT_SIGQUEUEINFO = 4198 constant SYS_RT_SIGSUSPEND (line 208) | SYS_RT_SIGSUSPEND = 4199 constant SYS_PREAD64 (line 209) | SYS_PREAD64 = 4200 constant SYS_PWRITE64 (line 210) | SYS_PWRITE64 = 4201 constant SYS_CHOWN (line 211) | SYS_CHOWN = 4202 constant SYS_GETCWD (line 212) | SYS_GETCWD = 4203 constant SYS_CAPGET (line 213) | SYS_CAPGET = 4204 constant SYS_CAPSET (line 214) | SYS_CAPSET = 4205 constant SYS_SIGALTSTACK (line 215) | SYS_SIGALTSTACK = 4206 constant SYS_SENDFILE (line 216) | SYS_SENDFILE = 4207 constant SYS_GETPMSG (line 217) | SYS_GETPMSG = 4208 constant SYS_PUTPMSG (line 218) | SYS_PUTPMSG = 4209 constant SYS_MMAP2 (line 219) | SYS_MMAP2 = 4210 constant SYS_TRUNCATE64 (line 220) | SYS_TRUNCATE64 = 4211 constant SYS_FTRUNCATE64 (line 221) | SYS_FTRUNCATE64 = 4212 constant SYS_STAT64 (line 222) | SYS_STAT64 = 4213 constant SYS_LSTAT64 (line 223) | SYS_LSTAT64 = 4214 constant SYS_FSTAT64 (line 224) | SYS_FSTAT64 = 4215 constant SYS_PIVOT_ROOT (line 225) | SYS_PIVOT_ROOT = 4216 constant SYS_MINCORE (line 226) | SYS_MINCORE = 4217 constant SYS_MADVISE (line 227) | SYS_MADVISE = 4218 constant SYS_GETDENTS64 (line 228) | SYS_GETDENTS64 = 4219 constant SYS_FCNTL64 (line 229) | SYS_FCNTL64 = 4220 constant SYS_RESERVED221 (line 230) | SYS_RESERVED221 = 4221 constant SYS_GETTID (line 231) | SYS_GETTID = 4222 constant SYS_READAHEAD (line 232) | SYS_READAHEAD = 4223 constant SYS_SETXATTR (line 233) | SYS_SETXATTR = 4224 constant SYS_LSETXATTR (line 234) | SYS_LSETXATTR = 4225 constant SYS_FSETXATTR (line 235) | SYS_FSETXATTR = 4226 constant SYS_GETXATTR (line 236) | SYS_GETXATTR = 4227 constant SYS_LGETXATTR (line 237) | SYS_LGETXATTR = 4228 constant SYS_FGETXATTR (line 238) | SYS_FGETXATTR = 4229 constant SYS_LISTXATTR (line 239) | SYS_LISTXATTR = 4230 constant SYS_LLISTXATTR (line 240) | SYS_LLISTXATTR = 4231 constant SYS_FLISTXATTR (line 241) | SYS_FLISTXATTR = 4232 constant SYS_REMOVEXATTR (line 242) | SYS_REMOVEXATTR = 4233 constant SYS_LREMOVEXATTR (line 243) | SYS_LREMOVEXATTR = 4234 constant SYS_FREMOVEXATTR (line 244) | SYS_FREMOVEXATTR = 4235 constant SYS_TKILL (line 245) | SYS_TKILL = 4236 constant SYS_SENDFILE64 (line 246) | SYS_SENDFILE64 = 4237 constant SYS_FUTEX (line 247) | SYS_FUTEX = 4238 constant SYS_SCHED_SETAFFINITY (line 248) | SYS_SCHED_SETAFFINITY = 4239 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 4240 constant SYS_IO_SETUP (line 250) | SYS_IO_SETUP = 4241 constant SYS_IO_DESTROY (line 251) | SYS_IO_DESTROY = 4242 constant SYS_IO_GETEVENTS (line 252) | SYS_IO_GETEVENTS = 4243 constant SYS_IO_SUBMIT (line 253) | SYS_IO_SUBMIT = 4244 constant SYS_IO_CANCEL (line 254) | SYS_IO_CANCEL = 4245 constant SYS_EXIT_GROUP (line 255) | SYS_EXIT_GROUP = 4246 constant SYS_LOOKUP_DCOOKIE (line 256) | SYS_LOOKUP_DCOOKIE = 4247 constant SYS_EPOLL_CREATE (line 257) | SYS_EPOLL_CREATE = 4248 constant SYS_EPOLL_CTL (line 258) | SYS_EPOLL_CTL = 4249 constant SYS_EPOLL_WAIT (line 259) | SYS_EPOLL_WAIT = 4250 constant SYS_REMAP_FILE_PAGES (line 260) | SYS_REMAP_FILE_PAGES = 4251 constant SYS_SET_TID_ADDRESS (line 261) | SYS_SET_TID_ADDRESS = 4252 constant SYS_RESTART_SYSCALL (line 262) | SYS_RESTART_SYSCALL = 4253 constant SYS_FADVISE64 (line 263) | SYS_FADVISE64 = 4254 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 4255 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 4256 constant SYS_TIMER_CREATE (line 266) | SYS_TIMER_CREATE = 4257 constant SYS_TIMER_SETTIME (line 267) | SYS_TIMER_SETTIME = 4258 constant SYS_TIMER_GETTIME (line 268) | SYS_TIMER_GETTIME = 4259 constant SYS_TIMER_GETOVERRUN (line 269) | SYS_TIMER_GETOVERRUN = 4260 constant SYS_TIMER_DELETE (line 270) | SYS_TIMER_DELETE = 4261 constant SYS_CLOCK_SETTIME (line 271) | SYS_CLOCK_SETTIME = 4262 constant SYS_CLOCK_GETTIME (line 272) | SYS_CLOCK_GETTIME = 4263 constant SYS_CLOCK_GETRES (line 273) | SYS_CLOCK_GETRES = 4264 constant SYS_CLOCK_NANOSLEEP (line 274) | SYS_CLOCK_NANOSLEEP = 4265 constant SYS_TGKILL (line 275) | SYS_TGKILL = 4266 constant SYS_UTIMES (line 276) | SYS_UTIMES = 4267 constant SYS_MBIND (line 277) | SYS_MBIND = 4268 constant SYS_GET_MEMPOLICY (line 278) | SYS_GET_MEMPOLICY = 4269 constant SYS_SET_MEMPOLICY (line 279) | SYS_SET_MEMPOLICY = 4270 constant SYS_MQ_OPEN (line 280) | SYS_MQ_OPEN = 4271 constant SYS_MQ_UNLINK (line 281) | SYS_MQ_UNLINK = 4272 constant SYS_MQ_TIMEDSEND (line 282) | SYS_MQ_TIMEDSEND = 4273 constant SYS_MQ_TIMEDRECEIVE (line 283) | SYS_MQ_TIMEDRECEIVE = 4274 constant SYS_MQ_NOTIFY (line 284) | SYS_MQ_NOTIFY = 4275 constant SYS_MQ_GETSETATTR (line 285) | SYS_MQ_GETSETATTR = 4276 constant SYS_VSERVER (line 286) | SYS_VSERVER = 4277 constant SYS_WAITID (line 287) | SYS_WAITID = 4278 constant SYS_ADD_KEY (line 288) | SYS_ADD_KEY = 4280 constant SYS_REQUEST_KEY (line 289) | SYS_REQUEST_KEY = 4281 constant SYS_KEYCTL (line 290) | SYS_KEYCTL = 4282 constant SYS_SET_THREAD_AREA (line 291) | SYS_SET_THREAD_AREA = 4283 constant SYS_INOTIFY_INIT (line 292) | SYS_INOTIFY_INIT = 4284 constant SYS_INOTIFY_ADD_WATCH (line 293) | SYS_INOTIFY_ADD_WATCH = 4285 constant SYS_INOTIFY_RM_WATCH (line 294) | SYS_INOTIFY_RM_WATCH = 4286 constant SYS_MIGRATE_PAGES (line 295) | SYS_MIGRATE_PAGES = 4287 constant SYS_OPENAT (line 296) | SYS_OPENAT = 4288 constant SYS_MKDIRAT (line 297) | SYS_MKDIRAT = 4289 constant SYS_MKNODAT (line 298) | SYS_MKNODAT = 4290 constant SYS_FCHOWNAT (line 299) | SYS_FCHOWNAT = 4291 constant SYS_FUTIMESAT (line 300) | SYS_FUTIMESAT = 4292 constant SYS_FSTATAT64 (line 301) | SYS_FSTATAT64 = 4293 constant SYS_UNLINKAT (line 302) | SYS_UNLINKAT = 4294 constant SYS_RENAMEAT (line 303) | SYS_RENAMEAT = 4295 constant SYS_LINKAT (line 304) | SYS_LINKAT = 4296 constant SYS_SYMLINKAT (line 305) | SYS_SYMLINKAT = 4297 constant SYS_READLINKAT (line 306) | SYS_READLINKAT = 4298 constant SYS_FCHMODAT (line 307) | SYS_FCHMODAT = 4299 constant SYS_FACCESSAT (line 308) | SYS_FACCESSAT = 4300 constant SYS_PSELECT6 (line 309) | SYS_PSELECT6 = 4301 constant SYS_PPOLL (line 310) | SYS_PPOLL = 4302 constant SYS_UNSHARE (line 311) | SYS_UNSHARE = 4303 constant SYS_SPLICE (line 312) | SYS_SPLICE = 4304 constant SYS_SYNC_FILE_RANGE (line 313) | SYS_SYNC_FILE_RANGE = 4305 constant SYS_TEE (line 314) | SYS_TEE = 4306 constant SYS_VMSPLICE (line 315) | SYS_VMSPLICE = 4307 constant SYS_MOVE_PAGES (line 316) | SYS_MOVE_PAGES = 4308 constant SYS_SET_ROBUST_LIST (line 317) | SYS_SET_ROBUST_LIST = 4309 constant SYS_GET_ROBUST_LIST (line 318) | SYS_GET_ROBUST_LIST = 4310 constant SYS_KEXEC_LOAD (line 319) | SYS_KEXEC_LOAD = 4311 constant SYS_GETCPU (line 320) | SYS_GETCPU = 4312 constant SYS_EPOLL_PWAIT (line 321) | SYS_EPOLL_PWAIT = 4313 constant SYS_IOPRIO_SET (line 322) | SYS_IOPRIO_SET = 4314 constant SYS_IOPRIO_GET (line 323) | SYS_IOPRIO_GET = 4315 constant SYS_UTIMENSAT (line 324) | SYS_UTIMENSAT = 4316 constant SYS_SIGNALFD (line 325) | SYS_SIGNALFD = 4317 constant SYS_TIMERFD (line 326) | SYS_TIMERFD = 4318 constant SYS_EVENTFD (line 327) | SYS_EVENTFD = 4319 constant SYS_FALLOCATE (line 328) | SYS_FALLOCATE = 4320 constant SYS_TIMERFD_CREATE (line 329) | SYS_TIMERFD_CREATE = 4321 constant SYS_TIMERFD_GETTIME (line 330) | SYS_TIMERFD_GETTIME = 4322 constant SYS_TIMERFD_SETTIME (line 331) | SYS_TIMERFD_SETTIME = 4323 constant SYS_SIGNALFD4 (line 332) | SYS_SIGNALFD4 = 4324 constant SYS_EVENTFD2 (line 333) | SYS_EVENTFD2 = 4325 constant SYS_EPOLL_CREATE1 (line 334) | SYS_EPOLL_CREATE1 = 4326 constant SYS_DUP3 (line 335) | SYS_DUP3 = 4327 constant SYS_PIPE2 (line 336) | SYS_PIPE2 = 4328 constant SYS_INOTIFY_INIT1 (line 337) | SYS_INOTIFY_INIT1 = 4329 constant SYS_PREADV (line 338) | SYS_PREADV = 4330 constant SYS_PWRITEV (line 339) | SYS_PWRITEV = 4331 constant SYS_RT_TGSIGQUEUEINFO (line 340) | SYS_RT_TGSIGQUEUEINFO = 4332 constant SYS_PERF_EVENT_OPEN (line 341) | SYS_PERF_EVENT_OPEN = 4333 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 4334 constant SYS_RECVMMSG (line 343) | SYS_RECVMMSG = 4335 constant SYS_FANOTIFY_INIT (line 344) | SYS_FANOTIFY_INIT = 4336 constant SYS_FANOTIFY_MARK (line 345) | SYS_FANOTIFY_MARK = 4337 constant SYS_PRLIMIT64 (line 346) | SYS_PRLIMIT64 = 4338 constant SYS_NAME_TO_HANDLE_AT (line 347) | SYS_NAME_TO_HANDLE_AT = 4339 constant SYS_OPEN_BY_HANDLE_AT (line 348) | SYS_OPEN_BY_HANDLE_AT = 4340 constant SYS_CLOCK_ADJTIME (line 349) | SYS_CLOCK_ADJTIME = 4341 constant SYS_SYNCFS (line 350) | SYS_SYNCFS = 4342 constant SYS_SENDMMSG (line 351) | SYS_SENDMMSG = 4343 constant SYS_SETNS (line 352) | SYS_SETNS = 4344 constant SYS_PROCESS_VM_READV (line 353) | SYS_PROCESS_VM_READV = 4345 constant SYS_PROCESS_VM_WRITEV (line 354) | SYS_PROCESS_VM_WRITEV = 4346 constant SYS_KCMP (line 355) | SYS_KCMP = 4347 constant SYS_FINIT_MODULE (line 356) | SYS_FINIT_MODULE = 4348 constant SYS_SCHED_SETATTR (line 357) | SYS_SCHED_SETATTR = 4349 constant SYS_SCHED_GETATTR (line 358) | SYS_SCHED_GETATTR = 4350 constant SYS_RENAMEAT2 (line 359) | SYS_RENAMEAT2 = 4351 constant SYS_SECCOMP (line 360) | SYS_SECCOMP = 4352 constant SYS_GETRANDOM (line 361) | SYS_GETRANDOM = 4353 constant SYS_MEMFD_CREATE (line 362) | SYS_MEMFD_CREATE = 4354 constant SYS_BPF (line 363) | SYS_BPF = 4355 constant SYS_EXECVEAT (line 364) | SYS_EXECVEAT = 4356 constant SYS_USERFAULTFD (line 365) | SYS_USERFAULTFD = 4357 constant SYS_MEMBARRIER (line 366) | SYS_MEMBARRIER = 4358 constant SYS_MLOCK2 (line 367) | SYS_MLOCK2 = 4359 constant SYS_COPY_FILE_RANGE (line 368) | SYS_COPY_FILE_RANGE = 4360 constant SYS_PREADV2 (line 369) | SYS_PREADV2 = 4361 constant SYS_PWRITEV2 (line 370) | SYS_PWRITEV2 = 4362 constant SYS_PKEY_MPROTECT (line 371) | SYS_PKEY_MPROTECT = 4363 constant SYS_PKEY_ALLOC (line 372) | SYS_PKEY_ALLOC = 4364 constant SYS_PKEY_FREE (line 373) | SYS_PKEY_FREE = 4365 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go constant SYS_READ (line 9) | SYS_READ = 5000 constant SYS_WRITE (line 10) | SYS_WRITE = 5001 constant SYS_OPEN (line 11) | SYS_OPEN = 5002 constant SYS_CLOSE (line 12) | SYS_CLOSE = 5003 constant SYS_STAT (line 13) | SYS_STAT = 5004 constant SYS_FSTAT (line 14) | SYS_FSTAT = 5005 constant SYS_LSTAT (line 15) | SYS_LSTAT = 5006 constant SYS_POLL (line 16) | SYS_POLL = 5007 constant SYS_LSEEK (line 17) | SYS_LSEEK = 5008 constant SYS_MMAP (line 18) | SYS_MMAP = 5009 constant SYS_MPROTECT (line 19) | SYS_MPROTECT = 5010 constant SYS_MUNMAP (line 20) | SYS_MUNMAP = 5011 constant SYS_BRK (line 21) | SYS_BRK = 5012 constant SYS_RT_SIGACTION (line 22) | SYS_RT_SIGACTION = 5013 constant SYS_RT_SIGPROCMASK (line 23) | SYS_RT_SIGPROCMASK = 5014 constant SYS_IOCTL (line 24) | SYS_IOCTL = 5015 constant SYS_PREAD64 (line 25) | SYS_PREAD64 = 5016 constant SYS_PWRITE64 (line 26) | SYS_PWRITE64 = 5017 constant SYS_READV (line 27) | SYS_READV = 5018 constant SYS_WRITEV (line 28) | SYS_WRITEV = 5019 constant SYS_ACCESS (line 29) | SYS_ACCESS = 5020 constant SYS_PIPE (line 30) | SYS_PIPE = 5021 constant SYS__NEWSELECT (line 31) | SYS__NEWSELECT = 5022 constant SYS_SCHED_YIELD (line 32) | SYS_SCHED_YIELD = 5023 constant SYS_MREMAP (line 33) | SYS_MREMAP = 5024 constant SYS_MSYNC (line 34) | SYS_MSYNC = 5025 constant SYS_MINCORE (line 35) | SYS_MINCORE = 5026 constant SYS_MADVISE (line 36) | SYS_MADVISE = 5027 constant SYS_SHMGET (line 37) | SYS_SHMGET = 5028 constant SYS_SHMAT (line 38) | SYS_SHMAT = 5029 constant SYS_SHMCTL (line 39) | SYS_SHMCTL = 5030 constant SYS_DUP (line 40) | SYS_DUP = 5031 constant SYS_DUP2 (line 41) | SYS_DUP2 = 5032 constant SYS_PAUSE (line 42) | SYS_PAUSE = 5033 constant SYS_NANOSLEEP (line 43) | SYS_NANOSLEEP = 5034 constant SYS_GETITIMER (line 44) | SYS_GETITIMER = 5035 constant SYS_SETITIMER (line 45) | SYS_SETITIMER = 5036 constant SYS_ALARM (line 46) | SYS_ALARM = 5037 constant SYS_GETPID (line 47) | SYS_GETPID = 5038 constant SYS_SENDFILE (line 48) | SYS_SENDFILE = 5039 constant SYS_SOCKET (line 49) | SYS_SOCKET = 5040 constant SYS_CONNECT (line 50) | SYS_CONNECT = 5041 constant SYS_ACCEPT (line 51) | SYS_ACCEPT = 5042 constant SYS_SENDTO (line 52) | SYS_SENDTO = 5043 constant SYS_RECVFROM (line 53) | SYS_RECVFROM = 5044 constant SYS_SENDMSG (line 54) | SYS_SENDMSG = 5045 constant SYS_RECVMSG (line 55) | SYS_RECVMSG = 5046 constant SYS_SHUTDOWN (line 56) | SYS_SHUTDOWN = 5047 constant SYS_BIND (line 57) | SYS_BIND = 5048 constant SYS_LISTEN (line 58) | SYS_LISTEN = 5049 constant SYS_GETSOCKNAME (line 59) | SYS_GETSOCKNAME = 5050 constant SYS_GETPEERNAME (line 60) | SYS_GETPEERNAME = 5051 constant SYS_SOCKETPAIR (line 61) | SYS_SOCKETPAIR = 5052 constant SYS_SETSOCKOPT (line 62) | SYS_SETSOCKOPT = 5053 constant SYS_GETSOCKOPT (line 63) | SYS_GETSOCKOPT = 5054 constant SYS_CLONE (line 64) | SYS_CLONE = 5055 constant SYS_FORK (line 65) | SYS_FORK = 5056 constant SYS_EXECVE (line 66) | SYS_EXECVE = 5057 constant SYS_EXIT (line 67) | SYS_EXIT = 5058 constant SYS_WAIT4 (line 68) | SYS_WAIT4 = 5059 constant SYS_KILL (line 69) | SYS_KILL = 5060 constant SYS_UNAME (line 70) | SYS_UNAME = 5061 constant SYS_SEMGET (line 71) | SYS_SEMGET = 5062 constant SYS_SEMOP (line 72) | SYS_SEMOP = 5063 constant SYS_SEMCTL (line 73) | SYS_SEMCTL = 5064 constant SYS_SHMDT (line 74) | SYS_SHMDT = 5065 constant SYS_MSGGET (line 75) | SYS_MSGGET = 5066 constant SYS_MSGSND (line 76) | SYS_MSGSND = 5067 constant SYS_MSGRCV (line 77) | SYS_MSGRCV = 5068 constant SYS_MSGCTL (line 78) | SYS_MSGCTL = 5069 constant SYS_FCNTL (line 79) | SYS_FCNTL = 5070 constant SYS_FLOCK (line 80) | SYS_FLOCK = 5071 constant SYS_FSYNC (line 81) | SYS_FSYNC = 5072 constant SYS_FDATASYNC (line 82) | SYS_FDATASYNC = 5073 constant SYS_TRUNCATE (line 83) | SYS_TRUNCATE = 5074 constant SYS_FTRUNCATE (line 84) | SYS_FTRUNCATE = 5075 constant SYS_GETDENTS (line 85) | SYS_GETDENTS = 5076 constant SYS_GETCWD (line 86) | SYS_GETCWD = 5077 constant SYS_CHDIR (line 87) | SYS_CHDIR = 5078 constant SYS_FCHDIR (line 88) | SYS_FCHDIR = 5079 constant SYS_RENAME (line 89) | SYS_RENAME = 5080 constant SYS_MKDIR (line 90) | SYS_MKDIR = 5081 constant SYS_RMDIR (line 91) | SYS_RMDIR = 5082 constant SYS_CREAT (line 92) | SYS_CREAT = 5083 constant SYS_LINK (line 93) | SYS_LINK = 5084 constant SYS_UNLINK (line 94) | SYS_UNLINK = 5085 constant SYS_SYMLINK (line 95) | SYS_SYMLINK = 5086 constant SYS_READLINK (line 96) | SYS_READLINK = 5087 constant SYS_CHMOD (line 97) | SYS_CHMOD = 5088 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 5089 constant SYS_CHOWN (line 99) | SYS_CHOWN = 5090 constant SYS_FCHOWN (line 100) | SYS_FCHOWN = 5091 constant SYS_LCHOWN (line 101) | SYS_LCHOWN = 5092 constant SYS_UMASK (line 102) | SYS_UMASK = 5093 constant SYS_GETTIMEOFDAY (line 103) | SYS_GETTIMEOFDAY = 5094 constant SYS_GETRLIMIT (line 104) | SYS_GETRLIMIT = 5095 constant SYS_GETRUSAGE (line 105) | SYS_GETRUSAGE = 5096 constant SYS_SYSINFO (line 106) | SYS_SYSINFO = 5097 constant SYS_TIMES (line 107) | SYS_TIMES = 5098 constant SYS_PTRACE (line 108) | SYS_PTRACE = 5099 constant SYS_GETUID (line 109) | SYS_GETUID = 5100 constant SYS_SYSLOG (line 110) | SYS_SYSLOG = 5101 constant SYS_GETGID (line 111) | SYS_GETGID = 5102 constant SYS_SETUID (line 112) | SYS_SETUID = 5103 constant SYS_SETGID (line 113) | SYS_SETGID = 5104 constant SYS_GETEUID (line 114) | SYS_GETEUID = 5105 constant SYS_GETEGID (line 115) | SYS_GETEGID = 5106 constant SYS_SETPGID (line 116) | SYS_SETPGID = 5107 constant SYS_GETPPID (line 117) | SYS_GETPPID = 5108 constant SYS_GETPGRP (line 118) | SYS_GETPGRP = 5109 constant SYS_SETSID (line 119) | SYS_SETSID = 5110 constant SYS_SETREUID (line 120) | SYS_SETREUID = 5111 constant SYS_SETREGID (line 121) | SYS_SETREGID = 5112 constant SYS_GETGROUPS (line 122) | SYS_GETGROUPS = 5113 constant SYS_SETGROUPS (line 123) | SYS_SETGROUPS = 5114 constant SYS_SETRESUID (line 124) | SYS_SETRESUID = 5115 constant SYS_GETRESUID (line 125) | SYS_GETRESUID = 5116 constant SYS_SETRESGID (line 126) | SYS_SETRESGID = 5117 constant SYS_GETRESGID (line 127) | SYS_GETRESGID = 5118 constant SYS_GETPGID (line 128) | SYS_GETPGID = 5119 constant SYS_SETFSUID (line 129) | SYS_SETFSUID = 5120 constant SYS_SETFSGID (line 130) | SYS_SETFSGID = 5121 constant SYS_GETSID (line 131) | SYS_GETSID = 5122 constant SYS_CAPGET (line 132) | SYS_CAPGET = 5123 constant SYS_CAPSET (line 133) | SYS_CAPSET = 5124 constant SYS_RT_SIGPENDING (line 134) | SYS_RT_SIGPENDING = 5125 constant SYS_RT_SIGTIMEDWAIT (line 135) | SYS_RT_SIGTIMEDWAIT = 5126 constant SYS_RT_SIGQUEUEINFO (line 136) | SYS_RT_SIGQUEUEINFO = 5127 constant SYS_RT_SIGSUSPEND (line 137) | SYS_RT_SIGSUSPEND = 5128 constant SYS_SIGALTSTACK (line 138) | SYS_SIGALTSTACK = 5129 constant SYS_UTIME (line 139) | SYS_UTIME = 5130 constant SYS_MKNOD (line 140) | SYS_MKNOD = 5131 constant SYS_PERSONALITY (line 141) | SYS_PERSONALITY = 5132 constant SYS_USTAT (line 142) | SYS_USTAT = 5133 constant SYS_STATFS (line 143) | SYS_STATFS = 5134 constant SYS_FSTATFS (line 144) | SYS_FSTATFS = 5135 constant SYS_SYSFS (line 145) | SYS_SYSFS = 5136 constant SYS_GETPRIORITY (line 146) | SYS_GETPRIORITY = 5137 constant SYS_SETPRIORITY (line 147) | SYS_SETPRIORITY = 5138 constant SYS_SCHED_SETPARAM (line 148) | SYS_SCHED_SETPARAM = 5139 constant SYS_SCHED_GETPARAM (line 149) | SYS_SCHED_GETPARAM = 5140 constant SYS_SCHED_SETSCHEDULER (line 150) | SYS_SCHED_SETSCHEDULER = 5141 constant SYS_SCHED_GETSCHEDULER (line 151) | SYS_SCHED_GETSCHEDULER = 5142 constant SYS_SCHED_GET_PRIORITY_MAX (line 152) | SYS_SCHED_GET_PRIORITY_MAX = 5143 constant SYS_SCHED_GET_PRIORITY_MIN (line 153) | SYS_SCHED_GET_PRIORITY_MIN = 5144 constant SYS_SCHED_RR_GET_INTERVAL (line 154) | SYS_SCHED_RR_GET_INTERVAL = 5145 constant SYS_MLOCK (line 155) | SYS_MLOCK = 5146 constant SYS_MUNLOCK (line 156) | SYS_MUNLOCK = 5147 constant SYS_MLOCKALL (line 157) | SYS_MLOCKALL = 5148 constant SYS_MUNLOCKALL (line 158) | SYS_MUNLOCKALL = 5149 constant SYS_VHANGUP (line 159) | SYS_VHANGUP = 5150 constant SYS_PIVOT_ROOT (line 160) | SYS_PIVOT_ROOT = 5151 constant SYS__SYSCTL (line 161) | SYS__SYSCTL = 5152 constant SYS_PRCTL (line 162) | SYS_PRCTL = 5153 constant SYS_ADJTIMEX (line 163) | SYS_ADJTIMEX = 5154 constant SYS_SETRLIMIT (line 164) | SYS_SETRLIMIT = 5155 constant SYS_CHROOT (line 165) | SYS_CHROOT = 5156 constant SYS_SYNC (line 166) | SYS_SYNC = 5157 constant SYS_ACCT (line 167) | SYS_ACCT = 5158 constant SYS_SETTIMEOFDAY (line 168) | SYS_SETTIMEOFDAY = 5159 constant SYS_MOUNT (line 169) | SYS_MOUNT = 5160 constant SYS_UMOUNT2 (line 170) | SYS_UMOUNT2 = 5161 constant SYS_SWAPON (line 171) | SYS_SWAPON = 5162 constant SYS_SWAPOFF (line 172) | SYS_SWAPOFF = 5163 constant SYS_REBOOT (line 173) | SYS_REBOOT = 5164 constant SYS_SETHOSTNAME (line 174) | SYS_SETHOSTNAME = 5165 constant SYS_SETDOMAINNAME (line 175) | SYS_SETDOMAINNAME = 5166 constant SYS_CREATE_MODULE (line 176) | SYS_CREATE_MODULE = 5167 constant SYS_INIT_MODULE (line 177) | SYS_INIT_MODULE = 5168 constant SYS_DELETE_MODULE (line 178) | SYS_DELETE_MODULE = 5169 constant SYS_GET_KERNEL_SYMS (line 179) | SYS_GET_KERNEL_SYMS = 5170 constant SYS_QUERY_MODULE (line 180) | SYS_QUERY_MODULE = 5171 constant SYS_QUOTACTL (line 181) | SYS_QUOTACTL = 5172 constant SYS_NFSSERVCTL (line 182) | SYS_NFSSERVCTL = 5173 constant SYS_GETPMSG (line 183) | SYS_GETPMSG = 5174 constant SYS_PUTPMSG (line 184) | SYS_PUTPMSG = 5175 constant SYS_AFS_SYSCALL (line 185) | SYS_AFS_SYSCALL = 5176 constant SYS_RESERVED177 (line 186) | SYS_RESERVED177 = 5177 constant SYS_GETTID (line 187) | SYS_GETTID = 5178 constant SYS_READAHEAD (line 188) | SYS_READAHEAD = 5179 constant SYS_SETXATTR (line 189) | SYS_SETXATTR = 5180 constant SYS_LSETXATTR (line 190) | SYS_LSETXATTR = 5181 constant SYS_FSETXATTR (line 191) | SYS_FSETXATTR = 5182 constant SYS_GETXATTR (line 192) | SYS_GETXATTR = 5183 constant SYS_LGETXATTR (line 193) | SYS_LGETXATTR = 5184 constant SYS_FGETXATTR (line 194) | SYS_FGETXATTR = 5185 constant SYS_LISTXATTR (line 195) | SYS_LISTXATTR = 5186 constant SYS_LLISTXATTR (line 196) | SYS_LLISTXATTR = 5187 constant SYS_FLISTXATTR (line 197) | SYS_FLISTXATTR = 5188 constant SYS_REMOVEXATTR (line 198) | SYS_REMOVEXATTR = 5189 constant SYS_LREMOVEXATTR (line 199) | SYS_LREMOVEXATTR = 5190 constant SYS_FREMOVEXATTR (line 200) | SYS_FREMOVEXATTR = 5191 constant SYS_TKILL (line 201) | SYS_TKILL = 5192 constant SYS_RESERVED193 (line 202) | SYS_RESERVED193 = 5193 constant SYS_FUTEX (line 203) | SYS_FUTEX = 5194 constant SYS_SCHED_SETAFFINITY (line 204) | SYS_SCHED_SETAFFINITY = 5195 constant SYS_SCHED_GETAFFINITY (line 205) | SYS_SCHED_GETAFFINITY = 5196 constant SYS_CACHEFLUSH (line 206) | SYS_CACHEFLUSH = 5197 constant SYS_CACHECTL (line 207) | SYS_CACHECTL = 5198 constant SYS_SYSMIPS (line 208) | SYS_SYSMIPS = 5199 constant SYS_IO_SETUP (line 209) | SYS_IO_SETUP = 5200 constant SYS_IO_DESTROY (line 210) | SYS_IO_DESTROY = 5201 constant SYS_IO_GETEVENTS (line 211) | SYS_IO_GETEVENTS = 5202 constant SYS_IO_SUBMIT (line 212) | SYS_IO_SUBMIT = 5203 constant SYS_IO_CANCEL (line 213) | SYS_IO_CANCEL = 5204 constant SYS_EXIT_GROUP (line 214) | SYS_EXIT_GROUP = 5205 constant SYS_LOOKUP_DCOOKIE (line 215) | SYS_LOOKUP_DCOOKIE = 5206 constant SYS_EPOLL_CREATE (line 216) | SYS_EPOLL_CREATE = 5207 constant SYS_EPOLL_CTL (line 217) | SYS_EPOLL_CTL = 5208 constant SYS_EPOLL_WAIT (line 218) | SYS_EPOLL_WAIT = 5209 constant SYS_REMAP_FILE_PAGES (line 219) | SYS_REMAP_FILE_PAGES = 5210 constant SYS_RT_SIGRETURN (line 220) | SYS_RT_SIGRETURN = 5211 constant SYS_SET_TID_ADDRESS (line 221) | SYS_SET_TID_ADDRESS = 5212 constant SYS_RESTART_SYSCALL (line 222) | SYS_RESTART_SYSCALL = 5213 constant SYS_SEMTIMEDOP (line 223) | SYS_SEMTIMEDOP = 5214 constant SYS_FADVISE64 (line 224) | SYS_FADVISE64 = 5215 constant SYS_TIMER_CREATE (line 225) | SYS_TIMER_CREATE = 5216 constant SYS_TIMER_SETTIME (line 226) | SYS_TIMER_SETTIME = 5217 constant SYS_TIMER_GETTIME (line 227) | SYS_TIMER_GETTIME = 5218 constant SYS_TIMER_GETOVERRUN (line 228) | SYS_TIMER_GETOVERRUN = 5219 constant SYS_TIMER_DELETE (line 229) | SYS_TIMER_DELETE = 5220 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 5221 constant SYS_CLOCK_GETTIME (line 231) | SYS_CLOCK_GETTIME = 5222 constant SYS_CLOCK_GETRES (line 232) | SYS_CLOCK_GETRES = 5223 constant SYS_CLOCK_NANOSLEEP (line 233) | SYS_CLOCK_NANOSLEEP = 5224 constant SYS_TGKILL (line 234) | SYS_TGKILL = 5225 constant SYS_UTIMES (line 235) | SYS_UTIMES = 5226 constant SYS_MBIND (line 236) | SYS_MBIND = 5227 constant SYS_GET_MEMPOLICY (line 237) | SYS_GET_MEMPOLICY = 5228 constant SYS_SET_MEMPOLICY (line 238) | SYS_SET_MEMPOLICY = 5229 constant SYS_MQ_OPEN (line 239) | SYS_MQ_OPEN = 5230 constant SYS_MQ_UNLINK (line 240) | SYS_MQ_UNLINK = 5231 constant SYS_MQ_TIMEDSEND (line 241) | SYS_MQ_TIMEDSEND = 5232 constant SYS_MQ_TIMEDRECEIVE (line 242) | SYS_MQ_TIMEDRECEIVE = 5233 constant SYS_MQ_NOTIFY (line 243) | SYS_MQ_NOTIFY = 5234 constant SYS_MQ_GETSETATTR (line 244) | SYS_MQ_GETSETATTR = 5235 constant SYS_VSERVER (line 245) | SYS_VSERVER = 5236 constant SYS_WAITID (line 246) | SYS_WAITID = 5237 constant SYS_ADD_KEY (line 247) | SYS_ADD_KEY = 5239 constant SYS_REQUEST_KEY (line 248) | SYS_REQUEST_KEY = 5240 constant SYS_KEYCTL (line 249) | SYS_KEYCTL = 5241 constant SYS_SET_THREAD_AREA (line 250) | SYS_SET_THREAD_AREA = 5242 constant SYS_INOTIFY_INIT (line 251) | SYS_INOTIFY_INIT = 5243 constant SYS_INOTIFY_ADD_WATCH (line 252) | SYS_INOTIFY_ADD_WATCH = 5244 constant SYS_INOTIFY_RM_WATCH (line 253) | SYS_INOTIFY_RM_WATCH = 5245 constant SYS_MIGRATE_PAGES (line 254) | SYS_MIGRATE_PAGES = 5246 constant SYS_OPENAT (line 255) | SYS_OPENAT = 5247 constant SYS_MKDIRAT (line 256) | SYS_MKDIRAT = 5248 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 5249 constant SYS_FCHOWNAT (line 258) | SYS_FCHOWNAT = 5250 constant SYS_FUTIMESAT (line 259) | SYS_FUTIMESAT = 5251 constant SYS_NEWFSTATAT (line 260) | SYS_NEWFSTATAT = 5252 constant SYS_UNLINKAT (line 261) | SYS_UNLINKAT = 5253 constant SYS_RENAMEAT (line 262) | SYS_RENAMEAT = 5254 constant SYS_LINKAT (line 263) | SYS_LINKAT = 5255 constant SYS_SYMLINKAT (line 264) | SYS_SYMLINKAT = 5256 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 5257 constant SYS_FCHMODAT (line 266) | SYS_FCHMODAT = 5258 constant SYS_FACCESSAT (line 267) | SYS_FACCESSAT = 5259 constant SYS_PSELECT6 (line 268) | SYS_PSELECT6 = 5260 constant SYS_PPOLL (line 269) | SYS_PPOLL = 5261 constant SYS_UNSHARE (line 270) | SYS_UNSHARE = 5262 constant SYS_SPLICE (line 271) | SYS_SPLICE = 5263 constant SYS_SYNC_FILE_RANGE (line 272) | SYS_SYNC_FILE_RANGE = 5264 constant SYS_TEE (line 273) | SYS_TEE = 5265 constant SYS_VMSPLICE (line 274) | SYS_VMSPLICE = 5266 constant SYS_MOVE_PAGES (line 275) | SYS_MOVE_PAGES = 5267 constant SYS_SET_ROBUST_LIST (line 276) | SYS_SET_ROBUST_LIST = 5268 constant SYS_GET_ROBUST_LIST (line 277) | SYS_GET_ROBUST_LIST = 5269 constant SYS_KEXEC_LOAD (line 278) | SYS_KEXEC_LOAD = 5270 constant SYS_GETCPU (line 279) | SYS_GETCPU = 5271 constant SYS_EPOLL_PWAIT (line 280) | SYS_EPOLL_PWAIT = 5272 constant SYS_IOPRIO_SET (line 281) | SYS_IOPRIO_SET = 5273 constant SYS_IOPRIO_GET (line 282) | SYS_IOPRIO_GET = 5274 constant SYS_UTIMENSAT (line 283) | SYS_UTIMENSAT = 5275 constant SYS_SIGNALFD (line 284) | SYS_SIGNALFD = 5276 constant SYS_TIMERFD (line 285) | SYS_TIMERFD = 5277 constant SYS_EVENTFD (line 286) | SYS_EVENTFD = 5278 constant SYS_FALLOCATE (line 287) | SYS_FALLOCATE = 5279 constant SYS_TIMERFD_CREATE (line 288) | SYS_TIMERFD_CREATE = 5280 constant SYS_TIMERFD_GETTIME (line 289) | SYS_TIMERFD_GETTIME = 5281 constant SYS_TIMERFD_SETTIME (line 290) | SYS_TIMERFD_SETTIME = 5282 constant SYS_SIGNALFD4 (line 291) | SYS_SIGNALFD4 = 5283 constant SYS_EVENTFD2 (line 292) | SYS_EVENTFD2 = 5284 constant SYS_EPOLL_CREATE1 (line 293) | SYS_EPOLL_CREATE1 = 5285 constant SYS_DUP3 (line 294) | SYS_DUP3 = 5286 constant SYS_PIPE2 (line 295) | SYS_PIPE2 = 5287 constant SYS_INOTIFY_INIT1 (line 296) | SYS_INOTIFY_INIT1 = 5288 constant SYS_PREADV (line 297) | SYS_PREADV = 5289 constant SYS_PWRITEV (line 298) | SYS_PWRITEV = 5290 constant SYS_RT_TGSIGQUEUEINFO (line 299) | SYS_RT_TGSIGQUEUEINFO = 5291 constant SYS_PERF_EVENT_OPEN (line 300) | SYS_PERF_EVENT_OPEN = 5292 constant SYS_ACCEPT4 (line 301) | SYS_ACCEPT4 = 5293 constant SYS_RECVMMSG (line 302) | SYS_RECVMMSG = 5294 constant SYS_FANOTIFY_INIT (line 303) | SYS_FANOTIFY_INIT = 5295 constant SYS_FANOTIFY_MARK (line 304) | SYS_FANOTIFY_MARK = 5296 constant SYS_PRLIMIT64 (line 305) | SYS_PRLIMIT64 = 5297 constant SYS_NAME_TO_HANDLE_AT (line 306) | SYS_NAME_TO_HANDLE_AT = 5298 constant SYS_OPEN_BY_HANDLE_AT (line 307) | SYS_OPEN_BY_HANDLE_AT = 5299 constant SYS_CLOCK_ADJTIME (line 308) | SYS_CLOCK_ADJTIME = 5300 constant SYS_SYNCFS (line 309) | SYS_SYNCFS = 5301 constant SYS_SENDMMSG (line 310) | SYS_SENDMMSG = 5302 constant SYS_SETNS (line 311) | SYS_SETNS = 5303 constant SYS_PROCESS_VM_READV (line 312) | SYS_PROCESS_VM_READV = 5304 constant SYS_PROCESS_VM_WRITEV (line 313) | SYS_PROCESS_VM_WRITEV = 5305 constant SYS_KCMP (line 314) | SYS_KCMP = 5306 constant SYS_FINIT_MODULE (line 315) | SYS_FINIT_MODULE = 5307 constant SYS_GETDENTS64 (line 316) | SYS_GETDENTS64 = 5308 constant SYS_SCHED_SETATTR (line 317) | SYS_SCHED_SETATTR = 5309 constant SYS_SCHED_GETATTR (line 318) | SYS_SCHED_GETATTR = 5310 constant SYS_RENAMEAT2 (line 319) | SYS_RENAMEAT2 = 5311 constant SYS_SECCOMP (line 320) | SYS_SECCOMP = 5312 constant SYS_GETRANDOM (line 321) | SYS_GETRANDOM = 5313 constant SYS_MEMFD_CREATE (line 322) | SYS_MEMFD_CREATE = 5314 constant SYS_BPF (line 323) | SYS_BPF = 5315 constant SYS_EXECVEAT (line 324) | SYS_EXECVEAT = 5316 constant SYS_USERFAULTFD (line 325) | SYS_USERFAULTFD = 5317 constant SYS_MEMBARRIER (line 326) | SYS_MEMBARRIER = 5318 constant SYS_MLOCK2 (line 327) | SYS_MLOCK2 = 5319 constant SYS_COPY_FILE_RANGE (line 328) | SYS_COPY_FILE_RANGE = 5320 constant SYS_PREADV2 (line 329) | SYS_PREADV2 = 5321 constant SYS_PWRITEV2 (line 330) | SYS_PWRITEV2 = 5322 constant SYS_PKEY_MPROTECT (line 331) | SYS_PKEY_MPROTECT = 5323 constant SYS_PKEY_ALLOC (line 332) | SYS_PKEY_ALLOC = 5324 constant SYS_PKEY_FREE (line 333) | SYS_PKEY_FREE = 5325 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go constant SYS_READ (line 9) | SYS_READ = 5000 constant SYS_WRITE (line 10) | SYS_WRITE = 5001 constant SYS_OPEN (line 11) | SYS_OPEN = 5002 constant SYS_CLOSE (line 12) | SYS_CLOSE = 5003 constant SYS_STAT (line 13) | SYS_STAT = 5004 constant SYS_FSTAT (line 14) | SYS_FSTAT = 5005 constant SYS_LSTAT (line 15) | SYS_LSTAT = 5006 constant SYS_POLL (line 16) | SYS_POLL = 5007 constant SYS_LSEEK (line 17) | SYS_LSEEK = 5008 constant SYS_MMAP (line 18) | SYS_MMAP = 5009 constant SYS_MPROTECT (line 19) | SYS_MPROTECT = 5010 constant SYS_MUNMAP (line 20) | SYS_MUNMAP = 5011 constant SYS_BRK (line 21) | SYS_BRK = 5012 constant SYS_RT_SIGACTION (line 22) | SYS_RT_SIGACTION = 5013 constant SYS_RT_SIGPROCMASK (line 23) | SYS_RT_SIGPROCMASK = 5014 constant SYS_IOCTL (line 24) | SYS_IOCTL = 5015 constant SYS_PREAD64 (line 25) | SYS_PREAD64 = 5016 constant SYS_PWRITE64 (line 26) | SYS_PWRITE64 = 5017 constant SYS_READV (line 27) | SYS_READV = 5018 constant SYS_WRITEV (line 28) | SYS_WRITEV = 5019 constant SYS_ACCESS (line 29) | SYS_ACCESS = 5020 constant SYS_PIPE (line 30) | SYS_PIPE = 5021 constant SYS__NEWSELECT (line 31) | SYS__NEWSELECT = 5022 constant SYS_SCHED_YIELD (line 32) | SYS_SCHED_YIELD = 5023 constant SYS_MREMAP (line 33) | SYS_MREMAP = 5024 constant SYS_MSYNC (line 34) | SYS_MSYNC = 5025 constant SYS_MINCORE (line 35) | SYS_MINCORE = 5026 constant SYS_MADVISE (line 36) | SYS_MADVISE = 5027 constant SYS_SHMGET (line 37) | SYS_SHMGET = 5028 constant SYS_SHMAT (line 38) | SYS_SHMAT = 5029 constant SYS_SHMCTL (line 39) | SYS_SHMCTL = 5030 constant SYS_DUP (line 40) | SYS_DUP = 5031 constant SYS_DUP2 (line 41) | SYS_DUP2 = 5032 constant SYS_PAUSE (line 42) | SYS_PAUSE = 5033 constant SYS_NANOSLEEP (line 43) | SYS_NANOSLEEP = 5034 constant SYS_GETITIMER (line 44) | SYS_GETITIMER = 5035 constant SYS_SETITIMER (line 45) | SYS_SETITIMER = 5036 constant SYS_ALARM (line 46) | SYS_ALARM = 5037 constant SYS_GETPID (line 47) | SYS_GETPID = 5038 constant SYS_SENDFILE (line 48) | SYS_SENDFILE = 5039 constant SYS_SOCKET (line 49) | SYS_SOCKET = 5040 constant SYS_CONNECT (line 50) | SYS_CONNECT = 5041 constant SYS_ACCEPT (line 51) | SYS_ACCEPT = 5042 constant SYS_SENDTO (line 52) | SYS_SENDTO = 5043 constant SYS_RECVFROM (line 53) | SYS_RECVFROM = 5044 constant SYS_SENDMSG (line 54) | SYS_SENDMSG = 5045 constant SYS_RECVMSG (line 55) | SYS_RECVMSG = 5046 constant SYS_SHUTDOWN (line 56) | SYS_SHUTDOWN = 5047 constant SYS_BIND (line 57) | SYS_BIND = 5048 constant SYS_LISTEN (line 58) | SYS_LISTEN = 5049 constant SYS_GETSOCKNAME (line 59) | SYS_GETSOCKNAME = 5050 constant SYS_GETPEERNAME (line 60) | SYS_GETPEERNAME = 5051 constant SYS_SOCKETPAIR (line 61) | SYS_SOCKETPAIR = 5052 constant SYS_SETSOCKOPT (line 62) | SYS_SETSOCKOPT = 5053 constant SYS_GETSOCKOPT (line 63) | SYS_GETSOCKOPT = 5054 constant SYS_CLONE (line 64) | SYS_CLONE = 5055 constant SYS_FORK (line 65) | SYS_FORK = 5056 constant SYS_EXECVE (line 66) | SYS_EXECVE = 5057 constant SYS_EXIT (line 67) | SYS_EXIT = 5058 constant SYS_WAIT4 (line 68) | SYS_WAIT4 = 5059 constant SYS_KILL (line 69) | SYS_KILL = 5060 constant SYS_UNAME (line 70) | SYS_UNAME = 5061 constant SYS_SEMGET (line 71) | SYS_SEMGET = 5062 constant SYS_SEMOP (line 72) | SYS_SEMOP = 5063 constant SYS_SEMCTL (line 73) | SYS_SEMCTL = 5064 constant SYS_SHMDT (line 74) | SYS_SHMDT = 5065 constant SYS_MSGGET (line 75) | SYS_MSGGET = 5066 constant SYS_MSGSND (line 76) | SYS_MSGSND = 5067 constant SYS_MSGRCV (line 77) | SYS_MSGRCV = 5068 constant SYS_MSGCTL (line 78) | SYS_MSGCTL = 5069 constant SYS_FCNTL (line 79) | SYS_FCNTL = 5070 constant SYS_FLOCK (line 80) | SYS_FLOCK = 5071 constant SYS_FSYNC (line 81) | SYS_FSYNC = 5072 constant SYS_FDATASYNC (line 82) | SYS_FDATASYNC = 5073 constant SYS_TRUNCATE (line 83) | SYS_TRUNCATE = 5074 constant SYS_FTRUNCATE (line 84) | SYS_FTRUNCATE = 5075 constant SYS_GETDENTS (line 85) | SYS_GETDENTS = 5076 constant SYS_GETCWD (line 86) | SYS_GETCWD = 5077 constant SYS_CHDIR (line 87) | SYS_CHDIR = 5078 constant SYS_FCHDIR (line 88) | SYS_FCHDIR = 5079 constant SYS_RENAME (line 89) | SYS_RENAME = 5080 constant SYS_MKDIR (line 90) | SYS_MKDIR = 5081 constant SYS_RMDIR (line 91) | SYS_RMDIR = 5082 constant SYS_CREAT (line 92) | SYS_CREAT = 5083 constant SYS_LINK (line 93) | SYS_LINK = 5084 constant SYS_UNLINK (line 94) | SYS_UNLINK = 5085 constant SYS_SYMLINK (line 95) | SYS_SYMLINK = 5086 constant SYS_READLINK (line 96) | SYS_READLINK = 5087 constant SYS_CHMOD (line 97) | SYS_CHMOD = 5088 constant SYS_FCHMOD (line 98) | SYS_FCHMOD = 5089 constant SYS_CHOWN (line 99) | SYS_CHOWN = 5090 constant SYS_FCHOWN (line 100) | SYS_FCHOWN = 5091 constant SYS_LCHOWN (line 101) | SYS_LCHOWN = 5092 constant SYS_UMASK (line 102) | SYS_UMASK = 5093 constant SYS_GETTIMEOFDAY (line 103) | SYS_GETTIMEOFDAY = 5094 constant SYS_GETRLIMIT (line 104) | SYS_GETRLIMIT = 5095 constant SYS_GETRUSAGE (line 105) | SYS_GETRUSAGE = 5096 constant SYS_SYSINFO (line 106) | SYS_SYSINFO = 5097 constant SYS_TIMES (line 107) | SYS_TIMES = 5098 constant SYS_PTRACE (line 108) | SYS_PTRACE = 5099 constant SYS_GETUID (line 109) | SYS_GETUID = 5100 constant SYS_SYSLOG (line 110) | SYS_SYSLOG = 5101 constant SYS_GETGID (line 111) | SYS_GETGID = 5102 constant SYS_SETUID (line 112) | SYS_SETUID = 5103 constant SYS_SETGID (line 113) | SYS_SETGID = 5104 constant SYS_GETEUID (line 114) | SYS_GETEUID = 5105 constant SYS_GETEGID (line 115) | SYS_GETEGID = 5106 constant SYS_SETPGID (line 116) | SYS_SETPGID = 5107 constant SYS_GETPPID (line 117) | SYS_GETPPID = 5108 constant SYS_GETPGRP (line 118) | SYS_GETPGRP = 5109 constant SYS_SETSID (line 119) | SYS_SETSID = 5110 constant SYS_SETREUID (line 120) | SYS_SETREUID = 5111 constant SYS_SETREGID (line 121) | SYS_SETREGID = 5112 constant SYS_GETGROUPS (line 122) | SYS_GETGROUPS = 5113 constant SYS_SETGROUPS (line 123) | SYS_SETGROUPS = 5114 constant SYS_SETRESUID (line 124) | SYS_SETRESUID = 5115 constant SYS_GETRESUID (line 125) | SYS_GETRESUID = 5116 constant SYS_SETRESGID (line 126) | SYS_SETRESGID = 5117 constant SYS_GETRESGID (line 127) | SYS_GETRESGID = 5118 constant SYS_GETPGID (line 128) | SYS_GETPGID = 5119 constant SYS_SETFSUID (line 129) | SYS_SETFSUID = 5120 constant SYS_SETFSGID (line 130) | SYS_SETFSGID = 5121 constant SYS_GETSID (line 131) | SYS_GETSID = 5122 constant SYS_CAPGET (line 132) | SYS_CAPGET = 5123 constant SYS_CAPSET (line 133) | SYS_CAPSET = 5124 constant SYS_RT_SIGPENDING (line 134) | SYS_RT_SIGPENDING = 5125 constant SYS_RT_SIGTIMEDWAIT (line 135) | SYS_RT_SIGTIMEDWAIT = 5126 constant SYS_RT_SIGQUEUEINFO (line 136) | SYS_RT_SIGQUEUEINFO = 5127 constant SYS_RT_SIGSUSPEND (line 137) | SYS_RT_SIGSUSPEND = 5128 constant SYS_SIGALTSTACK (line 138) | SYS_SIGALTSTACK = 5129 constant SYS_UTIME (line 139) | SYS_UTIME = 5130 constant SYS_MKNOD (line 140) | SYS_MKNOD = 5131 constant SYS_PERSONALITY (line 141) | SYS_PERSONALITY = 5132 constant SYS_USTAT (line 142) | SYS_USTAT = 5133 constant SYS_STATFS (line 143) | SYS_STATFS = 5134 constant SYS_FSTATFS (line 144) | SYS_FSTATFS = 5135 constant SYS_SYSFS (line 145) | SYS_SYSFS = 5136 constant SYS_GETPRIORITY (line 146) | SYS_GETPRIORITY = 5137 constant SYS_SETPRIORITY (line 147) | SYS_SETPRIORITY = 5138 constant SYS_SCHED_SETPARAM (line 148) | SYS_SCHED_SETPARAM = 5139 constant SYS_SCHED_GETPARAM (line 149) | SYS_SCHED_GETPARAM = 5140 constant SYS_SCHED_SETSCHEDULER (line 150) | SYS_SCHED_SETSCHEDULER = 5141 constant SYS_SCHED_GETSCHEDULER (line 151) | SYS_SCHED_GETSCHEDULER = 5142 constant SYS_SCHED_GET_PRIORITY_MAX (line 152) | SYS_SCHED_GET_PRIORITY_MAX = 5143 constant SYS_SCHED_GET_PRIORITY_MIN (line 153) | SYS_SCHED_GET_PRIORITY_MIN = 5144 constant SYS_SCHED_RR_GET_INTERVAL (line 154) | SYS_SCHED_RR_GET_INTERVAL = 5145 constant SYS_MLOCK (line 155) | SYS_MLOCK = 5146 constant SYS_MUNLOCK (line 156) | SYS_MUNLOCK = 5147 constant SYS_MLOCKALL (line 157) | SYS_MLOCKALL = 5148 constant SYS_MUNLOCKALL (line 158) | SYS_MUNLOCKALL = 5149 constant SYS_VHANGUP (line 159) | SYS_VHANGUP = 5150 constant SYS_PIVOT_ROOT (line 160) | SYS_PIVOT_ROOT = 5151 constant SYS__SYSCTL (line 161) | SYS__SYSCTL = 5152 constant SYS_PRCTL (line 162) | SYS_PRCTL = 5153 constant SYS_ADJTIMEX (line 163) | SYS_ADJTIMEX = 5154 constant SYS_SETRLIMIT (line 164) | SYS_SETRLIMIT = 5155 constant SYS_CHROOT (line 165) | SYS_CHROOT = 5156 constant SYS_SYNC (line 166) | SYS_SYNC = 5157 constant SYS_ACCT (line 167) | SYS_ACCT = 5158 constant SYS_SETTIMEOFDAY (line 168) | SYS_SETTIMEOFDAY = 5159 constant SYS_MOUNT (line 169) | SYS_MOUNT = 5160 constant SYS_UMOUNT2 (line 170) | SYS_UMOUNT2 = 5161 constant SYS_SWAPON (line 171) | SYS_SWAPON = 5162 constant SYS_SWAPOFF (line 172) | SYS_SWAPOFF = 5163 constant SYS_REBOOT (line 173) | SYS_REBOOT = 5164 constant SYS_SETHOSTNAME (line 174) | SYS_SETHOSTNAME = 5165 constant SYS_SETDOMAINNAME (line 175) | SYS_SETDOMAINNAME = 5166 constant SYS_CREATE_MODULE (line 176) | SYS_CREATE_MODULE = 5167 constant SYS_INIT_MODULE (line 177) | SYS_INIT_MODULE = 5168 constant SYS_DELETE_MODULE (line 178) | SYS_DELETE_MODULE = 5169 constant SYS_GET_KERNEL_SYMS (line 179) | SYS_GET_KERNEL_SYMS = 5170 constant SYS_QUERY_MODULE (line 180) | SYS_QUERY_MODULE = 5171 constant SYS_QUOTACTL (line 181) | SYS_QUOTACTL = 5172 constant SYS_NFSSERVCTL (line 182) | SYS_NFSSERVCTL = 5173 constant SYS_GETPMSG (line 183) | SYS_GETPMSG = 5174 constant SYS_PUTPMSG (line 184) | SYS_PUTPMSG = 5175 constant SYS_AFS_SYSCALL (line 185) | SYS_AFS_SYSCALL = 5176 constant SYS_RESERVED177 (line 186) | SYS_RESERVED177 = 5177 constant SYS_GETTID (line 187) | SYS_GETTID = 5178 constant SYS_READAHEAD (line 188) | SYS_READAHEAD = 5179 constant SYS_SETXATTR (line 189) | SYS_SETXATTR = 5180 constant SYS_LSETXATTR (line 190) | SYS_LSETXATTR = 5181 constant SYS_FSETXATTR (line 191) | SYS_FSETXATTR = 5182 constant SYS_GETXATTR (line 192) | SYS_GETXATTR = 5183 constant SYS_LGETXATTR (line 193) | SYS_LGETXATTR = 5184 constant SYS_FGETXATTR (line 194) | SYS_FGETXATTR = 5185 constant SYS_LISTXATTR (line 195) | SYS_LISTXATTR = 5186 constant SYS_LLISTXATTR (line 196) | SYS_LLISTXATTR = 5187 constant SYS_FLISTXATTR (line 197) | SYS_FLISTXATTR = 5188 constant SYS_REMOVEXATTR (line 198) | SYS_REMOVEXATTR = 5189 constant SYS_LREMOVEXATTR (line 199) | SYS_LREMOVEXATTR = 5190 constant SYS_FREMOVEXATTR (line 200) | SYS_FREMOVEXATTR = 5191 constant SYS_TKILL (line 201) | SYS_TKILL = 5192 constant SYS_RESERVED193 (line 202) | SYS_RESERVED193 = 5193 constant SYS_FUTEX (line 203) | SYS_FUTEX = 5194 constant SYS_SCHED_SETAFFINITY (line 204) | SYS_SCHED_SETAFFINITY = 5195 constant SYS_SCHED_GETAFFINITY (line 205) | SYS_SCHED_GETAFFINITY = 5196 constant SYS_CACHEFLUSH (line 206) | SYS_CACHEFLUSH = 5197 constant SYS_CACHECTL (line 207) | SYS_CACHECTL = 5198 constant SYS_SYSMIPS (line 208) | SYS_SYSMIPS = 5199 constant SYS_IO_SETUP (line 209) | SYS_IO_SETUP = 5200 constant SYS_IO_DESTROY (line 210) | SYS_IO_DESTROY = 5201 constant SYS_IO_GETEVENTS (line 211) | SYS_IO_GETEVENTS = 5202 constant SYS_IO_SUBMIT (line 212) | SYS_IO_SUBMIT = 5203 constant SYS_IO_CANCEL (line 213) | SYS_IO_CANCEL = 5204 constant SYS_EXIT_GROUP (line 214) | SYS_EXIT_GROUP = 5205 constant SYS_LOOKUP_DCOOKIE (line 215) | SYS_LOOKUP_DCOOKIE = 5206 constant SYS_EPOLL_CREATE (line 216) | SYS_EPOLL_CREATE = 5207 constant SYS_EPOLL_CTL (line 217) | SYS_EPOLL_CTL = 5208 constant SYS_EPOLL_WAIT (line 218) | SYS_EPOLL_WAIT = 5209 constant SYS_REMAP_FILE_PAGES (line 219) | SYS_REMAP_FILE_PAGES = 5210 constant SYS_RT_SIGRETURN (line 220) | SYS_RT_SIGRETURN = 5211 constant SYS_SET_TID_ADDRESS (line 221) | SYS_SET_TID_ADDRESS = 5212 constant SYS_RESTART_SYSCALL (line 222) | SYS_RESTART_SYSCALL = 5213 constant SYS_SEMTIMEDOP (line 223) | SYS_SEMTIMEDOP = 5214 constant SYS_FADVISE64 (line 224) | SYS_FADVISE64 = 5215 constant SYS_TIMER_CREATE (line 225) | SYS_TIMER_CREATE = 5216 constant SYS_TIMER_SETTIME (line 226) | SYS_TIMER_SETTIME = 5217 constant SYS_TIMER_GETTIME (line 227) | SYS_TIMER_GETTIME = 5218 constant SYS_TIMER_GETOVERRUN (line 228) | SYS_TIMER_GETOVERRUN = 5219 constant SYS_TIMER_DELETE (line 229) | SYS_TIMER_DELETE = 5220 constant SYS_CLOCK_SETTIME (line 230) | SYS_CLOCK_SETTIME = 5221 constant SYS_CLOCK_GETTIME (line 231) | SYS_CLOCK_GETTIME = 5222 constant SYS_CLOCK_GETRES (line 232) | SYS_CLOCK_GETRES = 5223 constant SYS_CLOCK_NANOSLEEP (line 233) | SYS_CLOCK_NANOSLEEP = 5224 constant SYS_TGKILL (line 234) | SYS_TGKILL = 5225 constant SYS_UTIMES (line 235) | SYS_UTIMES = 5226 constant SYS_MBIND (line 236) | SYS_MBIND = 5227 constant SYS_GET_MEMPOLICY (line 237) | SYS_GET_MEMPOLICY = 5228 constant SYS_SET_MEMPOLICY (line 238) | SYS_SET_MEMPOLICY = 5229 constant SYS_MQ_OPEN (line 239) | SYS_MQ_OPEN = 5230 constant SYS_MQ_UNLINK (line 240) | SYS_MQ_UNLINK = 5231 constant SYS_MQ_TIMEDSEND (line 241) | SYS_MQ_TIMEDSEND = 5232 constant SYS_MQ_TIMEDRECEIVE (line 242) | SYS_MQ_TIMEDRECEIVE = 5233 constant SYS_MQ_NOTIFY (line 243) | SYS_MQ_NOTIFY = 5234 constant SYS_MQ_GETSETATTR (line 244) | SYS_MQ_GETSETATTR = 5235 constant SYS_VSERVER (line 245) | SYS_VSERVER = 5236 constant SYS_WAITID (line 246) | SYS_WAITID = 5237 constant SYS_ADD_KEY (line 247) | SYS_ADD_KEY = 5239 constant SYS_REQUEST_KEY (line 248) | SYS_REQUEST_KEY = 5240 constant SYS_KEYCTL (line 249) | SYS_KEYCTL = 5241 constant SYS_SET_THREAD_AREA (line 250) | SYS_SET_THREAD_AREA = 5242 constant SYS_INOTIFY_INIT (line 251) | SYS_INOTIFY_INIT = 5243 constant SYS_INOTIFY_ADD_WATCH (line 252) | SYS_INOTIFY_ADD_WATCH = 5244 constant SYS_INOTIFY_RM_WATCH (line 253) | SYS_INOTIFY_RM_WATCH = 5245 constant SYS_MIGRATE_PAGES (line 254) | SYS_MIGRATE_PAGES = 5246 constant SYS_OPENAT (line 255) | SYS_OPENAT = 5247 constant SYS_MKDIRAT (line 256) | SYS_MKDIRAT = 5248 constant SYS_MKNODAT (line 257) | SYS_MKNODAT = 5249 constant SYS_FCHOWNAT (line 258) | SYS_FCHOWNAT = 5250 constant SYS_FUTIMESAT (line 259) | SYS_FUTIMESAT = 5251 constant SYS_NEWFSTATAT (line 260) | SYS_NEWFSTATAT = 5252 constant SYS_UNLINKAT (line 261) | SYS_UNLINKAT = 5253 constant SYS_RENAMEAT (line 262) | SYS_RENAMEAT = 5254 constant SYS_LINKAT (line 263) | SYS_LINKAT = 5255 constant SYS_SYMLINKAT (line 264) | SYS_SYMLINKAT = 5256 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 5257 constant SYS_FCHMODAT (line 266) | SYS_FCHMODAT = 5258 constant SYS_FACCESSAT (line 267) | SYS_FACCESSAT = 5259 constant SYS_PSELECT6 (line 268) | SYS_PSELECT6 = 5260 constant SYS_PPOLL (line 269) | SYS_PPOLL = 5261 constant SYS_UNSHARE (line 270) | SYS_UNSHARE = 5262 constant SYS_SPLICE (line 271) | SYS_SPLICE = 5263 constant SYS_SYNC_FILE_RANGE (line 272) | SYS_SYNC_FILE_RANGE = 5264 constant SYS_TEE (line 273) | SYS_TEE = 5265 constant SYS_VMSPLICE (line 274) | SYS_VMSPLICE = 5266 constant SYS_MOVE_PAGES (line 275) | SYS_MOVE_PAGES = 5267 constant SYS_SET_ROBUST_LIST (line 276) | SYS_SET_ROBUST_LIST = 5268 constant SYS_GET_ROBUST_LIST (line 277) | SYS_GET_ROBUST_LIST = 5269 constant SYS_KEXEC_LOAD (line 278) | SYS_KEXEC_LOAD = 5270 constant SYS_GETCPU (line 279) | SYS_GETCPU = 5271 constant SYS_EPOLL_PWAIT (line 280) | SYS_EPOLL_PWAIT = 5272 constant SYS_IOPRIO_SET (line 281) | SYS_IOPRIO_SET = 5273 constant SYS_IOPRIO_GET (line 282) | SYS_IOPRIO_GET = 5274 constant SYS_UTIMENSAT (line 283) | SYS_UTIMENSAT = 5275 constant SYS_SIGNALFD (line 284) | SYS_SIGNALFD = 5276 constant SYS_TIMERFD (line 285) | SYS_TIMERFD = 5277 constant SYS_EVENTFD (line 286) | SYS_EVENTFD = 5278 constant SYS_FALLOCATE (line 287) | SYS_FALLOCATE = 5279 constant SYS_TIMERFD_CREATE (line 288) | SYS_TIMERFD_CREATE = 5280 constant SYS_TIMERFD_GETTIME (line 289) | SYS_TIMERFD_GETTIME = 5281 constant SYS_TIMERFD_SETTIME (line 290) | SYS_TIMERFD_SETTIME = 5282 constant SYS_SIGNALFD4 (line 291) | SYS_SIGNALFD4 = 5283 constant SYS_EVENTFD2 (line 292) | SYS_EVENTFD2 = 5284 constant SYS_EPOLL_CREATE1 (line 293) | SYS_EPOLL_CREATE1 = 5285 constant SYS_DUP3 (line 294) | SYS_DUP3 = 5286 constant SYS_PIPE2 (line 295) | SYS_PIPE2 = 5287 constant SYS_INOTIFY_INIT1 (line 296) | SYS_INOTIFY_INIT1 = 5288 constant SYS_PREADV (line 297) | SYS_PREADV = 5289 constant SYS_PWRITEV (line 298) | SYS_PWRITEV = 5290 constant SYS_RT_TGSIGQUEUEINFO (line 299) | SYS_RT_TGSIGQUEUEINFO = 5291 constant SYS_PERF_EVENT_OPEN (line 300) | SYS_PERF_EVENT_OPEN = 5292 constant SYS_ACCEPT4 (line 301) | SYS_ACCEPT4 = 5293 constant SYS_RECVMMSG (line 302) | SYS_RECVMMSG = 5294 constant SYS_FANOTIFY_INIT (line 303) | SYS_FANOTIFY_INIT = 5295 constant SYS_FANOTIFY_MARK (line 304) | SYS_FANOTIFY_MARK = 5296 constant SYS_PRLIMIT64 (line 305) | SYS_PRLIMIT64 = 5297 constant SYS_NAME_TO_HANDLE_AT (line 306) | SYS_NAME_TO_HANDLE_AT = 5298 constant SYS_OPEN_BY_HANDLE_AT (line 307) | SYS_OPEN_BY_HANDLE_AT = 5299 constant SYS_CLOCK_ADJTIME (line 308) | SYS_CLOCK_ADJTIME = 5300 constant SYS_SYNCFS (line 309) | SYS_SYNCFS = 5301 constant SYS_SENDMMSG (line 310) | SYS_SENDMMSG = 5302 constant SYS_SETNS (line 311) | SYS_SETNS = 5303 constant SYS_PROCESS_VM_READV (line 312) | SYS_PROCESS_VM_READV = 5304 constant SYS_PROCESS_VM_WRITEV (line 313) | SYS_PROCESS_VM_WRITEV = 5305 constant SYS_KCMP (line 314) | SYS_KCMP = 5306 constant SYS_FINIT_MODULE (line 315) | SYS_FINIT_MODULE = 5307 constant SYS_GETDENTS64 (line 316) | SYS_GETDENTS64 = 5308 constant SYS_SCHED_SETATTR (line 317) | SYS_SCHED_SETATTR = 5309 constant SYS_SCHED_GETATTR (line 318) | SYS_SCHED_GETATTR = 5310 constant SYS_RENAMEAT2 (line 319) | SYS_RENAMEAT2 = 5311 constant SYS_SECCOMP (line 320) | SYS_SECCOMP = 5312 constant SYS_GETRANDOM (line 321) | SYS_GETRANDOM = 5313 constant SYS_MEMFD_CREATE (line 322) | SYS_MEMFD_CREATE = 5314 constant SYS_BPF (line 323) | SYS_BPF = 5315 constant SYS_EXECVEAT (line 324) | SYS_EXECVEAT = 5316 constant SYS_USERFAULTFD (line 325) | SYS_USERFAULTFD = 5317 constant SYS_MEMBARRIER (line 326) | SYS_MEMBARRIER = 5318 constant SYS_MLOCK2 (line 327) | SYS_MLOCK2 = 5319 constant SYS_COPY_FILE_RANGE (line 328) | SYS_COPY_FILE_RANGE = 5320 constant SYS_PREADV2 (line 329) | SYS_PREADV2 = 5321 constant SYS_PWRITEV2 (line 330) | SYS_PWRITEV2 = 5322 constant SYS_PKEY_MPROTECT (line 331) | SYS_PKEY_MPROTECT = 5323 constant SYS_PKEY_ALLOC (line 332) | SYS_PKEY_ALLOC = 5324 constant SYS_PKEY_FREE (line 333) | SYS_PKEY_FREE = 5325 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go constant SYS_SYSCALL (line 9) | SYS_SYSCALL = 4000 constant SYS_EXIT (line 10) | SYS_EXIT = 4001 constant SYS_FORK (line 11) | SYS_FORK = 4002 constant SYS_READ (line 12) | SYS_READ = 4003 constant SYS_WRITE (line 13) | SYS_WRITE = 4004 constant SYS_OPEN (line 14) | SYS_OPEN = 4005 constant SYS_CLOSE (line 15) | SYS_CLOSE = 4006 constant SYS_WAITPID (line 16) | SYS_WAITPID = 4007 constant SYS_CREAT (line 17) | SYS_CREAT = 4008 constant SYS_LINK (line 18) | SYS_LINK = 4009 constant SYS_UNLINK (line 19) | SYS_UNLINK = 4010 constant SYS_EXECVE (line 20) | SYS_EXECVE = 4011 constant SYS_CHDIR (line 21) | SYS_CHDIR = 4012 constant SYS_TIME (line 22) | SYS_TIME = 4013 constant SYS_MKNOD (line 23) | SYS_MKNOD = 4014 constant SYS_CHMOD (line 24) | SYS_CHMOD = 4015 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 4016 constant SYS_BREAK (line 26) | SYS_BREAK = 4017 constant SYS_UNUSED18 (line 27) | SYS_UNUSED18 = 4018 constant SYS_LSEEK (line 28) | SYS_LSEEK = 4019 constant SYS_GETPID (line 29) | SYS_GETPID = 4020 constant SYS_MOUNT (line 30) | SYS_MOUNT = 4021 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 4022 constant SYS_SETUID (line 32) | SYS_SETUID = 4023 constant SYS_GETUID (line 33) | SYS_GETUID = 4024 constant SYS_STIME (line 34) | SYS_STIME = 4025 constant SYS_PTRACE (line 35) | SYS_PTRACE = 4026 constant SYS_ALARM (line 36) | SYS_ALARM = 4027 constant SYS_UNUSED28 (line 37) | SYS_UNUSED28 = 4028 constant SYS_PAUSE (line 38) | SYS_PAUSE = 4029 constant SYS_UTIME (line 39) | SYS_UTIME = 4030 constant SYS_STTY (line 40) | SYS_STTY = 4031 constant SYS_GTTY (line 41) | SYS_GTTY = 4032 constant SYS_ACCESS (line 42) | SYS_ACCESS = 4033 constant SYS_NICE (line 43) | SYS_NICE = 4034 constant SYS_FTIME (line 44) | SYS_FTIME = 4035 constant SYS_SYNC (line 45) | SYS_SYNC = 4036 constant SYS_KILL (line 46) | SYS_KILL = 4037 constant SYS_RENAME (line 47) | SYS_RENAME = 4038 constant SYS_MKDIR (line 48) | SYS_MKDIR = 4039 constant SYS_RMDIR (line 49) | SYS_RMDIR = 4040 constant SYS_DUP (line 50) | SYS_DUP = 4041 constant SYS_PIPE (line 51) | SYS_PIPE = 4042 constant SYS_TIMES (line 52) | SYS_TIMES = 4043 constant SYS_PROF (line 53) | SYS_PROF = 4044 constant SYS_BRK (line 54) | SYS_BRK = 4045 constant SYS_SETGID (line 55) | SYS_SETGID = 4046 constant SYS_GETGID (line 56) | SYS_GETGID = 4047 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 4048 constant SYS_GETEUID (line 58) | SYS_GETEUID = 4049 constant SYS_GETEGID (line 59) | SYS_GETEGID = 4050 constant SYS_ACCT (line 60) | SYS_ACCT = 4051 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 4052 constant SYS_LOCK (line 62) | SYS_LOCK = 4053 constant SYS_IOCTL (line 63) | SYS_IOCTL = 4054 constant SYS_FCNTL (line 64) | SYS_FCNTL = 4055 constant SYS_MPX (line 65) | SYS_MPX = 4056 constant SYS_SETPGID (line 66) | SYS_SETPGID = 4057 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 4058 constant SYS_UNUSED59 (line 68) | SYS_UNUSED59 = 4059 constant SYS_UMASK (line 69) | SYS_UMASK = 4060 constant SYS_CHROOT (line 70) | SYS_CHROOT = 4061 constant SYS_USTAT (line 71) | SYS_USTAT = 4062 constant SYS_DUP2 (line 72) | SYS_DUP2 = 4063 constant SYS_GETPPID (line 73) | SYS_GETPPID = 4064 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 4065 constant SYS_SETSID (line 75) | SYS_SETSID = 4066 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 4067 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 4068 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 4069 constant SYS_SETREUID (line 79) | SYS_SETREUID = 4070 constant SYS_SETREGID (line 80) | SYS_SETREGID = 4071 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 4072 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 4073 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 4074 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 4075 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 4076 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 4077 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 4078 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 4079 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 4080 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 4081 constant SYS_RESERVED82 (line 91) | SYS_RESERVED82 = 4082 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 4083 constant SYS_UNUSED84 (line 93) | SYS_UNUSED84 = 4084 constant SYS_READLINK (line 94) | SYS_READLINK = 4085 constant SYS_USELIB (line 95) | SYS_USELIB = 4086 constant SYS_SWAPON (line 96) | SYS_SWAPON = 4087 constant SYS_REBOOT (line 97) | SYS_REBOOT = 4088 constant SYS_READDIR (line 98) | SYS_READDIR = 4089 constant SYS_MMAP (line 99) | SYS_MMAP = 4090 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 4091 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 4092 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 4093 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 4094 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 4095 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 4096 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 4097 constant SYS_PROFIL (line 107) | SYS_PROFIL = 4098 constant SYS_STATFS (line 108) | SYS_STATFS = 4099 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 4100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 4101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 4102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 4103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 4104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 4105 constant SYS_STAT (line 115) | SYS_STAT = 4106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 4107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 4108 constant SYS_UNUSED109 (line 118) | SYS_UNUSED109 = 4109 constant SYS_IOPL (line 119) | SYS_IOPL = 4110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 4111 constant SYS_IDLE (line 121) | SYS_IDLE = 4112 constant SYS_VM86 (line 122) | SYS_VM86 = 4113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 4114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 4115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 4116 constant SYS_IPC (line 126) | SYS_IPC = 4117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 4118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 4119 constant SYS_CLONE (line 129) | SYS_CLONE = 4120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 4121 constant SYS_UNAME (line 131) | SYS_UNAME = 4122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 4123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 4124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 4125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 4126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 4127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 4128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 4129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 4130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 4131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 4132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 4133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 4134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 4135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 4136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 4137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 4138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 4139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 4140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 4141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 4142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 4143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 4144 constant SYS_READV (line 154) | SYS_READV = 4145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 4146 constant SYS_CACHEFLUSH (line 156) | SYS_CACHEFLUSH = 4147 constant SYS_CACHECTL (line 157) | SYS_CACHECTL = 4148 constant SYS_SYSMIPS (line 158) | SYS_SYSMIPS = 4149 constant SYS_UNUSED150 (line 159) | SYS_UNUSED150 = 4150 constant SYS_GETSID (line 160) | SYS_GETSID = 4151 constant SYS_FDATASYNC (line 161) | SYS_FDATASYNC = 4152 constant SYS__SYSCTL (line 162) | SYS__SYSCTL = 4153 constant SYS_MLOCK (line 163) | SYS_MLOCK = 4154 constant SYS_MUNLOCK (line 164) | SYS_MUNLOCK = 4155 constant SYS_MLOCKALL (line 165) | SYS_MLOCKALL = 4156 constant SYS_MUNLOCKALL (line 166) | SYS_MUNLOCKALL = 4157 constant SYS_SCHED_SETPARAM (line 167) | SYS_SCHED_SETPARAM = 4158 constant SYS_SCHED_GETPARAM (line 168) | SYS_SCHED_GETPARAM = 4159 constant SYS_SCHED_SETSCHEDULER (line 169) | SYS_SCHED_SETSCHEDULER = 4160 constant SYS_SCHED_GETSCHEDULER (line 170) | SYS_SCHED_GETSCHEDULER = 4161 constant SYS_SCHED_YIELD (line 171) | SYS_SCHED_YIELD = 4162 constant SYS_SCHED_GET_PRIORITY_MAX (line 172) | SYS_SCHED_GET_PRIORITY_MAX = 4163 constant SYS_SCHED_GET_PRIORITY_MIN (line 173) | SYS_SCHED_GET_PRIORITY_MIN = 4164 constant SYS_SCHED_RR_GET_INTERVAL (line 174) | SYS_SCHED_RR_GET_INTERVAL = 4165 constant SYS_NANOSLEEP (line 175) | SYS_NANOSLEEP = 4166 constant SYS_MREMAP (line 176) | SYS_MREMAP = 4167 constant SYS_ACCEPT (line 177) | SYS_ACCEPT = 4168 constant SYS_BIND (line 178) | SYS_BIND = 4169 constant SYS_CONNECT (line 179) | SYS_CONNECT = 4170 constant SYS_GETPEERNAME (line 180) | SYS_GETPEERNAME = 4171 constant SYS_GETSOCKNAME (line 181) | SYS_GETSOCKNAME = 4172 constant SYS_GETSOCKOPT (line 182) | SYS_GETSOCKOPT = 4173 constant SYS_LISTEN (line 183) | SYS_LISTEN = 4174 constant SYS_RECV (line 184) | SYS_RECV = 4175 constant SYS_RECVFROM (line 185) | SYS_RECVFROM = 4176 constant SYS_RECVMSG (line 186) | SYS_RECVMSG = 4177 constant SYS_SEND (line 187) | SYS_SEND = 4178 constant SYS_SENDMSG (line 188) | SYS_SENDMSG = 4179 constant SYS_SENDTO (line 189) | SYS_SENDTO = 4180 constant SYS_SETSOCKOPT (line 190) | SYS_SETSOCKOPT = 4181 constant SYS_SHUTDOWN (line 191) | SYS_SHUTDOWN = 4182 constant SYS_SOCKET (line 192) | SYS_SOCKET = 4183 constant SYS_SOCKETPAIR (line 193) | SYS_SOCKETPAIR = 4184 constant SYS_SETRESUID (line 194) | SYS_SETRESUID = 4185 constant SYS_GETRESUID (line 195) | SYS_GETRESUID = 4186 constant SYS_QUERY_MODULE (line 196) | SYS_QUERY_MODULE = 4187 constant SYS_POLL (line 197) | SYS_POLL = 4188 constant SYS_NFSSERVCTL (line 198) | SYS_NFSSERVCTL = 4189 constant SYS_SETRESGID (line 199) | SYS_SETRESGID = 4190 constant SYS_GETRESGID (line 200) | SYS_GETRESGID = 4191 constant SYS_PRCTL (line 201) | SYS_PRCTL = 4192 constant SYS_RT_SIGRETURN (line 202) | SYS_RT_SIGRETURN = 4193 constant SYS_RT_SIGACTION (line 203) | SYS_RT_SIGACTION = 4194 constant SYS_RT_SIGPROCMASK (line 204) | SYS_RT_SIGPROCMASK = 4195 constant SYS_RT_SIGPENDING (line 205) | SYS_RT_SIGPENDING = 4196 constant SYS_RT_SIGTIMEDWAIT (line 206) | SYS_RT_SIGTIMEDWAIT = 4197 constant SYS_RT_SIGQUEUEINFO (line 207) | SYS_RT_SIGQUEUEINFO = 4198 constant SYS_RT_SIGSUSPEND (line 208) | SYS_RT_SIGSUSPEND = 4199 constant SYS_PREAD64 (line 209) | SYS_PREAD64 = 4200 constant SYS_PWRITE64 (line 210) | SYS_PWRITE64 = 4201 constant SYS_CHOWN (line 211) | SYS_CHOWN = 4202 constant SYS_GETCWD (line 212) | SYS_GETCWD = 4203 constant SYS_CAPGET (line 213) | SYS_CAPGET = 4204 constant SYS_CAPSET (line 214) | SYS_CAPSET = 4205 constant SYS_SIGALTSTACK (line 215) | SYS_SIGALTSTACK = 4206 constant SYS_SENDFILE (line 216) | SYS_SENDFILE = 4207 constant SYS_GETPMSG (line 217) | SYS_GETPMSG = 4208 constant SYS_PUTPMSG (line 218) | SYS_PUTPMSG = 4209 constant SYS_MMAP2 (line 219) | SYS_MMAP2 = 4210 constant SYS_TRUNCATE64 (line 220) | SYS_TRUNCATE64 = 4211 constant SYS_FTRUNCATE64 (line 221) | SYS_FTRUNCATE64 = 4212 constant SYS_STAT64 (line 222) | SYS_STAT64 = 4213 constant SYS_LSTAT64 (line 223) | SYS_LSTAT64 = 4214 constant SYS_FSTAT64 (line 224) | SYS_FSTAT64 = 4215 constant SYS_PIVOT_ROOT (line 225) | SYS_PIVOT_ROOT = 4216 constant SYS_MINCORE (line 226) | SYS_MINCORE = 4217 constant SYS_MADVISE (line 227) | SYS_MADVISE = 4218 constant SYS_GETDENTS64 (line 228) | SYS_GETDENTS64 = 4219 constant SYS_FCNTL64 (line 229) | SYS_FCNTL64 = 4220 constant SYS_RESERVED221 (line 230) | SYS_RESERVED221 = 4221 constant SYS_GETTID (line 231) | SYS_GETTID = 4222 constant SYS_READAHEAD (line 232) | SYS_READAHEAD = 4223 constant SYS_SETXATTR (line 233) | SYS_SETXATTR = 4224 constant SYS_LSETXATTR (line 234) | SYS_LSETXATTR = 4225 constant SYS_FSETXATTR (line 235) | SYS_FSETXATTR = 4226 constant SYS_GETXATTR (line 236) | SYS_GETXATTR = 4227 constant SYS_LGETXATTR (line 237) | SYS_LGETXATTR = 4228 constant SYS_FGETXATTR (line 238) | SYS_FGETXATTR = 4229 constant SYS_LISTXATTR (line 239) | SYS_LISTXATTR = 4230 constant SYS_LLISTXATTR (line 240) | SYS_LLISTXATTR = 4231 constant SYS_FLISTXATTR (line 241) | SYS_FLISTXATTR = 4232 constant SYS_REMOVEXATTR (line 242) | SYS_REMOVEXATTR = 4233 constant SYS_LREMOVEXATTR (line 243) | SYS_LREMOVEXATTR = 4234 constant SYS_FREMOVEXATTR (line 244) | SYS_FREMOVEXATTR = 4235 constant SYS_TKILL (line 245) | SYS_TKILL = 4236 constant SYS_SENDFILE64 (line 246) | SYS_SENDFILE64 = 4237 constant SYS_FUTEX (line 247) | SYS_FUTEX = 4238 constant SYS_SCHED_SETAFFINITY (line 248) | SYS_SCHED_SETAFFINITY = 4239 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 4240 constant SYS_IO_SETUP (line 250) | SYS_IO_SETUP = 4241 constant SYS_IO_DESTROY (line 251) | SYS_IO_DESTROY = 4242 constant SYS_IO_GETEVENTS (line 252) | SYS_IO_GETEVENTS = 4243 constant SYS_IO_SUBMIT (line 253) | SYS_IO_SUBMIT = 4244 constant SYS_IO_CANCEL (line 254) | SYS_IO_CANCEL = 4245 constant SYS_EXIT_GROUP (line 255) | SYS_EXIT_GROUP = 4246 constant SYS_LOOKUP_DCOOKIE (line 256) | SYS_LOOKUP_DCOOKIE = 4247 constant SYS_EPOLL_CREATE (line 257) | SYS_EPOLL_CREATE = 4248 constant SYS_EPOLL_CTL (line 258) | SYS_EPOLL_CTL = 4249 constant SYS_EPOLL_WAIT (line 259) | SYS_EPOLL_WAIT = 4250 constant SYS_REMAP_FILE_PAGES (line 260) | SYS_REMAP_FILE_PAGES = 4251 constant SYS_SET_TID_ADDRESS (line 261) | SYS_SET_TID_ADDRESS = 4252 constant SYS_RESTART_SYSCALL (line 262) | SYS_RESTART_SYSCALL = 4253 constant SYS_FADVISE64 (line 263) | SYS_FADVISE64 = 4254 constant SYS_STATFS64 (line 264) | SYS_STATFS64 = 4255 constant SYS_FSTATFS64 (line 265) | SYS_FSTATFS64 = 4256 constant SYS_TIMER_CREATE (line 266) | SYS_TIMER_CREATE = 4257 constant SYS_TIMER_SETTIME (line 267) | SYS_TIMER_SETTIME = 4258 constant SYS_TIMER_GETTIME (line 268) | SYS_TIMER_GETTIME = 4259 constant SYS_TIMER_GETOVERRUN (line 269) | SYS_TIMER_GETOVERRUN = 4260 constant SYS_TIMER_DELETE (line 270) | SYS_TIMER_DELETE = 4261 constant SYS_CLOCK_SETTIME (line 271) | SYS_CLOCK_SETTIME = 4262 constant SYS_CLOCK_GETTIME (line 272) | SYS_CLOCK_GETTIME = 4263 constant SYS_CLOCK_GETRES (line 273) | SYS_CLOCK_GETRES = 4264 constant SYS_CLOCK_NANOSLEEP (line 274) | SYS_CLOCK_NANOSLEEP = 4265 constant SYS_TGKILL (line 275) | SYS_TGKILL = 4266 constant SYS_UTIMES (line 276) | SYS_UTIMES = 4267 constant SYS_MBIND (line 277) | SYS_MBIND = 4268 constant SYS_GET_MEMPOLICY (line 278) | SYS_GET_MEMPOLICY = 4269 constant SYS_SET_MEMPOLICY (line 279) | SYS_SET_MEMPOLICY = 4270 constant SYS_MQ_OPEN (line 280) | SYS_MQ_OPEN = 4271 constant SYS_MQ_UNLINK (line 281) | SYS_MQ_UNLINK = 4272 constant SYS_MQ_TIMEDSEND (line 282) | SYS_MQ_TIMEDSEND = 4273 constant SYS_MQ_TIMEDRECEIVE (line 283) | SYS_MQ_TIMEDRECEIVE = 4274 constant SYS_MQ_NOTIFY (line 284) | SYS_MQ_NOTIFY = 4275 constant SYS_MQ_GETSETATTR (line 285) | SYS_MQ_GETSETATTR = 4276 constant SYS_VSERVER (line 286) | SYS_VSERVER = 4277 constant SYS_WAITID (line 287) | SYS_WAITID = 4278 constant SYS_ADD_KEY (line 288) | SYS_ADD_KEY = 4280 constant SYS_REQUEST_KEY (line 289) | SYS_REQUEST_KEY = 4281 constant SYS_KEYCTL (line 290) | SYS_KEYCTL = 4282 constant SYS_SET_THREAD_AREA (line 291) | SYS_SET_THREAD_AREA = 4283 constant SYS_INOTIFY_INIT (line 292) | SYS_INOTIFY_INIT = 4284 constant SYS_INOTIFY_ADD_WATCH (line 293) | SYS_INOTIFY_ADD_WATCH = 4285 constant SYS_INOTIFY_RM_WATCH (line 294) | SYS_INOTIFY_RM_WATCH = 4286 constant SYS_MIGRATE_PAGES (line 295) | SYS_MIGRATE_PAGES = 4287 constant SYS_OPENAT (line 296) | SYS_OPENAT = 4288 constant SYS_MKDIRAT (line 297) | SYS_MKDIRAT = 4289 constant SYS_MKNODAT (line 298) | SYS_MKNODAT = 4290 constant SYS_FCHOWNAT (line 299) | SYS_FCHOWNAT = 4291 constant SYS_FUTIMESAT (line 300) | SYS_FUTIMESAT = 4292 constant SYS_FSTATAT64 (line 301) | SYS_FSTATAT64 = 4293 constant SYS_UNLINKAT (line 302) | SYS_UNLINKAT = 4294 constant SYS_RENAMEAT (line 303) | SYS_RENAMEAT = 4295 constant SYS_LINKAT (line 304) | SYS_LINKAT = 4296 constant SYS_SYMLINKAT (line 305) | SYS_SYMLINKAT = 4297 constant SYS_READLINKAT (line 306) | SYS_READLINKAT = 4298 constant SYS_FCHMODAT (line 307) | SYS_FCHMODAT = 4299 constant SYS_FACCESSAT (line 308) | SYS_FACCESSAT = 4300 constant SYS_PSELECT6 (line 309) | SYS_PSELECT6 = 4301 constant SYS_PPOLL (line 310) | SYS_PPOLL = 4302 constant SYS_UNSHARE (line 311) | SYS_UNSHARE = 4303 constant SYS_SPLICE (line 312) | SYS_SPLICE = 4304 constant SYS_SYNC_FILE_RANGE (line 313) | SYS_SYNC_FILE_RANGE = 4305 constant SYS_TEE (line 314) | SYS_TEE = 4306 constant SYS_VMSPLICE (line 315) | SYS_VMSPLICE = 4307 constant SYS_MOVE_PAGES (line 316) | SYS_MOVE_PAGES = 4308 constant SYS_SET_ROBUST_LIST (line 317) | SYS_SET_ROBUST_LIST = 4309 constant SYS_GET_ROBUST_LIST (line 318) | SYS_GET_ROBUST_LIST = 4310 constant SYS_KEXEC_LOAD (line 319) | SYS_KEXEC_LOAD = 4311 constant SYS_GETCPU (line 320) | SYS_GETCPU = 4312 constant SYS_EPOLL_PWAIT (line 321) | SYS_EPOLL_PWAIT = 4313 constant SYS_IOPRIO_SET (line 322) | SYS_IOPRIO_SET = 4314 constant SYS_IOPRIO_GET (line 323) | SYS_IOPRIO_GET = 4315 constant SYS_UTIMENSAT (line 324) | SYS_UTIMENSAT = 4316 constant SYS_SIGNALFD (line 325) | SYS_SIGNALFD = 4317 constant SYS_TIMERFD (line 326) | SYS_TIMERFD = 4318 constant SYS_EVENTFD (line 327) | SYS_EVENTFD = 4319 constant SYS_FALLOCATE (line 328) | SYS_FALLOCATE = 4320 constant SYS_TIMERFD_CREATE (line 329) | SYS_TIMERFD_CREATE = 4321 constant SYS_TIMERFD_GETTIME (line 330) | SYS_TIMERFD_GETTIME = 4322 constant SYS_TIMERFD_SETTIME (line 331) | SYS_TIMERFD_SETTIME = 4323 constant SYS_SIGNALFD4 (line 332) | SYS_SIGNALFD4 = 4324 constant SYS_EVENTFD2 (line 333) | SYS_EVENTFD2 = 4325 constant SYS_EPOLL_CREATE1 (line 334) | SYS_EPOLL_CREATE1 = 4326 constant SYS_DUP3 (line 335) | SYS_DUP3 = 4327 constant SYS_PIPE2 (line 336) | SYS_PIPE2 = 4328 constant SYS_INOTIFY_INIT1 (line 337) | SYS_INOTIFY_INIT1 = 4329 constant SYS_PREADV (line 338) | SYS_PREADV = 4330 constant SYS_PWRITEV (line 339) | SYS_PWRITEV = 4331 constant SYS_RT_TGSIGQUEUEINFO (line 340) | SYS_RT_TGSIGQUEUEINFO = 4332 constant SYS_PERF_EVENT_OPEN (line 341) | SYS_PERF_EVENT_OPEN = 4333 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 4334 constant SYS_RECVMMSG (line 343) | SYS_RECVMMSG = 4335 constant SYS_FANOTIFY_INIT (line 344) | SYS_FANOTIFY_INIT = 4336 constant SYS_FANOTIFY_MARK (line 345) | SYS_FANOTIFY_MARK = 4337 constant SYS_PRLIMIT64 (line 346) | SYS_PRLIMIT64 = 4338 constant SYS_NAME_TO_HANDLE_AT (line 347) | SYS_NAME_TO_HANDLE_AT = 4339 constant SYS_OPEN_BY_HANDLE_AT (line 348) | SYS_OPEN_BY_HANDLE_AT = 4340 constant SYS_CLOCK_ADJTIME (line 349) | SYS_CLOCK_ADJTIME = 4341 constant SYS_SYNCFS (line 350) | SYS_SYNCFS = 4342 constant SYS_SENDMMSG (line 351) | SYS_SENDMMSG = 4343 constant SYS_SETNS (line 352) | SYS_SETNS = 4344 constant SYS_PROCESS_VM_READV (line 353) | SYS_PROCESS_VM_READV = 4345 constant SYS_PROCESS_VM_WRITEV (line 354) | SYS_PROCESS_VM_WRITEV = 4346 constant SYS_KCMP (line 355) | SYS_KCMP = 4347 constant SYS_FINIT_MODULE (line 356) | SYS_FINIT_MODULE = 4348 constant SYS_SCHED_SETATTR (line 357) | SYS_SCHED_SETATTR = 4349 constant SYS_SCHED_GETATTR (line 358) | SYS_SCHED_GETATTR = 4350 constant SYS_RENAMEAT2 (line 359) | SYS_RENAMEAT2 = 4351 constant SYS_SECCOMP (line 360) | SYS_SECCOMP = 4352 constant SYS_GETRANDOM (line 361) | SYS_GETRANDOM = 4353 constant SYS_MEMFD_CREATE (line 362) | SYS_MEMFD_CREATE = 4354 constant SYS_BPF (line 363) | SYS_BPF = 4355 constant SYS_EXECVEAT (line 364) | SYS_EXECVEAT = 4356 constant SYS_USERFAULTFD (line 365) | SYS_USERFAULTFD = 4357 constant SYS_MEMBARRIER (line 366) | SYS_MEMBARRIER = 4358 constant SYS_MLOCK2 (line 367) | SYS_MLOCK2 = 4359 constant SYS_COPY_FILE_RANGE (line 368) | SYS_COPY_FILE_RANGE = 4360 constant SYS_PREADV2 (line 369) | SYS_PREADV2 = 4361 constant SYS_PWRITEV2 (line 370) | SYS_PWRITEV2 = 4362 constant SYS_PKEY_MPROTECT (line 371) | SYS_PKEY_MPROTECT = 4363 constant SYS_PKEY_ALLOC (line 372) | SYS_PKEY_ALLOC = 4364 constant SYS_PKEY_FREE (line 373) | SYS_PKEY_FREE = 4365 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAITPID (line 16) | SYS_WAITPID = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECVE (line 20) | SYS_EXECVE = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_TIME (line 22) | SYS_TIME = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BREAK (line 26) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 27) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_STIME (line 34) | SYS_STIME = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 37) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_STTY (line 40) | SYS_STTY = 31 constant SYS_GTTY (line 41) | SYS_GTTY = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_NICE (line 43) | SYS_NICE = 34 constant SYS_FTIME (line 44) | SYS_FTIME = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_KILL (line 46) | SYS_KILL = 37 constant SYS_RENAME (line 47) | SYS_RENAME = 38 constant SYS_MKDIR (line 48) | SYS_MKDIR = 39 constant SYS_RMDIR (line 49) | SYS_RMDIR = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_PIPE (line 51) | SYS_PIPE = 42 constant SYS_TIMES (line 52) | SYS_TIMES = 43 constant SYS_PROF (line 53) | SYS_PROF = 44 constant SYS_BRK (line 54) | SYS_BRK = 45 constant SYS_SETGID (line 55) | SYS_SETGID = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 58) | SYS_GETEUID = 49 constant SYS_GETEGID (line 59) | SYS_GETEGID = 50 constant SYS_ACCT (line 60) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 62) | SYS_LOCK = 53 constant SYS_IOCTL (line 63) | SYS_IOCTL = 54 constant SYS_FCNTL (line 64) | SYS_FCNTL = 55 constant SYS_MPX (line 65) | SYS_MPX = 56 constant SYS_SETPGID (line 66) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 68) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 69) | SYS_UMASK = 60 constant SYS_CHROOT (line 70) | SYS_CHROOT = 61 constant SYS_USTAT (line 71) | SYS_USTAT = 62 constant SYS_DUP2 (line 72) | SYS_DUP2 = 63 constant SYS_GETPPID (line 73) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 65 constant SYS_SETSID (line 75) | SYS_SETSID = 66 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 79) | SYS_SETREUID = 70 constant SYS_SETREGID (line 80) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 91) | SYS_SELECT = 82 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 93) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 94) | SYS_READLINK = 85 constant SYS_USELIB (line 95) | SYS_USELIB = 86 constant SYS_SWAPON (line 96) | SYS_SWAPON = 87 constant SYS_REBOOT (line 97) | SYS_REBOOT = 88 constant SYS_READDIR (line 98) | SYS_READDIR = 89 constant SYS_MMAP (line 99) | SYS_MMAP = 90 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 107) | SYS_PROFIL = 98 constant SYS_STATFS (line 108) | SYS_STATFS = 99 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 105 constant SYS_STAT (line 115) | SYS_STAT = 106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 118) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 119) | SYS_IOPL = 110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 111 constant SYS_IDLE (line 121) | SYS_IDLE = 112 constant SYS_VM86 (line 122) | SYS_VM86 = 113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 116 constant SYS_IPC (line 126) | SYS_IPC = 117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 129) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 131) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 144 constant SYS_READV (line 154) | SYS_READV = 145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 146 constant SYS_GETSID (line 156) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 157) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 158) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 159) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 163) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 164) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 165) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 166) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 167) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 168) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 169) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 170) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 171) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 172) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 173) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 174) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 175) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 176) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 177) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 178) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 179) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 180) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 181) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 182) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 183) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 184) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 185) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 186) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 187) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 188) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 189) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 190) | SYS_CHOWN = 181 constant SYS_GETCWD (line 191) | SYS_GETCWD = 182 constant SYS_CAPGET (line 192) | SYS_CAPGET = 183 constant SYS_CAPSET (line 193) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 194) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 195) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 196) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 197) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 198) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 199) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 200) | SYS_READAHEAD = 191 constant SYS_PCICONFIG_READ (line 201) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 202) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 203) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 204) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 205) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 206) | SYS_PIVOT_ROOT = 203 constant SYS_MADVISE (line 207) | SYS_MADVISE = 205 constant SYS_MINCORE (line 208) | SYS_MINCORE = 206 constant SYS_GETTID (line 209) | SYS_GETTID = 207 constant SYS_TKILL (line 210) | SYS_TKILL = 208 constant SYS_SETXATTR (line 211) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 212) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 213) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 214) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 215) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 216) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 217) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 218) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 219) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 220) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 221) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 222) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 223) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 224) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 225) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 226) | SYS_TUXCALL = 225 constant SYS_IO_SETUP (line 227) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 228) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 229) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 230) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 231) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 232) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 233) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 234) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 235) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 236) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 237) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 238) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 239) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 240) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 241) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 242) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 243) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 244) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 245) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 246) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 247) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 248) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 249) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 250) | SYS_TGKILL = 250 constant SYS_UTIMES (line 251) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 252) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 253) | SYS_FSTATFS64 = 253 constant SYS_RTAS (line 254) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 255) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 256) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 257) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 258) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 259) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 260) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 261) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 262) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 263) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 264) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 265) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 266) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 267) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 268) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 269) | SYS_KEYCTL = 271 constant SYS_WAITID (line 270) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 271) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 272) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 273) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 274) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 275) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 276) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 277) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 278) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 279) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 280) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 281) | SYS_SPLICE = 283 constant SYS_TEE (line 282) | SYS_TEE = 284 constant SYS_VMSPLICE (line 283) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 284) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 285) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 286) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 287) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 288) | SYS_FUTIMESAT = 290 constant SYS_NEWFSTATAT (line 289) | SYS_NEWFSTATAT = 291 constant SYS_UNLINKAT (line 290) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 291) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 292) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 293) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 294) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 295) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 296) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 297) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 298) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 299) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 300) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 301) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 302) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 303) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 304) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 305) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 306) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 307) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 308) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 309) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 310) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 311) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 312) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 313) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 314) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 315) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 316) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 317) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 318) | SYS_PREADV = 320 constant SYS_PWRITEV (line 319) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 320) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 321) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 322) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 323) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 324) | SYS_SOCKET = 326 constant SYS_BIND (line 325) | SYS_BIND = 327 constant SYS_CONNECT (line 326) | SYS_CONNECT = 328 constant SYS_LISTEN (line 327) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 328) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 329) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 330) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 331) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 332) | SYS_SEND = 334 constant SYS_SENDTO (line 333) | SYS_SENDTO = 335 constant SYS_RECV (line 334) | SYS_RECV = 336 constant SYS_RECVFROM (line 335) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 336) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 337) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 338) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 339) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 340) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 341) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 343) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 344) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 345) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 346) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 347) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 348) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 349) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 350) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 351) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 352) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 353) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 354) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 355) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 356) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 357) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 358) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 359) | SYS_BPF = 361 constant SYS_EXECVEAT (line 360) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 361) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 362) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 363) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 364) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 365) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 366) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 367) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 368) | SYS_KEXEC_FILE_LOAD = 382 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAITPID (line 16) | SYS_WAITPID = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECVE (line 20) | SYS_EXECVE = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_TIME (line 22) | SYS_TIME = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BREAK (line 26) | SYS_BREAK = 17 constant SYS_OLDSTAT (line 27) | SYS_OLDSTAT = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_MOUNT (line 30) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 31) | SYS_UMOUNT = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_STIME (line 34) | SYS_STIME = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_OLDFSTAT (line 37) | SYS_OLDFSTAT = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_STTY (line 40) | SYS_STTY = 31 constant SYS_GTTY (line 41) | SYS_GTTY = 32 constant SYS_ACCESS (line 42) | SYS_ACCESS = 33 constant SYS_NICE (line 43) | SYS_NICE = 34 constant SYS_FTIME (line 44) | SYS_FTIME = 35 constant SYS_SYNC (line 45) | SYS_SYNC = 36 constant SYS_KILL (line 46) | SYS_KILL = 37 constant SYS_RENAME (line 47) | SYS_RENAME = 38 constant SYS_MKDIR (line 48) | SYS_MKDIR = 39 constant SYS_RMDIR (line 49) | SYS_RMDIR = 40 constant SYS_DUP (line 50) | SYS_DUP = 41 constant SYS_PIPE (line 51) | SYS_PIPE = 42 constant SYS_TIMES (line 52) | SYS_TIMES = 43 constant SYS_PROF (line 53) | SYS_PROF = 44 constant SYS_BRK (line 54) | SYS_BRK = 45 constant SYS_SETGID (line 55) | SYS_SETGID = 46 constant SYS_GETGID (line 56) | SYS_GETGID = 47 constant SYS_SIGNAL (line 57) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 58) | SYS_GETEUID = 49 constant SYS_GETEGID (line 59) | SYS_GETEGID = 50 constant SYS_ACCT (line 60) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 61) | SYS_UMOUNT2 = 52 constant SYS_LOCK (line 62) | SYS_LOCK = 53 constant SYS_IOCTL (line 63) | SYS_IOCTL = 54 constant SYS_FCNTL (line 64) | SYS_FCNTL = 55 constant SYS_MPX (line 65) | SYS_MPX = 56 constant SYS_SETPGID (line 66) | SYS_SETPGID = 57 constant SYS_ULIMIT (line 67) | SYS_ULIMIT = 58 constant SYS_OLDOLDUNAME (line 68) | SYS_OLDOLDUNAME = 59 constant SYS_UMASK (line 69) | SYS_UMASK = 60 constant SYS_CHROOT (line 70) | SYS_CHROOT = 61 constant SYS_USTAT (line 71) | SYS_USTAT = 62 constant SYS_DUP2 (line 72) | SYS_DUP2 = 63 constant SYS_GETPPID (line 73) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 74) | SYS_GETPGRP = 65 constant SYS_SETSID (line 75) | SYS_SETSID = 66 constant SYS_SIGACTION (line 76) | SYS_SIGACTION = 67 constant SYS_SGETMASK (line 77) | SYS_SGETMASK = 68 constant SYS_SSETMASK (line 78) | SYS_SSETMASK = 69 constant SYS_SETREUID (line 79) | SYS_SETREUID = 70 constant SYS_SETREGID (line 80) | SYS_SETREGID = 71 constant SYS_SIGSUSPEND (line 81) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 82) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 83) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 84) | SYS_SETRLIMIT = 75 constant SYS_GETRLIMIT (line 85) | SYS_GETRLIMIT = 76 constant SYS_GETRUSAGE (line 86) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 87) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 88) | SYS_SETTIMEOFDAY = 79 constant SYS_GETGROUPS (line 89) | SYS_GETGROUPS = 80 constant SYS_SETGROUPS (line 90) | SYS_SETGROUPS = 81 constant SYS_SELECT (line 91) | SYS_SELECT = 82 constant SYS_SYMLINK (line 92) | SYS_SYMLINK = 83 constant SYS_OLDLSTAT (line 93) | SYS_OLDLSTAT = 84 constant SYS_READLINK (line 94) | SYS_READLINK = 85 constant SYS_USELIB (line 95) | SYS_USELIB = 86 constant SYS_SWAPON (line 96) | SYS_SWAPON = 87 constant SYS_REBOOT (line 97) | SYS_REBOOT = 88 constant SYS_READDIR (line 98) | SYS_READDIR = 89 constant SYS_MMAP (line 99) | SYS_MMAP = 90 constant SYS_MUNMAP (line 100) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 101) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 102) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 103) | SYS_FCHMOD = 94 constant SYS_FCHOWN (line 104) | SYS_FCHOWN = 95 constant SYS_GETPRIORITY (line 105) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 106) | SYS_SETPRIORITY = 97 constant SYS_PROFIL (line 107) | SYS_PROFIL = 98 constant SYS_STATFS (line 108) | SYS_STATFS = 99 constant SYS_FSTATFS (line 109) | SYS_FSTATFS = 100 constant SYS_IOPERM (line 110) | SYS_IOPERM = 101 constant SYS_SOCKETCALL (line 111) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 112) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 113) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 114) | SYS_GETITIMER = 105 constant SYS_STAT (line 115) | SYS_STAT = 106 constant SYS_LSTAT (line 116) | SYS_LSTAT = 107 constant SYS_FSTAT (line 117) | SYS_FSTAT = 108 constant SYS_OLDUNAME (line 118) | SYS_OLDUNAME = 109 constant SYS_IOPL (line 119) | SYS_IOPL = 110 constant SYS_VHANGUP (line 120) | SYS_VHANGUP = 111 constant SYS_IDLE (line 121) | SYS_IDLE = 112 constant SYS_VM86 (line 122) | SYS_VM86 = 113 constant SYS_WAIT4 (line 123) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 124) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 125) | SYS_SYSINFO = 116 constant SYS_IPC (line 126) | SYS_IPC = 117 constant SYS_FSYNC (line 127) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 128) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 129) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 130) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 131) | SYS_UNAME = 122 constant SYS_MODIFY_LDT (line 132) | SYS_MODIFY_LDT = 123 constant SYS_ADJTIMEX (line 133) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 134) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 135) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 136) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 137) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 138) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 139) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 140) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 141) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 142) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 143) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 144) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 145) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 146) | SYS_AFS_SYSCALL = 137 constant SYS_SETFSUID (line 147) | SYS_SETFSUID = 138 constant SYS_SETFSGID (line 148) | SYS_SETFSGID = 139 constant SYS__LLSEEK (line 149) | SYS__LLSEEK = 140 constant SYS_GETDENTS (line 150) | SYS_GETDENTS = 141 constant SYS__NEWSELECT (line 151) | SYS__NEWSELECT = 142 constant SYS_FLOCK (line 152) | SYS_FLOCK = 143 constant SYS_MSYNC (line 153) | SYS_MSYNC = 144 constant SYS_READV (line 154) | SYS_READV = 145 constant SYS_WRITEV (line 155) | SYS_WRITEV = 146 constant SYS_GETSID (line 156) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 157) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 158) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 159) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 160) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 161) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 162) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 163) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 164) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 165) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 166) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 167) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 168) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 169) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 170) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 171) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 172) | SYS_MREMAP = 163 constant SYS_SETRESUID (line 173) | SYS_SETRESUID = 164 constant SYS_GETRESUID (line 174) | SYS_GETRESUID = 165 constant SYS_QUERY_MODULE (line 175) | SYS_QUERY_MODULE = 166 constant SYS_POLL (line 176) | SYS_POLL = 167 constant SYS_NFSSERVCTL (line 177) | SYS_NFSSERVCTL = 168 constant SYS_SETRESGID (line 178) | SYS_SETRESGID = 169 constant SYS_GETRESGID (line 179) | SYS_GETRESGID = 170 constant SYS_PRCTL (line 180) | SYS_PRCTL = 171 constant SYS_RT_SIGRETURN (line 181) | SYS_RT_SIGRETURN = 172 constant SYS_RT_SIGACTION (line 182) | SYS_RT_SIGACTION = 173 constant SYS_RT_SIGPROCMASK (line 183) | SYS_RT_SIGPROCMASK = 174 constant SYS_RT_SIGPENDING (line 184) | SYS_RT_SIGPENDING = 175 constant SYS_RT_SIGTIMEDWAIT (line 185) | SYS_RT_SIGTIMEDWAIT = 176 constant SYS_RT_SIGQUEUEINFO (line 186) | SYS_RT_SIGQUEUEINFO = 177 constant SYS_RT_SIGSUSPEND (line 187) | SYS_RT_SIGSUSPEND = 178 constant SYS_PREAD64 (line 188) | SYS_PREAD64 = 179 constant SYS_PWRITE64 (line 189) | SYS_PWRITE64 = 180 constant SYS_CHOWN (line 190) | SYS_CHOWN = 181 constant SYS_GETCWD (line 191) | SYS_GETCWD = 182 constant SYS_CAPGET (line 192) | SYS_CAPGET = 183 constant SYS_CAPSET (line 193) | SYS_CAPSET = 184 constant SYS_SIGALTSTACK (line 194) | SYS_SIGALTSTACK = 185 constant SYS_SENDFILE (line 195) | SYS_SENDFILE = 186 constant SYS_GETPMSG (line 196) | SYS_GETPMSG = 187 constant SYS_PUTPMSG (line 197) | SYS_PUTPMSG = 188 constant SYS_VFORK (line 198) | SYS_VFORK = 189 constant SYS_UGETRLIMIT (line 199) | SYS_UGETRLIMIT = 190 constant SYS_READAHEAD (line 200) | SYS_READAHEAD = 191 constant SYS_PCICONFIG_READ (line 201) | SYS_PCICONFIG_READ = 198 constant SYS_PCICONFIG_WRITE (line 202) | SYS_PCICONFIG_WRITE = 199 constant SYS_PCICONFIG_IOBASE (line 203) | SYS_PCICONFIG_IOBASE = 200 constant SYS_MULTIPLEXER (line 204) | SYS_MULTIPLEXER = 201 constant SYS_GETDENTS64 (line 205) | SYS_GETDENTS64 = 202 constant SYS_PIVOT_ROOT (line 206) | SYS_PIVOT_ROOT = 203 constant SYS_MADVISE (line 207) | SYS_MADVISE = 205 constant SYS_MINCORE (line 208) | SYS_MINCORE = 206 constant SYS_GETTID (line 209) | SYS_GETTID = 207 constant SYS_TKILL (line 210) | SYS_TKILL = 208 constant SYS_SETXATTR (line 211) | SYS_SETXATTR = 209 constant SYS_LSETXATTR (line 212) | SYS_LSETXATTR = 210 constant SYS_FSETXATTR (line 213) | SYS_FSETXATTR = 211 constant SYS_GETXATTR (line 214) | SYS_GETXATTR = 212 constant SYS_LGETXATTR (line 215) | SYS_LGETXATTR = 213 constant SYS_FGETXATTR (line 216) | SYS_FGETXATTR = 214 constant SYS_LISTXATTR (line 217) | SYS_LISTXATTR = 215 constant SYS_LLISTXATTR (line 218) | SYS_LLISTXATTR = 216 constant SYS_FLISTXATTR (line 219) | SYS_FLISTXATTR = 217 constant SYS_REMOVEXATTR (line 220) | SYS_REMOVEXATTR = 218 constant SYS_LREMOVEXATTR (line 221) | SYS_LREMOVEXATTR = 219 constant SYS_FREMOVEXATTR (line 222) | SYS_FREMOVEXATTR = 220 constant SYS_FUTEX (line 223) | SYS_FUTEX = 221 constant SYS_SCHED_SETAFFINITY (line 224) | SYS_SCHED_SETAFFINITY = 222 constant SYS_SCHED_GETAFFINITY (line 225) | SYS_SCHED_GETAFFINITY = 223 constant SYS_TUXCALL (line 226) | SYS_TUXCALL = 225 constant SYS_IO_SETUP (line 227) | SYS_IO_SETUP = 227 constant SYS_IO_DESTROY (line 228) | SYS_IO_DESTROY = 228 constant SYS_IO_GETEVENTS (line 229) | SYS_IO_GETEVENTS = 229 constant SYS_IO_SUBMIT (line 230) | SYS_IO_SUBMIT = 230 constant SYS_IO_CANCEL (line 231) | SYS_IO_CANCEL = 231 constant SYS_SET_TID_ADDRESS (line 232) | SYS_SET_TID_ADDRESS = 232 constant SYS_FADVISE64 (line 233) | SYS_FADVISE64 = 233 constant SYS_EXIT_GROUP (line 234) | SYS_EXIT_GROUP = 234 constant SYS_LOOKUP_DCOOKIE (line 235) | SYS_LOOKUP_DCOOKIE = 235 constant SYS_EPOLL_CREATE (line 236) | SYS_EPOLL_CREATE = 236 constant SYS_EPOLL_CTL (line 237) | SYS_EPOLL_CTL = 237 constant SYS_EPOLL_WAIT (line 238) | SYS_EPOLL_WAIT = 238 constant SYS_REMAP_FILE_PAGES (line 239) | SYS_REMAP_FILE_PAGES = 239 constant SYS_TIMER_CREATE (line 240) | SYS_TIMER_CREATE = 240 constant SYS_TIMER_SETTIME (line 241) | SYS_TIMER_SETTIME = 241 constant SYS_TIMER_GETTIME (line 242) | SYS_TIMER_GETTIME = 242 constant SYS_TIMER_GETOVERRUN (line 243) | SYS_TIMER_GETOVERRUN = 243 constant SYS_TIMER_DELETE (line 244) | SYS_TIMER_DELETE = 244 constant SYS_CLOCK_SETTIME (line 245) | SYS_CLOCK_SETTIME = 245 constant SYS_CLOCK_GETTIME (line 246) | SYS_CLOCK_GETTIME = 246 constant SYS_CLOCK_GETRES (line 247) | SYS_CLOCK_GETRES = 247 constant SYS_CLOCK_NANOSLEEP (line 248) | SYS_CLOCK_NANOSLEEP = 248 constant SYS_SWAPCONTEXT (line 249) | SYS_SWAPCONTEXT = 249 constant SYS_TGKILL (line 250) | SYS_TGKILL = 250 constant SYS_UTIMES (line 251) | SYS_UTIMES = 251 constant SYS_STATFS64 (line 252) | SYS_STATFS64 = 252 constant SYS_FSTATFS64 (line 253) | SYS_FSTATFS64 = 253 constant SYS_RTAS (line 254) | SYS_RTAS = 255 constant SYS_SYS_DEBUG_SETCONTEXT (line 255) | SYS_SYS_DEBUG_SETCONTEXT = 256 constant SYS_MIGRATE_PAGES (line 256) | SYS_MIGRATE_PAGES = 258 constant SYS_MBIND (line 257) | SYS_MBIND = 259 constant SYS_GET_MEMPOLICY (line 258) | SYS_GET_MEMPOLICY = 260 constant SYS_SET_MEMPOLICY (line 259) | SYS_SET_MEMPOLICY = 261 constant SYS_MQ_OPEN (line 260) | SYS_MQ_OPEN = 262 constant SYS_MQ_UNLINK (line 261) | SYS_MQ_UNLINK = 263 constant SYS_MQ_TIMEDSEND (line 262) | SYS_MQ_TIMEDSEND = 264 constant SYS_MQ_TIMEDRECEIVE (line 263) | SYS_MQ_TIMEDRECEIVE = 265 constant SYS_MQ_NOTIFY (line 264) | SYS_MQ_NOTIFY = 266 constant SYS_MQ_GETSETATTR (line 265) | SYS_MQ_GETSETATTR = 267 constant SYS_KEXEC_LOAD (line 266) | SYS_KEXEC_LOAD = 268 constant SYS_ADD_KEY (line 267) | SYS_ADD_KEY = 269 constant SYS_REQUEST_KEY (line 268) | SYS_REQUEST_KEY = 270 constant SYS_KEYCTL (line 269) | SYS_KEYCTL = 271 constant SYS_WAITID (line 270) | SYS_WAITID = 272 constant SYS_IOPRIO_SET (line 271) | SYS_IOPRIO_SET = 273 constant SYS_IOPRIO_GET (line 272) | SYS_IOPRIO_GET = 274 constant SYS_INOTIFY_INIT (line 273) | SYS_INOTIFY_INIT = 275 constant SYS_INOTIFY_ADD_WATCH (line 274) | SYS_INOTIFY_ADD_WATCH = 276 constant SYS_INOTIFY_RM_WATCH (line 275) | SYS_INOTIFY_RM_WATCH = 277 constant SYS_SPU_RUN (line 276) | SYS_SPU_RUN = 278 constant SYS_SPU_CREATE (line 277) | SYS_SPU_CREATE = 279 constant SYS_PSELECT6 (line 278) | SYS_PSELECT6 = 280 constant SYS_PPOLL (line 279) | SYS_PPOLL = 281 constant SYS_UNSHARE (line 280) | SYS_UNSHARE = 282 constant SYS_SPLICE (line 281) | SYS_SPLICE = 283 constant SYS_TEE (line 282) | SYS_TEE = 284 constant SYS_VMSPLICE (line 283) | SYS_VMSPLICE = 285 constant SYS_OPENAT (line 284) | SYS_OPENAT = 286 constant SYS_MKDIRAT (line 285) | SYS_MKDIRAT = 287 constant SYS_MKNODAT (line 286) | SYS_MKNODAT = 288 constant SYS_FCHOWNAT (line 287) | SYS_FCHOWNAT = 289 constant SYS_FUTIMESAT (line 288) | SYS_FUTIMESAT = 290 constant SYS_NEWFSTATAT (line 289) | SYS_NEWFSTATAT = 291 constant SYS_UNLINKAT (line 290) | SYS_UNLINKAT = 292 constant SYS_RENAMEAT (line 291) | SYS_RENAMEAT = 293 constant SYS_LINKAT (line 292) | SYS_LINKAT = 294 constant SYS_SYMLINKAT (line 293) | SYS_SYMLINKAT = 295 constant SYS_READLINKAT (line 294) | SYS_READLINKAT = 296 constant SYS_FCHMODAT (line 295) | SYS_FCHMODAT = 297 constant SYS_FACCESSAT (line 296) | SYS_FACCESSAT = 298 constant SYS_GET_ROBUST_LIST (line 297) | SYS_GET_ROBUST_LIST = 299 constant SYS_SET_ROBUST_LIST (line 298) | SYS_SET_ROBUST_LIST = 300 constant SYS_MOVE_PAGES (line 299) | SYS_MOVE_PAGES = 301 constant SYS_GETCPU (line 300) | SYS_GETCPU = 302 constant SYS_EPOLL_PWAIT (line 301) | SYS_EPOLL_PWAIT = 303 constant SYS_UTIMENSAT (line 302) | SYS_UTIMENSAT = 304 constant SYS_SIGNALFD (line 303) | SYS_SIGNALFD = 305 constant SYS_TIMERFD_CREATE (line 304) | SYS_TIMERFD_CREATE = 306 constant SYS_EVENTFD (line 305) | SYS_EVENTFD = 307 constant SYS_SYNC_FILE_RANGE2 (line 306) | SYS_SYNC_FILE_RANGE2 = 308 constant SYS_FALLOCATE (line 307) | SYS_FALLOCATE = 309 constant SYS_SUBPAGE_PROT (line 308) | SYS_SUBPAGE_PROT = 310 constant SYS_TIMERFD_SETTIME (line 309) | SYS_TIMERFD_SETTIME = 311 constant SYS_TIMERFD_GETTIME (line 310) | SYS_TIMERFD_GETTIME = 312 constant SYS_SIGNALFD4 (line 311) | SYS_SIGNALFD4 = 313 constant SYS_EVENTFD2 (line 312) | SYS_EVENTFD2 = 314 constant SYS_EPOLL_CREATE1 (line 313) | SYS_EPOLL_CREATE1 = 315 constant SYS_DUP3 (line 314) | SYS_DUP3 = 316 constant SYS_PIPE2 (line 315) | SYS_PIPE2 = 317 constant SYS_INOTIFY_INIT1 (line 316) | SYS_INOTIFY_INIT1 = 318 constant SYS_PERF_EVENT_OPEN (line 317) | SYS_PERF_EVENT_OPEN = 319 constant SYS_PREADV (line 318) | SYS_PREADV = 320 constant SYS_PWRITEV (line 319) | SYS_PWRITEV = 321 constant SYS_RT_TGSIGQUEUEINFO (line 320) | SYS_RT_TGSIGQUEUEINFO = 322 constant SYS_FANOTIFY_INIT (line 321) | SYS_FANOTIFY_INIT = 323 constant SYS_FANOTIFY_MARK (line 322) | SYS_FANOTIFY_MARK = 324 constant SYS_PRLIMIT64 (line 323) | SYS_PRLIMIT64 = 325 constant SYS_SOCKET (line 324) | SYS_SOCKET = 326 constant SYS_BIND (line 325) | SYS_BIND = 327 constant SYS_CONNECT (line 326) | SYS_CONNECT = 328 constant SYS_LISTEN (line 327) | SYS_LISTEN = 329 constant SYS_ACCEPT (line 328) | SYS_ACCEPT = 330 constant SYS_GETSOCKNAME (line 329) | SYS_GETSOCKNAME = 331 constant SYS_GETPEERNAME (line 330) | SYS_GETPEERNAME = 332 constant SYS_SOCKETPAIR (line 331) | SYS_SOCKETPAIR = 333 constant SYS_SEND (line 332) | SYS_SEND = 334 constant SYS_SENDTO (line 333) | SYS_SENDTO = 335 constant SYS_RECV (line 334) | SYS_RECV = 336 constant SYS_RECVFROM (line 335) | SYS_RECVFROM = 337 constant SYS_SHUTDOWN (line 336) | SYS_SHUTDOWN = 338 constant SYS_SETSOCKOPT (line 337) | SYS_SETSOCKOPT = 339 constant SYS_GETSOCKOPT (line 338) | SYS_GETSOCKOPT = 340 constant SYS_SENDMSG (line 339) | SYS_SENDMSG = 341 constant SYS_RECVMSG (line 340) | SYS_RECVMSG = 342 constant SYS_RECVMMSG (line 341) | SYS_RECVMMSG = 343 constant SYS_ACCEPT4 (line 342) | SYS_ACCEPT4 = 344 constant SYS_NAME_TO_HANDLE_AT (line 343) | SYS_NAME_TO_HANDLE_AT = 345 constant SYS_OPEN_BY_HANDLE_AT (line 344) | SYS_OPEN_BY_HANDLE_AT = 346 constant SYS_CLOCK_ADJTIME (line 345) | SYS_CLOCK_ADJTIME = 347 constant SYS_SYNCFS (line 346) | SYS_SYNCFS = 348 constant SYS_SENDMMSG (line 347) | SYS_SENDMMSG = 349 constant SYS_SETNS (line 348) | SYS_SETNS = 350 constant SYS_PROCESS_VM_READV (line 349) | SYS_PROCESS_VM_READV = 351 constant SYS_PROCESS_VM_WRITEV (line 350) | SYS_PROCESS_VM_WRITEV = 352 constant SYS_FINIT_MODULE (line 351) | SYS_FINIT_MODULE = 353 constant SYS_KCMP (line 352) | SYS_KCMP = 354 constant SYS_SCHED_SETATTR (line 353) | SYS_SCHED_SETATTR = 355 constant SYS_SCHED_GETATTR (line 354) | SYS_SCHED_GETATTR = 356 constant SYS_RENAMEAT2 (line 355) | SYS_RENAMEAT2 = 357 constant SYS_SECCOMP (line 356) | SYS_SECCOMP = 358 constant SYS_GETRANDOM (line 357) | SYS_GETRANDOM = 359 constant SYS_MEMFD_CREATE (line 358) | SYS_MEMFD_CREATE = 360 constant SYS_BPF (line 359) | SYS_BPF = 361 constant SYS_EXECVEAT (line 360) | SYS_EXECVEAT = 362 constant SYS_SWITCH_ENDIAN (line 361) | SYS_SWITCH_ENDIAN = 363 constant SYS_USERFAULTFD (line 362) | SYS_USERFAULTFD = 364 constant SYS_MEMBARRIER (line 363) | SYS_MEMBARRIER = 365 constant SYS_MLOCK2 (line 364) | SYS_MLOCK2 = 378 constant SYS_COPY_FILE_RANGE (line 365) | SYS_COPY_FILE_RANGE = 379 constant SYS_PREADV2 (line 366) | SYS_PREADV2 = 380 constant SYS_PWRITEV2 (line 367) | SYS_PWRITEV2 = 381 constant SYS_KEXEC_FILE_LOAD (line 368) | SYS_KEXEC_FILE_LOAD = 382 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_RESTART_SYSCALL (line 15) | SYS_RESTART_SYSCALL = 7 constant SYS_CREAT (line 16) | SYS_CREAT = 8 constant SYS_LINK (line 17) | SYS_LINK = 9 constant SYS_UNLINK (line 18) | SYS_UNLINK = 10 constant SYS_EXECVE (line 19) | SYS_EXECVE = 11 constant SYS_CHDIR (line 20) | SYS_CHDIR = 12 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_LSEEK (line 23) | SYS_LSEEK = 19 constant SYS_GETPID (line 24) | SYS_GETPID = 20 constant SYS_MOUNT (line 25) | SYS_MOUNT = 21 constant SYS_UMOUNT (line 26) | SYS_UMOUNT = 22 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_ALARM (line 28) | SYS_ALARM = 27 constant SYS_PAUSE (line 29) | SYS_PAUSE = 29 constant SYS_UTIME (line 30) | SYS_UTIME = 30 constant SYS_ACCESS (line 31) | SYS_ACCESS = 33 constant SYS_NICE (line 32) | SYS_NICE = 34 constant SYS_SYNC (line 33) | SYS_SYNC = 36 constant SYS_KILL (line 34) | SYS_KILL = 37 constant SYS_RENAME (line 35) | SYS_RENAME = 38 constant SYS_MKDIR (line 36) | SYS_MKDIR = 39 constant SYS_RMDIR (line 37) | SYS_RMDIR = 40 constant SYS_DUP (line 38) | SYS_DUP = 41 constant SYS_PIPE (line 39) | SYS_PIPE = 42 constant SYS_TIMES (line 40) | SYS_TIMES = 43 constant SYS_BRK (line 41) | SYS_BRK = 45 constant SYS_SIGNAL (line 42) | SYS_SIGNAL = 48 constant SYS_ACCT (line 43) | SYS_ACCT = 51 constant SYS_UMOUNT2 (line 44) | SYS_UMOUNT2 = 52 constant SYS_IOCTL (line 45) | SYS_IOCTL = 54 constant SYS_FCNTL (line 46) | SYS_FCNTL = 55 constant SYS_SETPGID (line 47) | SYS_SETPGID = 57 constant SYS_UMASK (line 48) | SYS_UMASK = 60 constant SYS_CHROOT (line 49) | SYS_CHROOT = 61 constant SYS_USTAT (line 50) | SYS_USTAT = 62 constant SYS_DUP2 (line 51) | SYS_DUP2 = 63 constant SYS_GETPPID (line 52) | SYS_GETPPID = 64 constant SYS_GETPGRP (line 53) | SYS_GETPGRP = 65 constant SYS_SETSID (line 54) | SYS_SETSID = 66 constant SYS_SIGACTION (line 55) | SYS_SIGACTION = 67 constant SYS_SIGSUSPEND (line 56) | SYS_SIGSUSPEND = 72 constant SYS_SIGPENDING (line 57) | SYS_SIGPENDING = 73 constant SYS_SETHOSTNAME (line 58) | SYS_SETHOSTNAME = 74 constant SYS_SETRLIMIT (line 59) | SYS_SETRLIMIT = 75 constant SYS_GETRUSAGE (line 60) | SYS_GETRUSAGE = 77 constant SYS_GETTIMEOFDAY (line 61) | SYS_GETTIMEOFDAY = 78 constant SYS_SETTIMEOFDAY (line 62) | SYS_SETTIMEOFDAY = 79 constant SYS_SYMLINK (line 63) | SYS_SYMLINK = 83 constant SYS_READLINK (line 64) | SYS_READLINK = 85 constant SYS_USELIB (line 65) | SYS_USELIB = 86 constant SYS_SWAPON (line 66) | SYS_SWAPON = 87 constant SYS_REBOOT (line 67) | SYS_REBOOT = 88 constant SYS_READDIR (line 68) | SYS_READDIR = 89 constant SYS_MMAP (line 69) | SYS_MMAP = 90 constant SYS_MUNMAP (line 70) | SYS_MUNMAP = 91 constant SYS_TRUNCATE (line 71) | SYS_TRUNCATE = 92 constant SYS_FTRUNCATE (line 72) | SYS_FTRUNCATE = 93 constant SYS_FCHMOD (line 73) | SYS_FCHMOD = 94 constant SYS_GETPRIORITY (line 74) | SYS_GETPRIORITY = 96 constant SYS_SETPRIORITY (line 75) | SYS_SETPRIORITY = 97 constant SYS_STATFS (line 76) | SYS_STATFS = 99 constant SYS_FSTATFS (line 77) | SYS_FSTATFS = 100 constant SYS_SOCKETCALL (line 78) | SYS_SOCKETCALL = 102 constant SYS_SYSLOG (line 79) | SYS_SYSLOG = 103 constant SYS_SETITIMER (line 80) | SYS_SETITIMER = 104 constant SYS_GETITIMER (line 81) | SYS_GETITIMER = 105 constant SYS_STAT (line 82) | SYS_STAT = 106 constant SYS_LSTAT (line 83) | SYS_LSTAT = 107 constant SYS_FSTAT (line 84) | SYS_FSTAT = 108 constant SYS_LOOKUP_DCOOKIE (line 85) | SYS_LOOKUP_DCOOKIE = 110 constant SYS_VHANGUP (line 86) | SYS_VHANGUP = 111 constant SYS_IDLE (line 87) | SYS_IDLE = 112 constant SYS_WAIT4 (line 88) | SYS_WAIT4 = 114 constant SYS_SWAPOFF (line 89) | SYS_SWAPOFF = 115 constant SYS_SYSINFO (line 90) | SYS_SYSINFO = 116 constant SYS_IPC (line 91) | SYS_IPC = 117 constant SYS_FSYNC (line 92) | SYS_FSYNC = 118 constant SYS_SIGRETURN (line 93) | SYS_SIGRETURN = 119 constant SYS_CLONE (line 94) | SYS_CLONE = 120 constant SYS_SETDOMAINNAME (line 95) | SYS_SETDOMAINNAME = 121 constant SYS_UNAME (line 96) | SYS_UNAME = 122 constant SYS_ADJTIMEX (line 97) | SYS_ADJTIMEX = 124 constant SYS_MPROTECT (line 98) | SYS_MPROTECT = 125 constant SYS_SIGPROCMASK (line 99) | SYS_SIGPROCMASK = 126 constant SYS_CREATE_MODULE (line 100) | SYS_CREATE_MODULE = 127 constant SYS_INIT_MODULE (line 101) | SYS_INIT_MODULE = 128 constant SYS_DELETE_MODULE (line 102) | SYS_DELETE_MODULE = 129 constant SYS_GET_KERNEL_SYMS (line 103) | SYS_GET_KERNEL_SYMS = 130 constant SYS_QUOTACTL (line 104) | SYS_QUOTACTL = 131 constant SYS_GETPGID (line 105) | SYS_GETPGID = 132 constant SYS_FCHDIR (line 106) | SYS_FCHDIR = 133 constant SYS_BDFLUSH (line 107) | SYS_BDFLUSH = 134 constant SYS_SYSFS (line 108) | SYS_SYSFS = 135 constant SYS_PERSONALITY (line 109) | SYS_PERSONALITY = 136 constant SYS_AFS_SYSCALL (line 110) | SYS_AFS_SYSCALL = 137 constant SYS_GETDENTS (line 111) | SYS_GETDENTS = 141 constant SYS_FLOCK (line 112) | SYS_FLOCK = 143 constant SYS_MSYNC (line 113) | SYS_MSYNC = 144 constant SYS_READV (line 114) | SYS_READV = 145 constant SYS_WRITEV (line 115) | SYS_WRITEV = 146 constant SYS_GETSID (line 116) | SYS_GETSID = 147 constant SYS_FDATASYNC (line 117) | SYS_FDATASYNC = 148 constant SYS__SYSCTL (line 118) | SYS__SYSCTL = 149 constant SYS_MLOCK (line 119) | SYS_MLOCK = 150 constant SYS_MUNLOCK (line 120) | SYS_MUNLOCK = 151 constant SYS_MLOCKALL (line 121) | SYS_MLOCKALL = 152 constant SYS_MUNLOCKALL (line 122) | SYS_MUNLOCKALL = 153 constant SYS_SCHED_SETPARAM (line 123) | SYS_SCHED_SETPARAM = 154 constant SYS_SCHED_GETPARAM (line 124) | SYS_SCHED_GETPARAM = 155 constant SYS_SCHED_SETSCHEDULER (line 125) | SYS_SCHED_SETSCHEDULER = 156 constant SYS_SCHED_GETSCHEDULER (line 126) | SYS_SCHED_GETSCHEDULER = 157 constant SYS_SCHED_YIELD (line 127) | SYS_SCHED_YIELD = 158 constant SYS_SCHED_GET_PRIORITY_MAX (line 128) | SYS_SCHED_GET_PRIORITY_MAX = 159 constant SYS_SCHED_GET_PRIORITY_MIN (line 129) | SYS_SCHED_GET_PRIORITY_MIN = 160 constant SYS_SCHED_RR_GET_INTERVAL (line 130) | SYS_SCHED_RR_GET_INTERVAL = 161 constant SYS_NANOSLEEP (line 131) | SYS_NANOSLEEP = 162 constant SYS_MREMAP (line 132) | SYS_MREMAP = 163 constant SYS_QUERY_MODULE (line 133) | SYS_QUERY_MODULE = 167 constant SYS_POLL (line 134) | SYS_POLL = 168 constant SYS_NFSSERVCTL (line 135) | SYS_NFSSERVCTL = 169 constant SYS_PRCTL (line 136) | SYS_PRCTL = 172 constant SYS_RT_SIGRETURN (line 137) | SYS_RT_SIGRETURN = 173 constant SYS_RT_SIGACTION (line 138) | SYS_RT_SIGACTION = 174 constant SYS_RT_SIGPROCMASK (line 139) | SYS_RT_SIGPROCMASK = 175 constant SYS_RT_SIGPENDING (line 140) | SYS_RT_SIGPENDING = 176 constant SYS_RT_SIGTIMEDWAIT (line 141) | SYS_RT_SIGTIMEDWAIT = 177 constant SYS_RT_SIGQUEUEINFO (line 142) | SYS_RT_SIGQUEUEINFO = 178 constant SYS_RT_SIGSUSPEND (line 143) | SYS_RT_SIGSUSPEND = 179 constant SYS_PREAD64 (line 144) | SYS_PREAD64 = 180 constant SYS_PWRITE64 (line 145) | SYS_PWRITE64 = 181 constant SYS_GETCWD (line 146) | SYS_GETCWD = 183 constant SYS_CAPGET (line 147) | SYS_CAPGET = 184 constant SYS_CAPSET (line 148) | SYS_CAPSET = 185 constant SYS_SIGALTSTACK (line 149) | SYS_SIGALTSTACK = 186 constant SYS_SENDFILE (line 150) | SYS_SENDFILE = 187 constant SYS_GETPMSG (line 151) | SYS_GETPMSG = 188 constant SYS_PUTPMSG (line 152) | SYS_PUTPMSG = 189 constant SYS_VFORK (line 153) | SYS_VFORK = 190 constant SYS_PIVOT_ROOT (line 154) | SYS_PIVOT_ROOT = 217 constant SYS_MINCORE (line 155) | SYS_MINCORE = 218 constant SYS_MADVISE (line 156) | SYS_MADVISE = 219 constant SYS_GETDENTS64 (line 157) | SYS_GETDENTS64 = 220 constant SYS_READAHEAD (line 158) | SYS_READAHEAD = 222 constant SYS_SETXATTR (line 159) | SYS_SETXATTR = 224 constant SYS_LSETXATTR (line 160) | SYS_LSETXATTR = 225 constant SYS_FSETXATTR (line 161) | SYS_FSETXATTR = 226 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 227 constant SYS_LGETXATTR (line 163) | SYS_LGETXATTR = 228 constant SYS_FGETXATTR (line 164) | SYS_FGETXATTR = 229 constant SYS_LISTXATTR (line 165) | SYS_LISTXATTR = 230 constant SYS_LLISTXATTR (line 166) | SYS_LLISTXATTR = 231 constant SYS_FLISTXATTR (line 167) | SYS_FLISTXATTR = 232 constant SYS_REMOVEXATTR (line 168) | SYS_REMOVEXATTR = 233 constant SYS_LREMOVEXATTR (line 169) | SYS_LREMOVEXATTR = 234 constant SYS_FREMOVEXATTR (line 170) | SYS_FREMOVEXATTR = 235 constant SYS_GETTID (line 171) | SYS_GETTID = 236 constant SYS_TKILL (line 172) | SYS_TKILL = 237 constant SYS_FUTEX (line 173) | SYS_FUTEX = 238 constant SYS_SCHED_SETAFFINITY (line 174) | SYS_SCHED_SETAFFINITY = 239 constant SYS_SCHED_GETAFFINITY (line 175) | SYS_SCHED_GETAFFINITY = 240 constant SYS_TGKILL (line 176) | SYS_TGKILL = 241 constant SYS_IO_SETUP (line 177) | SYS_IO_SETUP = 243 constant SYS_IO_DESTROY (line 178) | SYS_IO_DESTROY = 244 constant SYS_IO_GETEVENTS (line 179) | SYS_IO_GETEVENTS = 245 constant SYS_IO_SUBMIT (line 180) | SYS_IO_SUBMIT = 246 constant SYS_IO_CANCEL (line 181) | SYS_IO_CANCEL = 247 constant SYS_EXIT_GROUP (line 182) | SYS_EXIT_GROUP = 248 constant SYS_EPOLL_CREATE (line 183) | SYS_EPOLL_CREATE = 249 constant SYS_EPOLL_CTL (line 184) | SYS_EPOLL_CTL = 250 constant SYS_EPOLL_WAIT (line 185) | SYS_EPOLL_WAIT = 251 constant SYS_SET_TID_ADDRESS (line 186) | SYS_SET_TID_ADDRESS = 252 constant SYS_FADVISE64 (line 187) | SYS_FADVISE64 = 253 constant SYS_TIMER_CREATE (line 188) | SYS_TIMER_CREATE = 254 constant SYS_TIMER_SETTIME (line 189) | SYS_TIMER_SETTIME = 255 constant SYS_TIMER_GETTIME (line 190) | SYS_TIMER_GETTIME = 256 constant SYS_TIMER_GETOVERRUN (line 191) | SYS_TIMER_GETOVERRUN = 257 constant SYS_TIMER_DELETE (line 192) | SYS_TIMER_DELETE = 258 constant SYS_CLOCK_SETTIME (line 193) | SYS_CLOCK_SETTIME = 259 constant SYS_CLOCK_GETTIME (line 194) | SYS_CLOCK_GETTIME = 260 constant SYS_CLOCK_GETRES (line 195) | SYS_CLOCK_GETRES = 261 constant SYS_CLOCK_NANOSLEEP (line 196) | SYS_CLOCK_NANOSLEEP = 262 constant SYS_STATFS64 (line 197) | SYS_STATFS64 = 265 constant SYS_FSTATFS64 (line 198) | SYS_FSTATFS64 = 266 constant SYS_REMAP_FILE_PAGES (line 199) | SYS_REMAP_FILE_PAGES = 267 constant SYS_MBIND (line 200) | SYS_MBIND = 268 constant SYS_GET_MEMPOLICY (line 201) | SYS_GET_MEMPOLICY = 269 constant SYS_SET_MEMPOLICY (line 202) | SYS_SET_MEMPOLICY = 270 constant SYS_MQ_OPEN (line 203) | SYS_MQ_OPEN = 271 constant SYS_MQ_UNLINK (line 204) | SYS_MQ_UNLINK = 272 constant SYS_MQ_TIMEDSEND (line 205) | SYS_MQ_TIMEDSEND = 273 constant SYS_MQ_TIMEDRECEIVE (line 206) | SYS_MQ_TIMEDRECEIVE = 274 constant SYS_MQ_NOTIFY (line 207) | SYS_MQ_NOTIFY = 275 constant SYS_MQ_GETSETATTR (line 208) | SYS_MQ_GETSETATTR = 276 constant SYS_KEXEC_LOAD (line 209) | SYS_KEXEC_LOAD = 277 constant SYS_ADD_KEY (line 210) | SYS_ADD_KEY = 278 constant SYS_REQUEST_KEY (line 211) | SYS_REQUEST_KEY = 279 constant SYS_KEYCTL (line 212) | SYS_KEYCTL = 280 constant SYS_WAITID (line 213) | SYS_WAITID = 281 constant SYS_IOPRIO_SET (line 214) | SYS_IOPRIO_SET = 282 constant SYS_IOPRIO_GET (line 215) | SYS_IOPRIO_GET = 283 constant SYS_INOTIFY_INIT (line 216) | SYS_INOTIFY_INIT = 284 constant SYS_INOTIFY_ADD_WATCH (line 217) | SYS_INOTIFY_ADD_WATCH = 285 constant SYS_INOTIFY_RM_WATCH (line 218) | SYS_INOTIFY_RM_WATCH = 286 constant SYS_MIGRATE_PAGES (line 219) | SYS_MIGRATE_PAGES = 287 constant SYS_OPENAT (line 220) | SYS_OPENAT = 288 constant SYS_MKDIRAT (line 221) | SYS_MKDIRAT = 289 constant SYS_MKNODAT (line 222) | SYS_MKNODAT = 290 constant SYS_FCHOWNAT (line 223) | SYS_FCHOWNAT = 291 constant SYS_FUTIMESAT (line 224) | SYS_FUTIMESAT = 292 constant SYS_UNLINKAT (line 225) | SYS_UNLINKAT = 294 constant SYS_RENAMEAT (line 226) | SYS_RENAMEAT = 295 constant SYS_LINKAT (line 227) | SYS_LINKAT = 296 constant SYS_SYMLINKAT (line 228) | SYS_SYMLINKAT = 297 constant SYS_READLINKAT (line 229) | SYS_READLINKAT = 298 constant SYS_FCHMODAT (line 230) | SYS_FCHMODAT = 299 constant SYS_FACCESSAT (line 231) | SYS_FACCESSAT = 300 constant SYS_PSELECT6 (line 232) | SYS_PSELECT6 = 301 constant SYS_PPOLL (line 233) | SYS_PPOLL = 302 constant SYS_UNSHARE (line 234) | SYS_UNSHARE = 303 constant SYS_SET_ROBUST_LIST (line 235) | SYS_SET_ROBUST_LIST = 304 constant SYS_GET_ROBUST_LIST (line 236) | SYS_GET_ROBUST_LIST = 305 constant SYS_SPLICE (line 237) | SYS_SPLICE = 306 constant SYS_SYNC_FILE_RANGE (line 238) | SYS_SYNC_FILE_RANGE = 307 constant SYS_TEE (line 239) | SYS_TEE = 308 constant SYS_VMSPLICE (line 240) | SYS_VMSPLICE = 309 constant SYS_MOVE_PAGES (line 241) | SYS_MOVE_PAGES = 310 constant SYS_GETCPU (line 242) | SYS_GETCPU = 311 constant SYS_EPOLL_PWAIT (line 243) | SYS_EPOLL_PWAIT = 312 constant SYS_UTIMES (line 244) | SYS_UTIMES = 313 constant SYS_FALLOCATE (line 245) | SYS_FALLOCATE = 314 constant SYS_UTIMENSAT (line 246) | SYS_UTIMENSAT = 315 constant SYS_SIGNALFD (line 247) | SYS_SIGNALFD = 316 constant SYS_TIMERFD (line 248) | SYS_TIMERFD = 317 constant SYS_EVENTFD (line 249) | SYS_EVENTFD = 318 constant SYS_TIMERFD_CREATE (line 250) | SYS_TIMERFD_CREATE = 319 constant SYS_TIMERFD_SETTIME (line 251) | SYS_TIMERFD_SETTIME = 320 constant SYS_TIMERFD_GETTIME (line 252) | SYS_TIMERFD_GETTIME = 321 constant SYS_SIGNALFD4 (line 253) | SYS_SIGNALFD4 = 322 constant SYS_EVENTFD2 (line 254) | SYS_EVENTFD2 = 323 constant SYS_INOTIFY_INIT1 (line 255) | SYS_INOTIFY_INIT1 = 324 constant SYS_PIPE2 (line 256) | SYS_PIPE2 = 325 constant SYS_DUP3 (line 257) | SYS_DUP3 = 326 constant SYS_EPOLL_CREATE1 (line 258) | SYS_EPOLL_CREATE1 = 327 constant SYS_PREADV (line 259) | SYS_PREADV = 328 constant SYS_PWRITEV (line 260) | SYS_PWRITEV = 329 constant SYS_RT_TGSIGQUEUEINFO (line 261) | SYS_RT_TGSIGQUEUEINFO = 330 constant SYS_PERF_EVENT_OPEN (line 262) | SYS_PERF_EVENT_OPEN = 331 constant SYS_FANOTIFY_INIT (line 263) | SYS_FANOTIFY_INIT = 332 constant SYS_FANOTIFY_MARK (line 264) | SYS_FANOTIFY_MARK = 333 constant SYS_PRLIMIT64 (line 265) | SYS_PRLIMIT64 = 334 constant SYS_NAME_TO_HANDLE_AT (line 266) | SYS_NAME_TO_HANDLE_AT = 335 constant SYS_OPEN_BY_HANDLE_AT (line 267) | SYS_OPEN_BY_HANDLE_AT = 336 constant SYS_CLOCK_ADJTIME (line 268) | SYS_CLOCK_ADJTIME = 337 constant SYS_SYNCFS (line 269) | SYS_SYNCFS = 338 constant SYS_SETNS (line 270) | SYS_SETNS = 339 constant SYS_PROCESS_VM_READV (line 271) | SYS_PROCESS_VM_READV = 340 constant SYS_PROCESS_VM_WRITEV (line 272) | SYS_PROCESS_VM_WRITEV = 341 constant SYS_S390_RUNTIME_INSTR (line 273) | SYS_S390_RUNTIME_INSTR = 342 constant SYS_KCMP (line 274) | SYS_KCMP = 343 constant SYS_FINIT_MODULE (line 275) | SYS_FINIT_MODULE = 344 constant SYS_SCHED_SETATTR (line 276) | SYS_SCHED_SETATTR = 345 constant SYS_SCHED_GETATTR (line 277) | SYS_SCHED_GETATTR = 346 constant SYS_RENAMEAT2 (line 278) | SYS_RENAMEAT2 = 347 constant SYS_SECCOMP (line 279) | SYS_SECCOMP = 348 constant SYS_GETRANDOM (line 280) | SYS_GETRANDOM = 349 constant SYS_MEMFD_CREATE (line 281) | SYS_MEMFD_CREATE = 350 constant SYS_BPF (line 282) | SYS_BPF = 351 constant SYS_S390_PCI_MMIO_WRITE (line 283) | SYS_S390_PCI_MMIO_WRITE = 352 constant SYS_S390_PCI_MMIO_READ (line 284) | SYS_S390_PCI_MMIO_READ = 353 constant SYS_EXECVEAT (line 285) | SYS_EXECVEAT = 354 constant SYS_USERFAULTFD (line 286) | SYS_USERFAULTFD = 355 constant SYS_MEMBARRIER (line 287) | SYS_MEMBARRIER = 356 constant SYS_RECVMMSG (line 288) | SYS_RECVMMSG = 357 constant SYS_SENDMMSG (line 289) | SYS_SENDMMSG = 358 constant SYS_SOCKET (line 290) | SYS_SOCKET = 359 constant SYS_SOCKETPAIR (line 291) | SYS_SOCKETPAIR = 360 constant SYS_BIND (line 292) | SYS_BIND = 361 constant SYS_CONNECT (line 293) | SYS_CONNECT = 362 constant SYS_LISTEN (line 294) | SYS_LISTEN = 363 constant SYS_ACCEPT4 (line 295) | SYS_ACCEPT4 = 364 constant SYS_GETSOCKOPT (line 296) | SYS_GETSOCKOPT = 365 constant SYS_SETSOCKOPT (line 297) | SYS_SETSOCKOPT = 366 constant SYS_GETSOCKNAME (line 298) | SYS_GETSOCKNAME = 367 constant SYS_GETPEERNAME (line 299) | SYS_GETPEERNAME = 368 constant SYS_SENDTO (line 300) | SYS_SENDTO = 369 constant SYS_SENDMSG (line 301) | SYS_SENDMSG = 370 constant SYS_RECVFROM (line 302) | SYS_RECVFROM = 371 constant SYS_RECVMSG (line 303) | SYS_RECVMSG = 372 constant SYS_SHUTDOWN (line 304) | SYS_SHUTDOWN = 373 constant SYS_MLOCK2 (line 305) | SYS_MLOCK2 = 374 constant SYS_COPY_FILE_RANGE (line 306) | SYS_COPY_FILE_RANGE = 375 constant SYS_PREADV2 (line 307) | SYS_PREADV2 = 376 constant SYS_PWRITEV2 (line 308) | SYS_PWRITEV2 = 377 constant SYS_SELECT (line 309) | SYS_SELECT = 142 constant SYS_GETRLIMIT (line 310) | SYS_GETRLIMIT = 191 constant SYS_LCHOWN (line 311) | SYS_LCHOWN = 198 constant SYS_GETUID (line 312) | SYS_GETUID = 199 constant SYS_GETGID (line 313) | SYS_GETGID = 200 constant SYS_GETEUID (line 314) | SYS_GETEUID = 201 constant SYS_GETEGID (line 315) | SYS_GETEGID = 202 constant SYS_SETREUID (line 316) | SYS_SETREUID = 203 constant SYS_SETREGID (line 317) | SYS_SETREGID = 204 constant SYS_GETGROUPS (line 318) | SYS_GETGROUPS = 205 constant SYS_SETGROUPS (line 319) | SYS_SETGROUPS = 206 constant SYS_FCHOWN (line 320) | SYS_FCHOWN = 207 constant SYS_SETRESUID (line 321) | SYS_SETRESUID = 208 constant SYS_GETRESUID (line 322) | SYS_GETRESUID = 209 constant SYS_SETRESGID (line 323) | SYS_SETRESGID = 210 constant SYS_GETRESGID (line 324) | SYS_GETRESGID = 211 constant SYS_CHOWN (line 325) | SYS_CHOWN = 212 constant SYS_SETUID (line 326) | SYS_SETUID = 213 constant SYS_SETGID (line 327) | SYS_SETGID = 214 constant SYS_SETFSUID (line 328) | SYS_SETFSUID = 215 constant SYS_SETFSGID (line 329) | SYS_SETFSGID = 216 constant SYS_NEWFSTATAT (line 330) | SYS_NEWFSTATAT = 293 FILE: vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go constant SYS_RESTART_SYSCALL (line 9) | SYS_RESTART_SYSCALL = 0 constant SYS_EXIT (line 10) | SYS_EXIT = 1 constant SYS_FORK (line 11) | SYS_FORK = 2 constant SYS_READ (line 12) | SYS_READ = 3 constant SYS_WRITE (line 13) | SYS_WRITE = 4 constant SYS_OPEN (line 14) | SYS_OPEN = 5 constant SYS_CLOSE (line 15) | SYS_CLOSE = 6 constant SYS_WAIT4 (line 16) | SYS_WAIT4 = 7 constant SYS_CREAT (line 17) | SYS_CREAT = 8 constant SYS_LINK (line 18) | SYS_LINK = 9 constant SYS_UNLINK (line 19) | SYS_UNLINK = 10 constant SYS_EXECV (line 20) | SYS_EXECV = 11 constant SYS_CHDIR (line 21) | SYS_CHDIR = 12 constant SYS_CHOWN (line 22) | SYS_CHOWN = 13 constant SYS_MKNOD (line 23) | SYS_MKNOD = 14 constant SYS_CHMOD (line 24) | SYS_CHMOD = 15 constant SYS_LCHOWN (line 25) | SYS_LCHOWN = 16 constant SYS_BRK (line 26) | SYS_BRK = 17 constant SYS_PERFCTR (line 27) | SYS_PERFCTR = 18 constant SYS_LSEEK (line 28) | SYS_LSEEK = 19 constant SYS_GETPID (line 29) | SYS_GETPID = 20 constant SYS_CAPGET (line 30) | SYS_CAPGET = 21 constant SYS_CAPSET (line 31) | SYS_CAPSET = 22 constant SYS_SETUID (line 32) | SYS_SETUID = 23 constant SYS_GETUID (line 33) | SYS_GETUID = 24 constant SYS_VMSPLICE (line 34) | SYS_VMSPLICE = 25 constant SYS_PTRACE (line 35) | SYS_PTRACE = 26 constant SYS_ALARM (line 36) | SYS_ALARM = 27 constant SYS_SIGALTSTACK (line 37) | SYS_SIGALTSTACK = 28 constant SYS_PAUSE (line 38) | SYS_PAUSE = 29 constant SYS_UTIME (line 39) | SYS_UTIME = 30 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_NICE (line 41) | SYS_NICE = 34 constant SYS_SYNC (line 42) | SYS_SYNC = 36 constant SYS_KILL (line 43) | SYS_KILL = 37 constant SYS_STAT (line 44) | SYS_STAT = 38 constant SYS_SENDFILE (line 45) | SYS_SENDFILE = 39 constant SYS_LSTAT (line 46) | SYS_LSTAT = 40 constant SYS_DUP (line 47) | SYS_DUP = 41 constant SYS_PIPE (line 48) | SYS_PIPE = 42 constant SYS_TIMES (line 49) | SYS_TIMES = 43 constant SYS_UMOUNT2 (line 50) | SYS_UMOUNT2 = 45 constant SYS_SETGID (line 51) | SYS_SETGID = 46 constant SYS_GETGID (line 52) | SYS_GETGID = 47 constant SYS_SIGNAL (line 53) | SYS_SIGNAL = 48 constant SYS_GETEUID (line 54) | SYS_GETEUID = 49 constant SYS_GETEGID (line 55) | SYS_GETEGID = 50 constant SYS_ACCT (line 56) | SYS_ACCT = 51 constant SYS_MEMORY_ORDERING (line 57) | SYS_MEMORY_ORDERING = 52 constant SYS_IOCTL (line 58) | SYS_IOCTL = 54 constant SYS_REBOOT (line 59) | SYS_REBOOT = 55 constant SYS_SYMLINK (line 60) | SYS_SYMLINK = 57 constant SYS_READLINK (line 61) | SYS_READLINK = 58 constant SYS_EXECVE (line 62) | SYS_EXECVE = 59 constant SYS_UMASK (line 63) | SYS_UMASK = 60 constant SYS_CHROOT (line 64) | SYS_CHROOT = 61 constant SYS_FSTAT (line 65) | SYS_FSTAT = 62 constant SYS_FSTAT64 (line 66) | SYS_FSTAT64 = 63 constant SYS_GETPAGESIZE (line 67) | SYS_GETPAGESIZE = 64 constant SYS_MSYNC (line 68) | SYS_MSYNC = 65 constant SYS_VFORK (line 69) | SYS_VFORK = 66 constant SYS_PREAD64 (line 70) | SYS_PREAD64 = 67 constant SYS_PWRITE64 (line 71) | SYS_PWRITE64 = 68 constant SYS_MMAP (line 72) | SYS_MMAP = 71 constant SYS_MUNMAP (line 73) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 74) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 75) | SYS_MADVISE = 75 constant SYS_VHANGUP (line 76) | SYS_VHANGUP = 76 constant SYS_MINCORE (line 77) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 78) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 79) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 80) | SYS_GETPGRP = 81 constant SYS_SETITIMER (line 81) | SYS_SETITIMER = 83 constant SYS_SWAPON (line 82) | SYS_SWAPON = 85 constant SYS_GETITIMER (line 83) | SYS_GETITIMER = 86 constant SYS_SETHOSTNAME (line 84) | SYS_SETHOSTNAME = 88 constant SYS_DUP2 (line 85) | SYS_DUP2 = 90 constant SYS_FCNTL (line 86) | SYS_FCNTL = 92 constant SYS_SELECT (line 87) | SYS_SELECT = 93 constant SYS_FSYNC (line 88) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 89) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 90) | SYS_SOCKET = 97 constant SYS_CONNECT (line 91) | SYS_CONNECT = 98 constant SYS_ACCEPT (line 92) | SYS_ACCEPT = 99 constant SYS_GETPRIORITY (line 93) | SYS_GETPRIORITY = 100 constant SYS_RT_SIGRETURN (line 94) | SYS_RT_SIGRETURN = 101 constant SYS_RT_SIGACTION (line 95) | SYS_RT_SIGACTION = 102 constant SYS_RT_SIGPROCMASK (line 96) | SYS_RT_SIGPROCMASK = 103 constant SYS_RT_SIGPENDING (line 97) | SYS_RT_SIGPENDING = 104 constant SYS_RT_SIGTIMEDWAIT (line 98) | SYS_RT_SIGTIMEDWAIT = 105 constant SYS_RT_SIGQUEUEINFO (line 99) | SYS_RT_SIGQUEUEINFO = 106 constant SYS_RT_SIGSUSPEND (line 100) | SYS_RT_SIGSUSPEND = 107 constant SYS_SETRESUID (line 101) | SYS_SETRESUID = 108 constant SYS_GETRESUID (line 102) | SYS_GETRESUID = 109 constant SYS_SETRESGID (line 103) | SYS_SETRESGID = 110 constant SYS_GETRESGID (line 104) | SYS_GETRESGID = 111 constant SYS_RECVMSG (line 105) | SYS_RECVMSG = 113 constant SYS_SENDMSG (line 106) | SYS_SENDMSG = 114 constant SYS_GETTIMEOFDAY (line 107) | SYS_GETTIMEOFDAY = 116 constant SYS_GETRUSAGE (line 108) | SYS_GETRUSAGE = 117 constant SYS_GETSOCKOPT (line 109) | SYS_GETSOCKOPT = 118 constant SYS_GETCWD (line 110) | SYS_GETCWD = 119 constant SYS_READV (line 111) | SYS_READV = 120 constant SYS_WRITEV (line 112) | SYS_WRITEV = 121 constant SYS_SETTIMEOFDAY (line 113) | SYS_SETTIMEOFDAY = 122 constant SYS_FCHOWN (line 114) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 115) | SYS_FCHMOD = 124 constant SYS_RECVFROM (line 116) | SYS_RECVFROM = 125 constant SYS_SETREUID (line 117) | SYS_SETREUID = 126 constant SYS_SETREGID (line 118) | SYS_SETREGID = 127 constant SYS_RENAME (line 119) | SYS_RENAME = 128 constant SYS_TRUNCATE (line 120) | SYS_TRUNCATE = 129 constant SYS_FTRUNCATE (line 121) | SYS_FTRUNCATE = 130 constant SYS_FLOCK (line 122) | SYS_FLOCK = 131 constant SYS_LSTAT64 (line 123) | SYS_LSTAT64 = 132 constant SYS_SENDTO (line 124) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 125) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 126) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 127) | SYS_MKDIR = 136 constant SYS_RMDIR (line 128) | SYS_RMDIR = 137 constant SYS_UTIMES (line 129) | SYS_UTIMES = 138 constant SYS_STAT64 (line 130) | SYS_STAT64 = 139 constant SYS_SENDFILE64 (line 131) | SYS_SENDFILE64 = 140 constant SYS_GETPEERNAME (line 132) | SYS_GETPEERNAME = 141 constant SYS_FUTEX (line 133) | SYS_FUTEX = 142 constant SYS_GETTID (line 134) | SYS_GETTID = 143 constant SYS_GETRLIMIT (line 135) | SYS_GETRLIMIT = 144 constant SYS_SETRLIMIT (line 136) | SYS_SETRLIMIT = 145 constant SYS_PIVOT_ROOT (line 137) | SYS_PIVOT_ROOT = 146 constant SYS_PRCTL (line 138) | SYS_PRCTL = 147 constant SYS_PCICONFIG_READ (line 139) | SYS_PCICONFIG_READ = 148 constant SYS_PCICONFIG_WRITE (line 140) | SYS_PCICONFIG_WRITE = 149 constant SYS_GETSOCKNAME (line 141) | SYS_GETSOCKNAME = 150 constant SYS_INOTIFY_INIT (line 142) | SYS_INOTIFY_INIT = 151 constant SYS_INOTIFY_ADD_WATCH (line 143) | SYS_INOTIFY_ADD_WATCH = 152 constant SYS_POLL (line 144) | SYS_POLL = 153 constant SYS_GETDENTS64 (line 145) | SYS_GETDENTS64 = 154 constant SYS_INOTIFY_RM_WATCH (line 146) | SYS_INOTIFY_RM_WATCH = 156 constant SYS_STATFS (line 147) | SYS_STATFS = 157 constant SYS_FSTATFS (line 148) | SYS_FSTATFS = 158 constant SYS_UMOUNT (line 149) | SYS_UMOUNT = 159 constant SYS_SCHED_SET_AFFINITY (line 150) | SYS_SCHED_SET_AFFINITY = 160 constant SYS_SCHED_GET_AFFINITY (line 151) | SYS_SCHED_GET_AFFINITY = 161 constant SYS_GETDOMAINNAME (line 152) | SYS_GETDOMAINNAME = 162 constant SYS_SETDOMAINNAME (line 153) | SYS_SETDOMAINNAME = 163 constant SYS_UTRAP_INSTALL (line 154) | SYS_UTRAP_INSTALL = 164 constant SYS_QUOTACTL (line 155) | SYS_QUOTACTL = 165 constant SYS_SET_TID_ADDRESS (line 156) | SYS_SET_TID_ADDRESS = 166 constant SYS_MOUNT (line 157) | SYS_MOUNT = 167 constant SYS_USTAT (line 158) | SYS_USTAT = 168 constant SYS_SETXATTR (line 159) | SYS_SETXATTR = 169 constant SYS_LSETXATTR (line 160) | SYS_LSETXATTR = 170 constant SYS_FSETXATTR (line 161) | SYS_FSETXATTR = 171 constant SYS_GETXATTR (line 162) | SYS_GETXATTR = 172 constant SYS_LGETXATTR (line 163) | SYS_LGETXATTR = 173 constant SYS_GETDENTS (line 164) | SYS_GETDENTS = 174 constant SYS_SETSID (line 165) | SYS_SETSID = 175 constant SYS_FCHDIR (line 166) | SYS_FCHDIR = 176 constant SYS_FGETXATTR (line 167) | SYS_FGETXATTR = 177 constant SYS_LISTXATTR (line 168) | SYS_LISTXATTR = 178 constant SYS_LLISTXATTR (line 169) | SYS_LLISTXATTR = 179 constant SYS_FLISTXATTR (line 170) | SYS_FLISTXATTR = 180 constant SYS_REMOVEXATTR (line 171) | SYS_REMOVEXATTR = 181 constant SYS_LREMOVEXATTR (line 172) | SYS_LREMOVEXATTR = 182 constant SYS_SIGPENDING (line 173) | SYS_SIGPENDING = 183 constant SYS_QUERY_MODULE (line 174) | SYS_QUERY_MODULE = 184 constant SYS_SETPGID (line 175) | SYS_SETPGID = 185 constant SYS_FREMOVEXATTR (line 176) | SYS_FREMOVEXATTR = 186 constant SYS_TKILL (line 177) | SYS_TKILL = 187 constant SYS_EXIT_GROUP (line 178) | SYS_EXIT_GROUP = 188 constant SYS_UNAME (line 179) | SYS_UNAME = 189 constant SYS_INIT_MODULE (line 180) | SYS_INIT_MODULE = 190 constant SYS_PERSONALITY (line 181) | SYS_PERSONALITY = 191 constant SYS_REMAP_FILE_PAGES (line 182) | SYS_REMAP_FILE_PAGES = 192 constant SYS_EPOLL_CREATE (line 183) | SYS_EPOLL_CREATE = 193 constant SYS_EPOLL_CTL (line 184) | SYS_EPOLL_CTL = 194 constant SYS_EPOLL_WAIT (line 185) | SYS_EPOLL_WAIT = 195 constant SYS_IOPRIO_SET (line 186) | SYS_IOPRIO_SET = 196 constant SYS_GETPPID (line 187) | SYS_GETPPID = 197 constant SYS_SIGACTION (line 188) | SYS_SIGACTION = 198 constant SYS_SGETMASK (line 189) | SYS_SGETMASK = 199 constant SYS_SSETMASK (line 190) | SYS_SSETMASK = 200 constant SYS_SIGSUSPEND (line 191) | SYS_SIGSUSPEND = 201 constant SYS_OLDLSTAT (line 192) | SYS_OLDLSTAT = 202 constant SYS_USELIB (line 193) | SYS_USELIB = 203 constant SYS_READDIR (line 194) | SYS_READDIR = 204 constant SYS_READAHEAD (line 195) | SYS_READAHEAD = 205 constant SYS_SOCKETCALL (line 196) | SYS_SOCKETCALL = 206 constant SYS_SYSLOG (line 197) | SYS_SYSLOG = 207 constant SYS_LOOKUP_DCOOKIE (line 198) | SYS_LOOKUP_DCOOKIE = 208 constant SYS_FADVISE64 (line 199) | SYS_FADVISE64 = 209 constant SYS_FADVISE64_64 (line 200) | SYS_FADVISE64_64 = 210 constant SYS_TGKILL (line 201) | SYS_TGKILL = 211 constant SYS_WAITPID (line 202) | SYS_WAITPID = 212 constant SYS_SWAPOFF (line 203) | SYS_SWAPOFF = 213 constant SYS_SYSINFO (line 204) | SYS_SYSINFO = 214 constant SYS_IPC (line 205) | SYS_IPC = 215 constant SYS_SIGRETURN (line 206) | SYS_SIGRETURN = 216 constant SYS_CLONE (line 207) | SYS_CLONE = 217 constant SYS_IOPRIO_GET (line 208) | SYS_IOPRIO_GET = 218 constant SYS_ADJTIMEX (line 209) | SYS_ADJTIMEX = 219 constant SYS_SIGPROCMASK (line 210) | SYS_SIGPROCMASK = 220 constant SYS_CREATE_MODULE (line 211) | SYS_CREATE_MODULE = 221 constant SYS_DELETE_MODULE (line 212) | SYS_DELETE_MODULE = 222 constant SYS_GET_KERNEL_SYMS (line 213) | SYS_GET_KERNEL_SYMS = 223 constant SYS_GETPGID (line 214) | SYS_GETPGID = 224 constant SYS_BDFLUSH (line 215) | SYS_BDFLUSH = 225 constant SYS_SYSFS (line 216) | SYS_SYSFS = 226 constant SYS_AFS_SYSCALL (line 217) | SYS_AFS_SYSCALL = 227 constant SYS_SETFSUID (line 218) | SYS_SETFSUID = 228 constant SYS_SETFSGID (line 219) | SYS_SETFSGID = 229 constant SYS__NEWSELECT (line 220) | SYS__NEWSELECT = 230 constant SYS_SPLICE (line 221) | SYS_SPLICE = 232 constant SYS_STIME (line 222) | SYS_STIME = 233 constant SYS_STATFS64 (line 223) | SYS_STATFS64 = 234 constant SYS_FSTATFS64 (line 224) | SYS_FSTATFS64 = 235 constant SYS__LLSEEK (line 225) | SYS__LLSEEK = 236 constant SYS_MLOCK (line 226) | SYS_MLOCK = 237 constant SYS_MUNLOCK (line 227) | SYS_MUNLOCK = 238 constant SYS_MLOCKALL (line 228) | SYS_MLOCKALL = 239 constant SYS_MUNLOCKALL (line 229) | SYS_MUNLOCKALL = 240 constant SYS_SCHED_SETPARAM (line 230) | SYS_SCHED_SETPARAM = 241 constant SYS_SCHED_GETPARAM (line 231) | SYS_SCHED_GETPARAM = 242 constant SYS_SCHED_SETSCHEDULER (line 232) | SYS_SCHED_SETSCHEDULER = 243 constant SYS_SCHED_GETSCHEDULER (line 233) | SYS_SCHED_GETSCHEDULER = 244 constant SYS_SCHED_YIELD (line 234) | SYS_SCHED_YIELD = 245 constant SYS_SCHED_GET_PRIORITY_MAX (line 235) | SYS_SCHED_GET_PRIORITY_MAX = 246 constant SYS_SCHED_GET_PRIORITY_MIN (line 236) | SYS_SCHED_GET_PRIORITY_MIN = 247 constant SYS_SCHED_RR_GET_INTERVAL (line 237) | SYS_SCHED_RR_GET_INTERVAL = 248 constant SYS_NANOSLEEP (line 238) | SYS_NANOSLEEP = 249 constant SYS_MREMAP (line 239) | SYS_MREMAP = 250 constant SYS__SYSCTL (line 240) | SYS__SYSCTL = 251 constant SYS_GETSID (line 241) | SYS_GETSID = 252 constant SYS_FDATASYNC (line 242) | SYS_FDATASYNC = 253 constant SYS_NFSSERVCTL (line 243) | SYS_NFSSERVCTL = 254 constant SYS_SYNC_FILE_RANGE (line 244) | SYS_SYNC_FILE_RANGE = 255 constant SYS_CLOCK_SETTIME (line 245) | SYS_CLOCK_SETTIME = 256 constant SYS_CLOCK_GETTIME (line 246) | SYS_CLOCK_GETTIME = 257 constant SYS_CLOCK_GETRES (line 247) | SYS_CLOCK_GETRES = 258 constant SYS_CLOCK_NANOSLEEP (line 248) | SYS_CLOCK_NANOSLEEP = 259 constant SYS_SCHED_GETAFFINITY (line 249) | SYS_SCHED_GETAFFINITY = 260 constant SYS_SCHED_SETAFFINITY (line 250) | SYS_SCHED_SETAFFINITY = 261 constant SYS_TIMER_SETTIME (line 251) | SYS_TIMER_SETTIME = 262 constant SYS_TIMER_GETTIME (line 252) | SYS_TIMER_GETTIME = 263 constant SYS_TIMER_GETOVERRUN (line 253) | SYS_TIMER_GETOVERRUN = 264 constant SYS_TIMER_DELETE (line 254) | SYS_TIMER_DELETE = 265 constant SYS_TIMER_CREATE (line 255) | SYS_TIMER_CREATE = 266 constant SYS_IO_SETUP (line 256) | SYS_IO_SETUP = 268 constant SYS_IO_DESTROY (line 257) | SYS_IO_DESTROY = 269 constant SYS_IO_SUBMIT (line 258) | SYS_IO_SUBMIT = 270 constant SYS_IO_CANCEL (line 259) | SYS_IO_CANCEL = 271 constant SYS_IO_GETEVENTS (line 260) | SYS_IO_GETEVENTS = 272 constant SYS_MQ_OPEN (line 261) | SYS_MQ_OPEN = 273 constant SYS_MQ_UNLINK (line 262) | SYS_MQ_UNLINK = 274 constant SYS_MQ_TIMEDSEND (line 263) | SYS_MQ_TIMEDSEND = 275 constant SYS_MQ_TIMEDRECEIVE (line 264) | SYS_MQ_TIMEDRECEIVE = 276 constant SYS_MQ_NOTIFY (line 265) | SYS_MQ_NOTIFY = 277 constant SYS_MQ_GETSETATTR (line 266) | SYS_MQ_GETSETATTR = 278 constant SYS_WAITID (line 267) | SYS_WAITID = 279 constant SYS_TEE (line 268) | SYS_TEE = 280 constant SYS_ADD_KEY (line 269) | SYS_ADD_KEY = 281 constant SYS_REQUEST_KEY (line 270) | SYS_REQUEST_KEY = 282 constant SYS_KEYCTL (line 271) | SYS_KEYCTL = 283 constant SYS_OPENAT (line 272) | SYS_OPENAT = 284 constant SYS_MKDIRAT (line 273) | SYS_MKDIRAT = 285 constant SYS_MKNODAT (line 274) | SYS_MKNODAT = 286 constant SYS_FCHOWNAT (line 275) | SYS_FCHOWNAT = 287 constant SYS_FUTIMESAT (line 276) | SYS_FUTIMESAT = 288 constant SYS_FSTATAT64 (line 277) | SYS_FSTATAT64 = 289 constant SYS_UNLINKAT (line 278) | SYS_UNLINKAT = 290 constant SYS_RENAMEAT (line 279) | SYS_RENAMEAT = 291 constant SYS_LINKAT (line 280) | SYS_LINKAT = 292 constant SYS_SYMLINKAT (line 281) | SYS_SYMLINKAT = 293 constant SYS_READLINKAT (line 282) | SYS_READLINKAT = 294 constant SYS_FCHMODAT (line 283) | SYS_FCHMODAT = 295 constant SYS_FACCESSAT (line 284) | SYS_FACCESSAT = 296 constant SYS_PSELECT6 (line 285) | SYS_PSELECT6 = 297 constant SYS_PPOLL (line 286) | SYS_PPOLL = 298 constant SYS_UNSHARE (line 287) | SYS_UNSHARE = 299 constant SYS_SET_ROBUST_LIST (line 288) | SYS_SET_ROBUST_LIST = 300 constant SYS_GET_ROBUST_LIST (line 289) | SYS_GET_ROBUST_LIST = 301 constant SYS_MIGRATE_PAGES (line 290) | SYS_MIGRATE_PAGES = 302 constant SYS_MBIND (line 291) | SYS_MBIND = 303 constant SYS_GET_MEMPOLICY (line 292) | SYS_GET_MEMPOLICY = 304 constant SYS_SET_MEMPOLICY (line 293) | SYS_SET_MEMPOLICY = 305 constant SYS_KEXEC_LOAD (line 294) | SYS_KEXEC_LOAD = 306 constant SYS_MOVE_PAGES (line 295) | SYS_MOVE_PAGES = 307 constant SYS_GETCPU (line 296) | SYS_GETCPU = 308 constant SYS_EPOLL_PWAIT (line 297) | SYS_EPOLL_PWAIT = 309 constant SYS_UTIMENSAT (line 298) | SYS_UTIMENSAT = 310 constant SYS_SIGNALFD (line 299) | SYS_SIGNALFD = 311 constant SYS_TIMERFD_CREATE (line 300) | SYS_TIMERFD_CREATE = 312 constant SYS_EVENTFD (line 301) | SYS_EVENTFD = 313 constant SYS_FALLOCATE (line 302) | SYS_FALLOCATE = 314 constant SYS_TIMERFD_SETTIME (line 303) | SYS_TIMERFD_SETTIME = 315 constant SYS_TIMERFD_GETTIME (line 304) | SYS_TIMERFD_GETTIME = 316 constant SYS_SIGNALFD4 (line 305) | SYS_SIGNALFD4 = 317 constant SYS_EVENTFD2 (line 306) | SYS_EVENTFD2 = 318 constant SYS_EPOLL_CREATE1 (line 307) | SYS_EPOLL_CREATE1 = 319 constant SYS_DUP3 (line 308) | SYS_DUP3 = 320 constant SYS_PIPE2 (line 309) | SYS_PIPE2 = 321 constant SYS_INOTIFY_INIT1 (line 310) | SYS_INOTIFY_INIT1 = 322 constant SYS_ACCEPT4 (line 311) | SYS_ACCEPT4 = 323 constant SYS_PREADV (line 312) | SYS_PREADV = 324 constant SYS_PWRITEV (line 313) | SYS_PWRITEV = 325 constant SYS_RT_TGSIGQUEUEINFO (line 314) | SYS_RT_TGSIGQUEUEINFO = 326 constant SYS_PERF_EVENT_OPEN (line 315) | SYS_PERF_EVENT_OPEN = 327 constant SYS_RECVMMSG (line 316) | SYS_RECVMMSG = 328 constant SYS_FANOTIFY_INIT (line 317) | SYS_FANOTIFY_INIT = 329 constant SYS_FANOTIFY_MARK (line 318) | SYS_FANOTIFY_MARK = 330 constant SYS_PRLIMIT64 (line 319) | SYS_PRLIMIT64 = 331 constant SYS_NAME_TO_HANDLE_AT (line 320) | SYS_NAME_TO_HANDLE_AT = 332 constant SYS_OPEN_BY_HANDLE_AT (line 321) | SYS_OPEN_BY_HANDLE_AT = 333 constant SYS_CLOCK_ADJTIME (line 322) | SYS_CLOCK_ADJTIME = 334 constant SYS_SYNCFS (line 323) | SYS_SYNCFS = 335 constant SYS_SENDMMSG (line 324) | SYS_SENDMMSG = 336 constant SYS_SETNS (line 325) | SYS_SETNS = 337 constant SYS_PROCESS_VM_READV (line 326) | SYS_PROCESS_VM_READV = 338 constant SYS_PROCESS_VM_WRITEV (line 327) | SYS_PROCESS_VM_WRITEV = 339 constant SYS_KERN_FEATURES (line 328) | SYS_KERN_FEATURES = 340 constant SYS_KCMP (line 329) | SYS_KCMP = 341 constant SYS_FINIT_MODULE (line 330) | SYS_FINIT_MODULE = 342 constant SYS_SCHED_SETATTR (line 331) | SYS_SCHED_SETATTR = 343 constant SYS_SCHED_GETATTR (line 332) | SYS_SCHED_GETATTR = 344 constant SYS_RENAMEAT2 (line 333) | SYS_RENAMEAT2 = 345 constant SYS_SECCOMP (line 334) | SYS_SECCOMP = 346 constant SYS_GETRANDOM (line 335) | SYS_GETRANDOM = 347 constant SYS_MEMFD_CREATE (line 336) | SYS_MEMFD_CREATE = 348 constant SYS_BPF (line 337) | SYS_BPF = 349 constant SYS_EXECVEAT (line 338) | SYS_EXECVEAT = 350 constant SYS_MEMBARRIER (line 339) | SYS_MEMBARRIER = 351 constant SYS_USERFAULTFD (line 340) | SYS_USERFAULTFD = 352 constant SYS_BIND (line 341) | SYS_BIND = 353 constant SYS_LISTEN (line 342) | SYS_LISTEN = 354 constant SYS_SETSOCKOPT (line 343) | SYS_SETSOCKOPT = 355 constant SYS_MLOCK2 (line 344) | SYS_MLOCK2 = 356 constant SYS_COPY_FILE_RANGE (line 345) | SYS_COPY_FILE_RANGE = 357 constant SYS_PREADV2 (line 346) | SYS_PREADV2 = 358 constant SYS_PWRITEV2 (line 347) | SYS_PWRITEV2 = 359 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_LINK (line 15) | SYS_LINK = 9 constant SYS_UNLINK (line 16) | SYS_UNLINK = 10 constant SYS_CHDIR (line 17) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 18) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 19) | SYS_CHMOD = 15 constant SYS_CHOWN (line 20) | SYS_CHOWN = 16 constant SYS_BREAK (line 21) | SYS_BREAK = 17 constant SYS_GETPID (line 22) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 23) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 24) | SYS_SETUID = 23 constant SYS_GETUID (line 25) | SYS_GETUID = 24 constant SYS_GETEUID (line 26) | SYS_GETEUID = 25 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 28) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 29) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 30) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 31) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 32) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 33) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 34) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 35) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 36) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 37) | SYS_SYNC = 36 constant SYS_KILL (line 38) | SYS_KILL = 37 constant SYS_GETPPID (line 39) | SYS_GETPPID = 39 constant SYS_DUP (line 40) | SYS_DUP = 41 constant SYS_PIPE (line 41) | SYS_PIPE = 42 constant SYS_GETEGID (line 42) | SYS_GETEGID = 43 constant SYS_PROFIL (line 43) | SYS_PROFIL = 44 constant SYS_KTRACE (line 44) | SYS_KTRACE = 45 constant SYS_GETGID (line 45) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 46) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 47) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 48) | SYS_ACCT = 51 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_REVOKE (line 50) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 51) | SYS_SYMLINK = 57 constant SYS_READLINK (line 52) | SYS_READLINK = 58 constant SYS_EXECVE (line 53) | SYS_EXECVE = 59 constant SYS_UMASK (line 54) | SYS_UMASK = 60 constant SYS_CHROOT (line 55) | SYS_CHROOT = 61 constant SYS_VFORK (line 56) | SYS_VFORK = 66 constant SYS_SBRK (line 57) | SYS_SBRK = 69 constant SYS_SSTK (line 58) | SYS_SSTK = 70 constant SYS_VADVISE (line 59) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 60) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 61) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 62) | SYS_MADVISE = 75 constant SYS_MINCORE (line 63) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 64) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 65) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 66) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 67) | SYS_SETPGID = 82 constant SYS_DUP2 (line 68) | SYS_DUP2 = 90 constant SYS_FCNTL (line 69) | SYS_FCNTL = 92 constant SYS_FSYNC (line 70) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 71) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 72) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 73) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 74) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 75) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 76) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 77) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 78) | SYS_READV = 120 constant SYS_WRITEV (line 79) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 81) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 82) | SYS_SETREUID = 126 constant SYS_SETREGID (line 83) | SYS_SETREGID = 127 constant SYS_RENAME (line 84) | SYS_RENAME = 128 constant SYS_FLOCK (line 85) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 86) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 87) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 88) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 89) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 90) | SYS_MKDIR = 136 constant SYS_RMDIR (line 91) | SYS_RMDIR = 137 constant SYS_SETSID (line 92) | SYS_SETSID = 147 constant SYS_SYSARCH (line 93) | SYS_SYSARCH = 165 constant SYS_PREAD (line 94) | SYS_PREAD = 173 constant SYS_PWRITE (line 95) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 96) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 97) | SYS_SETGID = 181 constant SYS_SETEGID (line 98) | SYS_SETEGID = 182 constant SYS_SETEUID (line 99) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 100) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 101) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 102) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 103) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 104) | SYS_MMAP = 197 constant SYS_LSEEK (line 105) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 106) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 107) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 108) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 109) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 110) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 111) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 112) | SYS_GETPGID = 207 constant SYS_REBOOT (line 113) | SYS_REBOOT = 208 constant SYS_POLL (line 114) | SYS_POLL = 209 constant SYS_SEMGET (line 115) | SYS_SEMGET = 221 constant SYS_SEMOP (line 116) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 117) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 118) | SYS_MSGGET = 225 constant SYS_MSGSND (line 119) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 120) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 121) | SYS_SHMAT = 228 constant SYS_SHMDT (line 122) | SYS_SHMDT = 230 constant SYS_SHMGET (line 123) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 124) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 125) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 126) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 127) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 128) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 129) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 130) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 131) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 132) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 133) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 134) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 135) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 136) | SYS_LCHOWN = 275 constant SYS___POSIX_CHOWN (line 137) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 138) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 139) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 140) | SYS_GETSID = 286 constant SYS___CLONE (line 141) | SYS___CLONE = 287 constant SYS_FKTRACE (line 142) | SYS_FKTRACE = 288 constant SYS_PREADV (line 143) | SYS_PREADV = 289 constant SYS_PWRITEV (line 144) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 145) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 146) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 147) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 148) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 149) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 150) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 151) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 152) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 153) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 154) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 155) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 156) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 157) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 158) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 159) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 160) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 161) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 162) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 163) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 164) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 165) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 166) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 167) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 168) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 169) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 170) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 171) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 172) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 173) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 174) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 175) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 176) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 177) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 178) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 179) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 180) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 181) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 182) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 183) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 184) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 185) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 186) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 187) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 188) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 189) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 190) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 191) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 192) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 193) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 194) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 195) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 196) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 197) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 198) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 199) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 200) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 201) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 202) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 203) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 204) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 205) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 206) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 207) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 208) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 209) | SYS_SOCKET = 394 constant SYS_GETFH (line 210) | SYS_GETFH = 395 constant SYS_MOUNT (line 211) | SYS_MOUNT = 410 constant SYS_MREMAP (line 212) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 213) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 214) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 215) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 216) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 217) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 218) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 219) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 220) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 221) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 222) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 223) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 224) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 225) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 226) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 227) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 228) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 229) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 230) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 231) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 232) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 233) | SYS_KEVENT = 435 constant SYS_PSELECT (line 234) | SYS_PSELECT = 436 constant SYS_POLLTS (line 235) | SYS_POLLTS = 437 constant SYS_STAT (line 236) | SYS_STAT = 439 constant SYS_FSTAT (line 237) | SYS_FSTAT = 440 constant SYS_LSTAT (line 238) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 239) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 240) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 241) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 242) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 243) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 244) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 245) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 246) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 247) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 248) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 249) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 250) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 251) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 252) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 253) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 254) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 255) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 256) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 257) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 258) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 259) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 260) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 261) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 262) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 263) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 264) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 266) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 267) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 268) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 269) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 270) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 271) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 272) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_LINK (line 15) | SYS_LINK = 9 constant SYS_UNLINK (line 16) | SYS_UNLINK = 10 constant SYS_CHDIR (line 17) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 18) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 19) | SYS_CHMOD = 15 constant SYS_CHOWN (line 20) | SYS_CHOWN = 16 constant SYS_BREAK (line 21) | SYS_BREAK = 17 constant SYS_GETPID (line 22) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 23) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 24) | SYS_SETUID = 23 constant SYS_GETUID (line 25) | SYS_GETUID = 24 constant SYS_GETEUID (line 26) | SYS_GETEUID = 25 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 28) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 29) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 30) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 31) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 32) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 33) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 34) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 35) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 36) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 37) | SYS_SYNC = 36 constant SYS_KILL (line 38) | SYS_KILL = 37 constant SYS_GETPPID (line 39) | SYS_GETPPID = 39 constant SYS_DUP (line 40) | SYS_DUP = 41 constant SYS_PIPE (line 41) | SYS_PIPE = 42 constant SYS_GETEGID (line 42) | SYS_GETEGID = 43 constant SYS_PROFIL (line 43) | SYS_PROFIL = 44 constant SYS_KTRACE (line 44) | SYS_KTRACE = 45 constant SYS_GETGID (line 45) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 46) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 47) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 48) | SYS_ACCT = 51 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_REVOKE (line 50) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 51) | SYS_SYMLINK = 57 constant SYS_READLINK (line 52) | SYS_READLINK = 58 constant SYS_EXECVE (line 53) | SYS_EXECVE = 59 constant SYS_UMASK (line 54) | SYS_UMASK = 60 constant SYS_CHROOT (line 55) | SYS_CHROOT = 61 constant SYS_VFORK (line 56) | SYS_VFORK = 66 constant SYS_SBRK (line 57) | SYS_SBRK = 69 constant SYS_SSTK (line 58) | SYS_SSTK = 70 constant SYS_VADVISE (line 59) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 60) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 61) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 62) | SYS_MADVISE = 75 constant SYS_MINCORE (line 63) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 64) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 65) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 66) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 67) | SYS_SETPGID = 82 constant SYS_DUP2 (line 68) | SYS_DUP2 = 90 constant SYS_FCNTL (line 69) | SYS_FCNTL = 92 constant SYS_FSYNC (line 70) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 71) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 72) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 73) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 74) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 75) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 76) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 77) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 78) | SYS_READV = 120 constant SYS_WRITEV (line 79) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 81) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 82) | SYS_SETREUID = 126 constant SYS_SETREGID (line 83) | SYS_SETREGID = 127 constant SYS_RENAME (line 84) | SYS_RENAME = 128 constant SYS_FLOCK (line 85) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 86) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 87) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 88) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 89) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 90) | SYS_MKDIR = 136 constant SYS_RMDIR (line 91) | SYS_RMDIR = 137 constant SYS_SETSID (line 92) | SYS_SETSID = 147 constant SYS_SYSARCH (line 93) | SYS_SYSARCH = 165 constant SYS_PREAD (line 94) | SYS_PREAD = 173 constant SYS_PWRITE (line 95) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 96) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 97) | SYS_SETGID = 181 constant SYS_SETEGID (line 98) | SYS_SETEGID = 182 constant SYS_SETEUID (line 99) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 100) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 101) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 102) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 103) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 104) | SYS_MMAP = 197 constant SYS_LSEEK (line 105) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 106) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 107) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 108) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 109) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 110) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 111) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 112) | SYS_GETPGID = 207 constant SYS_REBOOT (line 113) | SYS_REBOOT = 208 constant SYS_POLL (line 114) | SYS_POLL = 209 constant SYS_SEMGET (line 115) | SYS_SEMGET = 221 constant SYS_SEMOP (line 116) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 117) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 118) | SYS_MSGGET = 225 constant SYS_MSGSND (line 119) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 120) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 121) | SYS_SHMAT = 228 constant SYS_SHMDT (line 122) | SYS_SHMDT = 230 constant SYS_SHMGET (line 123) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 124) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 125) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 126) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 127) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 128) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 129) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 130) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 131) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 132) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 133) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 134) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 135) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 136) | SYS_LCHOWN = 275 constant SYS___POSIX_CHOWN (line 137) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 138) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 139) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 140) | SYS_GETSID = 286 constant SYS___CLONE (line 141) | SYS___CLONE = 287 constant SYS_FKTRACE (line 142) | SYS_FKTRACE = 288 constant SYS_PREADV (line 143) | SYS_PREADV = 289 constant SYS_PWRITEV (line 144) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 145) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 146) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 147) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 148) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 149) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 150) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 151) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 152) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 153) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 154) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 155) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 156) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 157) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 158) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 159) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 160) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 161) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 162) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 163) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 164) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 165) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 166) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 167) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 168) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 169) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 170) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 171) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 172) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 173) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 174) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 175) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 176) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 177) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 178) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 179) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 180) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 181) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 182) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 183) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 184) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 185) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 186) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 187) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 188) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 189) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 190) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 191) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 192) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 193) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 194) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 195) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 196) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 197) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 198) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 199) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 200) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 201) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 202) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 203) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 204) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 205) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 206) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 207) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 208) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 209) | SYS_SOCKET = 394 constant SYS_GETFH (line 210) | SYS_GETFH = 395 constant SYS_MOUNT (line 211) | SYS_MOUNT = 410 constant SYS_MREMAP (line 212) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 213) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 214) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 215) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 216) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 217) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 218) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 219) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 220) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 221) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 222) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 223) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 224) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 225) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 226) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 227) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 228) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 229) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 230) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 231) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 232) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 233) | SYS_KEVENT = 435 constant SYS_PSELECT (line 234) | SYS_PSELECT = 436 constant SYS_POLLTS (line 235) | SYS_POLLTS = 437 constant SYS_STAT (line 236) | SYS_STAT = 439 constant SYS_FSTAT (line 237) | SYS_FSTAT = 440 constant SYS_LSTAT (line 238) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 239) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 240) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 241) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 242) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 243) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 244) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 245) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 246) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 247) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 248) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 249) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 250) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 251) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 252) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 253) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 254) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 255) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 256) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 257) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 258) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 259) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 260) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 261) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 262) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 263) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 264) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 266) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 267) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 268) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 269) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 270) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 271) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 272) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS_LINK (line 15) | SYS_LINK = 9 constant SYS_UNLINK (line 16) | SYS_UNLINK = 10 constant SYS_CHDIR (line 17) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 18) | SYS_FCHDIR = 13 constant SYS_CHMOD (line 19) | SYS_CHMOD = 15 constant SYS_CHOWN (line 20) | SYS_CHOWN = 16 constant SYS_BREAK (line 21) | SYS_BREAK = 17 constant SYS_GETPID (line 22) | SYS_GETPID = 20 constant SYS_UNMOUNT (line 23) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 24) | SYS_SETUID = 23 constant SYS_GETUID (line 25) | SYS_GETUID = 24 constant SYS_GETEUID (line 26) | SYS_GETEUID = 25 constant SYS_PTRACE (line 27) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 28) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 29) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 30) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 31) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 32) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 33) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 34) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 35) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 36) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 37) | SYS_SYNC = 36 constant SYS_KILL (line 38) | SYS_KILL = 37 constant SYS_GETPPID (line 39) | SYS_GETPPID = 39 constant SYS_DUP (line 40) | SYS_DUP = 41 constant SYS_PIPE (line 41) | SYS_PIPE = 42 constant SYS_GETEGID (line 42) | SYS_GETEGID = 43 constant SYS_PROFIL (line 43) | SYS_PROFIL = 44 constant SYS_KTRACE (line 44) | SYS_KTRACE = 45 constant SYS_GETGID (line 45) | SYS_GETGID = 47 constant SYS___GETLOGIN (line 46) | SYS___GETLOGIN = 49 constant SYS___SETLOGIN (line 47) | SYS___SETLOGIN = 50 constant SYS_ACCT (line 48) | SYS_ACCT = 51 constant SYS_IOCTL (line 49) | SYS_IOCTL = 54 constant SYS_REVOKE (line 50) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 51) | SYS_SYMLINK = 57 constant SYS_READLINK (line 52) | SYS_READLINK = 58 constant SYS_EXECVE (line 53) | SYS_EXECVE = 59 constant SYS_UMASK (line 54) | SYS_UMASK = 60 constant SYS_CHROOT (line 55) | SYS_CHROOT = 61 constant SYS_VFORK (line 56) | SYS_VFORK = 66 constant SYS_SBRK (line 57) | SYS_SBRK = 69 constant SYS_SSTK (line 58) | SYS_SSTK = 70 constant SYS_VADVISE (line 59) | SYS_VADVISE = 72 constant SYS_MUNMAP (line 60) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 61) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 62) | SYS_MADVISE = 75 constant SYS_MINCORE (line 63) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 64) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 65) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 66) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 67) | SYS_SETPGID = 82 constant SYS_DUP2 (line 68) | SYS_DUP2 = 90 constant SYS_FCNTL (line 69) | SYS_FCNTL = 92 constant SYS_FSYNC (line 70) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 71) | SYS_SETPRIORITY = 96 constant SYS_CONNECT (line 72) | SYS_CONNECT = 98 constant SYS_GETPRIORITY (line 73) | SYS_GETPRIORITY = 100 constant SYS_BIND (line 74) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 75) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 76) | SYS_LISTEN = 106 constant SYS_GETSOCKOPT (line 77) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 78) | SYS_READV = 120 constant SYS_WRITEV (line 79) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 80) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 81) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 82) | SYS_SETREUID = 126 constant SYS_SETREGID (line 83) | SYS_SETREGID = 127 constant SYS_RENAME (line 84) | SYS_RENAME = 128 constant SYS_FLOCK (line 85) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 86) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 87) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 88) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 89) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 90) | SYS_MKDIR = 136 constant SYS_RMDIR (line 91) | SYS_RMDIR = 137 constant SYS_SETSID (line 92) | SYS_SETSID = 147 constant SYS_SYSARCH (line 93) | SYS_SYSARCH = 165 constant SYS_PREAD (line 94) | SYS_PREAD = 173 constant SYS_PWRITE (line 95) | SYS_PWRITE = 174 constant SYS_NTP_ADJTIME (line 96) | SYS_NTP_ADJTIME = 176 constant SYS_SETGID (line 97) | SYS_SETGID = 181 constant SYS_SETEGID (line 98) | SYS_SETEGID = 182 constant SYS_SETEUID (line 99) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 100) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 101) | SYS_FPATHCONF = 192 constant SYS_GETRLIMIT (line 102) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 103) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 104) | SYS_MMAP = 197 constant SYS_LSEEK (line 105) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 106) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 107) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 108) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 109) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 110) | SYS_MUNLOCK = 204 constant SYS_UNDELETE (line 111) | SYS_UNDELETE = 205 constant SYS_GETPGID (line 112) | SYS_GETPGID = 207 constant SYS_REBOOT (line 113) | SYS_REBOOT = 208 constant SYS_POLL (line 114) | SYS_POLL = 209 constant SYS_SEMGET (line 115) | SYS_SEMGET = 221 constant SYS_SEMOP (line 116) | SYS_SEMOP = 222 constant SYS_SEMCONFIG (line 117) | SYS_SEMCONFIG = 223 constant SYS_MSGGET (line 118) | SYS_MSGGET = 225 constant SYS_MSGSND (line 119) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 120) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 121) | SYS_SHMAT = 228 constant SYS_SHMDT (line 122) | SYS_SHMDT = 230 constant SYS_SHMGET (line 123) | SYS_SHMGET = 231 constant SYS_TIMER_CREATE (line 124) | SYS_TIMER_CREATE = 235 constant SYS_TIMER_DELETE (line 125) | SYS_TIMER_DELETE = 236 constant SYS_TIMER_GETOVERRUN (line 126) | SYS_TIMER_GETOVERRUN = 239 constant SYS_FDATASYNC (line 127) | SYS_FDATASYNC = 241 constant SYS_MLOCKALL (line 128) | SYS_MLOCKALL = 242 constant SYS_MUNLOCKALL (line 129) | SYS_MUNLOCKALL = 243 constant SYS_SIGQUEUEINFO (line 130) | SYS_SIGQUEUEINFO = 245 constant SYS_MODCTL (line 131) | SYS_MODCTL = 246 constant SYS___POSIX_RENAME (line 132) | SYS___POSIX_RENAME = 270 constant SYS_SWAPCTL (line 133) | SYS_SWAPCTL = 271 constant SYS_MINHERIT (line 134) | SYS_MINHERIT = 273 constant SYS_LCHMOD (line 135) | SYS_LCHMOD = 274 constant SYS_LCHOWN (line 136) | SYS_LCHOWN = 275 constant SYS___POSIX_CHOWN (line 137) | SYS___POSIX_CHOWN = 283 constant SYS___POSIX_FCHOWN (line 138) | SYS___POSIX_FCHOWN = 284 constant SYS___POSIX_LCHOWN (line 139) | SYS___POSIX_LCHOWN = 285 constant SYS_GETSID (line 140) | SYS_GETSID = 286 constant SYS___CLONE (line 141) | SYS___CLONE = 287 constant SYS_FKTRACE (line 142) | SYS_FKTRACE = 288 constant SYS_PREADV (line 143) | SYS_PREADV = 289 constant SYS_PWRITEV (line 144) | SYS_PWRITEV = 290 constant SYS___GETCWD (line 145) | SYS___GETCWD = 296 constant SYS_FCHROOT (line 146) | SYS_FCHROOT = 297 constant SYS_LCHFLAGS (line 147) | SYS_LCHFLAGS = 304 constant SYS_ISSETUGID (line 148) | SYS_ISSETUGID = 305 constant SYS_UTRACE (line 149) | SYS_UTRACE = 306 constant SYS_GETCONTEXT (line 150) | SYS_GETCONTEXT = 307 constant SYS_SETCONTEXT (line 151) | SYS_SETCONTEXT = 308 constant SYS__LWP_CREATE (line 152) | SYS__LWP_CREATE = 309 constant SYS__LWP_EXIT (line 153) | SYS__LWP_EXIT = 310 constant SYS__LWP_SELF (line 154) | SYS__LWP_SELF = 311 constant SYS__LWP_WAIT (line 155) | SYS__LWP_WAIT = 312 constant SYS__LWP_SUSPEND (line 156) | SYS__LWP_SUSPEND = 313 constant SYS__LWP_CONTINUE (line 157) | SYS__LWP_CONTINUE = 314 constant SYS__LWP_WAKEUP (line 158) | SYS__LWP_WAKEUP = 315 constant SYS__LWP_GETPRIVATE (line 159) | SYS__LWP_GETPRIVATE = 316 constant SYS__LWP_SETPRIVATE (line 160) | SYS__LWP_SETPRIVATE = 317 constant SYS__LWP_KILL (line 161) | SYS__LWP_KILL = 318 constant SYS__LWP_DETACH (line 162) | SYS__LWP_DETACH = 319 constant SYS__LWP_UNPARK (line 163) | SYS__LWP_UNPARK = 321 constant SYS__LWP_UNPARK_ALL (line 164) | SYS__LWP_UNPARK_ALL = 322 constant SYS__LWP_SETNAME (line 165) | SYS__LWP_SETNAME = 323 constant SYS__LWP_GETNAME (line 166) | SYS__LWP_GETNAME = 324 constant SYS__LWP_CTL (line 167) | SYS__LWP_CTL = 325 constant SYS___SIGACTION_SIGTRAMP (line 168) | SYS___SIGACTION_SIGTRAMP = 340 constant SYS_PMC_GET_INFO (line 169) | SYS_PMC_GET_INFO = 341 constant SYS_PMC_CONTROL (line 170) | SYS_PMC_CONTROL = 342 constant SYS_RASCTL (line 171) | SYS_RASCTL = 343 constant SYS_KQUEUE (line 172) | SYS_KQUEUE = 344 constant SYS__SCHED_SETPARAM (line 173) | SYS__SCHED_SETPARAM = 346 constant SYS__SCHED_GETPARAM (line 174) | SYS__SCHED_GETPARAM = 347 constant SYS__SCHED_SETAFFINITY (line 175) | SYS__SCHED_SETAFFINITY = 348 constant SYS__SCHED_GETAFFINITY (line 176) | SYS__SCHED_GETAFFINITY = 349 constant SYS_SCHED_YIELD (line 177) | SYS_SCHED_YIELD = 350 constant SYS_FSYNC_RANGE (line 178) | SYS_FSYNC_RANGE = 354 constant SYS_UUIDGEN (line 179) | SYS_UUIDGEN = 355 constant SYS_GETVFSSTAT (line 180) | SYS_GETVFSSTAT = 356 constant SYS_STATVFS1 (line 181) | SYS_STATVFS1 = 357 constant SYS_FSTATVFS1 (line 182) | SYS_FSTATVFS1 = 358 constant SYS_EXTATTRCTL (line 183) | SYS_EXTATTRCTL = 360 constant SYS_EXTATTR_SET_FILE (line 184) | SYS_EXTATTR_SET_FILE = 361 constant SYS_EXTATTR_GET_FILE (line 185) | SYS_EXTATTR_GET_FILE = 362 constant SYS_EXTATTR_DELETE_FILE (line 186) | SYS_EXTATTR_DELETE_FILE = 363 constant SYS_EXTATTR_SET_FD (line 187) | SYS_EXTATTR_SET_FD = 364 constant SYS_EXTATTR_GET_FD (line 188) | SYS_EXTATTR_GET_FD = 365 constant SYS_EXTATTR_DELETE_FD (line 189) | SYS_EXTATTR_DELETE_FD = 366 constant SYS_EXTATTR_SET_LINK (line 190) | SYS_EXTATTR_SET_LINK = 367 constant SYS_EXTATTR_GET_LINK (line 191) | SYS_EXTATTR_GET_LINK = 368 constant SYS_EXTATTR_DELETE_LINK (line 192) | SYS_EXTATTR_DELETE_LINK = 369 constant SYS_EXTATTR_LIST_FD (line 193) | SYS_EXTATTR_LIST_FD = 370 constant SYS_EXTATTR_LIST_FILE (line 194) | SYS_EXTATTR_LIST_FILE = 371 constant SYS_EXTATTR_LIST_LINK (line 195) | SYS_EXTATTR_LIST_LINK = 372 constant SYS_SETXATTR (line 196) | SYS_SETXATTR = 375 constant SYS_LSETXATTR (line 197) | SYS_LSETXATTR = 376 constant SYS_FSETXATTR (line 198) | SYS_FSETXATTR = 377 constant SYS_GETXATTR (line 199) | SYS_GETXATTR = 378 constant SYS_LGETXATTR (line 200) | SYS_LGETXATTR = 379 constant SYS_FGETXATTR (line 201) | SYS_FGETXATTR = 380 constant SYS_LISTXATTR (line 202) | SYS_LISTXATTR = 381 constant SYS_LLISTXATTR (line 203) | SYS_LLISTXATTR = 382 constant SYS_FLISTXATTR (line 204) | SYS_FLISTXATTR = 383 constant SYS_REMOVEXATTR (line 205) | SYS_REMOVEXATTR = 384 constant SYS_LREMOVEXATTR (line 206) | SYS_LREMOVEXATTR = 385 constant SYS_FREMOVEXATTR (line 207) | SYS_FREMOVEXATTR = 386 constant SYS_GETDENTS (line 208) | SYS_GETDENTS = 390 constant SYS_SOCKET (line 209) | SYS_SOCKET = 394 constant SYS_GETFH (line 210) | SYS_GETFH = 395 constant SYS_MOUNT (line 211) | SYS_MOUNT = 410 constant SYS_MREMAP (line 212) | SYS_MREMAP = 411 constant SYS_PSET_CREATE (line 213) | SYS_PSET_CREATE = 412 constant SYS_PSET_DESTROY (line 214) | SYS_PSET_DESTROY = 413 constant SYS_PSET_ASSIGN (line 215) | SYS_PSET_ASSIGN = 414 constant SYS__PSET_BIND (line 216) | SYS__PSET_BIND = 415 constant SYS_POSIX_FADVISE (line 217) | SYS_POSIX_FADVISE = 416 constant SYS_SELECT (line 218) | SYS_SELECT = 417 constant SYS_GETTIMEOFDAY (line 219) | SYS_GETTIMEOFDAY = 418 constant SYS_SETTIMEOFDAY (line 220) | SYS_SETTIMEOFDAY = 419 constant SYS_UTIMES (line 221) | SYS_UTIMES = 420 constant SYS_ADJTIME (line 222) | SYS_ADJTIME = 421 constant SYS_FUTIMES (line 223) | SYS_FUTIMES = 423 constant SYS_LUTIMES (line 224) | SYS_LUTIMES = 424 constant SYS_SETITIMER (line 225) | SYS_SETITIMER = 425 constant SYS_GETITIMER (line 226) | SYS_GETITIMER = 426 constant SYS_CLOCK_GETTIME (line 227) | SYS_CLOCK_GETTIME = 427 constant SYS_CLOCK_SETTIME (line 228) | SYS_CLOCK_SETTIME = 428 constant SYS_CLOCK_GETRES (line 229) | SYS_CLOCK_GETRES = 429 constant SYS_NANOSLEEP (line 230) | SYS_NANOSLEEP = 430 constant SYS___SIGTIMEDWAIT (line 231) | SYS___SIGTIMEDWAIT = 431 constant SYS__LWP_PARK (line 232) | SYS__LWP_PARK = 434 constant SYS_KEVENT (line 233) | SYS_KEVENT = 435 constant SYS_PSELECT (line 234) | SYS_PSELECT = 436 constant SYS_POLLTS (line 235) | SYS_POLLTS = 437 constant SYS_STAT (line 236) | SYS_STAT = 439 constant SYS_FSTAT (line 237) | SYS_FSTAT = 440 constant SYS_LSTAT (line 238) | SYS_LSTAT = 441 constant SYS___SEMCTL (line 239) | SYS___SEMCTL = 442 constant SYS_SHMCTL (line 240) | SYS_SHMCTL = 443 constant SYS_MSGCTL (line 241) | SYS_MSGCTL = 444 constant SYS_GETRUSAGE (line 242) | SYS_GETRUSAGE = 445 constant SYS_TIMER_SETTIME (line 243) | SYS_TIMER_SETTIME = 446 constant SYS_TIMER_GETTIME (line 244) | SYS_TIMER_GETTIME = 447 constant SYS_NTP_GETTIME (line 245) | SYS_NTP_GETTIME = 448 constant SYS_WAIT4 (line 246) | SYS_WAIT4 = 449 constant SYS_MKNOD (line 247) | SYS_MKNOD = 450 constant SYS_FHSTAT (line 248) | SYS_FHSTAT = 451 constant SYS_PIPE2 (line 249) | SYS_PIPE2 = 453 constant SYS_DUP3 (line 250) | SYS_DUP3 = 454 constant SYS_KQUEUE1 (line 251) | SYS_KQUEUE1 = 455 constant SYS_PACCEPT (line 252) | SYS_PACCEPT = 456 constant SYS_LINKAT (line 253) | SYS_LINKAT = 457 constant SYS_RENAMEAT (line 254) | SYS_RENAMEAT = 458 constant SYS_MKFIFOAT (line 255) | SYS_MKFIFOAT = 459 constant SYS_MKNODAT (line 256) | SYS_MKNODAT = 460 constant SYS_MKDIRAT (line 257) | SYS_MKDIRAT = 461 constant SYS_FACCESSAT (line 258) | SYS_FACCESSAT = 462 constant SYS_FCHMODAT (line 259) | SYS_FCHMODAT = 463 constant SYS_FCHOWNAT (line 260) | SYS_FCHOWNAT = 464 constant SYS_FEXECVE (line 261) | SYS_FEXECVE = 465 constant SYS_FSTATAT (line 262) | SYS_FSTATAT = 466 constant SYS_UTIMENSAT (line 263) | SYS_UTIMENSAT = 467 constant SYS_OPENAT (line 264) | SYS_OPENAT = 468 constant SYS_READLINKAT (line 265) | SYS_READLINKAT = 469 constant SYS_SYMLINKAT (line 266) | SYS_SYMLINKAT = 470 constant SYS_UNLINKAT (line 267) | SYS_UNLINKAT = 471 constant SYS_FUTIMENS (line 268) | SYS_FUTIMENS = 472 constant SYS___QUOTACTL (line 269) | SYS___QUOTACTL = 473 constant SYS_POSIX_SPAWN (line 270) | SYS_POSIX_SPAWN = 474 constant SYS_RECVMMSG (line 271) | SYS_RECVMMSG = 475 constant SYS_SENDMMSG (line 272) | SYS_SENDMMSG = 476 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS___TFORK (line 15) | SYS___TFORK = 8 constant SYS_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 18) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 25) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 26) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 27) | SYS_GETPID = 20 constant SYS_MOUNT (line 28) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 29) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 30) | SYS_SETUID = 23 constant SYS_GETUID (line 31) | SYS_GETUID = 24 constant SYS_GETEUID (line 32) | SYS_GETEUID = 25 constant SYS_PTRACE (line 33) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 34) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 35) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 36) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 37) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 38) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 39) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 41) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 42) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 43) | SYS_SYNC = 36 constant SYS_KILL (line 44) | SYS_KILL = 37 constant SYS_STAT (line 45) | SYS_STAT = 38 constant SYS_GETPPID (line 46) | SYS_GETPPID = 39 constant SYS_LSTAT (line 47) | SYS_LSTAT = 40 constant SYS_DUP (line 48) | SYS_DUP = 41 constant SYS_FSTATAT (line 49) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 50) | SYS_GETEGID = 43 constant SYS_PROFIL (line 51) | SYS_PROFIL = 44 constant SYS_KTRACE (line 52) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 53) | SYS_SIGACTION = 46 constant SYS_GETGID (line 54) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 55) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 56) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85 constant SYS_CLOCK_GETTIME (line 92) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 93) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 94) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 95) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 96) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 97) | SYS_FCNTL = 92 constant SYS___THRSLEEP (line 98) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 99) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 100) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 101) | SYS_SOCKET = 97 constant SYS_CONNECT (line 102) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 103) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 104) | SYS_GETPRIORITY = 100 constant SYS_SIGRETURN (line 105) | SYS_SIGRETURN = 103 constant SYS_BIND (line 106) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 107) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 108) | SYS_LISTEN = 106 constant SYS_PPOLL (line 109) | SYS_PPOLL = 109 constant SYS_PSELECT (line 110) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 111) | SYS_SIGSUSPEND = 111 constant SYS_GETSOCKOPT (line 112) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 113) | SYS_READV = 120 constant SYS_WRITEV (line 114) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 115) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 116) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 117) | SYS_SETREUID = 126 constant SYS_SETREGID (line 118) | SYS_SETREGID = 127 constant SYS_RENAME (line 119) | SYS_RENAME = 128 constant SYS_FLOCK (line 120) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 121) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 122) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 123) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 124) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 125) | SYS_MKDIR = 136 constant SYS_RMDIR (line 126) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 127) | SYS_ADJTIME = 140 constant SYS_SETSID (line 128) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 129) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 130) | SYS_NFSSVC = 155 constant SYS_GETFH (line 131) | SYS_GETFH = 161 constant SYS_SYSARCH (line 132) | SYS_SYSARCH = 165 constant SYS_PREAD (line 133) | SYS_PREAD = 173 constant SYS_PWRITE (line 134) | SYS_PWRITE = 174 constant SYS_SETGID (line 135) | SYS_SETGID = 181 constant SYS_SETEGID (line 136) | SYS_SETEGID = 182 constant SYS_SETEUID (line 137) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 138) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 139) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 140) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 141) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 142) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 143) | SYS_MMAP = 197 constant SYS_LSEEK (line 144) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 145) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 146) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 147) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 148) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 149) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 150) | SYS_GETPGID = 207 constant SYS_UTRACE (line 151) | SYS_UTRACE = 209 constant SYS_SEMGET (line 152) | SYS_SEMGET = 221 constant SYS_MSGGET (line 153) | SYS_MSGGET = 225 constant SYS_MSGSND (line 154) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 155) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 156) | SYS_SHMAT = 228 constant SYS_SHMDT (line 157) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 158) | SYS_MINHERIT = 250 constant SYS_POLL (line 159) | SYS_POLL = 252 constant SYS_ISSETUGID (line 160) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 161) | SYS_LCHOWN = 254 constant SYS_GETSID (line 162) | SYS_GETSID = 255 constant SYS_MSYNC (line 163) | SYS_MSYNC = 256 constant SYS_PIPE (line 164) | SYS_PIPE = 263 constant SYS_FHOPEN (line 165) | SYS_FHOPEN = 264 constant SYS_PREADV (line 166) | SYS_PREADV = 267 constant SYS_PWRITEV (line 167) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 168) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 169) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 170) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 171) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 172) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 173) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 174) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 175) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 176) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 177) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 178) | SYS_SHMGET = 289 constant SYS_SEMOP (line 179) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 180) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 181) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 182) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 184) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 185) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 186) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 187) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 188) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 189) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 190) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 191) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 192) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 193) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 194) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 195) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 196) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 197) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 198) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 199) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 200) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 201) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 202) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 203) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 204) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 205) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 206) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go constant SYS_EXIT (line 9) | SYS_EXIT = 1 constant SYS_FORK (line 10) | SYS_FORK = 2 constant SYS_READ (line 11) | SYS_READ = 3 constant SYS_WRITE (line 12) | SYS_WRITE = 4 constant SYS_OPEN (line 13) | SYS_OPEN = 5 constant SYS_CLOSE (line 14) | SYS_CLOSE = 6 constant SYS___TFORK (line 15) | SYS___TFORK = 8 constant SYS_LINK (line 16) | SYS_LINK = 9 constant SYS_UNLINK (line 17) | SYS_UNLINK = 10 constant SYS_WAIT4 (line 18) | SYS_WAIT4 = 11 constant SYS_CHDIR (line 19) | SYS_CHDIR = 12 constant SYS_FCHDIR (line 20) | SYS_FCHDIR = 13 constant SYS_MKNOD (line 21) | SYS_MKNOD = 14 constant SYS_CHMOD (line 22) | SYS_CHMOD = 15 constant SYS_CHOWN (line 23) | SYS_CHOWN = 16 constant SYS_OBREAK (line 24) | SYS_OBREAK = 17 constant SYS_GETDTABLECOUNT (line 25) | SYS_GETDTABLECOUNT = 18 constant SYS_GETRUSAGE (line 26) | SYS_GETRUSAGE = 19 constant SYS_GETPID (line 27) | SYS_GETPID = 20 constant SYS_MOUNT (line 28) | SYS_MOUNT = 21 constant SYS_UNMOUNT (line 29) | SYS_UNMOUNT = 22 constant SYS_SETUID (line 30) | SYS_SETUID = 23 constant SYS_GETUID (line 31) | SYS_GETUID = 24 constant SYS_GETEUID (line 32) | SYS_GETEUID = 25 constant SYS_PTRACE (line 33) | SYS_PTRACE = 26 constant SYS_RECVMSG (line 34) | SYS_RECVMSG = 27 constant SYS_SENDMSG (line 35) | SYS_SENDMSG = 28 constant SYS_RECVFROM (line 36) | SYS_RECVFROM = 29 constant SYS_ACCEPT (line 37) | SYS_ACCEPT = 30 constant SYS_GETPEERNAME (line 38) | SYS_GETPEERNAME = 31 constant SYS_GETSOCKNAME (line 39) | SYS_GETSOCKNAME = 32 constant SYS_ACCESS (line 40) | SYS_ACCESS = 33 constant SYS_CHFLAGS (line 41) | SYS_CHFLAGS = 34 constant SYS_FCHFLAGS (line 42) | SYS_FCHFLAGS = 35 constant SYS_SYNC (line 43) | SYS_SYNC = 36 constant SYS_KILL (line 44) | SYS_KILL = 37 constant SYS_STAT (line 45) | SYS_STAT = 38 constant SYS_GETPPID (line 46) | SYS_GETPPID = 39 constant SYS_LSTAT (line 47) | SYS_LSTAT = 40 constant SYS_DUP (line 48) | SYS_DUP = 41 constant SYS_FSTATAT (line 49) | SYS_FSTATAT = 42 constant SYS_GETEGID (line 50) | SYS_GETEGID = 43 constant SYS_PROFIL (line 51) | SYS_PROFIL = 44 constant SYS_KTRACE (line 52) | SYS_KTRACE = 45 constant SYS_SIGACTION (line 53) | SYS_SIGACTION = 46 constant SYS_GETGID (line 54) | SYS_GETGID = 47 constant SYS_SIGPROCMASK (line 55) | SYS_SIGPROCMASK = 48 constant SYS_GETLOGIN (line 56) | SYS_GETLOGIN = 49 constant SYS_SETLOGIN (line 57) | SYS_SETLOGIN = 50 constant SYS_ACCT (line 58) | SYS_ACCT = 51 constant SYS_SIGPENDING (line 59) | SYS_SIGPENDING = 52 constant SYS_FSTAT (line 60) | SYS_FSTAT = 53 constant SYS_IOCTL (line 61) | SYS_IOCTL = 54 constant SYS_REBOOT (line 62) | SYS_REBOOT = 55 constant SYS_REVOKE (line 63) | SYS_REVOKE = 56 constant SYS_SYMLINK (line 64) | SYS_SYMLINK = 57 constant SYS_READLINK (line 65) | SYS_READLINK = 58 constant SYS_EXECVE (line 66) | SYS_EXECVE = 59 constant SYS_UMASK (line 67) | SYS_UMASK = 60 constant SYS_CHROOT (line 68) | SYS_CHROOT = 61 constant SYS_GETFSSTAT (line 69) | SYS_GETFSSTAT = 62 constant SYS_STATFS (line 70) | SYS_STATFS = 63 constant SYS_FSTATFS (line 71) | SYS_FSTATFS = 64 constant SYS_FHSTATFS (line 72) | SYS_FHSTATFS = 65 constant SYS_VFORK (line 73) | SYS_VFORK = 66 constant SYS_GETTIMEOFDAY (line 74) | SYS_GETTIMEOFDAY = 67 constant SYS_SETTIMEOFDAY (line 75) | SYS_SETTIMEOFDAY = 68 constant SYS_SETITIMER (line 76) | SYS_SETITIMER = 69 constant SYS_GETITIMER (line 77) | SYS_GETITIMER = 70 constant SYS_SELECT (line 78) | SYS_SELECT = 71 constant SYS_KEVENT (line 79) | SYS_KEVENT = 72 constant SYS_MUNMAP (line 80) | SYS_MUNMAP = 73 constant SYS_MPROTECT (line 81) | SYS_MPROTECT = 74 constant SYS_MADVISE (line 82) | SYS_MADVISE = 75 constant SYS_UTIMES (line 83) | SYS_UTIMES = 76 constant SYS_FUTIMES (line 84) | SYS_FUTIMES = 77 constant SYS_MINCORE (line 85) | SYS_MINCORE = 78 constant SYS_GETGROUPS (line 86) | SYS_GETGROUPS = 79 constant SYS_SETGROUPS (line 87) | SYS_SETGROUPS = 80 constant SYS_GETPGRP (line 88) | SYS_GETPGRP = 81 constant SYS_SETPGID (line 89) | SYS_SETPGID = 82 constant SYS_UTIMENSAT (line 90) | SYS_UTIMENSAT = 84 constant SYS_FUTIMENS (line 91) | SYS_FUTIMENS = 85 constant SYS_CLOCK_GETTIME (line 92) | SYS_CLOCK_GETTIME = 87 constant SYS_CLOCK_SETTIME (line 93) | SYS_CLOCK_SETTIME = 88 constant SYS_CLOCK_GETRES (line 94) | SYS_CLOCK_GETRES = 89 constant SYS_DUP2 (line 95) | SYS_DUP2 = 90 constant SYS_NANOSLEEP (line 96) | SYS_NANOSLEEP = 91 constant SYS_FCNTL (line 97) | SYS_FCNTL = 92 constant SYS___THRSLEEP (line 98) | SYS___THRSLEEP = 94 constant SYS_FSYNC (line 99) | SYS_FSYNC = 95 constant SYS_SETPRIORITY (line 100) | SYS_SETPRIORITY = 96 constant SYS_SOCKET (line 101) | SYS_SOCKET = 97 constant SYS_CONNECT (line 102) | SYS_CONNECT = 98 constant SYS_GETDENTS (line 103) | SYS_GETDENTS = 99 constant SYS_GETPRIORITY (line 104) | SYS_GETPRIORITY = 100 constant SYS_SIGRETURN (line 105) | SYS_SIGRETURN = 103 constant SYS_BIND (line 106) | SYS_BIND = 104 constant SYS_SETSOCKOPT (line 107) | SYS_SETSOCKOPT = 105 constant SYS_LISTEN (line 108) | SYS_LISTEN = 106 constant SYS_PPOLL (line 109) | SYS_PPOLL = 109 constant SYS_PSELECT (line 110) | SYS_PSELECT = 110 constant SYS_SIGSUSPEND (line 111) | SYS_SIGSUSPEND = 111 constant SYS_GETSOCKOPT (line 112) | SYS_GETSOCKOPT = 118 constant SYS_READV (line 113) | SYS_READV = 120 constant SYS_WRITEV (line 114) | SYS_WRITEV = 121 constant SYS_FCHOWN (line 115) | SYS_FCHOWN = 123 constant SYS_FCHMOD (line 116) | SYS_FCHMOD = 124 constant SYS_SETREUID (line 117) | SYS_SETREUID = 126 constant SYS_SETREGID (line 118) | SYS_SETREGID = 127 constant SYS_RENAME (line 119) | SYS_RENAME = 128 constant SYS_FLOCK (line 120) | SYS_FLOCK = 131 constant SYS_MKFIFO (line 121) | SYS_MKFIFO = 132 constant SYS_SENDTO (line 122) | SYS_SENDTO = 133 constant SYS_SHUTDOWN (line 123) | SYS_SHUTDOWN = 134 constant SYS_SOCKETPAIR (line 124) | SYS_SOCKETPAIR = 135 constant SYS_MKDIR (line 125) | SYS_MKDIR = 136 constant SYS_RMDIR (line 126) | SYS_RMDIR = 137 constant SYS_ADJTIME (line 127) | SYS_ADJTIME = 140 constant SYS_SETSID (line 128) | SYS_SETSID = 147 constant SYS_QUOTACTL (line 129) | SYS_QUOTACTL = 148 constant SYS_NFSSVC (line 130) | SYS_NFSSVC = 155 constant SYS_GETFH (line 131) | SYS_GETFH = 161 constant SYS_SYSARCH (line 132) | SYS_SYSARCH = 165 constant SYS_PREAD (line 133) | SYS_PREAD = 173 constant SYS_PWRITE (line 134) | SYS_PWRITE = 174 constant SYS_SETGID (line 135) | SYS_SETGID = 181 constant SYS_SETEGID (line 136) | SYS_SETEGID = 182 constant SYS_SETEUID (line 137) | SYS_SETEUID = 183 constant SYS_PATHCONF (line 138) | SYS_PATHCONF = 191 constant SYS_FPATHCONF (line 139) | SYS_FPATHCONF = 192 constant SYS_SWAPCTL (line 140) | SYS_SWAPCTL = 193 constant SYS_GETRLIMIT (line 141) | SYS_GETRLIMIT = 194 constant SYS_SETRLIMIT (line 142) | SYS_SETRLIMIT = 195 constant SYS_MMAP (line 143) | SYS_MMAP = 197 constant SYS_LSEEK (line 144) | SYS_LSEEK = 199 constant SYS_TRUNCATE (line 145) | SYS_TRUNCATE = 200 constant SYS_FTRUNCATE (line 146) | SYS_FTRUNCATE = 201 constant SYS___SYSCTL (line 147) | SYS___SYSCTL = 202 constant SYS_MLOCK (line 148) | SYS_MLOCK = 203 constant SYS_MUNLOCK (line 149) | SYS_MUNLOCK = 204 constant SYS_GETPGID (line 150) | SYS_GETPGID = 207 constant SYS_UTRACE (line 151) | SYS_UTRACE = 209 constant SYS_SEMGET (line 152) | SYS_SEMGET = 221 constant SYS_MSGGET (line 153) | SYS_MSGGET = 225 constant SYS_MSGSND (line 154) | SYS_MSGSND = 226 constant SYS_MSGRCV (line 155) | SYS_MSGRCV = 227 constant SYS_SHMAT (line 156) | SYS_SHMAT = 228 constant SYS_SHMDT (line 157) | SYS_SHMDT = 230 constant SYS_MINHERIT (line 158) | SYS_MINHERIT = 250 constant SYS_POLL (line 159) | SYS_POLL = 252 constant SYS_ISSETUGID (line 160) | SYS_ISSETUGID = 253 constant SYS_LCHOWN (line 161) | SYS_LCHOWN = 254 constant SYS_GETSID (line 162) | SYS_GETSID = 255 constant SYS_MSYNC (line 163) | SYS_MSYNC = 256 constant SYS_PIPE (line 164) | SYS_PIPE = 263 constant SYS_FHOPEN (line 165) | SYS_FHOPEN = 264 constant SYS_PREADV (line 166) | SYS_PREADV = 267 constant SYS_PWRITEV (line 167) | SYS_PWRITEV = 268 constant SYS_KQUEUE (line 168) | SYS_KQUEUE = 269 constant SYS_MLOCKALL (line 169) | SYS_MLOCKALL = 271 constant SYS_MUNLOCKALL (line 170) | SYS_MUNLOCKALL = 272 constant SYS_GETRESUID (line 171) | SYS_GETRESUID = 281 constant SYS_SETRESUID (line 172) | SYS_SETRESUID = 282 constant SYS_GETRESGID (line 173) | SYS_GETRESGID = 283 constant SYS_SETRESGID (line 174) | SYS_SETRESGID = 284 constant SYS_MQUERY (line 175) | SYS_MQUERY = 286 constant SYS_CLOSEFROM (line 176) | SYS_CLOSEFROM = 287 constant SYS_SIGALTSTACK (line 177) | SYS_SIGALTSTACK = 288 constant SYS_SHMGET (line 178) | SYS_SHMGET = 289 constant SYS_SEMOP (line 179) | SYS_SEMOP = 290 constant SYS_FHSTAT (line 180) | SYS_FHSTAT = 294 constant SYS___SEMCTL (line 181) | SYS___SEMCTL = 295 constant SYS_SHMCTL (line 182) | SYS_SHMCTL = 296 constant SYS_MSGCTL (line 183) | SYS_MSGCTL = 297 constant SYS_SCHED_YIELD (line 184) | SYS_SCHED_YIELD = 298 constant SYS_GETTHRID (line 185) | SYS_GETTHRID = 299 constant SYS___THRWAKEUP (line 186) | SYS___THRWAKEUP = 301 constant SYS___THREXIT (line 187) | SYS___THREXIT = 302 constant SYS___THRSIGDIVERT (line 188) | SYS___THRSIGDIVERT = 303 constant SYS___GETCWD (line 189) | SYS___GETCWD = 304 constant SYS_ADJFREQ (line 190) | SYS_ADJFREQ = 305 constant SYS_SETRTABLE (line 191) | SYS_SETRTABLE = 310 constant SYS_GETRTABLE (line 192) | SYS_GETRTABLE = 311 constant SYS_FACCESSAT (line 193) | SYS_FACCESSAT = 313 constant SYS_FCHMODAT (line 194) | SYS_FCHMODAT = 314 constant SYS_FCHOWNAT (line 195) | SYS_FCHOWNAT = 315 constant SYS_LINKAT (line 196) | SYS_LINKAT = 317 constant SYS_MKDIRAT (line 197) | SYS_MKDIRAT = 318 constant SYS_MKFIFOAT (line 198) | SYS_MKFIFOAT = 319 constant SYS_MKNODAT (line 199) | SYS_MKNODAT = 320 constant SYS_OPENAT (line 200) | SYS_OPENAT = 321 constant SYS_READLINKAT (line 201) | SYS_READLINKAT = 322 constant SYS_RENAMEAT (line 202) | SYS_RENAMEAT = 323 constant SYS_SYMLINKAT (line 203) | SYS_SYMLINKAT = 324 constant SYS_UNLINKAT (line 204) | SYS_UNLINKAT = 325 constant SYS___SET_TCB (line 205) | SYS___SET_TCB = 329 constant SYS___GET_TCB (line 206) | SYS___GET_TCB = 330 FILE: vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go constant SYS_EXECVE (line 11) | SYS_EXECVE = 59 constant SYS_FCNTL (line 12) | SYS_FCNTL = 62 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_386.go constant sizeofPtr (line 8) | sizeofPtr = 0x4 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x4 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long (line 18) | type _C_long type _C_long_long (line 19) | type _C_long_long type Timespec (line 22) | type Timespec struct type Timeval (line 27) | type Timeval struct type Timeval32 (line 32) | type Timeval32 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 81) | type Statfs_t struct type Flock_t (line 100) | type Flock_t struct type Fstore_t (line 108) | type Fstore_t struct type Radvisory_t (line 116) | type Radvisory_t struct type Fbootstraptransfer_t (line 121) | type Fbootstraptransfer_t struct type Log2phys_t (line 127) | type Log2phys_t struct type Fsid (line 133) | type Fsid struct type Dirent (line 137) | type Dirent struct type RawSockaddrInet4 (line 147) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 155) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 164) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 170) | type RawSockaddrDatalink struct type RawSockaddr (line 181) | type RawSockaddr struct type RawSockaddrAny (line 187) | type RawSockaddrAny struct type _Socklen (line 192) | type _Socklen type Linger (line 194) | type Linger struct type Iovec (line 199) | type Iovec struct type IPMreq (line 204) | type IPMreq struct type IPv6Mreq (line 209) | type IPv6Mreq struct type Msghdr (line 214) | type Msghdr struct type Cmsghdr (line 224) | type Cmsghdr struct type Inet4Pktinfo (line 230) | type Inet4Pktinfo 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 SizeofIPMreq (line 257) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 258) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 259) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 260) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 261) | SizeofInet4Pktinfo = 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 282) | type FdSet struct constant SizeofIfMsghdr (line 287) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 288) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 289) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 290) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 291) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 292) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 293) | SizeofRtMetrics = 0x38 type IfMsghdr (line 296) | type IfMsghdr struct type IfData (line 307) | type IfData struct type IfaMsghdr (line 339) | type IfaMsghdr struct type IfmaMsghdr (line 350) | type IfmaMsghdr struct type IfmaMsghdr2 (line 360) | type IfmaMsghdr2 struct type RtMsghdr (line 371) | type RtMsghdr struct type RtMetrics (line 387) | type RtMetrics struct constant SizeofBpfVersion (line 402) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 403) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 404) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 405) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 406) | SizeofBpfHdr = 0x14 type BpfVersion (line 409) | type BpfVersion struct type BpfStat (line 414) | type BpfStat struct type BpfProgram (line 419) | type BpfProgram struct type BpfInsn (line 424) | type BpfInsn struct type BpfHdr (line 431) | type BpfHdr struct type Termios (line 439) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long (line 18) | type _C_long type _C_long_long (line 19) | type _C_long_long type Timespec (line 22) | type Timespec struct type Timeval (line 27) | type Timeval struct type Timeval32 (line 33) | type Timeval32 struct type Rusage (line 38) | type Rusage struct type Rlimit (line 57) | type Rlimit struct type _Gid_t (line 62) | type _Gid_t type Stat_t (line 64) | type Stat_t struct type Statfs_t (line 86) | type Statfs_t struct type Flock_t (line 105) | type Flock_t struct type Fstore_t (line 113) | type Fstore_t struct type Radvisory_t (line 121) | type Radvisory_t struct type Fbootstraptransfer_t (line 127) | type Fbootstraptransfer_t struct type Log2phys_t (line 133) | type Log2phys_t struct type Fsid (line 139) | type Fsid struct type Dirent (line 143) | type Dirent struct type RawSockaddrInet4 (line 153) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 161) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 170) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 176) | type RawSockaddrDatalink struct type RawSockaddr (line 187) | type RawSockaddr struct type RawSockaddrAny (line 193) | type RawSockaddrAny struct type _Socklen (line 198) | type _Socklen type Linger (line 200) | type Linger struct type Iovec (line 205) | type Iovec struct type IPMreq (line 210) | type IPMreq struct type IPv6Mreq (line 215) | type IPv6Mreq struct type Msghdr (line 220) | type Msghdr struct type Cmsghdr (line 232) | type Cmsghdr struct type Inet4Pktinfo (line 238) | type Inet4Pktinfo struct type Inet6Pktinfo (line 244) | type Inet6Pktinfo struct type IPv6MTUInfo (line 249) | type IPv6MTUInfo struct type ICMPv6Filter (line 254) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 259) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 260) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 261) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 262) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 263) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 264) | SizeofLinger = 0x8 constant SizeofIPMreq (line 265) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 266) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 267) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 268) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 269) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 270) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 271) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 272) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 276) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 277) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 278) | PTRACE_KILL = 0x8 type Kevent_t (line 281) | type Kevent_t struct type FdSet (line 290) | type FdSet struct constant SizeofIfMsghdr (line 295) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 296) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 297) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 298) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 299) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 300) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 301) | SizeofRtMetrics = 0x38 type IfMsghdr (line 304) | type IfMsghdr struct type IfData (line 315) | type IfData struct type IfaMsghdr (line 347) | type IfaMsghdr struct type IfmaMsghdr (line 358) | type IfmaMsghdr struct type IfmaMsghdr2 (line 368) | type IfmaMsghdr2 struct type RtMsghdr (line 379) | type RtMsghdr struct type RtMetrics (line 395) | type RtMetrics struct constant SizeofBpfVersion (line 410) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 411) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 412) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 413) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 414) | SizeofBpfHdr = 0x14 type BpfVersion (line 417) | type BpfVersion struct type BpfStat (line 422) | type BpfStat struct type BpfProgram (line 427) | type BpfProgram struct type BpfInsn (line 433) | type BpfInsn struct type BpfHdr (line 440) | type BpfHdr struct type Termios (line 448) | type Termios struct constant AT_FDCWD (line 460) | AT_FDCWD = -0x2 constant AT_SYMLINK_NOFOLLOW (line 461) | AT_SYMLINK_NOFOLLOW = 0x20 FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go constant sizeofPtr (line 10) | sizeofPtr = 0x4 constant sizeofShort (line 11) | sizeofShort = 0x2 constant sizeofInt (line 12) | sizeofInt = 0x4 constant sizeofLong (line 13) | sizeofLong = 0x4 constant sizeofLongLong (line 14) | sizeofLongLong = 0x8 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timeval32 (line 34) | type Timeval32 type Rusage (line 36) | type Rusage struct type Rlimit (line 55) | type Rlimit struct type _Gid_t (line 60) | type _Gid_t type Stat_t (line 62) | type Stat_t struct type Statfs_t (line 83) | type Statfs_t struct type Flock_t (line 102) | type Flock_t struct type Fstore_t (line 110) | type Fstore_t struct type Radvisory_t (line 118) | type Radvisory_t struct type Fbootstraptransfer_t (line 123) | type Fbootstraptransfer_t struct type Log2phys_t (line 129) | type Log2phys_t struct type Fsid (line 135) | type Fsid struct type Dirent (line 139) | type Dirent struct type RawSockaddrInet4 (line 149) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 157) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 166) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 172) | type RawSockaddrDatalink struct type RawSockaddr (line 183) | type RawSockaddr struct type RawSockaddrAny (line 189) | type RawSockaddrAny struct type _Socklen (line 194) | type _Socklen type Linger (line 196) | type Linger struct type Iovec (line 201) | type Iovec struct type IPMreq (line 206) | type IPMreq struct type IPv6Mreq (line 211) | type IPv6Mreq struct type Msghdr (line 216) | type Msghdr struct type Cmsghdr (line 226) | type Cmsghdr struct type Inet4Pktinfo (line 232) | type Inet4Pktinfo struct type Inet6Pktinfo (line 238) | type Inet6Pktinfo struct type IPv6MTUInfo (line 243) | type IPv6MTUInfo struct type ICMPv6Filter (line 248) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 253) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 254) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 255) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 256) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 257) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 258) | SizeofLinger = 0x8 constant SizeofIPMreq (line 259) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 260) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 261) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 262) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 263) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 264) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 265) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 266) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 270) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 271) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 272) | PTRACE_KILL = 0x8 type Kevent_t (line 275) | type Kevent_t struct type FdSet (line 284) | type FdSet struct constant SizeofIfMsghdr (line 289) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 290) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 291) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 292) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 293) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 294) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 295) | SizeofRtMetrics = 0x38 type IfMsghdr (line 298) | type IfMsghdr struct type IfData (line 309) | type IfData struct type IfaMsghdr (line 341) | type IfaMsghdr struct type IfmaMsghdr (line 352) | type IfmaMsghdr struct type IfmaMsghdr2 (line 362) | type IfmaMsghdr2 struct type RtMsghdr (line 373) | type RtMsghdr struct type RtMetrics (line 389) | type RtMetrics struct constant SizeofBpfVersion (line 404) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 405) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 406) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 407) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 408) | SizeofBpfHdr = 0x14 type BpfVersion (line 411) | type BpfVersion struct type BpfStat (line 416) | type BpfStat struct type BpfProgram (line 421) | type BpfProgram struct type BpfInsn (line 426) | type BpfInsn struct type BpfHdr (line 433) | type BpfHdr struct type Termios (line 441) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long (line 18) | type _C_long type _C_long_long (line 19) | type _C_long_long type Timespec (line 22) | type Timespec struct type Timeval (line 27) | type Timeval struct type Timeval32 (line 33) | type Timeval32 struct type Rusage (line 38) | type Rusage struct type Rlimit (line 57) | type Rlimit struct type _Gid_t (line 62) | type _Gid_t type Stat_t (line 64) | type Stat_t struct type Statfs_t (line 86) | type Statfs_t struct type Flock_t (line 105) | type Flock_t struct type Fstore_t (line 113) | type Fstore_t struct type Radvisory_t (line 121) | type Radvisory_t struct type Fbootstraptransfer_t (line 127) | type Fbootstraptransfer_t struct type Log2phys_t (line 133) | type Log2phys_t struct type Fsid (line 139) | type Fsid struct type Dirent (line 143) | type Dirent struct type RawSockaddrInet4 (line 153) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 161) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 170) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 176) | type RawSockaddrDatalink struct type RawSockaddr (line 187) | type RawSockaddr struct type RawSockaddrAny (line 193) | type RawSockaddrAny struct type _Socklen (line 198) | type _Socklen type Linger (line 200) | type Linger struct type Iovec (line 205) | type Iovec struct type IPMreq (line 210) | type IPMreq struct type IPv6Mreq (line 215) | type IPv6Mreq struct type Msghdr (line 220) | type Msghdr struct type Cmsghdr (line 232) | type Cmsghdr struct type Inet4Pktinfo (line 238) | type Inet4Pktinfo struct type Inet6Pktinfo (line 244) | type Inet6Pktinfo struct type IPv6MTUInfo (line 249) | type IPv6MTUInfo struct type ICMPv6Filter (line 254) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 259) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 260) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 261) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 262) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 263) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 264) | SizeofLinger = 0x8 constant SizeofIPMreq (line 265) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 266) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 267) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 268) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 269) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 270) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 271) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 272) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 276) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 277) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 278) | PTRACE_KILL = 0x8 type Kevent_t (line 281) | type Kevent_t struct type FdSet (line 290) | type FdSet struct constant SizeofIfMsghdr (line 295) | SizeofIfMsghdr = 0x70 constant SizeofIfData (line 296) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 297) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 298) | SizeofIfmaMsghdr = 0x10 constant SizeofIfmaMsghdr2 (line 299) | SizeofIfmaMsghdr2 = 0x14 constant SizeofRtMsghdr (line 300) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 301) | SizeofRtMetrics = 0x38 type IfMsghdr (line 304) | type IfMsghdr struct type IfData (line 315) | type IfData struct type IfaMsghdr (line 347) | type IfaMsghdr struct type IfmaMsghdr (line 358) | type IfmaMsghdr struct type IfmaMsghdr2 (line 368) | type IfmaMsghdr2 struct type RtMsghdr (line 379) | type RtMsghdr struct type RtMetrics (line 395) | type RtMetrics struct constant SizeofBpfVersion (line 410) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 411) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 412) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 413) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 414) | SizeofBpfHdr = 0x14 type BpfVersion (line 417) | type BpfVersion struct type BpfStat (line 422) | type BpfStat struct type BpfProgram (line 427) | type BpfProgram struct type BpfInsn (line 433) | type BpfInsn struct type BpfHdr (line 440) | type BpfHdr struct type Termios (line 448) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 98) | type Statfs_t struct type Flock_t (line 125) | type Flock_t struct type Dirent (line 133) | type Dirent struct type Fsid (line 142) | type Fsid struct type RawSockaddrInet4 (line 146) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 154) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 163) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 169) | type RawSockaddrDatalink struct type RawSockaddr (line 182) | type RawSockaddr struct type RawSockaddrAny (line 188) | type RawSockaddrAny struct type _Socklen (line 193) | type _Socklen type Linger (line 195) | type Linger struct type Iovec (line 200) | type Iovec struct type IPMreq (line 205) | type IPMreq struct type IPv6Mreq (line 210) | type IPv6Mreq struct type Msghdr (line 215) | type Msghdr struct type Cmsghdr (line 227) | type Cmsghdr struct type Inet6Pktinfo (line 233) | type Inet6Pktinfo struct type IPv6MTUInfo (line 238) | type IPv6MTUInfo struct type ICMPv6Filter (line 243) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 248) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 249) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 250) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 251) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 252) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 253) | SizeofLinger = 0x8 constant SizeofIPMreq (line 254) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 255) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 256) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 257) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 258) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 259) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 260) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 264) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 265) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 266) | PTRACE_KILL = 0x8 type Kevent_t (line 269) | type Kevent_t struct type FdSet (line 278) | type FdSet struct constant SizeofIfMsghdr (line 283) | SizeofIfMsghdr = 0xb0 constant SizeofIfData (line 284) | SizeofIfData = 0xa0 constant SizeofIfaMsghdr (line 285) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 286) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 287) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 288) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 289) | SizeofRtMetrics = 0x70 type IfMsghdr (line 292) | type IfMsghdr struct type IfData (line 303) | type IfData struct type IfaMsghdr (line 331) | type IfaMsghdr struct type IfmaMsghdr (line 342) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 352) | type IfAnnounceMsghdr struct type RtMsghdr (line 361) | type RtMsghdr struct type RtMetrics (line 377) | type RtMetrics struct constant SizeofBpfVersion (line 397) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 398) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 399) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 400) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 401) | SizeofBpfHdr = 0x20 type BpfVersion (line 404) | type BpfVersion struct type BpfStat (line 409) | type BpfStat struct type BpfProgram (line 414) | type BpfProgram struct type BpfInsn (line 420) | type BpfInsn struct type BpfHdr (line 427) | type BpfHdr struct type Termios (line 435) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go constant sizeofPtr (line 8) | sizeofPtr = 0x4 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x4 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long (line 18) | type _C_long type _C_long_long (line 19) | type _C_long_long type Timespec (line 22) | type Timespec struct type Timeval (line 27) | type Timeval struct type Rusage (line 32) | type Rusage struct type Rlimit (line 51) | type Rlimit struct type _Gid_t (line 56) | type _Gid_t constant S_IFMT (line 59) | S_IFMT = 0xf000 constant S_IFIFO (line 60) | S_IFIFO = 0x1000 constant S_IFCHR (line 61) | S_IFCHR = 0x2000 constant S_IFDIR (line 62) | S_IFDIR = 0x4000 constant S_IFBLK (line 63) | S_IFBLK = 0x6000 constant S_IFREG (line 64) | S_IFREG = 0x8000 constant S_IFLNK (line 65) | S_IFLNK = 0xa000 constant S_IFSOCK (line 66) | S_IFSOCK = 0xc000 constant S_ISUID (line 67) | S_ISUID = 0x800 constant S_ISGID (line 68) | S_ISGID = 0x400 constant S_ISVTX (line 69) | S_ISVTX = 0x200 constant S_IRUSR (line 70) | S_IRUSR = 0x100 constant S_IWUSR (line 71) | S_IWUSR = 0x80 constant S_IXUSR (line 72) | S_IXUSR = 0x40 type Stat_t (line 75) | type Stat_t struct type Statfs_t (line 96) | type Statfs_t struct type Flock_t (line 121) | type Flock_t struct type Dirent (line 130) | type Dirent struct type Fsid (line 138) | type Fsid struct constant FADV_NORMAL (line 143) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 144) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 145) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 146) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 147) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 148) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 151) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 159) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 168) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 174) | type RawSockaddrDatalink struct type RawSockaddr (line 185) | type RawSockaddr struct type RawSockaddrAny (line 191) | type RawSockaddrAny struct type _Socklen (line 196) | type _Socklen type Linger (line 198) | type Linger struct type Iovec (line 203) | type Iovec struct type IPMreq (line 208) | type IPMreq struct type IPMreqn (line 213) | type IPMreqn struct type IPv6Mreq (line 219) | type IPv6Mreq struct type Msghdr (line 224) | type Msghdr struct type Cmsghdr (line 234) | type Cmsghdr struct type Inet6Pktinfo (line 240) | type Inet6Pktinfo struct type IPv6MTUInfo (line 245) | type IPv6MTUInfo struct type ICMPv6Filter (line 250) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 255) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 256) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 257) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 258) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 259) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 260) | SizeofLinger = 0x8 constant SizeofIPMreq (line 261) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 262) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 263) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 264) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 265) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 266) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 267) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 268) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 272) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 273) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 274) | PTRACE_KILL = 0x8 type Kevent_t (line 277) | type Kevent_t struct type FdSet (line 286) | type FdSet struct constant sizeofIfMsghdr (line 291) | sizeofIfMsghdr = 0x64 constant SizeofIfMsghdr (line 292) | SizeofIfMsghdr = 0x60 constant sizeofIfData (line 293) | sizeofIfData = 0x54 constant SizeofIfData (line 294) | SizeofIfData = 0x50 constant SizeofIfaMsghdr (line 295) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 296) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 297) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 298) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 299) | SizeofRtMetrics = 0x38 type ifMsghdr (line 302) | type ifMsghdr struct type IfMsghdr (line 313) | type IfMsghdr struct type ifData (line 324) | type ifData struct type IfData (line 352) | type IfData struct type IfaMsghdr (line 380) | type IfaMsghdr struct type IfmaMsghdr (line 391) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 401) | type IfAnnounceMsghdr struct type RtMsghdr (line 410) | type RtMsghdr struct type RtMetrics (line 426) | type RtMetrics struct constant SizeofBpfVersion (line 442) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 443) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 444) | SizeofBpfZbuf = 0xc constant SizeofBpfProgram (line 445) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 446) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 447) | SizeofBpfHdr = 0x14 constant SizeofBpfZbufHeader (line 448) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 451) | type BpfVersion struct type BpfStat (line 456) | type BpfStat struct type BpfZbuf (line 461) | type BpfZbuf struct type BpfProgram (line 467) | type BpfProgram struct type BpfInsn (line 472) | type BpfInsn struct type BpfHdr (line 479) | type BpfHdr struct type BpfZbufHeader (line 487) | type BpfZbufHeader struct type Termios (line 494) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 type _C_short (line 16) | type _C_short type _C_int (line 17) | type _C_int type _C_long (line 18) | type _C_long type _C_long_long (line 19) | type _C_long_long type Timespec (line 22) | type Timespec struct type Timeval (line 27) | type Timeval struct type Rusage (line 32) | type Rusage struct type Rlimit (line 51) | type Rlimit struct type _Gid_t (line 56) | type _Gid_t constant S_IFMT (line 59) | S_IFMT = 0xf000 constant S_IFIFO (line 60) | S_IFIFO = 0x1000 constant S_IFCHR (line 61) | S_IFCHR = 0x2000 constant S_IFDIR (line 62) | S_IFDIR = 0x4000 constant S_IFBLK (line 63) | S_IFBLK = 0x6000 constant S_IFREG (line 64) | S_IFREG = 0x8000 constant S_IFLNK (line 65) | S_IFLNK = 0xa000 constant S_IFSOCK (line 66) | S_IFSOCK = 0xc000 constant S_ISUID (line 67) | S_ISUID = 0x800 constant S_ISGID (line 68) | S_ISGID = 0x400 constant S_ISVTX (line 69) | S_ISVTX = 0x200 constant S_IRUSR (line 70) | S_IRUSR = 0x100 constant S_IWUSR (line 71) | S_IWUSR = 0x80 constant S_IXUSR (line 72) | S_IXUSR = 0x40 type Stat_t (line 75) | type Stat_t struct type Statfs_t (line 95) | type Statfs_t struct type Flock_t (line 120) | type Flock_t struct type Dirent (line 130) | type Dirent struct type Fsid (line 138) | type Fsid struct constant FADV_NORMAL (line 143) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 144) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 145) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 146) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 147) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 148) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 151) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 159) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 168) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 174) | type RawSockaddrDatalink struct type RawSockaddr (line 185) | type RawSockaddr struct type RawSockaddrAny (line 191) | type RawSockaddrAny struct type _Socklen (line 196) | type _Socklen type Linger (line 198) | type Linger struct type Iovec (line 203) | type Iovec struct type IPMreq (line 208) | type IPMreq struct type IPMreqn (line 213) | type IPMreqn struct type IPv6Mreq (line 219) | type IPv6Mreq struct type Msghdr (line 224) | type Msghdr struct type Cmsghdr (line 236) | type Cmsghdr struct type Inet6Pktinfo (line 242) | type Inet6Pktinfo struct type IPv6MTUInfo (line 247) | type IPv6MTUInfo struct type ICMPv6Filter (line 252) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 257) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 258) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 259) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 260) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 261) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 262) | SizeofLinger = 0x8 constant SizeofIPMreq (line 263) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 264) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 265) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 266) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 267) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 268) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 269) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 270) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 274) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 275) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 276) | PTRACE_KILL = 0x8 type Kevent_t (line 279) | type Kevent_t struct type FdSet (line 288) | type FdSet struct constant sizeofIfMsghdr (line 293) | sizeofIfMsghdr = 0xa8 constant SizeofIfMsghdr (line 294) | SizeofIfMsghdr = 0xa8 constant sizeofIfData (line 295) | sizeofIfData = 0x98 constant SizeofIfData (line 296) | SizeofIfData = 0x98 constant SizeofIfaMsghdr (line 297) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 298) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 299) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 300) | SizeofRtMsghdr = 0x98 constant SizeofRtMetrics (line 301) | SizeofRtMetrics = 0x70 type ifMsghdr (line 304) | type ifMsghdr struct type IfMsghdr (line 315) | type IfMsghdr struct type ifData (line 326) | type ifData struct type IfData (line 354) | type IfData struct type IfaMsghdr (line 382) | type IfaMsghdr struct type IfmaMsghdr (line 393) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 403) | type IfAnnounceMsghdr struct type RtMsghdr (line 412) | type RtMsghdr struct type RtMetrics (line 428) | type RtMetrics struct constant SizeofBpfVersion (line 444) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 445) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 446) | SizeofBpfZbuf = 0x18 constant SizeofBpfProgram (line 447) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 448) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 449) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 450) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 453) | type BpfVersion struct type BpfStat (line 458) | type BpfStat struct type BpfZbuf (line 463) | type BpfZbuf struct type BpfProgram (line 469) | type BpfProgram struct type BpfInsn (line 475) | type BpfInsn struct type BpfHdr (line 482) | type BpfHdr struct type BpfZbufHeader (line 490) | type BpfZbufHeader struct type Termios (line 497) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 29) | type Timeval struct type Rusage (line 35) | type Rusage struct type Rlimit (line 54) | type Rlimit struct type _Gid_t (line 59) | type _Gid_t constant S_IFMT (line 62) | S_IFMT = 0xf000 constant S_IFIFO (line 63) | S_IFIFO = 0x1000 constant S_IFCHR (line 64) | S_IFCHR = 0x2000 constant S_IFDIR (line 65) | S_IFDIR = 0x4000 constant S_IFBLK (line 66) | S_IFBLK = 0x6000 constant S_IFREG (line 67) | S_IFREG = 0x8000 constant S_IFLNK (line 68) | S_IFLNK = 0xa000 constant S_IFSOCK (line 69) | S_IFSOCK = 0xc000 constant S_ISUID (line 70) | S_ISUID = 0x800 constant S_ISGID (line 71) | S_ISGID = 0x400 constant S_ISVTX (line 72) | S_ISVTX = 0x200 constant S_IRUSR (line 73) | S_IRUSR = 0x100 constant S_IWUSR (line 74) | S_IWUSR = 0x80 constant S_IXUSR (line 75) | S_IXUSR = 0x40 type Stat_t (line 78) | type Stat_t struct type Statfs_t (line 98) | type Statfs_t struct type Flock_t (line 123) | type Flock_t struct type Dirent (line 133) | type Dirent struct type Fsid (line 141) | type Fsid struct type RawSockaddrInet4 (line 145) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 153) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 162) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 168) | type RawSockaddrDatalink struct type RawSockaddr (line 179) | type RawSockaddr struct type RawSockaddrAny (line 185) | type RawSockaddrAny struct type _Socklen (line 190) | type _Socklen type Linger (line 192) | type Linger struct type Iovec (line 197) | type Iovec struct type IPMreq (line 202) | type IPMreq struct type IPMreqn (line 207) | type IPMreqn struct type IPv6Mreq (line 213) | type IPv6Mreq struct type Msghdr (line 218) | type Msghdr struct type Cmsghdr (line 228) | type Cmsghdr struct type Inet6Pktinfo (line 234) | type Inet6Pktinfo struct type IPv6MTUInfo (line 239) | type IPv6MTUInfo struct type ICMPv6Filter (line 244) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 249) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 250) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 251) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 252) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 253) | SizeofSockaddrDatalink = 0x36 constant SizeofLinger (line 254) | SizeofLinger = 0x8 constant SizeofIPMreq (line 255) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 256) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 257) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 258) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 259) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 260) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 261) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 262) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 266) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 267) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 268) | PTRACE_KILL = 0x8 type Kevent_t (line 271) | type Kevent_t struct type FdSet (line 280) | type FdSet struct constant sizeofIfMsghdr (line 285) | sizeofIfMsghdr = 0x70 constant SizeofIfMsghdr (line 286) | SizeofIfMsghdr = 0x70 constant sizeofIfData (line 287) | sizeofIfData = 0x60 constant SizeofIfData (line 288) | SizeofIfData = 0x60 constant SizeofIfaMsghdr (line 289) | SizeofIfaMsghdr = 0x14 constant SizeofIfmaMsghdr (line 290) | SizeofIfmaMsghdr = 0x10 constant SizeofIfAnnounceMsghdr (line 291) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 292) | SizeofRtMsghdr = 0x5c constant SizeofRtMetrics (line 293) | SizeofRtMetrics = 0x38 type ifMsghdr (line 296) | type ifMsghdr struct type IfMsghdr (line 307) | type IfMsghdr struct type ifData (line 318) | type ifData struct type IfData (line 346) | type IfData struct type IfaMsghdr (line 375) | type IfaMsghdr struct type IfmaMsghdr (line 386) | type IfmaMsghdr struct type IfAnnounceMsghdr (line 396) | type IfAnnounceMsghdr struct type RtMsghdr (line 405) | type RtMsghdr struct type RtMetrics (line 421) | type RtMetrics struct constant SizeofBpfVersion (line 437) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 438) | SizeofBpfStat = 0x8 constant SizeofBpfZbuf (line 439) | SizeofBpfZbuf = 0xc constant SizeofBpfProgram (line 440) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 441) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 442) | SizeofBpfHdr = 0x20 constant SizeofBpfZbufHeader (line 443) | SizeofBpfZbufHeader = 0x20 type BpfVersion (line 446) | type BpfVersion struct type BpfStat (line 451) | type BpfStat struct type BpfZbuf (line 456) | type BpfZbuf struct type BpfProgram (line 462) | type BpfProgram struct type BpfInsn (line 467) | type BpfInsn struct type BpfHdr (line 474) | type BpfHdr struct type BpfZbufHeader (line 482) | type BpfZbufHeader struct type Termios (line 489) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_386.go constant sizeofPtr (line 8) | sizeofPtr = 0x4 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x4 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 57) | type Time_t type Tms (line 59) | type Tms struct type Utimbuf (line 66) | type Utimbuf struct type Rusage (line 71) | type Rusage struct type Rlimit (line 90) | type Rlimit struct type _Gid_t (line 95) | type _Gid_t type Stat_t (line 97) | type Stat_t struct type Statfs_t (line 118) | type Statfs_t struct type Dirent (line 133) | type Dirent struct type Fsid (line 142) | type Fsid struct type Flock_t (line 146) | type Flock_t struct constant FADV_NORMAL (line 155) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 156) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 157) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 158) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 159) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 160) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 163) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 170) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 178) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 183) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 193) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 200) | type RawSockaddrHCI struct type RawSockaddrCAN (line 206) | type RawSockaddrCAN struct type RawSockaddrALG (line 213) | type RawSockaddrALG struct type RawSockaddrVM (line 221) | type RawSockaddrVM struct type RawSockaddr (line 229) | type RawSockaddr struct type RawSockaddrAny (line 234) | type RawSockaddrAny struct type _Socklen (line 239) | type _Socklen type Linger (line 241) | type Linger struct type Iovec (line 246) | type Iovec struct type IPMreq (line 251) | type IPMreq struct type IPMreqn (line 256) | type IPMreqn struct type IPv6Mreq (line 262) | type IPv6Mreq struct type Msghdr (line 267) | type Msghdr struct type Cmsghdr (line 277) | type Cmsghdr struct type Inet4Pktinfo (line 284) | type Inet4Pktinfo struct type Inet6Pktinfo (line 290) | type Inet6Pktinfo struct type IPv6MTUInfo (line 295) | type IPv6MTUInfo struct type ICMPv6Filter (line 300) | type ICMPv6Filter struct type Ucred (line 304) | type Ucred struct type TCPInfo (line 310) | type TCPInfo struct constant SizeofSockaddrInet4 (line 345) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 346) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 347) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 348) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 349) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 350) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 351) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 352) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 353) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 354) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 355) | SizeofLinger = 0x8 constant SizeofIPMreq (line 356) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 357) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 358) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 359) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 360) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 361) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 362) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 363) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 364) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 365) | SizeofUcred = 0xc constant SizeofTCPInfo (line 366) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 370) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 371) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 372) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 373) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 374) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 375) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 376) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 377) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 378) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 379) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 380) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 381) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 382) | IFLA_MTU = 0x4 constant IFLA_LINK (line 383) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 384) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 385) | IFLA_STATS = 0x7 constant IFLA_COST (line 386) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 387) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 388) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 389) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 390) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 391) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 392) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 393) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 394) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 395) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 396) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 397) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 398) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 399) | IFLA_MAX = 0x1d constant RT_SCOPE_UNIVERSE (line 400) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 401) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 402) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 403) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 404) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 405) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 406) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 407) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 408) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 409) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 410) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 411) | RTA_UNSPEC = 0x0 constant RTA_DST (line 412) | RTA_DST = 0x1 constant RTA_SRC (line 413) | RTA_SRC = 0x2 constant RTA_IIF (line 414) | RTA_IIF = 0x3 constant RTA_OIF (line 415) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 416) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 417) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 418) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 419) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 420) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 421) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 422) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 423) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 424) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 425) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 426) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 427) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 428) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 429) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 430) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 431) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 432) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 433) | RTN_THROW = 0x9 constant RTN_NAT (line 434) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 435) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 436) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 437) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 438) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 439) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 440) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 441) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 442) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 443) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 444) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 445) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 446) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 447) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 448) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 449) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 450) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 451) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 452) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 453) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 454) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 455) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 456) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 457) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 458) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 459) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 460) | SizeofRtNexthop = 0x8 type NlMsghdr (line 463) | type NlMsghdr struct type NlMsgerr (line 471) | type NlMsgerr struct type RtGenmsg (line 476) | type RtGenmsg struct type NlAttr (line 480) | type NlAttr struct type RtAttr (line 485) | type RtAttr struct type IfInfomsg (line 490) | type IfInfomsg struct type IfAddrmsg (line 499) | type IfAddrmsg struct type RtMsg (line 507) | type RtMsg struct type RtNexthop (line 519) | type RtNexthop struct constant SizeofSockFilter (line 527) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 528) | SizeofSockFprog = 0x8 type SockFilter (line 531) | type SockFilter struct type SockFprog (line 538) | type SockFprog struct type InotifyEvent (line 544) | type InotifyEvent struct constant SizeofInotifyEvent (line 552) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 554) | type PtraceRegs struct type FdSet (line 574) | type FdSet struct type Sysinfo_t (line 578) | type Sysinfo_t struct type Utsname (line 595) | type Utsname struct type Ustat_t (line 604) | type Ustat_t struct type EpollEvent (line 611) | type EpollEvent struct constant AT_FDCWD (line 618) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 619) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 620) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 621) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 624) | type PollFd struct constant POLLIN (line 631) | POLLIN = 0x1 constant POLLPRI (line 632) | POLLPRI = 0x2 constant POLLOUT (line 633) | POLLOUT = 0x4 constant POLLRDHUP (line 634) | POLLRDHUP = 0x2000 constant POLLERR (line 635) | POLLERR = 0x8 constant POLLHUP (line 636) | POLLHUP = 0x10 constant POLLNVAL (line 637) | POLLNVAL = 0x20 type Sigset_t (line 640) | type Sigset_t struct type Termios (line 644) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 118) | type Statfs_t struct type Dirent (line 133) | type Dirent struct type Fsid (line 142) | type Fsid struct type Flock_t (line 146) | type Flock_t struct constant FADV_NORMAL (line 157) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 158) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 159) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 160) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 161) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 162) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 165) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 172) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 180) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 185) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 195) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 202) | type RawSockaddrHCI struct type RawSockaddrCAN (line 208) | type RawSockaddrCAN struct type RawSockaddrALG (line 215) | type RawSockaddrALG struct type RawSockaddrVM (line 223) | type RawSockaddrVM struct type RawSockaddr (line 231) | type RawSockaddr struct type RawSockaddrAny (line 236) | type RawSockaddrAny struct type _Socklen (line 241) | type _Socklen type Linger (line 243) | type Linger struct type Iovec (line 248) | type Iovec struct type IPMreq (line 253) | type IPMreq struct type IPMreqn (line 258) | type IPMreqn struct type IPv6Mreq (line 264) | type IPv6Mreq struct type Msghdr (line 269) | type Msghdr struct type Cmsghdr (line 281) | type Cmsghdr struct type Inet4Pktinfo (line 288) | type Inet4Pktinfo struct type Inet6Pktinfo (line 294) | type Inet6Pktinfo struct type IPv6MTUInfo (line 299) | type IPv6MTUInfo struct type ICMPv6Filter (line 304) | type ICMPv6Filter struct type Ucred (line 308) | type Ucred struct type TCPInfo (line 314) | type TCPInfo struct constant SizeofSockaddrInet4 (line 349) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 350) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 351) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 352) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 353) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 354) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 355) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 356) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 357) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 358) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 359) | SizeofLinger = 0x8 constant SizeofIPMreq (line 360) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 361) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 362) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 363) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 364) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 365) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 366) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 367) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 368) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 369) | SizeofUcred = 0xc constant SizeofTCPInfo (line 370) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 374) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 375) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 376) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 377) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 378) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 379) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 380) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 381) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 382) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 383) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 384) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 385) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 386) | IFLA_MTU = 0x4 constant IFLA_LINK (line 387) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 388) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 389) | IFLA_STATS = 0x7 constant IFLA_COST (line 390) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 391) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 392) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 393) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 394) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 395) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 396) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 397) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 398) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 399) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 400) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 401) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 402) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 403) | IFLA_MAX = 0x1d constant RT_SCOPE_UNIVERSE (line 404) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 405) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 406) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 407) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 408) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 409) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 410) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 411) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 412) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 413) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 414) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 415) | RTA_UNSPEC = 0x0 constant RTA_DST (line 416) | RTA_DST = 0x1 constant RTA_SRC (line 417) | RTA_SRC = 0x2 constant RTA_IIF (line 418) | RTA_IIF = 0x3 constant RTA_OIF (line 419) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 420) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 421) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 422) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 423) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 424) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 425) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 426) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 427) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 428) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 429) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 430) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 431) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 432) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 433) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 434) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 435) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 436) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 437) | RTN_THROW = 0x9 constant RTN_NAT (line 438) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 439) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 440) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 441) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 442) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 443) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 444) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 445) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 446) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 447) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 448) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 449) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 450) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 451) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 452) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 453) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 454) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 455) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 456) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 457) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 458) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 459) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 460) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 461) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 462) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 463) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 464) | SizeofRtNexthop = 0x8 type NlMsghdr (line 467) | type NlMsghdr struct type NlMsgerr (line 475) | type NlMsgerr struct type RtGenmsg (line 480) | type RtGenmsg struct type NlAttr (line 484) | type NlAttr struct type RtAttr (line 489) | type RtAttr struct type IfInfomsg (line 494) | type IfInfomsg struct type IfAddrmsg (line 503) | type IfAddrmsg struct type RtMsg (line 511) | type RtMsg struct type RtNexthop (line 523) | type RtNexthop struct constant SizeofSockFilter (line 531) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 532) | SizeofSockFprog = 0x10 type SockFilter (line 535) | type SockFilter struct type SockFprog (line 542) | type SockFprog struct type InotifyEvent (line 548) | type InotifyEvent struct constant SizeofInotifyEvent (line 556) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 558) | type PtraceRegs struct type FdSet (line 588) | type FdSet struct type Sysinfo_t (line 592) | type Sysinfo_t struct type Utsname (line 611) | type Utsname struct type Ustat_t (line 620) | type Ustat_t struct type EpollEvent (line 629) | type EpollEvent struct constant AT_FDCWD (line 636) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 637) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 638) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 639) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 642) | type PollFd struct constant POLLIN (line 649) | POLLIN = 0x1 constant POLLPRI (line 650) | POLLPRI = 0x2 constant POLLOUT (line 651) | POLLOUT = 0x4 constant POLLRDHUP (line 652) | POLLRDHUP = 0x2000 constant POLLERR (line 653) | POLLERR = 0x8 constant POLLHUP (line 654) | POLLHUP = 0x10 constant POLLNVAL (line 655) | POLLNVAL = 0x20 type Sigset_t (line 658) | type Sigset_t struct type Termios (line 662) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_arm.go constant sizeofPtr (line 8) | sizeofPtr = 0x4 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x4 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 57) | type Time_t type Tms (line 59) | type Tms struct type Utimbuf (line 66) | type Utimbuf struct type Rusage (line 71) | type Rusage struct type Rlimit (line 90) | type Rlimit struct type _Gid_t (line 95) | type _Gid_t type Stat_t (line 97) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct constant FADV_NORMAL (line 159) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 160) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 161) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 162) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 163) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 164) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 167) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 174) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 182) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 187) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 197) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 204) | type RawSockaddrHCI struct type RawSockaddrCAN (line 210) | type RawSockaddrCAN struct type RawSockaddrALG (line 217) | type RawSockaddrALG struct type RawSockaddrVM (line 225) | type RawSockaddrVM struct type RawSockaddr (line 233) | type RawSockaddr struct type RawSockaddrAny (line 238) | type RawSockaddrAny struct type _Socklen (line 243) | type _Socklen type Linger (line 245) | type Linger struct type Iovec (line 250) | type Iovec struct type IPMreq (line 255) | type IPMreq struct type IPMreqn (line 260) | type IPMreqn struct type IPv6Mreq (line 266) | type IPv6Mreq struct type Msghdr (line 271) | type Msghdr struct type Cmsghdr (line 281) | type Cmsghdr struct type Inet4Pktinfo (line 288) | type Inet4Pktinfo struct type Inet6Pktinfo (line 294) | type Inet6Pktinfo struct type IPv6MTUInfo (line 299) | type IPv6MTUInfo struct type ICMPv6Filter (line 304) | type ICMPv6Filter struct type Ucred (line 308) | type Ucred struct type TCPInfo (line 314) | type TCPInfo struct constant SizeofSockaddrInet4 (line 349) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 350) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 351) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 352) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 353) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 354) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 355) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 356) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 357) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 358) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 359) | SizeofLinger = 0x8 constant SizeofIPMreq (line 360) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 361) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 362) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 363) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 364) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 365) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 366) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 367) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 368) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 369) | SizeofUcred = 0xc constant SizeofTCPInfo (line 370) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 374) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 375) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 376) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 377) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 378) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 379) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 380) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 381) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 382) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 383) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 384) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 385) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 386) | IFLA_MTU = 0x4 constant IFLA_LINK (line 387) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 388) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 389) | IFLA_STATS = 0x7 constant IFLA_COST (line 390) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 391) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 392) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 393) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 394) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 395) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 396) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 397) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 398) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 399) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 400) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 401) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 402) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 403) | IFLA_MAX = 0x1d constant RT_SCOPE_UNIVERSE (line 404) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 405) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 406) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 407) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 408) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 409) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 410) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 411) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 412) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 413) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 414) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 415) | RTA_UNSPEC = 0x0 constant RTA_DST (line 416) | RTA_DST = 0x1 constant RTA_SRC (line 417) | RTA_SRC = 0x2 constant RTA_IIF (line 418) | RTA_IIF = 0x3 constant RTA_OIF (line 419) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 420) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 421) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 422) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 423) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 424) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 425) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 426) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 427) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 428) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 429) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 430) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 431) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 432) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 433) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 434) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 435) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 436) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 437) | RTN_THROW = 0x9 constant RTN_NAT (line 438) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 439) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 440) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 441) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 442) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 443) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 444) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 445) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 446) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 447) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 448) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 449) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 450) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 451) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 452) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 453) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 454) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 455) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 456) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 457) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 458) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 459) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 460) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 461) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 462) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 463) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 464) | SizeofRtNexthop = 0x8 type NlMsghdr (line 467) | type NlMsghdr struct type NlMsgerr (line 475) | type NlMsgerr struct type RtGenmsg (line 480) | type RtGenmsg struct type NlAttr (line 484) | type NlAttr struct type RtAttr (line 489) | type RtAttr struct type IfInfomsg (line 494) | type IfInfomsg struct type IfAddrmsg (line 503) | type IfAddrmsg struct type RtMsg (line 511) | type RtMsg struct type RtNexthop (line 523) | type RtNexthop struct constant SizeofSockFilter (line 531) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 532) | SizeofSockFprog = 0x8 type SockFilter (line 535) | type SockFilter struct type SockFprog (line 542) | type SockFprog struct type InotifyEvent (line 548) | type InotifyEvent struct constant SizeofInotifyEvent (line 556) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 558) | type PtraceRegs struct type FdSet (line 562) | type FdSet struct type Sysinfo_t (line 566) | type Sysinfo_t struct type Utsname (line 583) | type Utsname struct type Ustat_t (line 592) | type Ustat_t struct type EpollEvent (line 599) | type EpollEvent struct constant AT_FDCWD (line 607) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 608) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 609) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 610) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 613) | type PollFd struct constant POLLIN (line 620) | POLLIN = 0x1 constant POLLPRI (line 621) | POLLPRI = 0x2 constant POLLOUT (line 622) | POLLOUT = 0x4 constant POLLRDHUP (line 623) | POLLRDHUP = 0x2000 constant POLLERR (line 624) | POLLERR = 0x8 constant POLLHUP (line 625) | POLLHUP = 0x10 constant POLLNVAL (line 626) | POLLNVAL = 0x20 type Sigset_t (line 629) | type Sigset_t struct type Termios (line 633) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct constant FADV_NORMAL (line 158) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 159) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 160) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 161) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 162) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 163) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 166) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 173) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 181) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 186) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 196) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 203) | type RawSockaddrHCI struct type RawSockaddrCAN (line 209) | type RawSockaddrCAN struct type RawSockaddrALG (line 216) | type RawSockaddrALG struct type RawSockaddrVM (line 224) | type RawSockaddrVM struct type RawSockaddr (line 232) | type RawSockaddr struct type RawSockaddrAny (line 237) | type RawSockaddrAny struct type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger struct type Iovec (line 249) | type Iovec struct type IPMreq (line 254) | type IPMreq struct type IPMreqn (line 259) | type IPMreqn struct type IPv6Mreq (line 265) | type IPv6Mreq struct type Msghdr (line 270) | type Msghdr struct type Cmsghdr (line 282) | type Cmsghdr struct type Inet4Pktinfo (line 289) | type Inet4Pktinfo struct type Inet6Pktinfo (line 295) | type Inet6Pktinfo struct type IPv6MTUInfo (line 300) | type IPv6MTUInfo struct type ICMPv6Filter (line 305) | type ICMPv6Filter struct type Ucred (line 309) | type Ucred struct type TCPInfo (line 315) | type TCPInfo struct constant SizeofSockaddrInet4 (line 350) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 351) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 352) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 353) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 354) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 355) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 356) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 357) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 358) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 359) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 360) | SizeofLinger = 0x8 constant SizeofIPMreq (line 361) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 362) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 363) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 364) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 365) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 366) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 367) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 368) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 369) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 370) | SizeofUcred = 0xc constant SizeofTCPInfo (line 371) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 375) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 376) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 377) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 378) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 379) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 380) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 381) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 382) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 383) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 384) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 385) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 386) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 387) | IFLA_MTU = 0x4 constant IFLA_LINK (line 388) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 389) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 390) | IFLA_STATS = 0x7 constant IFLA_COST (line 391) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 392) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 393) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 394) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 395) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 396) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 397) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 398) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 399) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 400) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 401) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 402) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 403) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 404) | IFLA_MAX = 0x22 constant RT_SCOPE_UNIVERSE (line 405) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 406) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 407) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 408) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 409) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 410) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 411) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 412) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 413) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 414) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 415) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 416) | RTA_UNSPEC = 0x0 constant RTA_DST (line 417) | RTA_DST = 0x1 constant RTA_SRC (line 418) | RTA_SRC = 0x2 constant RTA_IIF (line 419) | RTA_IIF = 0x3 constant RTA_OIF (line 420) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 421) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 422) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 423) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 424) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 425) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 426) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 427) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 428) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 429) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 430) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 431) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 432) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 433) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 434) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 435) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 436) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 437) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 438) | RTN_THROW = 0x9 constant RTN_NAT (line 439) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 440) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 441) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 442) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 443) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 444) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 445) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 446) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 447) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 448) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 449) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 450) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 451) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 452) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 453) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 454) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 455) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 456) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 457) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 458) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 459) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 460) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 461) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 462) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 463) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 464) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 465) | SizeofRtNexthop = 0x8 type NlMsghdr (line 468) | type NlMsghdr struct type NlMsgerr (line 476) | type NlMsgerr struct type RtGenmsg (line 481) | type RtGenmsg struct type NlAttr (line 485) | type NlAttr struct type RtAttr (line 490) | type RtAttr struct type IfInfomsg (line 495) | type IfInfomsg struct type IfAddrmsg (line 504) | type IfAddrmsg struct type RtMsg (line 512) | type RtMsg struct type RtNexthop (line 524) | type RtNexthop struct constant SizeofSockFilter (line 532) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 533) | SizeofSockFprog = 0x10 type SockFilter (line 536) | type SockFilter struct type SockFprog (line 543) | type SockFprog struct type InotifyEvent (line 549) | type InotifyEvent struct constant SizeofInotifyEvent (line 557) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 559) | type PtraceRegs struct type FdSet (line 566) | type FdSet struct type Sysinfo_t (line 570) | type Sysinfo_t struct type Utsname (line 589) | type Utsname struct type Ustat_t (line 598) | type Ustat_t struct type EpollEvent (line 607) | type EpollEvent struct constant AT_FDCWD (line 615) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 616) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 617) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 618) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 621) | type PollFd struct constant POLLIN (line 628) | POLLIN = 0x1 constant POLLPRI (line 629) | POLLPRI = 0x2 constant POLLOUT (line 630) | POLLOUT = 0x4 constant POLLRDHUP (line 631) | POLLRDHUP = 0x2000 constant POLLERR (line 632) | POLLERR = 0x8 constant POLLHUP (line 633) | POLLHUP = 0x10 constant POLLNVAL (line 634) | POLLNVAL = 0x20 type Sigset_t (line 637) | type Sigset_t struct type Termios (line 641) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips.go constant sizeofPtr (line 8) | sizeofPtr = 0x4 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x4 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 57) | type Time_t type Tms (line 59) | type Tms struct type Utimbuf (line 66) | type Utimbuf struct type Rusage (line 71) | type Rusage struct type Rlimit (line 90) | type Rlimit struct type _Gid_t (line 95) | type _Gid_t type Stat_t (line 97) | type Stat_t struct type Statfs_t (line 117) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct constant FADV_NORMAL (line 158) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 159) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 160) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 161) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 162) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 163) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 166) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 173) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 181) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 186) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 196) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 203) | type RawSockaddrHCI struct type RawSockaddrCAN (line 209) | type RawSockaddrCAN struct type RawSockaddrALG (line 216) | type RawSockaddrALG struct type RawSockaddrVM (line 224) | type RawSockaddrVM struct type RawSockaddr (line 232) | type RawSockaddr struct type RawSockaddrAny (line 237) | type RawSockaddrAny struct type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger struct type Iovec (line 249) | type Iovec struct type IPMreq (line 254) | type IPMreq struct type IPMreqn (line 259) | type IPMreqn struct type IPv6Mreq (line 265) | type IPv6Mreq struct type Msghdr (line 270) | type Msghdr struct type Cmsghdr (line 280) | type Cmsghdr struct type Inet4Pktinfo (line 286) | type Inet4Pktinfo struct type Inet6Pktinfo (line 292) | type Inet6Pktinfo struct type IPv6MTUInfo (line 297) | type IPv6MTUInfo struct type ICMPv6Filter (line 302) | type ICMPv6Filter struct type Ucred (line 306) | type Ucred struct type TCPInfo (line 312) | type TCPInfo struct constant SizeofSockaddrInet4 (line 347) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 348) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 349) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 350) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 351) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 352) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 353) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 354) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 355) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 356) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 357) | SizeofLinger = 0x8 constant SizeofIPMreq (line 358) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 359) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 360) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 361) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 362) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 363) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 364) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 365) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 366) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 367) | SizeofUcred = 0xc constant SizeofTCPInfo (line 368) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 372) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 373) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 374) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 375) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 376) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 377) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 378) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 379) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 380) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 381) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 382) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 383) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 384) | IFLA_MTU = 0x4 constant IFLA_LINK (line 385) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 386) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 387) | IFLA_STATS = 0x7 constant IFLA_COST (line 388) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 389) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 390) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 391) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 392) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 393) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 394) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 395) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 396) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 397) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 398) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 399) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 400) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 401) | IFLA_MAX = 0x1d constant RT_SCOPE_UNIVERSE (line 402) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 403) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 404) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 405) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 406) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 407) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 408) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 409) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 410) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 411) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 412) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 413) | RTA_UNSPEC = 0x0 constant RTA_DST (line 414) | RTA_DST = 0x1 constant RTA_SRC (line 415) | RTA_SRC = 0x2 constant RTA_IIF (line 416) | RTA_IIF = 0x3 constant RTA_OIF (line 417) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 418) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 419) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 420) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 421) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 422) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 423) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 424) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 425) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 426) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 427) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 428) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 429) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 430) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 431) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 432) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 433) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 434) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 435) | RTN_THROW = 0x9 constant RTN_NAT (line 436) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 437) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 438) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 439) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 440) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 441) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 442) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 443) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 444) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 445) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 446) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 447) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 448) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 449) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 450) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 451) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 452) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 453) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 454) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 455) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 456) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 457) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 458) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 459) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 460) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 461) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 462) | SizeofRtNexthop = 0x8 type NlMsghdr (line 465) | type NlMsghdr struct type NlMsgerr (line 473) | type NlMsgerr struct type RtGenmsg (line 478) | type RtGenmsg struct type NlAttr (line 482) | type NlAttr struct type RtAttr (line 487) | type RtAttr struct type IfInfomsg (line 492) | type IfInfomsg struct type IfAddrmsg (line 501) | type IfAddrmsg struct type RtMsg (line 509) | type RtMsg struct type RtNexthop (line 521) | type RtNexthop struct constant SizeofSockFilter (line 529) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 530) | SizeofSockFprog = 0x8 type SockFilter (line 533) | type SockFilter struct type SockFprog (line 540) | type SockFprog struct type InotifyEvent (line 546) | type InotifyEvent struct constant SizeofInotifyEvent (line 553) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 555) | type PtraceRegs struct type ptracePsw (line 569) | type ptracePsw struct type ptraceFpregs (line 572) | type ptraceFpregs struct type ptracePer (line 575) | type ptracePer struct type FdSet (line 578) | type FdSet struct type Sysinfo_t (line 582) | type Sysinfo_t struct type Utsname (line 599) | type Utsname struct type Ustat_t (line 608) | type Ustat_t struct type EpollEvent (line 615) | type EpollEvent struct constant AT_FDCWD (line 623) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 624) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 625) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 626) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 629) | type PollFd struct constant POLLIN (line 636) | POLLIN = 0x1 constant POLLPRI (line 637) | POLLPRI = 0x2 constant POLLOUT (line 638) | POLLOUT = 0x4 constant POLLRDHUP (line 639) | POLLRDHUP = 0x2000 constant POLLERR (line 640) | POLLERR = 0x8 constant POLLHUP (line 641) | POLLHUP = 0x10 constant POLLNVAL (line 642) | POLLNVAL = 0x20 type Sigset_t (line 645) | type Sigset_t struct constant _SC_PAGESIZE (line 649) | _SC_PAGESIZE = 0x1e type Termios (line 651) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct constant FADV_NORMAL (line 158) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 159) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 160) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 161) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 162) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 163) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 166) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 173) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 181) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 186) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 196) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 203) | type RawSockaddrHCI struct type RawSockaddrCAN (line 209) | type RawSockaddrCAN struct type RawSockaddrALG (line 216) | type RawSockaddrALG struct type RawSockaddrVM (line 224) | type RawSockaddrVM struct type RawSockaddr (line 232) | type RawSockaddr struct type RawSockaddrAny (line 237) | type RawSockaddrAny struct type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger struct type Iovec (line 249) | type Iovec struct type IPMreq (line 254) | type IPMreq struct type IPMreqn (line 259) | type IPMreqn struct type IPv6Mreq (line 265) | type IPv6Mreq struct type Msghdr (line 270) | type Msghdr struct type Cmsghdr (line 282) | type Cmsghdr struct type Inet4Pktinfo (line 288) | type Inet4Pktinfo struct type Inet6Pktinfo (line 294) | type Inet6Pktinfo struct type IPv6MTUInfo (line 299) | type IPv6MTUInfo struct type ICMPv6Filter (line 304) | type ICMPv6Filter struct type Ucred (line 308) | type Ucred struct type TCPInfo (line 314) | type TCPInfo struct constant SizeofSockaddrInet4 (line 349) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 350) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 351) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 352) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 353) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 354) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 355) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 356) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 357) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 358) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 359) | SizeofLinger = 0x8 constant SizeofIPMreq (line 360) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 361) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 362) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 363) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 364) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 365) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 366) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 367) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 368) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 369) | SizeofUcred = 0xc constant SizeofTCPInfo (line 370) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 374) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 375) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 376) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 377) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 378) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 379) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 380) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 381) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 382) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 383) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 384) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 385) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 386) | IFLA_MTU = 0x4 constant IFLA_LINK (line 387) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 388) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 389) | IFLA_STATS = 0x7 constant IFLA_COST (line 390) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 391) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 392) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 393) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 394) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 395) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 396) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 397) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 398) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 399) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 400) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 401) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 402) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 403) | IFLA_MAX = 0x27 constant RT_SCOPE_UNIVERSE (line 404) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 405) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 406) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 407) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 408) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 409) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 410) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 411) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 412) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 413) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 414) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 415) | RTA_UNSPEC = 0x0 constant RTA_DST (line 416) | RTA_DST = 0x1 constant RTA_SRC (line 417) | RTA_SRC = 0x2 constant RTA_IIF (line 418) | RTA_IIF = 0x3 constant RTA_OIF (line 419) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 420) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 421) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 422) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 423) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 424) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 425) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 426) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 427) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 428) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 429) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 430) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 431) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 432) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 433) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 434) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 435) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 436) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 437) | RTN_THROW = 0x9 constant RTN_NAT (line 438) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 439) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 440) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 441) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 442) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 443) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 444) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 445) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 446) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 447) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 448) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 449) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 450) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 451) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 452) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 453) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 454) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 455) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 456) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 457) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 458) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 459) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 460) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 461) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 462) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 463) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 464) | SizeofRtNexthop = 0x8 type NlMsghdr (line 467) | type NlMsghdr struct type NlMsgerr (line 475) | type NlMsgerr struct type RtGenmsg (line 480) | type RtGenmsg struct type NlAttr (line 484) | type NlAttr struct type RtAttr (line 489) | type RtAttr struct type IfInfomsg (line 494) | type IfInfomsg struct type IfAddrmsg (line 503) | type IfAddrmsg struct type RtMsg (line 511) | type RtMsg struct type RtNexthop (line 523) | type RtNexthop struct constant SizeofSockFilter (line 531) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 532) | SizeofSockFprog = 0x10 type SockFilter (line 535) | type SockFilter struct type SockFprog (line 542) | type SockFprog struct type InotifyEvent (line 548) | type InotifyEvent struct constant SizeofInotifyEvent (line 555) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 557) | type PtraceRegs struct type FdSet (line 571) | type FdSet struct type Sysinfo_t (line 575) | type Sysinfo_t struct type Utsname (line 594) | type Utsname struct type Ustat_t (line 603) | type Ustat_t struct type EpollEvent (line 612) | type EpollEvent struct constant AT_FDCWD (line 619) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 620) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 621) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 622) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 625) | type PollFd struct constant POLLIN (line 632) | POLLIN = 0x1 constant POLLPRI (line 633) | POLLPRI = 0x2 constant POLLOUT (line 634) | POLLOUT = 0x4 constant POLLRDHUP (line 635) | POLLRDHUP = 0x2000 constant POLLERR (line 636) | POLLERR = 0x8 constant POLLHUP (line 637) | POLLHUP = 0x10 constant POLLNVAL (line 638) | POLLNVAL = 0x20 type Sigset_t (line 641) | type Sigset_t struct type Termios (line 645) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 119) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct constant FADV_NORMAL (line 158) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 159) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 160) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 161) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 162) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 163) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 166) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 173) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 181) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 186) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 196) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 203) | type RawSockaddrHCI struct type RawSockaddrCAN (line 209) | type RawSockaddrCAN struct type RawSockaddrALG (line 216) | type RawSockaddrALG struct type RawSockaddrVM (line 224) | type RawSockaddrVM struct type RawSockaddr (line 232) | type RawSockaddr struct type RawSockaddrAny (line 237) | type RawSockaddrAny struct type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger struct type Iovec (line 249) | type Iovec struct type IPMreq (line 254) | type IPMreq struct type IPMreqn (line 259) | type IPMreqn struct type IPv6Mreq (line 265) | type IPv6Mreq struct type Msghdr (line 270) | type Msghdr struct type Cmsghdr (line 282) | type Cmsghdr struct type Inet4Pktinfo (line 288) | type Inet4Pktinfo struct type Inet6Pktinfo (line 294) | type Inet6Pktinfo struct type IPv6MTUInfo (line 299) | type IPv6MTUInfo struct type ICMPv6Filter (line 304) | type ICMPv6Filter struct type Ucred (line 308) | type Ucred struct type TCPInfo (line 314) | type TCPInfo struct constant SizeofSockaddrInet4 (line 349) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 350) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 351) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 352) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 353) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 354) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 355) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 356) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 357) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 358) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 359) | SizeofLinger = 0x8 constant SizeofIPMreq (line 360) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 361) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 362) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 363) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 364) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 365) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 366) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 367) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 368) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 369) | SizeofUcred = 0xc constant SizeofTCPInfo (line 370) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 374) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 375) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 376) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 377) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 378) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 379) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 380) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 381) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 382) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 383) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 384) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 385) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 386) | IFLA_MTU = 0x4 constant IFLA_LINK (line 387) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 388) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 389) | IFLA_STATS = 0x7 constant IFLA_COST (line 390) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 391) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 392) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 393) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 394) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 395) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 396) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 397) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 398) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 399) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 400) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 401) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 402) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 403) | IFLA_MAX = 0x27 constant RT_SCOPE_UNIVERSE (line 404) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 405) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 406) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 407) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 408) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 409) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 410) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 411) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 412) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 413) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 414) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 415) | RTA_UNSPEC = 0x0 constant RTA_DST (line 416) | RTA_DST = 0x1 constant RTA_SRC (line 417) | RTA_SRC = 0x2 constant RTA_IIF (line 418) | RTA_IIF = 0x3 constant RTA_OIF (line 419) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 420) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 421) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 422) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 423) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 424) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 425) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 426) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 427) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 428) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 429) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 430) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 431) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 432) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 433) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 434) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 435) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 436) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 437) | RTN_THROW = 0x9 constant RTN_NAT (line 438) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 439) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 440) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 441) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 442) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 443) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 444) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 445) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 446) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 447) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 448) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 449) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 450) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 451) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 452) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 453) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 454) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 455) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 456) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 457) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 458) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 459) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 460) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 461) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 462) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 463) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 464) | SizeofRtNexthop = 0x8 type NlMsghdr (line 467) | type NlMsghdr struct type NlMsgerr (line 475) | type NlMsgerr struct type RtGenmsg (line 480) | type RtGenmsg struct type NlAttr (line 484) | type NlAttr struct type RtAttr (line 489) | type RtAttr struct type IfInfomsg (line 494) | type IfInfomsg struct type IfAddrmsg (line 503) | type IfAddrmsg struct type RtMsg (line 511) | type RtMsg struct type RtNexthop (line 523) | type RtNexthop struct constant SizeofSockFilter (line 531) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 532) | SizeofSockFprog = 0x10 type SockFilter (line 535) | type SockFilter struct type SockFprog (line 542) | type SockFprog struct type InotifyEvent (line 548) | type InotifyEvent struct constant SizeofInotifyEvent (line 555) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 557) | type PtraceRegs struct type FdSet (line 571) | type FdSet struct type Sysinfo_t (line 575) | type Sysinfo_t struct type Utsname (line 594) | type Utsname struct type Ustat_t (line 603) | type Ustat_t struct type EpollEvent (line 612) | type EpollEvent struct constant AT_FDCWD (line 619) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 620) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 621) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 622) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 625) | type PollFd struct constant POLLIN (line 632) | POLLIN = 0x1 constant POLLPRI (line 633) | POLLPRI = 0x2 constant POLLOUT (line 634) | POLLOUT = 0x4 constant POLLRDHUP (line 635) | POLLRDHUP = 0x2000 constant POLLERR (line 636) | POLLERR = 0x8 constant POLLHUP (line 637) | POLLHUP = 0x10 constant POLLNVAL (line 638) | POLLNVAL = 0x20 type Sigset_t (line 641) | type Sigset_t struct type Termios (line 645) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go constant sizeofPtr (line 8) | sizeofPtr = 0x4 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x4 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 57) | type Time_t type Tms (line 59) | type Tms struct type Utimbuf (line 66) | type Utimbuf struct type Rusage (line 71) | type Rusage struct type Rlimit (line 90) | type Rlimit struct type _Gid_t (line 95) | type _Gid_t type Stat_t (line 97) | type Stat_t struct type Statfs_t (line 117) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct constant FADV_NORMAL (line 158) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 159) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 160) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 161) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 162) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 163) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 166) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 173) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 181) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 186) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 196) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 203) | type RawSockaddrHCI struct type RawSockaddrCAN (line 209) | type RawSockaddrCAN struct type RawSockaddrALG (line 216) | type RawSockaddrALG struct type RawSockaddrVM (line 224) | type RawSockaddrVM struct type RawSockaddr (line 232) | type RawSockaddr struct type RawSockaddrAny (line 237) | type RawSockaddrAny struct type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger struct type Iovec (line 249) | type Iovec struct type IPMreq (line 254) | type IPMreq struct type IPMreqn (line 259) | type IPMreqn struct type IPv6Mreq (line 265) | type IPv6Mreq struct type Msghdr (line 270) | type Msghdr struct type Cmsghdr (line 280) | type Cmsghdr struct type Inet4Pktinfo (line 286) | type Inet4Pktinfo struct type Inet6Pktinfo (line 292) | type Inet6Pktinfo struct type IPv6MTUInfo (line 297) | type IPv6MTUInfo struct type ICMPv6Filter (line 302) | type ICMPv6Filter struct type Ucred (line 306) | type Ucred struct type TCPInfo (line 312) | type TCPInfo struct constant SizeofSockaddrInet4 (line 347) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 348) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 349) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 350) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 351) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 352) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 353) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 354) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 355) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 356) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 357) | SizeofLinger = 0x8 constant SizeofIPMreq (line 358) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 359) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 360) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 361) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 362) | SizeofCmsghdr = 0xc constant SizeofInet4Pktinfo (line 363) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 364) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 365) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 366) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 367) | SizeofUcred = 0xc constant SizeofTCPInfo (line 368) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 372) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 373) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 374) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 375) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 376) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 377) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 378) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 379) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 380) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 381) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 382) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 383) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 384) | IFLA_MTU = 0x4 constant IFLA_LINK (line 385) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 386) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 387) | IFLA_STATS = 0x7 constant IFLA_COST (line 388) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 389) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 390) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 391) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 392) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 393) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 394) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 395) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 396) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 397) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 398) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 399) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 400) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 401) | IFLA_MAX = 0x2a constant RT_SCOPE_UNIVERSE (line 402) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 403) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 404) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 405) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 406) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 407) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 408) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 409) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 410) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 411) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 412) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 413) | RTA_UNSPEC = 0x0 constant RTA_DST (line 414) | RTA_DST = 0x1 constant RTA_SRC (line 415) | RTA_SRC = 0x2 constant RTA_IIF (line 416) | RTA_IIF = 0x3 constant RTA_OIF (line 417) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 418) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 419) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 420) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 421) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 422) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 423) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 424) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 425) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 426) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 427) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 428) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 429) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 430) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 431) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 432) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 433) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 434) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 435) | RTN_THROW = 0x9 constant RTN_NAT (line 436) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 437) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 438) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 439) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 440) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 441) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 442) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 443) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 444) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 445) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 446) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 447) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 448) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 449) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 450) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 451) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 452) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 453) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 454) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 455) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 456) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 457) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 458) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 459) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 460) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 461) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 462) | SizeofRtNexthop = 0x8 type NlMsghdr (line 465) | type NlMsghdr struct type NlMsgerr (line 473) | type NlMsgerr struct type RtGenmsg (line 478) | type RtGenmsg struct type NlAttr (line 482) | type NlAttr struct type RtAttr (line 487) | type RtAttr struct type IfInfomsg (line 492) | type IfInfomsg struct type IfAddrmsg (line 501) | type IfAddrmsg struct type RtMsg (line 509) | type RtMsg struct type RtNexthop (line 521) | type RtNexthop struct constant SizeofSockFilter (line 529) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 530) | SizeofSockFprog = 0x8 type SockFilter (line 533) | type SockFilter struct type SockFprog (line 540) | type SockFprog struct type InotifyEvent (line 546) | type InotifyEvent struct constant SizeofInotifyEvent (line 553) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 555) | type PtraceRegs struct type ptracePsw (line 569) | type ptracePsw struct type ptraceFpregs (line 572) | type ptraceFpregs struct type ptracePer (line 575) | type ptracePer struct type FdSet (line 578) | type FdSet struct type Sysinfo_t (line 582) | type Sysinfo_t struct type Utsname (line 599) | type Utsname struct type Ustat_t (line 608) | type Ustat_t struct type EpollEvent (line 615) | type EpollEvent struct constant AT_FDCWD (line 623) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 624) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 625) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 626) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 629) | type PollFd struct constant POLLIN (line 636) | POLLIN = 0x1 constant POLLPRI (line 637) | POLLPRI = 0x2 constant POLLOUT (line 638) | POLLOUT = 0x4 constant POLLRDHUP (line 639) | POLLRDHUP = 0x2000 constant POLLERR (line 640) | POLLERR = 0x8 constant POLLHUP (line 641) | POLLHUP = 0x10 constant POLLNVAL (line 642) | POLLNVAL = 0x20 type Sigset_t (line 645) | type Sigset_t struct constant _SC_PAGESIZE (line 649) | _SC_PAGESIZE = 0x1e type Termios (line 651) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 120) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct constant FADV_NORMAL (line 159) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 160) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 161) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 162) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 163) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 164) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 167) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 174) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 182) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 187) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 197) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 204) | type RawSockaddrHCI struct type RawSockaddrCAN (line 210) | type RawSockaddrCAN struct type RawSockaddrALG (line 217) | type RawSockaddrALG struct type RawSockaddrVM (line 225) | type RawSockaddrVM struct type RawSockaddr (line 233) | type RawSockaddr struct type RawSockaddrAny (line 238) | type RawSockaddrAny struct type _Socklen (line 243) | type _Socklen type Linger (line 245) | type Linger struct type Iovec (line 250) | type Iovec struct type IPMreq (line 255) | type IPMreq struct type IPMreqn (line 260) | type IPMreqn struct type IPv6Mreq (line 266) | type IPv6Mreq struct type Msghdr (line 271) | type Msghdr struct type Cmsghdr (line 283) | type Cmsghdr struct type Inet4Pktinfo (line 290) | type Inet4Pktinfo struct type Inet6Pktinfo (line 296) | type Inet6Pktinfo struct type IPv6MTUInfo (line 301) | type IPv6MTUInfo struct type ICMPv6Filter (line 306) | type ICMPv6Filter struct type Ucred (line 310) | type Ucred struct type TCPInfo (line 316) | type TCPInfo struct constant SizeofSockaddrInet4 (line 351) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 352) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 353) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 354) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 355) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 356) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 357) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 358) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 359) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 360) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 361) | SizeofLinger = 0x8 constant SizeofIPMreq (line 362) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 363) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 364) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 365) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 366) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 367) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 368) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 369) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 370) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 371) | SizeofUcred = 0xc constant SizeofTCPInfo (line 372) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 376) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 377) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 378) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 379) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 380) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 381) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 382) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 383) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 384) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 385) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 386) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 387) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 388) | IFLA_MTU = 0x4 constant IFLA_LINK (line 389) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 390) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 391) | IFLA_STATS = 0x7 constant IFLA_COST (line 392) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 393) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 394) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 395) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 396) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 397) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 398) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 399) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 400) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 401) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 402) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 403) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 404) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 405) | IFLA_MAX = 0x23 constant RT_SCOPE_UNIVERSE (line 406) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 407) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 408) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 409) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 410) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 411) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 412) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 413) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 414) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 415) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 416) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 417) | RTA_UNSPEC = 0x0 constant RTA_DST (line 418) | RTA_DST = 0x1 constant RTA_SRC (line 419) | RTA_SRC = 0x2 constant RTA_IIF (line 420) | RTA_IIF = 0x3 constant RTA_OIF (line 421) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 422) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 423) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 424) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 425) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 426) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 427) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 428) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 429) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 430) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 431) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 432) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 433) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 434) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 435) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 436) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 437) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 438) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 439) | RTN_THROW = 0x9 constant RTN_NAT (line 440) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 441) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 442) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 443) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 444) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 445) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 446) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 447) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 448) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 449) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 450) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 451) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 452) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 453) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 454) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 455) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 456) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 457) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 458) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 459) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 460) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 461) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 462) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 463) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 464) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 465) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 466) | SizeofRtNexthop = 0x8 type NlMsghdr (line 469) | type NlMsghdr struct type NlMsgerr (line 477) | type NlMsgerr struct type RtGenmsg (line 482) | type RtGenmsg struct type NlAttr (line 486) | type NlAttr struct type RtAttr (line 491) | type RtAttr struct type IfInfomsg (line 496) | type IfInfomsg struct type IfAddrmsg (line 505) | type IfAddrmsg struct type RtMsg (line 513) | type RtMsg struct type RtNexthop (line 525) | type RtNexthop struct constant SizeofSockFilter (line 533) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 534) | SizeofSockFprog = 0x10 type SockFilter (line 537) | type SockFilter struct type SockFprog (line 544) | type SockFprog struct type InotifyEvent (line 550) | type InotifyEvent struct constant SizeofInotifyEvent (line 558) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 560) | type PtraceRegs struct type FdSet (line 576) | type FdSet struct type Sysinfo_t (line 580) | type Sysinfo_t struct type Utsname (line 599) | type Utsname struct type Ustat_t (line 608) | type Ustat_t struct type EpollEvent (line 617) | type EpollEvent struct constant AT_FDCWD (line 625) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 626) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 627) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 628) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 631) | type PollFd struct constant POLLIN (line 638) | POLLIN = 0x1 constant POLLPRI (line 639) | POLLPRI = 0x2 constant POLLOUT (line 640) | POLLOUT = 0x4 constant POLLRDHUP (line 641) | POLLRDHUP = 0x2000 constant POLLERR (line 642) | POLLERR = 0x8 constant POLLHUP (line 643) | POLLHUP = 0x10 constant POLLNVAL (line 644) | POLLNVAL = 0x20 type Sigset_t (line 647) | type Sigset_t struct type Termios (line 651) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 120) | type Statfs_t struct type Dirent (line 135) | type Dirent struct type Fsid (line 144) | type Fsid struct type Flock_t (line 148) | type Flock_t struct constant FADV_NORMAL (line 159) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 160) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 161) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 162) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 163) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 164) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 167) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 174) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 182) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 187) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 197) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 204) | type RawSockaddrHCI struct type RawSockaddrCAN (line 210) | type RawSockaddrCAN struct type RawSockaddrALG (line 217) | type RawSockaddrALG struct type RawSockaddrVM (line 225) | type RawSockaddrVM struct type RawSockaddr (line 233) | type RawSockaddr struct type RawSockaddrAny (line 238) | type RawSockaddrAny struct type _Socklen (line 243) | type _Socklen type Linger (line 245) | type Linger struct type Iovec (line 250) | type Iovec struct type IPMreq (line 255) | type IPMreq struct type IPMreqn (line 260) | type IPMreqn struct type IPv6Mreq (line 266) | type IPv6Mreq struct type Msghdr (line 271) | type Msghdr struct type Cmsghdr (line 283) | type Cmsghdr struct type Inet4Pktinfo (line 290) | type Inet4Pktinfo struct type Inet6Pktinfo (line 296) | type Inet6Pktinfo struct type IPv6MTUInfo (line 301) | type IPv6MTUInfo struct type ICMPv6Filter (line 306) | type ICMPv6Filter struct type Ucred (line 310) | type Ucred struct type TCPInfo (line 316) | type TCPInfo struct constant SizeofSockaddrInet4 (line 351) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 352) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 353) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 354) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 355) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 356) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 357) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 358) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 359) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 360) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 361) | SizeofLinger = 0x8 constant SizeofIPMreq (line 362) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 363) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 364) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 365) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 366) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 367) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 368) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 369) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 370) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 371) | SizeofUcred = 0xc constant SizeofTCPInfo (line 372) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 376) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 377) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 378) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 379) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 380) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 381) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 382) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 383) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 384) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 385) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 386) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 387) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 388) | IFLA_MTU = 0x4 constant IFLA_LINK (line 389) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 390) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 391) | IFLA_STATS = 0x7 constant IFLA_COST (line 392) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 393) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 394) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 395) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 396) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 397) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 398) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 399) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 400) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 401) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 402) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 403) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 404) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 405) | IFLA_MAX = 0x22 constant RT_SCOPE_UNIVERSE (line 406) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 407) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 408) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 409) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 410) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 411) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 412) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 413) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 414) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 415) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 416) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 417) | RTA_UNSPEC = 0x0 constant RTA_DST (line 418) | RTA_DST = 0x1 constant RTA_SRC (line 419) | RTA_SRC = 0x2 constant RTA_IIF (line 420) | RTA_IIF = 0x3 constant RTA_OIF (line 421) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 422) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 423) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 424) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 425) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 426) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 427) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 428) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 429) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 430) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 431) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 432) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 433) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 434) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 435) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 436) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 437) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 438) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 439) | RTN_THROW = 0x9 constant RTN_NAT (line 440) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 441) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 442) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 443) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 444) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 445) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 446) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 447) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 448) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 449) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 450) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 451) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 452) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 453) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 454) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 455) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 456) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 457) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 458) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 459) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 460) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 461) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 462) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 463) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 464) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 465) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 466) | SizeofRtNexthop = 0x8 type NlMsghdr (line 469) | type NlMsghdr struct type NlMsgerr (line 477) | type NlMsgerr struct type RtGenmsg (line 482) | type RtGenmsg struct type NlAttr (line 486) | type NlAttr struct type RtAttr (line 491) | type RtAttr struct type IfInfomsg (line 496) | type IfInfomsg struct type IfAddrmsg (line 505) | type IfAddrmsg struct type RtMsg (line 513) | type RtMsg struct type RtNexthop (line 525) | type RtNexthop struct constant SizeofSockFilter (line 533) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 534) | SizeofSockFprog = 0x10 type SockFilter (line 537) | type SockFilter struct type SockFprog (line 544) | type SockFprog struct type InotifyEvent (line 550) | type InotifyEvent struct constant SizeofInotifyEvent (line 558) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 560) | type PtraceRegs struct type FdSet (line 576) | type FdSet struct type Sysinfo_t (line 580) | type Sysinfo_t struct type Utsname (line 599) | type Utsname struct type Ustat_t (line 608) | type Ustat_t struct type EpollEvent (line 617) | type EpollEvent struct constant AT_FDCWD (line 625) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 626) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 627) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 628) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 631) | type PollFd struct constant POLLIN (line 638) | POLLIN = 0x1 constant POLLPRI (line 639) | POLLPRI = 0x2 constant POLLOUT (line 640) | POLLOUT = 0x4 constant POLLRDHUP (line 641) | POLLRDHUP = 0x2000 constant POLLERR (line 642) | POLLERR = 0x8 constant POLLHUP (line 643) | POLLHUP = 0x10 constant POLLNVAL (line 644) | POLLNVAL = 0x20 type Sigset_t (line 647) | type Sigset_t struct type Termios (line 651) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 33) | type Timex struct type Time_t (line 60) | type Time_t type Tms (line 62) | type Tms struct type Utimbuf (line 69) | type Utimbuf struct type Rusage (line 74) | type Rusage struct type Rlimit (line 93) | type Rlimit struct type _Gid_t (line 98) | type _Gid_t type Stat_t (line 100) | type Stat_t struct type Statfs_t (line 118) | type Statfs_t struct type Dirent (line 134) | type Dirent struct type Fsid (line 143) | type Fsid struct type Flock_t (line 147) | type Flock_t struct constant FADV_NORMAL (line 158) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 159) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 160) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 161) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 162) | FADV_DONTNEED = 0x6 constant FADV_NOREUSE (line 163) | FADV_NOREUSE = 0x7 type RawSockaddrInet4 (line 166) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 173) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 181) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 186) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 196) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 203) | type RawSockaddrHCI struct type RawSockaddrCAN (line 209) | type RawSockaddrCAN struct type RawSockaddrALG (line 216) | type RawSockaddrALG struct type RawSockaddrVM (line 224) | type RawSockaddrVM struct type RawSockaddr (line 232) | type RawSockaddr struct type RawSockaddrAny (line 237) | type RawSockaddrAny struct type _Socklen (line 242) | type _Socklen type Linger (line 244) | type Linger struct type Iovec (line 249) | type Iovec struct type IPMreq (line 254) | type IPMreq struct type IPMreqn (line 259) | type IPMreqn struct type IPv6Mreq (line 265) | type IPv6Mreq struct type Msghdr (line 270) | type Msghdr struct type Cmsghdr (line 282) | type Cmsghdr struct type Inet4Pktinfo (line 288) | type Inet4Pktinfo struct type Inet6Pktinfo (line 294) | type Inet6Pktinfo struct type IPv6MTUInfo (line 299) | type IPv6MTUInfo struct type ICMPv6Filter (line 304) | type ICMPv6Filter struct type Ucred (line 308) | type Ucred struct type TCPInfo (line 314) | type TCPInfo struct constant SizeofSockaddrInet4 (line 349) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 350) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 351) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 352) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 353) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 354) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 355) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 356) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 357) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 358) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 359) | SizeofLinger = 0x8 constant SizeofIPMreq (line 360) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 361) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 362) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 363) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 364) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 365) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 366) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 367) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 368) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 369) | SizeofUcred = 0xc constant SizeofTCPInfo (line 370) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 374) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 375) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 376) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 377) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 378) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 379) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 380) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 381) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 382) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 383) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 384) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 385) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 386) | IFLA_MTU = 0x4 constant IFLA_LINK (line 387) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 388) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 389) | IFLA_STATS = 0x7 constant IFLA_COST (line 390) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 391) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 392) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 393) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 394) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 395) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 396) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 397) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 398) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 399) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 400) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 401) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 402) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 403) | IFLA_MAX = 0x27 constant RT_SCOPE_UNIVERSE (line 404) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 405) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 406) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 407) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 408) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 409) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 410) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 411) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 412) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 413) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 414) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 415) | RTA_UNSPEC = 0x0 constant RTA_DST (line 416) | RTA_DST = 0x1 constant RTA_SRC (line 417) | RTA_SRC = 0x2 constant RTA_IIF (line 418) | RTA_IIF = 0x3 constant RTA_OIF (line 419) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 420) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 421) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 422) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 423) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 424) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 425) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 426) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 427) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 428) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 429) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 430) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 431) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 432) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 433) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 434) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 435) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 436) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 437) | RTN_THROW = 0x9 constant RTN_NAT (line 438) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 439) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 440) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 441) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 442) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 443) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 444) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 445) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 446) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 447) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 448) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 449) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 450) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 451) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 452) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 453) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 454) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 455) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 456) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 457) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 458) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 459) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 460) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 461) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 462) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 463) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 464) | SizeofRtNexthop = 0x8 type NlMsghdr (line 467) | type NlMsghdr struct type NlMsgerr (line 475) | type NlMsgerr struct type RtGenmsg (line 480) | type RtGenmsg struct type NlAttr (line 484) | type NlAttr struct type RtAttr (line 489) | type RtAttr struct type IfInfomsg (line 494) | type IfInfomsg struct type IfAddrmsg (line 503) | type IfAddrmsg struct type RtMsg (line 511) | type RtMsg struct type RtNexthop (line 523) | type RtNexthop struct constant SizeofSockFilter (line 531) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 532) | SizeofSockFprog = 0x10 type SockFilter (line 535) | type SockFilter struct type SockFprog (line 542) | type SockFprog struct type InotifyEvent (line 548) | type InotifyEvent struct constant SizeofInotifyEvent (line 555) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 557) | type PtraceRegs struct type PtracePsw (line 567) | type PtracePsw struct type PtraceFpregs (line 572) | type PtraceFpregs struct type PtracePer (line 578) | type PtracePer struct type FdSet (line 591) | type FdSet struct type Sysinfo_t (line 595) | type Sysinfo_t struct type Utsname (line 614) | type Utsname struct type Ustat_t (line 623) | type Ustat_t struct type EpollEvent (line 632) | type EpollEvent struct constant AT_FDCWD (line 640) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 641) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 642) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 643) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 646) | type PollFd struct constant POLLIN (line 653) | POLLIN = 0x1 constant POLLPRI (line 654) | POLLPRI = 0x2 constant POLLOUT (line 655) | POLLOUT = 0x4 constant POLLRDHUP (line 656) | POLLRDHUP = 0x2000 constant POLLERR (line 657) | POLLERR = 0x8 constant POLLHUP (line 658) | POLLHUP = 0x10 constant POLLNVAL (line 659) | POLLNVAL = 0x20 type Sigset_t (line 662) | type Sigset_t struct type Termios (line 666) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x1000 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Timex (line 34) | type Timex struct type Time_t (line 61) | type Time_t type Tms (line 63) | type Tms struct type Utimbuf (line 70) | type Utimbuf struct type Rusage (line 75) | type Rusage struct type Rlimit (line 94) | type Rlimit struct type _Gid_t (line 99) | type _Gid_t type Stat_t (line 101) | type Stat_t struct type Statfs_t (line 123) | type Statfs_t struct type Dirent (line 138) | type Dirent struct type Fsid (line 147) | type Fsid struct type Flock_t (line 151) | type Flock_t struct constant FADV_NORMAL (line 163) | FADV_NORMAL = 0x0 constant FADV_RANDOM (line 164) | FADV_RANDOM = 0x1 constant FADV_SEQUENTIAL (line 165) | FADV_SEQUENTIAL = 0x2 constant FADV_WILLNEED (line 166) | FADV_WILLNEED = 0x3 constant FADV_DONTNEED (line 167) | FADV_DONTNEED = 0x4 constant FADV_NOREUSE (line 168) | FADV_NOREUSE = 0x5 type RawSockaddrInet4 (line 171) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 178) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 186) | type RawSockaddrUnix struct type RawSockaddrLinklayer (line 191) | type RawSockaddrLinklayer struct type RawSockaddrNetlink (line 201) | type RawSockaddrNetlink struct type RawSockaddrHCI (line 208) | type RawSockaddrHCI struct type RawSockaddrCAN (line 214) | type RawSockaddrCAN struct type RawSockaddrALG (line 221) | type RawSockaddrALG struct type RawSockaddrVM (line 229) | type RawSockaddrVM struct type RawSockaddr (line 237) | type RawSockaddr struct type RawSockaddrAny (line 242) | type RawSockaddrAny struct type _Socklen (line 247) | type _Socklen type Linger (line 249) | type Linger struct type Iovec (line 254) | type Iovec struct type IPMreq (line 259) | type IPMreq struct type IPMreqn (line 264) | type IPMreqn struct type IPv6Mreq (line 270) | type IPv6Mreq struct type Msghdr (line 275) | type Msghdr struct type Cmsghdr (line 287) | type Cmsghdr struct type Inet4Pktinfo (line 293) | type Inet4Pktinfo struct type Inet6Pktinfo (line 299) | type Inet6Pktinfo struct type IPv6MTUInfo (line 304) | type IPv6MTUInfo struct type ICMPv6Filter (line 309) | type ICMPv6Filter struct type Ucred (line 313) | type Ucred struct type TCPInfo (line 319) | type TCPInfo struct constant SizeofSockaddrInet4 (line 354) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 355) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 356) | SizeofSockaddrAny = 0x70 constant SizeofSockaddrUnix (line 357) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrLinklayer (line 358) | SizeofSockaddrLinklayer = 0x14 constant SizeofSockaddrNetlink (line 359) | SizeofSockaddrNetlink = 0xc constant SizeofSockaddrHCI (line 360) | SizeofSockaddrHCI = 0x6 constant SizeofSockaddrCAN (line 361) | SizeofSockaddrCAN = 0x10 constant SizeofSockaddrALG (line 362) | SizeofSockaddrALG = 0x58 constant SizeofSockaddrVM (line 363) | SizeofSockaddrVM = 0x10 constant SizeofLinger (line 364) | SizeofLinger = 0x8 constant SizeofIPMreq (line 365) | SizeofIPMreq = 0x8 constant SizeofIPMreqn (line 366) | SizeofIPMreqn = 0xc constant SizeofIPv6Mreq (line 367) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 368) | SizeofMsghdr = 0x38 constant SizeofCmsghdr (line 369) | SizeofCmsghdr = 0x10 constant SizeofInet4Pktinfo (line 370) | SizeofInet4Pktinfo = 0xc constant SizeofInet6Pktinfo (line 371) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 372) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 373) | SizeofICMPv6Filter = 0x20 constant SizeofUcred (line 374) | SizeofUcred = 0xc constant SizeofTCPInfo (line 375) | SizeofTCPInfo = 0x68 constant IFA_UNSPEC (line 379) | IFA_UNSPEC = 0x0 constant IFA_ADDRESS (line 380) | IFA_ADDRESS = 0x1 constant IFA_LOCAL (line 381) | IFA_LOCAL = 0x2 constant IFA_LABEL (line 382) | IFA_LABEL = 0x3 constant IFA_BROADCAST (line 383) | IFA_BROADCAST = 0x4 constant IFA_ANYCAST (line 384) | IFA_ANYCAST = 0x5 constant IFA_CACHEINFO (line 385) | IFA_CACHEINFO = 0x6 constant IFA_MULTICAST (line 386) | IFA_MULTICAST = 0x7 constant IFLA_UNSPEC (line 387) | IFLA_UNSPEC = 0x0 constant IFLA_ADDRESS (line 388) | IFLA_ADDRESS = 0x1 constant IFLA_BROADCAST (line 389) | IFLA_BROADCAST = 0x2 constant IFLA_IFNAME (line 390) | IFLA_IFNAME = 0x3 constant IFLA_MTU (line 391) | IFLA_MTU = 0x4 constant IFLA_LINK (line 392) | IFLA_LINK = 0x5 constant IFLA_QDISC (line 393) | IFLA_QDISC = 0x6 constant IFLA_STATS (line 394) | IFLA_STATS = 0x7 constant IFLA_COST (line 395) | IFLA_COST = 0x8 constant IFLA_PRIORITY (line 396) | IFLA_PRIORITY = 0x9 constant IFLA_MASTER (line 397) | IFLA_MASTER = 0xa constant IFLA_WIRELESS (line 398) | IFLA_WIRELESS = 0xb constant IFLA_PROTINFO (line 399) | IFLA_PROTINFO = 0xc constant IFLA_TXQLEN (line 400) | IFLA_TXQLEN = 0xd constant IFLA_MAP (line 401) | IFLA_MAP = 0xe constant IFLA_WEIGHT (line 402) | IFLA_WEIGHT = 0xf constant IFLA_OPERSTATE (line 403) | IFLA_OPERSTATE = 0x10 constant IFLA_LINKMODE (line 404) | IFLA_LINKMODE = 0x11 constant IFLA_LINKINFO (line 405) | IFLA_LINKINFO = 0x12 constant IFLA_NET_NS_PID (line 406) | IFLA_NET_NS_PID = 0x13 constant IFLA_IFALIAS (line 407) | IFLA_IFALIAS = 0x14 constant IFLA_MAX (line 408) | IFLA_MAX = 0x2a constant RT_SCOPE_UNIVERSE (line 409) | RT_SCOPE_UNIVERSE = 0x0 constant RT_SCOPE_SITE (line 410) | RT_SCOPE_SITE = 0xc8 constant RT_SCOPE_LINK (line 411) | RT_SCOPE_LINK = 0xfd constant RT_SCOPE_HOST (line 412) | RT_SCOPE_HOST = 0xfe constant RT_SCOPE_NOWHERE (line 413) | RT_SCOPE_NOWHERE = 0xff constant RT_TABLE_UNSPEC (line 414) | RT_TABLE_UNSPEC = 0x0 constant RT_TABLE_COMPAT (line 415) | RT_TABLE_COMPAT = 0xfc constant RT_TABLE_DEFAULT (line 416) | RT_TABLE_DEFAULT = 0xfd constant RT_TABLE_MAIN (line 417) | RT_TABLE_MAIN = 0xfe constant RT_TABLE_LOCAL (line 418) | RT_TABLE_LOCAL = 0xff constant RT_TABLE_MAX (line 419) | RT_TABLE_MAX = 0xffffffff constant RTA_UNSPEC (line 420) | RTA_UNSPEC = 0x0 constant RTA_DST (line 421) | RTA_DST = 0x1 constant RTA_SRC (line 422) | RTA_SRC = 0x2 constant RTA_IIF (line 423) | RTA_IIF = 0x3 constant RTA_OIF (line 424) | RTA_OIF = 0x4 constant RTA_GATEWAY (line 425) | RTA_GATEWAY = 0x5 constant RTA_PRIORITY (line 426) | RTA_PRIORITY = 0x6 constant RTA_PREFSRC (line 427) | RTA_PREFSRC = 0x7 constant RTA_METRICS (line 428) | RTA_METRICS = 0x8 constant RTA_MULTIPATH (line 429) | RTA_MULTIPATH = 0x9 constant RTA_FLOW (line 430) | RTA_FLOW = 0xb constant RTA_CACHEINFO (line 431) | RTA_CACHEINFO = 0xc constant RTA_TABLE (line 432) | RTA_TABLE = 0xf constant RTN_UNSPEC (line 433) | RTN_UNSPEC = 0x0 constant RTN_UNICAST (line 434) | RTN_UNICAST = 0x1 constant RTN_LOCAL (line 435) | RTN_LOCAL = 0x2 constant RTN_BROADCAST (line 436) | RTN_BROADCAST = 0x3 constant RTN_ANYCAST (line 437) | RTN_ANYCAST = 0x4 constant RTN_MULTICAST (line 438) | RTN_MULTICAST = 0x5 constant RTN_BLACKHOLE (line 439) | RTN_BLACKHOLE = 0x6 constant RTN_UNREACHABLE (line 440) | RTN_UNREACHABLE = 0x7 constant RTN_PROHIBIT (line 441) | RTN_PROHIBIT = 0x8 constant RTN_THROW (line 442) | RTN_THROW = 0x9 constant RTN_NAT (line 443) | RTN_NAT = 0xa constant RTN_XRESOLVE (line 444) | RTN_XRESOLVE = 0xb constant RTNLGRP_NONE (line 445) | RTNLGRP_NONE = 0x0 constant RTNLGRP_LINK (line 446) | RTNLGRP_LINK = 0x1 constant RTNLGRP_NOTIFY (line 447) | RTNLGRP_NOTIFY = 0x2 constant RTNLGRP_NEIGH (line 448) | RTNLGRP_NEIGH = 0x3 constant RTNLGRP_TC (line 449) | RTNLGRP_TC = 0x4 constant RTNLGRP_IPV4_IFADDR (line 450) | RTNLGRP_IPV4_IFADDR = 0x5 constant RTNLGRP_IPV4_MROUTE (line 451) | RTNLGRP_IPV4_MROUTE = 0x6 constant RTNLGRP_IPV4_ROUTE (line 452) | RTNLGRP_IPV4_ROUTE = 0x7 constant RTNLGRP_IPV4_RULE (line 453) | RTNLGRP_IPV4_RULE = 0x8 constant RTNLGRP_IPV6_IFADDR (line 454) | RTNLGRP_IPV6_IFADDR = 0x9 constant RTNLGRP_IPV6_MROUTE (line 455) | RTNLGRP_IPV6_MROUTE = 0xa constant RTNLGRP_IPV6_ROUTE (line 456) | RTNLGRP_IPV6_ROUTE = 0xb constant RTNLGRP_IPV6_IFINFO (line 457) | RTNLGRP_IPV6_IFINFO = 0xc constant RTNLGRP_IPV6_PREFIX (line 458) | RTNLGRP_IPV6_PREFIX = 0x12 constant RTNLGRP_IPV6_RULE (line 459) | RTNLGRP_IPV6_RULE = 0x13 constant RTNLGRP_ND_USEROPT (line 460) | RTNLGRP_ND_USEROPT = 0x14 constant SizeofNlMsghdr (line 461) | SizeofNlMsghdr = 0x10 constant SizeofNlMsgerr (line 462) | SizeofNlMsgerr = 0x14 constant SizeofRtGenmsg (line 463) | SizeofRtGenmsg = 0x1 constant SizeofNlAttr (line 464) | SizeofNlAttr = 0x4 constant SizeofRtAttr (line 465) | SizeofRtAttr = 0x4 constant SizeofIfInfomsg (line 466) | SizeofIfInfomsg = 0x10 constant SizeofIfAddrmsg (line 467) | SizeofIfAddrmsg = 0x8 constant SizeofRtMsg (line 468) | SizeofRtMsg = 0xc constant SizeofRtNexthop (line 469) | SizeofRtNexthop = 0x8 type NlMsghdr (line 472) | type NlMsghdr struct type NlMsgerr (line 480) | type NlMsgerr struct type RtGenmsg (line 485) | type RtGenmsg struct type NlAttr (line 489) | type NlAttr struct type RtAttr (line 494) | type RtAttr struct type IfInfomsg (line 499) | type IfInfomsg struct type IfAddrmsg (line 508) | type IfAddrmsg struct type RtMsg (line 516) | type RtMsg struct type RtNexthop (line 528) | type RtNexthop struct constant SizeofSockFilter (line 536) | SizeofSockFilter = 0x8 constant SizeofSockFprog (line 537) | SizeofSockFprog = 0x10 type SockFilter (line 540) | type SockFilter struct type SockFprog (line 547) | type SockFprog struct type InotifyEvent (line 553) | type InotifyEvent struct constant SizeofInotifyEvent (line 560) | SizeofInotifyEvent = 0x10 type PtraceRegs (line 562) | type PtraceRegs struct type ptracePsw (line 571) | type ptracePsw struct type ptraceFpregs (line 574) | type ptraceFpregs struct type ptracePer (line 577) | type ptracePer struct type FdSet (line 580) | type FdSet struct type Sysinfo_t (line 584) | type Sysinfo_t struct type Utsname (line 603) | type Utsname struct type Ustat_t (line 612) | type Ustat_t struct type EpollEvent (line 621) | type EpollEvent struct constant AT_FDCWD (line 629) | AT_FDCWD = -0x64 constant AT_REMOVEDIR (line 630) | AT_REMOVEDIR = 0x200 constant AT_SYMLINK_FOLLOW (line 631) | AT_SYMLINK_FOLLOW = 0x400 constant AT_SYMLINK_NOFOLLOW (line 632) | AT_SYMLINK_NOFOLLOW = 0x100 type PollFd (line 635) | type PollFd struct constant POLLIN (line 642) | POLLIN = 0x1 constant POLLPRI (line 643) | POLLPRI = 0x2 constant POLLOUT (line 644) | POLLOUT = 0x4 constant POLLRDHUP (line 645) | POLLRDHUP = 0x800 constant POLLERR (line 646) | POLLERR = 0x8 constant POLLHUP (line 647) | POLLHUP = 0x10 constant POLLNVAL (line 648) | POLLNVAL = 0x20 type Sigset_t (line 651) | type Sigset_t struct constant _SC_PAGESIZE (line 655) | _SC_PAGESIZE = 0x1e type Termios (line 657) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t type Stat_t (line 59) | type Stat_t struct type Statfs_t (line 79) | type Statfs_t type Flock_t (line 81) | type Flock_t struct type Dirent (line 89) | type Dirent struct type Fsid (line 98) | type Fsid struct type RawSockaddrInet4 (line 102) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 110) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 119) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 125) | type RawSockaddrDatalink struct type RawSockaddr (line 136) | type RawSockaddr struct type RawSockaddrAny (line 142) | type RawSockaddrAny struct type _Socklen (line 147) | type _Socklen type Linger (line 149) | type Linger struct type Iovec (line 154) | type Iovec struct type IPMreq (line 159) | type IPMreq struct type IPv6Mreq (line 164) | type IPv6Mreq struct type Msghdr (line 169) | type Msghdr struct type Cmsghdr (line 179) | type Cmsghdr struct type Inet6Pktinfo (line 185) | type Inet6Pktinfo struct type IPv6MTUInfo (line 190) | type IPv6MTUInfo struct type ICMPv6Filter (line 195) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 200) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 201) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 202) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 203) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 204) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 205) | SizeofLinger = 0x8 constant SizeofIPMreq (line 206) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 207) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 208) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 209) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 210) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 211) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 212) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 216) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 217) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 218) | PTRACE_KILL = 0x8 type Kevent_t (line 221) | type Kevent_t struct type FdSet (line 230) | type FdSet struct constant SizeofIfMsghdr (line 235) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 236) | SizeofIfData = 0x84 constant SizeofIfaMsghdr (line 237) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 238) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 239) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 240) | SizeofRtMetrics = 0x50 type IfMsghdr (line 243) | type IfMsghdr struct type IfData (line 255) | type IfData struct type IfaMsghdr (line 278) | type IfaMsghdr struct type IfAnnounceMsghdr (line 289) | type IfAnnounceMsghdr struct type RtMsghdr (line 298) | type RtMsghdr struct type RtMetrics (line 315) | type RtMetrics struct type Mclpool (line 328) | type Mclpool constant SizeofBpfVersion (line 331) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 332) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 333) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 334) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 335) | SizeofBpfHdr = 0x14 type BpfVersion (line 338) | type BpfVersion struct type BpfStat (line 343) | type BpfStat struct type BpfProgram (line 350) | type BpfProgram struct type BpfInsn (line 355) | type BpfInsn struct type BpfHdr (line 362) | type BpfHdr struct type BpfTimeval (line 370) | type BpfTimeval struct type Termios (line 375) | type Termios struct type Sysctlnode (line 385) | type Sysctlnode struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 34) | type Rusage struct type Rlimit (line 53) | type Rlimit struct type _Gid_t (line 58) | type _Gid_t type Stat_t (line 60) | type Stat_t struct type Statfs_t (line 83) | type Statfs_t type Flock_t (line 85) | type Flock_t struct type Dirent (line 93) | type Dirent struct type Fsid (line 102) | type Fsid struct type RawSockaddrInet4 (line 106) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 114) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 123) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 129) | type RawSockaddrDatalink struct type RawSockaddr (line 140) | type RawSockaddr struct type RawSockaddrAny (line 146) | type RawSockaddrAny struct type _Socklen (line 151) | type _Socklen type Linger (line 153) | type Linger struct type Iovec (line 158) | type Iovec struct type IPMreq (line 163) | type IPMreq struct type IPv6Mreq (line 168) | type IPv6Mreq struct type Msghdr (line 173) | type Msghdr struct type Cmsghdr (line 185) | type Cmsghdr struct type Inet6Pktinfo (line 191) | type Inet6Pktinfo struct type IPv6MTUInfo (line 196) | type IPv6MTUInfo struct type ICMPv6Filter (line 201) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 206) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 207) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 208) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 209) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 210) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 211) | SizeofLinger = 0x8 constant SizeofIPMreq (line 212) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 213) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 214) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 215) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 216) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 217) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 218) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 222) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 223) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 224) | PTRACE_KILL = 0x8 type Kevent_t (line 227) | type Kevent_t struct type FdSet (line 237) | type FdSet struct constant SizeofIfMsghdr (line 242) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 243) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 244) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 245) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 246) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 247) | SizeofRtMetrics = 0x50 type IfMsghdr (line 250) | type IfMsghdr struct type IfData (line 261) | type IfData struct type IfaMsghdr (line 284) | type IfaMsghdr struct type IfAnnounceMsghdr (line 295) | type IfAnnounceMsghdr struct type RtMsghdr (line 304) | type RtMsghdr struct type RtMetrics (line 321) | type RtMetrics struct type Mclpool (line 334) | type Mclpool constant SizeofBpfVersion (line 337) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 338) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 339) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 340) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 341) | SizeofBpfHdr = 0x20 type BpfVersion (line 344) | type BpfVersion struct type BpfStat (line 349) | type BpfStat struct type BpfProgram (line 356) | type BpfProgram struct type BpfInsn (line 362) | type BpfInsn struct type BpfHdr (line 369) | type BpfHdr struct type BpfTimeval (line 377) | type BpfTimeval struct type Termios (line 382) | type Termios struct type Sysctlnode (line 392) | type Sysctlnode struct FILE: vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 29) | type Timeval struct type Rusage (line 35) | type Rusage struct type Rlimit (line 54) | type Rlimit struct type _Gid_t (line 59) | type _Gid_t type Stat_t (line 61) | type Stat_t struct type Statfs_t (line 84) | type Statfs_t type Flock_t (line 86) | type Flock_t struct type Dirent (line 94) | type Dirent struct type Fsid (line 103) | type Fsid struct type RawSockaddrInet4 (line 107) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 115) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 124) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 130) | type RawSockaddrDatalink struct type RawSockaddr (line 141) | type RawSockaddr struct type RawSockaddrAny (line 147) | type RawSockaddrAny struct type _Socklen (line 152) | type _Socklen type Linger (line 154) | type Linger struct type Iovec (line 159) | type Iovec struct type IPMreq (line 164) | type IPMreq struct type IPv6Mreq (line 169) | type IPv6Mreq struct type Msghdr (line 174) | type Msghdr struct type Cmsghdr (line 184) | type Cmsghdr struct type Inet6Pktinfo (line 190) | type Inet6Pktinfo struct type IPv6MTUInfo (line 195) | type IPv6MTUInfo struct type ICMPv6Filter (line 200) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 205) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 206) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 207) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 208) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 209) | SizeofSockaddrDatalink = 0x14 constant SizeofLinger (line 210) | SizeofLinger = 0x8 constant SizeofIPMreq (line 211) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 212) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 213) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 214) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 215) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 216) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 217) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 221) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 222) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 223) | PTRACE_KILL = 0x8 type Kevent_t (line 226) | type Kevent_t struct type FdSet (line 236) | type FdSet struct constant SizeofIfMsghdr (line 241) | SizeofIfMsghdr = 0x98 constant SizeofIfData (line 242) | SizeofIfData = 0x88 constant SizeofIfaMsghdr (line 243) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 244) | SizeofIfAnnounceMsghdr = 0x18 constant SizeofRtMsghdr (line 245) | SizeofRtMsghdr = 0x78 constant SizeofRtMetrics (line 246) | SizeofRtMetrics = 0x50 type IfMsghdr (line 249) | type IfMsghdr struct type IfData (line 260) | type IfData struct type IfaMsghdr (line 283) | type IfaMsghdr struct type IfAnnounceMsghdr (line 294) | type IfAnnounceMsghdr struct type RtMsghdr (line 303) | type RtMsghdr struct type RtMetrics (line 320) | type RtMetrics struct type Mclpool (line 333) | type Mclpool constant SizeofBpfVersion (line 336) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 337) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 338) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 339) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 340) | SizeofBpfHdr = 0x14 type BpfVersion (line 343) | type BpfVersion struct type BpfStat (line 348) | type BpfStat struct type BpfProgram (line 355) | type BpfProgram struct type BpfInsn (line 360) | type BpfInsn struct type BpfHdr (line 367) | type BpfHdr struct type BpfTimeval (line 375) | type BpfTimeval struct type Termios (line 380) | type Termios struct type Sysctlnode (line 390) | type Sysctlnode struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go constant sizeofPtr (line 9) | sizeofPtr = 0x4 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x4 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 95) | type Statfs_t struct type Flock_t (line 121) | type Flock_t struct type Dirent (line 129) | type Dirent struct type Fsid (line 139) | type Fsid struct type RawSockaddrInet4 (line 143) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 151) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 160) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 166) | type RawSockaddrDatalink struct type RawSockaddr (line 177) | type RawSockaddr struct type RawSockaddrAny (line 183) | type RawSockaddrAny struct type _Socklen (line 188) | type _Socklen type Linger (line 190) | type Linger struct type Iovec (line 195) | type Iovec struct type IPMreq (line 200) | type IPMreq struct type IPv6Mreq (line 205) | type IPv6Mreq struct type Msghdr (line 210) | type Msghdr struct type Cmsghdr (line 220) | type Cmsghdr struct type Inet6Pktinfo (line 226) | type Inet6Pktinfo struct type IPv6MTUInfo (line 231) | type IPv6MTUInfo struct type ICMPv6Filter (line 236) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 241) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 242) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 243) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 244) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 245) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 246) | SizeofLinger = 0x8 constant SizeofIPMreq (line 247) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 248) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 249) | SizeofMsghdr = 0x1c constant SizeofCmsghdr (line 250) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 251) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 252) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 253) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 257) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 258) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 259) | PTRACE_KILL = 0x8 type Kevent_t (line 262) | type Kevent_t struct type FdSet (line 271) | type FdSet struct constant SizeofIfMsghdr (line 276) | SizeofIfMsghdr = 0xec constant SizeofIfData (line 277) | SizeofIfData = 0xd4 constant SizeofIfaMsghdr (line 278) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 279) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 280) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 281) | SizeofRtMetrics = 0x38 type IfMsghdr (line 284) | type IfMsghdr struct type IfData (line 299) | type IfData struct type IfaMsghdr (line 324) | type IfaMsghdr struct type IfAnnounceMsghdr (line 338) | type IfAnnounceMsghdr struct type RtMsghdr (line 348) | type RtMsghdr struct type RtMetrics (line 367) | type RtMetrics struct type Mclpool (line 382) | type Mclpool struct constant SizeofBpfVersion (line 391) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 392) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 393) | SizeofBpfProgram = 0x8 constant SizeofBpfInsn (line 394) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 395) | SizeofBpfHdr = 0x14 type BpfVersion (line 398) | type BpfVersion struct type BpfStat (line 403) | type BpfStat struct type BpfProgram (line 408) | type BpfProgram struct type BpfInsn (line 413) | type BpfInsn struct type BpfHdr (line 420) | type BpfHdr struct type BpfTimeval (line 428) | type BpfTimeval struct type Termios (line 433) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go constant sizeofPtr (line 9) | sizeofPtr = 0x8 constant sizeofShort (line 10) | sizeofShort = 0x2 constant sizeofInt (line 11) | sizeofInt = 0x4 constant sizeofLong (line 12) | sizeofLong = 0x8 constant sizeofLongLong (line 13) | sizeofLongLong = 0x8 type _C_short (line 17) | type _C_short type _C_int (line 18) | type _C_int type _C_long (line 19) | type _C_long type _C_long_long (line 20) | type _C_long_long type Timespec (line 23) | type Timespec struct type Timeval (line 28) | type Timeval struct type Rusage (line 33) | type Rusage struct type Rlimit (line 52) | type Rlimit struct type _Gid_t (line 57) | type _Gid_t constant S_IFMT (line 60) | S_IFMT = 0xf000 constant S_IFIFO (line 61) | S_IFIFO = 0x1000 constant S_IFCHR (line 62) | S_IFCHR = 0x2000 constant S_IFDIR (line 63) | S_IFDIR = 0x4000 constant S_IFBLK (line 64) | S_IFBLK = 0x6000 constant S_IFREG (line 65) | S_IFREG = 0x8000 constant S_IFLNK (line 66) | S_IFLNK = 0xa000 constant S_IFSOCK (line 67) | S_IFSOCK = 0xc000 constant S_ISUID (line 68) | S_ISUID = 0x800 constant S_ISGID (line 69) | S_ISGID = 0x400 constant S_ISVTX (line 70) | S_ISVTX = 0x200 constant S_IRUSR (line 71) | S_IRUSR = 0x100 constant S_IWUSR (line 72) | S_IWUSR = 0x80 constant S_IXUSR (line 73) | S_IXUSR = 0x40 type Stat_t (line 76) | type Stat_t struct type Statfs_t (line 96) | type Statfs_t struct type Flock_t (line 123) | type Flock_t struct type Dirent (line 131) | type Dirent struct type Fsid (line 141) | type Fsid struct type RawSockaddrInet4 (line 145) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 153) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 162) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 168) | type RawSockaddrDatalink struct type RawSockaddr (line 179) | type RawSockaddr struct type RawSockaddrAny (line 185) | type RawSockaddrAny struct type _Socklen (line 190) | type _Socklen type Linger (line 192) | type Linger struct type Iovec (line 197) | type Iovec struct type IPMreq (line 202) | type IPMreq struct type IPv6Mreq (line 207) | type IPv6Mreq struct type Msghdr (line 212) | type Msghdr struct type Cmsghdr (line 224) | type Cmsghdr struct type Inet6Pktinfo (line 230) | type Inet6Pktinfo struct type IPv6MTUInfo (line 235) | type IPv6MTUInfo struct type ICMPv6Filter (line 240) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 245) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 246) | SizeofSockaddrInet6 = 0x1c constant SizeofSockaddrAny (line 247) | SizeofSockaddrAny = 0x6c constant SizeofSockaddrUnix (line 248) | SizeofSockaddrUnix = 0x6a constant SizeofSockaddrDatalink (line 249) | SizeofSockaddrDatalink = 0x20 constant SizeofLinger (line 250) | SizeofLinger = 0x8 constant SizeofIPMreq (line 251) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 252) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 253) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 254) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 255) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 256) | SizeofIPv6MTUInfo = 0x20 constant SizeofICMPv6Filter (line 257) | SizeofICMPv6Filter = 0x20 constant PTRACE_TRACEME (line 261) | PTRACE_TRACEME = 0x0 constant PTRACE_CONT (line 262) | PTRACE_CONT = 0x7 constant PTRACE_KILL (line 263) | PTRACE_KILL = 0x8 type Kevent_t (line 266) | type Kevent_t struct type FdSet (line 275) | type FdSet struct constant SizeofIfMsghdr (line 280) | SizeofIfMsghdr = 0xf8 constant SizeofIfData (line 281) | SizeofIfData = 0xe0 constant SizeofIfaMsghdr (line 282) | SizeofIfaMsghdr = 0x18 constant SizeofIfAnnounceMsghdr (line 283) | SizeofIfAnnounceMsghdr = 0x1a constant SizeofRtMsghdr (line 284) | SizeofRtMsghdr = 0x60 constant SizeofRtMetrics (line 285) | SizeofRtMetrics = 0x38 type IfMsghdr (line 288) | type IfMsghdr struct type IfData (line 303) | type IfData struct type IfaMsghdr (line 330) | type IfaMsghdr struct type IfAnnounceMsghdr (line 344) | type IfAnnounceMsghdr struct type RtMsghdr (line 354) | type RtMsghdr struct type RtMetrics (line 373) | type RtMetrics struct type Mclpool (line 388) | type Mclpool struct constant SizeofBpfVersion (line 397) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 398) | SizeofBpfStat = 0x8 constant SizeofBpfProgram (line 399) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 400) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 401) | SizeofBpfHdr = 0x14 type BpfVersion (line 404) | type BpfVersion struct type BpfStat (line 409) | type BpfStat struct type BpfProgram (line 414) | type BpfProgram struct type BpfInsn (line 420) | type BpfInsn struct type BpfHdr (line 427) | type BpfHdr struct type BpfTimeval (line 435) | type BpfTimeval struct type Termios (line 440) | type Termios struct FILE: vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go constant sizeofPtr (line 8) | sizeofPtr = 0x8 constant sizeofShort (line 9) | sizeofShort = 0x2 constant sizeofInt (line 10) | sizeofInt = 0x4 constant sizeofLong (line 11) | sizeofLong = 0x8 constant sizeofLongLong (line 12) | sizeofLongLong = 0x8 constant PathMax (line 13) | PathMax = 0x400 constant MaxHostNameLen (line 14) | MaxHostNameLen = 0x100 type _C_short (line 18) | type _C_short type _C_int (line 19) | type _C_int type _C_long (line 20) | type _C_long type _C_long_long (line 21) | type _C_long_long type Timespec (line 24) | type Timespec struct type Timeval (line 29) | type Timeval struct type Timeval32 (line 34) | type Timeval32 struct type Tms (line 39) | type Tms struct type Utimbuf (line 46) | type Utimbuf struct type Rusage (line 51) | type Rusage struct type Rlimit (line 70) | type Rlimit struct type _Gid_t (line 75) | type _Gid_t constant S_IFMT (line 78) | S_IFMT = 0xf000 constant S_IFIFO (line 79) | S_IFIFO = 0x1000 constant S_IFCHR (line 80) | S_IFCHR = 0x2000 constant S_IFDIR (line 81) | S_IFDIR = 0x4000 constant S_IFBLK (line 82) | S_IFBLK = 0x6000 constant S_IFREG (line 83) | S_IFREG = 0x8000 constant S_IFLNK (line 84) | S_IFLNK = 0xa000 constant S_IFSOCK (line 85) | S_IFSOCK = 0xc000 constant S_ISUID (line 86) | S_ISUID = 0x800 constant S_ISGID (line 87) | S_ISGID = 0x400 constant S_ISVTX (line 88) | S_ISVTX = 0x200 constant S_IRUSR (line 89) | S_IRUSR = 0x100 constant S_IWUSR (line 90) | S_IWUSR = 0x80 constant S_IXUSR (line 91) | S_IXUSR = 0x40 type Stat_t (line 94) | type Stat_t struct type Flock_t (line 112) | type Flock_t struct type Dirent (line 123) | type Dirent struct type RawSockaddrInet4 (line 131) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 138) | type RawSockaddrInet6 struct type RawSockaddrUnix (line 147) | type RawSockaddrUnix struct type RawSockaddrDatalink (line 152) | type RawSockaddrDatalink struct type RawSockaddr (line 162) | type RawSockaddr struct type RawSockaddrAny (line 167) | type RawSockaddrAny struct type _Socklen (line 172) | type _Socklen type Linger (line 174) | type Linger struct type Iovec (line 179) | type Iovec struct type IPMreq (line 184) | type IPMreq struct type IPv6Mreq (line 189) | type IPv6Mreq struct type Msghdr (line 194) | type Msghdr struct type Cmsghdr (line 206) | type Cmsghdr struct type Inet6Pktinfo (line 212) | type Inet6Pktinfo struct type IPv6MTUInfo (line 217) | type IPv6MTUInfo struct type ICMPv6Filter (line 222) | type ICMPv6Filter struct constant SizeofSockaddrInet4 (line 227) | SizeofSockaddrInet4 = 0x10 constant SizeofSockaddrInet6 (line 228) | SizeofSockaddrInet6 = 0x20 constant SizeofSockaddrAny (line 229) | SizeofSockaddrAny = 0xfc constant SizeofSockaddrUnix (line 230) | SizeofSockaddrUnix = 0x6e constant SizeofSockaddrDatalink (line 231) | SizeofSockaddrDatalink = 0xfc constant SizeofLinger (line 232) | SizeofLinger = 0x8 constant SizeofIPMreq (line 233) | SizeofIPMreq = 0x8 constant SizeofIPv6Mreq (line 234) | SizeofIPv6Mreq = 0x14 constant SizeofMsghdr (line 235) | SizeofMsghdr = 0x30 constant SizeofCmsghdr (line 236) | SizeofCmsghdr = 0xc constant SizeofInet6Pktinfo (line 237) | SizeofInet6Pktinfo = 0x14 constant SizeofIPv6MTUInfo (line 238) | SizeofIPv6MTUInfo = 0x24 constant SizeofICMPv6Filter (line 239) | SizeofICMPv6Filter = 0x20 type FdSet (line 242) | type FdSet struct type Utsname (line 246) | type Utsname struct type Ustat_t (line 254) | type Ustat_t struct constant AT_FDCWD (line 263) | AT_FDCWD = 0xffd19553 constant AT_SYMLINK_NOFOLLOW (line 264) | AT_SYMLINK_NOFOLLOW = 0x1000 constant AT_SYMLINK_FOLLOW (line 265) | AT_SYMLINK_FOLLOW = 0x2000 constant AT_REMOVEDIR (line 266) | AT_REMOVEDIR = 0x1 constant AT_EACCESS (line 267) | AT_EACCESS = 0x4 constant SizeofIfMsghdr (line 271) | SizeofIfMsghdr = 0x54 constant SizeofIfData (line 272) | SizeofIfData = 0x44 constant SizeofIfaMsghdr (line 273) | SizeofIfaMsghdr = 0x14 constant SizeofRtMsghdr (line 274) | SizeofRtMsghdr = 0x4c constant SizeofRtMetrics (line 275) | SizeofRtMetrics = 0x28 type IfMsghdr (line 278) | type IfMsghdr struct type IfData (line 289) | type IfData struct type IfaMsghdr (line 311) | type IfaMsghdr struct type RtMsghdr (line 322) | type RtMsghdr struct type RtMetrics (line 338) | type RtMetrics struct constant SizeofBpfVersion (line 352) | SizeofBpfVersion = 0x4 constant SizeofBpfStat (line 353) | SizeofBpfStat = 0x80 constant SizeofBpfProgram (line 354) | SizeofBpfProgram = 0x10 constant SizeofBpfInsn (line 355) | SizeofBpfInsn = 0x8 constant SizeofBpfHdr (line 356) | SizeofBpfHdr = 0x14 type BpfVersion (line 359) | type BpfVersion struct type BpfStat (line 364) | type BpfStat struct type BpfProgram (line 371) | type BpfProgram struct type BpfInsn (line 377) | type BpfInsn struct type BpfTimeval (line 384) | type BpfTimeval struct type BpfHdr (line 389) | type BpfHdr struct constant _SC_PAGESIZE (line 397) | _SC_PAGESIZE = 0xb type Termios (line 399) | type Termios struct type Termio (line 408) | type Termio struct type Winsize (line 418) | type Winsize struct FILE: vendor/golang.org/x/sys/windows/dll_windows.go type DLLError (line 15) | type DLLError struct method Error (line 21) | func (e *DLLError) Error() string { return e.Msg } function loadlibrary (line 24) | func loadlibrary(filename *uint16) (handle uintptr, err syscall.Errno) function getprocaddress (line 25) | func getprocaddress(handle uintptr, procname *uint8) (proc uintptr, err ... type DLL (line 28) | type DLL struct method FindProc (line 69) | func (d *DLL) FindProc(name string) (proc *Proc, err error) { method MustFindProc (line 91) | func (d *DLL) MustFindProc(name string) *Proc { method Release (line 100) | func (d *DLL) Release() (err error) { function LoadDLL (line 38) | func LoadDLL(name string) (dll *DLL, err error) { function MustLoadDLL (line 59) | func MustLoadDLL(name string) *DLL { type Proc (line 105) | type Proc struct method Addr (line 113) | func (p *Proc) Addr() uintptr { method Call (line 126) | func (p *Proc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error) { type LazyDLL (line 170) | type LazyDLL struct method Load (line 184) | func (d *LazyDLL) Load() error { method mustLoad (line 217) | func (d *LazyDLL) mustLoad() { method Handle (line 225) | func (d *LazyDLL) Handle() uintptr { method NewProc (line 231) | func (d *LazyDLL) NewProc(name string) *LazyProc { function NewLazyDLL (line 236) | func NewLazyDLL(name string) *LazyDLL { function NewLazySystemDLL (line 243) | func NewLazySystemDLL(name string) *LazyDLL { type LazyProc (line 249) | type LazyProc struct method Find (line 260) | func (p *LazyProc) Find() error { method mustFind (line 284) | func (p *LazyProc) mustFind() { method Addr (line 293) | func (p *LazyProc) Addr() uintptr { method Call (line 307) | func (p *LazyProc) Call(a ...uintptr) (r1, r2 uintptr, lastErr error) { function initCanDoSearchSystem32 (line 317) | func initCanDoSearchSystem32() { function canDoSearchSystem32 (line 329) | func canDoSearchSystem32() bool { function isBaseName (line 334) | func isBaseName(name string) bool { function loadLibraryEx (line 350) | func loadLibraryEx(name string, system bool) (*DLL, error) { type errString (line 376) | type errString method Error (line 378) | func (s errString) Error() string { return string(s) } FILE: vendor/golang.org/x/sys/windows/env_unset.go function Unsetenv (line 12) | func Unsetenv(key string) error { FILE: vendor/golang.org/x/sys/windows/env_windows.go function Getenv (line 11) | func Getenv(key string) (value string, found bool) { function Setenv (line 15) | func Setenv(key, value string) error { function Clearenv (line 19) | func Clearenv() { function Environ (line 23) | func Environ() []string { FILE: vendor/golang.org/x/sys/windows/eventlog.go constant EVENTLOG_SUCCESS (line 10) | EVENTLOG_SUCCESS = 0 constant EVENTLOG_ERROR_TYPE (line 11) | EVENTLOG_ERROR_TYPE = 1 constant EVENTLOG_WARNING_TYPE (line 12) | EVENTLOG_WARNING_TYPE = 2 constant EVENTLOG_INFORMATION_TYPE (line 13) | EVENTLOG_INFORMATION_TYPE = 4 constant EVENTLOG_AUDIT_SUCCESS (line 14) | EVENTLOG_AUDIT_SUCCESS = 8 constant EVENTLOG_AUDIT_FAILURE (line 15) | EVENTLOG_AUDIT_FAILURE = 16 FILE: vendor/golang.org/x/sys/windows/exec_windows.go function EscapeArg (line 18) | func EscapeArg(s string) string { function CloseOnExec (line 76) | func CloseOnExec(fd Handle) { function FullPath (line 81) | func FullPath(name string) (path string, err error) { FILE: vendor/golang.org/x/sys/windows/race.go constant raceenabled (line 14) | raceenabled = true function raceAcquire (line 16) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 20) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 24) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 28) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/windows/race0.go constant raceenabled (line 13) | raceenabled = false function raceAcquire (line 15) | func raceAcquire(addr unsafe.Pointer) { function raceReleaseMerge (line 18) | func raceReleaseMerge(addr unsafe.Pointer) { function raceReadRange (line 21) | func raceReadRange(addr unsafe.Pointer, len int) { function raceWriteRange (line 24) | func raceWriteRange(addr unsafe.Pointer, len int) { FILE: vendor/golang.org/x/sys/windows/security_windows.go constant STANDARD_RIGHTS_REQUIRED (line 13) | STANDARD_RIGHTS_REQUIRED = 0xf0000 constant STANDARD_RIGHTS_READ (line 14) | STANDARD_RIGHTS_READ = 0x20000 constant STANDARD_RIGHTS_WRITE (line 15) | STANDARD_RIGHTS_WRITE = 0x20000 constant STANDARD_RIGHTS_EXECUTE (line 16) | STANDARD_RIGHTS_EXECUTE = 0x20000 constant STANDARD_RIGHTS_ALL (line 17) | STANDARD_RIGHTS_ALL = 0x1F0000 constant NameUnknown (line 21) | NameUnknown = 0 constant NameFullyQualifiedDN (line 22) | NameFullyQualifiedDN = 1 constant NameSamCompatible (line 23) | NameSamCompatible = 2 constant NameDisplay (line 24) | NameDisplay = 3 constant NameUniqueId (line 25) | NameUniqueId = 6 constant NameCanonical (line 26) | NameCanonical = 7 constant NameUserPrincipal (line 27) | NameUserPrincipal = 8 constant NameCanonicalEx (line 28) | NameCanonicalEx = 9 constant NameServicePrincipal (line 29) | NameServicePrincipal = 10 constant NameDnsDomain (line 30) | NameDnsDomain = 12 function TranslateAccountName (line 40) | func TranslateAccountName(username string, from, to uint32, initSize int... constant NetSetupUnknownStatus (line 63) | NetSetupUnknownStatus = iota constant NetSetupUnjoined (line 64) | NetSetupUnjoined constant NetSetupWorkgroupName (line 65) | NetSetupWorkgroupName constant NetSetupDomainName (line 66) | NetSetupDomainName type UserInfo10 (line 69) | type UserInfo10 struct constant SidTypeUser (line 82) | SidTypeUser = 1 + iota constant SidTypeGroup (line 83) | SidTypeGroup constant SidTypeDomain (line 84) | SidTypeDomain constant SidTypeAlias (line 85) | SidTypeAlias constant SidTypeWellKnownGroup (line 86) | SidTypeWellKnownGroup constant SidTypeDeletedAccount (line 87) | SidTypeDeletedAccount constant SidTypeInvalid (line 88) | SidTypeInvalid constant SidTypeUnknown (line 89) | SidTypeUnknown constant SidTypeComputer (line 90) | SidTypeComputer constant SidTypeLabel (line 91) | SidTypeLabel type SidIdentifierAuthority (line 94) | type SidIdentifierAuthority struct constant SECURITY_NULL_RID (line 109) | SECURITY_NULL_RID = 0 constant SECURITY_WORLD_RID (line 110) | SECURITY_WORLD_RID = 0 constant SECURITY_LOCAL_RID (line 111) | SECURITY_LOCAL_RID = 0 constant SECURITY_CREATOR_OWNER_RID (line 112) | SECURITY_CREATOR_OWNER_RID = 0 constant SECURITY_CREATOR_GROUP_RID (line 113) | SECURITY_CREATOR_GROUP_RID = 1 constant SECURITY_DIALUP_RID (line 114) | SECURITY_DIALUP_RID = 1 constant SECURITY_NETWORK_RID (line 115) | SECURITY_NETWORK_RID = 2 constant SECURITY_BATCH_RID (line 116) | SECURITY_BATCH_RID = 3 constant SECURITY_INTERACTIVE_RID (line 117) | SECURITY_INTERACTIVE_RID = 4 constant SECURITY_LOGON_IDS_RID (line 118) | SECURITY_LOGON_IDS_RID = 5 constant SECURITY_SERVICE_RID (line 119) | SECURITY_SERVICE_RID = 6 constant SECURITY_LOCAL_SYSTEM_RID (line 120) | SECURITY_LOCAL_SYSTEM_RID = 18 constant SECURITY_BUILTIN_DOMAIN_RID (line 121) | SECURITY_BUILTIN_DOMAIN_RID = 32 constant SECURITY_PRINCIPAL_SELF_RID (line 122) | SECURITY_PRINCIPAL_SELF_RID = 10 constant SECURITY_CREATOR_OWNER_SERVER_RID (line 123) | SECURITY_CREATOR_OWNER_SERVER_RID = 0x2 constant SECURITY_CREATOR_GROUP_SERVER_RID (line 124) | SECURITY_CREATOR_GROUP_SERVER_RID = 0x3 constant SECURITY_LOGON_IDS_RID_COUNT (line 125) | SECURITY_LOGON_IDS_RID_COUNT = 0x3 constant SECURITY_ANONYMOUS_LOGON_RID (line 126) | SECURITY_ANONYMOUS_LOGON_RID = 0x7 constant SECURITY_PROXY_RID (line 127) | SECURITY_PROXY_RID = 0x8 constant SECURITY_ENTERPRISE_CONTROLLERS_RID (line 128) | SECURITY_ENTERPRISE_CONTROLLERS_RID = 0x9 constant SECURITY_SERVER_LOGON_RID (line 129) | SECURITY_SERVER_LOGON_RID = SECURITY_ENTERPRISE_CONTROLLERS_RID constant SECURITY_AUTHENTICATED_USER_RID (line 130) | SECURITY_AUTHENTICATED_USER_RID = 0xb constant SECURITY_RESTRICTED_CODE_RID (line 131) | SECURITY_RESTRICTED_CODE_RID = 0xc constant SECURITY_NT_NON_UNIQUE_RID (line 132) | SECURITY_NT_NON_UNIQUE_RID = 0x15 type SID (line 147) | type SID struct method String (line 204) | func (sid *SID) String() (string, error) { method Len (line 215) | func (sid *SID) Len() int { method Copy (line 220) | func (sid *SID) Copy() (*SID, error) { method LookupAccount (line 233) | func (sid *SID) LookupAccount(system string) (account, domain string, ... function StringToSid (line 151) | func StringToSid(s string) (*SID, error) { function LookupSID (line 168) | func LookupSID(system, account string) (sid *SID, domain string, accType... constant TOKEN_ASSIGN_PRIMARY (line 261) | TOKEN_ASSIGN_PRIMARY = 1 << iota constant TOKEN_DUPLICATE (line 262) | TOKEN_DUPLICATE constant TOKEN_IMPERSONATE (line 263) | TOKEN_IMPERSONATE constant TOKEN_QUERY (line 264) | TOKEN_QUERY constant TOKEN_QUERY_SOURCE (line 265) | TOKEN_QUERY_SOURCE constant TOKEN_ADJUST_PRIVILEGES (line 266) | TOKEN_ADJUST_PRIVILEGES constant TOKEN_ADJUST_GROUPS (line 267) | TOKEN_ADJUST_GROUPS constant TOKEN_ADJUST_DEFAULT (line 268) | TOKEN_ADJUST_DEFAULT constant TOKEN_ALL_ACCESS (line 270) | TOKEN_ALL_ACCESS = STANDARD_RIGHTS_REQUIRED | constant TOKEN_READ (line 279) | TOKEN_READ = STANDARD_RIGHTS_READ | TOKEN_QUERY constant TOKEN_WRITE (line 280) | TOKEN_WRITE = STANDARD_RIGHTS_WRITE | constant TOKEN_EXECUTE (line 284) | TOKEN_EXECUTE = STANDARD_RIGHTS_EXECUTE constant TokenUser (line 289) | TokenUser = 1 + iota constant TokenGroups (line 290) | TokenGroups constant TokenPrivileges (line 291) | TokenPrivileges constant TokenOwner (line 292) | TokenOwner constant TokenPrimaryGroup (line 293) | TokenPrimaryGroup constant TokenDefaultDacl (line 294) | TokenDefaultDacl constant TokenSource (line 295) | TokenSource constant TokenType (line 296) | TokenType constant TokenImpersonationLevel (line 297) | TokenImpersonationLevel constant TokenStatistics (line 298) | TokenStatistics constant TokenRestrictedSids (line 299) | TokenRestrictedSids constant TokenSessionId (line 300) | TokenSessionId constant TokenGroupsAndPrivileges (line 301) | TokenGroupsAndPrivileges constant TokenSessionReference (line 302) | TokenSessionReference constant TokenSandBoxInert (line 303) | TokenSandBoxInert constant TokenAuditPolicy (line 304) | TokenAuditPolicy constant TokenOrigin (line 305) | TokenOrigin constant TokenElevationType (line 306) | TokenElevationType constant TokenLinkedToken (line 307) | TokenLinkedToken constant TokenElevation (line 308) | TokenElevation constant TokenHasRestrictions (line 309) | TokenHasRestrictions constant TokenAccessInformation (line 310) | TokenAccessInformation constant TokenVirtualizationAllowed (line 311) | TokenVirtualizationAllowed constant TokenVirtualizationEnabled (line 312) | TokenVirtualizationEnabled constant TokenIntegrityLevel (line 313) | TokenIntegrityLevel constant TokenUIAccess (line 314) | TokenUIAccess constant TokenMandatoryPolicy (line 315) | TokenMandatoryPolicy constant TokenLogonSid (line 316) | TokenLogonSid constant MaxTokenInfoClass (line 317) | MaxTokenInfoClass type SIDAndAttributes (line 320) | type SIDAndAttributes struct type Tokenuser (line 325) | type Tokenuser struct type Tokenprimarygroup (line 329) | type Tokenprimarygroup struct type Tokengroups (line 333) | type Tokengroups struct type Token (line 349) | type Token method Close (line 367) | func (t Token) Close() error { method getInfo (line 372) | func (t Token) getInfo(class uint32, initSize int) (unsafe.Pointer, er... method GetTokenUser (line 390) | func (t Token) GetTokenUser() (*Tokenuser, error) { method GetTokenGroups (line 399) | func (t Token) GetTokenGroups() (*Tokengroups, error) { method GetTokenPrimaryGroup (line 410) | func (t Token) GetTokenPrimaryGroup() (*Tokenprimarygroup, error) { method GetUserProfileDirectory (line 420) | func (t Token) GetUserProfileDirectory() (string, error) { function OpenCurrentProcessToken (line 353) | func OpenCurrentProcessToken() (Token, error) { FILE: vendor/golang.org/x/sys/windows/service.go constant SC_MANAGER_CONNECT (line 10) | SC_MANAGER_CONNECT = 1 constant SC_MANAGER_CREATE_SERVICE (line 11) | SC_MANAGER_CREATE_SERVICE = 2 constant SC_MANAGER_ENUMERATE_SERVICE (line 12) | SC_MANAGER_ENUMERATE_SERVICE = 4 constant SC_MANAGER_LOCK (line 13) | SC_MANAGER_LOCK = 8 constant SC_MANAGER_QUERY_LOCK_STATUS (line 14) | SC_MANAGER_QUERY_LOCK_STATUS = 16 constant SC_MANAGER_MODIFY_BOOT_CONFIG (line 15) | SC_MANAGER_MODIFY_BOOT_CONFIG = 32 constant SC_MANAGER_ALL_ACCESS (line 16) | SC_MANAGER_ALL_ACCESS = 0xf003f constant SERVICE_KERNEL_DRIVER (line 22) | SERVICE_KERNEL_DRIVER = 1 constant SERVICE_FILE_SYSTEM_DRIVER (line 23) | SERVICE_FILE_SYSTEM_DRIVER = 2 constant SERVICE_ADAPTER (line 24) | SERVICE_ADAPTER = 4 constant SERVICE_RECOGNIZER_DRIVER (line 25) | SERVICE_RECOGNIZER_DRIVER = 8 constant SERVICE_WIN32_OWN_PROCESS (line 26) | SERVICE_WIN32_OWN_PROCESS = 16 constant SERVICE_WIN32_SHARE_PROCESS (line 27) | SERVICE_WIN32_SHARE_PROCESS = 32 constant SERVICE_WIN32 (line 28) | SERVICE_WIN32 = SERVICE_WIN32_OWN_PROCESS | SERVICE_WIN32_... constant SERVICE_INTERACTIVE_PROCESS (line 29) | SERVICE_INTERACTIVE_PROCESS = 256 constant SERVICE_DRIVER (line 30) | SERVICE_DRIVER = SERVICE_KERNEL_DRIVER | SERVICE_FILE_SYSTE... constant SERVICE_TYPE_ALL (line 31) | SERVICE_TYPE_ALL = SERVICE_WIN32 | SERVICE_ADAPTER | SERVICE_... constant SERVICE_BOOT_START (line 33) | SERVICE_BOOT_START = 0 constant SERVICE_SYSTEM_START (line 34) | SERVICE_SYSTEM_START = 1 constant SERVICE_AUTO_START (line 35) | SERVICE_AUTO_START = 2 constant SERVICE_DEMAND_START (line 36) | SERVICE_DEMAND_START = 3 constant SERVICE_DISABLED (line 37) | SERVICE_DISABLED = 4 constant SERVICE_ERROR_IGNORE (line 39) | SERVICE_ERROR_IGNORE = 0 constant SERVICE_ERROR_NORMAL (line 40) | SERVICE_ERROR_NORMAL = 1 constant SERVICE_ERROR_SEVERE (line 41) | SERVICE_ERROR_SEVERE = 2 constant SERVICE_ERROR_CRITICAL (line 42) | SERVICE_ERROR_CRITICAL = 3 constant SC_STATUS_PROCESS_INFO (line 44) | SC_STATUS_PROCESS_INFO = 0 constant SERVICE_STOPPED (line 46) | SERVICE_STOPPED = 1 constant SERVICE_START_PENDING (line 47) | SERVICE_START_PENDING = 2 constant SERVICE_STOP_PENDING (line 48) | SERVICE_STOP_PENDING = 3 constant SERVICE_RUNNING (line 49) | SERVICE_RUNNING = 4 constant SERVICE_CONTINUE_PENDING (line 50) | SERVICE_CONTINUE_PENDING = 5 constant SERVICE_PAUSE_PENDING (line 51) | SERVICE_PAUSE_PENDING = 6 constant SERVICE_PAUSED (line 52) | SERVICE_PAUSED = 7 constant SERVICE_NO_CHANGE (line 53) | SERVICE_NO_CHANGE = 0xffffffff constant SERVICE_ACCEPT_STOP (line 55) | SERVICE_ACCEPT_STOP = 1 constant SERVICE_ACCEPT_PAUSE_CONTINUE (line 56) | SERVICE_ACCEPT_PAUSE_CONTINUE = 2 constant SERVICE_ACCEPT_SHUTDOWN (line 57) | SERVICE_ACCEPT_SHUTDOWN = 4 constant SERVICE_ACCEPT_PARAMCHANGE (line 58) | SERVICE_ACCEPT_PARAMCHANGE = 8 constant SERVICE_ACCEPT_NETBINDCHANGE (line 59) | SERVICE_ACCEPT_NETBINDCHANGE = 16 constant SERVICE_ACCEPT_HARDWAREPROFILECHANGE (line 60) | SERVICE_ACCEPT_HARDWAREPROFILECHANGE = 32 constant SERVICE_ACCEPT_POWEREVENT (line 61) | SERVICE_ACCEPT_POWEREVENT = 64 constant SERVICE_ACCEPT_SESSIONCHANGE (line 62) | SERVICE_ACCEPT_SESSIONCHANGE = 128 constant SERVICE_CONTROL_STOP (line 64) | SERVICE_CONTROL_STOP = 1 constant SERVICE_CONTROL_PAUSE (line 65) | SERVICE_CONTROL_PAUSE = 2 constant SERVICE_CONTROL_CONTINUE (line 66) | SERVICE_CONTROL_CONTINUE = 3 constant SERVICE_CONTROL_INTERROGATE (line 67) | SERVICE_CONTROL_INTERROGATE = 4 constant SERVICE_CONTROL_SHUTDOWN (line 68) | SERVICE_CONTROL_SHUTDOWN = 5 constant SERVICE_CONTROL_PARAMCHANGE (line 69) | SERVICE_CONTROL_PARAMCHANGE = 6 constant SERVICE_CONTROL_NETBINDADD (line 70) | SERVICE_CONTROL_NETBINDADD = 7 constant SERVICE_CONTROL_NETBINDREMOVE (line 71) | SERVICE_CONTROL_NETBINDREMOVE = 8 constant SERVICE_CONTROL_NETBINDENABLE (line 72) | SERVICE_CONTROL_NETBINDENABLE = 9 constant SERVICE_CONTROL_NETBINDDISABLE (line 73) | SERVICE_CONTROL_NETBINDDISABLE = 10 constant SERVICE_CONTROL_DEVICEEVENT (line 74) | SERVICE_CONTROL_DEVICEEVENT = 11 constant SERVICE_CONTROL_HARDWAREPROFILECHANGE (line 75) | SERVICE_CONTROL_HARDWAREPROFILECHANGE = 12 constant SERVICE_CONTROL_POWEREVENT (line 76) | SERVICE_CONTROL_POWEREVENT = 13 constant SERVICE_CONTROL_SESSIONCHANGE (line 77) | SERVICE_CONTROL_SESSIONCHANGE = 14 constant SERVICE_ACTIVE (line 79) | SERVICE_ACTIVE = 1 constant SERVICE_INACTIVE (line 80) | SERVICE_INACTIVE = 2 constant SERVICE_STATE_ALL (line 81) | SERVICE_STATE_ALL = 3 constant SERVICE_QUERY_CONFIG (line 83) | SERVICE_QUERY_CONFIG = 1 constant SERVICE_CHANGE_CONFIG (line 84) | SERVICE_CHANGE_CONFIG = 2 constant SERVICE_QUERY_STATUS (line 85) | SERVICE_QUERY_STATUS = 4 constant SERVICE_ENUMERATE_DEPENDENTS (line 86) | SERVICE_ENUMERATE_DEPENDENTS = 8 constant SERVICE_START (line 87) | SERVICE_START = 16 constant SERVICE_STOP (line 88) | SERVICE_STOP = 32 constant SERVICE_PAUSE_CONTINUE (line 89) | SERVICE_PAUSE_CONTINUE = 64 constant SERVICE_INTERROGATE (line 90) | SERVICE_INTERROGATE = 128 constant SERVICE_USER_DEFINED_CONTROL (line 91) | SERVICE_USER_DEFINED_CONTROL = 256 constant SERVICE_ALL_ACCESS (line 92) | SERVICE_ALL_ACCESS = STANDARD_RIGHTS_REQUIRED | SERVICE_QUER... constant SERVICE_RUNS_IN_SYSTEM_PROCESS (line 93) | SERVICE_RUNS_IN_SYSTEM_PROCESS = 1 constant SERVICE_CONFIG_DESCRIPTION (line 94) | SERVICE_CONFIG_DESCRIPTION = 1 constant SERVICE_CONFIG_FAILURE_ACTIONS (line 95) | SERVICE_CONFIG_FAILURE_ACTIONS = 2 constant NO_ERROR (line 97) | NO_ERROR = 0 type SERVICE_STATUS (line 100) | type SERVICE_STATUS struct type SERVICE_TABLE_ENTRY (line 110) | type SERVICE_TABLE_ENTRY struct type QUERY_SERVICE_CONFIG (line 115) | type QUERY_SERVICE_CONFIG struct type SERVICE_DESCRIPTION (line 127) | type SERVICE_DESCRIPTION struct FILE: vendor/golang.org/x/sys/windows/str.go function itoa (line 9) | func itoa(val int) string { // do it here rather than with fmt to avoid ... FILE: vendor/golang.org/x/sys/windows/syscall.go function ByteSliceFromString (line 31) | func ByteSliceFromString(s string) ([]byte, error) { function BytePtrFromString (line 45) | func BytePtrFromString(s string) (*byte, error) { method Unix (line 57) | func (ts *Timespec) Unix() (sec int64, nsec int64) { method Unix (line 61) | func (tv *Timeval) Unix() (sec int64, nsec int64) { method Nano (line 65) | func (ts *Timespec) Nano() int64 { method Nano (line 69) | func (tv *Timeval) Nano() int64 { FILE: vendor/golang.org/x/sys/windows/syscall_windows.go type Handle (line 17) | type Handle constant InvalidHandle (line 19) | InvalidHandle = ^Handle(0) function StringToUTF16 (line 24) | func StringToUTF16(s string) []uint16 { function UTF16FromString (line 35) | func UTF16FromString(s string) ([]uint16, error) { function UTF16ToString (line 46) | func UTF16ToString(s []uint16) string { function StringToUTF16Ptr (line 59) | func StringToUTF16Ptr(s string) *uint16 { return &StringToUTF16(s)[0] } function UTF16PtrFromString (line 64) | func UTF16PtrFromString(s string) (*uint16, error) { function Getpagesize (line 72) | func Getpagesize() int { return 4096 } function NewCallback (line 78) | func NewCallback(fn interface{}) uintptr function NewCallbackCDecl (line 79) | func NewCallbackCDecl(fn interface{}) uintptr function Exit (line 191) | func Exit(code int) { ExitProcess(uint32(code)) } function makeInheritSa (line 193) | func makeInheritSa() *SecurityAttributes { function Open (line 200) | func Open(path string, mode int, perm uint32) (fd Handle, err error) { function Read (line 246) | func Read(fd Handle, p []byte) (n int, err error) { function Write (line 265) | func Write(fd Handle, p []byte) (n int, err error) { function Seek (line 282) | func Seek(fd Handle, offset int64, whence int) (newoffset int64, err err... function Close (line 306) | func Close(fd Handle) (err error) { function getStdHandle (line 316) | func getStdHandle(stdhandle uint32) (fd Handle) { constant ImplementsGetwd (line 322) | ImplementsGetwd = true function Getwd (line 324) | func Getwd() (wd string, err error) { function Chdir (line 333) | func Chdir(path string) (err error) { function Mkdir (line 341) | func Mkdir(path string, mode uint32) (err error) { function Rmdir (line 349) | func Rmdir(path string) (err error) { function Unlink (line 357) | func Unlink(path string) (err error) { function Rename (line 365) | func Rename(oldpath, newpath string) (err error) { function ComputerName (line 377) | func ComputerName() (name string, err error) { function Ftruncate (line 387) | func Ftruncate(fd Handle, length int64) (err error) { function Gettimeofday (line 404) | func Gettimeofday(tv *Timeval) (err error) { function Pipe (line 411) | func Pipe(p []Handle) (err error) { function Utimes (line 425) | func Utimes(path string, tv []Timeval) (err error) { function UtimesNano (line 445) | func UtimesNano(path string, ts []Timespec) (err error) { function Fsync (line 465) | func Fsync(fd Handle) (err error) { function Chmod (line 469) | func Chmod(path string, mode uint32) (err error) { function LoadCancelIoEx (line 489) | func LoadCancelIoEx() error { function LoadSetFileCompletionNotificationModes (line 493) | func LoadSetFileCompletionNotificationModes() error { constant socket_error (line 499) | socket_error = uintptr(^uint32(0)) type RawSockaddrInet4 (line 541) | type RawSockaddrInet4 struct type RawSockaddrInet6 (line 548) | type RawSockaddrInet6 struct type RawSockaddr (line 556) | type RawSockaddr struct type RawSockaddrAny (line 561) | type RawSockaddrAny struct method Sockaddr (line 621) | func (rsa *RawSockaddrAny) Sockaddr() (Sockaddr, error) { type Sockaddr (line 566) | type Sockaddr interface type SockaddrInet4 (line 570) | type SockaddrInet4 struct method sockaddr (line 576) | func (sa *SockaddrInet4) sockaddr() (unsafe.Pointer, int32, error) { type SockaddrInet6 (line 590) | type SockaddrInet6 struct method sockaddr (line 597) | func (sa *SockaddrInet6) sockaddr() (unsafe.Pointer, int32, error) { type SockaddrUnix (line 612) | type SockaddrUnix struct method sockaddr (line 616) | func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, int32, error) { function Socket (line 650) | func Socket(domain, typ, proto int) (fd Handle, err error) { function SetsockoptInt (line 657) | func SetsockoptInt(fd Handle, level, opt int, value int) (err error) { function Bind (line 662) | func Bind(fd Handle, sa Sockaddr) (err error) { function Connect (line 670) | func Connect(fd Handle, sa Sockaddr) (err error) { function Getsockname (line 678) | func Getsockname(fd Handle) (sa Sockaddr, err error) { function Getpeername (line 687) | func Getpeername(fd Handle) (sa Sockaddr, err error) { function Listen (line 696) | func Listen(s Handle, n int) (err error) { function Shutdown (line 700) | func Shutdown(fd Handle, how int) (err error) { function WSASendto (line 704) | func WSASendto(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flag... function LoadGetAddrInfo (line 712) | func LoadGetAddrInfo() error { function LoadConnectEx (line 722) | func LoadConnectEx() error { function connectEx (line 742) | func connectEx(s Handle, name unsafe.Pointer, namelen int32, sendBuf *by... function ConnectEx (line 754) | func ConnectEx(fd Handle, sa Sockaddr, sendBuf *byte, sendDataLen uint32... type Rusage (line 767) | type Rusage struct type WaitStatus (line 774) | type WaitStatus struct method Exited (line 778) | func (w WaitStatus) Exited() bool { return true } method ExitStatus (line 780) | func (w WaitStatus) ExitStatus() int { return int(w.ExitCode) } method Signal (line 782) | func (w WaitStatus) Signal() Signal { return -1 } method CoreDump (line 784) | func (w WaitStatus) CoreDump() bool { return false } method Stopped (line 786) | func (w WaitStatus) Stopped() bool { return false } method Continued (line 788) | func (w WaitStatus) Continued() bool { return false } method StopSignal (line 790) | func (w WaitStatus) StopSignal() Signal { return -1 } method Signaled (line 792) | func (w WaitStatus) Signaled() bool { return false } method TrapCause (line 794) | func (w WaitStatus) TrapCause() int { return -1 } type Timespec (line 798) | type Timespec struct function TimespecToNsec (line 803) | func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int6... function NsecToTimespec (line 805) | func NsecToTimespec(nsec int64) (ts Timespec) { function Accept (line 813) | func Accept(fd Handle) (nfd Handle, sa Sockaddr, err error) { return 0, ... function Recvfrom (line 814) | func Recvfrom(fd Handle, p []byte, flags int) (n int, from Sockaddr, err... function Sendto (line 817) | func Sendto(fd Handle, p []byte, flags int, to Sockaddr) (err error) ... function SetsockoptTimeval (line 818) | func SetsockoptTimeval(fd Handle, level, opt int, tv *Timeval) (err erro... type Linger (line 827) | type Linger struct type sysLinger (line 832) | type sysLinger struct type IPMreq (line 837) | type IPMreq struct type IPv6Mreq (line 842) | type IPv6Mreq struct function GetsockoptInt (line 847) | func GetsockoptInt(fd Handle, level, opt int) (int, error) { return -1, ... function SetsockoptLinger (line 849) | func SetsockoptLinger(fd Handle, level, opt int, l *Linger) (err error) { function SetsockoptInet4Addr (line 854) | func SetsockoptInet4Addr(fd Handle, level, opt int, value [4]byte) (err ... function SetsockoptIPMreq (line 857) | func SetsockoptIPMreq(fd Handle, level, opt int, mreq *IPMreq) (err erro... function SetsockoptIPv6Mreq (line 860) | func SetsockoptIPv6Mreq(fd Handle, level, opt int, mreq *IPv6Mreq) (err ... function Getpid (line 864) | func Getpid() (pid int) { return int(getCurrentProcessId()) } function FindFirstFile (line 866) | func FindFirstFile(name *uint16, data *Win32finddata) (handle Handle, er... function FindNextFile (line 883) | func FindNextFile(handle Handle, data *Win32finddata) (err error) { function getProcessEntry (line 892) | func getProcessEntry(pid int) (*ProcessEntry32, error) { function Getppid (line 914) | func Getppid() (ppid int) { function Fchdir (line 923) | func Fchdir(fd Handle) (err error) { return syscall.EWINDOWS } function Link (line 924) | func Link(oldpath, newpath string) (err error) { return syscall.EWINDOWS } function Symlink (line 925) | func Symlink(path, link string) (err error) { return syscall.EWINDOWS } function Fchmod (line 927) | func Fchmod(fd Handle, mode uint32) (err error) { return syscall.... function Chown (line 928) | func Chown(path string, uid int, gid int) (err error) { return syscall.... function Lchown (line 929) | func Lchown(path string, uid int, gid int) (err error) { return syscall.... function Fchown (line 930) | func Fchown(fd Handle, uid int, gid int) (err error) { return syscall.... function Getuid (line 932) | func Getuid() (uid int) { return -1 } function Geteuid (line 933) | func Geteuid() (euid int) { return -1 } function Getgid (line 934) | func Getgid() (gid int) { return -1 } function Getegid (line 935) | func Getegid() (egid int) { return -1 } function Getgroups (line 936) | func Getgroups() (gids []int, err error) { return nil, syscall.EWINDOWS } type Signal (line 938) | type Signal method Signal (line 940) | func (s Signal) Signal() {} method String (line 942) | func (s Signal) String() string { function LoadCreateSymbolicLink (line 952) | func LoadCreateSymbolicLink() error { function Readlink (line 957) | func Readlink(path string, buf []byte) (n int, err error) { FILE: vendor/golang.org/x/sys/windows/zsyscall_windows.go constant errnoERROR_IO_PENDING (line 15) | errnoERROR_IO_PENDING = 997 function errnoErr (line 24) | func errnoErr(e syscall.Errno) error { function RegisterEventSource (line 225) | func RegisterEventSource(uncServerName *uint16, sourceName *uint16) (han... function DeregisterEventSource (line 238) | func DeregisterEventSource(handle Handle) (err error) { function ReportEvent (line 250) | func ReportEvent(log Handle, etype uint16, category uint16, eventId uint... function OpenSCManager (line 262) | func OpenSCManager(machineName *uint16, databaseName *uint16, access uin... function CloseServiceHandle (line 275) | func CloseServiceHandle(handle Handle) (err error) { function CreateService (line 287) | func CreateService(mgr Handle, serviceName *uint16, displayName *uint16,... function OpenService (line 300) | func OpenService(mgr Handle, serviceName *uint16, access uint32) (handle... function DeleteService (line 313) | func DeleteService(service Handle) (err error) { function StartService (line 325) | func StartService(service Handle, numArgs uint32, argVectors **uint16) (... function QueryServiceStatus (line 337) | func QueryServiceStatus(service Handle, status *SERVICE_STATUS) (err err... function ControlService (line 349) | func ControlService(service Handle, control uint32, status *SERVICE_STAT... function StartServiceCtrlDispatcher (line 361) | func StartServiceCtrlDispatcher(serviceTable *SERVICE_TABLE_ENTRY) (err ... function SetServiceStatus (line 373) | func SetServiceStatus(service Handle, serviceStatus *SERVICE_STATUS) (er... function ChangeServiceConfig (line 385) | func ChangeServiceConfig(service Handle, serviceType uint32, startType u... function QueryServiceConfig (line 397) | func QueryServiceConfig(service Handle, serviceConfig *QUERY_SERVICE_CON... function ChangeServiceConfig2 (line 409) | func ChangeServiceConfig2(service Handle, infoLevel uint32, info *byte) ... function QueryServiceConfig2 (line 421) | func QueryServiceConfig2(service Handle, infoLevel uint32, buff *byte, b... function GetLastError (line 433) | func GetLastError() (lasterr error) { function LoadLibrary (line 441) | func LoadLibrary(libname string) (handle Handle, err error) { function _LoadLibrary (line 450) | func _LoadLibrary(libname *uint16) (handle Handle, err error) { function LoadLibraryEx (line 463) | func LoadLibraryEx(libname string, zero Handle, flags uintptr) (handle H... function _LoadLibraryEx (line 472) | func _LoadLibraryEx(libname *uint16, zero Handle, flags uintptr) (handle... function FreeLibrary (line 485) | func FreeLibrary(handle Handle) (err error) { function GetProcAddress (line 497) | func GetProcAddress(module Handle, procname string) (proc uintptr, err e... function _GetProcAddress (line 506) | func _GetProcAddress(module Handle, procname *byte) (proc uintptr, err e... function GetVersion (line 519) | func GetVersion() (ver uint32, err error) { function FormatMessage (line 532) | func FormatMessage(flags uint32, msgsrc uintptr, msgid uint32, langid ui... function ExitProcess (line 549) | func ExitProcess(exitcode uint32) { function CreateFile (line 554) | func CreateFile(name *uint16, access uint32, mode uint32, sa *SecurityAt... function ReadFile (line 567) | func ReadFile(handle Handle, buf []byte, done *uint32, overlapped *Overl... function WriteFile (line 583) | func WriteFile(handle Handle, buf []byte, done *uint32, overlapped *Over... function SetFilePointer (line 599) | func SetFilePointer(handle Handle, lowoffset int32, highoffsetptr *int32... function CloseHandle (line 612) | func CloseHandle(handle Handle) (err error) { function GetStdHandle (line 624) | func GetStdHandle(stdhandle uint32) (handle Handle, err error) { function SetStdHandle (line 637) | func SetStdHandle(stdhandle uint32, handle Handle) (err error) { function findFirstFile1 (line 649) | func findFirstFile1(name *uint16, data *win32finddata1) (handle Handle, ... function findNextFile1 (line 662) | func findNextFile1(handle Handle, data *win32finddata1) (err error) { function FindClose (line 674) | func FindClose(handle Handle) (err error) { function GetFileInformationByHandle (line 686) | func GetFileInformationByHandle(handle Handle, data *ByHandleFileInforma... function GetCurrentDirectory (line 698) | func GetCurrentDirectory(buflen uint32, buf *uint16) (n uint32, err erro... function SetCurrentDirectory (line 711) | func SetCurrentDirectory(path *uint16) (err error) { function CreateDirectory (line 723) | func CreateDirectory(path *uint16, sa *SecurityAttributes) (err error) { function RemoveDirectory (line 735) | func RemoveDirectory(path *uint16) (err error) { function DeleteFile (line 747) | func DeleteFile(path *uint16) (err error) { function MoveFile (line 759) | func MoveFile(from *uint16, to *uint16) (err error) { function MoveFileEx (line 771) | func MoveFileEx(from *uint16, to *uint16, flags uint32) (err error) { function GetComputerName (line 783) | func GetComputerName(buf *uint16, n *uint32) (err error) { function GetComputerNameEx (line 795) | func GetComputerNameEx(nametype uint32, buf *uint16, n *uint32) (err err... function SetEndOfFile (line 807) | func SetEndOfFile(handle Handle) (err error) { function GetSystemTimeAsFileTime (line 819) | func GetSystemTimeAsFileTime(time *Filetime) { function GetSystemTimePreciseAsFileTime (line 824) | func GetSystemTimePreciseAsFileTime(time *Filetime) { function GetTimeZoneInformation (line 829) | func GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err er... function CreateIoCompletionPort (line 842) | func CreateIoCompletionPort(filehandle Handle, cphandle Handle, key uint... function GetQueuedCompletionStatus (line 855) | func GetQueuedCompletionStatus(cphandle Handle, qty *uint32, key *uint32... function PostQueuedCompletionStatus (line 867) | func PostQueuedCompletionStatus(cphandle Handle, qty uint32, key uint32,... function CancelIo (line 879) | func CancelIo(s Handle) (err error) { function CancelIoEx (line 891) | func CancelIoEx(s Handle, o *Overlapped) (err error) { function CreateProcess (line 903) | func CreateProcess(appName *uint16, commandLine *uint16, procSecurity *S... function OpenProcess (line 921) | func OpenProcess(da uint32, inheritHandle bool, pid uint32) (handle Hand... function TerminateProcess (line 940) | func TerminateProcess(handle Handle, exitcode uint32) (err error) { function GetExitCodeProcess (line 952) | func GetExitCodeProcess(handle Handle, exitcode *uint32) (err error) { function GetStartupInfo (line 964) | func GetStartupInfo(startupInfo *StartupInfo) (err error) { function GetCurrentProcess (line 976) | func GetCurrentProcess() (pseudoHandle Handle, err error) { function GetProcessTimes (line 989) | func GetProcessTimes(handle Handle, creationTime *Filetime, exitTime *Fi... function DuplicateHandle (line 1001) | func DuplicateHandle(hSourceProcessHandle Handle, hSourceHandle Handle, ... function WaitForSingleObject (line 1019) | func WaitForSingleObject(handle Handle, waitMilliseconds uint32) (event ... function GetTempPath (line 1032) | func GetTempPath(buflen uint32, buf *uint16) (n uint32, err error) { function CreatePipe (line 1045) | func CreatePipe(readhandle *Handle, writehandle *Handle, sa *SecurityAtt... function GetFileType (line 1057) | func GetFileType(filehandle Handle) (n uint32, err error) { function CryptAcquireContext (line 1070) | func CryptAcquireContext(provhandle *Handle, container *uint16, provider... function CryptReleaseContext (line 1082) | func CryptReleaseContext(provhandle Handle, flags uint32) (err error) { function CryptGenRandom (line 1094) | func CryptGenRandom(provhandle Handle, buflen uint32, buf *byte) (err er... function GetEnvironmentStrings (line 1106) | func GetEnvironmentStrings() (envs *uint16, err error) { function FreeEnvironmentStrings (line 1119) | func FreeEnvironmentStrings(envs *uint16) (err error) { function GetEnvironmentVariable (line 1131) | func GetEnvironmentVariable(name *uint16, buffer *uint16, size uint32) (... function SetEnvironmentVariable (line 1144) | func SetEnvironmentVariable(name *uint16, value *uint16) (err error) { function SetFileTime (line 1156) | func SetFileTime(handle Handle, ctime *Filetime, atime *Filetime, wtime ... function GetFileAttributes (line 1168) | func GetFileAttributes(name *uint16) (attrs uint32, err error) { function SetFileAttributes (line 1181) | func SetFileAttributes(name *uint16, attrs uint32) (err error) { function GetFileAttributesEx (line 1193) | func GetFileAttributesEx(name *uint16, level uint32, info *byte) (err er... function GetCommandLine (line 1205) | func GetCommandLine() (cmd *uint16) { function CommandLineToArgv (line 1211) | func CommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uin... function LocalFree (line 1224) | func LocalFree(hmem Handle) (handle Handle, err error) { function SetHandleInformation (line 1237) | func SetHandleInformation(handle Handle, mask uint32, flags uint32) (err... function FlushFileBuffers (line 1249) | func FlushFileBuffers(handle Handle) (err error) { function GetFullPathName (line 1261) | func GetFullPathName(path *uint16, buflen uint32, buf *uint16, fname **u... function GetLongPathName (line 1274) | func GetLongPathName(path *uint16, buf *uint16, buflen uint32) (n uint32... function GetShortPathName (line 1287) | func GetShortPathName(longpath *uint16, shortpath *uint16, buflen uint32... function CreateFileMapping (line 1300) | func CreateFileMapping(fhandle Handle, sa *SecurityAttributes, prot uint... function MapViewOfFile (line 1313) | func MapViewOfFile(handle Handle, access uint32, offsetHigh uint32, offs... function UnmapViewOfFile (line 1326) | func UnmapViewOfFile(addr uintptr) (err error) { function FlushViewOfFile (line 1338) | func FlushViewOfFile(addr uintptr, length uintptr) (err error) { function VirtualLock (line 1350) | func VirtualLock(addr uintptr, length uintptr) (err error) { function VirtualUnlock (line 1362) | func VirtualUnlock(addr uintptr, length uintptr) (err error) { function TransmitFile (line 1374) | func TransmitFile(s Handle, handle Handle, bytesToWrite uint32, bytsPerS... function ReadDirectoryChanges (line 1386) | func ReadDirectoryChanges(handle Handle, buf *byte, buflen uint32, watch... function CertOpenSystemStore (line 1404) | func CertOpenSystemStore(hprov Handle, name *uint16) (store Handle, err ... function CertOpenStore (line 1417) | func CertOpenStore(storeProvider uintptr, msgAndCertEncodingType uint32,... function CertEnumCertificatesInStore (line 1430) | func CertEnumCertificatesInStore(store Handle, prevContext *CertContext)... function CertAddCertificateContextToStore (line 1443) | func CertAddCertificateContextToStore(store Handle, certContext *CertCon... function CertCloseStore (line 1455) | func CertCloseStore(store Handle, flags uint32) (err error) { function CertGetCertificateChain (line 1467) | func CertGetCertificateChain(engine Handle, leaf *CertContext, time *Fil... function CertFreeCertificateChain (line 1479) | func CertFreeCertificateChain(ctx *CertChainContext) { function CertCreateCertificateContext (line 1484) | func CertCreateCertificateContext(certEncodingType uint32, certEncoded *... function CertFreeCertificateContext (line 1497) | func CertFreeCertificateContext(ctx *CertContext) (err error) { function CertVerifyCertificateChainPolicy (line 1509) | func CertVerifyCertificateChainPolicy(policyOID uintptr, chain *CertChai... function RegOpenKeyEx (line 1521) | func RegOpenKeyEx(key Handle, subkey *uint16, options uint32, desiredAcc... function RegCloseKey (line 1529) | func RegCloseKey(key Handle) (regerrno error) { function RegQueryInfoKey (line 1537) | func RegQueryInfoKey(key Handle, class *uint16, classLen *uint32, reserv... function RegEnumKeyEx (line 1545) | func RegEnumKeyEx(key Handle, index uint32, name *uint16, nameLen *uint3... function RegQueryValueEx (line 1553) | func RegQueryValueEx(key Handle, name *uint16, reserved *uint32, valtype... function getCurrentProcessId (line 1561) | func getCurrentProcessId() (pid uint32) { function GetConsoleMode (line 1567) | func GetConsoleMode(console Handle, mode *uint32) (err error) { function WriteConsole (line 1579) | func WriteConsole(console Handle, buf *uint16, towrite uint32, written *... function ReadConsole (line 1591) | func ReadConsole(console Handle, buf *uint16, toread uint32, read *uint3... function CreateToolhelp32Snapshot (line 1603) | func CreateToolhelp32Snapshot(flags uint32, processId uint32) (handle Ha... function Process32First (line 1616) | func Process32First(snapshot Handle, procEntry *ProcessEntry32) (err err... function Process32Next (line 1628) | func Process32Next(snapshot Handle, procEntry *ProcessEntry32) (err erro... function DeviceIoControl (line 1640) | func DeviceIoControl(handle Handle, ioControlCode uint32, inBuffer *byte... function CreateSymbolicLink (line 1652) | func CreateSymbolicLink(symlinkfilename *uint16, targetfilename *uint16,... function CreateHardLink (line 1664) | func CreateHardLink(filename *uint16, existingfilename *uint16, reserved... function GetCurrentThreadId (line 1676) | func GetCurrentThreadId() (id uint32) { function CreateEvent (line 1682) | func CreateEvent(eventAttrs *syscall.SecurityAttributes, manualReset uin... function SetEvent (line 1695) | func SetEvent(event Handle) (err error) { function WSAStartup (line 1707) | func WSAStartup(verreq uint32, data *WSAData) (sockerr error) { function WSACleanup (line 1715) | func WSACleanup() (err error) { function WSAIoctl (line 1727) | func WSAIoctl(s Handle, iocc uint32, inbuf *byte, cbif uint32, outbuf *b... function socket (line 1739) | func socket(af int32, typ int32, protocol int32) (handle Handle, err err... function Setsockopt (line 1752) | func Setsockopt(s Handle, level int32, optname int32, optval *byte, optl... function Getsockopt (line 1764) | func Getsockopt(s Handle, level int32, optname int32, optval *byte, optl... function bind (line 1776) | func bind(s Handle, name unsafe.Pointer, namelen int32) (err error) { function connect (line 1788) | func connect(s Handle, name unsafe.Pointer, namelen int32) (err error) { function getsockname (line 1800) | func getsockname(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err err... function getpeername (line 1812) | func getpeername(s Handle, rsa *RawSockaddrAny, addrlen *int32) (err err... function listen (line 1824) | func listen(s Handle, backlog int32) (err error) { function shutdown (line 1836) | func shutdown(s Handle, how int32) (err error) { function Closesocket (line 1848) | func Closesocket(s Handle) (err error) { function AcceptEx (line 1860) | func AcceptEx(ls Handle, as Handle, buf *byte, rxdatalen uint32, laddrle... function GetAcceptExSockaddrs (line 1872) | func GetAcceptExSockaddrs(buf *byte, rxdatalen uint32, laddrlen uint32, ... function WSARecv (line 1877) | func WSARecv(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, flags... function WSASend (line 1889) | func WSASend(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flags ... function WSARecvFrom (line 1901) | func WSARecvFrom(s Handle, bufs *WSABuf, bufcnt uint32, recvd *uint32, f... function WSASendTo (line 1913) | func WSASendTo(s Handle, bufs *WSABuf, bufcnt uint32, sent *uint32, flag... function GetHostByName (line 1925) | func GetHostByName(name string) (h *Hostent, err error) { function _GetHostByName (line 1934) | func _GetHostByName(name *byte) (h *Hostent, err error) { function GetServByName (line 1947) | func GetServByName(name string, proto string) (s *Servent, err error) { function _GetServByName (line 1961) | func _GetServByName(name *byte, proto *byte) (s *Servent, err error) { function Ntohs (line 1974) | func Ntohs(netshort uint16) (u uint16) { function GetProtoByName (line 1980) | func GetProtoByName(name string) (p *Protoent, err error) { function _GetProtoByName (line 1989) | func _GetProtoByName(name *byte) (p *Protoent, err error) { function DnsQuery (line 2002) | func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qr... function _DnsQuery (line 2011) | func _DnsQuery(name *uint16, qtype uint16, options uint32, extra *byte, ... function DnsRecordListFree (line 2019) | func DnsRecordListFree(rl *DNSRecord, freetype uint32) { function DnsNameCompare (line 2024) | func DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) { function GetAddrInfoW (line 2030) | func GetAddrInfoW(nodename *uint16, servicename *uint16, hints *Addrinfo... function FreeAddrInfoW (line 2038) | func FreeAddrInfoW(addrinfo *AddrinfoW) { function GetIfEntry (line 2043) | func GetIfEntry(pIfRow *MibIfRow) (errcode error) { function GetAdaptersInfo (line 2051) | func GetAdaptersInfo(ai *IpAdapterInfo, ol *uint32) (errcode error) { function SetFileCompletionNotificationModes (line 2059) | func SetFileCompletionNotificationModes(handle Handle, flags uint8) (err... function WSAEnumProtocols (line 2071) | func WSAEnumProtocols(protocols *int32, protocolBuffer *WSAProtocolInfo,... function GetAdaptersAddresses (line 2084) | func GetAdaptersAddresses(family uint32, flags uint32, reserved uintptr,... function GetACP (line 2092) | func GetACP() (acp uint32) { function MultiByteToWideChar (line 2098) | func MultiByteToWideChar(codePage uint32, dwFlags uint32, str *byte, nst... function TranslateName (line 2111) | func TranslateName(accName *uint16, accNameFormat uint32, desiredNameFor... function GetUserNameEx (line 2123) | func GetUserNameEx(nameFormat uint32, nameBuffre *uint16, nSize *uint32)... function NetUserGetInfo (line 2135) | func NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, ... function NetGetJoinInformation (line 2143) | func NetGetJoinInformation(server *uint16, name **uint16, bufType *uint3... function NetApiBufferFree (line 2151) | func NetApiBufferFree(buf *byte) (neterr error) { function LookupAccountSid (line 2159) | func LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLe... function LookupAccountName (line 2171) | func LookupAccountName(systemName *uint16, accountName *uint16, sid *SID... function ConvertSidToStringSid (line 2183) | func ConvertSidToStringSid(sid *SID, stringSid **uint16) (err error) { function ConvertStringSidToSid (line 2195) | func ConvertStringSidToSid(stringSid *uint16, sid **SID) (err error) { function GetLengthSid (line 2207) | func GetLengthSid(sid *SID) (len uint32) { function CopySid (line 2213) | func CopySid(destSidLen uint32, destSid *SID, srcSid *SID) (err error) { function AllocateAndInitializeSid (line 2225) | func AllocateAndInitializeSid(identAuth *SidIdentifierAuthority, subAuth... function FreeSid (line 2237) | func FreeSid(sid *SID) (err error) { function EqualSid (line 2249) | func EqualSid(sid1 *SID, sid2 *SID) (isEqual bool) { function OpenProcessToken (line 2255) | func OpenProcessToken(h Handle, access uint32, token *Token) (err error) { function GetTokenInformation (line 2267) | func GetTokenInformation(t Token, infoClass uint32, info *byte, infoLen ... function GetUserProfileDirectory (line 2279) | func GetUserProfileDirectory(t Token, dir *uint16, dirLen *uint32) (err ... FILE: vendor/golang.org/x/sys/windows/ztypes_windows.go constant ERROR_FILE_NOT_FOUND (line 11) | ERROR_FILE_NOT_FOUND syscall.Errno = 2 constant ERROR_PATH_NOT_FOUND (line 12) | ERROR_PATH_NOT_FOUND syscall.Errno = 3 constant ERROR_ACCESS_DENIED (line 13) | ERROR_ACCESS_DENIED syscall.Errno = 5 constant ERROR_NO_MORE_FILES (line 14) | ERROR_NO_MORE_FILES syscall.Errno = 18 constant ERROR_HANDLE_EOF (line 15) | ERROR_HANDLE_EOF syscall.Errno = 38 constant ERROR_NETNAME_DELETED (line 16) | ERROR_NETNAME_DELETED syscall.Errno = 64 constant ERROR_FILE_EXISTS (line 17) | ERROR_FILE_EXISTS syscall.Errno = 80 constant ERROR_BROKEN_PIPE (line 18) | ERROR_BROKEN_PIPE syscall.Errno = 109 constant ERROR_BUFFER_OVERFLOW (line 19) | ERROR_BUFFER_OVERFLOW syscall.Errno = 111 constant ERROR_INSUFFICIENT_BUFFER (line 20) | ERROR_INSUFFICIENT_BUFFER syscall.Errno = 122 constant ERROR_MOD_NOT_FOUND (line 21) | ERROR_MOD_NOT_FOUND syscall.Errno = 126 constant ERROR_PROC_NOT_FOUND (line 22) | ERROR_PROC_NOT_FOUND syscall.Errno = 127 constant ERROR_ALREADY_EXISTS (line 23) | ERROR_ALREADY_EXISTS syscall.Errno = 183 constant ERROR_ENVVAR_NOT_FOUND (line 24) | ERROR_ENVVAR_NOT_FOUND syscall.Errno = 203 constant ERROR_MORE_DATA (line 25) | ERROR_MORE_DATA syscall.Errno = 234 constant ERROR_OPERATION_ABORTED (line 26) | ERROR_OPERATION_ABORTED syscall.Errno = 995 constant ERROR_IO_PENDING (line 27) | ERROR_IO_PENDING syscall.Errno = 997 constant ERROR_SERVICE_SPECIFIC_ERROR (line 28) | ERROR_SERVICE_SPECIFIC_ERROR syscall.Errno = 1066 constant ERROR_NOT_FOUND (line 29) | ERROR_NOT_FOUND syscall.Errno = 1168 constant ERROR_PRIVILEGE_NOT_HELD (line 30) | ERROR_PRIVILEGE_NOT_HELD syscall.Errno = 1314 constant WSAEACCES (line 31) | WSAEACCES syscall.Errno = 10013 constant WSAECONNRESET (line 32) | WSAECONNRESET syscall.Errno = 10054 constant O_RDONLY (line 37) | O_RDONLY = 0x00000 constant O_WRONLY (line 38) | O_WRONLY = 0x00001 constant O_RDWR (line 39) | O_RDWR = 0x00002 constant O_CREAT (line 40) | O_CREAT = 0x00040 constant O_EXCL (line 41) | O_EXCL = 0x00080 constant O_NOCTTY (line 42) | O_NOCTTY = 0x00100 constant O_TRUNC (line 43) | O_TRUNC = 0x00200 constant O_NONBLOCK (line 44) | O_NONBLOCK = 0x00800 constant O_APPEND (line 45) | O_APPEND = 0x00400 constant O_SYNC (line 46) | O_SYNC = 0x01000 constant O_ASYNC (line 47) | O_ASYNC = 0x02000 constant O_CLOEXEC (line 48) | O_CLOEXEC = 0x80000 constant SIGHUP (line 53) | SIGHUP = Signal(0x1) constant SIGINT (line 54) | SIGINT = Signal(0x2) constant SIGQUIT (line 55) | SIGQUIT = Signal(0x3) constant SIGILL (line 56) | SIGILL = Signal(0x4) constant SIGTRAP (line 57) | SIGTRAP = Signal(0x5) constant SIGABRT (line 58) | SIGABRT = Signal(0x6) constant SIGBUS (line 59) | SIGBUS = Signal(0x7) constant SIGFPE (line 60) | SIGFPE = Signal(0x8) constant SIGKILL (line 61) | SIGKILL = Signal(0x9) constant SIGSEGV (line 62) | SIGSEGV = Signal(0xb) constant SIGPIPE (line 63) | SIGPIPE = Signal(0xd) constant SIGALRM (line 64) | SIGALRM = Signal(0xe) constant SIGTERM (line 65) | SIGTERM = Signal(0xf) constant GENERIC_READ (line 87) | GENERIC_READ = 0x80000000 constant GENERIC_WRITE (line 88) | GENERIC_WRITE = 0x40000000 constant GENERIC_EXECUTE (line 89) | GENERIC_EXECUTE = 0x20000000 constant GENERIC_ALL (line 90) | GENERIC_ALL = 0x10000000 constant FILE_LIST_DIRECTORY (line 92) | FILE_LIST_DIRECTORY = 0x00000001 constant FILE_APPEND_DATA (line 93) | FILE_APPEND_DATA = 0x00000004 constant FILE_WRITE_ATTRIBUTES (line 94) | FILE_WRITE_ATTRIBUTES = 0x00000100 constant FILE_SHARE_READ (line 96) | FILE_SHARE_READ = 0x00000001 constant FILE_SHARE_WRITE (line 97) | FILE_SHARE_WRITE = 0x00000002 constant FILE_SHARE_DELETE (line 98) | FILE_SHARE_DELETE = 0x00000004 constant FILE_ATTRIBUTE_READONLY (line 99) | FILE_ATTRIBUTE_READONLY = 0x00000001 constant FILE_ATTRIBUTE_HIDDEN (line 100) | FILE_ATTRIBUTE_HIDDEN = 0x00000002 constant FILE_ATTRIBUTE_SYSTEM (line 101) | FILE_ATTRIBUTE_SYSTEM = 0x00000004 constant FILE_ATTRIBUTE_DIRECTORY (line 102) | FILE_ATTRIBUTE_DIRECTORY = 0x00000010 constant FILE_ATTRIBUTE_ARCHIVE (line 103) | FILE_ATTRIBUTE_ARCHIVE = 0x00000020 constant FILE_ATTRIBUTE_NORMAL (line 104) | FILE_ATTRIBUTE_NORMAL = 0x00000080 constant FILE_ATTRIBUTE_REPARSE_POINT (line 105) | FILE_ATTRIBUTE_REPARSE_POINT = 0x00000400 constant INVALID_FILE_ATTRIBUTES (line 107) | INVALID_FILE_ATTRIBUTES = 0xffffffff constant CREATE_NEW (line 109) | CREATE_NEW = 1 constant CREATE_ALWAYS (line 110) | CREATE_ALWAYS = 2 constant OPEN_EXISTING (line 111) | OPEN_EXISTING = 3 constant OPEN_ALWAYS (line 112) | OPEN_ALWAYS = 4 constant TRUNCATE_EXISTING (line 113) | TRUNCATE_EXISTING = 5 constant FILE_FLAG_OPEN_REPARSE_POINT (line 115) | FILE_FLAG_OPEN_REPARSE_POINT = 0x00200000 constant FILE_FLAG_BACKUP_SEMANTICS (line 116) | FILE_FLAG_BACKUP_SEMANTICS = 0x02000000 constant FILE_FLAG_OVERLAPPED (line 117) | FILE_FLAG_OVERLAPPED = 0x40000000 constant HANDLE_FLAG_INHERIT (line 119) | HANDLE_FLAG_INHERIT = 0x00000001 constant STARTF_USESTDHANDLES (line 120) | STARTF_USESTDHANDLES = 0x00000100 constant STARTF_USESHOWWINDOW (line 121) | STARTF_USESHOWWINDOW = 0x00000001 constant DUPLICATE_CLOSE_SOURCE (line 122) | DUPLICATE_CLOSE_SOURCE = 0x00000001 constant DUPLICATE_SAME_ACCESS (line 123) | DUPLICATE_SAME_ACCESS = 0x00000002 constant STD_INPUT_HANDLE (line 125) | STD_INPUT_HANDLE = -10 & (1<<32 - 1) constant STD_OUTPUT_HANDLE (line 126) | STD_OUTPUT_HANDLE = -11 & (1<<32 - 1) constant STD_ERROR_HANDLE (line 127) | STD_ERROR_HANDLE = -12 & (1<<32 - 1) constant FILE_BEGIN (line 129) | FILE_BEGIN = 0 constant FILE_CURRENT (line 130) | FILE_CURRENT = 1 constant FILE_END (line 131) | FILE_END = 2 constant LANG_ENGLISH (line 133) | LANG_ENGLISH = 0x09 constant SUBLANG_ENGLISH_US (line 134) | SUBLANG_ENGLISH_US = 0x01 constant FORMAT_MESSAGE_ALLOCATE_BUFFER (line 136) | FORMAT_MESSAGE_ALLOCATE_BUFFER = 256 constant FORMAT_MESSAGE_IGNORE_INSERTS (line 137) | FORMAT_MESSAGE_IGNORE_INSERTS = 512 constant FORMAT_MESSAGE_FROM_STRING (line 138) | FORMAT_MESSAGE_FROM_STRING = 1024 constant FORMAT_MESSAGE_FROM_HMODULE (line 139) | FORMAT_MESSAGE_FROM_HMODULE = 2048 constant FORMAT_MESSAGE_FROM_SYSTEM (line 140) | FORMAT_MESSAGE_FROM_SYSTEM = 4096 constant FORMAT_MESSAGE_ARGUMENT_ARRAY (line 141) | FORMAT_MESSAGE_ARGUMENT_ARRAY = 8192 constant FORMAT_MESSAGE_MAX_WIDTH_MASK (line 142) | FORMAT_MESSAGE_MAX_WIDTH_MASK = 255 constant MAX_PATH (line 144) | MAX_PATH = 260 constant MAX_LONG_PATH (line 145) | MAX_LONG_PATH = 32768 constant MAX_COMPUTERNAME_LENGTH (line 147) | MAX_COMPUTERNAME_LENGTH = 15 constant TIME_ZONE_ID_UNKNOWN (line 149) | TIME_ZONE_ID_UNKNOWN = 0 constant TIME_ZONE_ID_STANDARD (line 150) | TIME_ZONE_ID_STANDARD = 1 constant TIME_ZONE_ID_DAYLIGHT (line 152) | TIME_ZONE_ID_DAYLIGHT = 2 constant IGNORE (line 153) | IGNORE = 0 constant INFINITE (line 154) | INFINITE = 0xffffffff constant WAIT_TIMEOUT (line 156) | WAIT_TIMEOUT = 258 constant WAIT_ABANDONED (line 157) | WAIT_ABANDONED = 0x00000080 constant WAIT_OBJECT_0 (line 158) | WAIT_OBJECT_0 = 0x00000000 constant WAIT_FAILED (line 159) | WAIT_FAILED = 0xFFFFFFFF constant CREATE_NEW_PROCESS_GROUP (line 161) | CREATE_NEW_PROCESS_GROUP = 0x00000200 constant CREATE_UNICODE_ENVIRONMENT (line 162) | CREATE_UNICODE_ENVIRONMENT = 0x00000400 constant PROCESS_TERMINATE (line 164) | PROCESS_TERMINATE = 1 constant PROCESS_QUERY_INFORMATION (line 165) | PROCESS_QUERY_INFORMATION = 0x00000400 constant SYNCHRONIZE (line 166) | SYNCHRONIZE = 0x00100000 constant PAGE_READONLY (line 168) | PAGE_READONLY = 0x02 constant PAGE_READWRITE (line 169) | PAGE_READWRITE = 0x04 constant PAGE_WRITECOPY (line 170) | PAGE_WRITECOPY = 0x08 constant PAGE_EXECUTE_READ (line 171) | PAGE_EXECUTE_READ = 0x20 constant PAGE_EXECUTE_READWRITE (line 172) | PAGE_EXECUTE_READWRITE = 0x40 constant PAGE_EXECUTE_WRITECOPY (line 173) | PAGE_EXECUTE_WRITECOPY = 0x80 constant FILE_MAP_COPY (line 175) | FILE_MAP_COPY = 0x01 constant FILE_MAP_WRITE (line 176) | FILE_MAP_WRITE = 0x02 constant FILE_MAP_READ (line 177) | FILE_MAP_READ = 0x04 constant FILE_MAP_EXECUTE (line 178) | FILE_MAP_EXECUTE = 0x20 constant CTRL_C_EVENT (line 180) | CTRL_C_EVENT = 0 constant CTRL_BREAK_EVENT (line 181) | CTRL_BREAK_EVENT = 1 constant APPLICATION_ERROR (line 184) | APPLICATION_ERROR = 1 << 29 constant TH32CS_SNAPHEAPLIST (line 189) | TH32CS_SNAPHEAPLIST = 0x01 constant TH32CS_SNAPPROCESS (line 190) | TH32CS_SNAPPROCESS = 0x02 constant TH32CS_SNAPTHREAD (line 191) | TH32CS_SNAPTHREAD = 0x04 constant TH32CS_SNAPMODULE (line 192) | TH32CS_SNAPMODULE = 0x08 constant TH32CS_SNAPMODULE32 (line 193) | TH32CS_SNAPMODULE32 = 0x10 constant TH32CS_SNAPALL (line 194) | TH32CS_SNAPALL = TH32CS_SNAPHEAPLIST | TH32CS_SNAPMODULE | TH32CS_S... constant TH32CS_INHERIT (line 195) | TH32CS_INHERIT = 0x80000000 constant FILE_NOTIFY_CHANGE_FILE_NAME (line 200) | FILE_NOTIFY_CHANGE_FILE_NAME = 0x001 constant FILE_NOTIFY_CHANGE_DIR_NAME (line 201) | FILE_NOTIFY_CHANGE_DIR_NAME = 0x002 constant FILE_NOTIFY_CHANGE_ATTRIBUTES (line 202) | FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x004 constant FILE_NOTIFY_CHANGE_SIZE (line 203) | FILE_NOTIFY_CHANGE_SIZE = 0x008 constant FILE_NOTIFY_CHANGE_LAST_WRITE (line 204) | FILE_NOTIFY_CHANGE_LAST_WRITE = 0x010 constant FILE_NOTIFY_CHANGE_LAST_ACCESS (line 205) | FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x020 constant FILE_NOTIFY_CHANGE_CREATION (line 206) | FILE_NOTIFY_CHANGE_CREATION = 0x040 constant FILE_NOTIFY_CHANGE_SECURITY (line 207) | FILE_NOTIFY_CHANGE_SECURITY = 0x100 constant FILE_ACTION_ADDED (line 212) | FILE_ACTION_ADDED = iota + 1 constant FILE_ACTION_REMOVED (line 213) | FILE_ACTION_REMOVED constant FILE_ACTION_MODIFIED (line 214) | FILE_ACTION_MODIFIED constant FILE_ACTION_RENAMED_OLD_NAME (line 215) | FILE_ACTION_RENAMED_OLD_NAME constant FILE_ACTION_RENAMED_NEW_NAME (line 216) | FILE_ACTION_RENAMED_NEW_NAME constant PROV_RSA_FULL (line 221) | PROV_RSA_FULL = 1 constant PROV_RSA_SIG (line 222) | PROV_RSA_SIG = 2 constant PROV_DSS (line 223) | PROV_DSS = 3 constant PROV_FORTEZZA (line 224) | PROV_FORTEZZA = 4 constant PROV_MS_EXCHANGE (line 225) | PROV_MS_EXCHANGE = 5 constant PROV_SSL (line 226) | PROV_SSL = 6 constant PROV_RSA_SCHANNEL (line 227) | PROV_RSA_SCHANNEL = 12 constant PROV_DSS_DH (line 228) | PROV_DSS_DH = 13 constant PROV_EC_ECDSA_SIG (line 229) | PROV_EC_ECDSA_SIG = 14 constant PROV_EC_ECNRA_SIG (line 230) | PROV_EC_ECNRA_SIG = 15 constant PROV_EC_ECDSA_FULL (line 231) | PROV_EC_ECDSA_FULL = 16 constant PROV_EC_ECNRA_FULL (line 232) | PROV_EC_ECNRA_FULL = 17 constant PROV_DH_SCHANNEL (line 233) | PROV_DH_SCHANNEL = 18 constant PROV_SPYRUS_LYNKS (line 234) | PROV_SPYRUS_LYNKS = 20 constant PROV_RNG (line 235) | PROV_RNG = 21 constant PROV_INTEL_SEC (line 236) | PROV_INTEL_SEC = 22 constant PROV_REPLACE_OWF (line 237) | PROV_REPLACE_OWF = 23 constant PROV_RSA_AES (line 238) | PROV_RSA_AES = 24 constant CRYPT_VERIFYCONTEXT (line 239) | CRYPT_VERIFYCONTEXT = 0xF0000000 constant CRYPT_NEWKEYSET (line 240) | CRYPT_NEWKEYSET = 0x00000008 constant CRYPT_DELETEKEYSET (line 241) | CRYPT_DELETEKEYSET = 0x00000010 constant CRYPT_MACHINE_KEYSET (line 242) | CRYPT_MACHINE_KEYSET = 0x00000020 constant CRYPT_SILENT (line 243) | CRYPT_SILENT = 0x00000040 constant CRYPT_DEFAULT_CONTAINER_OPTIONAL (line 244) | CRYPT_DEFAULT_CONTAINER_OPTIONAL = 0x00000080 constant USAGE_MATCH_TYPE_AND (line 246) | USAGE_MATCH_TYPE_AND = 0 constant USAGE_MATCH_TYPE_OR (line 247) | USAGE_MATCH_TYPE_OR = 1 constant X509_ASN_ENCODING (line 249) | X509_ASN_ENCODING = 0x00000001 constant PKCS_7_ASN_ENCODING (line 250) | PKCS_7_ASN_ENCODING = 0x00010000 constant CERT_STORE_PROV_MEMORY (line 252) | CERT_STORE_PROV_MEMORY = 2 constant CERT_STORE_ADD_ALWAYS (line 254) | CERT_STORE_ADD_ALWAYS = 4 constant CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG (line 256) | CERT_STORE_DEFER_CLOSE_UNTIL_LAST_FREE_FLAG = 0x00000004 constant CERT_TRUST_NO_ERROR (line 258) | CERT_TRUST_NO_ERROR = 0x00000000 constant CERT_TRUST_IS_NOT_TIME_VALID (line 259) | CERT_TRUST_IS_NOT_TIME_VALID = 0x00000001 constant CERT_TRUST_IS_REVOKED (line 260) | CERT_TRUST_IS_REVOKED = 0x00000004 constant CERT_TRUST_IS_NOT_SIGNATURE_VALID (line 261) | CERT_TRUST_IS_NOT_SIGNATURE_VALID = 0x00000008 constant CERT_TRUST_IS_NOT_VALID_FOR_USAGE (line 262) | CERT_TRUST_IS_NOT_VALID_FOR_USAGE = 0x00000010 constant CERT_TRUST_IS_UNTRUSTED_ROOT (line 263) | CERT_TRUST_IS_UNTRUSTED_ROOT = 0x00000020 constant CERT_TRUST_REVOCATION_STATUS_UNKNOWN (line 264) | CERT_TRUST_REVOCATION_STATUS_UNKNOWN = 0x00000040 constant CERT_TRUST_IS_CYCLIC (line 265) | CERT_TRUST_IS_CYCLIC = 0x00000080 constant CERT_TRUST_INVALID_EXTENSION (line 266) | CERT_TRUST_INVALID_EXTENSION = 0x00000100 constant CERT_TRUST_INVALID_POLICY_CONSTRAINTS (line 267) | CERT_TRUST_INVALID_POLICY_CONSTRAINTS = 0x00000200 constant CERT_TRUST_INVALID_BASIC_CONSTRAINTS (line 268) | CERT_TRUST_INVALID_BASIC_CONSTRAINTS = 0x00000400 constant CERT_TRUST_INVALID_NAME_CONSTRAINTS (line 269) | CERT_TRUST_INVALID_NAME_CONSTRAINTS = 0x00000800 constant CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT (line 270) | CERT_TRUST_HAS_NOT_SUPPORTED_NAME_CONSTRAINT = 0x00001000 constant CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT (line 271) | CERT_TRUST_HAS_NOT_DEFINED_NAME_CONSTRAINT = 0x00002000 constant CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT (line 272) | CERT_TRUST_HAS_NOT_PERMITTED_NAME_CONSTRAINT = 0x00004000 constant CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT (line 273) | CERT_TRUST_HAS_EXCLUDED_NAME_CONSTRAINT = 0x00008000 constant CERT_TRUST_IS_OFFLINE_REVOCATION (line 274) | CERT_TRUST_IS_OFFLINE_REVOCATION = 0x01000000 constant CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY (line 275) | CERT_TRUST_NO_ISSUANCE_CHAIN_POLICY = 0x02000000 constant CERT_TRUST_IS_EXPLICIT_DISTRUST (line 276) | CERT_TRUST_IS_EXPLICIT_DISTRUST = 0x04000000 constant CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT (line 277) | CERT_TRUST_HAS_NOT_SUPPORTED_CRITICAL_EXT = 0x08000000 constant CERT_CHAIN_POLICY_BASE (line 279) | CERT_CHAIN_POLICY_BASE = 1 constant CERT_CHAIN_POLICY_AUTHENTICODE (line 280) | CERT_CHAIN_POLICY_AUTHENTICODE = 2 constant CERT_CHAIN_POLICY_AUTHENTICODE_TS (line 281) | CERT_CHAIN_POLICY_AUTHENTICODE_TS = 3 constant CERT_CHAIN_POLICY_SSL (line 282) | CERT_CHAIN_POLICY_SSL = 4 constant CERT_CHAIN_POLICY_BASIC_CONSTRAINTS (line 283) | CERT_CHAIN_POLICY_BASIC_CONSTRAINTS = 5 constant CERT_CHAIN_POLICY_NT_AUTH (line 284) | CERT_CHAIN_POLICY_NT_AUTH = 6 constant CERT_CHAIN_POLICY_MICROSOFT_ROOT (line 285) | CERT_CHAIN_POLICY_MICROSOFT_ROOT = 7 constant CERT_CHAIN_POLICY_EV (line 286) | CERT_CHAIN_POLICY_EV = 8 constant CERT_E_EXPIRED (line 288) | CERT_E_EXPIRED = 0x800B0101 constant CERT_E_ROLE (line 289) | CERT_E_ROLE = 0x800B0103 constant CERT_E_PURPOSE (line 290) | CERT_E_PURPOSE = 0x800B0106 constant CERT_E_UNTRUSTEDROOT (line 291) | CERT_E_UNTRUSTEDROOT = 0x800B0109 constant CERT_E_CN_NO_MATCH (line 292) | CERT_E_CN_NO_MATCH = 0x800B010F constant AUTHTYPE_CLIENT (line 294) | AUTHTYPE_CLIENT = 1 constant AUTHTYPE_SERVER (line 295) | AUTHTYPE_SERVER = 2 type Timeval (line 305) | type Timeval struct method Nanoseconds (line 310) | func (tv *Timeval) Nanoseconds() int64 { function NsecToTimeval (line 314) | func NsecToTimeval(nsec int64) (tv Timeval) { type SecurityAttributes (line 320) | type SecurityAttributes struct type Overlapped (line 326) | type Overlapped struct type FileNotifyInformation (line 334) | type FileNotifyInformation struct type Filetime (line 341) | type Filetime struct method Nanoseconds (line 348) | func (ft *Filetime) Nanoseconds() int64 { function NsecToFiletime (line 358) | func NsecToFiletime(nsec int64) (ft Filetime) { type Win32finddata (line 369) | type Win32finddata struct type win32finddata1 (line 384) | type win32finddata1 struct function copyFindData (line 397) | func copyFindData(dst *Win32finddata, src *win32finddata1) { type ByHandleFileInformation (line 412) | type ByHandleFileInformation struct constant GetFileExInfoStandard (line 426) | GetFileExInfoStandard = 0 constant GetFileExMaxInfoLevel (line 427) | GetFileExMaxInfoLevel = 1 type Win32FileAttributeData (line 430) | type Win32FileAttributeData struct constant SW_HIDE (line 442) | SW_HIDE = 0 constant SW_NORMAL (line 443) | SW_NORMAL = 1 constant SW_SHOWNORMAL (line 444) | SW_SHOWNORMAL = 1 constant SW_SHOWMINIMIZED (line 445) | SW_SHOWMINIMIZED = 2 constant SW_SHOWMAXIMIZED (line 446) | SW_SHOWMAXIMIZED = 3 constant SW_MAXIMIZE (line 447) | SW_MAXIMIZE = 3 constant SW_SHOWNOACTIVATE (line 448) | SW_SHOWNOACTIVATE = 4 constant SW_SHOW (line 449) | SW_SHOW = 5 constant SW_MINIMIZE (line 450) | SW_MINIMIZE = 6 constant SW_SHOWMINNOACTIVE (line 451) | SW_SHOWMINNOACTIVE = 7 constant SW_SHOWNA (line 452) | SW_SHOWNA = 8 constant SW_RESTORE (line 453) | SW_RESTORE = 9 constant SW_SHOWDEFAULT (line 454) | SW_SHOWDEFAULT = 10 constant SW_FORCEMINIMIZE (line 455) | SW_FORCEMINIMIZE = 11 type StartupInfo (line 458) | type StartupInfo struct type ProcessInformation (line 479) | type ProcessInformation struct type ProcessEntry32 (line 486) | type ProcessEntry32 struct type Systemtime (line 499) | type Systemtime struct type Timezoneinformation (line 510) | type Timezoneinformation struct constant AF_UNSPEC (line 523) | AF_UNSPEC = 0 constant AF_UNIX (line 524) | AF_UNIX = 1 constant AF_INET (line 525) | AF_INET = 2 constant AF_INET6 (line 526) | AF_INET6 = 23 constant AF_NETBIOS (line 527) | AF_NETBIOS = 17 constant SOCK_STREAM (line 529) | SOCK_STREAM = 1 constant SOCK_DGRAM (line 530) | SOCK_DGRAM = 2 constant SOCK_RAW (line 531) | SOCK_RAW = 3 constant SOCK_SEQPACKET (line 532) | SOCK_SEQPACKET = 5 constant IPPROTO_IP (line 534) | IPPROTO_IP = 0 constant IPPROTO_IPV6 (line 535) | IPPROTO_IPV6 = 0x29 constant IPPROTO_TCP (line 536) | IPPROTO_TCP = 6 constant IPPROTO_UDP (line 537) | IPPROTO_UDP = 17 constant SOL_SOCKET (line 539) | SOL_SOCKET = 0xffff constant SO_REUSEADDR (line 540) | SO_REUSEADDR = 4 constant SO_KEEPALIVE (line 541) | SO_KEEPALIVE = 8 constant SO_DONTROUTE (line 542) | SO_DONTROUTE = 16 constant SO_BROADCAST (line 543) | SO_BROADCAST = 32 constant SO_LINGER (line 544) | SO_LINGER = 128 constant SO_RCVBUF (line 545) | SO_RCVBUF = 0x1002 constant SO_SNDBUF (line 546) | SO_SNDBUF = 0x1001 constant SO_UPDATE_ACCEPT_CONTEXT (line 547) | SO_UPDATE_ACCEPT_CONTEXT = 0x700b constant SO_UPDATE_CONNECT_CONTEXT (line 548) | SO_UPDATE_CONNECT_CONTEXT = 0x7010 constant IOC_OUT (line 550) | IOC_OUT = 0x40000000 constant IOC_IN (line 551) | IOC_IN = 0x80000000 constant IOC_VENDOR (line 552) | IOC_VENDOR = 0x18000000 constant IOC_INOUT (line 553) | IOC_INOUT = IOC_IN | IOC_OUT constant IOC_WS2 (line 554) | IOC_WS2 = 0x08000000 constant SIO_GET_EXTENSION_FUNCTION_POINTER (line 555) | SIO_GET_EXTENSION_FUNCTION_POINTER = IOC_INOUT | IOC_WS2 | 6 constant SIO_KEEPALIVE_VALS (line 556) | SIO_KEEPALIVE_VALS = IOC_IN | IOC_VENDOR | 4 constant SIO_UDP_CONNRESET (line 557) | SIO_UDP_CONNRESET = IOC_IN | IOC_VENDOR | 12 constant IP_TOS (line 561) | IP_TOS = 0x3 constant IP_TTL (line 562) | IP_TTL = 0x4 constant IP_MULTICAST_IF (line 563) | IP_MULTICAST_IF = 0x9 constant IP_MULTICAST_TTL (line 564) | IP_MULTICAST_TTL = 0xa constant IP_MULTICAST_LOOP (line 565) | IP_MULTICAST_LOOP = 0xb constant IP_ADD_MEMBERSHIP (line 566) | IP_ADD_MEMBERSHIP = 0xc constant IP_DROP_MEMBERSHIP (line 567) | IP_DROP_MEMBERSHIP = 0xd constant IPV6_V6ONLY (line 569) | IPV6_V6ONLY = 0x1b constant IPV6_UNICAST_HOPS (line 570) | IPV6_UNICAST_HOPS = 0x4 constant IPV6_MULTICAST_IF (line 571) | IPV6_MULTICAST_IF = 0x9 constant IPV6_MULTICAST_HOPS (line 572) | IPV6_MULTICAST_HOPS = 0xa constant IPV6_MULTICAST_LOOP (line 573) | IPV6_MULTICAST_LOOP = 0xb constant IPV6_JOIN_GROUP (line 574) | IPV6_JOIN_GROUP = 0xc constant IPV6_LEAVE_GROUP (line 575) | IPV6_LEAVE_GROUP = 0xd constant SOMAXCONN (line 577) | SOMAXCONN = 0x7fffffff constant TCP_NODELAY (line 579) | TCP_NODELAY = 1 constant SHUT_RD (line 581) | SHUT_RD = 0 constant SHUT_WR (line 582) | SHUT_WR = 1 constant SHUT_RDWR (line 583) | SHUT_RDWR = 2 constant WSADESCRIPTION_LEN (line 585) | WSADESCRIPTION_LEN = 256 constant WSASYS_STATUS_LEN (line 586) | WSASYS_STATUS_LEN = 128 type WSABuf (line 589) | type WSABuf struct constant S_IFMT (line 596) | S_IFMT = 0x1f000 constant S_IFIFO (line 597) | S_IFIFO = 0x1000 constant S_IFCHR (line 598) | S_IFCHR = 0x2000 constant S_IFDIR (line 599) | S_IFDIR = 0x4000 constant S_IFBLK (line 600) | S_IFBLK = 0x6000 constant S_IFREG (line 601) | S_IFREG = 0x8000 constant S_IFLNK (line 602) | S_IFLNK = 0xa000 constant S_IFSOCK (line 603) | S_IFSOCK = 0xc000 constant S_ISUID (line 604) | S_ISUID = 0x800 constant S_ISGID (line 605) | S_ISGID = 0x400 constant S_ISVTX (line 606) | S_ISVTX = 0x200 constant S_IRUSR (line 607) | S_IRUSR = 0x100 constant S_IWRITE (line 608) | S_IWRITE = 0x80 constant S_IWUSR (line 609) | S_IWUSR = 0x80 constant S_IXUSR (line 610) | S_IXUSR = 0x40 constant FILE_TYPE_CHAR (line 614) | FILE_TYPE_CHAR = 0x0002 constant FILE_TYPE_DISK (line 615) | FILE_TYPE_DISK = 0x0001 constant FILE_TYPE_PIPE (line 616) | FILE_TYPE_PIPE = 0x0003 constant FILE_TYPE_REMOTE (line 617) | FILE_TYPE_REMOTE = 0x8000 constant FILE_TYPE_UNKNOWN (line 618) | FILE_TYPE_UNKNOWN = 0x0000 type Hostent (line 621) | type Hostent struct type Protoent (line 629) | type Protoent struct constant DNS_TYPE_A (line 636) | DNS_TYPE_A = 0x0001 constant DNS_TYPE_NS (line 637) | DNS_TYPE_NS = 0x0002 constant DNS_TYPE_MD (line 638) | DNS_TYPE_MD = 0x0003 constant DNS_TYPE_MF (line 639) | DNS_TYPE_MF = 0x0004 constant DNS_TYPE_CNAME (line 640) | DNS_TYPE_CNAME = 0x0005 constant DNS_TYPE_SOA (line 641) | DNS_TYPE_SOA = 0x0006 constant DNS_TYPE_MB (line 642) | DNS_TYPE_MB = 0x0007 constant DNS_TYPE_MG (line 643) | DNS_TYPE_MG = 0x0008 constant DNS_TYPE_MR (line 644) | DNS_TYPE_MR = 0x0009 constant DNS_TYPE_NULL (line 645) | DNS_TYPE_NULL = 0x000a constant DNS_TYPE_WKS (line 646) | DNS_TYPE_WKS = 0x000b constant DNS_TYPE_PTR (line 647) | DNS_TYPE_PTR = 0x000c constant DNS_TYPE_HINFO (line 648) | DNS_TYPE_HINFO = 0x000d constant DNS_TYPE_MINFO (line 649) | DNS_TYPE_MINFO = 0x000e constant DNS_TYPE_MX (line 650) | DNS_TYPE_MX = 0x000f constant DNS_TYPE_TEXT (line 651) | DNS_TYPE_TEXT = 0x0010 constant DNS_TYPE_RP (line 652) | DNS_TYPE_RP = 0x0011 constant DNS_TYPE_AFSDB (line 653) | DNS_TYPE_AFSDB = 0x0012 constant DNS_TYPE_X25 (line 654) | DNS_TYPE_X25 = 0x0013 constant DNS_TYPE_ISDN (line 655) | DNS_TYPE_ISDN = 0x0014 constant DNS_TYPE_RT (line 656) | DNS_TYPE_RT = 0x0015 constant DNS_TYPE_NSAP (line 657) | DNS_TYPE_NSAP = 0x0016 constant DNS_TYPE_NSAPPTR (line 658) | DNS_TYPE_NSAPPTR = 0x0017 constant DNS_TYPE_SIG (line 659) | DNS_TYPE_SIG = 0x0018 constant DNS_TYPE_KEY (line 660) | DNS_TYPE_KEY = 0x0019 constant DNS_TYPE_PX (line 661) | DNS_TYPE_PX = 0x001a constant DNS_TYPE_GPOS (line 662) | DNS_TYPE_GPOS = 0x001b constant DNS_TYPE_AAAA (line 663) | DNS_TYPE_AAAA = 0x001c constant DNS_TYPE_LOC (line 664) | DNS_TYPE_LOC = 0x001d constant DNS_TYPE_NXT (line 665) | DNS_TYPE_NXT = 0x001e constant DNS_TYPE_EID (line 666) | DNS_TYPE_EID = 0x001f constant DNS_TYPE_NIMLOC (line 667) | DNS_TYPE_NIMLOC = 0x0020 constant DNS_TYPE_SRV (line 668) | DNS_TYPE_SRV = 0x0021 constant DNS_TYPE_ATMA (line 669) | DNS_TYPE_ATMA = 0x0022 constant DNS_TYPE_NAPTR (line 670) | DNS_TYPE_NAPTR = 0x0023 constant DNS_TYPE_KX (line 671) | DNS_TYPE_KX = 0x0024 constant DNS_TYPE_CERT (line 672) | DNS_TYPE_CERT = 0x0025 constant DNS_TYPE_A6 (line 673) | DNS_TYPE_A6 = 0x0026 constant DNS_TYPE_DNAME (line 674) | DNS_TYPE_DNAME = 0x0027 constant DNS_TYPE_SINK (line 675) | DNS_TYPE_SINK = 0x0028 constant DNS_TYPE_OPT (line 676) | DNS_TYPE_OPT = 0x0029 constant DNS_TYPE_DS (line 677) | DNS_TYPE_DS = 0x002B constant DNS_TYPE_RRSIG (line 678) | DNS_TYPE_RRSIG = 0x002E constant DNS_TYPE_NSEC (line 679) | DNS_TYPE_NSEC = 0x002F constant DNS_TYPE_DNSKEY (line 680) | DNS_TYPE_DNSKEY = 0x0030 constant DNS_TYPE_DHCID (line 681) | DNS_TYPE_DHCID = 0x0031 constant DNS_TYPE_UINFO (line 682) | DNS_TYPE_UINFO = 0x0064 constant DNS_TYPE_UID (line 683) | DNS_TYPE_UID = 0x0065 constant DNS_TYPE_GID (line 684) | DNS_TYPE_GID = 0x0066 constant DNS_TYPE_UNSPEC (line 685) | DNS_TYPE_UNSPEC = 0x0067 constant DNS_TYPE_ADDRS (line 686) | DNS_TYPE_ADDRS = 0x00f8 constant DNS_TYPE_TKEY (line 687) | DNS_TYPE_TKEY = 0x00f9 constant DNS_TYPE_TSIG (line 688) | DNS_TYPE_TSIG = 0x00fa constant DNS_TYPE_IXFR (line 689) | DNS_TYPE_IXFR = 0x00fb constant DNS_TYPE_AXFR (line 690) | DNS_TYPE_AXFR = 0x00fc constant DNS_TYPE_MAILB (line 691) | DNS_TYPE_MAILB = 0x00fd constant DNS_TYPE_MAILA (line 692) | DNS_TYPE_MAILA = 0x00fe constant DNS_TYPE_ALL (line 693) | DNS_TYPE_ALL = 0x00ff constant DNS_TYPE_ANY (line 694) | DNS_TYPE_ANY = 0x00ff constant DNS_TYPE_WINS (line 695) | DNS_TYPE_WINS = 0xff01 constant DNS_TYPE_WINSR (line 696) | DNS_TYPE_WINSR = 0xff02 constant DNS_TYPE_NBSTAT (line 697) | DNS_TYPE_NBSTAT = 0xff01 constant DNS_INFO_NO_RECORDS (line 701) | DNS_INFO_NO_RECORDS = 0x251D constant DnsSectionQuestion (line 706) | DnsSectionQuestion = 0x0000 constant DnsSectionAnswer (line 707) | DnsSectionAnswer = 0x0001 constant DnsSectionAuthority (line 708) | DnsSectionAuthority = 0x0002 constant DnsSectionAdditional (line 709) | DnsSectionAdditional = 0x0003 type DNSSRVData (line 712) | type DNSSRVData struct type DNSPTRData (line 720) | type DNSPTRData struct type DNSMXData (line 724) | type DNSMXData struct type DNSTXTData (line 730) | type DNSTXTData struct type DNSRecord (line 735) | type DNSRecord struct constant TF_DISCONNECT (line 747) | TF_DISCONNECT = 1 constant TF_REUSE_SOCKET (line 748) | TF_REUSE_SOCKET = 2 constant TF_WRITE_BEHIND (line 749) | TF_WRITE_BEHIND = 4 constant TF_USE_DEFAULT_WORKER (line 750) | TF_USE_DEFAULT_WORKER = 0 constant TF_USE_SYSTEM_THREAD (line 751) | TF_USE_SYSTEM_THREAD = 16 constant TF_USE_KERNEL_APC (line 752) | TF_USE_KERNEL_APC = 32 type TransmitFileBuffers (line 755) | type TransmitFileBuffers struct constant IFF_UP (line 763) | IFF_UP = 1 constant IFF_BROADCAST (line 764) | IFF_BROADCAST = 2 constant IFF_LOOPBACK (line 765) | IFF_LOOPBACK = 4 constant IFF_POINTTOPOINT (line 766) | IFF_POINTTOPOINT = 8 constant IFF_MULTICAST (line 767) | IFF_MULTICAST = 16 constant SIO_GET_INTERFACE_LIST (line 770) | SIO_GET_INTERFACE_LIST = 0x4004747F type SockaddrGen (line 775) | type SockaddrGen type InterfaceInfo (line 777) | type InterfaceInfo struct type IpAddressString (line 784) | type IpAddressString struct type IpMaskString (line 788) | type IpMaskString type IpAddrString (line 790) | type IpAddrString struct constant MAX_ADAPTER_NAME_LENGTH (line 797) | MAX_ADAPTER_NAME_LENGTH = 256 constant MAX_ADAPTER_DESCRIPTION_LENGTH (line 798) | MAX_ADAPTER_DESCRIPTION_LENGTH = 128 constant MAX_ADAPTER_ADDRESS_LENGTH (line 799) | MAX_ADAPTER_ADDRESS_LENGTH = 8 type IpAdapterInfo (line 801) | type IpAdapterInfo struct constant MAXLEN_PHYSADDR (line 822) | MAXLEN_PHYSADDR = 8 constant MAX_INTERFACE_NAME_LEN (line 823) | MAX_INTERFACE_NAME_LEN = 256 constant MAXLEN_IFDESCR (line 824) | MAXLEN_IFDESCR = 256 type MibIfRow (line 826) | type MibIfRow struct type CertContext (line 853) | type CertContext struct type CertChainContext (line 861) | type CertChainContext struct type CertSimpleChain (line 872) | type CertSimpleChain struct type CertChainElement (line 882) | type CertChainElement struct type CertRevocationInfo (line 892) | type CertRevocationInfo struct type CertTrustStatus (line 902) | type CertTrustStatus struct type CertUsageMatch (line 907) | type CertUsageMatch struct type CertEnhKeyUsage (line 912) | type CertEnhKeyUsage struct type CertChainPara (line 917) | type CertChainPara struct type CertChainPolicyPara (line 927) | type CertChainPolicyPara struct type SSLExtraCertChainPolicyPara (line 933) | type SSLExtraCertChainPolicyPara struct type CertChainPolicyStatus (line 940) | type CertChainPolicyStatus struct constant HKEY_CLASSES_ROOT (line 950) | HKEY_CLASSES_ROOT = 0x80000000 + iota constant HKEY_CURRENT_USER (line 951) | HKEY_CURRENT_USER constant HKEY_LOCAL_MACHINE (line 952) | HKEY_LOCAL_MACHINE constant HKEY_USERS (line 953) | HKEY_USERS constant HKEY_PERFORMANCE_DATA (line 954) | HKEY_PERFORMANCE_DATA constant HKEY_CURRENT_CONFIG (line 955) | HKEY_CURRENT_CONFIG constant HKEY_DYN_DATA (line 956) | HKEY_DYN_DATA constant KEY_QUERY_VALUE (line 958) | KEY_QUERY_VALUE = 1 constant KEY_SET_VALUE (line 959) | KEY_SET_VALUE = 2 constant KEY_CREATE_SUB_KEY (line 960) | KEY_CREATE_SUB_KEY = 4 constant KEY_ENUMERATE_SUB_KEYS (line 961) | KEY_ENUMERATE_SUB_KEYS = 8 constant KEY_NOTIFY (line 962) | KEY_NOTIFY = 16 constant KEY_CREATE_LINK (line 963) | KEY_CREATE_LINK = 32 constant KEY_WRITE (line 964) | KEY_WRITE = 0x20006 constant KEY_EXECUTE (line 965) | KEY_EXECUTE = 0x20019 constant KEY_READ (line 966) | KEY_READ = 0x20019 constant KEY_WOW64_64KEY (line 967) | KEY_WOW64_64KEY = 0x0100 constant KEY_WOW64_32KEY (line 968) | KEY_WOW64_32KEY = 0x0200 constant KEY_ALL_ACCESS (line 969) | KEY_ALL_ACCESS = 0xf003f constant REG_NONE (line 974) | REG_NONE = iota constant REG_SZ (line 975) | REG_SZ constant REG_EXPAND_SZ (line 976) | REG_EXPAND_SZ constant REG_BINARY (line 977) | REG_BINARY constant REG_DWORD_LITTLE_ENDIAN (line 978) | REG_DWORD_LITTLE_ENDIAN constant REG_DWORD_BIG_ENDIAN (line 979) | REG_DWORD_BIG_ENDIAN constant REG_LINK (line 980) | REG_LINK constant REG_MULTI_SZ (line 981) | REG_MULTI_SZ constant REG_RESOURCE_LIST (line 982) | REG_RESOURCE_LIST constant REG_FULL_RESOURCE_DESCRIPTOR (line 983) | REG_FULL_RESOURCE_DESCRIPTOR constant REG_RESOURCE_REQUIREMENTS_LIST (line 984) | REG_RESOURCE_REQUIREMENTS_LIST constant REG_QWORD_LITTLE_ENDIAN (line 985) | REG_QWORD_LITTLE_ENDIAN constant REG_DWORD (line 986) | REG_DWORD = REG_DWORD_LITTLE_ENDIAN constant REG_QWORD (line 987) | REG_QWORD = REG_QWORD_LITTLE_ENDIAN type AddrinfoW (line 990) | type AddrinfoW struct constant AI_PASSIVE (line 1002) | AI_PASSIVE = 1 constant AI_CANONNAME (line 1003) | AI_CANONNAME = 2 constant AI_NUMERICHOST (line 1004) | AI_NUMERICHOST = 4 type GUID (line 1007) | type GUID struct constant FILE_SKIP_COMPLETION_PORT_ON_SUCCESS (line 1022) | FILE_SKIP_COMPLETION_PORT_ON_SUCCESS = 1 constant FILE_SKIP_SET_EVENT_ON_HANDLE (line 1023) | FILE_SKIP_SET_EVENT_ON_HANDLE = 2 constant WSAPROTOCOL_LEN (line 1027) | WSAPROTOCOL_LEN = 255 constant MAX_PROTOCOL_CHAIN (line 1028) | MAX_PROTOCOL_CHAIN = 7 constant BASE_PROTOCOL (line 1029) | BASE_PROTOCOL = 1 constant LAYERED_PROTOCOL (line 1030) | LAYERED_PROTOCOL = 0 constant XP1_CONNECTIONLESS (line 1032) | XP1_CONNECTIONLESS = 0x00000001 constant XP1_GUARANTEED_DELIVERY (line 1033) | XP1_GUARANTEED_DELIVERY = 0x00000002 constant XP1_GUARANTEED_ORDER (line 1034) | XP1_GUARANTEED_ORDER = 0x00000004 constant XP1_MESSAGE_ORIENTED (line 1035) | XP1_MESSAGE_ORIENTED = 0x00000008 constant XP1_PSEUDO_STREAM (line 1036) | XP1_PSEUDO_STREAM = 0x00000010 constant XP1_GRACEFUL_CLOSE (line 1037) | XP1_GRACEFUL_CLOSE = 0x00000020 constant XP1_EXPEDITED_DATA (line 1038) | XP1_EXPEDITED_DATA = 0x00000040 constant XP1_CONNECT_DATA (line 1039) | XP1_CONNECT_DATA = 0x00000080 constant XP1_DISCONNECT_DATA (line 1040) | XP1_DISCONNECT_DATA = 0x00000100 constant XP1_SUPPORT_BROADCAST (line 1041) | XP1_SUPPORT_BROADCAST = 0x00000200 constant XP1_SUPPORT_MULTIPOINT (line 1042) | XP1_SUPPORT_MULTIPOINT = 0x00000400 constant XP1_MULTIPOINT_CONTROL_PLANE (line 1043) | XP1_MULTIPOINT_CONTROL_PLANE = 0x00000800 constant XP1_MULTIPOINT_DATA_PLANE (line 1044) | XP1_MULTIPOINT_DATA_PLANE = 0x00001000 constant XP1_QOS_SUPPORTED (line 1045) | XP1_QOS_SUPPORTED = 0x00002000 constant XP1_UNI_SEND (line 1046) | XP1_UNI_SEND = 0x00008000 constant XP1_UNI_RECV (line 1047) | XP1_UNI_RECV = 0x00010000 constant XP1_IFS_HANDLES (line 1048) | XP1_IFS_HANDLES = 0x00020000 constant XP1_PARTIAL_MESSAGE (line 1049) | XP1_PARTIAL_MESSAGE = 0x00040000 constant XP1_SAN_SUPPORT_SDP (line 1050) | XP1_SAN_SUPPORT_SDP = 0x00080000 constant PFL_MULTIPLE_PROTO_ENTRIES (line 1052) | PFL_MULTIPLE_PROTO_ENTRIES = 0x00000001 constant PFL_RECOMMENDED_PROTO_ENTRY (line 1053) | PFL_RECOMMENDED_PROTO_ENTRY = 0x00000002 constant PFL_HIDDEN (line 1054) | PFL_HIDDEN = 0x00000004 constant PFL_MATCHES_PROTOCOL_ZERO (line 1055) | PFL_MATCHES_PROTOCOL_ZERO = 0x00000008 constant PFL_NETWORKDIRECT_PROVIDER (line 1056) | PFL_NETWORKDIRECT_PROVIDER = 0x00000010 type WSAProtocolInfo (line 1059) | type WSAProtocolInfo struct type WSAProtocolChain (line 1082) | type WSAProtocolChain struct type TCPKeepalive (line 1087) | type TCPKeepalive struct type symbolicLinkReparseBuffer (line 1093) | type symbolicLinkReparseBuffer struct type mountPointReparseBuffer (line 1102) | type mountPointReparseBuffer struct type reparseDataBuffer (line 1110) | type reparseDataBuffer struct constant FSCTL_GET_REPARSE_POINT (line 1120) | FSCTL_GET_REPARSE_POINT = 0x900A8 constant MAXIMUM_REPARSE_DATA_BUFFER_SIZE (line 1121) | MAXIMUM_REPARSE_DATA_BUFFER_SIZE = 16 * 1024 constant IO_REPARSE_TAG_MOUNT_POINT (line 1122) | IO_REPARSE_TAG_MOUNT_POINT = 0xA0000003 constant IO_REPARSE_TAG_SYMLINK (line 1123) | IO_REPARSE_TAG_SYMLINK = 0xA000000C constant SYMBOLIC_LINK_FLAG_DIRECTORY (line 1124) | SYMBOLIC_LINK_FLAG_DIRECTORY = 0x1 constant ComputerNameNetBIOS (line 1128) | ComputerNameNetBIOS = 0 constant ComputerNameDnsHostname (line 1129) | ComputerNameDnsHostname = 1 constant ComputerNameDnsDomain (line 1130) | ComputerNameDnsDomain = 2 constant ComputerNameDnsFullyQualified (line 1131) | ComputerNameDnsFullyQualified = 3 constant ComputerNamePhysicalNetBIOS (line 1132) | ComputerNamePhysicalNetBIOS = 4 constant ComputerNamePhysicalDnsHostname (line 1133) | ComputerNamePhysicalDnsHostname = 5 constant ComputerNamePhysicalDnsDomain (line 1134) | ComputerNamePhysicalDnsDomain = 6 constant ComputerNamePhysicalDnsFullyQualified (line 1135) | ComputerNamePhysicalDnsFullyQualified = 7 constant ComputerNameMax (line 1136) | ComputerNameMax = 8 constant MOVEFILE_REPLACE_EXISTING (line 1140) | MOVEFILE_REPLACE_EXISTING = 0x1 constant MOVEFILE_COPY_ALLOWED (line 1141) | MOVEFILE_COPY_ALLOWED = 0x2 constant MOVEFILE_DELAY_UNTIL_REBOOT (line 1142) | MOVEFILE_DELAY_UNTIL_REBOOT = 0x4 constant MOVEFILE_WRITE_THROUGH (line 1143) | MOVEFILE_WRITE_THROUGH = 0x8 constant MOVEFILE_CREATE_HARDLINK (line 1144) | MOVEFILE_CREATE_HARDLINK = 0x10 constant MOVEFILE_FAIL_IF_NOT_TRACKABLE (line 1145) | MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20 constant GAA_FLAG_INCLUDE_PREFIX (line 1148) | GAA_FLAG_INCLUDE_PREFIX = 0x00000010 constant IF_TYPE_OTHER (line 1151) | IF_TYPE_OTHER = 1 constant IF_TYPE_ETHERNET_CSMACD (line 1152) | IF_TYPE_ETHERNET_CSMACD = 6 constant IF_TYPE_ISO88025_TOKENRING (line 1153) | IF_TYPE_ISO88025_TOKENRING = 9 constant IF_TYPE_PPP (line 1154) | IF_TYPE_PPP = 23 constant IF_TYPE_SOFTWARE_LOOPBACK (line 1155) | IF_TYPE_SOFTWARE_LOOPBACK = 24 constant IF_TYPE_ATM (line 1156) | IF_TYPE_ATM = 37 constant IF_TYPE_IEEE80211 (line 1157) | IF_TYPE_IEEE80211 = 71 constant IF_TYPE_TUNNEL (line 1158) | IF_TYPE_TUNNEL = 131 constant IF_TYPE_IEEE1394 (line 1159) | IF_TYPE_IEEE1394 = 144 type SocketAddress (line 1162) | type SocketAddress struct type IpAdapterUnicastAddress (line 1167) | type IpAdapterUnicastAddress struct type IpAdapterAnycastAddress (line 1181) | type IpAdapterAnycastAddress struct type IpAdapterMulticastAddress (line 1188) | type IpAdapterMulticastAddress struct type IpAdapterDnsServerAdapter (line 1195) | type IpAdapterDnsServerAdapter struct type IpAdapterPrefix (line 1202) | type IpAdapterPrefix struct type IpAdapterAddresses (line 1210) | type IpAdapterAddresses struct constant IfOperStatusUp (line 1235) | IfOperStatusUp = 1 constant IfOperStatusDown (line 1236) | IfOperStatusDown = 2 constant IfOperStatusTesting (line 1237) | IfOperStatusTesting = 3 constant IfOperStatusUnknown (line 1238) | IfOperStatusUnknown = 4 constant IfOperStatusDormant (line 1239) | IfOperStatusDormant = 5 constant IfOperStatusNotPresent (line 1240) | IfOperStatusNotPresent = 6 constant IfOperStatusLowerLayerDown (line 1241) | IfOperStatusLowerLayerDown = 7 FILE: vendor/golang.org/x/sys/windows/ztypes_windows_386.go type WSAData (line 7) | type WSAData struct type Servent (line 17) | type Servent struct FILE: vendor/golang.org/x/sys/windows/ztypes_windows_amd64.go type WSAData (line 7) | type WSAData struct type Servent (line 17) | type Servent struct