Searched refs:comma (Results 1 - 25 of 41) sorted by path

12

/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y82 %type <i> pst opt_pst lbrace rparen comma nl opt_nl and bor
121 comma: label
122 ',' | comma NL
205 | patlist comma pattern { $$ = linkum($1, $3); }
265 pattern comma pattern { $$ = linkum($1, $3); }
266 | plist comma pattern { $$ = linkum($1, $3); }
271 | pplist comma ppattern { $$ = linkum($1, $3); }
367 | INDEX '(' pattern comma pattern ')'
369 | INDEX '(' pattern comma reg_expr ')'
373 | MATCHFCN '(' pattern comma reg_exp
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Dipv6cp.c284 char *comma, *arg; local
294 comma = strchr(arg, ',');
297 * If comma first character, then no local identifier
299 if (comma != arg) {
300 if (comma != NULL)
301 *comma = '\0';
313 * If comma last character, then no remote identifier
315 if (comma != NULL && *++comma != '\0') {
316 if (inet_pton(AF_INET6, comma,
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ilbadm/
H A Dilbadm_subr.c1081 char *comma = NULL, *equals = NULL; local
1103 comma = equals = NULL;
1108 comma = nextkey++;
1109 *comma = '\0';
1152 if (comma != NULL)
1153 *comma = ',';
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/ipsecutils/
H A Dipsecalgs.c52 static const char *comma = ","; variable
545 while ((holder = strtok((holder == NULL) ? args : NULL, comma)) !=
615 comma)) != NULL) {
625 comma)) != NULL) {
1152 * number or a comma separated string
/illumos-gate/usr/src/cmd/fs.d/autofs/
H A Dauto_subr.c472 char *str, *comma; local
484 comma = strchr(str, ',');
485 if (comma != NULL)
486 *comma = '\0';
488 if (comma != NULL)
489 *comma = ',';
1085 * seperated by a comma and there can be multiple
/illumos-gate/usr/src/cmd/fs.d/smbclnt/mount/
H A Dmount.c160 * so we don't have to decide whether to add a comma when
261 char *nextopt, *comma, *sopt; local
265 comma = strchr(sopt, ',');
266 if (comma) {
267 nextopt = comma + 1;
268 *comma = '\0';
275 if (comma)
276 *comma = ',';
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dprintfr.c224 char *comma = " "; local
239 fputs(comma, stdout);
243 comma = ",";
246 fputs(comma, stdout);
250 comma = ",";
253 fputs(comma, stdout);
257 comma = ",";
260 fputs(comma, stdout);
264 comma = ",";
267 fputs(comma, stdou
341 char *comma = ""; local
[all...]
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dipfstat.c1722 char *s, *comma; local
1733 if ((comma = strchr(s, ',')) != NULL) {
1734 if (!strcasecmp(comma + 1, "any")) {
1736 } else if (!sscanf(comma + 1, "%d", port) ||
1743 *comma = '\0';
/illumos-gate/usr/src/cmd/krb5/kadmin/kclient/
H A Dkclient.sh617 printf "$(gettext "Enter a comma-separated list of DNS domain names"): "
1842 printf "$(gettext "Enter a comma-separated list of slave KDC host names"): "
1877 printf "$(gettext "Enter a comma-separated list of domain/hosts
/illumos-gate/usr/src/cmd/krb5/kwarn/
H A Dkwarnd_proc.c420 /* loop thru comma seperated list-o-opts */
421 char *comma = NULL, *c = NULL, *l = NULL; local
423 if (st && (comma = strchr(st, ','))) {
438 st = comma;
/illumos-gate/usr/src/cmd/logadm/
H A Dglob.c94 char *comma; local
115 /* stuff between "left" and "right" is comma-sep list */
118 while ((comma = strchr(left, ',')) != NULL) {
121 /* stuff from left to comma is one variant */
122 fn_list_appendrange(dup, left, comma);
124 left = comma + 1;
/illumos-gate/usr/src/cmd/mailx/
H A Daux.c53 static char *phrase(char *name, int token, int comma);
428 phrase(char *name, int token, int comma) argument
509 if (token && (!comma || c == '\n')) {
567 yankword(char *name, char *word, int sz, int comma) argument
577 cp = phrase(name, 1, comma);
H A Dcollect.c1258 int comma = docomma(news); local
1260 while (news = yankword(news, name, sizeof (name), comma)) {
H A Dnames.c110 int comma; local
114 comma = docomma(line);
118 while ((cp = yankword(cp, nbuf, sizeof (nbuf), comma)) != NOSTR) {
122 comma)) == NOSTR) {
/illumos-gate/usr/src/cmd/mailx/hdr/
H A Ddef.h618 extern char *yankword(char *name, char *word, int sz, int comma);
/illumos-gate/usr/src/cmd/mdb/common/modules/mpt_sas/
H A Dmpt_sas.c313 int loop, comma; local
383 for (loop = 0, comma = 0;
389 (comma ? ", " : ""),
391 comma++;
432 for (loop = 0, comma = 0;
439 (comma ? ", " : ""),
441 comma++;
/illumos-gate/usr/src/cmd/praudit/
H A Dprint_audit.txt107 default delimiter, which is the comma. The maximum size of a
/illumos-gate/usr/src/cmd/rmvolmgr/
H A Drmm_common.c315 boolean_t comma; local
319 comma = B_FALSE;
323 (void) printf("%s%s", comma ? "," : "",
325 comma = B_TRUE;
332 (void) printf("%s%s", comma ? "," : "", volume_label);
333 comma = B_TRUE;
339 (void) printf("%s%s", comma ? "," : "", mount_point);
340 comma = B_TRUE;
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dsavemail.c1695 char *start, *at, *comma; local
1750 comma = strrchr(addr, ',');
1751 if (comma != NULL && comma[1] == '@' &&
1752 strlen(comma + 2) < sizeof(hostbuf))
1753 (void) sm_strlcpy(hostbuf, comma + 2, sizeof(hostbuf));
1755 comma = NULL;
1757 start = comma;
/illumos-gate/usr/src/cmd/ypcmd/yp2lscripts/
H A Dinityp2l.sh260 with a comma, the value of the nisLDAPconfigDN attribute
294 the value ends with a comma, the value of the context for
/illumos-gate/usr/src/grub/grub-0.97/docs/
H A Dtexinfo.tex579 % @comma{} to avoid , parsing problems.
580 \let\comma = ,
1098 % @comma{} is so commas can be inserted into text without messing up
1101 \let\comma = ,
1874 % @uref (abbreviation for `urlref') takes an optional (comma-separated)
3223 \definedummyword{comma}%
3362 \def\comma{,}%
5855 % might or might not have spaces before the first comma, like:
5861 % also remove a trailing comma, in case of something like this:
6023 % But we always want a comma an
[all...]
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dbuiltins.c4376 {"comma", "less", ',', '<', 0x33},
4552 " quote, doublequote, backquote, tilde, shift, backslash, bar, comma,"
/illumos-gate/usr/src/lib/abi/apptrace/common/
H A Dabienv.c43 static char const *comma = ","; variable
66 tok = strtok(envstr, comma);
76 tok = strtok(NULL, comma);
101 tok = strtok(envstr, comma);
104 tok = strtok(NULL, comma);
121 for (tok = strtok(envstr, comma);
123 tok = strtok(NULL, comma)) {
/illumos-gate/usr/src/lib/efcode/engine/
H A Dforth.c836 comma(fcode_env_t *env) function
842 set_here(env, HERE + sizeof (fstack_t), "comma");
2631 ANSI(0x0d3, 0, ",", comma);
/illumos-gate/usr/src/lib/efcode/include/fcode/
H A Dproto.h191 FNPROTO(comma); variable

Completed in 6107 milliseconds

12