/osnet-11/usr/src/lib/libproc/common/ |
H A D | proc_arg.c | 358 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/cmd/perl/5.8.4/distrib/t/op/ |
H A D | hashassign.t | 13 my @comma = ("key", "value"); 23 my %comma = @comma; 24 ok (keys %comma == 1, 'keys on comma hash'); 25 ok (values %comma == 1, 'values on comma hash'); 28 is ($comma{"k" . $key}, "value", 'is key present? (unoptimised)'); 30 is ($comma{key}, "value", 'is key present? (maybe optimised)'); 33 is ($comma{ [all...] |
/osnet-11/usr/src/lib/libsldap/common/ |
H A D | ns_getalias.c | 110 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 D | abienv.c | 43 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/fm/topo/modules/sun4/hostbridge/ |
H A D | hb_sun4.c | 45 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/grub/grub2/grub-core/kern/ |
H A D | main.c | 150 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/grub/grub2/grub-core/kern/ieee1275/ |
H A D | openfw.c | 354 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/lib/libast/common/vmalloc/ |
H A D | vmtrace.c | 116 int comma; local 153 comma = 0; 173 comma = 1; 176 { if(comma) 184 comma = 1; 186 if(comma)
|
/osnet-11/usr/src/grub/grub2/grub-core/lib/ |
H A D | legacy_parse.c | 494 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/lib/gss_mechs/mech_krb5/mech/ |
H A D | errmap.h | 248 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/lib/libshell/common/sh/ |
H A D | expand.c | 278 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/libnsl/ipsec/ |
H A D | algs.c | 72 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/libbsm/common/ |
H A D | audit_event.c | 417 char *comma = ","; local 421 s = strtok_r(flags, comma, &last); 428 s = strtok_r(NULL, comma, &last);
|
/osnet-11/usr/src/grub/grub2/grub-core/commands/i386/pc/ |
H A D | sendkey.c | 127 {"comma", "less", ',', '<', 0x33},
|
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/ |
H A D | pkinit_matching.c | 189 char *comma; local 215 comma = strchr(value, ','); 216 if (comma != NULL) 217 len = comma - value;
|
/osnet-11/usr/src/cmd/sendmail/src/ |
H A D | savemail.c | 1695 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/fm/topo/modules/common/pcibus/ |
H A D | did_props.c | 383 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/nsswitch/nis/common/ |
H A D | getnetgrent.c | 436 /* 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/libbsm/ |
H A D | auditxml | 423 my $comma = ','; 426 $comma = '' if $i++ == $j; 428 $start = " = $start$comma"; 430 $start = "$comma\t"; 910 # "EOL" is where a comma should go unless end of list
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/ |
H A D | O.pm | 92 consists of a comma-separated list of words (no white-space).
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/re/ |
H A D | re.pm | 66 comma-separated list of C<termcap> properties to use for highlighting
|
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/ |
H A D | argp-help.c | 1073 /* 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/util/ |
H A D | grub-setup.c | 424 char *comma = strchr(mbr_dest, ','); local 425 if (comma) 427 *comma = 0;
|
/osnet-11/usr/src/grub/grub2/grub-core/net/ |
H A D | net.c | 1203 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/include/fcode/ |
H A D | proto.h | 191 FNPROTO(comma); variable
|