Symbol: escape
arch/x86/kvm/emulate.c
199
const struct escape *esc;
arch/x86/kvm/emulate.c
4147
static const struct escape escape_d9 = { {
arch/x86/kvm/emulate.c
4168
static const struct escape escape_db = { {
arch/x86/kvm/emulate.c
4189
static const struct escape escape_dd = { {
drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c
319
enum sun6i_dsi_inst_escape escape)
drivers/gpu/drm/sun4i/sun6i_mipi_dsi.c
323
SUN6I_DSI_INST_FUNC_ESCAPE_ENTRY(escape) |
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
100
struct vmw_escape_header escape;
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
128
fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1));
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
182
struct vmw_escape_header escape;
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
201
fill_escape(&cmds->escape, sizeof(cmds->body));
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
62
struct vmw_escape_header escape;
drivers/gpu/drm/vmwgfx/vmwgfx_overlay.c
77
fill_escape(&cmd->escape, sizeof(cmd->flush));
drivers/input/joystick/spaceball.c
145
spaceball->escape = 0;
drivers/input/joystick/spaceball.c
148
if (!spaceball->escape) {
drivers/input/joystick/spaceball.c
149
spaceball->escape = 1;
drivers/input/joystick/spaceball.c
152
spaceball->escape = 0;
drivers/input/joystick/spaceball.c
157
if (spaceball->escape) {
drivers/input/joystick/spaceball.c
158
spaceball->escape = 0;
drivers/input/joystick/spaceball.c
163
if (spaceball->escape)
drivers/input/joystick/spaceball.c
164
spaceball->escape = 0;
drivers/input/joystick/spaceball.c
54
int escape;
drivers/input/serio/ps2mult.c
233
if (psm->escape) {
drivers/input/serio/ps2mult.c
234
psm->escape = false;
drivers/input/serio/ps2mult.c
244
psm->escape = true;
drivers/input/serio/ps2mult.c
42
bool escape;
drivers/media/cec/usb/pulse8/pulse8-cec.c
200
bool escape;
drivers/media/cec/usb/pulse8/pulse8-cec.c
372
pulse8->escape = true;
drivers/media/cec/usb/pulse8/pulse8-cec.c
375
if (pulse8->escape) {
drivers/media/cec/usb/pulse8/pulse8-cec.c
377
pulse8->escape = false;
drivers/tty/n_gsm.c
293
bool escape;
drivers/tty/n_gsm.c
3058
gsm->escape = true;
drivers/tty/n_gsm.c
3066
if (gsm->escape) {
drivers/tty/n_gsm.c
3068
gsm->escape = false;
fs/fat/namei_vfat.c
510
int *longlen, int *outlen, int escape, int utf8,
fs/fat/namei_vfat.c
531
if (escape && (*ip == ':')) {
fs/isofs/inode.c
657
if (sec->escape[0] == 0x25 && sec->escape[1] == 0x2f) {
fs/isofs/inode.c
659
if (sec->escape[2] == 0x40)
fs/isofs/inode.c
661
else if (sec->escape[2] == 0x43)
fs/isofs/inode.c
663
else if (sec->escape[2] == 0x45)
fs/jbd2/commit.c
356
int escape;
fs/jbd2/commit.c
663
escape = jbd2_journal_write_metadata_buffer(commit_transaction,
fs/jbd2/commit.c
671
if (escape)
fs/proc/array.c
100
void proc_task_name(struct seq_file *m, struct task_struct *p, bool escape)
fs/proc/array.c
115
if (escape)
fs/proc/internal.h
244
bool escape);
include/pcmcia/cistpl.h
255
u_char escape;
include/uapi/linux/iso_fs.h
75
__u8 escape [ISODCL ( 89, 120)]; /* 856 */
tools/include/nolibc/stdio.h
304
char escape, lpref, c;
tools/include/nolibc/stdio.h
311
written = ofs = escape = lpref = 0;
tools/include/nolibc/stdio.h
316
if (escape) {
tools/include/nolibc/stdio.h
318
escape = 0;
tools/include/nolibc/stdio.h
394
escape = 1;
tools/include/nolibc/stdio.h
404
escape = 1;
tools/perf/util/demangle-rust-v0.c
1826
const char *escape = memchr(rest + 1, '$', len - 1);
tools/perf/util/demangle-rust-v0.c
1827
if (escape == NULL) {
tools/perf/util/demangle-rust-v0.c
1831
size_t escape_len = escape - (rest + 1);
tools/perf/util/demangle-rust-v0.c
1833
size_t next_len = len - (escape + 1 - rest);
tools/perf/util/demangle-rust-v0.c
1834
const char *next_rest = escape + 1;