HomeSort by relevance Sort by last modified time
    Searched refs:isatty (Results 26 - 50 of 356) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/honggfuzz/libcommon/
log.c 59 log_fd_isatty = isatty(log_fd);
79 log_fd_isatty = (isatty(log_fd) == 1 ? true : false);
  /external/python/cpython2/Parser/
myreadline.c 204 if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout)))
  /external/python/cpython2/Tools/freeze/
bkfile.py 20 self.isatty = self.__file.isatty
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
makebuf.c 71 if (couldbetty && isatty(fp->_file))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/
example.py 63 def isatty(self): member in class:cStringIO.InputType
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
EfiSysCall.h 31 int isatty (int);
205 int isatty (int fd);
  /external/python/cpython2/Lib/plat-os2emx/
_emx_link.py 49 if os.isatty(s):
  /external/python/cpython2/RISCOS/
unixstuff.c 1 /* Fudge unix isatty and fileno for RISCOS */
12 int isatty(int fn) function
  /external/python/cpython2/Tools/framer/
example.py 63 def isatty(self): member in class:cStringIO.InputType
  /external/toybox/toys/other/
mkpasswd.c 64 if (isatty(0)) {
  /external/toybox/toys/posix/
rm.c 40 if (!(dir && try->again) && ((or && isatty(0)) || (flags & FLAG_i))) {
  /external/python/cpython3/Modules/_io/
_iomodule.c 172 * "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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pty.py 52 # isatty() and close() can hang on some platforms. Set an alarm
63 self.fail("isatty hung")
78 self.assertTrue(os.isatty(slave_fd), 'slave_fd is not a tty')
117 if not os.isatty(1):
test_StringIO.py 83 self.assertRaises(TypeError, f.isatty, None)
84 self.assertEqual(f.isatty(), False)
86 self.assertRaises(ValueError, f.isatty)
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
makebuf.c 95 if (couldbetty || isatty(fp->_file))
  /external/e2fsprogs/e2fsck/
iscan.c 28 extern int isatty(int);
  /external/e2fsprogs/lib/et/
com_err.c 48 if (!isatty(fd))
  /external/lz4/programs/
platform.h 104 * Detect if isatty() and fileno() are available
107 # include <unistd.h> /* isatty */
108 # define IS_CONSOLE(stdStream) isatty(fileno(stdStream))
  /external/python/cpython3/Python/
frozenmain.c 96 if (inspect && isatty((int)fileno(stdin)))
  /external/toybox/toys/pending/
sulogin.c 92 if (!isatty(0)) error_exit("%s: it is not a tty", toys.optargs[0]);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 37 # define isatty _isatty macro
  /external/mksh/src/
os2.c 179 if (!isatty(STDIN_FILENO))
181 if (!isatty(STDOUT_FILENO))
183 if (!isatty(STDERR_FILENO))
  /external/python/cpython2/Lib/test/
test_StringIO.py 86 self.assertRaises(TypeError, f.isatty, None)
87 self.assertEqual(f.isatty(), False)
89 self.assertRaises(ValueError, f.isatty)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_StringIO.py 86 self.assertRaises(TypeError, f.isatty, None)
87 self.assertEqual(f.isatty(), False)
89 self.assertRaises(ValueError, f.isatty)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_StringIO.py 86 self.assertRaises(TypeError, f.isatty, None)
87 self.assertEqual(f.isatty(), False)
89 self.assertRaises(ValueError, f.isatty)

Completed in 489 milliseconds

12 3 4 5 6 7 8 91011>>