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

<<11121314151617

  /external/python/cpython2/Modules/
main.c 574 isatty(fileno(stdin))) {
  /external/python/cpython2/Python/
pythonrun.c 143 PyObject *sys_isatty = PyObject_CallMethod(sys_stream, "isatty", "");
145 int isatty = PyObject_IsTrue(sys_isatty); local
147 if (isatty >= 0)
148 return isatty;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/lit/lit/
ProgressBar.py 98 if not term_stream.isatty(): return
  /external/toybox/toys/pending/
getty.c 136 if (!isatty(0)) perror_exit("/dev/%s: not a tty", TT.tty_name);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_curses.py 285 if not sys.__stdout__.isatty():
test_file.py 91 self.assertTrue(not f.isatty())
102 ('isatty', ()),
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_curses.py 285 if not sys.__stdout__.isatty():
test_file.py 91 self.assertTrue(not f.isatty())
102 ('isatty', ()),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 285 if not sys.__stdout__.isatty():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 285 if not sys.__stdout__.isatty():
  /system/tools/aidl/
aidl_language.cpp 16 int isatty(int fd) function
  /external/mesa3d/src/intel/tools/
aubinator.c     [all...]
  /external/python/cpython2/Lib/test/
test_file2k.py 116 self.assertTrue(not f.isatty())
124 methods = ['fileno', 'flush', 'isatty', 'next', 'read', 'readinto',
240 if not sys.stdin.isatty():
595 self.f.isatty()
test_file.py 91 self.assertFalse(f.isatty())
102 ('isatty', ()),
  /external/curl/src/
tool_operate.c 210 /* Save the values of noprogress and isatty to restore them later on */
212 bool orig_isatty = global->isatty;
729 isatty(fileno(outs.stream)))
732 global->noprogress = global->isatty = TRUE;
737 global->isatty = orig_isatty;
    [all...]
  /build/make/tools/releasetools/
blockimgdiff.py 720 if sys.stdout.isatty():
766 if sys.stdout.isatty():
781 if sys.stdout.isatty():
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lua.c 48 #define lua_stdin_is_tty() isatty(0)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_file.py 91 self.assertTrue(not f.isatty())
102 ('isatty', ()),
  /external/harfbuzz_ng/util/
helper-cairo.cc 350 if (isatty (fileno (out_opts->get_file_handle ())))
  /external/openssh/
ssh.c     [all...]
  /external/skia/third_party/lua/src/
lua.c 48 #define lua_stdin_is_tty() isatty(0)
  /external/swiftshader/third_party/LLVM/lib/Support/
raw_ostream.cpp 597 if (S_ISCHR(statbuf.st_mode) && isatty(FD))
  /external/syslinux/com32/lua/src/
lua.c 53 #define lua_stdin_is_tty() isatty(0)
  /libcore/luni/src/main/java/libcore/io/
Os.java 107 public boolean isatty(FileDescriptor fd); method in interface:Os
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
io.h 325 int __cdecl isatty(int _FileHandle) __MINGW_ATTRIB_DEPRECATED_MSVC2005;

Completed in 1509 milliseconds

<<11121314151617