Searched refs:isatty (Results 1 - 25 of 195) sorted by relevance

12345678

/external/toybox/toys/posix/
H A Dnohup.c25 if (isatty(1)) {
37 if (isatty(0)) {
/external/python/cpython2/RISCOS/
H A Dunixstuff.h1 /* Fudge unix isatty and fileno for RISCOS */
7 int isatty(int fn);
H A Dunixstuff.c1 /* Fudge unix isatty and fileno for RISCOS */
12 int isatty(int fn) function
/external/syslinux/com32/lib/sys/
H A Disatty.c29 * isatty.c
42 int isatty(int fd) function
/external/lisa/libs/utils/
H A Dcolors.py35 if not sys.stdout.isatty():
/external/ltp/lib/
H A Dtst_ansi_color.c70 if (isatty(fd) == 0)
/external/python/cpython2/Lib/test/
H A Dtest_openpty.py15 if not os.isatty(slave):
/external/python/cpython3/Lib/test/
H A Dtest_openpty.py14 if not os.isatty(slave):
/external/syslinux/com32/include/
H A Dunistd.h21 __extern int isatty(int);
/external/e2fsprogs/include/nonunix/
H A Dunistd.h31 #define isatty _isatty macro
/external/python/cpython2/Lib/plat-os2emx/
H A D_emx_link.py49 if os.isatty(s):
/external/python/cpython2/Python/
H A Dfrozenmain.c61 if (inspect && isatty((int)fileno(stdin)))
/external/python/cpython2/Tools/framer/
H A Dexample.py63 def isatty(self): member in class:cStringIO.InputType
/external/python/cpython2/Tools/freeze/
H A Dbkfile.py20 self.isatty = self.__file.isatty
/external/squashfs-tools/squashfs-tools/
H A Dprogressbar.c60 if(isatty(STDOUT_FILENO))
111 tty = isatty(STDOUT_FILENO);
186 if(isatty(STDOUT_FILENO))
/external/honggfuzz/includes/libcommon/
H A Dlog.c59 log_fd_isatty = isatty(log_fd);
79 log_fd_isatty = (isatty(log_fd) == 1 ? true : false);
/external/honggfuzz/libcommon/
H A Dlog.c59 log_fd_isatty = isatty(log_fd);
79 log_fd_isatty = (isatty(log_fd) == 1 ? true : false);
/external/python/cpython2/Parser/
H A Dmyreadline.c204 if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout)))
/external/toybox/toys/other/
H A Dmkpasswd.c64 if (isatty(0)) {
/external/python/cpython3/Modules/_io/
H A D_iomodule.c172 * "Interactive" text files (files for which isatty() returns True)
245 long isatty;
250 _Py_IDENTIFIER(isatty);
396 isatty = PyLong_AsLong(res);
398 if (isatty == -1 && PyErr_Occurred())
402 if (buffering == 1 || (buffering < 0 && isatty)) {
767 ADD_INTERNED(isatty)
244 long isatty; local
/external/e2fsprogs/e2fsck/
H A Discan.c28 extern int isatty(int);
/external/e2fsprogs/lib/et/
H A Dcom_err.c48 if (!isatty(fd))
/external/lz4/programs/
H A Dplatform.h104 * Detect if isatty() and fileno() are available
107 # include <unistd.h> /* isatty */
108 # define IS_CONSOLE(stdStream) isatty(fileno(stdStream))
/external/python/cpython3/Python/
H A Dfrozenmain.c96 if (inspect && isatty((int)fileno(stdin)))
/external/toybox/toys/pending/
H A Dsulogin.c92 if (!isatty(0)) error_exit("%s: it is not a tty", toys.optargs[0]);

Completed in 610 milliseconds

12345678