Searched defs:comma (Results 1 - 23 of 23) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/kern/
H A Dmain.c150 char *comma, *new_device; local
152 comma = grub_strchr (fwdevice, ',');
153 if (comma)
155 char *drive = grub_strndup (fwdevice, comma - fwdevice);
/osnet-11/usr/src/lib/libsldap/common/
H A Dns_getalias.c110 int rc, i, j, len, comma; local
181 comma = 0;
203 len = len + comma + strlen(newhead);
216 if (comma)
219 comma = 1;
/osnet-11/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)) {
/osnet-11/usr/src/lib/libproc/common/
H A Dproc_arg.c358 char *comma; local
368 comma = strchr(range, ',');
369 if (comma != NULL)
370 *comma = '\0';
372 if (comma != NULL)
373 *comma = ',';
376 if (comma != NULL) {
377 *comma = ',';
378 range = comma + 1;
392 char *comma; local
[all...]
/osnet-11/usr/src/lib/libshell/common/sh/
H A Dexpand.c278 char comma, range=0; local
286 range = comma = brace = 0;
297 if(brace==0 && comma && *cp!='(')
299 comma = brace = 0;
376 comma = 1;
/osnet-11/usr/src/lib/fm/topo/modules/sun4/hostbridge/
H A Dhb_sun4.c45 char *comma; local
53 if ((comma = strchr(bac, ',')) != NULL)
54 *comma = '\0';
58 "Trouble interpreting bus_addr before comma.\n");
59 if (comma != NULL)
60 *comma = ',';
65 if (comma == NULL) {
70 pp->br_ba_ac = strtonum(mod, comma + 1, &e);
73 "Trouble interpreting bus_addr after comma.\n");
74 *comma
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Derrmap.h248 int comma;
254 fprintf(ps->f, ps->comma ? ", (" : "(");
255 ps->comma = 1;
267 ps.comma = 0;
245 int comma; member in struct:mecherrmap__printstat
/osnet-11/usr/src/grub/grub2/grub-core/kern/ieee1275/
H A Dopenfw.c354 char *comma; local
367 comma = grub_strchr (args, ',');
369 if (comma)
371 char *filepath = comma + 1;
384 char *comma; local
395 comma = grub_strchr (args, ',');
396 if (!comma)
399 ret = grub_strndup (args, (grub_size_t)(comma - args));
/osnet-11/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;
/osnet-11/usr/src/lib/libast/common/vmalloc/
H A Dvmtrace.c116 int comma; local
153 comma = 0;
173 comma = 1;
176 { if(comma)
184 comma = 1;
186 if(comma)
/osnet-11/usr/src/lib/libbsm/common/
H A Daudit_event.c417 char *comma = ","; local
421 s = strtok_r(flags, comma, &last);
428 s = strtok_r(NULL, comma, &last);
/osnet-11/usr/src/lib/libnsl/ipsec/
H A Dalgs.c72 static const char *comma = ","; variable
111 token = strtok_r(NULL, comma, &lasts);
138 token = strtok_r(input_string, comma, &lasts);
157 } while ((token = strtok_r(NULL, comma, &lasts)) != NULL);
396 token = strtok_r(block_string, comma, &lasts);
416 } while ((token = strtok_r(NULL, comma, &lasts)) !=
427 token = strtok_r(params_string, comma, &lasts);
448 } while ((token = strtok_r(NULL, comma, &lasts))
471 token = strtok_r(alg_names, comma, &lasts);
493 } while ((token = strtok_r(NULL, comma,
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/common/pcibus/
H A Ddid_props.c383 char *comma; local
396 * Find the comma in the last component component@x,y, and
397 * truncate the comma and any following number.
399 comma = strchr(lastslash, ',');
400 assert(comma != NULL);
402 *comma = '\0';
408 *comma = ',';
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_matching.c189 char *comma; local
215 comma = strchr(value, ',');
216 if (comma != NULL)
217 len = comma - value;
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A Dlegacy_parse.c494 const char *comma, *ptr, *rest; local
516 comma = ptr;
517 if (*comma != ',')
531 part = grub_strtoull (comma + 1, (char **) &rest, 0);
549 for (ptr = in; ptr < in + len && ptr <= comma; ptr++)
822 char *comma = grub_strchr(curarg, ','); local
826 if (comma != NULL && rparen == NULL)
827 sigend = comma;
828 else if (comma == NULL && rparen != NULL)
830 else if (comma !
[all...]
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-setup.c424 char *comma = strchr(mbr_dest, ','); local
425 if (comma)
427 *comma = 0;
/osnet-11/usr/src/lib/nsswitch/nis/common/
H A Dgetnetgrent.c436 /* Don't allow comma */
455 * the separator after it (comma or
626 * is in the comma-separated, newline-terminated "list"
628 static const char comma = ','; /* Don't let 'cfix' near this */ variable
641 while (*list == comma || isspace(*list))
643 for (p = list; *p != 0 && *p != comma &&
/osnet-11/usr/src/lib/libcmd/common/
H A Dls.c131 "[m:commas|comma-list?List names as comma separated list.]"
182 " [c:comma?Comma separated names across the page.]"
233 #define LS_COMMAS (LS_USER<<4) /* comma separated name list */
336 int comma; /* LS_COMMAS ftw.level crossing */ member in struct:__anon1493
/osnet-11/usr/src/lib/efcode/include/fcode/
H A Dproto.h191 FNPROTO(comma); variable
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dargp-help.c1073 /* Inserts a comma if this isn't the first item on the line, and then makes
1078 comma (unsigned col, struct pentry_state *pest)
1149 comma (uparams.short_opt_col, &pest);
1168 comma (uparams.doc_opt_col, &pest);
1188 comma (uparams.long_opt_col, &pest);
1062 comma (unsigned col, struct pentry_state *pest) function
/osnet-11/usr/src/grub/grub2/grub-core/net/
H A Dnet.c1203 const char *comma; local
1204 comma = grub_strchr (name, ',');
1205 if (comma)
1207 protnamelen = comma - name;
1208 server = comma + 1;
/osnet-11/usr/src/lib/efcode/engine/
H A Dforth.c833 comma(fcode_env_t *env) function
839 set_here(env, HERE + sizeof (fstack_t), "comma");
2628 ANSI(0x0d3, 0, ",", comma);
/osnet-11/usr/src/lib/sasl_plugins/digestmd5/
H A Ddigestmd5.c4315 char *comma = strchr(value, ','); local
4316 if (comma != NULL) {
4317 *comma++ = '\0';
4332 value = comma;
4348 char *comma = strchr(value, ','); local
4355 if (comma != NULL) {
4356 *comma++ = '\0';
4372 value = comma;

Completed in 96 milliseconds