HomeSort by relevance Sort by last modified time
    Searched refs:isatty (Results 51 - 75 of 415) 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/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/
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
  /toolchain/binutils/binutils-2.25/include/gdb/
callback.h 78 int (*isatty) (host_callback *, int);
77 int (*isatty) (host_callback *, int); member in struct:host_callback_struct
  /tools/repohooks/rh/
terminal.py 118 return os.isatty(fh.fileno())
  /external/mksh/src/
Build.sh 351 int main(void) { return (isatty(0) +
409 int main(void) { return (isatty(0)); }
450 echo 'int main(void) { return (isatty(0)); }' >>x
1131 int main(void) { return (isatty(0)); }
1322 int main(void) { return (isatty(0)); }
1329 int main(void) { return (isatty(0)); }
1426 int main(void) { return (isatty(0)); }
    [all...]
  /external/ImageMagick/MagickCore/
nt-base.h 146 #if !defined(isatty)
147 # define isatty _isatty macro
  /external/bison/darwin-lib/
unistd.h 88 They also declare access(), chmod(), close(), dup(), dup2(), isatty(),
1284 # undef isatty macro
    [all...]
  /external/bison/lib/
unistd.in.h 87 They also declare access(), chmod(), close(), dup(), dup2(), isatty(),
    [all...]
  /external/bison/linux-lib/
unistd.h 88 They also declare access(), chmod(), close(), dup(), dup2(), isatty(),
1284 # undef isatty macro
    [all...]
  /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/toolchain-utils/automation/common/
command_executer_test.py 177 return sys.stdout.isatty()
180 return sys.stderr.isatty()
  /prebuilts/gdb/darwin-x86/lib/python2.7/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):

Completed in 598 milliseconds

1 23 4 5 6 7 8 91011>>