OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:unix_isatty
(Results
1 - 6
of
6
) sorted by null
/system/core/adb/
sysdeps_win32_test.cpp
103
TEST(sysdeps_win32,
unix_isatty
) {
106
// permissions are required for
unix_isatty
().
111
EXPECT_EQ(1,
unix_isatty
(fd));
115
// nul returns 1 from isatty(), make sure
unix_isatty
() corrects that.
119
EXPECT_EQ(0,
unix_isatty
(nul_fd));
126
EXPECT_EQ(0,
unix_isatty
(temp_file.fd));
130
EXPECT_EQ(0,
unix_isatty
(temp_file_ro_fd));
136
EXPECT_EQ(0,
unix_isatty
(pipe_fds[0]));
137
EXPECT_EQ(0,
unix_isatty
(pipe_fds[1]));
142
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
262
// devices like NUL.
unix_isatty
() performs some extra checking to only match
269
int
unix_isatty
(int fd);
634
static __inline__ int
unix_isatty
(int fd) {
commandline.cpp
[
all
...]
sysdeps_win32.cpp
1344
int
unix_isatty
(int fd) {
function
[
all
...]
Completed in 446 milliseconds