HomeSort by: relevance | last modified time | path
    Searched defs:quit (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/tests/fs/vfs/
t_rmdirrace.c 68 int res, fd, quit; local
81 quit = 0;
83 res = pthread_create(&th1, NULL, func1, &quit);
86 res = pthread_create(&th2, NULL, func2, &quit);
92 quit = 1;
  /src/usr.bin/systat/
keyboard.c 61 static char quit[] = "quit"; local
115 command(quit);
  /src/usr.bin/talk/
init_disp.c 134 quit();
141 quit(void) function
  /src/games/robots/
main.c 156 signal(SIGINT, quit);
194 quit(0);
200 * quit:
204 quit(int dummy __unused) function
  /src/tests/fs/nfs/
t_mountd.c 55 static volatile int quit; variable
65 while (!quit) {
82 quit = 1;
99 for (attempts = 100; attempts && !quit; attempts--) {
103 quit = 1;
  /src/tests/kernel/
t_filedesc.c 54 static volatile bool quit; variable
61 while (!quit)
99 quit = true;
  /src/bin/ksh/
edit.h 36 int quit; member in struct:__anon11
  /src/common/dist/zlib/examples/
fitblk.c 62 local void quit(char *why) function
138 quit("need one argument: size of output block");
141 quit("argument must be a number");
143 quit("need positive size of 8 or greater");
153 quit("out of memory");
160 quit("error reading input");
167 quit("error writing output");
188 quit("out of memory");
199 quit("out of memory");
214 quit("out of memory")
    [all...]
  /src/games/monop/
misc.c 109 quit();
289 quit(void) function
297 if (getyn("Do you all really want to quit? ") == 0)
  /src/tests/rump/rumpkern/h_client/
h_reconcli.c 16 static volatile int quit, riseandwhine; variable
26 while (!quit) {
58 while (!quit) {
112 quit = 1;
  /src/external/bsd/zstd/dist/zlibWrapper/examples/
fitblk.c 67 local void quit(char *why) function
150 quit("need one argument: size of output block");
153 quit("argument must be a number");
155 quit("need positive size of 8 or greater");
168 quit("out of memory");
177 quit("error reading input");
184 * quit("error writing output"); */
205 quit("out of memory");
218 quit("out of memory");
235 quit("out of memory")
    [all...]
fitblk_original.c 62 local void quit(char *why) function
138 quit("need one argument: size of output block");
141 quit("argument must be a number");
143 quit("need positive size of 8 or greater");
153 quit("out of memory");
160 quit("error reading input");
167 quit("error writing output");
188 quit("out of memory");
199 quit("out of memory");
214 quit("out of memory")
    [all...]
  /src/external/gpl3/binutils/dist/zlib/examples/
fitblk.c 62 local void quit(char *why) function
138 quit("need one argument: size of output block");
141 quit("argument must be a number");
143 quit("need positive size of 8 or greater");
153 quit("out of memory");
160 quit("error reading input");
167 quit("error writing output");
188 quit("out of memory");
199 quit("out of memory");
214 quit("out of memory")
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/examples/
fitblk.c 62 local void quit(char *why) function
138 quit("need one argument: size of output block");
141 quit("argument must be a number");
143 quit("need positive size of 8 or greater");
153 quit("out of memory");
160 quit("error reading input");
167 quit("error writing output");
188 quit("out of memory");
199 quit("out of memory");
214 quit("out of memory")
    [all...]
  /src/external/gpl3/gdb/dist/zlib/examples/
fitblk.c 62 local void quit(char *why) function
138 quit("need one argument: size of output block");
141 quit("argument must be a number");
143 quit("need positive size of 8 or greater");
153 quit("out of memory");
160 quit("error reading input");
167 quit("error writing output");
188 quit("out of memory");
199 quit("out of memory");
214 quit("out of memory")
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/examples/
fitblk.c 62 local void quit(char *why) function
138 quit("need one argument: size of output block");
141 quit("argument must be a number");
143 quit("need positive size of 8 or greater");
153 quit("out of memory");
160 quit("error reading input");
167 quit("error writing output");
188 quit("out of memory");
199 quit("out of memory");
214 quit("out of memory")
    [all...]
  /src/games/atc/
main.c 78 static void quit(int);
161 (void)signal(SIGINT, quit);
162 (void)signal(SIGQUIT, quit);
334 quit(int dummy __unused) function
  /src/tests/net/if_vlan/
bpfopen.c 68 static sig_atomic_t quit; variable
149 quit = 1;
230 quit = 0;
238 while (quit == 0) {
245 quit = 1;
253 quit = 1;
  /src/usr.bin/mail/
quit.c 1 /* $NetBSD: quit.c,v 1.29 2017/11/09 20:27:50 christos Exp $ */
35 static char sccsid[] = "@(#)quit.c 8.2 (Berkeley) 4/28/95";
37 __RCSID("$NetBSD: quit.c,v 1.29 2017/11/09 20:27:50 christos Exp $");
53 * The "quit" command.
265 quit(jmp_buf jmpbuf) function
  /src/bin/ed/
buf.c 266 /* quit: remove scratch file and exit */
268 quit(int n) function
299 quit(2);
  /src/distrib/utils/more/
main.c 202 quit();
321 quit();
338 quit();
347 quit() function
  /src/games/backgammon/common_source/
subs.c 218 quit(struct move *mm) function
226 writel("Are you sure you want to quit?");
  /src/games/hunt/hunt/
playit.c 279 * quit:
283 quit(int old_status) function
380 addstr("Scan, Cloak, Flying, or Quit? ");
382 addstr("Scan, Cloak, or Quit? ");
  /src/lib/libcurses/EXAMPLES/
ex1.c 54 void quit( int );
126 signal(SIGINT, quit); /* Make sure wou have a 'cleanup' fn */
141 case 'q': /* Quit on 'q' */
142 quit( 0 );
305 quit( 0 );
332 void quit( int sig ) function
  /src/usr.bin/lock/
lock.c 85 static void quit(int) __dead;
186 if (signal(SIGINT, quit) == SIG_ERR)
188 if (signal(SIGQUIT, quit) == SIG_ERR)
198 quit(0);
296 quit(0);
347 quit(int dummy) function

Completed in 304 milliseconds

1 2 3