| /mirbsd/src/libexec/getty/ |
| D | init.c | 46 extern struct termios tmode; 54 { "er", &tmode.c_cc[VERASE] }, /* erase character */ 55 { "kl", &tmode.c_cc[VKILL] }, /* kill character */ 56 { "et", &tmode.c_cc[VEOF] }, /* eof character (eot) */ 63 { "in", &tmode.c_cc[VINTR] }, /* interrupt char */ 64 { "qu", &tmode.c_cc[VQUIT] }, /* quit char */ 65 { "xn", &tmode.c_cc[VSTART] }, /* XON (start) char */ 66 { "xf", &tmode.c_cc[VSTOP] }, /* XOFF (stop) char */ 67 { "bk", &tmode.c_cc[VEOL] }, /* brk char (alt \n) */ 68 { "su", &tmode.c_cc[VSUSP] }, /* suspend char */ [all …]
|
| D | main.c | 82 struct termios tmode, omode; variable 120 #define ERASE tmode.c_cc[VERASE] 121 #define KILL tmode.c_cc[VKILL] 122 #define EOT tmode.c_cc[VEOF] 127 tmode.c_ispeed = tmode.c_ospeed = 0; in dingdong() 128 (void)tcsetattr(0, TCSANOW, &tmode); in dingdong() 228 if (tcgetattr(0, &tmode) < 0) { in main() 232 omode = tmode; in main() 252 cfsetispeed(&tmode, IS); in main() 254 cfsetispeed(&tmode, SP); in main() [all …]
|
| D | subr.c | 51 extern struct termios tmode, omode; 149 &tmode.c_cc[VERASE], &tmode.c_cc[VKILL], &tmode.c_cc[VINTR], 150 &tmode.c_cc[VQUIT], &tmode.c_cc[VSTART], &tmode.c_cc[VSTOP], 151 &tmode.c_cc[VEOF], &tmode.c_cc[VEOL], &tmode.c_cc[VSUSP], 152 &tmode.c_cc[VDSUSP], &tmode.c_cc[VREPRINT], &tmode.c_cc[VDISCARD], 153 &tmode.c_cc[VWERASE], &tmode.c_cc[VLNEXT], 0 207 tmode.c_cflag = C0; in setflags() 208 tmode.c_iflag = I0; in setflags() 209 tmode.c_lflag = L0; in setflags() 210 tmode.c_oflag = O0; in setflags() [all …]
|
| /mirbsd/src/gnu/usr.bin/binutils/gdb/ |
| D | remote-fileio.c | 193 mode_t tmode = 0; in remote_fileio_mode_to_target() local 196 tmode |= FILEIO_S_IFREG; in remote_fileio_mode_to_target() 198 tmode |= FILEIO_S_IFDIR; in remote_fileio_mode_to_target() 200 tmode |= FILEIO_S_IFCHR; in remote_fileio_mode_to_target() 202 tmode |= FILEIO_S_IRUSR; in remote_fileio_mode_to_target() 204 tmode |= FILEIO_S_IWUSR; in remote_fileio_mode_to_target() 206 tmode |= FILEIO_S_IXUSR; in remote_fileio_mode_to_target() 209 tmode |= FILEIO_S_IRGRP; in remote_fileio_mode_to_target() 213 tmode |= FILEIO_S_IWGRP; in remote_fileio_mode_to_target() 217 tmode |= FILEIO_S_IXGRP; in remote_fileio_mode_to_target() [all …]
|
| /mirbsd/src/usr.sbin/mtree/ |
| D | compare.c | 153 mode_t tmode, mode; in compare() local 155 tmode = s->st_mode; in compare() 162 if (!((tmode & ~(S_IRWXU|S_IRWXG|S_IRWXO)) || in compare() 164 if ((mode | tmode) == tmode) in compare()
|
| /mirbsd/src/gnu/usr.bin/perl/wince/ |
| D | win32io.c | 71 const char *tmode = mode; in PerlIOWin32_open() local 188 fd = win32_open_osfhandle((intptr_t) h, PerlIOUnix_oflags(tmode)); in PerlIOWin32_open() 194 s = PerlIOSelf(PerlIO_push(aTHX_ f,self,tmode,PerlIOArg),PerlIOWin32); in PerlIOWin32_open()
|
| /mirbsd/src/gnu/usr.bin/perl/win32/ |
| D | win32io.c | 70 const char *tmode = mode; in PerlIOWin32_open() local 186 fd = win32_open_osfhandle((intptr_t) h, PerlIOUnix_oflags(tmode)); in PerlIOWin32_open() 192 s = PerlIOSelf(PerlIO_push(aTHX_ f,self,tmode,PerlIOArg),PerlIOWin32); in PerlIOWin32_open()
|
| /mirbsd/src/gnu/usr.bin/perl/ |
| D | perlio.c | 2653 PerlIOStdio_mode(const char *mode, char *tmode) argument 2655 char * const ret = tmode; 2658 *tmode++ = *mode++; 2662 *tmode++ = 'b'; 2664 *tmode = '\0'; 2680 char tmode[8]; local 2683 mode = PerlIOStdio_mode(mode, tmode)))) { 2740 char tmode[8]; local 2746 stdio = PerlSIO_freopen(path, (mode = PerlIOStdio_mode(mode, tmode)), 2767 mode = PerlIOStdio_mode(mode, tmode); [all …]
|
| D | perliol.h | 256 PERL_EXPORT_C char * PerlIOStdio_mode(const char *mode, char *tmode);
|