Symbol: escape
bin/echo/echo.c
39
int escape(const char *);
bin/echo/echo.c
73
if (escape(*argv) != 0)
lib/libc/gen/fnmatch.c
148
const int escape = !(flags & FNM_NOESCAPE);
lib/libc/gen/fnmatch.c
174
if (escape && (**pattern == '\\')) {
lib/libc/gen/fnmatch.c
208
*pattern += (escape && ((*pattern)[2] == '\\')) ? 3 : 2;
lib/libc/gen/fnmatch.c
259
} else if (escape && (**pattern == '\\') && (*pattern)[1]) {
lib/libc/gen/fnmatch.c
287
const int escape = !(flags & FNM_NOESCAPE);
lib/libc/gen/fnmatch.c
307
if (slash && escape && (*pattern == '\\') && (pattern[1] == '/'))
lib/libc/gen/fnmatch.c
322
else if (escape && (*pattern == '\\') && (pattern[1] == '.'))
lib/libc/gen/fnmatch.c
351
(escape && (*pattern == '\\') && (pattern[1] == '/'))))
lib/libc/gen/fnmatch.c
381
(escape && (*matchptr == '\\') &&
lib/libc/gen/fnmatch.c
421
if (escape && (*matchptr == '\\') &&
lib/libc/gen/fnmatch.c
441
(*pattern == '/') || (escape &&
lib/libc/gen/fnmatch.c
476
(escape && (*pattern == '\\') && (pattern[1] == '/')))))
sys/isofs/cd9660/cd9660_vfsops.c
294
if (bcmp(sup->escape, "%/@", 3) == 0)
sys/isofs/cd9660/cd9660_vfsops.c
296
if (bcmp(sup->escape, "%/C", 3) == 0)
sys/isofs/cd9660/cd9660_vfsops.c
298
if (bcmp(sup->escape, "%/E", 3) == 0)
sys/isofs/cd9660/iso.h
117
char escape [ISODCL ( 89, 120)];
usr.bin/bc/bc.y
738
char *p = escape($1);
usr.bin/bc/bc.y
89
static char *escape(const char *);
usr.bin/dc/inout.c
234
bool escape;
usr.bin/dc/inout.c
236
escape = false;
usr.bin/dc/inout.c
243
if (!escape) {
usr.bin/dc/inout.c
251
if (ch == '\\' && !escape)
usr.bin/dc/inout.c
252
escape = true;
usr.bin/dc/inout.c
254
escape = false;
usr.bin/doas/parse.y
228
int c, quoted = 0, quotes = 0, qerr = 0, escape = 0, nonkw = 0;
usr.bin/doas/parse.y
267
escape = 0;
usr.bin/doas/parse.y
270
escape = !escape;
usr.bin/doas/parse.y
271
if (escape)
usr.bin/doas/parse.y
280
if (escape) {
usr.bin/doas/parse.y
282
escape = 0;
usr.bin/doas/parse.y
289
if (escape)
usr.bin/doas/parse.y
301
if (!escape && !quotes)
usr.bin/doas/parse.y
305
if (!escape) {
usr.bin/doas/parse.y
321
escape = 0;
usr.bin/hexdump/parse.c
147
escape(tfu->fmt);
usr.bin/hexdump/parse.c
47
static void escape(char *);
usr.bin/mail/collect.c
152
if (linebuf[0] != escape || value("interactive") == NULL ||
usr.bin/mail/collect.c
165
if (c == escape) {
usr.bin/mail/collect.c
61
int escape, eofcount, longline;
usr.bin/mail/collect.c
71
escape = *cp;
usr.bin/mail/collect.c
73
escape = ESCAPE;
usr.bin/mandoc/roff.c
125
char escape; /* escape character */
usr.bin/mandoc/roff.c
1823
e = roff_parse_comment(r, buf, ln, pos, r->escape);
usr.bin/mandoc/roff.c
1828
e = roff_expand(r, buf, ln, pos, r->escape);
usr.bin/mandoc/roff.c
3683
r->escape = '\\';
usr.bin/mandoc/roff.c
3685
r->escape = *p;
usr.bin/mandoc/roff.c
3696
r->escape = '\0';
usr.bin/mandoc/roff.c
772
r->escape = '\\';
usr.bin/mandoc/roff.c
803
r->escape = '\\';
usr.bin/pkgconf/libpkgconf/fragment.c
541
fragment_render_len(const pkgconf_list_t *list, bool escape)
usr.bin/pkgconf/libpkgconf/fragment.c
543
(void) escape;
usr.bin/pkgconf/libpkgconf/fragment.c
594
fragment_render_buf(const pkgconf_list_t *list, char *buf, size_t buflen, bool escape)
usr.bin/pkgconf/libpkgconf/fragment.c
596
(void) escape;
usr.bin/pkgconf/libpkgconf/fragment.c
635
pkgconf_fragment_render_len(const pkgconf_list_t *list, bool escape, const pkgconf_fragment_render_ops_t *ops)
usr.bin/pkgconf/libpkgconf/fragment.c
637
(void) escape;
usr.bin/pkgconf/libpkgconf/fragment.c
658
pkgconf_fragment_render_buf(const pkgconf_list_t *list, char *buf, size_t buflen, bool escape, const pkgconf_fragment_render_ops_t *ops)
usr.bin/pkgconf/libpkgconf/fragment.c
660
(void) escape;
usr.bin/pkgconf/libpkgconf/fragment.c
680
pkgconf_fragment_render(const pkgconf_list_t *list, bool escape, const pkgconf_fragment_render_ops_t *ops)
usr.bin/pkgconf/libpkgconf/fragment.c
682
(void) escape;
usr.bin/pkgconf/libpkgconf/libpkgconf.h
371
size_t (*render_len)(const pkgconf_list_t *list, bool escape);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
372
void (*render_buf)(const pkgconf_list_t *list, char *buf, size_t len, bool escape);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
384
PKGCONF_API size_t pkgconf_fragment_render_len(const pkgconf_list_t *list, bool escape, const pkgconf_fragment_render_ops_t *ops);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
385
PKGCONF_API void pkgconf_fragment_render_buf(const pkgconf_list_t *list, char *buf, size_t len, bool escape, const pkgconf_fragment_render_ops_t *ops);
usr.bin/pkgconf/libpkgconf/libpkgconf.h
386
PKGCONF_API char *pkgconf_fragment_render(const pkgconf_list_t *list, bool escape, const pkgconf_fragment_render_ops_t *ops);
usr.bin/telnet/commands.c
1150
escape = arg[0];
usr.bin/telnet/commands.c
1151
printf("Escape character is '%s'.\r\n", control(escape));
usr.bin/telnet/commands.c
1625
printf("Escape character is '%s'.\r\n", control(escape));
usr.bin/telnet/commands.c
328
NETADD(escape);
usr.bin/telnet/commands.c
726
{ "escape", "character to escape back to telnet command mode", 0, &escape },
usr.bin/telnet/commands.c
765
escape = (s && *s) ? special(s) : _POSIX_VDISABLE;
usr.bin/telnet/commands.c
766
printf("Telnet escape character is '%s'.\r\n", control(escape));
usr.bin/telnet/externs.h
71
extern cc_t escape; /* Escape to command mode */
usr.bin/telnet/main.c
128
rlogin = escape = _POSIX_VDISABLE;
usr.bin/telnet/sys_bsd.c
336
esc = (rlogin != _POSIX_VDISABLE) ? rlogin : escape;
usr.bin/telnet/telnet.c
109
cc_t escape;
usr.bin/telnet/telnet.c
166
escape = CONTROL(']');
usr.bin/telnet/telnet.c
1680
if (sc == escape) {
usr.bin/telnet/telnet.c
1697
} else if (escape != _POSIX_VDISABLE && sc == escape) {
usr.bin/telnet/telnet.c
1701
if (tcc && strip(*tbp) == escape) {
usr.bin/tmux/window.c
881
window_printable_flags(struct winlink *wl, int escape)
usr.bin/tmux/window.c
889
if (escape)
usr.sbin/makefs/cd9660/iso.h
114
char escape [ISODCL ( 89, 120)];
usr.sbin/pppd/options.c
722
int c, len, escape;
usr.sbin/pppd/options.c
730
escape = 0;
usr.sbin/pppd/options.c
746
if (!escape) {
usr.sbin/pppd/options.c
750
escape = 0;
usr.sbin/pppd/options.c
763
if (escape)
usr.sbin/pppd/options.c
770
escape = 1;
usr.sbin/pppd/options.c
792
if (!escape && (c == '"' || c == '\'')) {
usr.sbin/pppd/options.c
802
if (escape) {
usr.sbin/pppd/options.c
808
escape = 0;
usr.sbin/pppd/options.c
907
escape = 1;
usr.sbin/smtpd/smtp_session.c
300
int escape, quote, comment, bracket;
usr.sbin/smtpd/smtp_session.c
305
escape = quote = comment = bracket = 0;
usr.sbin/smtpd/smtp_session.c
309
if (buffer[i] == '(' && !escape && !quote)
usr.sbin/smtpd/smtp_session.c
311
if (buffer[i] == '"' && !escape && !comment)
usr.sbin/smtpd/smtp_session.c
313
if (buffer[i] == ')' && !escape && !quote && comment)
usr.sbin/smtpd/smtp_session.c
315
if (buffer[i] == '\\' && !escape && !comment && !quote)
usr.sbin/smtpd/smtp_session.c
316
escape = 1;
usr.sbin/smtpd/smtp_session.c
318
escape = 0;
usr.sbin/smtpd/smtp_session.c
319
if (buffer[i] == '<' && !escape && !comment && !quote && !bracket) {
usr.sbin/smtpd/smtp_session.c
323
if (buffer[i] == '>' && !escape && !comment && !quote && bracket) {
usr.sbin/smtpd/smtp_session.c
327
if (buffer[i] == '@' && !escape && !comment && !quote)
usr.sbin/smtpd/smtp_session.c
329
if (buffer[i] == ':' && !escape && !comment && !quote)
usr.sbin/smtpd/smtp_session.c
338
if (escape || quote || comment || bracket)
usr.sbin/smtpd/smtp_session.c
382
int escape, quote, comment, bracket;
usr.sbin/smtpd/smtp_session.c
388
escape = quote = comment = bracket = 0;
usr.sbin/smtpd/smtp_session.c
392
if (buffer[i] == '(' && !escape && !quote)
usr.sbin/smtpd/smtp_session.c
394
if (buffer[i] == '"' && !escape && !comment)
usr.sbin/smtpd/smtp_session.c
396
if (buffer[i] == ')' && !escape && !quote && comment)
usr.sbin/smtpd/smtp_session.c
398
if (buffer[i] == '\\' && !escape && !comment && !quote)
usr.sbin/smtpd/smtp_session.c
399
escape = 1;
usr.sbin/smtpd/smtp_session.c
401
escape = 0;
usr.sbin/smtpd/smtp_session.c
402
if (buffer[i] == '<' && !escape && !comment && !quote && !bracket) {
usr.sbin/smtpd/smtp_session.c
407
if (buffer[i] == '>' && !escape && !comment && !quote && bracket) {
usr.sbin/smtpd/smtp_session.c
411
if (buffer[i] == ':' && !escape && !comment && !quote)
usr.sbin/smtpd/smtp_session.c
420
if (escape || quote || comment || bracket)
usr.sbin/smtpd/smtp_session.c
462
int escape, quote, comment, skip;
usr.sbin/smtpd/smtp_session.c
470
escape = quote = comment = skip = 0;
usr.sbin/smtpd/smtp_session.c
483
if (line[i] == '(' && !escape && !quote)
usr.sbin/smtpd/smtp_session.c
485
if (line[i] == '"' && !escape && !comment)
usr.sbin/smtpd/smtp_session.c
487
if (line[i] == ')' && !escape && !quote && comment)
usr.sbin/smtpd/smtp_session.c
489
if (line[i] == '\\' && !escape && !comment)
usr.sbin/smtpd/smtp_session.c
490
escape = 1;
usr.sbin/smtpd/smtp_session.c
492
escape = 0;
usr.sbin/smtpd/smtp_session.c
495
if (line[i] == ',' && !escape && !quote && !comment) {