/external/honggfuzz/libhfcommon/ |
D | log.c | 61 log_fd_isatty = isatty(log_fd); in log_init() 82 log_fd_isatty = (isatty(log_fd) == 1 ? true : false); in logInitLogFile() 156 log_fd_isatty = isatty(log_fd); in logRedirectLogFD()
|
/external/toybox/toys/posix/ |
D | nohup.c | 26 if (isatty(1)) { in nohup_main() 38 if (isatty(0)) { in nohup_main()
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 244 long isatty; in _io_open_impl() local 249 _Py_IDENTIFIER(isatty); in _io_open_impl() 395 isatty = PyLong_AsLong(res); in _io_open_impl() 397 if (isatty == -1 && PyErr_Occurred()) in _io_open_impl() 401 if (buffering == 1 || (buffering < 0 && isatty)) { in _io_open_impl() 742 ADD_INTERNED(isatty) in PyInit__io()
|
/external/squashfs-tools/squashfs-tools/ |
D | progressbar.c | 60 if(isatty(STDOUT_FILENO)) in sigwinch_handler() 111 tty = isatty(STDOUT_FILENO); in progress_bar() 186 if(isatty(STDOUT_FILENO)) in progress_thrd()
|
/external/mksh/src/ |
D | Build.sh | 419 int main(void) { return (isatty(0)); } 1190 int main(void) { return (isatty(0)); } 1381 int main(void) { return (isatty(0)); } 1388 int main(void) { return (isatty(0)); } 1493 int main(void) { return (isatty(0)); } 1736 int main(int ac, char **av) { return (foo(av[ac - 1]) + isatty(0)); } 1749 __attribute__((__unused__))) { return (isatty(0)); } 1761 int main(void) { return (isatty(0)); } 1814 int main(void) { struct tm tm; return ((int)sizeof(tm) + isatty(0)); } 1898 int main(void) { return (((int)(rlim_t)0) + isatty(0)); } [all …]
|
D | os2.c | 179 if (!isatty(STDIN_FILENO)) in os2_init() 181 if (!isatty(STDOUT_FILENO)) in os2_init() 183 if (!isatty(STDERR_FILENO)) in os2_init()
|
/external/python/cpython2/Tools/freeze/ |
D | bkfile.py | 20 self.isatty = self.__file.isatty
|
/external/python/cpython2/Parser/ |
D | myreadline.c | 204 if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout))) in PyOS_Readline()
|
/external/python/cpython2/Modules/_io/ |
D | _iomodule.c | 304 long isatty; in io_open() local 430 isatty = PyLong_AsLong(res); in io_open() 432 if (isatty == -1 && PyErr_Occurred()) in io_open() 436 if (buffering == 1 || (buffering < 0 && isatty)) { in io_open()
|
/external/python/cpython2/Lib/test/ |
D | test_StringIO.py | 86 self.assertRaises(TypeError, f.isatty, None) 87 self.assertEqual(f.isatty(), False) 89 self.assertRaises(ValueError, f.isatty)
|
D | test_openpty.py | 15 if not os.isatty(slave):
|
D | test_fileio.py | 115 self.assertFalse(f.isatty()) 245 self.assertEqual(f.isatty(), False) 292 self.assertEqual(f.isatty(), False) 314 self.assertEqual(f.isatty(), True)
|
/external/curl/src/ |
D | tool_cb_wrt.c | 81 bool is_tty = config->global->isatty; in tool_write_cb() 162 if(isatty(fileno(outs->stream)) && in tool_write_cb()
|
/external/toybox/lib/ |
D | tty.c | 12 for (i = 0; i<3; i++) if (isatty(j = (i+1)%3)) return j; in tty_fd() 30 if (isatty(i) && !ioctl(i, TIOCGWINSZ, &ws)) { in terminal_size()
|
/external/python/cpython2/RISCOS/ |
D | unixstuff.h | 7 int isatty(int fn);
|
/external/toolchain-utils/automation/common/ |
D | command_executer_test.py | 177 return sys.stdout.isatty() 180 return sys.stderr.isatty()
|
/external/mesa3d/src/intel/tools/ |
D | aubinator_error_decode.c | 614 if (!isatty(1)) in setup_pager() 701 if (isatty(0)) { in main() 733 option_color = isatty(1) ? COLOR_ALWAYS : COLOR_NEVER; in main() 735 if (isatty(1) && pager) in main()
|
/external/python/cpython2/Lib/ |
D | _pyio.py | 199 if buffering == 1 or buffering < 0 and raw.isatty(): 452 def isatty(self): member in IOBase 788 def isatty(self): member in _BufferedIOMixin 789 return self.raw.isatty() 1224 def isatty(self): member in BufferedRWPair 1225 return self.reader.isatty() or self.writer.isatty() 1603 def isatty(self): member in TextIOWrapper 1604 return self.buffer.isatty()
|
/external/ltp/lib/ |
D | tst_ansi_color.c | 70 if (isatty(fd) == 0) in tst_color_enabled()
|
/external/python/cpython3/Lib/test/ |
D | test_openpty.py | 14 if not os.isatty(slave):
|
/external/ImageMagick/MagickCore/ |
D | nt-base.h | 149 #if !defined(isatty) 150 # define isatty _isatty macro
|
/external/python/cpython3/Lib/ |
D | _pyio.py | 211 if buffering == 1 or buffering < 0 and raw.isatty(): 469 def isatty(self): member in IOBase 830 def isatty(self): member in _BufferedIOMixin 831 return self.raw.isatty() 1336 def isatty(self): member in BufferedRWPair 1337 return self.reader.isatty() or self.writer.isatty() 1725 def isatty(self): member in FileIO 1728 return os.isatty(self._fd) 2132 def isatty(self): member in TextIOWrapper 2133 return self.buffer.isatty()
|
/external/toybox/kconfig/ |
D | conf.c | 506 valid_stdin = isatty(0) && isatty(1) && isatty(2); in main()
|
/external/e2fsprogs/include/nonunix/ |
D | unistd.h | 31 #define isatty _isatty macro
|
/external/python/cpython2/Python/ |
D | frozenmain.c | 61 if (inspect && isatty((int)fileno(stdin))) in Py_FrozenMain()
|