_ardera_common_libc_bindings library

Classes

can_berr_counter
can_bittiming
can_bittiming_const
can_clock
can_ctrlmode
can_device_stats
can_filter
struct can_filter - CAN ID based filter in can_register(). @can_id: relevant bits of CAN ID which are not masked out. @can_mask: CAN mask (see description)
can_frame
struct can_frame - Classical CAN frame structure (aka CAN 2.0B) @can_id: CAN ID of the frame and CAN_*_FLAG flags, see canid_t definition @len: CAN frame payload length in byte (0 .. 8) @can_dlc: deprecated name for CAN frame payload length in byte (0 .. 8) @__pad: padding @__res0: reserved / padding @len8_dlc: optional DLC value (9 .. 15) at 8 byte payload length len8_dlc contains values from 9 .. 15 when the payload length is 8 bytes but the DLC value (see ISO 11898-1) is greater then 8. CAN_CTRLMODE_CC_LEN8_DLC flag has to be enabled in CAN driver. @data: CAN frame payload (up to 8 byte)
can_state
canfd_frame
struct canfd_frame - CAN flexible data rate frame structure @can_id: CAN ID of the frame and CAN_*_FLAG flags, see canid_t definition @len: frame payload length in byte (0 .. CANFD_MAX_DLEN) @flags: additional flags for CAN FD @__res0: reserved / padding @__res1: reserved / padding @data: CAN FD frame payload (up to CANFD_MAX_DLEN byte)
epoll_data
Hack to get make epoll_event work with dart FFI.
epoll_event
epoll_event_align
epoll_event_align_union
EPOLL_EVENTS
gpio_v2_line_attribute
struct gpio_v2_line_attribute - a configurable attribute of a line @id: attribute identifier with value from &enum gpio_v2_line_attr_id @padding: reserved for future use and must be zero filled @flags: if id is %GPIO_V2_LINE_ATTR_ID_FLAGS, the flags for the GPIO line, with values from &enum gpio_v2_line_flag, such as %GPIO_V2_LINE_FLAG_ACTIVE_LOW, %GPIO_V2_LINE_FLAG_OUTPUT etc, added together. This overrides the default flags contained in the &struct gpio_v2_line_config for the associated line. @values: if id is %GPIO_V2_LINE_ATTR_ID_OUTPUT_VALUES, a bitmap containing the values to which the lines will be set, with each bit number corresponding to the index into &struct gpio_v2_line_request.offsets. @debounce_period_us: if id is %GPIO_V2_LINE_ATTR_ID_DEBOUNCE, the desired debounce period, in microseconds
gpio_v2_line_config
struct gpio_v2_line_config - Configuration for GPIO lines @flags: flags for the GPIO lines, with values from &enum gpio_v2_line_flag, such as %GPIO_V2_LINE_FLAG_ACTIVE_LOW, %GPIO_V2_LINE_FLAG_OUTPUT etc, added together. This is the default for all requested lines but may be overridden for particular lines using @attrs. @num_attrs: the number of attributes in @attrs @padding: reserved for future use and must be zero filled @attrs: the configuration attributes associated with the requested lines. Any attribute should only be associated with a particular line once. If an attribute is associated with a line multiple times then the first occurrence (i.e. lowest index) has precedence.
gpio_v2_line_config_attribute
struct gpio_v2_line_config_attribute - a configuration attribute associated with one or more of the requested lines. @attr: the configurable attribute @mask: a bitmap identifying the lines to which the attribute applies, with each bit number corresponding to the index into &struct gpio_v2_line_request.offsets.
gpio_v2_line_event
struct gpio_v2_line_event - The actual event being pushed to userspace @timestamp_ns: best estimate of time of event occurrence, in nanoseconds. @id: event identifier with value from &enum gpio_v2_line_event_id @offset: the offset of the line that triggered the event @seqno: the sequence number for this event in the sequence of events for all the lines in this line request @line_seqno: the sequence number for this event in the sequence of events on this particular line @padding: reserved for future use
gpio_v2_line_info
struct gpio_v2_line_info - Information about a certain GPIO line @name: the name of this GPIO line, such as the output pin of the line on the chip, a rail or a pin header name on a board, as specified by the GPIO chip, may be empty (i.e. name0 == '\0') @consumer: a functional name for the consumer of this GPIO line as set by whatever is using it, will be empty if there is no current user but may also be empty if the consumer doesn't set this up @offset: the local offset on this GPIO chip, fill this in when requesting the line information from the kernel @num_attrs: the number of attributes in @attrs @flags: flags for this GPIO line, with values from &enum gpio_v2_line_flag, such as %GPIO_V2_LINE_FLAG_ACTIVE_LOW, %GPIO_V2_LINE_FLAG_OUTPUT etc, added together. @attrs: the configuration attributes associated with the line @padding: reserved for future use
gpio_v2_line_values
struct gpio_v2_line_values - Values of GPIO lines @bits: a bitmap containing the value of the lines, set to 1 for active and 0 for inactive. @mask: a bitmap identifying the lines to get or set, with each bit number corresponding to the index into &struct gpio_v2_line_request.offsets.
gpiochip_info
struct gpiochip_info - Information about a certain GPIO chip @name: the Linux kernel name of this GPIO chip @label: a functional name for this GPIO chip, such as a product number, may be empty (i.e. label0 == '\0') @lines: number of GPIO lines on this chip
gpioevent_data
struct gpioevent_data - The actual event being pushed to userspace @timestamp: best estimate of time of event occurrence, in nanoseconds @id: event identifier
gpioevent_request
struct gpioevent_request - Information about a GPIO event request @lineoffset: the desired line to subscribe to events from, specified by offset index for the associated GPIO device @handleflags: desired handle flags for the desired GPIO line, such as %GPIOHANDLE_REQUEST_ACTIVE_LOW or %GPIOHANDLE_REQUEST_OPEN_DRAIN @eventflags: desired flags for the desired GPIO event line, such as %GPIOEVENT_REQUEST_RISING_EDGE or %GPIOEVENT_REQUEST_FALLING_EDGE @consumer_label: a desired consumer label for the selected GPIO line(s) such as "my-listener" @fd: if successful this field will contain a valid anonymous file handle after a %GPIO_GET_LINEEVENT_IOCTL operation, zero or negative value means error
gpiohandle_config
struct gpiohandle_config - Configuration for a GPIO handle request @flags: updated flags for the requested GPIO lines, such as %GPIOHANDLE_REQUEST_OUTPUT, %GPIOHANDLE_REQUEST_ACTIVE_LOW etc, added together @default_values: if the %GPIOHANDLE_REQUEST_OUTPUT is set in flags, this specifies the default output value, should be 0 (low) or 1 (high), anything else than 0 or 1 will be interpreted as 1 (high) @padding: reserved for future use and should be zero filled
gpiohandle_data
struct gpiohandle_data - Information of values on a GPIO handle @values: when getting the state of lines this contains the current state of a line, when setting the state of lines these should contain the desired target state
gpiohandle_request
struct gpiohandle_request - Information about a GPIO handle request @lineoffsets: an array of desired lines, specified by offset index for the associated GPIO device @flags: desired flags for the desired GPIO lines, such as %GPIOHANDLE_REQUEST_OUTPUT, %GPIOHANDLE_REQUEST_ACTIVE_LOW etc, added together. Note that even if multiple lines are requested, the same flags must be applicable to all of them, if you want lines with individual flags set, request them one by one. It is possible to select a batch of input or output lines, but they must all have the same characteristics, i.e. all inputs or all outputs, all active low etc @default_values: if the %GPIOHANDLE_REQUEST_OUTPUT is set for a requested line, this specifies the default output value, should be 0 (low) or 1 (high), anything else than 0 or 1 will be interpreted as 1 (high) @consumer_label: a desired consumer label for the selected GPIO line(s) such as "my-bitbanged-relay" @lines: number of lines requested in this request, i.e. the number of valid fields in the above arrays, set to 1 to request a single line @fd: if successful this field will contain a valid anonymous file handle after a %GPIO_GET_LINEHANDLE_IOCTL operation, zero or negative value means error
gpioline_info
struct gpioline_info - Information about a certain GPIO line @line_offset: the local offset on this GPIO device, fill this in when requesting the line information from the kernel @flags: various flags for this line @name: the name of this GPIO line, such as the output pin of the line on the chip, a rail or a pin header name on a board, as specified by the gpio chip, may be empty (i.e. name0 == '\0') @consumer: a functional name for the consumer of this GPIO line as set by whatever is using it, will be empty if there is no current user but may also be empty if the consumer doesn't set this up
gpioline_info_changed
struct gpioline_info_changed - Information about a change in status of a GPIO line @info: updated line information @timestamp: estimate of time of status change occurrence, in nanoseconds @event_type: one of %GPIOLINE_CHANGED_REQUESTED, %GPIOLINE_CHANGED_RELEASED and %GPIOLINE_CHANGED_CONFIG @padding: reserved for future use
if_nameindex
ifinfomsg
Link layer specific messages.
ifmap
ifreq
iovec
LibC
LibCAmd64
LibCArm
LibCArm64
LibCI386
msghdr
nlmsgerr
nlmsghdr
struct nlmsghdr - fixed format metadata header of Netlink messages @nlmsg_len: Length of message including header @nlmsg_type: Message content type @nlmsg_flags: Additional flags @nlmsg_seq: Sequence number @nlmsg_pid: Sending process port ID
rtattr
sockaddr
sockaddr_can
struct sockaddr_can - the sockaddr structure for CAN sockets @can_family: address family number AF_CAN. @can_ifindex: CAN network interface index. @can_addr: protocol specific address information
sockaddr_nl
spi_ioc_transfer
struct spi_ioc_transfer - describes a single SPI transfer @tx_buf: Holds pointer to userspace buffer with transmit data, or null. If no data is provided, zeroes are shifted out. @rx_buf: Holds pointer to userspace buffer for receive data, or null. @len: Length of tx and rx buffers, in bytes. @speed_hz: Temporary override of the device's bitrate. @bits_per_word: Temporary override of the device's wordsize. @delay_usecs: If nonzero, how long to delay after the last bit transfer before optionally deselecting the device before the next transfer. @cs_change: True to deselect device before starting the next transfer. @word_delay_usecs: If nonzero, how long to wait between words within one transfer. This property needs explicit support in the SPI controller, otherwise it is silently ignored.
termios

