| /src/games/hack/ | 
| def.flag.h | 73 	unsigned standout:1;	/* use standout for --More-- */  member in struct:flag 
 | 
| hack.options.c | 82 		flags.standout = flags.nonull = FALSE; 121 	if (!strncmp(opts, "standout", 8)) {
 122 		flags.standout = !negated;
 250 		if (flags.standout)
 251 			(void) strlcat(buf, "standout,", sizeof(buf));
 
 | 
| hack.tty.c | 280 	if (flags.standout) 285 	if (flags.standout)
 
 | 
| hack.topl.c | 162 	if (flags.standout) 165 	if (flags.standout)
 
 | 
| hack.pager.c | 209 		so = flags.standout; 210 		flags.standout = 1;
 216 		flags.standout = so;
 
 | 
| /src/games/larn/ | 
| help.c | 52 			standout("return"); 54 			standout("space");
 107 	standout("return");
 
 | 
| store.c | 251 		standout("escape"); 268 		standout("space");
 270 		standout("escape");
 403 		standout("escape");
 542 		standout("escape");
 617 		standout("d");
 619 		standout("w");
 621 		standout("s");
 623 		standout("escape");
 768 		standout("*");
 [all...]
 | 
| extern.h | 139 void standout(const char *); 
 | 
| /src/lib/libcurses/ | 
| standout.c | 1 /*	$NetBSD: standout.c,v 1.20 2024/12/23 02:58:04 blymn Exp $	*/ 35 static char sccsid[] = "@(#)standout.c	8.3 (Berkeley) 8/10/94";
 37 __RCSID("$NetBSD: standout.c,v 1.20 2024/12/23 02:58:04 blymn Exp $");
 47  * standout --
 48  *	Enter standout mode on stdscr.
 51 standout(void)  function in typeref:typename:int
 59  *	Exit standout mode on stdscr.
 72  *	Enter standout mode in window win.
 83 	 * If standout/standend strings, or can underline, set the
 84 	 * screen standout bit
 [all...]
 | 
| Makefile | 30 	scroll.c scrollok.c setterm.c slk.c standout.c syncok.c timeout.c \ 172 	 curses_standout.3 standend.3 curses_standout.3 standout.3 \
 
 | 
| /src/games/robots/ | 
| play_level.c | 65 	standout(); 
 | 
| move_robs.c | 118 	standout(); 
 | 
| score.c | 177 			standout(); 
 | 
| /src/usr.bin/systat/ | 
| globalcmds.c | 107 		standout(); 
 | 
| main.c | 389 		standout(); 
 | 
| /src/lib/libcurses/EXAMPLES/ | 
| ex1.c | 135 	standout(); 193 		        case 's':		/* Go into standout mode on 's' */
 194 			        standout();
 196 		        case 'e':		/* Exit standout mode on 'e' */
 
 | 
| /src/games/mille/ | 
| print.c | 95 		standout(); 
 | 
| move.c | 557 			standout(); 
 | 
| /src/games/boggle/boggle/ | 
| mach.c | 378 	standout(); 436 	standout();
 
 | 
| /src/usr.sbin/sysinst/ | 
| run.c | 375 	standout(); 379 	standout();
 689 			standout();
 694 				standout();
 
 | 
| /src/tests/lib/libcurses/tests/ | 
| Makefile | 166 FILES+=		standout 
 | 
| /src/games/rogue/ | 
| zap.c | 305 		standout(); 
 | 
| score.c | 432 			standout(); 
 | 
| /src/tests/lib/libcurses/ | 
| t_curses.sh | 1376 # curses standout attribute manipulation routines 1379 atf_test_case standout
 1386     h_run standout
 2355 	# curses standout attribute manipulation routines
 2356 	atf_add_test_case standout
 
 | 
| /src/games/warp/ | 
| term.h | 271 EXT char *SO INIT(NULL);		/* begin standout mode */ 272 EXT char *SE INIT(NULL);		/* end standout mode */
 299 #define standout() do_tc(SO,1)  macro
 
 |