id
stringlengths
4
63
text
stringlengths
153
8.81M
wdt_start(9)
NAME wdt_start - SYNOPSIS int wdt_start (void ); ARGUMENTS void no arguments DESCRIPTION Start the watchdog driver. SEE ALSO Kernel file ./drivers/watchdog/wdt.c wdt_stop(9), wdt_ping(9), wdt_set_heartbeat(9), wdt_get_status(9), wdt_get_temperature(9), wdt_interrupt(9), wdt_write(9), wdt_ioctl(9), wdt_open(...
wdt_stop(9)
NAME wdt_stop - SYNOPSIS int wdt_stop (void ); ARGUMENTS void no arguments DESCRIPTION Stop the watchdog driver. SEE ALSO Kernel file ./drivers/watchdog/wdt.c wdt_start(9), wdt_ping(9), wdt_set_heartbeat(9), wdt_get_status(9), wdt_get_temperature(9), wdt_interrupt(9), wdt_write(9), wdt_ioctl(9), wdt_open(9),...
wdt_temp_open(9)
NAME wdt_temp_open - SYNOPSIS int wdt_temp_open (struct inode *inode , struct file *file ); ARGUMENTS inode inode of device file file handle to device DESCRIPTION The temperature device has been opened. SEE ALSO Kernel file ./drivers/watchdog/wdt.c wdt_start(9), wdt_stop(9), wdt_ping(9), w...
wdt_temp_read(9)
NAME wdt_temp_read - SYNOPSIS ssize_t wdt_temp_read (struct file *file , char __user *buf , size_t count , loff_t *ptr ); ARGUMENTS file file handle to the watchdog board buf buffer to write 1 byte into count length of buffer ptr offset (no seek allowed) DESCRIPTI...
wdt_temp_release(9)
NAME wdt_temp_release - SYNOPSIS int wdt_temp_release (struct inode *inode , struct file *file ); ARGUMENTS inode inode to board file file handle to board DESCRIPTION The temperature device has been closed. SEE ALSO Kernel file ./drivers/watchdog/wdt.c wdt_start(9), wdt_stop(9), wdt_ping(9...
wdt_write(9)
NAME wdt_write - SYNOPSIS ssize_t wdt_write (struct file *file , const char __user *buf , size_t count , loff_t *ppos ); ARGUMENTS file file handle to the watchdog buf buffer to write (unused as data does not matter here count count of bytes ppos pointer to the posi...
wdtpci_get_status(9)
NAME wdtpci_get_status - SYNOPSIS int wdtpci_get_status (int *status ); ARGUMENTS status the new status. DESCRIPTION Extract the status information from a WDT watchdog device. There are several board variants so we have to know which bits are valid. Some bits default to one and some to zero in order to be maxim...
wdtpci_interrupt(9)
NAME wdtpci_interrupt - SYNOPSIS irqreturn_t wdtpci_interrupt (int irq , void *dev_id ); ARGUMENTS irq Interrupt number dev_id Unused as we don't allow multiple devices. DESCRIPTION Handle an interrupt from the board. These are raised when the status map changes in what the board considers an in...
wdtpci_ioctl(9)
NAME wdtpci_ioctl - SYNOPSIS long wdtpci_ioctl (struct file *file , unsigned int cmd , unsigned long arg ); ARGUMENTS file file handle to the device cmd watchdog command arg argument pointer DESCRIPTION The watchdog API defines a common set of functions for all watchdogs accord...
wdtpci_notify_sys(9)
NAME wdtpci_notify_sys - SYNOPSIS int wdtpci_notify_sys (struct notifier_block *this , unsigned long code , void *unused ); ARGUMENTS this our notifier block code the event being reported unused unused DESCRIPTION Our notifier is called on system shutdowns. We want to turn the ca...
wdtpci_open(9)
NAME wdtpci_open - SYNOPSIS int wdtpci_open (struct inode *inode , struct file *file ); ARGUMENTS inode inode of device file file handle to device DESCRIPTION The watchdog device has been opened. The watchdog device is single open and on opening we load the counters. Counter zero is a 100Hz cas...
wdtpci_ping(9)
NAME wdtpci_ping - SYNOPSIS int wdtpci_ping (void ); ARGUMENTS void no arguments DESCRIPTION Reload counter one with the watchdog heartbeat. We don't bother reloading the cascade counter. SEE ALSO Kernel file ./drivers/watchdog/wdt_pci.c wdtpci_start(9), wdtpci_stop(9), wdtpci_set_heartbeat(9), wdtpci_...
wdtpci_release(9)
NAME wdtpci_release - SYNOPSIS int wdtpci_release (struct inode *inode , struct file *file ); ARGUMENTS inode inode to board file file handle to board DESCRIPTION The watchdog has a configurable API. There is a religious dispute between people who want their watchdog to be able to shut down and...
wdtpci_set_heartbeat(9)
NAME wdtpci_set_heartbeat - SYNOPSIS int wdtpci_set_heartbeat (int t ); ARGUMENTS t the new heartbeat value that needs to be set. DESCRIPTION Set a new heartbeat value for the watchdog device. If the heartbeat value is incorrect we keep the old value and return -EINVAL. If successful we return 0. SEE ALS...
wdtpci_start(9)
NAME wdtpci_start - SYNOPSIS int wdtpci_start (void ); ARGUMENTS void no arguments DESCRIPTION Start the watchdog driver. SEE ALSO Kernel file ./drivers/watchdog/wdt_pci.c wdtpci_stop(9), wdtpci_ping(9), wdtpci_set_heartbeat(9), wdtpci_get_status(9), wdtpci_interrupt(9), wdtpci_write(9), wdtpci_ioctl(...
wdtpci_stop(9)
NAME wdtpci_stop - SYNOPSIS int wdtpci_stop (void ); ARGUMENTS void no arguments DESCRIPTION Stop the watchdog driver. SEE ALSO Kernel file ./drivers/watchdog/wdt_pci.c wdtpci_start(9), wdtpci_ping(9), wdtpci_set_heartbeat(9), wdtpci_get_status(9), wdtpci_interrupt(9), wdtpci_write(9), wdtpci_ioctl(9),...
wdtpci_temp_open(9)
NAME wdtpci_temp_open - SYNOPSIS int wdtpci_temp_open (struct inode *inode , struct file *file ); ARGUMENTS inode inode of device file file handle to device DESCRIPTION The temperature device has been opened. SEE ALSO Kernel file ./drivers/watchdog/wdt_pci.c wdtpci_start(9), wdtpci_stop(9), ...
wdtpci_temp_read(9)
NAME wdtpci_temp_read - SYNOPSIS ssize_t wdtpci_temp_read (struct file *file , char __user *buf , size_t count , loff_t *ptr ); ARGUMENTS file file handle to the watchdog board buf buffer to write 1 byte into count length of buffer ptr offset (no seek allowed) DES...
wdtpci_temp_release(9)
NAME wdtpci_temp_release - SYNOPSIS int wdtpci_temp_release (struct inode *inode , struct file *file ); ARGUMENTS inode inode to board file file handle to board DESCRIPTION The temperature device has been closed. SEE ALSO Kernel file ./drivers/watchdog/wdt_pci.c wdtpci_start(9), wdtpci_stop(...
wdtpci_write(9)
NAME wdtpci_write - SYNOPSIS ssize_t wdtpci_write (struct file *file , const char __user *buf , size_t count , loff_t *ppos ); ARGUMENTS file file handle to the watchdog buf buffer to write (unused as data does not matter here count count of bytes ppos pointer to th...
wear_leveling_worker(9)
NAME wear_leveling_worker - wear-leveling worker function. SYNOPSIS int wear_leveling_worker (struct ubi_device *ubi , struct ubi_work *wrk , int shutdown ); ARGUMENTS ubi UBI device description object wrk the work object shutdown non-zero if the worker has to free memory and exit b...
weave(1)
NAME weave - translate WEB to TeX SYNOPSIS weave [-p] [-x] webfile[.web] [{changefile[.ch]|-} [outfile[.tex]]] DESCRIPTION This manual page is not meant to be exhaustive. The complete documentation for this version of TeX can be found in the info file or manual Web2C: A TeX implementation. The weave progra...
webmitm(8)
NAME webmitm - HTTP / HTTPS monkey-in-the-middle SYNOPSIS webmitm [-d] [host] DESCRIPTION webmitm transparently proxies and sniffs HTTP / HTTPS traffic redirected by dnsspoof(8), capturing most "secure" SSL-encrypted webmail logins and form submissions. OPTIONS -d Enable debugging mode. May be specified multiple...
webspy(8)
NAME webspy - display sniffed URLs in Netscape in real-time SYNOPSIS webspy [-i interface | -p pcapfile] host DESCRIPTION webspy sends URLs sniffed from a client to your local Netscape browser for display, updated in real-time (as the target surfs, your browser surfs along with them, automagically). Netscape must b...
wecho_wchar.3x(3)
NAME add_wch, wadd_wch, mvadd_wch, mvwadd_wch, echo_wchar, wecho_wchar - add a curses complex character to a window and advance the cursor SYNOPSIS #include <ncursesw/curses.h> int add_wch(const cchar_t *wch); int wadd_wch(WINDOW *win, const cchar_t *wch); int mvadd_wch(int y, int x, const cchar_...
wechochar.3x(3)
NAME addch, waddch, mvaddch, mvwaddch, echochar, wechochar - add a curses character to a window and advance the cursor SYNOPSIS #include <ncursesw/curses.h> int addch(const chtype ch); int waddch(WINDOW *win, const chtype ch); int mvaddch(int y, int x, const chtype ch); int mvwaddch(WINDOW...
wenclose.3x(3)
NAME has_mouse, getmouse, ungetmouse, mousemask, wenclose, mouse_trafo, wmouse_trafo, mouseinterval - get mouse events in curses SYNOPSIS #include <ncursesw/curses.h> typedef unsigned long mmask_t; typedef struct { short id; /* ID to distinguish multiple devices */ int x, ...
werase.3x(3)
NAME erase, werase, clear, wclear, clrtobot, wclrtobot, clrtoeol, wclrtoeol - clear all or part of a curses window SYNOPSIS #include <ncursesw/curses.h> int erase(void); int werase(WINDOW *win); int clear(void); int wclear(WINDOW *win); int clrtobot(void); int wclrtobot(WIN...
wesside-ng(8)
NAME wesside-ng - crack a WEP key of an open network without user intervention SYNOPSIS wesside-ng <options> DESCRIPTION wesside-ng is an auto-magic tool which incorporates a number of techniques to seamlessly obtain a WEP key in minutes. It first identifies a network, then proceeds to associate with it, obtain PRG...
wg(8)
NAME wg - set and retrieve configuration of WireGuard interfaces SYNOPSIS wg [ COMMAND ] [ OPTIONS ]... [ ARGS ]... DESCRIPTION wg is the configuration utility for getting and setting the configuration of WireGuard tunnel interfaces. The interfaces themselves can be added and removed using ip-link(8) and their IP a...
wg-quick(8)
NAME wg-quick - set up a WireGuard interface simply SYNOPSIS wg-quick [ up | down | save | strip ] [ CONFIG_FILE | INTERFACE ] DESCRIPTION This is an extremely simple script for easily bringing up a WireGuard interface, suitable for a few common use cases. Use up to add and set up an interface, and use down ...
wget(1)
NAME Wget - The non-interactive network downloader. SYNOPSIS wget [option]... [URL]... DESCRIPTION GNU Wget is a free utility for non-interactive download of files from the Web. It supports HTTP, HTTPS, and FTP protocols, as well as retrieval through HTTP proxies. Wget is non-interactive, meaning that it can...
wget_wch.3x(3)
NAME get_wch, wget_wch, mvget_wch, mvwget_wch, unget_wch - get (or push back) a wide character from curses terminal keyboard SYNOPSIS #include <ncursesw/curses.h> int get_wch(wint_t *wch); int wget_wch(WINDOW *win, wint_t *wch); int mvget_wch(int y, int x, wint_t *wch); int mvwget_wch(WIND...
wget_wstr.3x(3)
NAME get_wstr, getn_wstr, wget_wstr, wgetn_wstr, mvget_wstr, mvgetn_wstr, mvwget_wstr, mvwgetn_wstr - get a wide-character string from a curses terminal keyboard SYNOPSIS #include <ncursesw/curses.h> int get_wstr(wint_t *wstr); int getn_wstr(wint_t *wstr, int n); int wget_wstr(WINDOW *win, wint_t...
wgetbkgrnd.3x(3)
NAME bkgrnd, wbkgrnd, bkgrndset, wbkgrndset, getbkgrnd, wgetbkgrnd - manipulate background of a curses window of wide characters SYNOPSIS #include <ncursesw/curses.h> int bkgrnd(const cchar_t *wch); int wbkgrnd(WINDOW *win, const cchar_t *wch); void bkgrndset(const cchar_t *wch); void wbk...
wgetch.3x(3)
NAME getch, wgetch, mvgetch, mvwgetch, ungetch, has_key - get (or push back) characters from curses terminal keyboard SYNOPSIS #include <ncursesw/curses.h> int getch(void); int wgetch(WINDOW *win); int mvgetch(int y, int x); int mvwgetch(WINDOW *win, int y, int x); int ungetch(int ...
wgetdelay.3x(3)
NAME is_cleared, is_idlok, is_idcok, is_immedok, is_keypad, is_leaveok, is_nodelay, is_notimeout, is_pad, is_scrollok, is_subwin, is_syncok, wgetdelay, wgetparent, wgetscrreg - obtain curses window properties SYNOPSIS #include <ncursesw/curses.h> bool is_cleared(const WINDOW *win); bool is_idcok(const W...
wgetn_wstr.3x(3)
NAME get_wstr, getn_wstr, wget_wstr, wgetn_wstr, mvget_wstr, mvgetn_wstr, mvwget_wstr, mvwgetn_wstr - get a wide-character string from a curses terminal keyboard SYNOPSIS #include <ncursesw/curses.h> int get_wstr(wint_t *wstr); int getn_wstr(wint_t *wstr, int n); int wget_wstr(WINDOW *win, wint_t...
wgetnstr.3x(3)
NAME getstr, getnstr, wgetstr, wgetnstr, mvgetstr, mvgetnstr, mvwgetstr, mvwgetnstr - accept character strings from curses terminal keyboard SYNOPSIS #include <ncursesw/curses.h> int getstr(char *str); int getnstr(char *str, int n); int wgetstr(WINDOW *win, char *str); int wgetnstr(WINDOW ...
wgetparent.3x(3)
NAME is_cleared, is_idlok, is_idcok, is_immedok, is_keypad, is_leaveok, is_nodelay, is_notimeout, is_pad, is_scrollok, is_subwin, is_syncok, wgetdelay, wgetparent, wgetscrreg - obtain curses window properties SYNOPSIS #include <ncursesw/curses.h> bool is_cleared(const WINDOW *win); bool is_idcok(const W...
wgetscrreg.3x(3)
NAME is_cleared, is_idlok, is_idcok, is_immedok, is_keypad, is_leaveok, is_nodelay, is_notimeout, is_pad, is_scrollok, is_subwin, is_syncok, wgetdelay, wgetparent, wgetscrreg - obtain curses window properties SYNOPSIS #include <ncursesw/curses.h> bool is_cleared(const WINDOW *win); bool is_idcok(const W...
wgetstr.3x(3)
NAME getstr, getnstr, wgetstr, wgetnstr, mvgetstr, mvgetnstr, mvwgetstr, mvwgetnstr - accept character strings from curses terminal keyboard SYNOPSIS #include <ncursesw/curses.h> int getstr(char *str); int getnstr(char *str, int n); int wgetstr(WINDOW *win, char *str); int wgetnstr(WINDOW ...
what(1p)
PROLOG This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux. NAME what β€” identify SCCS files (DEVELOPMENT) SYNOPSIS what [-...
whatis(1)
NAME whatis - display one-line manual page descriptions SYNOPSIS whatis [-dlv?V] [-r|-w] [-s list] [-m system[,...]] [-M path] [-L locale] [-C file] name ... DESCRIPTION Each manual page has a short description available within it. whatis searches the manual page names and displays the manual page descriptions of an...
whereis(1)
NAME whereis - locate the binary, source, and manual page files for a command SYNOPSIS whereis [options] [-BMS directory... -f] name... DESCRIPTION whereis locates the binary, source and manual files for the specified command names. The supplied names are first stripped of leading pathname components. Prefixes of s. ...
which(1)
NAME which - shows the full path of (shell) commands. SYNOPSIS which [options] [--] programname [...] DESCRIPTION Which takes one or more arguments. For each of its arguments it prints to stdout the full path of the executables that would have been executed when this argument had been entered at the shell prompt. It ...
whitelist(9)
NAME whitelist - forcefully whitelist client SYNOPSIS void whitelist (struct mei_cl_device *cldev ); ARGUMENTS cldev me clients device SEE ALSO Kernel file ./drivers/misc/mei/bus-fixup.c number_of_connections(9), blacklist(9), mei_wd(9), mei_nfc_if_version(9), mei_nfc_radio_name(9), mei_nfc(9), vt_support(9), ...
whline.3x(3)
NAME border, wborder, box, hline, whline, vline, wvline, mvhline, mvwhline, mvvline, mvwvline - draw borders and lines in a curses window of characters SYNOPSIS #include <ncursesw/curses.h> int border(chtype ls, chtype rs, chtype ts, chtype bs, chtype tl, chtype tr, chtype bl, chtype br); ...
whline_set.3x(3)
NAME border_set, wborder_set, box_set, hline_set, whline_set, mvhline_set, mvwhline_set, vline_set, wvline_set, mvvline_set, mvwvline_set - draw borders and lines in a curses window of wide characters SYNOPSIS #include <ncursesw/curses.h> int border_set( const cchar_t *ls, const cchar_t *rs, ...
who(1)
NAME who - show who is logged on SYNOPSIS who [OPTION]... [ FILE | ARG1 ARG2 ] DESCRIPTION Print information about users who are currently logged in. -a, --all same as -b -d --login -p -r -t -T -u -b, --boot time of last system boot -d, --dead print de...
who(1p)
PROLOG This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux. NAME who β€” display who is on the system SYNOPSIS who [-mTu] [-...
whoami(1)
NAME whoami - print effective user name SYNOPSIS whoami [OPTION]... DESCRIPTION Print the user name associated with the current effective user ID. Same as id -un. --help display this help and exit --version output version information and exit AUTHOR Written by Richard Mlynarik. REPORT...
whois(1)
NAME whois - Whois user interface SYNOPSIS whois [OPTION...] OBJECT... DESCRIPTION client for the whois directory service RIPE-specific options -a search all databases -F fast raw output (implies -r) -g SOURCE:FIRST-LAST find updates from SOURCE from serial...
wifidump(1)
NAME wifidump - Provides an interface to capture Wi-Fi frames from a remote host through SSH. SYNOPSIS wifidump [ --help ] [ --version ] [ --extcap-interfaces ] [ --extcap-dlts ] [ --extcap-interface=<interface> ] [ --extcap-config ] [ --extcap-capture-filter=<capture filter> ] [ --capture ] [ --fifo=<path to file or ...
wil6210_debugfs_init_offset(9)
NAME wil6210_debugfs_init_offset - create set of debugfs files SYNOPSIS void wil6210_debugfs_init_offset (struct wil6210_priv *wil , struct dentry *dbg , void *base , const struct dbg_off * const tbl ); ARGUMENTS wil driver's context, used for printing dbg directory on the debugfs, where files...
wil6210_disconnect(9)
NAME wil6210_disconnect - disconnect one connection SYNOPSIS void wil6210_disconnect (struct wil6210_vif *vif , const u8 *bssid , u16 reason_code ); ARGUMENTS vif virtual interface context bssid peer to disconnect, NULL to disconnect all reason_code Reason code for the Disassociation fra...
wil6210_disconnect_complete(9)
NAME wil6210_disconnect_complete - handle disconnect event SYNOPSIS void wil6210_disconnect_complete (struct wil6210_vif *vif , const u8 *bssid , u16 reason_code ); ARGUMENTS vif virtual interface context bssid peer to disconnect, NULL to disconnect all reason_code Reason code for the Di...
wil_brd_process(9)
NAME wil_brd_process - process section from BRD file SYNOPSIS int wil_brd_process (struct wil6210_priv *wil , const void *data , size_t size ); ARGUMENTS wil -- undescribed -- data -- undescribed -- size -- undescribed -- DESCRIPTION Return error code SEE ALSO Kernel file ./dri...
wil_find_fw_mapping(9)
NAME wil_find_fw_mapping - find fw_mapping entry by section name SYNOPSIS struct fw_map * wil_find_fw_mapping (const char *section ); ARGUMENTS section section name DESCRIPTION Return pointer to section or NULL if not found SEE ALSO Kernel file ./drivers/net/wireless/ath/wil6210/wmi.c Kernel API(9), Kernel API(...
wil_fw_process(9)
NAME wil_fw_process - process section from FW file if load is true: Load the FW and uCode code and data to the corresponding device memory regions, otherwise only parse and look for capabilities SYNOPSIS int wil_fw_process (struct wil6210_priv *wil , const void *data , size_t size , bool load ); ARGUMENTS wil ...
wil_fw_verify(9)
NAME wil_fw_verify - verify firmware file validity SYNOPSIS int wil_fw_verify (struct wil6210_priv *wil , const u8 *data , size_t size ); ARGUMENTS wil -- undescribed -- data -- undescribed -- size -- undescribed -- DESCRIPTION perform various checks for the firmware file header...
wil_fw_verify_file_exists(9)
NAME wil_fw_verify_file_exists - checks if firmware file exist SYNOPSIS bool wil_fw_verify_file_exists (struct wil6210_priv *wil , const char *name ); ARGUMENTS wil driver context name firmware file name DESCRIPTION return value - boolean, true for success, false for failure SEE ALSO Kernel f...
wil_platform_init(9)
NAME wil_platform_init - initialize the platform driver SYNOPSIS void * wil_platform_init (struct device *dev , struct wil_platform_ops *ops , const struct wil_platform_rops *rops , void *wil_handle ); ARGUMENTS dev -- undescribed -- ops -- undescribed -- rops -- undescribed -- ...
wil_request_board(9)
NAME wil_request_board - Request board file SYNOPSIS int wil_request_board (struct wil6210_priv *wil , const char *name ); ARGUMENTS wil -- undescribed -- name -- undescribed -- DESCRIPTION Request board image from the file board file address and max size are read from FW file during initializ...
wil_request_firmware(9)
NAME wil_request_firmware - Request firmware SYNOPSIS int wil_request_firmware (struct wil6210_priv *wil , const char *name , bool load ); ARGUMENTS wil -- undescribed -- name -- undescribed -- load -- undescribed -- DESCRIPTION Request firmware image from the file If load is tr...
wilco_ec_add_sysfs(9)
NAME wilco_ec_add_sysfs - Create sysfs entries SYNOPSIS int wilco_ec_add_sysfs (struct wilco_ec_device *ec ); ARGUMENTS ec Wilco EC device DESCRIPTION wilco_ec_remove_sysfs needs to be called afterwards to perform the necessary cleanup. RETURN 0 on success or negative error code on failure. SEE ALSO Kerne...
wilco_ec_checksum(9)
NAME wilco_ec_checksum - Compute 8-bit checksum over data range. SYNOPSIS u8 wilco_ec_checksum (const void *data , size_t size ); ARGUMENTS data Data to checksum. size Number of bytes to checksum. RETURN 8-bit checksum of provided data. SEE ALSO Kernel file ./drivers/platform/chrome/wilco_ec/m...
wilco_ec_debugfs_probe(9)
NAME wilco_ec_debugfs_probe - Create the debugfs node SYNOPSIS int wilco_ec_debugfs_probe (struct platform_device *pdev ); ARGUMENTS pdev The platform device, probably created in core.c DESCRIPTION Try to create a debugfs node. If it fails, then we don't want to change behavior at all, this is for debugging a...
wilco_ec_get_byte_property(9)
NAME wilco_ec_get_byte_property - Retrieve a byte-size property from the EC. SYNOPSIS int wilco_ec_get_byte_property (struct wilco_ec_device *ec , u32 property_id , u8 *val ); ARGUMENTS ec Embedded Controller device. property_id Which property to retrieve. val The result value, will b...
wilco_ec_get_property(9)
NAME wilco_ec_get_property - Retrieve a property from the EC. SYNOPSIS int wilco_ec_get_property (struct wilco_ec_device *ec , struct wilco_ec_property_msg *prop_msg ); ARGUMENTS ec Embedded Controller device. prop_msg Message for request and response. DESCRIPTION The property_id field of |prop_m...
wilco_ec_mailbox(9)
NAME wilco_ec_mailbox - Send request to the EC and receive the response. SYNOPSIS int wilco_ec_mailbox (struct wilco_ec_device *ec , struct wilco_ec_message *msg ); ARGUMENTS ec Wilco EC device. msg Wilco EC message. RETURN Number of bytes received or negative error code on failure. SEE ALS...
wilco_ec_prepare(9)
NAME wilco_ec_prepare - Prepare the request structure for the EC. SYNOPSIS void wilco_ec_prepare (struct wilco_ec_message *msg , struct wilco_ec_request *rq ); ARGUMENTS msg EC message with request information. rq EC request structure to fill. SEE ALSO Kernel file ./drivers/platform/chrome/w...
wilco_ec_response_timed_out(9)
NAME wilco_ec_response_timed_out - Wait for EC response. SYNOPSIS bool wilco_ec_response_timed_out (struct wilco_ec_device *ec ); ARGUMENTS ec EC device. RETURN true if EC timed out, false if EC did not time out. SEE ALSO Kernel file ./drivers/platform/chrome/wilco_ec/mailbox.c wilco_ec_checksum(9), wilco_...
wilco_ec_set_property(9)
NAME wilco_ec_set_property - Store a property on the EC. SYNOPSIS int wilco_ec_set_property (struct wilco_ec_device *ec , struct wilco_ec_property_msg *prop_msg ); ARGUMENTS ec Embedded Controller device. prop_msg Message for request and response. DESCRIPTION The property_id, length, and data fie...
wilco_ec_transfer(9)
NAME wilco_ec_transfer - Perform actual data transfer. SYNOPSIS int wilco_ec_transfer (struct wilco_ec_device *ec , struct wilco_ec_message *msg , struct wilco_ec_request *rq ); ARGUMENTS ec EC device. msg EC message data for request and response. rq Filled in request structu...
wilco_keyboard_leds_init(9)
NAME wilco_keyboard_leds_init - Set up the keyboard backlight LEDs. SYNOPSIS int wilco_keyboard_leds_init (struct wilco_ec_device *ec ); ARGUMENTS ec EC device to query. DESCRIPTION After this call, the keyboard backlight will be exposed through a an LED device at /sys/class/leds. This may sleep because it...
win_wch.3x(3)
NAME in_wch, mvin_wch, mvwin_wch, win_wch - get a curses complex character from a window SYNOPSIS #include <ncursesw/curses.h> int in_wch(cchar_t *wch); int win_wch(WINDOW *win, cchar_t *wch); int mvin_wch(int y, int x, cchar_t *wch); int mvwin_wch(WINDOW *win, int y, int x, cchar_t *wch)...
win_wchnstr.3x(3)
NAME in_wchstr, in_wchnstr, win_wchstr, win_wchnstr, mvin_wchstr, mvin_wchnstr, mvwin_wchstr, mvwin_wchnstr - get a curses complex character string from a window SYNOPSIS #include <ncursesw/curses.h> int in_wchstr(cchar_t *wchstr); int win_wchstr(WINDOW *win, cchar_t *wchstr); int mvin_wchstr(int...
win_wchstr.3x(3)
NAME in_wchstr, in_wchnstr, win_wchstr, win_wchnstr, mvin_wchstr, mvin_wchnstr, mvwin_wchstr, mvwin_wchnstr - get a curses complex character string from a window SYNOPSIS #include <ncursesw/curses.h> int in_wchstr(cchar_t *wchstr); int win_wchstr(WINDOW *win, cchar_t *wchstr); int mvin_wchstr(int...
winbond_nor_select_die(9)
NAME winbond_nor_select_die - Set active die. SYNOPSIS int winbond_nor_select_die (struct spi_nor *nor , u8 die ); ARGUMENTS nor pointer to 'struct spi_nor'. die die to set active. DESCRIPTION Certain Winbond chips feature more than a single die. This is mostly hidden to the user, except ...
winbond_nor_set_4byte_addr_mode(9)
NAME winbond_nor_set_4byte_addr_mode - Set 4-byte address mode for Winbond flashes. SYNOPSIS int winbond_nor_set_4byte_addr_mode (struct spi_nor *nor , bool enable ); ARGUMENTS nor pointer to 'struct spi_nor'. enable true to enter the 4-byte address mode, false to exit the 4-byte address mode. R...
winbond_nor_write_ear(9)
NAME winbond_nor_write_ear - Write Extended Address Register. SYNOPSIS int winbond_nor_write_ear (struct spi_nor *nor , u8 ear ); ARGUMENTS nor pointer to 'struct spi_nor'. ear value to write to the Extended Address Register. RETURN 0 on success, -errno otherwise. SEE ALSO Kernel file ./driv...
winch.3x(3)
NAME inch, winch, mvinch, mvwinch - get a curses character from a window SYNOPSIS #include <ncursesw/curses.h> chtype inch(void); chtype winch(WINDOW *win); chtype mvinch(int y, int x); chtype mvwinch(WINDOW *win, int y, int x); DESCRIPTION These routines return the character, of type ch...
winchnstr.3x(3)
NAME inchstr, inchnstr, winchstr, winchnstr, mvinchstr, mvinchnstr, mvwinchstr, mvwinchnstr - get a curses character string from a window SYNOPSIS #include <ncursesw/curses.h> int inchstr(chtype *chstr); int inchnstr(chtype *chstr, int n); int winchstr(WINDOW *win, chtype *chstr); int winc...
winchstr.3x(3)
NAME inchstr, inchnstr, winchstr, winchnstr, mvinchstr, mvinchnstr, mvwinchstr, mvwinchnstr - get a curses character string from a window SYNOPSIS #include <ncursesw/curses.h> int inchstr(chtype *chstr); int inchnstr(chtype *chstr, int n); int winchstr(WINDOW *win, chtype *chstr); int winc...
winetricks(1)
NAME winetricks - manage virtual Windows environments using Wine SYNOPSIS winetricks [options] [verb ... ] DESCRIPTION winetricks is an easy way to work around common problems in Wine. It provides simple commands to tweak Wine settings, download and install missing Windows DLLs and fonts, or install various a...
winnstr.3x(3)
NAME instr, innstr, winstr, winnstr, mvinstr, mvinnstr, mvwinstr, mvwinnstr - get a string from a curses window SYNOPSIS #include <ncursesw/curses.h> int instr(char *str); int innstr(char *str, int n); int winstr(WINDOW *win, char *str); int winnstr(WINDOW *win, char *str, int n); ...
winnwstr.3x(3)
NAME inwstr, innwstr, winwstr, winnwstr, mvinwstr, mvinnwstr, mvwinwstr, mvwinnwstr - get a wide-character string from a curses window SYNOPSIS #include <ncursesw/curses.h> int inwstr(wchar_t *wstr); int innwstr(wchar_t *wstr, int n); int winwstr(WINDOW *win, wchar_t *wstr); int winnwstr(W...
wins_nwstr.3x(3)
NAME ins_wstr, ins_nwstr, wins_wstr, wins_nwstr, mvins_wstr, mvins_nwstr, mvwins_wstr, mvwins_nwstr - insert a wide-character string in a curses window SYNOPSIS #include <ncursesw/curses.h> int ins_wstr(const wchar_t *wstr); int ins_nwstr(const wchar_t *wstr, int n); int wins_wstr(WINDOW *win, co...
wins_wch.3x(3)
NAME ins_wch, mvins_wch, mvwins_wch, wins_wch - insert a curses complex character in a window SYNOPSIS #include <ncursesw/curses.h> int ins_wch(const cchar_t *wch); int wins_wch(WINDOW *win, const cchar_t *wch); int mvins_wch(int y, int x, const cchar_t *wch); int mvwins_wch(WINDOW *win, i...
wins_wstr.3x(3)
NAME ins_wstr, ins_nwstr, wins_wstr, wins_nwstr, mvins_wstr, mvins_nwstr, mvwins_wstr, mvwins_nwstr - insert a wide-character string in a curses window SYNOPSIS #include <ncursesw/curses.h> int ins_wstr(const wchar_t *wstr); int ins_nwstr(const wchar_t *wstr, int n); int wins_wstr(WINDOW *win, co...
winsch.3x(3)
NAME insch, winsch, mvinsch, mvwinsch - insert a curses character in a window SYNOPSIS #include <ncursesw/curses.h> int insch(chtype ch); int winsch(WINDOW *win, chtype ch); int mvinsch(int y, int x, chtype ch); int mvwinsch(WINDOW *win, int y, int x, chtype ch); DESCRIPTION These functi...
winsdelln.3x(3)
NAME deleteln, wdeleteln, insdelln, winsdelln, insertln, winsertln - delete or insert lines in a curses window SYNOPSIS #include <ncursesw/curses.h> int deleteln(void); int wdeleteln(WINDOW *win); int insdelln(int n); int winsdelln(WINDOW *win, int n); int insertln(void); i...
winsertln.3x(3)
NAME deleteln, wdeleteln, insdelln, winsdelln, insertln, winsertln - delete or insert lines in a curses window SYNOPSIS #include <ncursesw/curses.h> int deleteln(void); int wdeleteln(WINDOW *win); int insdelln(int n); int winsdelln(WINDOW *win, int n); int insertln(void); i...
winsnstr.3x(3)
NAME insstr, insnstr, winsstr, winsnstr, mvinsstr, mvinsnstr, mvwinsstr, mvwinsnstr - insert a string in a curses window SYNOPSIS #include <ncursesw/curses.h> int insstr(const char *str); int insnstr(const char *str, int n); int winsstr(WINDOW *win, const char *str); int winsnstr(WINDOW *win, const char *str, int n); ...
winsstr.3x(3)
NAME insstr, insnstr, winsstr, winsnstr, mvinsstr, mvinsnstr, mvwinsstr, mvwinsnstr - insert a string in a curses window SYNOPSIS #include <ncursesw/curses.h> int insstr(const char *str); int insnstr(const char *str, int n); int winsstr(WINDOW *win, const char *str); int winsnstr(WINDOW *win, const char *str, int n); ...
winstr.3x(3)
NAME instr, innstr, winstr, winnstr, mvinstr, mvinnstr, mvwinstr, mvwinnstr - get a string from a curses window SYNOPSIS #include <ncursesw/curses.h> int instr(char *str); int innstr(char *str, int n); int winstr(WINDOW *win, char *str); int winnstr(WINDOW *win, char *str, int n); ...
wint_t(3type)
NAME wint_t, WEOF - integer type capable of storing any wchar_t of WEOF LIBRARY Standard C library (libc) SYNOPSIS #include <wchar.h> typedef /* ... */ wint_t; #define WEOF /* ... */ #include <stdint.h> #define WINT_WIDTH /* ... */ #define WINT_MAX /* ... */ #...
winwstr.3x(3)
NAME inwstr, innwstr, winwstr, winnwstr, mvinwstr, mvinnwstr, mvwinwstr, mvwinnwstr - get a wide-character string from a curses window SYNOPSIS #include <ncursesw/curses.h> int inwstr(wchar_t *wstr); int innwstr(wchar_t *wstr, int n); int winwstr(WINDOW *win, wchar_t *wstr); int winnwstr(W...
wipe_adapter_list(9)
NAME wipe_adapter_list - wipe an HPI_ADAPTERS_LIST structure. SYNOPSIS void wipe_adapter_list (void ); ARGUMENTS void no arguments SEE ALSO Kernel file ./sound/pci/asihpi/hpicmn.c hpi_validate_response(9), hpi_find_adapter(9) April 2026 ...