/kernel/linux/linux-5.10/arch/um/drivers/ |
H A D | slip_common.h | 17 int *esc) in slip_unesc() 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() 16 slip_unesc(unsigned char c, unsigned char *buf, int *pos, int *esc) slip_unesc() argument
|
H A D | slip_common.c | 14 &slip->pos, &slip->esc); in slip_proto_read() 34 &slip->esc); in slip_proto_read()
|
/kernel/linux/linux-6.6/arch/um/drivers/ |
H A D | slip_common.h | 17 int *esc) in slip_unesc() 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() 16 slip_unesc(unsigned char c, unsigned char *buf, int *pos, int *esc) slip_unesc() argument
|
H A D | slip_common.c | 14 &slip->pos, &slip->esc); in slip_proto_read() 34 &slip->esc); in slip_proto_read()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | seq_file.h | 108 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() 136 seq_escape_mem(m, src, strlen(src), flags, esc); in seq_escape_str() 143 * @esc: set of characters that need escaping 146 * @esc with usual octal escape. 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); 133 seq_escape_str(struct seq_file *m, const char *src, unsigned int flags, const char *esc) seq_escape_str() argument
|
/kernel/linux/linux-6.6/drivers/auxdisplay/ |
H A D | hd44780_common.c | 299 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()
|
H A D | lcd2s.c | 226 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()
|
H A D | charlcd.c | 203 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()
|
H A D | hd44780_common.h | 32 int hd44780_common_redefine_char(struct charlcd *lcd, char *esc);
|
H A D | charlcd.h | 92 int (*redefine_char)(struct charlcd *lcd, char *esc);
|
/kernel/linux/linux-5.10/fs/ |
H A 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 487 seq_file_path(struct seq_file *m, struct file *file, const char *esc) seq_file_path() argument 496 seq_path_root(struct seq_file *m, const struct path *path, const struct path *root, const char *esc) seq_path_root() argument 526 seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) seq_dentry() argument [all...] |
/kernel/linux/linux-6.6/fs/ |
H A D | seq_file.c | 367 * @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() 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 374 seq_escape_mem(struct seq_file *m, const char *src, size_t len, unsigned int flags, const char *esc) seq_escape_mem() argument 498 seq_file_path(struct seq_file *m, struct file *file, const char *esc) seq_file_path() argument 507 seq_path_root(struct seq_file *m, const struct path *path, const struct path *root, const char *esc) seq_path_root() argument 537 seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) seq_dentry() argument [all...] |
/kernel/linux/linux-5.10/drivers/auxdisplay/ |
H A D | charlcd.c | 356 char *esc = priv->esc_seq.buf + 2; in handle_lcd_special_code() local 360 switch (*esc) { in handle_lcd_special_code() 473 if (!strchr(esc, ';')) in handle_lcd_special_code() 476 esc++; in handle_lcd_special_code() 478 cgaddr = *(esc++) - '0'; in handle_lcd_special_code() 487 while (*esc && cgoffset < 8) { in handle_lcd_special_code() 492 half = hex_to_bin(*esc++); in handle_lcd_special_code() 518 if (parse_xy(esc, &priv->addr.x, &priv->addr.y)) in handle_lcd_special_code()
|
/kernel/linux/linux-6.6/lib/ |
H A D | test-string_helpers.c | 406 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() 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() 417 test_string_escape(const char *name, const struct test_string_2 *s2, unsigned int flags, const char *esc) test_string_escape() argument
|
H A D | seq_buf.c | 296 * @esc: set of characters to escape in the output 302 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc) argument 313 char *end = mangle_path(buf, p, esc);
|
H A D | string_helpers.c | 643 const char esc[] = "\f\n\r\t\v\a\e\\\""; in kstrdup_quotable() local 649 dlen = string_escape_mem(src, slen, NULL, 0, flags, esc); in kstrdup_quotable() 654 WARN_ON(string_escape_mem(src, slen, dst, dlen, flags, esc) != dlen); in kstrdup_quotable()
|
/kernel/linux/linux-5.10/lib/ |
H A D | test-string_helpers.c | 286 test_string_escape_overflow(const char *in, int p, unsigned int flags, const char *esc, in test_string_escape_overflow() argument 291 q_real = string_escape_mem(in, p, NULL, 0, flags, esc); in test_string_escape_overflow() 299 unsigned int flags, const char *esc) in test_string_escape() 338 q_real = string_escape_mem(in, p, out_real, out_size, flags, esc); in test_string_escape() 343 test_string_escape_overflow(in, p, flags, esc, q_test, name); in test_string_escape() 297 test_string_escape(const char *name, const struct test_string_2 *s2, unsigned int flags, const char *esc) test_string_escape() argument
|
H A D | string_helpers.c | 574 const char esc[] = "\f\n\r\t\v\a\e\\\""; in kstrdup_quotable() local 580 dlen = string_escape_mem(src, slen, NULL, 0, flags, esc); in kstrdup_quotable() 585 WARN_ON(string_escape_mem(src, slen, dst, dlen, flags, esc) != dlen); in kstrdup_quotable()
|
H A D | seq_buf.c | 264 * @esc: set of characters to escape in the output 270 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc) argument 281 char *end = mangle_path(buf, p, esc);
|
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | inat.h | 82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS)
|
/kernel/linux/linux-5.10/tools/arch/x86/include/asm/ |
H A D | inat.h | 82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS)
|
/kernel/linux/linux-6.6/arch/x86/include/asm/ |
H A D | inat.h | 82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS)
|
/kernel/linux/linux-6.6/tools/arch/x86/include/asm/ |
H A D | inat.h | 82 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS)
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | seq_file.h | 107 char *mangle_path(char *s, const char *p, const char *esc); 129 void seq_escape(struct seq_file *m, const char *s, const char *esc); 140 const struct path *root, const char *esc);
|
/kernel/linux/linux-6.6/drivers/platform/x86/ |
H A D | asus-tf103c-dock.c | 281 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()
|