Lines Matching refs:cp
133 char *cp, *prompt; in command_autoboot() local
142 howlong = strtol(argv[1], &cp, 0); in command_autoboot()
143 if (*cp != 0) { in command_autoboot()
164 char *cp; in autoboot_maybe() local
166 cp = getenv("autoboot_delay"); in autoboot_maybe()
167 if ((autoboot_tried == 0) && ((cp == NULL) || strcasecmp(cp, "NO"))) in autoboot_maybe()
176 char *argv[2], *cp, *ep; in autoboot() local
187 if ((cp = getenv("autoboot_delay"))) { in autoboot()
188 timeout = strtol(cp, &ep, 0); in autoboot()
189 if (cp == ep) in autoboot()
322 char lbuf[KENV_MVALLEN], *cp, *ep, *dev, *fstyp, *options; in getrootmount() local
341 for (cp = lbuf; (*cp != 0) && !isspace(*cp); cp++) in getrootmount()
343 if (*cp == 0) /* misformatted */ in getrootmount()
346 *cp++ = 0; in getrootmount()
351 while ((*cp != 0) && isspace(*cp)) in getrootmount()
352 cp++; in getrootmount()
354 if ((*cp == 0) || (*cp != '/') || !isspace(*(cp + 1))) in getrootmount()
357 cp += 2; in getrootmount()
358 while ((*cp != 0) && isspace(*cp)) in getrootmount()
359 cp++; in getrootmount()
360 if (*cp == 0) /* misformatted */ in getrootmount()
363 ep = cp; in getrootmount()
364 while ((*cp != 0) && !isspace(*cp)) in getrootmount()
365 cp++; in getrootmount()
366 *cp = 0; in getrootmount()
371 cp += 1; in getrootmount()
372 while ((*cp != 0) && isspace(*cp)) in getrootmount()
373 cp++; in getrootmount()
374 if (*cp == 0) /* misformatted */ in getrootmount()
377 ep = cp; in getrootmount()
378 while ((*cp != 0) && !isspace(*cp)) in getrootmount()
379 cp++; in getrootmount()
380 *cp = 0; in getrootmount()
405 cp = strdup(currdev); in getrootmount()
406 cp[strlen(cp) - 1] = '\0'; in getrootmount()
407 setenv("vfs.root.mountfrom", cp, 0); in getrootmount()
409 free(cp); in getrootmount()
419 char *cp; in loadakernel() local
421 for (try = 0; (cp = getbootfile(try)) != NULL; try++) in loadakernel()
422 if (mod_loadkld(cp, argc - 1, argv + 1) != 0) in loadakernel()
423 printf("can't load '%s'\n", cp); in loadakernel()