/linux-4.1.27/arch/um/drivers/ |
D | slip_common.h | 16 int *esc) in slip_unesc() argument 22 *esc = 0; in slip_unesc() 27 *esc = 1; in slip_unesc() 30 if(*esc){ in slip_unesc() 31 *esc = 0; in slip_unesc() 36 if(*esc){ in slip_unesc() 37 *esc = 0; in slip_unesc() 88 int esc; member 97 slip->esc = 0; in slip_proto_init()
|
D | slip_common.c | 13 &slip->pos, &slip->esc); in slip_proto_read() 33 &slip->esc); in slip_proto_read()
|
D | slirp_user.c | 67 pri->slip.esc = 0; in slirp_open()
|
D | slip_user.c | 153 pri->slip.esc = 0; in slip_open()
|
/linux-4.1.27/include/linux/ |
D | string_helpers.h | 51 unsigned int flags, const char *esc); 54 char *dst, size_t osz, const char *esc) in string_escape_mem_any_np() argument 56 return string_escape_mem(src, isz, dst, osz, ESCAPE_ANY_NP, esc); in string_escape_mem_any_np() 60 unsigned int flags, const char *esc) in string_escape_str() argument 62 return string_escape_mem(src, strlen(src), dst, sz, flags, esc); in string_escape_str() 66 size_t sz, const char *esc) in string_escape_str_any_np() argument 68 return string_escape_str(src, dst, sz, ESCAPE_ANY_NP, esc); in string_escape_str_any_np()
|
D | seq_file.h | 112 char *mangle_path(char *s, const char *p, const char *esc); 128 const struct path *root, const char *esc);
|
D | seq_buf.h | 126 extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc);
|
/linux-4.1.27/drivers/staging/panel/ |
D | panel.c | 1078 char *esc = lcd.esc_seq.buf + 2; in handle_lcd_special_code() local 1082 switch (*esc) { in handle_lcd_special_code() 1199 if (strchr(esc, ';') == NULL) in handle_lcd_special_code() 1202 esc++; in handle_lcd_special_code() 1204 cgaddr = *(esc++) - '0'; in handle_lcd_special_code() 1213 while (*esc && cgoffset < 8) { in handle_lcd_special_code() 1215 if (*esc >= '0' && *esc <= '9') { in handle_lcd_special_code() 1216 value |= (*esc - '0') << shift; in handle_lcd_special_code() 1217 } else if (*esc >= 'A' && *esc <= 'Z') { in handle_lcd_special_code() 1218 value |= (*esc - 'A' + 10) << shift; in handle_lcd_special_code() [all …]
|
/linux-4.1.27/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()
|
D | string_helpers.c | 488 unsigned int flags, const char *esc) in string_escape_mem() argument 492 bool is_dict = esc && *esc; in string_escape_mem() 509 (is_dict && !strchr(esc, c))) { in string_escape_mem()
|
D | seq_buf.c | 260 int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc) argument 271 char *end = mangle_path(buf, p, esc);
|
/linux-4.1.27/fs/ |
D | seq_file.c | 374 int seq_escape(struct seq_file *m, const char *s, const char *esc) in seq_escape() argument 381 if (!strchr(esc, c)) { in seq_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() 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() 494 const struct path *root, const char *esc) in seq_path_root() argument 508 char *end = mangle_path(buf, p, esc); in seq_path_root() 523 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) in seq_dentry() argument 532 char *end = mangle_path(buf, p, esc); in seq_dentry()
|
/linux-4.1.27/arch/x86/include/asm/ |
D | inat.h | 94 #define INAT_MAKE_ESCAPE(esc) (esc << INAT_ESC_OFFS) argument
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | exynos_dsim.txt | 39 - samsung,esc-clock-frequency: specifies DSI frequency in escape mode 79 samsung,esc-clock-frequency = <20000000>;
|
/linux-4.1.27/Documentation/filesystems/ |
D | seq_file.txt | 189 seq_escape(struct seq_file *m, const char *s, const char *esc); 193 which is in the string esc will be represented in octal form in the output. 198 const char *esc); 200 const struct path *root, const char *esc) 202 Here, path indicates the file of interest, and esc is a set of characters
|
/linux-4.1.27/tools/perf/config/ |
D | utilities.mak | 126 shell-wordify = $(if $(findstring $(newline),$(1)),$(_sw-esc-nl),$(shell-sq)) 127 define _sw-esc-nl
|
/linux-4.1.27/fs/gfs2/ |
D | lops.c | 777 u64 esc; in databuf_lo_scan_elements() local 786 esc = be64_to_cpu(*ptr++); in databuf_lo_scan_elements() 801 if (esc) { in databuf_lo_scan_elements()
|
/linux-4.1.27/drivers/bluetooth/ |
D | hci_h5.c | 473 const u8 delim = SLIP_DELIMITER, esc = SLIP_ESC; in h5_unslip_one_byte() local 487 byte = &esc; in h5_unslip_one_byte()
|
/linux-4.1.27/arch/arm/boot/dts/ |
D | exynos4210-trats.dts | 384 samsung,esc-clock-frequency = <20000000>;
|
D | exynos3250-rinato.dts | 161 samsung,esc-clock-frequency = <20000000>;
|
D | exynos4412-trats2.dts | 718 samsung,esc-clock-frequency = <20000000>;
|
/linux-4.1.27/Documentation/usb/ |
D | gadget_hid.txt | 156 {.opt = "--esc", .val = 0x29},
|
/linux-4.1.27/arch/x86/kvm/ |
D | emulate.c | 216 const struct escape *esc; member 3746 #define E(_f, _e) { .flags = ((_f) | Escape | ModRM), .u.esc = (_e) } 4630 opcode = opcode.u.esc->high[ctxt->modrm - 0xc0]; in x86_decode_insn() 4632 opcode = opcode.u.esc->op[(ctxt->modrm >> 3) & 7]; in x86_decode_insn()
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | Cards | 626 Media-Surfer (esc-kathrein.de)
|