| /src/sbin/restore/ |
| Makefile | 9 SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \ 15 COPTS.interactive.c+= ${CC_WNO_STRINGOP_TRUNCATION}
|
| /src/sys/arch/ews4800mips/stand/common/ |
| loader.c | 48 cmd_jump(int argc, char *argp[], int interactive) 64 if (prompt_yesno(interactive)) { 80 cmd_load_binary(int argc, char *argp[], int interactive) 110 if (!prompt_yesno(interactive)) { 132 cmd_boot_ux(int argc, char *argp[], int interactive) 153 if (prompt_yesno(interactive)) { 174 cmd_boot(int argc, char *argp[], int interactive) 200 interactive ? " Y/N" : ""); 213 if (prompt_yesno(interactive)) {
|
| cmd.c | 113 cmd_batch(int argc, char *argp[], int interactive) 124 if (p->func(p->argc + 1, args, interactive)) { 134 cmd_help(int argc, char *argp[], int interactive)
|
| device_test.c | 53 cmd_ga_test(int argc, char *argp[], int interactive) 78 cmd_kbd_scancode(int argc, char *argp[], int interactive) 95 cmd_ether_test(int argc, char *argp[], int interactive)
|
| prompt.c | 165 prompt_yesno(int interactive) 169 if (!interactive) 193 cmd_log_save(int argc, char *argp[], int interactive)
|
| diskutil.c | 50 cmd_disklabel(int argc, char *argp[], int interactive) 69 cmd_ls(int argc, char *argp[], int interactive)
|
| cop0.c | 69 cmd_tlb(int argc, char *argp[], int interactive) 122 cmd_cop0(int argc, char *argp[], int interactive)
|
| boot.c | 110 printf("\n[non-interactive mode]\n"); 176 cmd_info(int argc, char *argp[], int interactive) 225 cmd_reboot(int argc, char *argp[], int interactive) 329 cmd_test(int argc, char *argp[], int interactive)
|
| mem.c | 52 cmd_mem(int argc, char *argp[], int interactive)
|
| /src/sys/arch/hppa/stand/xxboot/ |
| main.c | 43 void ipl_main(unsigned /*interactive*/, unsigned /*sptop*/, unsigned /*psw*/); 44 void load_file(const char *, uintptr_t /*loadadr*/, unsigned /*interactive*/, 47 unsigned /*interactive*/, int /*part*/); 63 void dispatch(unsigned /*interactive*/, unsigned /*top*/, 178 ipl_main(unsigned interactive, unsigned sptop, unsigned psw) 179 /* interactive: parameters from PDC */ 190 print(hexstr(buf, interactive)); 209 if (interactive) { 289 load_file(str_boot1, loadadr, interactive, part); /* "boot.hp700" */ 290 load_file(str_boot2, loadadr, interactive, part); /* "boot" * 304 load_file_ino(ufs_lookup_path(path), path, loadadr, interactive, part); local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| intel_rps.h | 31 void intel_rps_mark_interactive(struct intel_rps *rps, bool interactive);
|
| intel_rps_types.h | 81 unsigned int interactive; member in struct:intel_rps::__anon4990
|
| intel_rps.c | 646 if (rps->power.interactive) 652 void intel_rps_mark_interactive(struct intel_rps *rps, bool interactive) 655 if (interactive) { 656 if (!rps->power.interactive++ && rps->active) 659 GEM_BUG_ON(!rps->power.interactive); 660 rps->power.interactive--;
|
| /src/bin/sh/ |
| option.list | 48 Iflag ignoreeof I # do not exit interactive shell on EOF 63 iflag interactive i # interactive shell
|
| /src/games/gomoku/ |
| main.c | 66 bool interactive = true; /* true if interactive */ variable 134 interactive = false; 229 if (interactive) { 305 if (interactive) 311 if (interactive && curmove != ILLEGAL) { 321 if (interactive) 348 if (interactive) 353 if (interactive) { 374 if (interactive) { [all...] |
| bdisp.c | 291 if (!interactive && cp < end) { 295 if (!interactive)
|
| gomoku.h | 271 extern bool interactive;
|
| /src/usr.bin/ftp/ |
| cmds.c | 166 if (!interactive || confirmrest) 190 interactive = 0; 191 fputs("Interactive mode: off.\n", ttyout); 486 cp, tp, cp != tp || !interactive); 488 ointer = interactive; 489 interactive = 1; 493 interactive = ointer; 510 argv[i], tp, tp != argv[i] || !interactive); 512 ointer = interactive; 513 interactive = 1 [all...] |
| main.c | 165 interactive = 1; 324 interactive = 0; 409 interactive = 0; 1114 " -i Disable interactive prompt during multiple file transfers\n"
|
| ftp_var.h | 208 GLOBAL int interactive; /* interactively prompt on m* cmds */ variable
|
| /src/lib/libc/net/ |
| nslexer.l | 50 %option never-interactive
|
| /src/sys/arch/i386/stand/dosboot/ |
| main.c | 214 int interactive = 0; local 241 interactive = 1; 252 if (interactive) {
|
| /src/bin/ksh/ |
| main.c | 514 volatile int interactive = Flag(FTALKING) && toplevel; local 519 if (interactive) 527 if (interactive) { 538 * interactive is set if we are reading from 573 if (interactive) { 606 if (t != NULL && t->type != TEOF && interactive && really_exit)
|
| lex.c | 990 int interactive = Flag(FTALKING) && s->type == SSTDIN; local 991 int have_tty = interactive && (s->flags & SF_TTY); 1025 if (interactive) { 1075 } else if (interactive) { 1094 if (interactive)
|
| /src/usr.bin/cdplay/ |
| cdplay.c | 145 static int interactive = 1; variable 266 interactive = 0; 375 * doesn't hurt interactive response if we block 499 if (interactive && fd == -1) 518 if (interactive == 0) 520 "'single' valid only in interactive mode"); 523 if (interactive == 0) 525 "`shuffle' valid only in interactive mode"); 583 if (!interactive) 585 "`skip' valid only in interactive mode") [all...] |