Home
last modified time | relevance | path

Searched full:esc (Results 1 – 25 of 147) sorted by relevance

123456

/linux-6.12.1/arch/um/drivers/
Dslip_common.h13 #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 …]
Dslip_common.c14 &slip->pos, &slip->esc); in slip_proto_read()
34 &slip->esc); in slip_proto_read()
/linux-6.12.1/drivers/net/slip/
Dslip.h47 #define ESC 0333 /* indicates byte stuffing */ macro
48 #define ESC_END 0334 /* ESC ESC_END means END 'data' */
49 #define ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */
81 #define SLF_ESCAPE 1 /* ESC received */
/linux-6.12.1/include/linux/
Dseq_file.h107 char *mangle_path(char *s, const char *p, const char *esc);
141 unsigned int flags, const char *esc);
144 unsigned int flags, const char *esc) in seq_escape_str() argument
146 seq_escape_mem(m, src, strlen(src), flags, esc); in seq_escape_str()
153 * @esc: set of characters that need escaping
156 * @esc with usual octal escape.
160 static inline void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument
162 seq_escape_str(m, s, ESCAPE_OCTAL, esc); in seq_escape()
173 const struct path *root, const char *esc);
/linux-6.12.1/tools/testing/selftests/futex/include/
Dlogging.h30 #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'
/linux-6.12.1/fs/
Dseq_file.c367 * @esc: set of characters that need escaping
370 * given class (defined by @flags and @esc) with printable escaped sequence.
375 unsigned int flags, const char *esc) in seq_escape_mem() argument
381 ret = string_escape_mem(src, len, buf, size, flags, esc); in seq_escape_mem()
433 * @esc: set of characters that need escaping
436 * @esc with usual octal escape.
440 char *mangle_path(char *s, const char *p, const char *esc) in mangle_path() argument
446 } else if (!strchr(esc, c)) { in mangle_path()
465 * @esc: set of characters to escape in the output
470 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument
[all …]
/linux-6.12.1/Documentation/arch/s390/
D3270.ChangeLog4 * 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.
D3270.rst271 This assigns the string ESC-k to PA3. Similarly, the string ESC-j
273 editing, ESC-k and ESC-j retrieve backward and forward history.
/linux-6.12.1/Documentation/translations/zh_TW/admin-guide/
Dunicode.rst34 LAT1_MAP Latin-1 (ISO 8859-1) ESC ( B
35 GRAF_MAP DEC VT100 pseudographics ESC ( 0
36 IBMPC_MAP IBM code page 437 ESC ( U
37 USER_MAP User defined ESC ( K
40 特別是 ESC ( U 不再是“直通字體”,因爲字體可能與IBM字符集完全不同。
/linux-6.12.1/Documentation/translations/zh_CN/admin-guide/
Dunicode.rst31 LAT1_MAP Latin-1 (ISO 8859-1) ESC ( B
32 GRAF_MAP DEC VT100 pseudographics ESC ( 0
33 IBMPC_MAP IBM code page 437 ESC ( U
34 USER_MAP User defined ESC ( K
37 特别是 ESC ( U 不再是“直通字体”,因为字体可能与IBM字符集完全不同。
/linux-6.12.1/drivers/auxdisplay/
Dlcd2s.c226 static int lcd2s_redefine_char(struct charlcd *lcd, char *esc) in lcd2s_redefine_char() argument
233 if (!strchr(esc, ';')) in lcd2s_redefine_char()
236 esc++; in lcd2s_redefine_char()
238 buf[1] = *(esc++) - '0'; in lcd2s_redefine_char()
245 while (*esc && i < LCD2S_CHARACTER_SIZE + 2) { in lcd2s_redefine_char()
249 half = hex_to_bin(*esc++); in lcd2s_redefine_char()
Dhd44780_common.c299 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc) in hd44780_common_redefine_char() argument
317 if (!strchr(esc, ';')) in hd44780_common_redefine_char()
320 esc++; in hd44780_common_redefine_char()
322 cgaddr = *(esc++) - '0'; in hd44780_common_redefine_char()
329 while (*esc && cgoffset < 8) { in hd44780_common_redefine_char()
333 half = hex_to_bin(*esc++); in hd44780_common_redefine_char()
/linux-6.12.1/drivers/net/hamradio/
Dmkiss.c38 #define ESC 0333 /* indicates byte stuffing */ macro
39 #define ESC_END 0334 /* ESC ESC_END means END 'data' */
40 #define ESC_ESC 0335 /* ESC ESC_ESC means ESC 'data' */
61 #define AXF_ESCAPE 1 /* ESC received */
177 *ptr++ = ESC; in kiss_esc()
180 case ESC: in kiss_esc()
181 *ptr++ = ESC; in kiss_esc()
219 *ptr++ = ESC; in kiss_esc_crc()
222 case ESC: in kiss_esc_crc()
223 *ptr++ = ESC; in kiss_esc_crc()
[all …]
/linux-6.12.1/Documentation/admin-guide/
Dunicode.rst25 LAT1_MAP Latin-1 (ISO 8859-1) ESC ( B
26 GRAF_MAP DEC VT100 pseudographics ESC ( 0
27 IBMPC_MAP IBM code page 437 ESC ( U
28 USER_MAP User defined ESC ( K
31 In particular, ESC ( U is no longer "straight to font", since the font
/linux-6.12.1/Documentation/devicetree/bindings/media/
Dnxp,imx8mq-mipi-csi2.yaml30 - description: esc is the Rx Escape Clock. This must be the same escape
38 - const: esc
133 clock-names = "core", "esc", "ui";
/linux-6.12.1/Documentation/devicetree/bindings/display/bridge/
Dnwl-dsi.yaml76 - description: dsi esc reset line
83 - const: esc
165 reset-names = "byte", "dpi", "esc", "pclk";
Dsamsung,mipi-dsim.yaml77 samsung,esc-clock-frequency:
141 - samsung,esc-clock-frequency
263 samsung,esc-clock-frequency = <16000000>;
/linux-6.12.1/scripts/kconfig/
Dnconf.c65 "Go back to parent menu <Left> <Esc> <F5>\n"
66 "Close a help window <Enter> <Esc> <F5>\n"
68 "Close entry window, forget <Esc> <F5>\n"
75 "Exit menu search mode </> <Esc>\n"
101 "Press any of <Enter> <Esc> <q> <F5> <F9> to exit.\n"
144 "Exit a submenu to its parent menu with <Esc> or <Left>.\n"
148 "<Esc> always leaves the current window.\n"
161 "Exit a submenu to its parent menu with <Esc> or <Left>.\n"
165 "<Esc> always leaves the current window.\n"
178 "Press <Enter> to apply, <Esc> to cancel.",
[all …]
Dmconf.c66 " Shortcut: Press <ESC><ESC> or <E> or <X> if there is no hotkey\n"
67 " using those letters. You may press a single <ESC>, but\n"
114 "o Press <E>, <X>, <q>, <Enter> or <Esc><Esc> to exit.\n"
189 "Press <Esc><Esc> to exit, <?> for Help, </> for Search. "
884 "(Press <ESC><ESC> to continue kernel configuration.)", in handle_exit()
/linux-6.12.1/drivers/s390/char/
Dcon3270.c1385 * Esc [ 0 K Erase from current position to end of line inclusive
1386 * Esc [ 1 K Erase from beginning of line to current position inclusive
1387 * Esc [ 2 K Erase entire line (without moving cursor)
1426 * Esc [ 0 J Erase from current position to bottom of screen inclusive
1427 * Esc [ 1 J Erase from top of screen to current position inclusive
1428 * Esc [ 2 J Erase entire screen (without moving the cursor)
1462 * Esc [ <attr> ; <attr> ; ... m
1546 * Esc 7 Save Cursor Position
1547 * Esc 8 Restore Cursor Position
1548 * Esc [ Pn ; Pn ; .. m Set attributes
[all …]
/linux-6.12.1/lib/
Dstring_helpers_kunit.c396 const char *in, int p, unsigned int flags, const char *esc, in test_string_escape_overflow() argument
401 q_real = string_escape_mem(in, p, NULL, 0, flags, esc); in test_string_escape_overflow()
407 unsigned int flags, const char *esc) in test_string_escape() argument
428 if (flags & ESCAPE_NA && !(flags & ESCAPE_APPEND && esc)) { in test_string_escape()
452 q_real = string_escape_mem(in, p, out_real, out_size, flags, esc); in test_string_escape()
457 test_string_escape_overflow(test, in, p, flags, esc, q_test, name); in test_string_escape()
/linux-6.12.1/drivers/platform/x86/
Dasus-tf103c-dock.c36 "change the default. Press AltGr + Esc to toggle at runtime.");
281 u8 *esc, *buf = dock->kbd_buf; in tf103c_dock_report_toprow_kbd_hook() local
296 /* Toggle fnlock on AltGr + Esc press */ in tf103c_dock_report_toprow_kbd_hook()
299 esc = memchr(buf, 0x29, size); in tf103c_dock_report_toprow_kbd_hook()
300 if (!dock->esc_pressed && esc) { in tf103c_dock_report_toprow_kbd_hook()
306 if (esc && dock->filter_esc) in tf103c_dock_report_toprow_kbd_hook()
307 *esc = 0; in tf103c_dock_report_toprow_kbd_hook()
311 dock->esc_pressed = esc != NULL; in tf103c_dock_report_toprow_kbd_hook()
/linux-6.12.1/scripts/kconfig/lxdialog/
Dutil.c512 * ncurses uses ESC to detect escaped char sequences. This resutl in
513 * a small timeout before ESC is actually delivered to the application.
514 * lxdialog suggest <ESC> <ESC> which is correctly translated to two
515 * times esc. But then we need to ignore the second esc to avoid stepping
/linux-6.12.1/Documentation/filesystems/
Dseq_file.rst242 seq_escape(struct seq_file *m, const char *s, const char *esc);
246 which is in the string esc will be represented in octal form in the output.
251 const char *esc);
253 const struct path *root, const char *esc)
255 Here, path indicates the file of interest, and esc is a set of characters
/linux-6.12.1/arch/arm64/boot/dts/amlogic/
Dmeson-gxbb-p200.dts43 button-esc {
44 label = "Esc";

123456