| /kernel/linux/linux-4.19/arch/um/drivers/ |
| D | slip_common.h | 13 #define SLIP_ESC_END 0334 /* ESC ESC_END means END 'data' */ 14 #define SLIP_ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */ 17 int *esc) in slip_unesc() argument 23 *esc = 0; in slip_unesc() 28 *esc = 1; in slip_unesc() 31 if(*esc){ in slip_unesc() 32 *esc = 0; in slip_unesc() 37 if(*esc){ in slip_unesc() 38 *esc = 0; in slip_unesc() 89 int esc; member [all …]
|
| D | slip_common.c | 14 &slip->pos, &slip->esc); in slip_proto_read() 34 &slip->esc); in slip_proto_read()
|
| /kernel/linux/linux-5.10/arch/um/drivers/ |
| D | slip_common.h | 13 #define SLIP_ESC_END 0334 /* ESC ESC_END means END 'data' */ 14 #define SLIP_ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */ 17 int *esc) in slip_unesc() argument 23 *esc = 0; in slip_unesc() 28 *esc = 1; in slip_unesc() 31 if(*esc){ in slip_unesc() 32 *esc = 0; in slip_unesc() 37 if(*esc){ in slip_unesc() 38 *esc = 0; in slip_unesc() 89 int esc; member [all …]
|
| D | slip_common.c | 14 &slip->pos, &slip->esc); in slip_proto_read() 34 &slip->esc); in slip_proto_read()
|
| /kernel/linux/linux-4.19/drivers/net/slip/ |
| D | slip.h | 45 #define ESC 0333 /* indicates byte stuffing */ macro 46 #define ESC_END 0334 /* ESC ESC_END means END 'data' */ 47 #define ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */ 79 #define SLF_ESCAPE 1 /* ESC received */
|
| /kernel/linux/linux-5.10/drivers/net/slip/ |
| D | slip.h | 45 #define ESC 0333 /* indicates byte stuffing */ macro 46 #define ESC_END 0334 /* ESC ESC_END means END 'data' */ 47 #define ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */ 79 #define SLF_ESCAPE 1 /* ESC received */
|
| /kernel/linux/linux-4.19/drivers/auxdisplay/ |
| D | charlcd.c | 378 char *esc = priv->esc_seq.buf + 2; in handle_lcd_special_code() local 382 switch (*esc) { in handle_lcd_special_code() 495 if (!strchr(esc, ';')) in handle_lcd_special_code() 498 esc++; in handle_lcd_special_code() 500 cgaddr = *(esc++) - '0'; in handle_lcd_special_code() 509 while (*esc && cgoffset < 8) { in handle_lcd_special_code() 511 if (*esc >= '0' && *esc <= '9') { in handle_lcd_special_code() 512 value |= (*esc - '0') << shift; in handle_lcd_special_code() 513 } else if (*esc >= 'A' && *esc <= 'F') { in handle_lcd_special_code() 514 value |= (*esc - 'A' + 10) << shift; in handle_lcd_special_code() [all …]
|
| /kernel/linux/linux-5.10/tools/testing/selftests/futex/include/ |
| D | logging.h | 30 #define ESC 0x1B, '[' macro 36 #define BRIGHT_GREEN ESC, BRIGHT, ';', GREEN, ESCEND 37 #define BRIGHT_YELLOW ESC, BRIGHT, ';', YELLOW, ESCEND 38 #define BRIGHT_RED ESC, BRIGHT, ';', RED, ESCEND 39 #define RESET_COLOR ESC, '0', 'm'
|
| /kernel/linux/linux-4.19/tools/testing/selftests/futex/include/ |
| D | logging.h | 34 #define ESC 0x1B, '[' macro 40 #define BRIGHT_GREEN ESC, BRIGHT, ';', GREEN, ESCEND 41 #define BRIGHT_YELLOW ESC, BRIGHT, ';', YELLOW, ESCEND 42 #define BRIGHT_RED ESC, BRIGHT, ';', RED, ESCEND 43 #define RESET_COLOR ESC, '0', 'm'
|
| /kernel/linux/linux-4.19/Documentation/s390/ |
| D | 3270.ChangeLog | 4 * In tubttybld.c, substantially revise ESC processing so that 5 ESC sequences (especially coloring ones) and the strings 44 * color support and minimal other ESC-sequence support is added.
|
| /kernel/linux/linux-5.10/Documentation/s390/ |
| D | 3270.ChangeLog | 4 * In tubttybld.c, substantially revise ESC processing so that 5 ESC sequences (especially coloring ones) and the strings 44 * color support and minimal other ESC-sequence support is added.
|
| /kernel/linux/linux-4.19/fs/ |
| D | seq_file.c | 372 * @esc: set of characters that need escaping 375 * @esc with usual octal escape. 378 void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument 384 ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc); in seq_escape() 418 * @esc: set of characters that need escaping 421 * @esc with usual octal escape. 425 char *mangle_path(char *s, const char *p, const char *esc) in mangle_path() argument 431 } else if (!strchr(esc, c)) { in mangle_path() 450 * @esc: set of characters to escape in the output 455 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument [all …]
|
| /kernel/linux/linux-5.10/fs/ |
| D | seq_file.c | 365 * @esc: set of characters that need escaping 368 * @esc with usual octal escape. 371 void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument 377 ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc); in seq_escape() 422 * @esc: set of characters that need escaping 425 * @esc with usual octal escape. 429 char *mangle_path(char *s, const char *p, const char *esc) in mangle_path() argument 435 } else if (!strchr(esc, c)) { in mangle_path() 454 * @esc: set of characters to escape in the output 459 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument [all …]
|
| /kernel/linux/linux-5.10/drivers/net/hamradio/ |
| D | mkiss.c | 36 #define ESC 0333 /* indicates byte stuffing */ macro 37 #define ESC_END 0334 /* ESC ESC_END means END 'data' */ 38 #define ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */ 59 #define AXF_ESCAPE 1 /* ESC received */ 175 *ptr++ = ESC; in kiss_esc() 178 case ESC: in kiss_esc() 179 *ptr++ = ESC; in kiss_esc() 217 *ptr++ = ESC; in kiss_esc_crc() 220 case ESC: in kiss_esc_crc() 221 *ptr++ = ESC; in kiss_esc_crc() [all …]
|
| /kernel/linux/linux-4.19/Documentation/admin-guide/ |
| D | unicode.rst | 26 LAT1_MAP Latin-1 (ISO 8859-1) ESC ( B 27 GRAF_MAP DEC VT100 pseudographics ESC ( 0 28 IBMPC_MAP IBM code page 437 ESC ( U 29 USER_MAP User defined ESC ( K 32 In particular, ESC ( U is no longer "straight to font", since the font
|
| /kernel/linux/linux-5.10/Documentation/admin-guide/ |
| D | unicode.rst | 26 LAT1_MAP Latin-1 (ISO 8859-1) ESC ( B 27 GRAF_MAP DEC VT100 pseudographics ESC ( 0 28 IBMPC_MAP IBM code page 437 ESC ( U 29 USER_MAP User defined ESC ( K 32 In particular, ESC ( U is no longer "straight to font", since the font
|
| /kernel/linux/linux-4.19/drivers/net/hamradio/ |
| D | mkiss.c | 46 #define ESC 0333 /* indicates byte stuffing */ macro 47 #define ESC_END 0334 /* ESC ESC_END means END 'data' */ 48 #define ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */ 69 #define AXF_ESCAPE 1 /* ESC received */ 185 *ptr++ = ESC; in kiss_esc() 188 case ESC: in kiss_esc() 189 *ptr++ = ESC; in kiss_esc() 227 *ptr++ = ESC; in kiss_esc_crc() 230 case ESC: in kiss_esc_crc() 231 *ptr++ = ESC; in kiss_esc_crc() [all …]
|
| /kernel/linux/linux-4.19/Documentation/devicetree/bindings/gpio/ |
| D | gpio_oxnas.txt | 42 button-esc { 43 label = "ESC";
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/gpio/ |
| D | gpio_oxnas.txt | 42 button-esc { 43 label = "ESC";
|
| /kernel/linux/linux-5.10/Documentation/devicetree/bindings/display/bridge/ |
| D | nwl-dsi.yaml | 76 - description: dsi esc reset line 83 - const: esc 192 reset-names = "byte", "dpi", "esc", "pclk";
|
| /kernel/linux/linux-5.10/drivers/s390/char/ |
| D | tty3270.c | 1329 * Esc [ 0 K Erase from current position to end of line inclusive 1330 * Esc [ 1 K Erase from beginning of line to current position inclusive 1331 * Esc [ 2 K Erase entire line (without moving cursor) 1359 * Esc [ 0 J Erase from current position to bottom of screen inclusive 1360 * Esc [ 1 J Erase from top of screen to current position inclusive 1361 * Esc [ 2 J Erase entire screen (without moving the cursor) 1391 * Esc [ <attr> ; <attr> ; ... m 1469 * Esc 7 Save Cursor Position 1470 * Esc 8 Restore Cursor Position 1471 * Esc [ Pn ; Pn ; .. m Set attributes [all …]
|
| /kernel/linux/linux-4.19/drivers/s390/char/ |
| D | tty3270.c | 1329 * Esc [ 0 K Erase from current position to end of line inclusive 1330 * Esc [ 1 K Erase from beginning of line to current position inclusive 1331 * Esc [ 2 K Erase entire line (without moving cursor) 1359 * Esc [ 0 J Erase from current position to bottom of screen inclusive 1360 * Esc [ 1 J Erase from top of screen to current position inclusive 1361 * Esc [ 2 J Erase entire screen (without moving the cursor) 1391 * Esc [ <attr> ; <attr> ; ... m 1469 * Esc 7 Save Cursor Position 1470 * Esc 8 Restore Cursor Position 1471 * Esc [ Pn ; Pn ; .. m Set attributes [all …]
|
| /kernel/linux/linux-4.19/scripts/kconfig/ |
| D | nconf.c | 62 "Go back to parent menu <Left> <Esc> <F5>\n" 63 "Close a help window <Enter> <Esc> <F5>\n" 65 "Close entry window, forget <Esc> <F5>\n" 72 "Exit menu search mode </> <Esc>\n" 98 "Press any of <Enter> <Esc> <q> <F5> <F9> to exit.\n" 141 "Exit a submenu to its parent menu with <Esc> or <Left>.\n" 145 "<Esc> always leaves the current window.\n" 158 "Exit a submenu to its parent menu with <Esc> or <Left>.\n" 162 "<Esc> always leaves the current window.\n" 175 "Press <Enter> to apply, <Esc> to cancel.", [all …]
|
| /kernel/linux/linux-5.10/scripts/kconfig/ |
| D | nconf.c | 62 "Go back to parent menu <Left> <Esc> <F5>\n" 63 "Close a help window <Enter> <Esc> <F5>\n" 65 "Close entry window, forget <Esc> <F5>\n" 72 "Exit menu search mode </> <Esc>\n" 98 "Press any of <Enter> <Esc> <q> <F5> <F9> to exit.\n" 141 "Exit a submenu to its parent menu with <Esc> or <Left>.\n" 145 "<Esc> always leaves the current window.\n" 158 "Exit a submenu to its parent menu with <Esc> or <Left>.\n" 162 "<Esc> always leaves the current window.\n" 175 "Press <Enter> to apply, <Esc> to cancel.", [all …]
|
| /kernel/linux/linux-4.19/lib/ |
| D | test-string_helpers.c | 264 test_string_escape_overflow(const char *in, int p, unsigned int flags, const char *esc, in test_string_escape_overflow() argument 269 q_real = string_escape_mem(in, p, NULL, 0, flags, esc); in test_string_escape_overflow() 277 unsigned int flags, const char *esc) in test_string_escape() argument 316 q_real = string_escape_mem(in, p, out_real, out_size, flags, esc); in test_string_escape() 321 test_string_escape_overflow(in, p, flags, esc, q_test, name); in test_string_escape()
|