Searched defs:pipe (Results 1 - 7 of 7) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DSourceChannelTest.java36 private Pipe pipe; field in class:SourceChannelTest
48 pipe = Pipe.open();
49 sink = pipe.sink();
50 source = pipe.source();
158 // open new pipe everytime, will be closed in finally block
159 pipe = Pipe.open();
160 sink = pipe.sink();
161 source = pipe.source();
194 // close pipe everytime
301 Pipe pipe
[all...]
H A DSinkChannelTest.java40 private Pipe pipe; field in class:SinkChannelTest
52 pipe = Pipe.open();
53 sink = pipe.sink();
54 source = pipe.source();
H A DFileChannelTest.java103 private Pipe pipe; field in class:FileChannelTest
212 if (null != pipe) {
213 if (null != pipe.source()) {
215 pipe.source().close();
220 if (null != pipe.sink()) {
222 pipe.sink().close();
2575 // inits pipe.
2576 pipe = Pipe.open();
2578 // writes content to pipe.
2580 pipe
[all...]
/libcore/luni/src/main/java/android/system/
H A DOs.java303 * See <a href="http://man7.org/linux/man-pages/man2/pipe.2.html">pipe(2)</a>.
305 public static FileDescriptor[] pipe() throws ErrnoException { return Libcore.os.pipe(); } method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DForwardingOs.java116 public FileDescriptor[] pipe() throws ErrnoException { return os.pipe(); } method in class:ForwardingOs
H A DOs.java108 public FileDescriptor[] pipe() throws ErrnoException; method in interface:Os
H A DPosix.java110 public native FileDescriptor[] pipe() throws ErrnoException; method in class:Posix

Completed in 2667 milliseconds