id
stringlengths
4
63
text
stringlengths
153
8.81M
xcan_current_error_state(9)
NAME xcan_current_error_state - Get current error state from HW SYNOPSIS enum can_state xcan_current_error_state (struct net_device *ndev ); ARGUMENTS ndev Pointer to net_device structure DESCRIPTION Checks the current CAN error state from the HW. Note that this only checks for ERROR_PASSIVE and ERROR_WARNING...
xcan_do_set_mode(9)
NAME xcan_do_set_mode - This sets the mode of the driver SYNOPSIS int xcan_do_set_mode (struct net_device *ndev , enum can_mode mode ); ARGUMENTS ndev Pointer to net_device structure mode Tells the mode of the driver DESCRIPTION This check the drivers state and calls the corresponding modes to ...
xcan_err_interrupt(9)
NAME xcan_err_interrupt - error frame Isr SYNOPSIS void xcan_err_interrupt (struct net_device *ndev , u32 isr ); ARGUMENTS ndev net_device pointer isr interrupt status register value DESCRIPTION This is the CAN error interrupt and it will check the type of error and forward the error frame to ...
xcan_get_auto_tdcv(9)
NAME xcan_get_auto_tdcv - Get Transmitter Delay Compensation Value SYNOPSIS int xcan_get_auto_tdcv (const struct net_device *ndev , u32 *tdcv ); ARGUMENTS ndev Pointer to net_device structure tdcv Pointer to TDCV value RETURN 0 on success SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c ...
xcan_get_berr_counter(9)
NAME xcan_get_berr_counter - error counter routine SYNOPSIS int xcan_get_berr_counter (const struct net_device *ndev , struct can_berr_counter *bec ); ARGUMENTS ndev Pointer to net_device structure bec Pointer to can_berr_counter structure DESCRIPTION This is the driver error counter routine. ...
xcan_interrupt(9)
NAME xcan_interrupt - CAN Isr SYNOPSIS irqreturn_t xcan_interrupt (int irq , void *dev_id ); ARGUMENTS irq irq number dev_id device id pointer DESCRIPTION This is the xilinx CAN Isr. It checks for the type of interrupt and invokes the corresponding ISR. RETURN IRQ_NONE - If CAN device is in sle...
xcan_open(9)
NAME xcan_open - Driver open routine SYNOPSIS int xcan_open (struct net_device *ndev ); ARGUMENTS ndev Pointer to net_device structure DESCRIPTION This is the driver open routine. RETURN 0 on success and failure value on error SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c struct xcan_priv(9), xca...
xcan_probe(9)
NAME xcan_probe - Platform registration call SYNOPSIS int xcan_probe (struct platform_device *pdev ); ARGUMENTS pdev Handle to the platform device structure DESCRIPTION This function does all the memory allocation and registration for the CAN device. RETURN 0 on success and failure value on error SEE ALSO K...
xcan_read_reg_be(9)
NAME xcan_read_reg_be - Read a value from the device register big endian SYNOPSIS u32 xcan_read_reg_be (const struct xcan_priv *priv , enum xcan_reg reg ); ARGUMENTS priv Driver private data structure reg Register offset DESCRIPTION Read data from the particular CAN register RETURN value read...
xcan_read_reg_le(9)
NAME xcan_read_reg_le - Read a value from the device register little endian SYNOPSIS u32 xcan_read_reg_le (const struct xcan_priv *priv , enum xcan_reg reg ); ARGUMENTS priv Driver private data structure reg Register offset DESCRIPTION Read data from the particular CAN register RETURN value r...
xcan_remove(9)
NAME xcan_remove - Unregister the device after releasing the resources SYNOPSIS void xcan_remove (struct platform_device *pdev ); ARGUMENTS pdev Handle to the platform device structure DESCRIPTION This function frees all the resources allocated to the device. RETURN 0 always SEE ALSO Kernel file ./drivers...
xcan_resume(9)
NAME xcan_resume - Resume from suspend SYNOPSIS int __maybe_unused xcan_resume (struct device *dev ); ARGUMENTS dev Address of the device structure DESCRIPTION Resume operation after suspend. RETURN 0 on success and failure value on error SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c struct xcan_...
xcan_runtime_resume(9)
NAME xcan_runtime_resume - Runtime resume from suspend SYNOPSIS int __maybe_unused xcan_runtime_resume (struct device *dev ); ARGUMENTS dev Address of the device structure DESCRIPTION Resume operation after suspend. RETURN 0 on success and failure value on error SEE ALSO Kernel file ./drivers/net/can/xil...
xcan_runtime_suspend(9)
NAME xcan_runtime_suspend - Runtime suspend method for the driver SYNOPSIS int __maybe_unused xcan_runtime_suspend (struct device *dev ); ARGUMENTS dev Address of the device structure DESCRIPTION Put the driver into low power mode. RETURN 0 always SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c stru...
xcan_rx(9)
NAME xcan_rx - Is called from CAN isr to complete the received frame processing SYNOPSIS int xcan_rx (struct net_device *ndev , int frame_base ); ARGUMENTS ndev Pointer to net_device structure frame_base Register offset to the frame to be read DESCRIPTION This function is invoked from the CAN isr(pol...
xcan_rx_fifo_get_next_frame(9)
NAME xcan_rx_fifo_get_next_frame - Get register offset of next RX frame SYNOPSIS int xcan_rx_fifo_get_next_frame (struct xcan_priv *priv ); ARGUMENTS priv Driver private data structure RETURN Register offset of the next frame in RX FIFO. SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c struct xcan_pri...
xcan_rx_int_mask(9)
NAME xcan_rx_int_mask - Get the mask for the receive interrupt SYNOPSIS u32 xcan_rx_int_mask (const struct xcan_priv *priv ); ARGUMENTS priv Driver private data structure RETURN The receive interrupt mask used by the driver on this HW SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c struct xcan_priv(9...
xcan_rx_poll(9)
NAME xcan_rx_poll - Poll routine for rx packets (NAPI) SYNOPSIS int xcan_rx_poll (struct napi_struct *napi , int quota ); ARGUMENTS napi napi structure pointer quota Max number of rx packets to be processed. DESCRIPTION This is the poll routine for rx part. It will process the packets maximux q...
xcan_set_bittiming(9)
NAME xcan_set_bittiming - CAN set bit timing routine SYNOPSIS int xcan_set_bittiming (struct net_device *ndev ); ARGUMENTS ndev Pointer to net_device structure DESCRIPTION This is the driver set bittiming routine. RETURN 0 on success and failure value on error SEE ALSO Kernel file ./drivers/net/can/xili...
xcan_set_error_state(9)
NAME xcan_set_error_state - Set new CAN error state SYNOPSIS void xcan_set_error_state (struct net_device *ndev , enum can_state new_state , struct can_frame *cf ); ARGUMENTS ndev Pointer to net_device structure new_state The new CAN state to be set cf Error frame to be populated or ...
xcan_start_xmit(9)
NAME xcan_start_xmit - Starts the transmission SYNOPSIS netdev_tx_t xcan_start_xmit (struct sk_buff *skb , struct net_device *ndev ); ARGUMENTS skb sk_buff pointer that contains data to be Txed ndev Pointer to net_device structure DESCRIPTION This function is invoked from upper layers to initi...
xcan_start_xmit_fifo(9)
NAME xcan_start_xmit_fifo - Starts the transmission (FIFO mode) SYNOPSIS int xcan_start_xmit_fifo (struct sk_buff *skb , struct net_device *ndev ); ARGUMENTS skb sk_buff pointer that contains data to be Txed ndev Pointer to net_device structure RETURN 0 on success, -ENOSPC if FIFO is full. SE...
xcan_start_xmit_mailbox(9)
NAME xcan_start_xmit_mailbox - Starts the transmission (mailbox mode) SYNOPSIS int xcan_start_xmit_mailbox (struct sk_buff *skb , struct net_device *ndev ); ARGUMENTS skb sk_buff pointer that contains data to be Txed ndev Pointer to net_device structure RETURN 0 on success, -ENOSPC if there is...
xcan_state_interrupt(9)
NAME xcan_state_interrupt - It will check the state of the CAN device SYNOPSIS void xcan_state_interrupt (struct net_device *ndev , u32 isr ); ARGUMENTS ndev net_device pointer isr interrupt status register value DESCRIPTION This will checks the state of the CAN device and puts the device into...
xcan_suspend(9)
NAME xcan_suspend - Suspend method for the driver SYNOPSIS int __maybe_unused xcan_suspend (struct device *dev ); ARGUMENTS dev Address of the device structure DESCRIPTION Put the driver into low power mode. RETURN 0 on success and failure value on error SEE ALSO Kernel file ./drivers/net/can/xilinx_can....
xcan_tx_interrupt(9)
NAME xcan_tx_interrupt - Tx Done Isr SYNOPSIS void xcan_tx_interrupt (struct net_device *ndev , u32 isr ); ARGUMENTS ndev net_device pointer isr Interrupt status register value SEE ALSO Kernel file ./drivers/net/can/xilinx_can.c struct xcan_priv(9), xcan_write_reg_le(9), xcan_read_reg_le...
xcan_update_error_state_after_rxtx(9)
NAME xcan_update_error_state_after_rxtx - Update CAN error state after RX/TX SYNOPSIS void xcan_update_error_state_after_rxtx (struct net_device *ndev ); ARGUMENTS ndev Pointer to net_device structure DESCRIPTION If the device is in a ERROR-WARNING or ERROR-PASSIVE state, check if the performed RX/TX has caus...
xcan_write_frame(9)
NAME xcan_write_frame - Write a frame to HW SYNOPSIS void xcan_write_frame (struct net_device *ndev , struct sk_buff *skb , int frame_offset ); ARGUMENTS ndev Pointer to net_device structure skb sk_buff pointer that contains data to be Txed frame_offset Register offse...
xcan_write_reg_be(9)
NAME xcan_write_reg_be - Write a value to the device register big endian SYNOPSIS void xcan_write_reg_be (const struct xcan_priv *priv , enum xcan_reg reg , u32 val ); ARGUMENTS priv Driver private data structure reg Register offset val Value to write at the Register offset DES...
xcan_write_reg_le(9)
NAME xcan_write_reg_le - Write a value to the device register little endian SYNOPSIS void xcan_write_reg_le (const struct xcan_priv *priv , enum xcan_reg reg , u32 val ); ARGUMENTS priv Driver private data structure reg Register offset val Value to write at the Register offset ...
xcanfd_rx(9)
NAME xcanfd_rx - Is called from CAN isr to complete the received frame processing SYNOPSIS int xcanfd_rx (struct net_device *ndev , int frame_base ); ARGUMENTS ndev Pointer to net_device structure frame_base Register offset to the frame to be read DESCRIPTION This function is invoked from the CAN isr...
xcb-examples(3)
NAME xcb-examples - manpage examples DESCRIPTION Many of the XCB manpages contain example code. These examples intend to explain how to use one particular part of XCB. They almost never represent a standalone (or even useful) program - X11 programs are relatively involved and thus be‐ yond the scope of a manpage examp...
xcb-requests(3)
NAME xcb-requests - about request manpages DESCRIPTION Every request in X11, like MapWindow, corresponds to a number of functions and data structures in XCB. For MapWindow, XCB provides the function xcb_map_window, which fills the xcb_map_window_request_t data structure and writes that to the X11 connection. Since the...
xcb_alloc_color(3)
NAME xcb_alloc_color - Allocate a color SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cookie_t xcb_alloc_color(xcb_connection_t *conn, xcb_colormap_t cmap, uint16_t red, uint16_t green, uint16_t blue); Reply datastructure typedef struct xcb_alloc_color_reply_t { ui...
xcb_alloc_color_cells(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_masks(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_masks_end(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_masks_length(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_pixels(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_pixels_end(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_pixels_length(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_reply(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_cells_unchecked(3)
NAME xcb_alloc_color_cells - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cells_cookie_t xcb_alloc_color_cells(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t planes); Reply datastructure typedef struct xcb_alloc_color_cells_reply_t...
xcb_alloc_color_planes(3)
NAME xcb_alloc_color_planes - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_planes_cookie_t xcb_alloc_color_planes(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t reds, uint16_t greens, uint16_t blues); Reply datastructure typedef st...
xcb_alloc_color_planes_pixels(3)
NAME xcb_alloc_color_planes - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_planes_cookie_t xcb_alloc_color_planes(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t reds, uint16_t greens, uint16_t blues); Reply datastructure typedef st...
xcb_alloc_color_planes_pixels_end(3)
NAME xcb_alloc_color_planes - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_planes_cookie_t xcb_alloc_color_planes(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t reds, uint16_t greens, uint16_t blues); Reply datastructure typedef st...
xcb_alloc_color_planes_pixels_length(3)
NAME xcb_alloc_color_planes - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_planes_cookie_t xcb_alloc_color_planes(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t reds, uint16_t greens, uint16_t blues); Reply datastructure typedef st...
xcb_alloc_color_planes_reply(3)
NAME xcb_alloc_color_planes - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_planes_cookie_t xcb_alloc_color_planes(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t reds, uint16_t greens, uint16_t blues); Reply datastructure typedef st...
xcb_alloc_color_planes_unchecked(3)
NAME xcb_alloc_color_planes - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_planes_cookie_t xcb_alloc_color_planes(xcb_connection_t *conn, uint8_t contiguous, xcb_colormap_t cmap, uint16_t colors, uint16_t reds, uint16_t greens, uint16_t blues); Reply datastructure typedef st...
xcb_alloc_color_reply(3)
NAME xcb_alloc_color - Allocate a color SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cookie_t xcb_alloc_color(xcb_connection_t *conn, xcb_colormap_t cmap, uint16_t red, uint16_t green, uint16_t blue); Reply datastructure typedef struct xcb_alloc_color_reply_t { ui...
xcb_alloc_color_unchecked(3)
NAME xcb_alloc_color - Allocate a color SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_color_cookie_t xcb_alloc_color(xcb_connection_t *conn, xcb_colormap_t cmap, uint16_t red, uint16_t green, uint16_t blue); Reply datastructure typedef struct xcb_alloc_color_reply_t { ui...
xcb_alloc_named_color(3)
NAME xcb_alloc_named_color - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_named_color_cookie_t xcb_alloc_named_color(xcb_connection_t *conn, xcb_colormap_t cmap, uint16_t name_len, const char *name); Reply datastructure typedef struct xcb_alloc_named_color_reply_t { uin...
xcb_alloc_named_color_reply(3)
NAME xcb_alloc_named_color - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_named_color_cookie_t xcb_alloc_named_color(xcb_connection_t *conn, xcb_colormap_t cmap, uint16_t name_len, const char *name); Reply datastructure typedef struct xcb_alloc_named_color_reply_t { ...
xcb_alloc_named_color_unchecked(3)
NAME xcb_alloc_named_color - SYNOPSIS #include <xcb/xproto.h> Request function xcb_alloc_named_color_cookie_t xcb_alloc_named_color(xcb_connection_t *conn, xcb_colormap_t cmap, uint16_t name_len, const char *name); Reply datastructure typedef struct xcb_alloc_named_color_reply_t { uin...
xcb_allow_events(3)
NAME xcb_allow_events - release queued events SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_allow_events(xcb_connection_t *conn, uint8_t mode, xcb_timestamp_t time); REQUEST ARGUMENTS conn The XCB connection to X11. mode One of the following values: ...
xcb_allow_events_checked(3)
NAME xcb_allow_events - release queued events SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_allow_events(xcb_connection_t *conn, uint8_t mode, xcb_timestamp_t time); REQUEST ARGUMENTS conn The XCB connection to X11. mode One of the following values: ...
xcb_bell(3)
NAME xcb_bell - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_bell(xcb_connection_t *conn, int8_t percent); REQUEST ARGUMENTS conn The XCB connection to X11. percent TODO: NOT YET DOCUMENTED. DESCRIPTION RETURN VALUE Returns an xcb_void_cookie_t. Errors (if any) h...
xcb_bell_checked(3)
NAME xcb_bell - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_bell(xcb_connection_t *conn, int8_t percent); REQUEST ARGUMENTS conn The XCB connection to X11. percent TODO: NOT YET DOCUMENTED. DESCRIPTION RETURN VALUE Returns an xcb_void_cookie_t. Errors (if any) h...
xcb_big_requests_enable(3)
NAME xcb_big_requests_enable - Enable the BIG-REQUESTS extension SYNOPSIS #include <xcb/bigreq.h> Request function xcb_big_requests_enable_cookie_t xcb_big_requests_enable(xcb_connection_t *conn, Reply datastructure typedef struct xcb_big_requests_enable_reply_t { uint8_t response_ty...
xcb_big_requests_enable_reply(3)
NAME xcb_big_requests_enable - Enable the BIG-REQUESTS extension SYNOPSIS #include <xcb/bigreq.h> Request function xcb_big_requests_enable_cookie_t xcb_big_requests_enable(xcb_connection_t *conn, Reply datastructure typedef struct xcb_big_requests_enable_reply_t { uint8_t response_ty...
xcb_big_requests_enable_unchecked(3)
NAME xcb_big_requests_enable - Enable the BIG-REQUESTS extension SYNOPSIS #include <xcb/bigreq.h> Request function xcb_big_requests_enable_cookie_t xcb_big_requests_enable(xcb_connection_t *conn, Reply datastructure typedef struct xcb_big_requests_enable_reply_t { uint8_t response_ty...
xcb_button_press_event_t(3)
NAME xcb_button_press_event_t - a mouse button was pressed/released SYNOPSIS #include <xcb/xproto.h> Event datastructure typedef struct xcb_button_press_event_t { uint8_t response_type; xcb_button_t detail; uint16_t sequence; xcb_timestamp_t time...
xcb_change_active_pointer_grab(3)
NAME xcb_change_active_pointer_grab - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_active_pointer_grab(xcb_connection_t *conn, xcb_cursor_t cursor, xcb_timestamp_t time, uint16_t event_mask); REQUEST ARGUMENTS conn The XCB connection to X11. cursor TODO: N...
xcb_change_active_pointer_grab_checked(3)
NAME xcb_change_active_pointer_grab - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_active_pointer_grab(xcb_connection_t *conn, xcb_cursor_t cursor, xcb_timestamp_t time, uint16_t event_mask); REQUEST ARGUMENTS conn The XCB connection to X11. cursor TODO: N...
xcb_change_gc(3)
NAME xcb_change_gc - change graphics context components SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_gc(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t value_mask, const void *value_list); REQUEST ARGUMENTS conn The XCB connection to X11. gc The gr...
xcb_change_gc_checked(3)
NAME xcb_change_gc - change graphics context components SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_gc(xcb_connection_t *conn, xcb_gcontext_t gc, uint32_t value_mask, const void *value_list); REQUEST ARGUMENTS conn The XCB connection to X11. gc The gr...
xcb_change_hosts(3)
NAME xcb_change_hosts - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_hosts(xcb_connection_t *conn, uint8_t mode, uint8_t family, uint16_t address_len, const uint8_t *address); REQUEST ARGUMENTS conn The XCB connection to X11. mode One of the following va...
xcb_change_hosts_checked(3)
NAME xcb_change_hosts - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_hosts(xcb_connection_t *conn, uint8_t mode, uint8_t family, uint16_t address_len, const uint8_t *address); REQUEST ARGUMENTS conn The XCB connection to X11. mode One of the following va...
xcb_change_keyboard_control(3)
NAME xcb_change_keyboard_control - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_keyboard_control(xcb_connection_t *conn, uint32_t value_mask, const void *value_list); REQUEST ARGUMENTS conn The XCB connection to X11. value_mask TODO: NOT YET ...
xcb_change_keyboard_control_checked(3)
NAME xcb_change_keyboard_control - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_keyboard_control(xcb_connection_t *conn, uint32_t value_mask, const void *value_list); REQUEST ARGUMENTS conn The XCB connection to X11. value_mask TODO: NOT YET ...
xcb_change_keyboard_mapping(3)
NAME xcb_change_keyboard_mapping - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_keyboard_mapping(xcb_connection_t *conn, uint8_t keycode_count, xcb_keycode_t first_keycode, uint8_t keysyms_per_keycode, const xcb_keysym_t *keysyms); REQUEST ARGUMENTS conn The XCB conn...
xcb_change_keyboard_mapping_checked(3)
NAME xcb_change_keyboard_mapping - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_keyboard_mapping(xcb_connection_t *conn, uint8_t keycode_count, xcb_keycode_t first_keycode, uint8_t keysyms_per_keycode, const xcb_keysym_t *keysyms); REQUEST ARGUMENTS conn The XCB conn...
xcb_change_pointer_control(3)
NAME xcb_change_pointer_control - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_pointer_control(xcb_connection_t *conn, int16_t acceleration_numerator, int16_t acceleration_denominator, int16_t threshold, uint8_t do_acceleration, uint8_t do_threshold); REQUEST ARGUMENTS co...
xcb_change_pointer_control_checked(3)
NAME xcb_change_pointer_control - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_pointer_control(xcb_connection_t *conn, int16_t acceleration_numerator, int16_t acceleration_denominator, int16_t threshold, uint8_t do_acceleration, uint8_t do_threshold); REQUEST ARGUMENTS co...
xcb_change_property(3)
NAME xcb_change_property - Changes a window property SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_property(xcb_connection_t *conn, uint8_t mode, xcb_window_t window, xcb_atom_t property, xcb_atom_t type, uint8_t format, uint32_t data_len, const void *data); REQUEST ARGUME...
xcb_change_property_checked(3)
NAME xcb_change_property - Changes a window property SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_property(xcb_connection_t *conn, uint8_t mode, xcb_window_t window, xcb_atom_t property, xcb_atom_t type, uint8_t format, uint32_t data_len, const void *data); REQUEST ARGUME...
xcb_change_save_set(3)
NAME xcb_change_save_set - Changes a client's save set SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_save_set(xcb_connection_t *conn, uint8_t mode, xcb_window_t window); REQUEST ARGUMENTS conn The XCB connection to X11. mode One of the following values: ...
xcb_change_save_set_checked(3)
NAME xcb_change_save_set - Changes a client's save set SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_save_set(xcb_connection_t *conn, uint8_t mode, xcb_window_t window); REQUEST ARGUMENTS conn The XCB connection to X11. mode One of the following values: ...
xcb_change_window_attributes(3)
NAME xcb_change_window_attributes - change window attributes SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_window_attributes(xcb_connection_t *conn, xcb_window_t window, uint32_t value_mask, const void *value_list); REQUEST ARGUMENTS conn The XCB connection to X11. ...
xcb_change_window_attributes_checked(3)
NAME xcb_change_window_attributes - change window attributes SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_change_window_attributes(xcb_connection_t *conn, xcb_window_t window, uint32_t value_mask, const void *value_list); REQUEST ARGUMENTS conn The XCB connection to X11. ...
xcb_circulate_notify_event_t(3)
NAME xcb_circulate_notify_event_t - NOT YET DOCUMENTED SYNOPSIS #include <xcb/xproto.h> Event datastructure typedef struct xcb_circulate_notify_event_t { uint8_t response_type; uint8_t pad0; uint16_t sequence; xcb_window_t event; xcb_windo...
xcb_circulate_window(3)
NAME xcb_circulate_window - Change window stacking order SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_circulate_window(xcb_connection_t *conn, uint8_t direction, xcb_window_t window); REQUEST ARGUMENTS conn The XCB connection to X11. direction One of the following v...
xcb_circulate_window_checked(3)
NAME xcb_circulate_window - Change window stacking order SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_circulate_window(xcb_connection_t *conn, uint8_t direction, xcb_window_t window); REQUEST ARGUMENTS conn The XCB connection to X11. direction One of the following v...
xcb_clear_area(3)
NAME xcb_clear_area - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_clear_area(xcb_connection_t *conn, uint8_t exposures, xcb_window_t window, int16_t x, int16_t y, uint16_t width, uint16_t height); REQUEST ARGUMENTS conn The XCB connection to X11. exposures TODO: NO...
xcb_clear_area_checked(3)
NAME xcb_clear_area - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_clear_area(xcb_connection_t *conn, uint8_t exposures, xcb_window_t window, int16_t x, int16_t y, uint16_t width, uint16_t height); REQUEST ARGUMENTS conn The XCB connection to X11. exposures TODO: NO...
xcb_client_message_event_t(3)
NAME xcb_client_message_event_t - NOT YET DOCUMENTED SYNOPSIS #include <xcb/xproto.h> Event datastructure typedef struct xcb_client_message_event_t { uint8_t response_type; uint8_t format; uint16_t sequence; xcb...
xcb_close_font(3)
NAME xcb_close_font - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_close_font(xcb_connection_t *conn, xcb_font_t font); REQUEST ARGUMENTS conn The XCB connection to X11. font TODO: NOT YET DOCUMENTED. DESCRIPTION RETURN VALUE Returns an xcb_void_cookie_t. Erro...
xcb_close_font_checked(3)
NAME xcb_close_font - SYNOPSIS #include <xcb/xproto.h> Request function xcb_void_cookie_t xcb_close_font(xcb_connection_t *conn, xcb_font_t font); REQUEST ARGUMENTS conn The XCB connection to X11. font TODO: NOT YET DOCUMENTED. DESCRIPTION RETURN VALUE Returns an xcb_void_cookie_t. Erro...
xcb_colormap_notify_event_t(3)
NAME xcb_colormap_notify_event_t - the colormap for some window changed SYNOPSIS #include <xcb/xproto.h> Event datastructure typedef struct xcb_colormap_notify_event_t { uint8_t response_type; uint8_t pad0; uint16_t sequence; xcb_window_t win...
xcb_composite_create_region_from_border_clip(3)
NAME xcb_composite_create_region_from_border_clip - SYNOPSIS #include <xcb/composite.h> Request function xcb_void_cookie_t xcb_composite_create_region_from_border_clip(xcb_connection_t *conn, xcb_xfixes_region_t region, xcb_window_t window); REQUEST ARGUMENTS conn The XCB connection to X11. r...
xcb_composite_create_region_from_border_clip_checked(3)
NAME xcb_composite_create_region_from_border_clip - SYNOPSIS #include <xcb/composite.h> Request function xcb_void_cookie_t xcb_composite_create_region_from_border_clip(xcb_connection_t *conn, xcb_xfixes_region_t region, xcb_window_t window); REQUEST ARGUMENTS conn The XCB connection to X11. r...
xcb_composite_get_overlay_window(3)
NAME xcb_composite_get_overlay_window - SYNOPSIS #include <xcb/composite.h> Request function xcb_composite_get_overlay_window_cookie_t xcb_composite_get_overlay_window(xcb_connection_t *conn, xcb_window_t window); Reply datastructure typedef struct xcb_composite_get_overlay_window_reply_t { ...
xcb_composite_get_overlay_window_reply(3)
NAME xcb_composite_get_overlay_window - SYNOPSIS #include <xcb/composite.h> Request function xcb_composite_get_overlay_window_cookie_t xcb_composite_get_overlay_window(xcb_connection_t *conn, xcb_window_t window); Reply datastructure typedef struct xcb_composite_get_overlay_window_reply_t { ...
xcb_composite_get_overlay_window_unchecked(3)
NAME xcb_composite_get_overlay_window - SYNOPSIS #include <xcb/composite.h> Request function xcb_composite_get_overlay_window_cookie_t xcb_composite_get_overlay_window(xcb_connection_t *conn, xcb_window_t window); Reply datastructure typedef struct xcb_composite_get_overlay_window_reply_t { ...
xcb_composite_name_window_pixmap(3)
NAME xcb_composite_name_window_pixmap - SYNOPSIS #include <xcb/composite.h> Request function xcb_void_cookie_t xcb_composite_name_window_pixmap(xcb_connection_t *conn, xcb_window_t window, xcb_pixmap_t pixmap); REQUEST ARGUMENTS conn The XCB connection to X11. window TODO: NOT YET DOCUMENT...
xcb_composite_name_window_pixmap_checked(3)
NAME xcb_composite_name_window_pixmap - SYNOPSIS #include <xcb/composite.h> Request function xcb_void_cookie_t xcb_composite_name_window_pixmap(xcb_connection_t *conn, xcb_window_t window, xcb_pixmap_t pixmap); REQUEST ARGUMENTS conn The XCB connection to X11. window TODO: NOT YET DOCUMENT...
xcb_composite_query_version(3)
NAME xcb_composite_query_version - Negotiate the version of Composite SYNOPSIS #include <xcb/composite.h> Request function xcb_composite_query_version_cookie_t xcb_composite_query_version(xcb_connection_t *conn, uint32_t client_major_version, uint32_t client_minor_version); Reply datastructure t...
xcb_composite_query_version_reply(3)
NAME xcb_composite_query_version - Negotiate the version of Composite SYNOPSIS #include <xcb/composite.h> Request function xcb_composite_query_version_cookie_t xcb_composite_query_version(xcb_connection_t *conn, uint32_t client_major_version, uint32_t client_minor_version); Reply datastructure t...
xcb_composite_query_version_unchecked(3)
NAME xcb_composite_query_version - Negotiate the version of Composite SYNOPSIS #include <xcb/composite.h> Request function xcb_composite_query_version_cookie_t xcb_composite_query_version(xcb_connection_t *conn, uint32_t client_major_version, uint32_t client_minor_version); Reply datastructure t...
xcb_composite_redirect_subwindows(3)
NAME xcb_composite_redirect_subwindows - Redirect all current and future children of ‘window’ SYNOPSIS #include <xcb/composite.h> Request function xcb_void_cookie_t xcb_composite_redirect_subwindows(xcb_connection_t *conn, xcb_window_t window, uint8_t update); REQUEST ARGUMENTS conn The XCB connectio...