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 search send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
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 the list of names of currently loaded Linux modules.
Return the list of alias/module pairs read from ALIAS-FILE. Each alias is actually a pattern.
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.
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").
Type STR on MARIONETTE's keyboard, using the KEYSTROKES alist to map characters to actual keystrokes.
Return a SRFI-64 test runner that calls 'exit' upon 'test-end'. When LOG-DIRECTORY is specified, create log file within it.
Return a QEMU marionette--i.e., a virtual machine with open connections to the QEMU monitor and to the guest's backdoor REPL.
Wait for up to TIMEOUT seconds for FILE-NAME, a Unix domain socket, to accept connections in MARIONETTE. Raise an error on failure.
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.
Wait until FILE exists in MARIONETTE; READ its content and return it. If FILE has not shown up after TIMEOUT seconds, raise an error.