Symbol: escape
headers/os/drivers/pcmcia/cistpl.h
271
u_char escape;
headers/tools/cppunit/cppunit/XmlOutputter.h
77
std::string escape( std::string value ) const;
src/add-ons/input_server/filters/shortcut_catcher/ParseCommandLine.cpp
274
bool escape = false;
src/add-ons/input_server/filters/shortcut_catcher/ParseCommandLine.cpp
278
escape |= EscapeChars(string, '\\');
src/add-ons/input_server/filters/shortcut_catcher/ParseCommandLine.cpp
279
escape |= EscapeChars(string, '\"');
src/add-ons/input_server/filters/shortcut_catcher/ParseCommandLine.cpp
280
escape |= EscapeChars(string, ' ');
src/add-ons/input_server/filters/shortcut_catcher/ParseCommandLine.cpp
281
escape |= EscapeChars(string, '\t');
src/add-ons/input_server/filters/shortcut_catcher/ParseCommandLine.cpp
283
return escape;
src/apps/serialconnect/libvterm/include/vterm.h
166
int (*escape)(const char *bytes, size_t len, void *user);
src/apps/serialconnect/libvterm/src/parser.c
154
if(vt->parser_callbacks && vt->parser_callbacks->escape)
src/apps/serialconnect/libvterm/src/parser.c
155
if((*vt->parser_callbacks->escape)(str_frag, len, vt->cbdata))
src/apps/serialconnect/libvterm/src/state.c
1597
.escape = on_escape,
src/bin/bfs_tools/lib/BPlusTree.cpp
249
char escape[3] = {0x1b, '[', 0};
src/bin/bfs_tools/lib/BPlusTree.cpp
262
printf(" %" B_PRId32 "%s1A\n", count, escape);
src/bin/bfs_tools/lib/Disk.cpp
275
char escape[3] = {0x1b, '[', 0};
src/bin/bfs_tools/lib/Disk.cpp
286
1.0 * offset / (1024*1024*1024),escape);
src/bin/network/telnet/commands.c
1300
escape = arg[0];
src/bin/network/telnet/commands.c
2074
printf("Escape character is '%s'.\n", control(escape));
src/bin/network/telnet/commands.c
414
NETADD(escape);
src/bin/network/telnet/commands.c
874
{ "escape", "character to escape back to telnet command mode", NULL, &escape },
src/bin/network/telnet/commands.c
915
escape = (s && *s) ? special(s) : _POSIX_VDISABLE;
src/bin/network/telnet/commands.c
916
printf("Telnet escape character is '%s'.\n", control(escape));
src/bin/network/telnet/externs.h
130
extern cc_t escape; /* Escape to command mode */
src/bin/network/telnet/main.c
174
rlogin = escape = _POSIX_VDISABLE;
src/bin/network/telnet/sys_bsd.c
623
esc = (rlogin != _POSIX_VDISABLE) ? rlogin : escape;
src/bin/network/telnet/telnet.c
119
cc_t escape;
src/bin/network/telnet/telnet.c
187
escape = CONTROL(']');
src/bin/network/telnet/telnet.c
1955
if (sc == escape) {
src/bin/network/telnet/telnet.c
1972
} else if (escape != _POSIX_VDISABLE && sc == escape) {
src/bin/network/telnet/telnet.c
1976
if (tcc && strip(*tbp) == escape) {
src/kits/support/String.cpp
2636
const char escape[2] = { escapeChar, '\0' };
src/kits/support/String.cpp
2637
return _DoReplace(escape, "", REPLACE_ALL, 0, KEEP_CASE);
src/tools/cppunit/cppunit/XmlOutputter.cpp
106
attributes += escape( attribute.second );