Searched defs:quote (Results 26 - 40 of 40) sorted by relevance

12

/illumos-gate/usr/src/cmd/logadm/
H A Dconf.c139 char *quote = NULL; local
145 quote = ptr++;
148 if (quote && *eptr == *quote) {
149 /* found end quote */
153 } else if (!quote && isspace(*eptr)) {
160 if (quote != NULL)
161 err(EF_FILE|EF_JMP, "Unbalanced %c quote", *quote);
/illumos-gate/usr/src/cmd/boot/bootadm/
H A Dbootadm_hyper.c155 char quote = *str++; local
157 while ((*str != NULL) && (*str != quote))
160 /* no matching quote found in string */
1216 * closing single quote.
1232 * closing single quote.
/illumos-gate/usr/src/lib/fm/libdiagcode/common/
H A Ddiagcode.c971 int quote = 0; local
1017 quote = 1;
1052 else if (quote) {
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dtree.h194 } quote; member in union:node::__anon457
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dmap_core.c239 * by any of: space, double quote, tab, newline, ':', ';', '=', or '#'.
1825 * mf - Mapfile descriptor, positioned to the opening quote character.
1837 char quote; local
1840 quote = *str;
1842 while ((*end != '\0') && (*end != '\n') && (*end != quote))
1844 if (*end != quote) {
1854 * end is pointing at the closing quote. We can turn that into NULL
1859 tkv->tkv_str = str + 1; /* Skip opening quote */
1873 * mf - Mapfile descriptor, positioned to the opening quote character.
1885 char quote; local
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/chat/
H A Dchat.c410 char *sp, *arg, quote; local
441 quote = *sp++;
443 while (*sp != quote) {
445 fatal(1, "unterminated quote (line %d)", linect);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dcmds.c1474 quote(int argc, char *argv[]) function
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dmacro.c66 char quote; /* set within double quoted contexts */ member in struct:_mac_
165 mp->quoted = mp->lit = mp->split = mp->quote = 0;
211 mp->quoted = mp->lit = mp->quote = 0;
273 mp->quote = 1;
433 int oldquote = mp->quote;
441 mp->quote = newquote;
443 if(!mp->quote && *cp=='~' && cp[1]!=LPAREN)
510 else if(mp->split && endch && !mp->quote && !mp->lit)
533 if(!mp->lit && !mp->quote)
541 if(!mp->lit && (n==S_ESC || (!mp->quote
[all...]
/illumos-gate/usr/src/lib/libc/port/print/
H A Ddoprnt.c470 int quote; /* ' */ local
718 quote = 0;
735 quote++;
1108 if (quote) {
1575 if (quote)
/illumos-gate/usr/src/cmd/raidctl/
H A Draidctl.c514 char quote = '"'; local
518 quote, quote);
526 prog_namep, quote, quote);
/illumos-gate/usr/src/cmd/idmap/idmap/
H A Didmap.c700 * We don't quote '*' and ':' because they cannot do any harm
736 * Quote any shell meta-characters in the given string. If 'quote' is
737 * true then use double-quotes to quote the whole string, else use
738 * back-slash to quote each individual meta-character.
745 shell_app(char **res, char *string, int quote) argument
764 /* First, let us count how many characters we need to quote: */
774 /* Do we need to quote at all? */
786 if (quote)
798 if (quote)
803 if (quote
[all...]
/illumos-gate/usr/src/uts/common/io/cardbus/
H A Dcardbus.c1607 char *ptoken = NULL, *quote; local
1646 quote = cp + 1;
1652 strlen(quote) + 1,
1655 quote);
1658 token, quote,
1659 strlen(quote));
1664 "[%s]\n", quote, token);
1669 strlen(quote) + 1,
1672 cdsp->binding_name, quote);
1811 "string = [%s]\n", quote);
[all...]
/illumos-gate/usr/src/cmd/mandoc/
H A Deqn.c362 * Get the next token from the input stream using the given quote
367 eqn_next(struct eqn_node *ep, char quote, size_t *sz, int repl) argument
395 if (quote == *start) {
411 next = strchr(start, quote);
459 * Get the next delimited token using the default current quote
/illumos-gate/usr/src/common/ficl/emu/
H A Dloader_emu.c350 char token, tmp, quote, dquote, *buf; local
354 dquote = quote = 0;
373 quote = quote ? 0 : *p;
374 if (dquote) { /* keep quote */
381 if (quote) { /* keep dquote */
386 } else if (isspace(*p) && !quote && !dquote) {
394 } else if (*p == '$' && !quote) {
437 PARSE_FAIL(quote || dquote);
/illumos-gate/usr/src/cmd/mdb/common/kmdb/
H A Dkmdb_kvm.c468 char *quote = &("\""[parse_strings && local
471 mdb_printf("%s%s%s", quote, argv[i].a_un.a_str,
472 quote);

Completed in 169 milliseconds

12