Home
last modified time | relevance | path

Searched refs:esc (Results 1 – 25 of 46) sorted by relevance

12

/linux-5.19.10/arch/um/drivers/
Dslip_common.h17 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
98 slip->esc = 0; in slip_proto_init()
Dslip_common.c14 &slip->pos, &slip->esc); in slip_proto_read()
34 &slip->esc); in slip_proto_read()
Dslirp_user.c67 pri->slip.esc = 0; in slirp_open()
/linux-5.19.10/include/linux/
Dseq_file.h108 char *mangle_path(char *s, const char *p, const char *esc);
131 unsigned int flags, const char *esc);
134 unsigned int flags, const char *esc) in seq_escape_str() argument
136 seq_escape_mem(m, src, strlen(src), flags, esc); in seq_escape_str()
150 static inline void seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument
152 seq_escape_str(m, s, ESCAPE_OCTAL, esc); in seq_escape()
163 const struct path *root, const char *esc);
Dseq_buf.h152 extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc);
/linux-5.19.10/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.c291 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc) in hd44780_common_redefine_char() argument
309 if (!strchr(esc, ';')) in hd44780_common_redefine_char()
312 esc++; in hd44780_common_redefine_char()
314 cgaddr = *(esc++) - '0'; in hd44780_common_redefine_char()
321 while (*esc && cgoffset < 8) { in hd44780_common_redefine_char()
325 half = hex_to_bin(*esc++); in hd44780_common_redefine_char()
Dcharlcd.c203 char *esc = priv->esc_seq.buf + 2; in handle_lcd_special_code() local
207 switch (*esc) { in handle_lcd_special_code()
343 processed = lcd->ops->redefine_char(lcd, esc); in handle_lcd_special_code()
354 if (parse_xy(esc, &lcd->addr.x, &lcd->addr.y)) in handle_lcd_special_code()
Dhd44780_common.h32 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc);
Dcharlcd.h92 int (*redefine_char)(struct charlcd *lcd, char *esc);
/linux-5.19.10/fs/
Dseq_file.c375 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()
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()
470 int seq_path(struct seq_file *m, const struct path *path, const char *esc) in seq_path() argument
479 char *end = mangle_path(buf, p, esc); in seq_path()
498 int seq_file_path(struct seq_file *m, struct file *file, const char *esc) in seq_file_path() argument
500 return seq_path(m, &file->f_path, esc); in seq_file_path()
508 const struct path *root, const char *esc) in seq_path_root() argument
522 char *end = mangle_path(buf, p, esc); in seq_path_root()
[all …]
/linux-5.19.10/lib/
Dtest-string_helpers.c406 test_string_escape_overflow(const char *in, int p, unsigned int flags, const char *esc, in test_string_escape_overflow() argument
411 q_real = string_escape_mem(in, p, NULL, 0, flags, esc); in test_string_escape_overflow()
419 unsigned int flags, const char *esc) in test_string_escape() argument
439 if (flags & ESCAPE_NA && !(flags & ESCAPE_APPEND && esc)) { in test_string_escape()
463 q_real = string_escape_mem(in, p, out_real, out_size, flags, esc); in test_string_escape()
468 test_string_escape_overflow(in, p, flags, esc, q_test, name); in test_string_escape()
Dseq_buf.c270 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc) argument
281 char *end = mangle_path(buf, p, esc);
Dstring_helpers.c599 const char esc[] = "\f\n\r\t\v\a\e\\\""; in kstrdup_quotable() local
605 dlen = string_escape_mem(src, slen, NULL, 0, flags, esc); in kstrdup_quotable()
610 WARN_ON(string_escape_mem(src, slen, dst, dlen, flags, esc) != dlen); in kstrdup_quotable()
/linux-5.19.10/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-5.19.10/Documentation/devicetree/bindings/display/bridge/
Dnwl-dsi.yaml76 - description: dsi esc reset line
83 - const: esc
165 reset-names = "byte", "dpi", "esc", "pclk";
/linux-5.19.10/drivers/platform/x86/
Dasus-tf103c-dock.c281 u8 *esc, *buf = dock->kbd_buf; in tf103c_dock_report_toprow_kbd_hook() local
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-5.19.10/tools/arch/x86/include/asm/
Dinat.h82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
/linux-5.19.10/arch/x86/include/asm/
Dinat.h82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
/linux-5.19.10/Documentation/devicetree/bindings/display/exynos/
Dexynos_dsim.txt26 - samsung,esc-clock-frequency: specifies DSI frequency in escape mode
85 samsung,esc-clock-frequency = <20000000>;
/linux-5.19.10/arch/arm64/boot/dts/amlogic/
Dmeson-gxbb-p200.dts36 button-esc {
/linux-5.19.10/Documentation/devicetree/bindings/gpio/
Dgpio_oxnas.txt42 button-esc {
/linux-5.19.10/tools/scripts/
Dutilities.mak126 shell-wordify = $(if $(findstring $(newline),$(1)),$(_sw-esc-nl),$(shell-sq))
127 define _sw-esc-nl
/linux-5.19.10/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-5.19.10/drivers/s390/cio/
Dchsc.h31 u8 esc; member

12