Constants

AF_CAN → const int
ARPHRD_6LOWPAN → const int
ARPHRD_ADAPT → const int
ARPHRD_APPLETLK → const int
ARPHRD_ARCNET → const int
ARPHRD_ASH → const int
ARPHRD_ATM → const int
ARPHRD_AX25 → const int
ARPHRD_BIF → const int
ARPHRD_CAIF → const int
ARPHRD_CAN → const int
ARPHRD_CHAOS → const int
ARPHRD_CISCO → const int
ARPHRD_CSLIP → const int
ARPHRD_CSLIP6 → const int
ARPHRD_DDCMP → const int
ARPHRD_DLCI → const int
ARPHRD_ECONET → const int
ARPHRD_EETHER → const int
ARPHRD_ETHER → const int
ARPHRD_EUI64 → const int
ARPHRD_FCAL → const int
ARPHRD_FCFABRIC → const int
ARPHRD_FCPL → const int
ARPHRD_FCPP → const int
ARPHRD_FDDI → const int
ARPHRD_FRAD → const int
ARPHRD_HDLC → const int
ARPHRD_HIPPI → const int
ARPHRD_HWX25 → const int
ARPHRD_IEEE1394 → const int
ARPHRD_IEEE802 → const int
ARPHRD_IEEE80211 → const int
ARPHRD_IEEE80211_PRISM → const int
ARPHRD_IEEE80211_RADIOTAP → const int
ARPHRD_IEEE802154 → const int
ARPHRD_IEEE802154_MONITOR → const int
ARPHRD_IEEE802_TR → const int
ARPHRD_INFINIBAND → const int
ARPHRD_IP6GRE → const int
ARPHRD_IPDDP → const int
ARPHRD_IPGRE → const int
ARPHRD_IRDA → const int
ARPHRD_LAPB → const int
ARPHRD_LOCALTLK → const int
ARPHRD_LOOPBACK → const int
ARPHRD_MCTP → const int
ARPHRD_METRICOM → const int
ARPHRD_NETROM → const int
ARPHRD_NONE → const int
ARPHRD_PHONET → const int
ARPHRD_PHONET_PIPE → const int
ARPHRD_PIMREG → const int
ARPHRD_PPP → const int
ARPHRD_PRONET → const int
ARPHRD_RAWHDLC → const int
ARPHRD_RAWIP → const int
ARPHRD_ROSE → const int
ARPHRD_RSRVD → const int
ARPHRD_SIT → const int
ARPHRD_SKIP → const int
ARPHRD_SLIP → const int
ARPHRD_SLIP6 → const int
ARPHRD_TUNNEL → const int
ARPHRD_TUNNEL6 → const int
ARPHRD_VOID → const int
ARPHRD_VSOCKMON → const int
ARPHRD_X25 → const int
B0 → const int
B1000000 → const int
B110 → const int
B115200 → const int
B1152000 → const int
B1200 → const int
B134 → const int
B150 → const int
B1500000 → const int
B1800 → const int
B19200 → const int
B200 → const int
B2000000 → const int
B230400 → const int
B2400 → const int
B2500000 → const int
B300 → const int
B3000000 → const int
B3500000 → const int
B38400 → const int
B4000000 → const int
B460800 → const int
B4800 → const int
B50 → const int
B500000 → const int
B57600 → const int
B576000 → const int
B600 → const int
B75 → const int
B921600 → const int
B9600 → const int
BRKINT → const int
BS0 → const int
BS1 → const int
BSDLY → const int
CAN_BCM → const int
CAN_BUS_OFF_THRESHOLD → const int
CAN_CTRLMODE_3_SAMPLES → const int
CAN_CTRLMODE_BERR_REPORTING → const int
CAN_CTRLMODE_CC_LEN8_DLC → const int
CAN_CTRLMODE_FD → const int
CAN_CTRLMODE_FD_NON_ISO → const int
CAN_CTRLMODE_LISTENONLY → const int
CAN_CTRLMODE_LOOPBACK → const int
CAN_CTRLMODE_ONE_SHOT → const int
CAN_CTRLMODE_PRESUME_ACK → const int
CAN_CTRLMODE_TDC_AUTO → const int
CAN_CTRLMODE_TDC_MANUAL → const int
CAN_EFF_FLAG → const int
CAN_EFF_ID_BITS → const int
CAN_EFF_MASK → const int
CAN_ERR_ACK → const int
CAN_ERR_BUSERROR → const int
CAN_ERR_BUSOFF → const int
CAN_ERR_CNT → const int
CAN_ERR_CRTL → const int
CAN_ERR_CRTL_ACTIVE → const int
CAN_ERR_CRTL_RX_OVERFLOW → const int
CAN_ERR_CRTL_RX_PASSIVE → const int
CAN_ERR_CRTL_RX_WARNING → const int
CAN_ERR_CRTL_TX_OVERFLOW → const int
CAN_ERR_CRTL_TX_PASSIVE → const int
CAN_ERR_CRTL_TX_WARNING → const int
CAN_ERR_CRTL_UNSPEC → const int
CAN_ERR_DLC → const int
CAN_ERR_FLAG → const int
CAN_ERR_LOSTARB → const int
CAN_ERR_LOSTARB_UNSPEC → const int
CAN_ERR_MASK → const int
CAN_ERR_PROT → const int
CAN_ERR_PROT_ACTIVE → const int
CAN_ERR_PROT_BIT → const int
CAN_ERR_PROT_BIT0 → const int
CAN_ERR_PROT_BIT1 → const int
CAN_ERR_PROT_FORM → const int
CAN_ERR_PROT_LOC_ACK → const int
CAN_ERR_PROT_LOC_ACK_DEL → const int
CAN_ERR_PROT_LOC_CRC_DEL → const int
CAN_ERR_PROT_LOC_CRC_SEQ → const int
CAN_ERR_PROT_LOC_DATA → const int
CAN_ERR_PROT_LOC_DLC → const int
CAN_ERR_PROT_LOC_EOF → const int
CAN_ERR_PROT_LOC_ID04_00 → const int
CAN_ERR_PROT_LOC_ID12_05 → const int
CAN_ERR_PROT_LOC_ID17_13 → const int
CAN_ERR_PROT_LOC_ID20_18 → const int
CAN_ERR_PROT_LOC_ID28_21 → const int
CAN_ERR_PROT_LOC_IDE → const int
CAN_ERR_PROT_LOC_INTERM → const int
CAN_ERR_PROT_LOC_RES0 → const int
CAN_ERR_PROT_LOC_RES1 → const int
CAN_ERR_PROT_LOC_RTR → const int
CAN_ERR_PROT_LOC_SOF → const int
CAN_ERR_PROT_LOC_SRTR → const int
CAN_ERR_PROT_LOC_UNSPEC → const int
CAN_ERR_PROT_OVERLOAD → const int
CAN_ERR_PROT_STUFF → const int
CAN_ERR_PROT_TX → const int
CAN_ERR_PROT_UNSPEC → const int
CAN_ERR_RESTARTED → const int
CAN_ERR_TRX → const int
CAN_ERR_TRX_CANH_NO_WIRE → const int
CAN_ERR_TRX_CANH_SHORT_TO_BAT → const int
CAN_ERR_TRX_CANH_SHORT_TO_GND → const int
CAN_ERR_TRX_CANH_SHORT_TO_VCC → const int
CAN_ERR_TRX_CANL_NO_WIRE → const int
CAN_ERR_TRX_CANL_SHORT_TO_BAT → const int
CAN_ERR_TRX_CANL_SHORT_TO_CANH → const int
CAN_ERR_TRX_CANL_SHORT_TO_GND → const int
CAN_ERR_TRX_CANL_SHORT_TO_VCC → const int
CAN_ERR_TRX_UNSPEC → const int
CAN_ERR_TX_TIMEOUT → const int
CAN_ERROR_PASSIVE_THRESHOLD → const int
CAN_ERROR_WARNING_THRESHOLD → const int
CAN_INV_FILTER → const int
CAN_ISOTP → const int
CAN_J1939 → const int
CAN_MAX_DLC → const int
CAN_MAX_DLEN → const int
CAN_MAX_RAW_DLC → const int
CAN_MCNET → const int
CAN_MTU → const int
CAN_NPROTO → const int
CAN_RAW → const int
CAN_RAW_ERR_FILTER → const int
CAN_RAW_FD_FRAMES → const int
CAN_RAW_FILTER → const int
CAN_RAW_FILTER_MAX → const int
CAN_RAW_JOIN_FILTERS → const int
CAN_RAW_LOOPBACK → const int
CAN_RAW_RECV_OWN_MSGS → const int
CAN_RAW_XL_FRAMES → const int
CAN_RTR_FLAG → const int
CAN_SFF_ID_BITS → const int
CAN_SFF_MASK → const int
CAN_TERMINATION_DISABLED → const int
CAN_TP16 → const int
CAN_TP20 → const int
CANFD_BRS → const int
CANFD_ESI → const int
CANFD_FDF → const int
CANFD_MAX_DLC → const int
CANFD_MAX_DLEN → const int
CANFD_MTU → const int
CLOCAL → const int
CR0 → const int
CR1 → const int
CR2 → const int
CR3 → const int
CRDLY → const int
CREAD → const int
CS5 → const int
CS6 → const int
CS7 → const int
CS8 → const int
CSIZE → const int
CSTOPB → const int
E2BIG → const int
EACCES → const int
EADDRINUSE → const int
EADDRNOTAVAIL → const int
EADV → const int
EAFNOSUPPORT → const int
EAGAIN → const int
EALREADY → const int
EBADE → const int
EBADF → const int
EBADFD → const int
EBADMSG → const int
EBADR → const int
EBADRQC → const int
EBADSLT → const int
EBFONT → const int
EBUSY → const int
ECANCELED → const int
ECHILD → const int
ECHO → const int
ECHOCTL → const int
ECHOE → const int
ECHOK → const int
ECHOKE → const int
ECHONL → const int
ECHOPRT → const int
ECHRNG → const int
ECOMM → const int
ECONNABORTED → const int
ECONNREFUSED → const int
ECONNRESET → const int
EDEADLK → const int
EDEADLOCK → const int
EDESTADDRREQ → const int
EDOM → const int
EDOTDOT → const int
EDQUOT → const int
EEXIST → const int
EFAULT → const int
EFBIG → const int
EFD_CLOEXEC → const int
EFD_NONBLOCK → const int
EFD_SEMAPHORE → const int
EHOSTDOWN → const int
EHOSTUNREACH → const int
EHWPOISON → const int
EIDRM → const int
EILSEQ → const int
EINPROGRESS → const int
EINTR → const int
EINVAL → const int
EIO → const int
EISCONN → const int
EISDIR → const int
EISNAM → const int
EKEYEXPIRED → const int
EKEYREJECTED → const int
EKEYREVOKED → const int
EL2HLT → const int
EL2NSYNC → const int
EL3HLT → const int
EL3RST → const int
ELIBACC → const int
ELIBBAD → const int
ELIBEXEC → const int
ELIBMAX → const int
ELIBSCN → const int
ELNRNG → const int
ELOOP → const int
EMEDIUMTYPE → const int
EMFILE → const int
EMSGSIZE → const int
EMULTIHOP → const int
ENAMETOOLONG → const int
ENAVAIL → const int
ENETDOWN → const int
ENETRESET → const int
ENETUNREACH → const int
ENFILE → const int
ENOANO → const int
ENOBUFS → const int
ENOCSI → const int
ENODATA → const int
ENODEV → const int
ENOENT → const int
ENOEXEC → const int
ENOKEY → const int
ENOLCK → const int
ENOMEDIUM → const int
ENOMEM → const int
ENOMSG → const int
ENONET → const int
ENOPKG → const int
ENOPROTOOPT → const int
ENOSPC → const int
ENOSR → const int
ENOSTR → const int
ENOSYS → const int
ENOTBLK → const int
ENOTCONN → const int
ENOTDIR → const int
ENOTEMPTY → const int
ENOTNAM → const int
ENOTRECOVERABLE → const int
ENOTSOCK → const int
ENOTSUP → const int
ENOTTY → const int
ENOTUNIQ → const int
ENXIO → const int
EOPNOTSUPP → const int
EOVERFLOW → const int
EOWNERDEAD → const int
EPERM → const int
EPFNOSUPPORT → const int
EPIPE → const int
EPOLL_CLOEXEC → const int
EPOLL_CLOEXEC1 → const int
EPOLL_CTL_ADD → const int
EPOLL_CTL_DEL → const int
EPOLL_CTL_MOD → const int
EPOLLERR → const int
EPOLLET → const int
EPOLLEXCLUSIVE → const int
EPOLLHUP → const int
EPOLLIN → const int
EPOLLMSG → const int
EPOLLONESHOT → const int
EPOLLOUT → const int
EPOLLPRI → const int
EPOLLRDBAND → const int
EPOLLRDHUP → const int
EPOLLRDNORM → const int
EPOLLWAKEUP → const int
EPOLLWRBAND → const int
EPOLLWRNORM → const int
EPROTO → const int
EPROTONOSUPPORT → const int
EPROTOTYPE → const int
ERANGE → const int
EREMCHG → const int
EREMOTE → const int
EREMOTEIO → const int
ERESTART → const int
ERFKILL → const int
EROFS → const int
ESHUTDOWN → const int
ESOCKTNOSUPPORT → const int
ESPIPE → const int
ESRCH → const int
ESRMNT → const int
ESTALE → const int
ESTRPIPE → const int
ETIME → const int
ETIMEDOUT → const int
ETOOMANYREFS → const int
ETXTBSY → const int
EUCLEAN → const int
EUNATCH → const int
EUSERS → const int
EWOULDBLOCK → const int
EXDEV → const int
EXFULL → const int
EXTA → const int
EXTB → const int
EXTPROC → const int
FF0 → const int
FF1 → const int
FFDLY → const int
GPIO_GET_CHIPINFO_IOCTL → const int
GPIO_GET_LINEEVENT_IOCTL → const int
GPIO_GET_LINEHANDLE_IOCTL → const int
GPIO_GET_LINEINFO_IOCTL → const int
GPIO_GET_LINEINFO_UNWATCH_IOCTL → const int
GPIO_GET_LINEINFO_WATCH_IOCTL → const int
GPIO_MAX_NAME_SIZE → const int
GPIO_V2_GET_LINE_IOCTL → const int
GPIO_V2_GET_LINEINFO_IOCTL → const int
GPIO_V2_GET_LINEINFO_WATCH_IOCTL → const int
GPIO_V2_LINE_GET_VALUES_IOCTL → const int
GPIO_V2_LINE_NUM_ATTRS_MAX → const int
GPIO_V2_LINE_SET_CONFIG_IOCTL → const int
GPIO_V2_LINE_SET_VALUES_IOCTL → const int
GPIO_V2_LINES_MAX → const int
GPIOEVENT_EVENT_FALLING_EDGE → const int
GPIOEVENT_EVENT_RISING_EDGE → const int
GPIOEVENT_REQUEST_BOTH_EDGES → const int
GPIOEVENT_REQUEST_FALLING_EDGE → const int
GPIOEVENT_REQUEST_RISING_EDGE → const int
GPIOHANDLE_GET_LINE_VALUES_IOCTL → const int
GPIOHANDLE_REQUEST_ACTIVE_LOW → const int
GPIOHANDLE_REQUEST_BIAS_DISABLE → const int
GPIOHANDLE_REQUEST_BIAS_PULL_DOWN → const int
GPIOHANDLE_REQUEST_BIAS_PULL_UP → const int
GPIOHANDLE_REQUEST_INPUT → const int
GPIOHANDLE_REQUEST_OPEN_DRAIN → const int
GPIOHANDLE_REQUEST_OPEN_SOURCE → const int
GPIOHANDLE_REQUEST_OUTPUT → const int
GPIOHANDLE_SET_CONFIG_IOCTL → const int
GPIOHANDLE_SET_LINE_VALUES_IOCTL → const int
GPIOHANDLES_MAX → const int
GPIOLINE_CHANGED_CONFIG → const int
GPIOLINE_CHANGED_RELEASED → const int
GPIOLINE_CHANGED_REQUESTED → const int
GPIOLINE_FLAG_ACTIVE_LOW → const int
GPIOLINE_FLAG_BIAS_DISABLE → const int
GPIOLINE_FLAG_BIAS_PULL_DOWN → const int
GPIOLINE_FLAG_BIAS_PULL_UP → const int
GPIOLINE_FLAG_IS_OUT → const int
GPIOLINE_FLAG_KERNEL → const int
GPIOLINE_FLAG_OPEN_DRAIN → const int
GPIOLINE_FLAG_OPEN_SOURCE → const int
HUPCL → const int
ICANON → const int
ICRNL → const int
IEXTEN → const int
IF_NAMESIZE → const int
IFF_ALLMULTI → const int
IFF_AUTOMEDIA → const int
IFF_BROADCAST → const int
IFF_DEBUG → const int
IFF_DORMANT → const int
IFF_DYNAMIC → const int
IFF_ECHO → const int
IFF_LOOPBACK → const int
IFF_LOWER_UP → const int
IFF_MASTER → const int
IFF_MULTICAST → const int
IFF_NOARP → const int
IFF_NOTRAILERS → const int
IFF_POINTOPOINT → const int
IFF_PORTSEL → const int
IFF_PROMISC → const int
IFF_RUNNING → const int
IFF_SLAVE → const int
IFF_UP → const int
IFF_VOLATILE → const int
IFLA_ADDRESS → const int
IFLA_AF_SPEC → const int
IFLA_ALLMULTI → const int
IFLA_ALT_IFNAME → const int
IFLA_BAREUDP_ETHERTYPE → const int
IFLA_BAREUDP_MAX → const int
IFLA_BAREUDP_MULTIPROTO_MODE → const int
IFLA_BAREUDP_PORT → const int
IFLA_BAREUDP_SRCPORT_MIN → const int
IFLA_BAREUDP_UNSPEC → const int
IFLA_BOND_ACTIVE_SLAVE → const int
IFLA_BOND_AD_ACTOR_SYS_PRIO → const int
IFLA_BOND_AD_ACTOR_SYSTEM → const int
IFLA_BOND_AD_INFO → const int
IFLA_BOND_AD_INFO_ACTOR_KEY → const int
IFLA_BOND_AD_INFO_AGGREGATOR → const int
IFLA_BOND_AD_INFO_MAX → const int
IFLA_BOND_AD_INFO_NUM_PORTS → const int
IFLA_BOND_AD_INFO_PARTNER_KEY → const int
IFLA_BOND_AD_INFO_PARTNER_MAC → const int
IFLA_BOND_AD_INFO_UNSPEC → const int
IFLA_BOND_AD_LACP_ACTIVE → const int
IFLA_BOND_AD_LACP_RATE → const int
IFLA_BOND_AD_SELECT → const int
IFLA_BOND_AD_USER_PORT_KEY → const int
IFLA_BOND_ALL_SLAVES_ACTIVE → const int
IFLA_BOND_ARP_ALL_TARGETS → const int
IFLA_BOND_ARP_INTERVAL → const int
IFLA_BOND_ARP_IP_TARGET → const int
IFLA_BOND_ARP_VALIDATE → const int
IFLA_BOND_DOWNDELAY → const int
IFLA_BOND_FAIL_OVER_MAC → const int
IFLA_BOND_LP_INTERVAL → const int
IFLA_BOND_MAX → const int
IFLA_BOND_MIIMON → const int
IFLA_BOND_MISSED_MAX → const int
IFLA_BOND_MODE → const int
IFLA_BOND_NS_IP6_TARGET → const int
IFLA_BOND_NUM_PEER_NOTIF → const int
IFLA_BOND_PACKETS_PER_SLAVE → const int
IFLA_BOND_PEER_NOTIF_DELAY → const int
IFLA_BOND_PRIMARY → const int
IFLA_BOND_PRIMARY_RESELECT → const int
IFLA_BOND_RESEND_IGMP → const int
IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE → const int
IFLA_BOND_SLAVE_AD_AGGREGATOR_ID → const int
IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE → const int
IFLA_BOND_SLAVE_MAX → const int
IFLA_BOND_SLAVE_MII_STATUS → const int
IFLA_BOND_SLAVE_PERM_HWADDR → const int
IFLA_BOND_SLAVE_PRIO → const int
IFLA_BOND_SLAVE_QUEUE_ID → const int
IFLA_BOND_SLAVE_STATE → const int
IFLA_BOND_SLAVE_UNSPEC → const int
IFLA_BOND_TLB_DYNAMIC_LB → const int
IFLA_BOND_UNSPEC → const int
IFLA_BOND_UPDELAY → const int
IFLA_BOND_USE_CARRIER → const int
IFLA_BOND_XMIT_HASH_POLICY → const int
IFLA_BR_AGEING_TIME → const int
IFLA_BR_BRIDGE_ID → const int
IFLA_BR_FDB_FLUSH → const int
IFLA_BR_FORWARD_DELAY → const int
IFLA_BR_GC_TIMER → const int
IFLA_BR_GROUP_ADDR → const int
IFLA_BR_GROUP_FWD_MASK → const int
IFLA_BR_HELLO_TIME → const int
IFLA_BR_HELLO_TIMER → const int
IFLA_BR_MAX → const int
IFLA_BR_MAX_AGE → const int
IFLA_BR_MCAST_HASH_ELASTICITY → const int
IFLA_BR_MCAST_HASH_MAX → const int
IFLA_BR_MCAST_IGMP_VERSION → const int
IFLA_BR_MCAST_LAST_MEMBER_CNT → const int
IFLA_BR_MCAST_LAST_MEMBER_INTVL → const int
IFLA_BR_MCAST_MEMBERSHIP_INTVL → const int
IFLA_BR_MCAST_MLD_VERSION → const int
IFLA_BR_MCAST_QUERIER → const int
IFLA_BR_MCAST_QUERIER_INTVL → const int
IFLA_BR_MCAST_QUERIER_STATE → const int
IFLA_BR_MCAST_QUERY_INTVL → const int
IFLA_BR_MCAST_QUERY_RESPONSE_INTVL → const int
IFLA_BR_MCAST_QUERY_USE_IFADDR → const int
IFLA_BR_MCAST_ROUTER → const int
IFLA_BR_MCAST_SNOOPING → const int
IFLA_BR_MCAST_STARTUP_QUERY_CNT → const int
IFLA_BR_MCAST_STARTUP_QUERY_INTVL → const int
IFLA_BR_MCAST_STATS_ENABLED → const int
IFLA_BR_MULTI_BOOLOPT → const int
IFLA_BR_NF_CALL_ARPTABLES → const int
IFLA_BR_NF_CALL_IP6TABLES → const int
IFLA_BR_NF_CALL_IPTABLES → const int
IFLA_BR_PAD → const int
IFLA_BR_PRIORITY → const int
IFLA_BR_ROOT_ID → const int
IFLA_BR_ROOT_PATH_COST → const int
IFLA_BR_ROOT_PORT → const int
IFLA_BR_STP_STATE → const int
IFLA_BR_TCN_TIMER → const int
IFLA_BR_TOPOLOGY_CHANGE → const int
IFLA_BR_TOPOLOGY_CHANGE_DETECTED → const int
IFLA_BR_TOPOLOGY_CHANGE_TIMER → const int
IFLA_BR_UNSPEC → const int
IFLA_BR_VLAN_DEFAULT_PVID → const int
IFLA_BR_VLAN_FILTERING → const int
IFLA_BR_VLAN_PROTOCOL → const int
IFLA_BR_VLAN_STATS_ENABLED → const int
IFLA_BR_VLAN_STATS_PER_PORT → const int
IFLA_BROADCAST → const int
IFLA_BRPORT_BACKUP_PORT → const int
IFLA_BRPORT_BCAST_FLOOD → const int
IFLA_BRPORT_BRIDGE_ID → const int
IFLA_BRPORT_CONFIG_PENDING → const int
IFLA_BRPORT_COST → const int
IFLA_BRPORT_DESIGNATED_COST → const int
IFLA_BRPORT_DESIGNATED_PORT → const int
IFLA_BRPORT_FAST_LEAVE → const int
IFLA_BRPORT_FLUSH → const int
IFLA_BRPORT_FORWARD_DELAY_TIMER → const int
IFLA_BRPORT_GROUP_FWD_MASK → const int
IFLA_BRPORT_GUARD → const int
IFLA_BRPORT_HOLD_TIMER → const int
IFLA_BRPORT_ID → const int
IFLA_BRPORT_ISOLATED → const int
IFLA_BRPORT_LEARNING → const int
IFLA_BRPORT_LEARNING_SYNC → const int
IFLA_BRPORT_LOCKED → const int
IFLA_BRPORT_MAB → const int
IFLA_BRPORT_MAX → const int
IFLA_BRPORT_MCAST_EHT_HOSTS_CNT → const int
IFLA_BRPORT_MCAST_EHT_HOSTS_LIMIT → const int
IFLA_BRPORT_MCAST_FLOOD → const int
IFLA_BRPORT_MCAST_MAX_GROUPS → const int
IFLA_BRPORT_MCAST_N_GROUPS → const int
IFLA_BRPORT_MCAST_TO_UCAST → const int
IFLA_BRPORT_MESSAGE_AGE_TIMER → const int
IFLA_BRPORT_MODE → const int
IFLA_BRPORT_MRP_IN_OPEN → const int
IFLA_BRPORT_MRP_RING_OPEN → const int
IFLA_BRPORT_MULTICAST_ROUTER → const int
IFLA_BRPORT_NEIGH_SUPPRESS → const int
IFLA_BRPORT_NO → const int
IFLA_BRPORT_PAD → const int
IFLA_BRPORT_PRIORITY → const int
IFLA_BRPORT_PROTECT → const int
IFLA_BRPORT_PROXYARP → const int
IFLA_BRPORT_PROXYARP_WIFI → const int
IFLA_BRPORT_ROOT_ID → const int
IFLA_BRPORT_STATE → const int
IFLA_BRPORT_TOPOLOGY_CHANGE_ACK → const int
IFLA_BRPORT_UNICAST_FLOOD → const int
IFLA_BRPORT_UNSPEC → const int
IFLA_BRPORT_VLAN_TUNNEL → const int
IFLA_CAN_BERR_COUNTER → const int
IFLA_CAN_BITRATE_CONST → const int
IFLA_CAN_BITRATE_MAX → const int
IFLA_CAN_BITTIMING → const int
IFLA_CAN_BITTIMING_CONST → const int
IFLA_CAN_CLOCK → const int
IFLA_CAN_CTRLMODE → const int
IFLA_CAN_CTRLMODE_EXT → const int
IFLA_CAN_CTRLMODE_MAX → const int
IFLA_CAN_CTRLMODE_SUPPORTED → const int
IFLA_CAN_CTRLMODE_UNSPEC → const int
IFLA_CAN_DATA_BITRATE_CONST → const int
IFLA_CAN_DATA_BITTIMING → const int
IFLA_CAN_DATA_BITTIMING_CONST → const int
IFLA_CAN_MAX → const int
IFLA_CAN_RESTART → const int
IFLA_CAN_RESTART_MS → const int
IFLA_CAN_STATE → const int
IFLA_CAN_TDC → const int
IFLA_CAN_TDC_MAX → const int
IFLA_CAN_TDC_TDCF → const int
IFLA_CAN_TDC_TDCF_MAX → const int
IFLA_CAN_TDC_TDCF_MIN → const int
IFLA_CAN_TDC_TDCO → const int
IFLA_CAN_TDC_TDCO_MAX → const int
IFLA_CAN_TDC_TDCO_MIN → const int
IFLA_CAN_TDC_TDCV → const int
IFLA_CAN_TDC_TDCV_MAX → const int
IFLA_CAN_TDC_TDCV_MIN → const int
IFLA_CAN_TDC_UNSPEC → const int
IFLA_CAN_TERMINATION → const int
IFLA_CAN_TERMINATION_CONST → const int
IFLA_CAN_UNSPEC → const int
IFLA_CARRIER → const int
IFLA_CARRIER_CHANGES → const int
IFLA_CARRIER_DOWN_COUNT → const int
IFLA_CARRIER_UP_COUNT → const int
IFLA_COST → const int
IFLA_COST1 → const int
IFLA_DSA_MASTER → const int
IFLA_DSA_MAX → const int
IFLA_DSA_UNSPEC → const int
IFLA_EVENT → const int
IFLA_EVENT_BONDING_FAILOVER → const int
IFLA_EVENT_BONDING_OPTIONS → const int
IFLA_EVENT_FEATURES → const int
IFLA_EVENT_IGMP_RESEND → const int
IFLA_EVENT_NONE → const int
IFLA_EVENT_NOTIFY_PEERS → const int
IFLA_EVENT_REBOOT → const int
IFLA_EXT_MASK → const int
IFLA_GENEVE_COLLECT_METADATA → const int
IFLA_GENEVE_DF → const int
IFLA_GENEVE_ID → const int
IFLA_GENEVE_INNER_PROTO_INHERIT → const int
IFLA_GENEVE_LABEL → const int
IFLA_GENEVE_MAX → const int
IFLA_GENEVE_PORT → const int
IFLA_GENEVE_REMOTE → const int
IFLA_GENEVE_REMOTE6 → const int
IFLA_GENEVE_TOS → const int
IFLA_GENEVE_TTL → const int
IFLA_GENEVE_TTL_INHERIT → const int
IFLA_GENEVE_UDP_CSUM → const int
IFLA_GENEVE_UDP_ZERO_CSUM6_RX → const int
IFLA_GENEVE_UDP_ZERO_CSUM6_TX → const int
IFLA_GENEVE_UNSPEC → const int
IFLA_GRO_IPV4_MAX_SIZE → const int
IFLA_GRO_MAX_SIZE → const int
IFLA_GROUP → const int
IFLA_GSO_IPV4_MAX_SIZE → const int
IFLA_GSO_MAX_SEGS → const int
IFLA_GSO_MAX_SIZE → const int
IFLA_GTP_CREATE_SOCKETS → const int
IFLA_GTP_FD0 → const int
IFLA_GTP_FD1 → const int
IFLA_GTP_MAX → const int
IFLA_GTP_PDP_HASHSIZE → const int
IFLA_GTP_RESTART_COUNT → const int
IFLA_GTP_ROLE → const int
IFLA_GTP_UNSPEC → const int
IFLA_HSR_MAX → const int
IFLA_HSR_MULTICAST_SPEC → const int
IFLA_HSR_PROTOCOL → const int
IFLA_HSR_SEQ_NR → const int
IFLA_HSR_SLAVE1 → const int
IFLA_HSR_SLAVE2 → const int
IFLA_HSR_SUPERVISION_ADDR → const int
IFLA_HSR_UNSPEC → const int
IFLA_HSR_VERSION → const int
IFLA_IF_NETNSID → const int
IFLA_IFALIAS → const int
IFLA_IFNAME → const int
IFLA_INET6_ADDR_GEN_MODE → const int
IFLA_INET6_CACHEINFO → const int
IFLA_INET6_CONF → const int
IFLA_INET6_FLAGS → const int
IFLA_INET6_ICMP6STATS → const int
IFLA_INET6_MAX → const int
IFLA_INET6_MCAST → const int
IFLA_INET6_RA_MTU → const int
IFLA_INET6_STATS → const int
IFLA_INET6_TOKEN → const int
IFLA_INET6_UNSPEC → const int
IFLA_INET_CONF → const int
IFLA_INET_MAX → const int
IFLA_INET_UNSPEC → const int
IFLA_INFO_DATA → const int
IFLA_INFO_KIND → const int
IFLA_INFO_MAX → const int
IFLA_INFO_SLAVE_DATA → const int
IFLA_INFO_SLAVE_KIND → const int
IFLA_INFO_UNSPEC → const int
IFLA_INFO_XSTATS → const int
IFLA_IPOIB_MAX → const int
IFLA_IPOIB_MODE → const int
IFLA_IPOIB_PKEY → const int
IFLA_IPOIB_UMCAST → const int
IFLA_IPOIB_UNSPEC → const int
IFLA_IPVLAN_FLAGS → const int
IFLA_IPVLAN_MAX → const int
IFLA_IPVLAN_MODE → const int
IFLA_IPVLAN_UNSPEC → const int
IFLA_LINKINFO → const int
IFLA_LINKINFO1 → const int
IFLA_LINKMODE → const int
IFLA_MACSEC_CIPHER_SUITE → const int
IFLA_MACSEC_ENCODING_SA → const int
IFLA_MACSEC_ENCRYPT → const int
IFLA_MACSEC_ES → const int
IFLA_MACSEC_ICV_LEN → const int
IFLA_MACSEC_INC_SCI → const int
IFLA_MACSEC_MAX → const int
IFLA_MACSEC_OFFLOAD → const int
IFLA_MACSEC_PAD → const int
IFLA_MACSEC_PORT → const int
IFLA_MACSEC_PROTECT → const int
IFLA_MACSEC_REPLAY_PROTECT → const int
IFLA_MACSEC_SCB → const int
IFLA_MACSEC_SCI → const int
IFLA_MACSEC_UNSPEC → const int
IFLA_MACSEC_VALIDATION → const int
IFLA_MACSEC_WINDOW → const int
IFLA_MACVLAN_BC_QUEUE_LEN → const int
IFLA_MACVLAN_BC_QUEUE_LEN_USED → const int
IFLA_MACVLAN_FLAGS → const int
IFLA_MACVLAN_MACADDR → const int
IFLA_MACVLAN_MACADDR_COUNT → const int
IFLA_MACVLAN_MACADDR_DATA → const int
IFLA_MACVLAN_MACADDR_MODE → const int
IFLA_MACVLAN_MAX → const int
IFLA_MACVLAN_MODE → const int
IFLA_MACVLAN_UNSPEC → const int
IFLA_MAP → const int
IFLA_MAP1 → const int
IFLA_MASTER → const int
IFLA_MASTER1 → const int
IFLA_MAX → const int
IFLA_MAX_MTU → const int
IFLA_MCTP_MAX → const int
IFLA_MCTP_NET → const int
IFLA_MCTP_UNSPEC → const int
IFLA_MIN_MTU → const int
IFLA_MTU → const int
IFLA_NET_NS_FD → const int
IFLA_NET_NS_PID → const int
IFLA_NEW_IFINDEX → const int
IFLA_NEW_NETNSID → const int
IFLA_NUM_RX_QUEUES → const int
IFLA_NUM_TX_QUEUES → const int
IFLA_NUM_VF → const int
IFLA_OFFLOAD_XSTATS_CPU_HIT → const int
IFLA_OFFLOAD_XSTATS_HW_S_INFO → const int
IFLA_OFFLOAD_XSTATS_HW_S_INFO_MAX → const int
IFLA_OFFLOAD_XSTATS_HW_S_INFO_REQUEST → const int
IFLA_OFFLOAD_XSTATS_HW_S_INFO_UNSPEC → const int
IFLA_OFFLOAD_XSTATS_HW_S_INFO_USED → const int
IFLA_OFFLOAD_XSTATS_L3_STATS → const int
IFLA_OFFLOAD_XSTATS_MAX → const int
IFLA_OFFLOAD_XSTATS_UNSPEC → const int
IFLA_OPERSTATE → const int
IFLA_PAD → const int
IFLA_PARENT_DEV_BUS_NAME → const int
IFLA_PARENT_DEV_NAME → const int
IFLA_PERM_ADDRESS → const int
IFLA_PHYS_PORT_ID → const int
IFLA_PHYS_PORT_NAME → const int
IFLA_PHYS_SWITCH_ID → const int
IFLA_PORT_HOST_UUID → const int
IFLA_PORT_INSTANCE_UUID → const int
IFLA_PORT_MAX → const int
IFLA_PORT_PROFILE → const int
IFLA_PORT_REQUEST → const int
IFLA_PORT_RESPONSE → const int
IFLA_PORT_SELF → const int
IFLA_PORT_UNSPEC → const int
IFLA_PORT_VF → const int
IFLA_PORT_VSI_TYPE → const int
IFLA_PPP_DEV_FD → const int
IFLA_PPP_MAX → const int
IFLA_PPP_UNSPEC → const int
IFLA_PRIORITY → const int
IFLA_PRIORITY1 → const int
IFLA_PROMISCUITY → const int
IFLA_PROMISCUITY1 → const int
IFLA_PROP_LIST → const int
IFLA_PROTINFO → const int
IFLA_PROTINFO1 → const int
IFLA_PROTO_DOWN → const int
IFLA_PROTO_DOWN_REASON → const int
IFLA_PROTO_DOWN_REASON_MASK → const int
IFLA_PROTO_DOWN_REASON_MAX → const int
IFLA_PROTO_DOWN_REASON_UNSPEC → const int
IFLA_PROTO_DOWN_REASON_VALUE → const int
IFLA_QDISC → const int
IFLA_RMNET_FLAGS → const int
IFLA_RMNET_MAX → const int
IFLA_RMNET_MUX_ID → const int
IFLA_RMNET_UNSPEC → const int
IFLA_STATS → const int
IFLA_STATS64 → const int
IFLA_STATS_AF_SPEC → const int
IFLA_STATS_GET_FILTERS → const int
IFLA_STATS_GETSET_MAX → const int
IFLA_STATS_GETSET_UNSPEC → const int
IFLA_STATS_MAX → const int
IFLA_STATS_SET_OFFLOAD_XSTATS_L3_STATS → const int
IFLA_STATS_UNSPEC → const int
IFLA_TARGET_NETNSID → const int
IFLA_TSO_MAX_SEGS → const int
IFLA_TSO_MAX_SIZE → const int
IFLA_TUN_GROUP → const int
IFLA_TUN_MAX → const int
IFLA_TUN_MULTI_QUEUE → const int
IFLA_TUN_NUM_DISABLED_QUEUES → const int
IFLA_TUN_NUM_QUEUES → const int
IFLA_TUN_OWNER → const int
IFLA_TUN_PERSIST → const int
IFLA_TUN_PI → const int
IFLA_TUN_TYPE → const int
IFLA_TUN_UNSPEC → const int
IFLA_TUN_VNET_HDR → const int
IFLA_TXQLEN → const int
IFLA_TXQLEN1 → const int
IFLA_UNSPEC → const int
IFLA_VF_BROADCAST → const int
IFLA_VF_IB_NODE_GUID → const int
IFLA_VF_IB_PORT_GUID → const int
IFLA_VF_INFO → const int
IFLA_VF_INFO_MAX → const int
IFLA_VF_INFO_UNSPEC → const int
IFLA_VF_MAC → const int
IFLA_VF_MAX → const int
IFLA_VF_PORT → const int
IFLA_VF_PORT_MAX → const int
IFLA_VF_PORT_UNSPEC → const int
IFLA_VF_PORTS → const int
IFLA_VF_RATE → const int
IFLA_VF_RSS_QUERY_EN → const int
IFLA_VF_SPOOFCHK → const int
IFLA_VF_STATS → const int
IFLA_VF_STATS_BROADCAST → const int
IFLA_VF_STATS_MAX → const int
IFLA_VF_STATS_MULTICAST → const int
IFLA_VF_STATS_PAD → const int
IFLA_VF_STATS_RX_BYTES → const int
IFLA_VF_STATS_RX_DROPPED → const int
IFLA_VF_STATS_RX_PACKETS → const int
IFLA_VF_STATS_TX_BYTES → const int
IFLA_VF_STATS_TX_DROPPED → const int
IFLA_VF_STATS_TX_PACKETS → const int
IFLA_VF_TRUST → const int
IFLA_VF_TX_RATE → const int
IFLA_VF_UNSPEC → const int
IFLA_VF_VLAN → const int
IFLA_VF_VLAN_INFO → const int
IFLA_VF_VLAN_INFO_MAX → const int
IFLA_VF_VLAN_INFO_UNSPEC → const int
IFLA_VF_VLAN_LIST → const int
IFLA_VFINFO_LIST → const int
IFLA_VLAN_EGRESS_QOS → const int
IFLA_VLAN_FLAGS → const int
IFLA_VLAN_ID → const int
IFLA_VLAN_INGRESS_QOS → const int
IFLA_VLAN_MAX → const int
IFLA_VLAN_PROTOCOL → const int
IFLA_VLAN_QOS_MAPPING → const int
IFLA_VLAN_QOS_MAX → const int
IFLA_VLAN_QOS_UNSPEC → const int
IFLA_VLAN_UNSPEC → const int
IFLA_VRF_MAX → const int
IFLA_VRF_PORT_MAX → const int
IFLA_VRF_PORT_TABLE → const int
IFLA_VRF_PORT_UNSPEC → const int
IFLA_VRF_TABLE → const int
IFLA_VRF_UNSPEC → const int
IFLA_VXLAN_AGEING → const int
IFLA_VXLAN_COLLECT_METADATA → const int
IFLA_VXLAN_DF → const int
IFLA_VXLAN_GBP → const int
IFLA_VXLAN_GPE → const int
IFLA_VXLAN_GROUP → const int
IFLA_VXLAN_GROUP6 → const int
IFLA_VXLAN_ID → const int
IFLA_VXLAN_L2MISS → const int
IFLA_VXLAN_L3MISS → const int
IFLA_VXLAN_LABEL → const int
IFLA_VXLAN_LEARNING → const int
IFLA_VXLAN_LIMIT → const int
IFLA_VXLAN_LOCAL → const int
IFLA_VXLAN_LOCAL6 → const int
IFLA_VXLAN_MAX → const int
IFLA_VXLAN_PORT → const int
IFLA_VXLAN_PORT_RANGE → const int
IFLA_VXLAN_PROXY → const int
IFLA_VXLAN_REMCSUM_NOPARTIAL → const int
IFLA_VXLAN_REMCSUM_RX → const int
IFLA_VXLAN_REMCSUM_TX → const int
IFLA_VXLAN_RSC → const int
IFLA_VXLAN_TOS → const int
IFLA_VXLAN_TTL → const int
IFLA_VXLAN_TTL_INHERIT → const int
IFLA_VXLAN_UDP_CSUM → const int
IFLA_VXLAN_UDP_ZERO_CSUM6_RX → const int
IFLA_VXLAN_UDP_ZERO_CSUM6_TX → const int
IFLA_VXLAN_UNSPEC → const int
IFLA_VXLAN_VNIFILTER → const int
IFLA_WEIGHT → const int
IFLA_WEIGHT1 → const int
IFLA_WIRELESS → const int
IFLA_WIRELESS1 → const int
IFLA_XDP → const int
IFLA_XDP_ATTACHED → const int
IFLA_XDP_DRV_PROG_ID → const int
IFLA_XDP_EXPECTED_FD → const int
IFLA_XDP_FD → const int
IFLA_XDP_FLAGS → const int
IFLA_XDP_HW_PROG_ID → const int
IFLA_XDP_MAX → const int
IFLA_XDP_PROG_ID → const int
IFLA_XDP_SKB_PROG_ID → const int
IFLA_XDP_UNSPEC → const int
IFLA_XFRM_COLLECT_METADATA → const int
IFLA_XFRM_IF_ID → const int
IFLA_XFRM_MAX → const int
IFLA_XFRM_UNSPEC → const int
IFNAMSIZ → const int
IGNBRK → const int
IGNCR → const int
IGNPAR → const int
INLCR → const int
INPCK → const int
ISIG → const int
ISTRIP → const int
IXANY → const int
IXOFF → const int
IXON → const int
MSG_BATCH → const int
MSG_CMSG_CLOEXEC → const int
MSG_CONFIRM → const int
MSG_CTRUNC → const int
MSG_DONTROUTE → const int
MSG_DONTWAIT → const int
MSG_EOR → const int
MSG_ERRQUEUE → const int
MSG_FASTOPEN → const int
MSG_FIN → const int
MSG_MORE → const int
MSG_NOSIGNAL → const int
MSG_OOB → const int
MSG_PEEK → const int
MSG_PROXY → const int
MSG_RST → const int
MSG_SYN → const int
MSG_TRUNC → const int
MSG_WAITALL → const int
MSG_WAITFORONE → const int
MSG_ZEROCOPY → const int
NCCS → const int
NL0 → const int
NL1 → const int
NLDLY → const int
NLM_F_ACK → const int
NLM_F_ACK_TLVS → const int
NLM_F_APPEND → const int
NLM_F_ATOMIC → const int
NLM_F_BULK → const int
NLM_F_CAPPED → const int
NLM_F_CREATE → const int
NLM_F_DUMP → const int
NLM_F_DUMP_FILTERED → const int
NLM_F_DUMP_INTR → const int
NLM_F_ECHO → const int
NLM_F_EXCL → const int
NLM_F_MATCH → const int
NLM_F_MULTI → const int
NLM_F_NONREC → const int
NLM_F_REPLACE → const int
NLM_F_REQUEST → const int
NLM_F_ROOT → const int
NLMSG_ALIGNTO → const int
NLMSG_DONE → const int
NLMSG_ERROR → const int
NLMSG_HDRLEN → const int
NLMSG_MIN_TYPE → const int
NLMSG_NOOP → const int
NLMSG_OVERRUN → const int
NOFLSH → const int
O_ACCMODE → const int
O_APPEND → const int
O_ASYNC → const int
O_CLOEXEC → const int
O_CREAT → const int
O_DSYNC → const int
O_EXCL → const int
O_FSYNC → const int
O_NDELAY → const int
O_NOCTTY → const int
O_NONBLOCK → const int
O_RDONLY → const int
O_RDWR → const int
O_RSYNC → const int
O_SYNC → const int
O_TRUNC → const int
O_WRONLY → const int
OCRNL → const int
OFDEL → const int
OFILL → const int
ONLCR → const int
ONLRET → const int
ONOCR → const int
OPOST → const int
PARENB → const int
PARMRK → const int
PARODD → const int
PF_CAN → const int
RTA_ALIGNTO → const int
RTA_MAX → const int
RTM_BASE → const int
RTM_DELACTION → const int
RTM_DELADDR → const int
RTM_DELADDRLABEL → const int
RTM_DELCHAIN → const int
RTM_DELLINKPROP → const int
RTM_DELMDB → const int
RTM_DELNEIGH → const int
RTM_DELNETCONF → const int
RTM_DELNEXTHOP → const int
RTM_DELNEXTHOPBUCKET → const int
RTM_DELNSID → const int
RTM_DELQDISC → const int
RTM_DELROUTE → const int
RTM_DELRULE → const int
RTM_DELTCLASS → const int
RTM_DELTFILTER → const int
RTM_DELTUNNEL → const int
RTM_DELVLAN → const int
RTM_F_CLONED → const int
RTM_F_EQUALIZE → const int
RTM_F_FIB_MATCH → const int
RTM_F_LOOKUP_TABLE → const int
RTM_F_NOTIFY → const int
RTM_F_OFFLOAD → const int
RTM_F_OFFLOAD_FAILED → const int
RTM_F_PREFIX → const int
RTM_F_TRAP → const int
RTM_GETACTION → const int
RTM_GETADDR → const int
RTM_GETADDRLABEL → const int
RTM_GETANYCAST → const int
RTM_GETCHAIN → const int
RTM_GETDCB → const int
RTM_GETLINKPROP → const int
RTM_GETMDB → const int
RTM_GETMULTICAST → const int
RTM_GETNEIGH → const int
RTM_GETNEIGHTBL → const int
RTM_GETNETCONF → const int
RTM_GETNEXTHOP → const int
RTM_GETNEXTHOPBUCKET → const int
RTM_GETNSID → const int
RTM_GETQDISC → const int
RTM_GETROUTE → const int
RTM_GETRULE → const int
RTM_GETSTATS → const int
RTM_GETTCLASS → const int
RTM_GETTFILTER → const int
RTM_GETTUNNEL → const int
RTM_GETVLAN → const int
RTM_MAX → const int
RTM_NEWACTION → const int
RTM_NEWADDR → const int
RTM_NEWADDRLABEL → const int
RTM_NEWCACHEREPORT → const int
RTM_NEWCHAIN → const int
RTM_NEWLINKPROP → const int
RTM_NEWMDB → const int
RTM_NEWNDUSEROPT → const int
RTM_NEWNEIGH → const int
RTM_NEWNEIGHTBL → const int
RTM_NEWNETCONF → const int
RTM_NEWNEXTHOP → const int
RTM_NEWNEXTHOPBUCKET → const int
RTM_NEWNSID → const int
RTM_NEWNVLAN → const int
RTM_NEWPREFIX → const int
RTM_NEWQDISC → const int
RTM_NEWROUTE → const int
RTM_NEWRULE → const int
RTM_NEWSTATS → const int
RTM_NEWTCLASS → const int
RTM_NEWTFILTER → const int
RTM_NEWTUNNEL → const int
RTM_NR_FAMILIES → const int
RTM_NR_MSGTYPES → const int
RTM_SETDCB → const int
RTM_SETNEIGHTBL → const int
RTM_SETSTATS → const int
SIOCADDDLCI → const int
SIOCADDMULTI → const int
SIOCADDRT → const int
SIOCATMARK → const int
SIOCDARP → const int
SIOCDELDLCI → const int
SIOCDELMULTI → const int
SIOCDELRT → const int
SIOCDEVPRIVATE → const int
SIOCDIFADDR → const int
SIOCDRARP → const int
SIOCGARP → const int
SIOCGIFADDR → const int
SIOCGIFBR → const int
SIOCGIFBRDADDR → const int
SIOCGIFCONF → const int
SIOCGIFCOUNT → const int
SIOCGIFDSTADDR → const int
SIOCGIFENCAP → const int
SIOCGIFFLAGS → const int
SIOCGIFHWADDR → const int
SIOCGIFINDEX → const int
SIOCGIFMAP → const int
SIOCGIFMEM → const int
SIOCGIFMETRIC → const int
SIOCGIFMTU → const int
SIOCGIFNAME → const int
SIOCGIFNETMASK → const int
SIOCGIFPFLAGS → const int
SIOCGIFSLAVE → const int
SIOCGIFTXQLEN → const int
SIOCGPGRP → const int
SIOCGRARP → const int
SIOCGSTAMP_OLD → const int
SIOCGSTAMPNS_OLD → const int
SIOCPROTOPRIVATE → const int
SIOCRTMSG → const int
SIOCSARP → const int
SIOCSIFADDR → const int
SIOCSIFBR → const int
SIOCSIFBRDADDR → const int
SIOCSIFDSTADDR → const int
SIOCSIFENCAP → const int
SIOCSIFFLAGS → const int
SIOCSIFHWADDR → const int
SIOCSIFHWBROADCAST → const int
SIOCSIFMAP → const int
SIOCSIFMEM → const int
SIOCSIFMETRIC → const int
SIOCSIFMTU → const int
SIOCSIFNAME → const int
SIOCSIFNETMASK → const int
SIOCSIFPFLAGS → const int
SIOCSIFSLAVE → const int
SIOCSIFTXQLEN → const int
SIOCSPGRP → const int
SIOCSRARP → const int
SO_ACCEPTCONN → const int
SO_ATTACH_BPF → const int
SO_ATTACH_FILTER → const int
SO_ATTACH_REUSEPORT_CBPF → const int
SO_ATTACH_REUSEPORT_EBPF → const int
SO_BINDTODEVICE → const int
SO_BINDTOIFINDEX → const int
SO_BPF_EXTENSIONS → const int
SO_BROADCAST → const int
SO_BSDCOMPAT → const int
SO_BUF_LOCK → const int
SO_BUSY_POLL → const int
SO_BUSY_POLL_BUDGET → const int
SO_CNX_ADVICE → const int
SO_DEBUG → const int
SO_DETACH_BPF → const int
SO_DETACH_FILTER → const int
SO_DETACH_REUSEPORT_BPF → const int
SO_DOMAIN → const int
SO_DONTROUTE → const int
SO_ERROR → const int
SO_GET_FILTER → const int
SO_INCOMING_CPU → const int
SO_INCOMING_NAPI_ID → const int
SO_KEEPALIVE → const int
SO_LINGER → const int
SO_LOCK_FILTER → const int
SO_MARK → const int
SO_MAX_PACING_RATE → const int
SO_MEMINFO → const int
SO_NO_CHECK → const int
SO_NOFCS → const int
SO_OOBINLINE → const int
SO_PASSCRED → const int
SO_PASSSEC → const int
SO_PEEK_OFF → const int
SO_PEERCRED → const int
SO_PEERGROUPS → const int
SO_PEERNAME → const int
SO_PEERSEC → const int
SO_PREFER_BUSY_POLL → const int
SO_PRIORITY → const int
SO_PROTOCOL → const int
SO_RCVBUF → const int
SO_RCVBUFFORCE → const int
SO_RCVLOWAT → const int
SO_RCVMARK → const int
SO_RCVTIMEO → const int
SO_RCVTIMEO_NEW → const int
SO_RCVTIMEO_OLD → const int
SO_RESERVE_MEM → const int
SO_REUSEADDR → const int
SO_REUSEPORT → const int
SO_RXQ_OVFL → const int
SO_SECURITY_AUTHENTICATION → const int
SO_SECURITY_ENCRYPTION_NETWORK → const int
SO_SECURITY_ENCRYPTION_TRANSPORT → const int
SO_SELECT_ERR_QUEUE → const int
SO_SNDBUF → const int
SO_SNDBUFFORCE → const int
SO_SNDLOWAT → const int
SO_SNDTIMEO → const int
SO_SNDTIMEO_NEW → const int
SO_SNDTIMEO_OLD → const int
SO_TIMESTAMP → const int
SO_TIMESTAMP_NEW → const int
SO_TIMESTAMP_OLD → const int
SO_TIMESTAMPING → const int
SO_TIMESTAMPING_NEW → const int
SO_TIMESTAMPING_OLD → const int
SO_TIMESTAMPNS → const int
SO_TIMESTAMPNS_NEW → const int
SO_TIMESTAMPNS_OLD → const int
SO_TXREHASH → const int
SO_TXTIME → const int
SO_TYPE → const int
SO_WIFI_STATUS → const int
SO_ZEROCOPY → const int
SOCK_BUF_LOCK_MASK → const int
SOCK_CLOEXEC → const int
SOCK_DCCP → const int
SOCK_DGRAM → const int
SOCK_NONBLOCK → const int
SOCK_PACKET → const int
SOCK_RAW → const int
SOCK_RCVBUF_LOCK → const int
SOCK_RDM → const int
SOCK_SEQPACKET → const int
SOCK_SNDBUF_LOCK → const int
SOCK_STREAM → const int
SOCK_TXREHASH_DEFAULT → const int
SOCK_TXREHASH_DISABLED → const int
SOCK_TXREHASH_ENABLED → const int
SOL_AAL → const int
SOL_ALG → const int
SOL_ATM → const int
SOL_BLUETOOTH → const int
SOL_CAIF → const int
SOL_CAN_BASE → const int
SOL_CAN_RAW → const int
SOL_DCCP → const int
SOL_DECNET → const int
SOL_IRDA → const int
SOL_IUCV → const int
SOL_KCM → const int
SOL_LLC → const int
SOL_MCTP → const int
SOL_MPTCP → const int
SOL_NETBEUI → const int
SOL_NFC → const int
SOL_PACKET → const int
SOL_PNPIPE → const int
SOL_PPPOL2TP → const int
SOL_RAW → const int
SOL_RDS → const int
SOL_RXRPC → const int
SOL_SMC → const int
SOL_SOCKET → const int
SOL_TIPC → const int
SOL_TLS → const int
SOL_X25 → const int
SOL_XDP → const int
SPI_3WIRE → const int
SPI_3WIRE_HIZ → const int
SPI_CPHA → const int
SPI_CPOL → const int
SPI_CS_HIGH → const int
SPI_CS_WORD → const int
SPI_IOC_MAGIC → const int
SPI_IOC_RD_BITS_PER_WORD → const int
SPI_IOC_RD_LSB_FIRST → const int
SPI_IOC_RD_MAX_SPEED_HZ → const int
SPI_IOC_RD_MODE → const int
SPI_IOC_RD_MODE32 → const int
SPI_IOC_WR_BITS_PER_WORD → const int
SPI_IOC_WR_LSB_FIRST → const int
SPI_IOC_WR_MAX_SPEED_HZ → const int
SPI_IOC_WR_MODE → const int
SPI_IOC_WR_MODE32 → const int
SPI_LOOP → const int
SPI_LSB_FIRST → const int
SPI_MODE_0 → const int
SPI_MODE_1 → const int
SPI_MODE_2 → const int
SPI_MODE_3 → const int
SPI_MODE_X_MASK → const int
SPI_NO_CS → const int
SPI_READY → const int
SPI_RX_DUAL → const int
SPI_RX_OCTAL → const int
SPI_RX_QUAD → const int
SPI_TX_DUAL → const int
SPI_TX_OCTAL → const int
SPI_TX_QUAD → const int
TAB0 → const int
TAB1 → const int
TAB2 → const int
TAB3 → const int
TABDLY → const int
TCIFLUSH → const int
TCIOFF → const int
TCIOFLUSH → const int
TCION → const int
TCOFLUSH → const int
TCOOFF → const int
TCOON → const int
TCSADRAIN → const int
TCSAFLUSH → const int
TCSANOW → const int
TOSTOP → const int
VEOF → const int
VEOL → const int
VINTR → const int
VKILL → const int
VMIN → const int
VQUIT → const int
VSTART → const int
VSTOP → const int
VSUSP → const int
VT0 → const int
VT1 → const int
VTDLY → const int
VTIME → const int

