Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

enum_station_info_flags(9) [centos man page]

ENUM 
STATION_INFO_FL(9) Actions and configuration ENUM STATION_INFO_FL(9) NAME
enum_station_info_flags - station information flags SYNOPSIS
enum station_info_flags { STATION_INFO_INACTIVE_TIME, STATION_INFO_RX_BYTES, STATION_INFO_TX_BYTES, STATION_INFO_LLID, STATION_INFO_PLID, STATION_INFO_PLINK_STATE, STATION_INFO_SIGNAL, STATION_INFO_TX_BITRATE, STATION_INFO_RX_PACKETS, STATION_INFO_TX_PACKETS, STATION_INFO_TX_RETRIES, STATION_INFO_TX_FAILED, STATION_INFO_RX_DROP_MISC, STATION_INFO_SIGNAL_AVG, STATION_INFO_RX_BITRATE, STATION_INFO_BSS_PARAM, STATION_INFO_CONNECTED_TIME, STATION_INFO_ASSOC_REQ_IES, STATION_INFO_STA_FLAGS, STATION_INFO_BEACON_LOSS_COUNT, STATION_INFO_T_OFFSET, STATION_INFO_LOCAL_PM, STATION_INFO_PEER_PM, STATION_INFO_NONPEER_PM, STATION_INFO_RX_BYTES64, STATION_INFO_TX_BYTES64 }; CONSTANTS
STATION_INFO_INACTIVE_TIME inactive_time filled STATION_INFO_RX_BYTES rx_bytes filled STATION_INFO_TX_BYTES tx_bytes filled STATION_INFO_LLID llid filled STATION_INFO_PLID plid filled STATION_INFO_PLINK_STATE plink_state filled STATION_INFO_SIGNAL signal filled STATION_INFO_TX_BITRATE txrate fields are filled (tx_bitrate, tx_bitrate_flags and tx_bitrate_mcs) STATION_INFO_RX_PACKETS rx_packets filled with 32-bit value STATION_INFO_TX_PACKETS tx_packets filled with 32-bit value STATION_INFO_TX_RETRIES tx_retries filled STATION_INFO_TX_FAILED tx_failed filled STATION_INFO_RX_DROP_MISC rx_dropped_misc filled STATION_INFO_SIGNAL_AVG signal_avg filled STATION_INFO_RX_BITRATE rxrate fields are filled STATION_INFO_BSS_PARAM bss_param filled STATION_INFO_CONNECTED_TIME connected_time filled STATION_INFO_ASSOC_REQ_IES assoc_req_ies filled STATION_INFO_STA_FLAGS sta_flags filled STATION_INFO_BEACON_LOSS_COUNT beacon_loss_count filled STATION_INFO_T_OFFSET t_offset filled STATION_INFO_LOCAL_PM local_pm filled STATION_INFO_PEER_PM peer_pm filled STATION_INFO_NONPEER_PM nonpeer_pm filled STATION_INFO_RX_BYTES64 rx_bytes filled with 64-bit value STATION_INFO_TX_BYTES64 tx_bytes filled with 64-bit value DESCRIPTION
Used by the driver to indicate which info in struct station_info it has filled in during get_station or dump_station. AUTHOR
Johannes Berg <johannes@sipsolutions.net> Author. COPYRIGHT
Kernel Hackers Manual 3.10 June 2014 ENUM STATION_INFO_FL(9)

Check Out this Related Man Page

mlib_GraphicsFillCircle(3MLIB)											    mlib_GraphicsFillCircle(3MLIB)

NAME
mlib_GraphicsFillCircle, mlib_GraphicsFillCircle_8, mlib_GraphicsFillCircle_32, mlib_GraphicsFillCircle_X_8, mlib_GraphicsFillCircle_X_32, mlib_GraphicsFillCircle_A_8, mlib_GraphicsFillCircle_A_32, mlib_GraphicsFillCircle_B_8, mlib_GraphicsFillCircle_B_32, mlib_GraphicsFillCir- cle_AB_8, mlib_GraphicsFillCircle_AB_32 - draw filled circle SYNOPSIS
cc [ flag... ] file... -lmlib [ library... ] #include <mlib.h> mlib_status mlib_GraphicsFillCircle_8(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c); mlib_status mlib_GraphicsFillCircle_32(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c); mlib_status mlib_GraphicsFillCircle_X_8(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c, mlib_s32 c2); mlib_status mlib_GraphicsFillCircle_X_32(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c, mlib_s32 c2); mlib_status mlib_GraphicsFillCircle_A_8(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c); mlib_status mlib_GraphicsFillCircle_A_32(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c); mlib_status mlib_GraphicsFillCircle_B_8(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c, mlib_s32 a); mlib_status mlib_GraphicsFillCircle_B_32(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c, mlib_s32 a); mlib_status mlib_GraphicsFillCircle_AB_8(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c, mlib_s32 a); mlib_status mlib_GraphicsFillCircle_AB_32(mlib_image *buffer, mlib_s16 x, mlib_s16 y, mlib_s32 r, mlib_s32 c, mlib_s32 a); Each of the mlib_GraphicsFillCircle_*() functions draws a filled circle with the center at (x, y) and radius r. Each of the mlib_GraphicsFillCircle_X_*() functions draws a filled circle in Xor mode as follows: data[x,y] ^= c ^ c2 Each of the mlib_GraphicsFillCircle_A_*() functions draws a filled circle with antialiasing. Each of the mlib_GraphicsFillCircle_B_*() functions draws a filled circle with alpha blending as follows: data[x,y] = (data[x,y] * (255 - a) + c * a) / 255 Each of the mlib_GraphicsFillCircle_AB_*() functions draws a filled circle with antialiasing and alpha blending. Each of the functions takes some of the following arguments: buffer Pointer to the image into which the function is drawing. x X coordinate of the center. y Y coordinate of the center. r Radius of the arc. c Color used in the drawing. c2 Alternation color. a Alpha value for blending. 0 <= a <= 255. Each of the functions returns MLIB_SUCCESS if successful. Otherwise it returns MLIB_FAILURE. See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ mlib_GraphicsFillArc(3MLIB), mlib_GraphicsFillEllipse(3MLIB), attributes(5) 3 Mar 2005 mlib_GraphicsFillCircle(3MLIB)
Man Page