/src/bin/sh/ |
mkinit.sh | 33 # use of echo in this script is broken 35 # some echo versions will expand \n in the args, which breaks C 39 # Fortunately, use of echo here is also trivially simplistic, 42 echo() function 48 # rather than echo to output anything at all... then 170 echo "/*" 171 echo " * This file was generated by the mkinit program." 172 echo " */" 173 echo 177 echo "#include $f [all...] |
mknodenames.sh | 8 # All (like every single one) uses of echo in this script 10 # hence replacing echo with printf is trivial... 12 echo() function 18 echo "Usage: $0 nodes.h" 1>&2 26 echo "\ 32 echo "#ifndef NODENAMES_H_INCLUDED" 33 echo "#define NODENAMES_H_INCLUDED" 34 echo 35 echo "#ifdef DEBUG" 44 echo [all...] |
/src/usr.bin/make/unit-tests/ |
varname-dot-make-jobs.mk | 8 echo: .PHONY target 9 @echo ${.MAKE.JOBS:Uundefined} 12 @${MAKE} -r -f ${MAKEFILE} echo 13 @${MAKE} -r -f ${MAKEFILE} echo -j1 14 @${MAKE} -r -f ${MAKEFILE} echo -j5 15 @${MAKE} -r -f ${MAKEFILE} echo -j20 16 @${MAKE} -r -f ${MAKEFILE} echo -j00000000000000000000000000000001 18 .if !make(echo) && ${.MAKE.JOBS.C} == "yes" 32 e=`echo "${NCPU} * $$j" | bc | sed 's/\.[0-9]*//'`; \ 34 test $$g = $$e || echo "$$g != $$e"; [all...] |
job-output.mk | 8 @${MAKE} -f ${MAKEFILE} -j1 echo-on-stdout-and-stderr 14 @echo begin $@ 16 @echo 18 @echo 20 @echo end $@ 32 @echo begin $@ 33 @echo only stdout: 34 @${MAKE} -f ${MAKEFILE} echo-on-stdout-and-stderr 2>/dev/null 35 @echo only stderr: 36 @${MAKE} -f ${MAKEFILE} echo-on-stdout-and-stderr 1>/dev/nul [all...] |
var-op-sunsh.mk | 11 VAR:sh= echo colon-sh 18 VAR :sh = echo colon-sh-spaced 29 VAR:shell= echo colon-shell 33 .if ${${:UVAR\:shell}} != "echo colon-shell" 42 VAR:shoe:shore= echo two-colons 43 .if ${${:UVAR\:shoe\:shore}} != "echo two-colons" 65 VAR.${:U echo\:shell}= ok-shell 66 .if ${VAR.${:U echo\:shell}} != "ok-shell" 91 VAR :sh :sh :sh :sh= echo multiple 124 VAR :sh += echo tw [all...] |
/src/usr.bin/tip/aculib/ |
biz31.c | 49 static void echo(const char *); 71 echo("#\rk$\r$\n"); /* disable auto-answer */ 72 echo("$>$.$ #\r"); /* tone/pulse dialing */ 73 echo(mod); 74 echo("$\r$\n"); 75 echo("$>$.$ #\re$ "); /* disconnection sequence */ 76 echo(DISCONNECT_CMD); 77 echo("\r$\n$\r$\n"); 78 echo("$>$.$ #\rr$ "); /* repeat dial */ 79 echo(num) 131 echo(const char *s) function in typeref:typename:void [all...] |
ventel.c | 42 * The Ventel is expected to be strapped for local echo (just like uucp) 51 static void echo(const char *); 85 echo("#k$\r$\n$D$I$A$L$:$ "); 137 echo(const char *s) function in typeref:typename:void
|
/src/games/hack/ |
def.flag.h | 90 unsigned echo:1; /* 1 to echo characters */ member in struct:flag
|
/src/lib/libcurses/ |
tty.c | 139 screen->cbreakt.c_lflag &= ~(ECHO | ECHONL | ICANON); 411 echo(void) function in typeref:typename:int 413 __CTRACE(__CTRACE_MISC, "echo()\n");
|
/src/games/warp/ |
term.h | 21 #ifndef ECHO 22 #define ECHO 8 209 #define echo() ((bizarre=1),_tty.c_lflag |= ECHO, tcsetattr(_tty_ch, TCSANOW, &_tty)) macro 210 #define noecho() ((bizarre=1),_tty.c_lflag &=~ECHO, tcsetattr(_tty_ch, TCSANOW, &_tty)) 223 #define echo() ((bizarre=1),_tty.sg_flags |= ECHO, stty(_tty_ch, &_tty)) macro 224 #define noecho() ((bizarre=1),_tty.sg_flags &= ~ECHO, stty(_tty_ch, &_tty))
|
/src/usr.bin/xargs/ |
xargs.c | 74 static char echo[] = _PATH_ECHO; variable in typeref:typename:char[] 229 * shell. Echo is the default. Set up pointers for the user's 233 cnt = strlen(*bxp++ = echo);
|
/src/lib/libskey/ |
skeysubr.c | 315 /* Read in secret password (turns off echo) */ 332 /* Restore signal handler and turn echo back on */ 342 /* Read in an s/key OTP (does not turn off echo) */ 361 /* Turn on echo if necessary */ 487 /* Turn echo on/off */ 491 static int echo = 0; local in function:skey_echo 494 /* Turn echo off */ 496 if ((echo = (term.c_lflag & ECHO)) != 0) { 497 term.c_lflag &= ~ECHO; [all...] |
/src/sys/netinet/ |
dccp_tcplike.c | 427 u_int32_t echo, elapsed; local in function:tcplike_send_packet_recv 429 TCPLIKE_DEBUG((LOG_INFO, "Received TIMESTAMP ECHO\n")); 430 bcopy(av, &echo, 4); 433 if (echo == cb->timestamp) { 443 TCPLIKE_DEBUG((LOG_INFO, "Got Timestamp Echo; Echo = %u, Elapsed = %u. DIFF = %u\n", 444 echo, elapsed, diff));
|
/src/usr.bin/mail/ |
cmd3.c | 937 * Expand file names like echo 940 echo(void *v) function in typeref:typename:PUBLIC int
|
/src/usr.bin/rlogin/ |
rlogin.c | 110 static void echo(int); 448 * command character, then we echo locally. Otherwise, 449 * characters are echo'd remotely. If the command character 450 * is doubled, this acts as a force and local echo is 462 echo((int)c); 467 echo((int)c); 473 echo((int)c); 496 echo(int i) function in typeref:typename:void 722 tty.c_lflag &= ~(ECHO|ICANON|ISIG|IEXTEN);
|
/src/sys/arch/sun3/include/ |
mon.h | 119 u_char *echo; /* Should getchar echo? */ member in struct:sunromvec 310 * int echop; / * 1 if should echo input, 0 if not * /
|
/src/sys/arch/sparc/include/ |
oldmon.h | 172 u_char *echo; /* Should getchar echo? */ member in struct:om_vector
|
/src/sys/arch/sun68k/include/ |
mon.h | 119 u_char *echo; /* Should getchar echo? */ member in struct:sunromvec 314 * int echop; / * 1 if should echo input, 0 if not * /
|
/src/usr.bin/make/ |
job.c | 207 bool echo; member in struct:Job 230 * templates for echo control and error control. 251 * causes an error, so be it. Any templates set up to echo the command will 255 * The command-line flags "echo" and "exit" also control the behavior. The 256 * "echo" flag causes the shell to start echoing commands right away. The 282 const char *echoTmpl; /* template to echo a command */ 295 const char *echoFlag; /* shell flag to echo commands */ 300 /* Whether to echo the command before or instead of running it. */ 301 bool echo; member in struct:CommandFlags 391 "echo \"%s\"\n", /* .echoTmpl * [all...] |