Searched defs:escaped (Results 1 - 19 of 19) sorted by relevance

/illumos-gate/usr/src/lib/libresolv2/common/nameser/
H A Dns_samedomain.c53 int diff, i, escaped; local
61 escaped = 0;
65 if (escaped)
66 escaped = 0;
68 escaped = 1;
71 if (!escaped)
77 escaped = 0;
81 if (escaped)
82 escaped = 0;
84 escaped
[all...]
H A Dns_name.c220 int c, n, escaped, e = 0; local
223 escaped = 0;
229 if (escaped) {
241 escaped = 0;
271 escaped = 0;
273 escaped = 1;
/illumos-gate/usr/src/lib/libtecla/common/
H A Dstringrp.c188 int escaped = 0; /* True if the next character should be */ local
189 /* escaped. */
194 if(!escaped && *src == '\\') {
195 escaped = 1;
198 escaped = 0;
H A Dpathutil.c466 * The space can't be escaped if we are at the start of the line.
477 * then the space isn't escaped.
502 int escaped = 0; /* True when the next character is escaped */ local
515 if(escaped) {
516 escaped = 0;
520 escaped = 1;
H A Dcplfile.c95 int word_start, int word_end, int escaped);
99 int escaped, CplCheckFn *check_fn,
118 int escaped; /* If true, add escapes to the completion suffixes */ member in struct:__anon4067
217 * escaped int If true, backslashes in line[] are
221 * returned suffixes will be similarly escaped.
238 int escaped, CplCheckFn *check_fn, void *check_data)
307 word_end, escaped);
322 if(escaped && c == '\\')
343 if(_pn_append_to_path(cf->path, lptr, seglen, escaped) == NULL) {
405 if(_pn_append_to_path(cf->path, value, strlen(value), escaped)
236 _cf_complete_file(WordCompletion *cpl, CompleteFile *cf, const char *line, int word_start, int word_end, int escaped, CplCheckFn *check_fn, void *check_data) argument
523 cf_complete_username(CompleteFile *cf, WordCompletion *cpl, const char *prefix, const char *line, int word_start, int word_end, int escaped) argument
607 cf_complete_entry(CompleteFile *cf, WordCompletion *cpl, const char *line, int word_start, int word_end, int escaped, CplCheckFn *check_fn, void *check_data) argument
[all...]
H A Dcplmatch.c106 int escaped; /* If none-zero, backslashes in the input line are */ member in struct:CplFileConf
109 /* the listed completions will also be escaped with */
766 conf->escaped = args->escaped;
789 conf->escaped, conf->chk_fn, conf->chk_data)) {
810 cfa->escaped = 1;
828 cfc->escaped = 1;
903 cfc->escaped = !literal;
H A Dexpand.c392 case '\\': /* Skip escaped characters */
1049 int escaped; /* True if the previous character was a '\' */ local
1060 escaped = 0;
1063 if(escaped) {
1064 escaped = 0;
1066 escaped = 1;
H A Dpcache.c72 int escaped; /* If non-zero, backslashes in the input line are */ member in struct:PcaPathConf
75 /* the listed completions will also be escaped with */
231 size_t prefix_len, int escaped);
587 int escaped = 0; /* True if the last character was a backslash */ local
601 * when either the end of the string is reached, or an un-escaped colon
604 while(*pptr && (escaped || *pptr != ':'))
605 escaped = !escaped && *pptr++ == '\\';
667 int escaped = 0; /* True if the last character was a backslash */ local
674 * or un-escaped colo
1561 pca_prepare_prefix(PathCache *pc, const char *prefix, size_t prefix_len, int escaped) argument
[all...]
H A Dgetline.c5687 * tabs and backslashes escaped with backslashes.
6377 int escaped = 0; /* True if the next character is escaped */ local
6409 if(c==EOF || (!escaped && (c==' ' || c=='\n' || c=='\t' || c=='#'))) {
6435 * The next character was preceded by spaces, so it isn't escaped.
6437 escaped = 0;
6443 if(c=='\\' && !escaped) {
6444 escaped = 1;
6446 * Splice lines where the newline is escaped.
6448 } else if(c=='\n' && escaped) {
[all...]
/illumos-gate/usr/src/lib/libast/common/string/
H A Dfmtesc.c37 * qe and the usual suspects are \... escaped
50 register int escaped; local
84 escaped = spaced = !!(flags & FMT_ALWAYS);
97 escaped = 1;
141 escaped = 1;
158 escaped = 1;
168 escaped = 1;
181 escaped = 1;
191 else if (!spaced && !escaped && (isspace(c) || ((flags & FMT_SHELL) || shell) && (strchr("\";~&|()<>[]*?", c) || c == '#' && (b == f || isspace(*(b - 1))))))
198 if (!escaped)
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_comp.c222 int ch, escaped = 0; local
232 if (!escaped && periodchar(ch))
234 if (escaped)
235 escaped = 0;
237 escaped = 1;
/illumos-gate/usr/src/lib/libkmf/libkmf/common/
H A Dpk11tokens.c194 * Compresses away any characters escaped with backslash from given string.
200 boolean_t escaped = B_FALSE; local
207 if (*str != '\\' || escaped == B_TRUE) {
209 escaped = B_FALSE;
211 escaped = B_TRUE;
221 * colons within the label/manuf/serial can be escaped with a backslash.
/illumos-gate/usr/src/cmd/iconv/
H A Dscanner.c42 static int escaped = 0; variable
115 escaped = 0;
343 if (escaped) {
344 escaped = 0;
351 escaped = 1;
498 if (escaped) {
499 escaped = 0;
516 escaped = 1;
536 /* escaped characters first */
537 if (escaped) {
[all...]
/illumos-gate/usr/src/cmd/localedef/
H A Dscanner.c43 static int escaped = 0; variable
218 escaped = 0;
491 if (escaped) {
492 escaped = 0;
499 escaped = 1;
661 if (escaped) {
662 escaped = 0;
677 escaped = 1;
695 /* escaped characters first */
696 if (escaped) {
[all...]
/illumos-gate/usr/src/lib/libtecla/
H A Dlibtecla.h421 int escaped; /* Opposite to the argument of cfc_literal_escapes() */ member in struct:__anon4100
/illumos-gate/usr/src/lib/libnwam/common/
H A Dlibnwam_files.c66 boolean_t escaped = B_FALSE; local
76 escaped = !escaped;
77 } else if (!escaped && (*nextp)[0] == delim) {
88 escaped = B_FALSE;
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dauto_subr.c658 * considered escaped when it is
672 register int escaped, inquote, inbracket, quoted; local
676 escaped = inquote = inbracket = quoted = 0;
679 if (!escaped) {
681 escaped = 1;
700 *qp++ = (inquote || escaped) ? '^'
702 escaped = 0;
/illumos-gate/usr/src/lib/libast/common/regex/
H A Dregcomp.c633 magic(register Cenv_t* env, register int c, int escaped) argument
645 c = mp[env->type+escaped];
705 if (!escaped)
713 if (escaped)
790 if (escaped == 1 && (env->flags & REG_LENIENT) && (c = mp[env->type+escaped+2]) >= T_META)
851 else if (escaped == 2)
861 else if (escaped && !(env->flags & REG_LENIENT) && c != ']')
895 if (escaped == 2)
899 else if (escaped
1986 chr(register Cenv_t* env, int* escaped) argument
[all...]
/illumos-gate/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c615 int escaped = 0; local
625 if (escaped) {
627 escaped = 0;
630 escaped = 1;

Completed in 129 milliseconds