Functions

IFLA_PAYLOAD(Pointer<nlmsghdr> n) int
IFLA_RTA(Pointer<ifinfomsg> r) Pointer<rtattr>
NLMSG_ALIGN(int len) int
Round the length of a netlink message up to align it properly.
NLMSG_DATA<T extends NativeType>(Pointer<nlmsghdr> nlh) Pointer<T>
Return a pointer to the payload associated with the passed nlmsghdr.
NLMSG_LENGTH(int len) int
Given the payload length len, this macro returns the aligned length to store in the nlmsghdr.nlmsg_len field.
NLMSG_NEXT(Pointer<nlmsghdr> nlh, int len) → Tuple2<Pointer<nlmsghdr>, int>
NLMSG_OK(Pointer<nlmsghdr> nlh, int len) bool
NLMSG_PAYLOAD(Pointer<nlmsghdr> nlh, int len) int
NLMSG_SPACE(int len) int
Return the number of bytes that a netlink message of with payload length len would occupy.
NLMSG_TAIL<T extends NativeType>(Pointer<nlmsghdr> nlh) Pointer<T>
Return a pointer to the first byte after the payload of the passed nlmsghdr.
RTA_ALIGN(int len) int
RTA_DATA<T extends NativeType>(Pointer<rtattr> rta) Pointer<T>
RTA_LENGTH(int len) int
RTA_NEXT(Pointer<rtattr> rta, int attrlen) → Tuple2<Pointer<rtattr>, int>
RTA_OK(Pointer<rtattr> rta, int len) bool
RTA_PAYLOAD(Pointer<rtattr> rta) int
RTA_SPACE(int len) int

Typedefs

SymbolLookupFn = Pointer<T> Function<T extends NativeType>(String symbolName)