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

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
_iomodule.c 236 "* \"Interactive\" text files (files for which isatty() returns True)\n"
307 long isatty;
430 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL);
433 isatty = PyLong_AsLong(res);
435 if (isatty == -1 && PyErr_Occurred())
439 if (buffering == 1 || (buffering < 0 && isatty)) {
735 if (!(_PyIO_str_isatty = PyString_InternFromString("isatty")))
304 long isatty; local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
_iomodule.c 236 "* \"Interactive\" text files (files for which isatty() returns True)\n"
306 int line_buffering, isatty;
428 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL);
431 isatty = PyLong_AsLong(res);
433 if (isatty == -1 && PyErr_Occurred())
437 if (buffering == 1 || (buffering < 0 && isatty)) {
726 if (!(_PyIO_str_isatty = PyString_InternFromString("isatty")))
303 int line_buffering, isatty; local
  /external/curl/src/
tool_cb_wrt.c 81 bool is_tty = config->global->isatty;
  /external/e2fsprogs/e2fsck/
scantest.c 36 extern int isatty(int);
  /external/google-benchmark/src/
colorprint.cc 184 return 0 != isatty(fileno(stdout)) && term_supports_color;
  /external/libcxx/utils/google-benchmark/src/
colorprint.cc 184 return 0 != isatty(fileno(stdout)) && term_supports_color;
  /external/libvpx/libvpx/
tools_common.h 48 #define isatty _isatty macro
  /external/python/cpython2/Modules/_io/
_iomodule.c 236 "* \"Interactive\" text files (files for which isatty() returns True)\n"
307 long isatty;
430 PyObject *res = PyObject_CallMethod(raw, "isatty", NULL);
433 isatty = PyLong_AsLong(res);
435 if (isatty == -1 && PyErr_Occurred())
439 if (buffering == 1 || (buffering < 0 && isatty)) {
735 if (!(_PyIO_str_isatty = PyString_InternFromString("isatty")))
304 long isatty; local
  /external/toybox/toys/lsb/
dmesg.c 115 TT.use_color = isatty(1);
  /external/toybox/toys/pending/
gzip.c 112 if (isatty(in_fd)) {
more.c 82 if (!isatty(1) || !(cin = fopen("/dev/tty", "r"))) {
  /external/vixl/tools/
printer.py 34 output_redirected_to_file = not sys.stdout.isatty()
  /frameworks/base/tools/bit/
print.cpp 37 if (isatty(fileno(stdout))) {
  /prebuilts/gdb/darwin-x86/share/gdb/python/gdb/
__init__.py 36 def isatty(self): member in class:_GdbFile
  /prebuilts/gdb/linux-x86/share/gdb/python/gdb/
__init__.py 36 def isatty(self): member in class:_GdbFile
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
colorprint.cc 184 return 0 != isatty(fileno(stdout)) && term_supports_color;
  /toolchain/binutils/binutils-2.27/include/gdb/
callback.h 79 int (*isatty) (host_callback *, int);
78 int (*isatty) (host_callback *, int); member in struct:host_callback_struct
  /tools/repohooks/rh/
terminal.py 119 return os.isatty(fh.fileno())
  /external/mksh/src/
Build.sh 361 int main(void) { return (isatty(0) +
419 int main(void) { return (isatty(0)); }
460 echo 'int main(void) { return (isatty(0)); }' >>x
1188 int main(void) { return (isatty(0)); }
1379 int main(void) { return (isatty(0)); }
1386 int main(void) { return (isatty(0)); }
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 146 #if !defined(isatty)
147 # define isatty _isatty macro
  /external/python/cpython2/Lib/test/
test_pty.py 54 # isatty() and close() can hang on some platforms. Set an alarm
65 self.fail("isatty hung")
80 self.assertTrue(os.isatty(slave_fd), 'slave_fd is not a tty')
119 if not os.isatty(1):
  /external/python/cpython3/Lib/test/
test_pty.py 53 # isatty() and close() can hang on some platforms. Set an alarm
64 self.fail("isatty hung")
79 self.assertTrue(os.isatty(slave_fd), 'slave_fd is not a tty')
120 if not os.isatty(1):
  /external/python/cpython3/Parser/
myreadline.c 339 if (!isatty (fileno (sys_stdin)) || !isatty (fileno (sys_stdout)))

Completed in 1420 milliseconds

1 23 4 5 6 7 8 91011>>