Searched defs:comma (Results 26 - 33 of 33) sorted by relevance

12

/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/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/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/lib/efcode/include/fcode/
H A Dproto.h191 FNPROTO(comma); variable
/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/sasl_plugins/digestmd5/
H A Ddigestmd5.c4302 char *comma = strchr(value, ','); local
4303 if (comma != NULL) {
4304 *comma++ = '\0';
4319 value = comma;
4335 char *comma = strchr(value, ','); local
4342 if (comma != NULL) {
4343 *comma++ = '\0';
4359 value = comma;
/illumos-gate/usr/src/uts/common/fs/
H A Dvfs.c2589 cp = p; /* save location of comma */
2608 *cp = ','; /* restore the comma */
2684 * Construct a comma separated string of the options set in the given
2706 int optlen, comma = 0; local
2709 comma = 1;
2711 if (strlen(buf) + comma + optlen + 1 > len)
2713 if (comma)

Completed in 118 milliseconds

12