HomeSort by relevance Sort by last modified time
    Searched refs:unix_isatty (Results 1 - 6 of 6) sorted by null

  /system/core/adb/
sysdeps_win32_test.cpp 73 TEST(sysdeps_win32, unix_isatty) {
76 // permissions are required for unix_isatty().
81 EXPECT_EQ(1, unix_isatty(fd));
85 // nul returns 1 from isatty(), make sure unix_isatty() corrects that.
89 EXPECT_EQ(0, unix_isatty(nul_fd));
96 EXPECT_EQ(0, unix_isatty(temp_file.fd));
100 EXPECT_EQ(0, unix_isatty(temp_file_ro_fd));
106 EXPECT_EQ(0, unix_isatty(pipe_fds[0]));
107 EXPECT_EQ(0, unix_isatty(pipe_fds[1]));
112 EXPECT_EQ(0, unix_isatty(-1))
    [all...]
adb_trace.cpp 160 if (unix_isatty(STDOUT_FILENO) == 0) {
line_printer.cpp 49 smart_terminal_ = unix_isatty(1) && term && string(term) != "dumb";
sysdeps.h 162 // devices like NUL. unix_isatty() performs some extra checking to only match
169 int unix_isatty(int fd);
492 static __inline__ int unix_isatty(int fd) {
commandline.cpp 739 if (!unix_isatty(STDIN_FILENO) || !is_interactive) {
744 if (!unix_isatty(STDIN_FILENO)) {
    [all...]
sysdeps_win32.cpp 1211 int unix_isatty(int fd) { function
    [all...]

Completed in 190 milliseconds