| /linux/tools/scripts/ |
| H A D | utilities.mak | 8 # nl-escape 10 # Usage: escape = $(call nl-escape[,escape]) 16 nl-escape = $(if $(1),$(1),m822df3020w6a44id34bt574ctac44eb9f4n) 18 # escape-nl 20 # Usage: escaped-text = $(call escape-nl,text[,escape]) 32 escape-nl = $(subst $(newline),$(call nl-escape,$(2)),$(1)) 36 # Usage: text = $(call unescape-nl,escaped-text[,escape]) 38 # See escape-nl. 40 unescape-nl = $(subst $(call nl-escape,$(2)),$(newline),$(1)) 42 # shell-escape-nl [all …]
|
| /linux/arch/x86/tools/ |
| H A D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 144 # escape opcode table 148 eid = escape[ref] 155 # AVX/escape opcode table 300 if ("escape" == $2) { 306 if (ref in escape) 307 semantic_error("Redefine escape (" ref ")") 308 escape[ref] = geid 310 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 361 # check coprocessor escape : TODO [all …]
|
| /linux/tools/arch/x86/tools/ |
| H A D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 144 # escape opcode table 148 eid = escape[ref] 155 # AVX/escape opcode table 300 if ("escape" == $2) { 306 if (ref in escape) 307 semantic_error("Redefine escape (" ref ")") 308 escape[ref] = geid 310 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 361 # check coprocessor escape : TODO [all …]
|
| /linux/drivers/input/joystick/ |
| H A D | spaceball.c | 54 int escape; member 132 * and end in 0x0d. It uses '^' as an escape for CR, XOFF and XON characters which 145 spaceball->escape = 0; in spaceball_interrupt() 148 if (!spaceball->escape) { in spaceball_interrupt() 149 spaceball->escape = 1; in spaceball_interrupt() 152 spaceball->escape = 0; in spaceball_interrupt() 157 if (spaceball->escape) { in spaceball_interrupt() 158 spaceball->escape = 0; in spaceball_interrupt() 163 if (spaceball->escape) in spaceball_interrupt() 164 spaceball->escape = 0; in spaceball_interrupt()
|
| /linux/tools/testing/selftests/tc-testing/ |
| H A D | TdcResults.py | 111 from xml.sax.saxutils import escape 115 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id)) 116 xunit += 'name=\"{}\">\n'.format(escape(t.test_name)) 122 xunit += '\t{}\n'.format(escape(step)) 123 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg)) 126 xunit += '\t\t\t<error>\n{}\n'.format(escape(t.errormsg))
|
| /linux/tools/include/nolibc/ |
| H A D | stdio.h | 304 char escape, lpref, c; in __nolibc_printf() 311 written = ofs = escape = lpref = 0; in __nolibc_printf() 316 if (escape) { in __nolibc_printf() 317 /* we're in an escape sequence, ofs == 1 */ in __nolibc_printf() 318 escape = 0; in __nolibc_printf() 389 /* long format prefix, maintain the escape */ 394 escape = 1; 401 /* not an escape sequence */ 403 /* flush pending data on escape or end */ in fprintf() 404 escape in fprintf() 253 char escape, lpref, c; __nolibc_printf() local [all...] |
| /linux/drivers/input/serio/ |
| H A D | ps2mult.c | 42 bool escape; member 233 if (psm->escape) { in ps2mult_interrupt() 234 psm->escape = false; in ps2mult_interrupt() 243 dev_dbg(&serio->dev, "ESCAPE\n"); in ps2mult_interrupt() 244 psm->escape = true; in ps2mult_interrupt()
|
| /linux/kernel/debug/kdb/ |
| H A D | kdb_io.c | 49 * kdb_handle_escape() - validity check on an accumulated escape sequence. in kgdb_transition_check() 50 * @buf: Accumulated escape characters to be examined. Note that buf 53 * @sz: Number of accumulated escape characters. 55 * Return: -1 if the escape sequence is unwanted, 0 if it is incomplete, 111 * most of the work done in this function is dealing with escape sequences. 113 * An escape key could be the start of a vt100 control sequence such as \e[D 117 * (interrupts are off), by multiple input sources. Escape sequence processing 120 * Return: The key pressed or a control code derived from an escape sequence. 126 char buf[4]; /* longest vt100 escape sequence is 4 bytes */ in kdb_getchar() 164 * input source) we set ourselves up to handle an escape in kdb_getchar() [all...] |
| /linux/drivers/tty/vt/ |
| H A D | defkeymap.map | 15 keycode 1 = Escape Escape 24 control keycode 4 = Escape 68 control keycode 26 = Escape
|
| /linux/tools/lib/python/abi/ |
| H A D | abi_regex.py | 31 #: Escape only ASCII visible characters. 39 # Drop escape characters that might exist 42 # Temporarily escape dot characters 84 # Escape all other symbols
|
| /linux/scripts/kconfig/tests/preprocess/escape/ |
| H A D | Kconfig | 16 # No need to escape '$' itself. 22 # You need a trick to escape '$' followed by '('
|
| H A D | __init__.py | 3 Escape sequence tests.
|
| /linux/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_overlay.c | 62 struct vmw_escape_header escape; member 77 fill_escape(&cmd->escape, sizeof(cmd->flush)); in fill_flush() 100 struct vmw_escape_header escape; in vmw_overlay_send_put() member 128 fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1)); in vmw_overlay_send_put() 182 struct vmw_escape_header escape; in vmw_overlay_send_stop() member 201 fill_escape(&cmds->escape, sizeof(cmds->body)); in vmw_overlay_send_stop()
|
| /linux/Documentation/devicetree/bindings/display/ |
| H A D | brcm,bcm2835-dsi0.yaml | 37 - const: escape 79 clock-names = "phy", "escape", "pixel";
|
| /linux/drivers/acpi/acpica/ |
| H A D | utstring.c | 25 * DESCRIPTION: Dump an ASCII string with support for ACPI-defined escape 41 /* Escape sequences */ in acpi_ut_print_string() 88 /* Check for printable character or hex escape */ in acpi_ut_print_string()
|
| /linux/Documentation/devicetree/bindings/display/bridge/ |
| H A D | nwl-dsi.yaml | 43 - description: RX_ESC clock (used in escape mode) 44 - description: TX_ESC clock (used in escape mode)
|
| /linux/scripts/ |
| H A D | git-resolve.sh | 20 # First escape ALL regex special characters 23 # Also escape colons, parentheses, and hyphens as they are special in our context
|
| /linux/lib/ |
| H A D | string_helpers.c | 316 * '\e' - escape 509 * the selected escape class. If characters are included in @only 542 * '\e' - escape 550 * escape only non-printable characters, checked by isprint() 556 * escape only non-ascii characters, checked by isascii() 558 * escape only non-printable or non-ascii characters
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-driver-hid-appletb-kbd | 9 0 Escape key only
|
| /linux/drivers/s390/char/ |
| H A D | sclp_rw.c | 163 * processing of a message including escape characters, 176 * parse msg for escape sequences (\t,\v ...) and put formated in sclp_write() 277 default: /* no escape character */ in sclp_write()
|
| /linux/arch/x86/include/asm/ |
| H A D | emulate_prefix.h | 6 * Virt escape sequences to trigger instruction emulation;
|
| /linux/tools/arch/x86/include/asm/ |
| H A D | emulate_prefix.h | 6 * Virt escape sequences to trigger instruction emulation;
|
| /linux/Documentation/admin-guide/ |
| H A D | binfmt-misc.rst | 37 must escape any NUL bytes; parsing halts at the first one. In a shell 47 escape any NUL bytes; parsing halts at the first one. Ignored when using
|
| /linux/include/linux/ |
| H A D | console_struct.h | 128 unsigned int vc_state; /* Escape sequence parser state */ 129 unsigned int vc_npar,vc_par[NPAR]; /* Parameters of current escape sequence */
|
| /linux/include/uapi/linux/ |
| H A D | openat2.h | 34 paths which escape the dirfd. */
|