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

1 2 3 4 5 6 7 891011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 9 flag = f.isatty() # always false
49 def isatty(self): member in class:DBRecIO
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
chunk.py 41 read, close, seek, tell, isatty.
91 def isatty(self): member in class:Chunk
_pyio.py 101 * "Interactive" text files (files for which isatty() returns True)
196 if buffering == 1 or buffering < 0 and raw.isatty():
443 def isatty(self): member in class:IOBase
781 def isatty(self): member in class:_BufferedIOMixin
782 return self.raw.isatty()
1215 def isatty(self): member in class:BufferedRWPair
1589 def isatty(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_fileio.py 116 self.assertTrue(not f.isatty())
129 methods = ['fileno', 'isatty', 'read', 'readinto',
237 self.assertEqual(f.isatty(), False)
284 self.assertEqual(f.isatty(), False)
303 self.assertEqual(f.isatty(), True)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 9 flag = f.isatty() # always false
49 def isatty(self): member in class:DBRecIO
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
chunk.py 41 read, close, seek, tell, isatty.
91 def isatty(self): member in class:Chunk
_pyio.py 101 * "Interactive" text files (files for which isatty() returns True)
196 if buffering == 1 or buffering < 0 and raw.isatty():
443 def isatty(self): member in class:IOBase
781 def isatty(self): member in class:_BufferedIOMixin
782 return self.raw.isatty()
1215 def isatty(self): member in class:BufferedRWPair
1589 def isatty(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fileio.py 116 self.assertTrue(not f.isatty())
129 methods = ['fileno', 'isatty', 'read', 'readinto',
237 self.assertEqual(f.isatty(), False)
284 self.assertEqual(f.isatty(), False)
303 self.assertEqual(f.isatty(), True)
  /external/liblzf/
lzf.c 512 if ((mode == uncompress || mode == lzcat) && isatty (0))
517 if (mode == compress && isatty (1))
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 236 if (isatty(STDIN_FILENO)) {
284 if (isatty(STDIN_FILENO)) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_pyio.py 100 * "Interactive" text files (files for which isatty() returns True)
195 if buffering == 1 or buffering < 0 and raw.isatty():
440 def isatty(self): member in class:IOBase
775 def isatty(self): member in class:_BufferedIOMixin
776 return self.raw.isatty()
1208 def isatty(self): member in class:BufferedRWPair
1578 def isatty(self): member in class:TextIOWrapper
    [all...]
StringIO.py 8 flag = f.isatty() # always false
88 def isatty(self): member in class:StringIO
  /external/python/cpython2/Lib/
_pyio.py 102 * "Interactive" text files (files for which isatty() returns True)
199 if buffering == 1 or buffering < 0 and raw.isatty():
452 def isatty(self): member in class:IOBase
788 def isatty(self): member in class:_BufferedIOMixin
789 return self.raw.isatty()
1224 def isatty(self): member in class:BufferedRWPair
1603 def isatty(self): member in class:TextIOWrapper
    [all...]
StringIO.py 8 flag = f.isatty() # always false
88 def isatty(self): member in class:StringIO
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_pyio.py 101 * "Interactive" text files (files for which isatty() returns True)
196 if buffering == 1 or buffering < 0 and raw.isatty():
443 def isatty(self): member in class:IOBase
781 def isatty(self): member in class:_BufferedIOMixin
782 return self.raw.isatty()
1215 def isatty(self): member in class:BufferedRWPair
1589 def isatty(self): member in class:TextIOWrapper
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_pyio.py 101 * "Interactive" text files (files for which isatty() returns True)
196 if buffering == 1 or buffering < 0 and raw.isatty():
443 def isatty(self): member in class:IOBase
781 def isatty(self): member in class:_BufferedIOMixin
782 return self.raw.isatty()
1215 def isatty(self): member in class:BufferedRWPair
1589 def isatty(self): member in class:TextIOWrapper
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 119 /** The isatty() function tests whether fd, an open file descriptor,
129 isatty (int fd) function
    [all...]
  /external/python/cpython2/Lib/idlelib/idle_test/
test_io.py 60 self.assertTrue(f.isatty())
171 self.assertTrue(f.isatty())
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
StringIO.py 8 flag = f.isatty() # always false
88 def isatty(self): member in class:StringIO
  /external/curl/src/
tool_cb_dbg.c 145 if(!config->isatty || ((output != stderr) && (output != stdout))) {
  /external/libgsm/add-test/
add_test.c 202 interactive = isatty(fileno(in));
  /external/ltp/testcases/kernel/hotplug/memory_hotplug/
memtoy.c 378 if (isatty(fileno(stdin)))
  /external/openssh/
channels.h 108 int isatty; /* rfd is a tty */ member in struct:Channel
  /external/toybox/toys/pending/
sh.c 317 if (isatty(0)) toys.optflags |= FLAG_i;
  /external/webrtc/third_party/gtest-parallel/
gtest-parallel 80 if not out.isatty():
118 if sys.stdout.isatty():

Completed in 1385 milliseconds

1 2 3 4 5 6 7 891011>>