| /kernel/linux/linux-5.10/tools/scripts/ |
| 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 …]
|
| /kernel/linux/linux-6.6/tools/scripts/ |
| 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 …]
|
| /kernel/linux/linux-5.10/arch/x86/tools/ |
| D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 130 # escape opcode table 134 eid = escape[ref] 141 # AVX/escape opcode table 269 if ("escape" == $2) { 275 if (ref in escape) 276 semantic_error("Redefine escape (" ref ")") 277 escape[ref] = geid 279 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 321 # check coprocessor escape : TODO [all …]
|
| /kernel/linux/linux-6.6/tools/arch/x86/tools/ |
| D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 130 # escape opcode table 134 eid = escape[ref] 141 # AVX/escape opcode table 269 if ("escape" == $2) { 275 if (ref in escape) 276 semantic_error("Redefine escape (" ref ")") 277 escape[ref] = geid 279 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 321 # check coprocessor escape : TODO [all …]
|
| /kernel/linux/linux-6.6/arch/x86/tools/ |
| D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 130 # escape opcode table 134 eid = escape[ref] 141 # AVX/escape opcode table 269 if ("escape" == $2) { 275 if (ref in escape) 276 semantic_error("Redefine escape (" ref ")") 277 escape[ref] = geid 279 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 321 # check coprocessor escape : TODO [all …]
|
| /kernel/linux/linux-5.10/tools/arch/x86/tools/ |
| D | gen-insn-attr-x86.awk | 21 eid = -1 # escape id 130 # escape opcode table 134 eid = escape[ref] 141 # AVX/escape opcode table 269 if ("escape" == $2) { 275 if (ref in escape) 276 semantic_error("Redefine escape (" ref ")") 277 escape[ref] = geid 279 table[idx] = "INAT_MAKE_ESCAPE(" escape[ref] ")" 321 # check coprocessor escape : TODO [all …]
|
| /kernel/linux/linux-5.10/drivers/input/joystick/ |
| D | spaceball.c | 57 int escape; member 135 * and end in 0x0d. It uses '^' as an escape for CR, XOFF and XON characters which 148 spaceball->escape = 0; in spaceball_interrupt() 151 if (!spaceball->escape) { in spaceball_interrupt() 152 spaceball->escape = 1; in spaceball_interrupt() 155 spaceball->escape = 0; in spaceball_interrupt() 160 if (spaceball->escape) { in spaceball_interrupt() 161 spaceball->escape = 0; in spaceball_interrupt() 166 if (spaceball->escape) in spaceball_interrupt() 167 spaceball->escape = 0; in spaceball_interrupt()
|
| /kernel/linux/linux-6.6/drivers/input/joystick/ |
| 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()
|
| /kernel/linux/linux-6.6/tools/include/nolibc/ |
| D | stdio.h | 219 char escape, lpref, c; in vfprintf() local 226 written = ofs = escape = lpref = 0; in vfprintf() 230 if (escape) { in vfprintf() 231 /* we're in an escape sequence, ofs == 1 */ in vfprintf() 232 escape = 0; in vfprintf() 287 /* long format prefix, maintain the escape */ in vfprintf() 290 escape = 1; in vfprintf() 297 /* not an escape sequence */ in vfprintf() 299 /* flush pending data on escape or end */ in vfprintf() 300 escape = 1; in vfprintf()
|
| /kernel/linux/linux-5.10/tools/testing/selftests/tc-testing/ |
| D | TdcResults.py | 110 from xml.sax.saxutils import escape 114 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id)) 115 xunit += 'name=\"{}\">\n'.format(escape(t.test_name)) 121 xunit += '\t{}\n'.format(escape(step)) 122 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg)) 125 xunit += '\t\t\t<error>\n{}\n'.format(escape(t.errormsg))
|
| /kernel/linux/linux-6.6/tools/testing/selftests/tc-testing/ |
| D | TdcResults.py | 110 from xml.sax.saxutils import escape 114 xunit += '\t\t<testcase classname=\"{}\" '.format(escape(t.test_id)) 115 xunit += 'name=\"{}\">\n'.format(escape(t.test_name)) 121 xunit += '\t{}\n'.format(escape(step)) 122 xunit += 'FAILURE: {}\n'.format(escape(t.failmsg)) 125 xunit += '\t\t\t<error>\n{}\n'.format(escape(t.errormsg))
|
| /kernel/linux/linux-5.10/drivers/gpu/drm/vmwgfx/device_include/ |
| D | svga_escape.h | 30 * Definitions for our own (vendor-specific) SVGA Escape commands. 38 * Namespace IDs for the escape command 47 * the first DWORD of escape data (after the nsID and size). As a 74 * this escape, use the SVGA_SCREEN_FULLSCREEN_HINT flag on your
|
| /kernel/linux/linux-6.6/drivers/auxdisplay/ |
| D | charlcd.c | 27 #define LCD_ESCAPE_LEN 24 /* Max chars for LCD escape command */ 28 #define LCD_ESCAPE_CHAR 27 /* Use char 27 for escape command */ 42 /* Current escape sequence and it's length or -1 if outside */ 369 /* first, we'll test if we're in escape mode */ in charlcd_write_char() 375 /* aborts any previous escape sequence */ in charlcd_write_char() 380 /* start of an escape sequence */ in charlcd_write_char() 432 * now we'll see if we're in an escape mode and if the current in charlcd_write_char() 433 * escape sequence can be understood. in charlcd_write_char() 454 /* LCD special escape codes */ in charlcd_write_char() 456 * flush the escape sequence if it's been processed in charlcd_write_char() [all …]
|
| /kernel/linux/common_modules/container_escape_detection/ |
| D | Kconfig | 5 bool "Enable container escape detection" 9 Build support for container escape detection.
|
| /kernel/linux/linux-5.10/drivers/input/serio/ |
| D | ps2mult.c | 42 bool escape; member 243 if (psm->escape) { in ps2mult_interrupt() 244 psm->escape = false; in ps2mult_interrupt() 253 dev_dbg(&serio->dev, "ESCAPE\n"); in ps2mult_interrupt() 254 psm->escape = true; in ps2mult_interrupt()
|
| /kernel/linux/linux-6.6/drivers/input/serio/ |
| D | ps2mult.c | 42 bool escape; member 243 if (psm->escape) { in ps2mult_interrupt() 244 psm->escape = false; in ps2mult_interrupt() 253 dev_dbg(&serio->dev, "ESCAPE\n"); in ps2mult_interrupt() 254 psm->escape = true; in ps2mult_interrupt()
|
| /kernel/linux/linux-6.6/kernel/debug/kdb/ |
| D | kdb_io.c | 52 * kdb_handle_escape() - validity check on an accumulated escape sequence. 53 * @buf: Accumulated escape characters to be examined. Note that buf 56 * @sz: Number of accumulated escape characters. 58 * Return: -1 if the escape sequence is unwanted, 0 if it is incomplete, 114 * most of the work done in this function is dealing with escape sequences. 116 * An escape key could be the start of a vt100 control sequence such as \e[D 120 * (interrupts are off), by multiple input sources. Escape sequence processing 123 * Return: The key pressed or a control code derived from an escape sequence. 129 char buf[4]; /* longest vt100 escape sequence is 4 bytes */ in kdb_getchar() 167 * input source) we set ourselves up to handle an escape in kdb_getchar() [all …]
|
| /kernel/linux/linux-5.10/kernel/debug/kdb/ |
| D | kdb_io.c | 53 * kdb_handle_escape() - validity check on an accumulated escape sequence. 54 * @buf: Accumulated escape characters to be examined. Note that buf 57 * @sz: Number of accumulated escape characters. 59 * Return: -1 if the escape sequence is unwanted, 0 if it is incomplete, 115 * most of the work done in this function is dealing with escape sequences. 117 * An escape key could be the start of a vt100 control sequence such as \e[D 121 * (interrupts are off), by multiple input sources. Escape sequence processing 124 * Return: The key pressed or a control code derived from an escape sequence. 130 char buf[4]; /* longest vt100 escape sequence is 4 bytes */ in kdb_getchar() 155 * input source) we set ourselves up to handle an escape in kdb_getchar() [all …]
|
| /kernel/linux/linux-5.10/drivers/auxdisplay/ |
| D | charlcd.c | 62 #define LCD_ESCAPE_LEN 24 /* Max chars for LCD escape command */ 63 #define LCD_ESCAPE_CHAR 27 /* Use char 27 for escape command */ 83 /* Current escape sequence and it's length or -1 if outside */ 558 /* first, we'll test if we're in escape mode */ in charlcd_write_char() 564 /* aborts any previous escape sequence */ in charlcd_write_char() 569 /* start of an escape sequence */ in charlcd_write_char() 622 * now we'll see if we're in an escape mode and if the current in charlcd_write_char() 623 * escape sequence can be understood. in charlcd_write_char() 644 /* LCD special escape codes */ in charlcd_write_char() 646 * flush the escape sequence if it's been processed in charlcd_write_char() [all …]
|
| /kernel/linux/linux-6.6/scripts/kconfig/tests/preprocess/escape/ |
| D | Kconfig | 16 # No need to escape '$' itself. 22 # You need a trick to escape '$' followed by '('
|
| /kernel/linux/linux-5.10/scripts/kconfig/tests/preprocess/escape/ |
| D | Kconfig | 16 # No need to escape '$' itself. 22 # You need a trick to escape '$' followed by '('
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/display/ |
| D | brcm,bcm2835-dsi0.yaml | 37 - const: escape 79 clock-names = "phy", "escape", "pixel";
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/display/ |
| D | brcm,bcm2835-dsi0.yaml | 36 - const: escape 75 clock-names = "phy", "escape", "pixel";
|
| /kernel/linux/linux-6.6/drivers/tty/vt/ |
| D | defkeymap.map | 15 keycode 1 = Escape Escape 24 control keycode 4 = Escape 68 control keycode 26 = Escape
|
| /kernel/linux/linux-5.10/drivers/tty/vt/ |
| D | defkeymap.map | 15 keycode 1 = Escape Escape 24 control keycode 4 = Escape 68 control keycode 26 = Escape
|