| /NextBSD/lib/libc/nameser/ |
| HD | ns_samedomain.c | 55 int diff, i, escaped; in ns_samedomain() local 63 escaped = 0; in ns_samedomain() 67 if (escaped) in ns_samedomain() 68 escaped = 0; in ns_samedomain() 70 escaped = 1; in ns_samedomain() 73 if (!escaped) in ns_samedomain() 79 escaped = 0; in ns_samedomain() 83 if (escaped) in ns_samedomain() 84 escaped = 0; in ns_samedomain() 86 escaped = 1; in ns_samedomain() [all …]
|
| HD | ns_name.c | 222 int c, n, escaped, e = 0; in ns_name_pton2() local 225 escaped = 0; in ns_name_pton2() 231 if (escaped) { in ns_name_pton2() 243 escaped = 0; in ns_name_pton2() 273 escaped = 0; in ns_name_pton2() 275 escaped = 1; in ns_name_pton2()
|
| /NextBSD/contrib/apr/include/ |
| HD | apr_escape.h | 57 APR_DECLARE(apr_status_t) apr_escape_shell(char *escaped, const char *str, 92 APR_DECLARE(apr_status_t) apr_unescape_url(char *escaped, const char *url, 126 APR_DECLARE(apr_status_t) apr_escape_path_segment(char *escaped, 159 APR_DECLARE(apr_status_t) apr_escape_path(char *escaped, const char *path, 194 APR_DECLARE(apr_status_t) apr_escape_urlencoded(char *escaped, const char *str, 225 APR_DECLARE(apr_status_t) apr_escape_entity(char *escaped, const char *str, 294 APR_DECLARE(apr_status_t) apr_escape_echo(char *escaped, const char *str,
|
| /NextBSD/contrib/apr/strings/ |
| HD | apr_cpystrn.c | 94 int escaped; in apr_tokenize_to_argv() local 135 #define REMOVE_ESCAPE_CHARS(cleaned, dirty, escaped) \ in apr_tokenize_to_argv() argument 136 escaped = 0; \ in apr_tokenize_to_argv() 138 if (!escaped && *dirty == '\\') { \ in apr_tokenize_to_argv() 139 escaped = 1; \ in apr_tokenize_to_argv() 142 escaped = 0; \ in apr_tokenize_to_argv() 181 REMOVE_ESCAPE_CHARS(cleaned, dirty, escaped); in apr_tokenize_to_argv()
|
| /NextBSD/usr.bin/grep/regex/ |
| HD | tre-fastmatch.c | 553 bool escaped = false; in tre_compile_fast() local 592 escaped = false; \ in tre_compile_fast() 602 if (escaped) in tre_compile_fast() 607 escaped = true; in tre_compile_fast() 610 if (escaped) in tre_compile_fast() 616 if (escaped || (!(cflags & REG_EXTENDED) && (i == 0))) in tre_compile_fast() 625 else if ((cflags & REG_EXTENDED) ^ !escaped) in tre_compile_fast() 631 if (escaped) in tre_compile_fast() 655 if (!escaped && (i == n - 1)) in tre_compile_fast() 661 if ((cflags & REG_EXTENDED) ^ escaped) in tre_compile_fast() [all …]
|
| /NextBSD/usr.bin/localedef/ |
| HD | scanner.c | 61 static int escaped = 0; variable 238 escaped = 0; in reset_scanner() 514 if (escaped) { in get_symbol() 515 escaped = 0; in get_symbol() 522 escaped = 1; in get_symbol() 684 if (escaped) { in yylex() 685 escaped = 0; in yylex() 700 escaped = 1; in yylex() 719 if (escaped) { in yylex() 720 escaped = 0; in yylex() [all …]
|
| /NextBSD/lib/libc/resolv/ |
| HD | res_comp.c | 203 int ch, escaped = 0; in res_mailok() local 213 if (!escaped && periodchar(ch)) in res_mailok() 215 if (escaped) in res_mailok() 216 escaped = 0; in res_mailok() 218 escaped = 1; in res_mailok()
|
| /NextBSD/contrib/apr/encoding/ |
| HD | apr_escape.c | 81 APR_DECLARE(apr_status_t) apr_escape_shell(char *escaped, const char *str, in apr_escape_shell() argument 89 d = (unsigned char *) escaped; in apr_escape_shell() 179 APR_DECLARE(apr_status_t) apr_unescape_url(char *escaped, const char *url, in apr_unescape_url() argument 186 char *d = (char *) escaped; in apr_unescape_url() 341 APR_DECLARE(apr_status_t) apr_escape_path_segment(char *escaped, in apr_escape_path_segment() argument 347 unsigned char *d = (unsigned char *) escaped; in apr_escape_path_segment() 409 APR_DECLARE(apr_status_t) apr_escape_path(char *escaped, const char *path, in apr_escape_path() argument 415 unsigned char *d = (unsigned char *) escaped; in apr_escape_path() 492 APR_DECLARE(apr_status_t) apr_escape_urlencoded(char *escaped, const char *str, in apr_escape_urlencoded() argument 498 unsigned char *d = (unsigned char *) escaped; in apr_escape_urlencoded() [all …]
|
| /NextBSD/usr.sbin/cron/cron/ |
| HD | do_command.c | 180 register int escaped = FALSE; local 188 if (escaped) { 191 escaped = FALSE; 195 escaped = TRUE; 378 register int escaped = FALSE; local 399 if (escaped) { 407 if (!(escaped = (ch == '\\'))) { 412 if (escaped)
|
| /NextBSD/contrib/subversion/subversion/libsvn_subr/ |
| HD | utf8proc.c | 278 svn_boolean_t escaped; in svn_utf__glob() local 304 for (i = 0, escaped = FALSE; i < tempbuf_len; ++i, ++like) in svn_utf__glob() 306 if (*like == ucs4esc && !escaped) in svn_utf__glob() 310 escaped = TRUE; in svn_utf__glob() 312 else if (escaped) in svn_utf__glob() 315 escaped = FALSE; in svn_utf__glob() 319 if ((*like == '[' || *like == '\\') && !escaped) in svn_utf__glob() 325 escaped = TRUE; in svn_utf__glob()
|
| HD | utf.c | 942 const char *escaped, *converted; in svn_utf__cstring_from_utf8_fuzzy() local 945 escaped = svn_utf__fuzzy_escape(src, strlen(src), pool); in svn_utf__cstring_from_utf8_fuzzy() 949 err = convert_from_utf8(((const char **) &converted), escaped, pool); in svn_utf__cstring_from_utf8_fuzzy() 954 return escaped; in svn_utf__cstring_from_utf8_fuzzy()
|
| /NextBSD/crypto/openssl/doc/crypto/ |
| HD | ASN1_STRING_print_ex.pod | 38 Various characters can be escaped. If B<ASN1_STRFLGS_ESC_2253> is set the characters 39 determined by RFC2253 are escaped. If B<ASN1_STRFLGS_ESC_CTRL> is set control 40 characters are escaped. If B<ASN1_STRFLGS_ESC_MSB> is set characters with the 41 MSB set are escaped: this option should B<not> be used if the terminal correctly 46 If the character being escaped is a 16 bit character then the form "\UXXXX" is used 51 Printable characters are normally escaped using the backslash '\' character. If
|
| /NextBSD/contrib/ntp/lib/isc/ |
| HD | lex.c | 358 isc_boolean_t escaped = ISC_FALSE; in isc_lex_gettoken() local 476 if (!escaped && c == ';' && in isc_lex_gettoken() 652 (!escaped && in isc_lex_gettoken() 667 escaped = (!escaped && c == '\\') ? in isc_lex_gettoken() 735 if (escaped) { in isc_lex_gettoken() 736 escaped = ISC_FALSE; in isc_lex_gettoken() 752 if (c == '\n' && !escaped && in isc_lex_gettoken() 758 if (c == '\\' && !escaped) in isc_lex_gettoken() 759 escaped = ISC_TRUE; in isc_lex_gettoken() 761 escaped = ISC_FALSE; in isc_lex_gettoken()
|
| /NextBSD/contrib/jansson/test/suites/valid/escaped-utf-control-char/ |
| HD | output | 1 ["\u0012 escaped control character"]
|
| HD | input | 1 ["\u0012 escaped control character"]
|
| /NextBSD/contrib/bmake/ |
| HD | parse.c | 2686 char *escaped; in ParseGetLine() local 2696 escaped = NULL; in ParseGetLine() 2732 if (escaped == NULL) in ParseGetLine() 2733 escaped = ptr; in ParseGetLine() 2791 if (escaped == NULL) { in ParseGetLine() 2797 tp = ptr = escaped; in ParseGetLine() 2798 escaped = line; in ParseGetLine() 2822 escaped = tp + 1; in ParseGetLine() 2833 while (tp > escaped && isspace((unsigned char)tp[-1])) in ParseGetLine()
|
| /NextBSD/contrib/dialog/ |
| HD | dlg_keys.c | 594 bool escaped = FALSE; in dlg_parse_bindkey() local 613 if (escaped) { in dlg_parse_bindkey() 614 escaped = FALSE; in dlg_parse_bindkey() 617 escaped = TRUE; in dlg_parse_bindkey()
|
| /NextBSD/contrib/apr-util/test/ |
| HD | testdbd.c | 142 const char *escaped = apr_dbd_escape(driver, p, "foo'bar", handle); in test_escape() local 144 ABTS_STR_EQUAL(tc, "foo''bar", escaped); in test_escape()
|
| /NextBSD/contrib/subversion/subversion/libsvn_fs_x/ |
| HD | low_level.c | 369 svn_stringbuf_t *escaped = svn_stringbuf_create_ensure(2 * len, in auto_escape_path() local 374 svn_stringbuf_appendbyte(escaped, esc); in auto_escape_path() 375 svn_stringbuf_appendbyte(escaped, path[i] + 'A' - 1); in auto_escape_path() 379 svn_stringbuf_appendbyte(escaped, path[i]); in auto_escape_path() 382 return escaped->data; in auto_escape_path()
|
| /NextBSD/usr.sbin/bsdconfig/share/ |
| HD | strings.subr | 121 # f_shell_escape arg2 "aaa'aaa" # arg2=[aaa'\''aaa] (escaped s-quote) 324 # escaped structure for later evaluations. 327 # of the code passing the escaped values to eval (which also aids readability). 337 # The antithesis of f_shell_escape(), this function takes an escaped $string
|
| /NextBSD/bin/sh/tests/expansion/ |
| HD | trim2.0 | 41 # Parentheses are special in ksh, check that they can be escaped
|
| HD | trim1.0 | 53 # Parentheses are special in ksh, check that they can be escaped
|
| /NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| HD | DeadStoresChecker.cpp | 141 llvm::SmallPtrSet<const VarDecl *, 20> &escaped) in DeadStoreObs() argument 143 Escaped(escaped), currentBlock(nullptr) {} in DeadStoreObs()
|
| /NextBSD/contrib/llvm/lib/Support/Windows/ |
| HD | Program.inc | 173 /// CreateProcess and returns length of quoted arg with escaped quotes 181 // We need to add a backslash, but ensure that it isn't escaped. 194 // Make sure the closing quote doesn't get escaped by a trailing backslash. 234 // Make sure our quote doesn't get escaped by a trailing backslash.
|
| /NextBSD/contrib/binutils/gas/ |
| HD | macro.c | 299 int escaped = 0; in getstring() local 306 escaped ^= 1; in getstring() 308 escaped = 0; in getstring() 318 else if (escaped && in->ptr[idx] == tchar) in getstring()
|