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.
Return true if DEVICE has the chosen class.
Return the list of modules that FILE depends on. The returned list contains module names, not actual file names.
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 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'.
Return the list of PCI devices of the system (<pci-device> records).
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.
Traverse the '.ko[.gz|.xz|.zst]' files in DIRECTORY and create the corresponding 'modules.alias' file.
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 the "normalized" variant of CODESET.
Compute locale data for LOCALE and CODESET--e.g., "en_US" and "UTF-8"--with LOCALEDEF, and store it in DIRECTORY under NAME.
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.
Wait until FILE exists in MARIONETTE; READ its content and return it. If FILE has not shown up after TIMEOUT seconds, raise an error.
Return a SRFI-64 test runner that calls 'exit' upon 'test-end'. When LOG-DIRECTORY is specified, create log file within it.
Evaluate EXP in MARIONETTE's backdoor REPL. Return the result.
Run COMMAND in the QEMU monitor of MARIONETTE. COMMAND is a string such as "sendkey ctrl-alt-f1" or "screendump foo.ppm" (info "(QEMU) QEMU Monitor").
Return the default name of the QEMU command for SYSTEM.
Wait for TIMEOUT seconds or until the screen text on MARIONETTE matches PREDICATE, whichever comes first. Raise an error when TIMEOUT is exceeded. The error contains the recognized text along the preserved file name of the screen dump, which is relative to the current working directory. If PRE-ACTION is provided, it should be a thunk to call before each OCR attempt. Likewise for POST-ACTION, except it runs at the end of a successful OCR.
Type STR on MARIONETTE's keyboard, using the KEYSTROKES alist to map characters to actual keystrokes.