Home
last modified time | relevance | path

Searched refs:stdin (Results 1 – 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/lang/
DUNIXProcess.java60 private /* final */ OutputStream stdin; field in UNIXProcess
158 stdin = (fds[0] == -1) ?
190 if (stdin instanceof ProcessPipeOutputStream)
191 ((ProcessPipeOutputStream) stdin).processExited();
195 return stdin;
232 try { stdin.close(); } catch (IOException ignored) {}
/libcore/ojluni/src/main/native/
DConsole_md.c42 return isatty(fileno(stdin)) && isatty(fileno(stdout)); in Java_java_io_Console_istty()
58 int tty = fileno(stdin); in Java_java_io_Console_echo()