Home
last modified time | relevance | path

Searched refs:quoted (Results 1 – 25 of 72) sorted by relevance

123

/illumos-gate/usr/src/contrib/ast/src/lib/libast/comp/
H A Dwordexp.c69 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 Dhttp-support.c334 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 Dutil.c230 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 Dtmparse.c28 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 Dpkgparam.c127 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 Dsh.char.h50 #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 Dsh.dol.c645 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 Dmacro.c38 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/test/util-tests/tests/awk/examples/awk/
H A Dt.null09 $1 == "0" {print "$1 = quoted 0"}
12 $5 == "0" {print "$5 = quoted 0"}
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dutil.c144 bool quoted = false; local
161 quoted = !quoted;
162 else if (!quoted)
210 bool quoted = false; local
236 if (!quoted)
247 quoted = !quoted;
261 quoted = false;
277 if (quoted)
316 bool quoted = false; local
336 if (!quoted)
[all …]
H A Dalias.c321 bool quoted = false; local
332 quoted = !quoted;
333 else if (*p == ',' && !quoted)
/illumos-gate/usr/src/cmd/sendmail/util/
H A Dpraliases.c178 bool quoted = false; local
188 quoted = !quoted;
189 else if (*p == ',' && !quoted)
/illumos-gate/usr/src/lib/libsqlite/test/
H A Dprintf.test92 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 Deqn.c382 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 Dauto_subr.c672 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 Dns_mapping.c338 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 Ddrvsubr.c142 int quoted) in append_to_file() argument
170 if (quoted) in append_to_file()
189 list_separator, quoted); 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()
2166 quoted++; in check_space_within_quote()
[all …]
/illumos-gate/usr/src/lib/libzonecfg/common/
H A Dgetzoneent.c64 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 Dio.c103 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 Dmultiboot2.c344 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 Dutils.c180 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 Dinit.data72 # 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 Dsip_parse_generic.c199 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 Dmacro.c73 short quoted; /* set when word has quotes */ member
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()
1587 int quoted = mp->quoted; in varsub() local
1604 mp->quoted = 0; in varsub()
1616 mp->quoted = quoted; in varsub()
1798 mp->quoted-=2; in varsub()
1935 endfield(mp,mp->quoted); in varsub()
2423 endfield(mp,n==S_DELIM||mp->quoted); in mac_copy()
[all …]
/illumos-gate/usr/src/data/zoneinfo/
H A DREADME15 /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

123