esc                14 arch/um/drivers/slip_common.c 					  &slip->pos, &slip->esc);
esc                34 arch/um/drivers/slip_common.c 				  &slip->esc);
esc                17 arch/um/drivers/slip_common.h                              int *esc)
esc                23 arch/um/drivers/slip_common.h 		*esc = 0;
esc                28 arch/um/drivers/slip_common.h 		*esc = 1;
esc                31 arch/um/drivers/slip_common.h 		if(*esc){
esc                32 arch/um/drivers/slip_common.h 			*esc = 0;
esc                37 arch/um/drivers/slip_common.h 		if(*esc){
esc                38 arch/um/drivers/slip_common.h 			*esc = 0;
esc                89 arch/um/drivers/slip_common.h 	int esc;
esc                98 arch/um/drivers/slip_common.h 	slip->esc = 0;
esc               153 arch/um/drivers/slip_user.c 	pri->slip.esc = 0;
esc                67 arch/um/drivers/slirp_user.c 	pri->slip.esc = 0;
esc                82 arch/x86/include/asm/inat.h #define INAT_MAKE_ESCAPE(esc)	(esc << INAT_ESC_OFFS)
esc               221 arch/x86/kvm/emulate.c 		const struct escape *esc;
esc              4430 arch/x86/kvm/emulate.c #define E(_f, _e) { .flags = ((_f) | Escape | ModRM), .u.esc = (_e) }
esc              5359 arch/x86/kvm/emulate.c 				size_t size = ARRAY_SIZE(opcode.u.esc->high);
esc              5363 arch/x86/kvm/emulate.c 				opcode = opcode.u.esc->high[index];
esc              5365 arch/x86/kvm/emulate.c 				opcode = opcode.u.esc->op[(ctxt->modrm >> 3) & 7];
esc               378 drivers/auxdisplay/charlcd.c 	char *esc = priv->esc_seq.buf + 2;
esc               382 drivers/auxdisplay/charlcd.c 	switch (*esc) {
esc               495 drivers/auxdisplay/charlcd.c 		if (!strchr(esc, ';'))
esc               498 drivers/auxdisplay/charlcd.c 		esc++;
esc               500 drivers/auxdisplay/charlcd.c 		cgaddr = *(esc++) - '0';
esc               509 drivers/auxdisplay/charlcd.c 		while (*esc && cgoffset < 8) {
esc               511 drivers/auxdisplay/charlcd.c 			if (*esc >= '0' && *esc <= '9') {
esc               512 drivers/auxdisplay/charlcd.c 				value |= (*esc - '0') << shift;
esc               513 drivers/auxdisplay/charlcd.c 			} else if (*esc >= 'A' && *esc <= 'F') {
esc               514 drivers/auxdisplay/charlcd.c 				value |= (*esc - 'A' + 10) << shift;
esc               515 drivers/auxdisplay/charlcd.c 			} else if (*esc >= 'a' && *esc <= 'f') {
esc               516 drivers/auxdisplay/charlcd.c 				value |= (*esc - 'a' + 10) << shift;
esc               518 drivers/auxdisplay/charlcd.c 				esc++;
esc               527 drivers/auxdisplay/charlcd.c 			esc++;
esc               545 drivers/auxdisplay/charlcd.c 		if (parse_xy(esc, &priv->addr.x, &priv->addr.y))
esc               498 drivers/bluetooth/hci_h5.c 	const u8 delim = SLIP_DELIMITER, esc = SLIP_ESC;
esc               512 drivers/bluetooth/hci_h5.c 			byte = &esc;
esc              1011 fs/gfs2/lops.c 	u64 esc;
esc              1020 fs/gfs2/lops.c 		esc = be64_to_cpu(*ptr++);
esc              1035 fs/gfs2/lops.c 		if (esc) {
esc               376 fs/seq_file.c  void seq_escape(struct seq_file *m, const char *s, const char *esc)
esc               382 fs/seq_file.c  	ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc);
esc               434 fs/seq_file.c  char *mangle_path(char *s, const char *p, const char *esc)
esc               440 fs/seq_file.c  		} else if (!strchr(esc, c)) {
esc               464 fs/seq_file.c  int seq_path(struct seq_file *m, const struct path *path, const char *esc)
esc               473 fs/seq_file.c  			char *end = mangle_path(buf, p, esc);
esc               492 fs/seq_file.c  int seq_file_path(struct seq_file *m, struct file *file, const char *esc)
esc               494 fs/seq_file.c  	return seq_path(m, &file->f_path, esc);
esc               502 fs/seq_file.c  		  const struct path *root, const char *esc)
esc               516 fs/seq_file.c  			char *end = mangle_path(buf, p, esc);
esc               531 fs/seq_file.c  int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
esc               540 fs/seq_file.c  			char *end = mangle_path(buf, p, esc);
esc               127 include/linux/seq_buf.h extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc);
esc               108 include/linux/seq_file.h char *mangle_path(char *s, const char *p, const char *esc);
esc               129 include/linux/seq_file.h void seq_escape(struct seq_file *m, const char *s, const char *esc);
esc               140 include/linux/seq_file.h 		  const struct path *root, const char *esc);
esc               265 lib/seq_buf.c  int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc)
esc               276 lib/seq_buf.c  			char *end = mangle_path(buf, p, esc);
esc               574 lib/string_helpers.c 	const char esc[] = "\f\n\r\t\v\a\e\\\"";
esc               580 lib/string_helpers.c 	dlen = string_escape_mem(src, slen, NULL, 0, flags, esc);
esc               585 lib/string_helpers.c 	WARN_ON(string_escape_mem(src, slen, dst, dlen, flags, esc) != dlen);
esc               264 lib/test-string_helpers.c test_string_escape_overflow(const char *in, int p, unsigned int flags, const char *esc,
esc               269 lib/test-string_helpers.c 	q_real = string_escape_mem(in, p, NULL, 0, flags, esc);
esc               277 lib/test-string_helpers.c 				      unsigned int flags, const char *esc)
esc               316 lib/test-string_helpers.c 	q_real = string_escape_mem(in, p, out_real, out_size, flags, esc);
esc               321 lib/test-string_helpers.c 	test_string_escape_overflow(in, p, flags, esc, q_test, name);
esc                82 tools/arch/x86/include/asm/inat.h #define INAT_MAKE_ESCAPE(esc)	(esc << INAT_ESC_OFFS)