/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/ |
H A D | wordexp.c | 69 register int c,quoted=0,literal=0,ac=0; in wordexp() local 90 if(c=='\'' && !quoted) in wordexp() 94 if(c=='\\' && (!quoted || strchr("\\\"`\n$",c))) in wordexp() 103 quoted = !quoted; in wordexp() 115 else if(!quoted && strchr("|&\n;<>"+ac,c)) in wordexp() 136 quoted = ! quoted; in wordexp() 137 else if(!quoted && (c==' ' || c=='\n')) in wordexp()
|
/illumos-gate/usr/src/lib/print/libhttp-core/common/ |
H A D | http-support.c | 334 int quoted; /* Quoted character */ in http_copy_decode() local 353 quoted = (tolower(*src) - 'a' + 10) << 4; in http_copy_decode() 355 quoted = (*src - '0') << 4; in http_copy_decode() 359 quoted |= tolower(*src) - 'a' + 10; in http_copy_decode() 361 quoted |= *src - '0'; in http_copy_decode() 363 *ptr++ = quoted; in http_copy_decode()
|
/illumos-gate/usr/src/cmd/sendmail/libsm/ |
H A D | util.c | 230 bool quoted; local 232 quoted = false; 236 if ((*ip & 0377) == METAQUOTE && !quoted) 238 quoted = true; 246 quoted = false;
|
/illumos-gate/usr/src/cmd/ttymon/ |
H A D | tmparse.c | 28 char quoted(char *, int *); 65 c = quoted(ptr, &qsize); in getword() 91 quoted(char *ptr, int *qsize) in quoted() function
|
/illumos-gate/usr/src/lib/libadm/common/ |
H A D | pkgparam.c | 127 boolean_t begline, quoted, escape; in fpkgparam() local 179 quoted = escape = B_FALSE; in fpkgparam() 218 quoted = B_FALSE; in fpkgparam() 243 quoted = B_TRUE; in fpkgparam() 246 } else if (quoted) { in fpkgparam() 294 if (quoted) { in fpkgparam()
|
/illumos-gate/usr/src/cmd/csh/ |
H A D | sh.char.h | 50 #define quoted(c) ((unsigned)(c) & QUOTE) macro 62 (Z=((unsigned)(c)), !quoted(Z)&&(iswalpha(Z)||((Z)=='_')\ 65 (Z=((unsigned)(c)), !quoted(Z)&&(iswalpha(Z)||((Z)=='_')\
|
H A D | sh.dol.c | 645 bool quoted; in heredoc() local 658 trim(Dv); rscan(Dv, Dtestq); quoted = gflag; in heredoc() 695 if (quoted || noexec) { in heredoc()
|
/illumos-gate/usr/src/cmd/sh/ |
H A D | macro.c | 38 static unsigned char quoted; /* used locally */ variable 223 quoted--; 402 quoted++; 418 BOOL savqu = quoted; 426 quoted = 0; 429 if (quoted && (stakbot == staktop)) { 441 quoted = savqu;
|
/illumos-gate/usr/src/cmd/sendmail/src/ |
H A D | util.c | 144 bool quoted = false; local 161 quoted = !quoted; 162 else if (!quoted) 182 return !quoted && commentlev == 0; 210 bool quoted = false; local 236 if (!quoted) 247 quoted = !quoted; 253 (quoted ? 1 : 0))) 258 else if (*ptr == '(' && !quoted) 261 quoted = false; [all …]
|
H A D | alias.c | 321 bool quoted = false; local 332 quoted = !quoted; 333 else if (*p == ',' && !quoted)
|
/illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/ |
H A D | t.null0 | 9 $1 == "0" {print "$1 = quoted 0"} 12 $5 == "0" {print "$5 = quoted 0"}
|
/illumos-gate/usr/src/cmd/sendmail/util/ |
H A D | praliases.c | 178 bool quoted = false; local 188 quoted = !quoted; 189 else if (*p == ',' && !quoted)
|
/illumos-gate/usr/src/lib/libsqlite/test/ |
H A D | printf.test | 92 sqlite_mprintf_str {%d %d A quoted string: '%q'} 1 2 {Hi Y'all} 93 } {1 2 A quoted string: 'Hi Y''all'} 98 sqlite_mprintf_str {%d %d A quoted string: %Q} 1 2 {Hi Y'all} 99 } {1 2 A quoted string: 'Hi Y''all'}
|
/illumos-gate/usr/src/cmd/mandoc/ |
H A D | eqn.c | 382 int diff, i, quoted; in eqn_next() local 393 quoted = mode == MODE_QUOTED; in eqn_next() 400 quoted = 1; in eqn_next() 406 if (quoted) in eqn_next() 413 if (quoted) { in eqn_next() 427 if (quoted && *ep->end != '\0') in eqn_next() 431 if (quoted) /* Cannot return, may have to strndup. */ in eqn_next() 457 return quoted ? EQN_TOK_QUOTED : EQN_TOK__MAX; in eqn_next() 458 if (quoted) { in eqn_next()
|
/illumos-gate/usr/src/cmd/fs.d/autofs/ |
H A D | auto_subr.c | 672 register int escaped, inquote, inbracket, quoted; local 676 escaped = inquote = inbracket = quoted = 0; 682 quoted++; 687 quoted++; 692 quoted++; 708 if (quoted)
|
/illumos-gate/usr/src/lib/libsldap/common/ |
H A D | ns_mapping.c | 338 int quoted = 0; in __s_api_parseASearchDesc() local 416 quoted = 1; in __s_api_parseASearchDesc() 451 quoted = 1; in __s_api_parseASearchDesc() 485 quoted = 0; in __s_api_parseASearchDesc() 490 if (quoted) { in __s_api_parseASearchDesc() 508 quoted = 0; in __s_api_parseASearchDesc() 579 if (quoted) { in __s_api_parseASearchDesc()
|
/illumos-gate/usr/src/cmd/modload/ |
H A D | drvsubr.c | 142 int quoted) in append_to_file() argument 170 if (quoted) in append_to_file() 189 list_separator, quoted); in append_to_file() 193 quoted ? "%s%s\"%s\"\n" : "%s%s%s\n", in append_to_file() 816 int quoted = 0; in get_entry() local 826 quoted++; in get_entry() 833 (!quoted || (*ptr != '"'))) { in get_entry() 840 if (quoted && (*ptr == '"')) in get_entry() 2160 int quoted = 0; in check_space_within_quote() local 2165 if (quoted == 0) in check_space_within_quote() [all …]
|
/illumos-gate/usr/src/lib/libzonecfg/common/ |
H A D | getzoneent.c | 64 boolean_t quoted = B_FALSE; in gettok() local 69 quoted = B_TRUE; in gettok() 73 if (quoted) { in gettok()
|
/illumos-gate/usr/src/cmd/format/ |
H A D | io.c | 103 int c, quoted = 0; in gettoken() local 123 while (!isspace(c) || quoted && (c != '\n')) { in gettoken() 133 quoted = !quoted; in gettoken() 2201 int c, quoted = 0; in sup_get_token() local 2224 for (; !isspace(c) || quoted; c = sup_inputchar()) { in sup_get_token() 2234 quoted = !quoted; in sup_get_token() 2246 if (!quoted && (c == '=' || c == ',' || c == ':' || in sup_get_token()
|
/illumos-gate/usr/src/boot/common/ |
H A D | multiboot2.c | 344 int quoted; in find_property_value() local 368 quoted = 0; in find_property_value() 376 quoted = valuep[0]; in find_property_value() 384 if (quoted != 0) { in find_property_value() 385 if (valuep[value_len] == quoted) in find_property_value() 386 quoted = 0; in find_property_value() 396 if (quoted != 0) { in find_property_value() 398 quoted, valuep); in find_property_value()
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | utils.c | 180 int base, len, neg, quoted; local 344 quoted = c == 'q'; 356 if (!quoted && c >= 0x80) { 361 if (quoted && (c == '"' || c == '\\')) 364 if (quoted) {
|
/illumos-gate/usr/src/test/os-tests/tests/definit/ |
H A D | init.data | 72 # quoted value containing a space. NOTE this does not parse as you might expect 74 # init and svc.startd have always interpreted a quoted value containing a space.
|
/illumos-gate/usr/src/lib/libsip/common/ |
H A D | sip_parse_generic.c | 199 boolean_t quoted = B_FALSE; in sip_goto_next_value() local 203 if (quoted) in sip_goto_next_value() 204 quoted = B_FALSE; in sip_goto_next_value() 206 quoted = B_TRUE; in sip_goto_next_value() 207 } else if (!quoted && in sip_goto_next_value() 217 if (quoted) in sip_goto_next_value()
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/ |
H A D | macro.c | 73 short quoted; /* set when word has quotes */ member 175 mp->quoted = mp->lit = mp->split = mp->quote = 0; in sh_mactrim() 221 mp->quoted = mp->lit = mp->quote = 0; in sh_macexpand() 255 endfield(mp,mp->quoted|mp->atmode); in sh_macexpand() 709 mp->quoted++; in copyto() 1160 mp->atmode = (v && mp->quoted && c=='@'); in varsub() 1448 mp->atmode = (v && mp->quoted && mode=='@'); in varsub() 1587 int quoted = mp->quoted; in varsub() local 1604 mp->quoted = 0; in varsub() 1616 mp->quoted = quoted; in varsub() [all …]
|
/illumos-gate/usr/src/data/zoneinfo/ |
H A D | README | 15 /usr/share/lib/zoneinfo/GMT[+-]* files with the equivalent quoted timezone 16 (see environ(7)). Note the signs of the offsets of the equivalent quoted
|