Enter the query into the form above.
API method:
GET /api/symbols?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
Assuming MODULES-PROVIDED lists kernel modules that are already provided--e.g., in the initrd, return the list of missing kernel modules that are required to access DEVICE.
Load Linux module from FILE, the name of a '.ko[.gz|.xz|.zst]' file; return true on success, false otherwise. When RECURSIVE? is true, load its dependencies first (à la 'modprobe'.) The actual files containing modules depended on are obtained by calling LOOKUP-MODULE with the module name. Modules whose name appears in BLACK-LIST are not loaded.
Return true if DEVICE has the chosen class.
Return the module name corresponding to FILE, stripping the trailing '.ko[.gz|.xz|.zst]' and normalizing it.
Return the list of modules that can be preloaded, and then the list of modules that can be postloaded, of the soft dependencies of module FILE.
Return true if DEVICE has the chosen class.
Traverse the '.ko[.gz|.xz|.zst]' files in DIRECTORY and create the corresponding 'modules.devname' file. This file contains information about modules that can be loaded on-demand, such as file system modules.
Return #t if MODULE is already loaded. MODULE must be a Linux module name, not a file name.
Return the list of module aliases required by DEVICE, a /dev file name, as in this example:
(device-module-aliases "/dev/sda") => ("scsi:t-0x00" "pci:v00008086d00009D03sv0000103Csd000080FAbc01sc06i01")
The modules corresponding to these aliases can then be found using 'matching-modules'.
Load MODULES and their dependencies from DIRECTORY, a directory containing the '.ko' files. The '.ko' suffix is automatically added to MODULES if needed.
Return true if DEVICE has the chosen class.
Return the list of aliases of module FILE.
Traverse the '.ko[.gz|.xz|.zst]' files in DIRECTORY and create the corresponding 'modules.alias' file.
Return the module name of FILE as it appears in its info section. Usually the module name is the same as the base name of FILE, modulo hyphens and minus the ".ko[.gz|.xz]" extension.
Return NAME with a '.ko[.gz|.xz|.zst]' suffix appended, unless it already has it.
Return the topologically-sorted list of file names of the modules depended on by FILES, recursively. File names of modules are determined by applying LOOKUP-MODULE to the module name.
Return the "canonical" name for MODULE, replacing hyphens with underscores.
Read the 'localedata/SUPPORTED' file from PORT. That file is actually a makefile snippet, with one locale per line, and a header that can be discarded.
Compute locale data for LOCALE and CODESET--e.g., "en_US" and "UTF-8"--with LOCALEDEF, and store it in DIRECTORY under NAME.
Compute the "normalized" variant of CODESET.
Wait for up to TIMEOUT seconds for PORT to accept connections in MARIONETTE. ADDRESS must be an expression that returns a socket address, typically a call to 'make-socket-address'. When PEEK? is true, attempt to read a byte from the socket upon connection; retry if that gives the end-of-file object.
Raise an error on failure.
Return a QEMU marionette--i.e., a virtual machine with open connections to the QEMU monitor and to the guest's backdoor REPL.