HomeSort by relevance Sort by last modified time
    Searched refs:isatty (Results 76 - 100 of 415) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gdb/linux-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):
  /prebuilts/python/darwin-x86/2.7.5/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):
  /prebuilts/python/linux-x86/2.7.5/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):
  /external/toybox/kconfig/
conf.c 506 valid_stdin = isatty(0) && isatty(1) && isatty(2);
  /system/core/adb/
sysdeps.h 175 // Standard Windows isatty() returns 1 for both console FDs and character
184 #define isatty ___xxx_isatty macro
511 return isatty(fd);
513 #define isatty ___xxx_isatty
  /art/tools/checker/common/
logger.py 29 if not out.isatty():
  /bionic/libc/bionic/
pty.cpp 93 if (!isatty(fd)) {
  /development/ndk/platforms/android-12/include/
unistd.h 168 extern int isatty(int);
  /development/ndk/platforms/android-21/include/
unistd.h 167 extern int isatty(int);
  /development/ndk/platforms/android-9/include/
unistd.h 165 extern int isatty(int);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
markov.py 72 if f.isatty():
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
chunk.py 41 read, close, seek, tell, isatty.
91 def isatty(self): member in class:Chunk
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fileio.py 94 self.assertTrue(not f.isatty())
107 methods = ['fileno', 'isatty', 'read', 'readinto',
207 self.assertEqual(f.isatty(), False)
254 self.assertEqual(f.isatty(), False)
273 self.assertEqual(f.isatty(), True)
  /external/brotli/python/
bro.py 135 if sys.stdin.isatty():
  /external/curl/src/
tool_cfgable.h 250 bool isatty; /* Updated internally if output is a tty */ member in struct:GlobalConfig
  /external/elfutils/lib/
color.c 122 = isatty (STDOUT_FILENO) ? color_always : color_never;
  /external/libpcap/lbl/
os-sunos4.h 111 int isatty(int);
  /external/openssh/
readpass.c 128 if (!isatty(STDIN_FILENO)) {
  /external/python/cpython2/Demo/scripts/
markov.py 72 if f.isatty():
  /external/python/cpython2/Lib/bsddb/
dbrecio.py 9 flag = f.isatty() # always false
49 def isatty(self): member in class:DBRecIO
  /external/python/cpython2/Lib/
chunk.py 41 read, close, seek, tell, isatty.
93 def isatty(self): member in class:Chunk
  /external/python/cpython2/Lib/test/
test_fileio.py 115 self.assertFalse(f.isatty())
128 methods = ['fileno', 'isatty', 'seekable', 'readable', 'writable',
245 self.assertEqual(f.isatty(), False)
292 self.assertEqual(f.isatty(), False)
314 self.assertEqual(f.isatty(), True)
  /external/tcpdump/lbl/
os-sunos4.h 112 int isatty(int);
  /external/toybox/lib/
interestingtimes.c 12 for (i = 0; i<3; i++) if (isatty(j = (i+1)%3)) return j;
  /external/toybox/toys/other/
login.c 54 for (tty=0; tty<3; tty++) if (isatty(tty)) break;

Completed in 1140 milliseconds

1 2 34 5 6 7 8 91011>>