Home | History | Annotate | Download | only in boot

Lines Matching defs:howto

80 void bootit(const char *filename, int howto, int tell);
84 int exec_netbsd(const char *file, int howto);
87 static int parseopts(const char *opts, int *howto);
88 static int parseboot(char *arg, char **filename, int *howto);
194 bootit(const char *filename, int howto, int tell)
199 if (howto)
200 printf(" (howto 0x%x)", howto);
204 if (exec_netbsd(filename, howto) < 0) {
268 exec_netbsd(const char *file, int howto)
301 (*(void (*)(int, void *))marks[MARK_ENTRY])(howto, bibuf);
367 int howto;
369 if (parseboot(arg, &filename, &howto)) {
370 bootit(filename, howto, 1);
452 parseopts(const char *opts, int *howto)
469 *howto = tmpopt;
474 parseboot(char *arg, char **filename, int *howto)
479 *howto = 0;
509 if (parseopts(opts, howto) == 0) {