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

/frameworks/base/core/java/android/os/
H A DFileUtils.java1054 public static class MemoryPipe extends Thread implements AutoCloseable { class in class:FileUtils
1059 private MemoryPipe(byte[] data, boolean sink) throws IOException { method in class:FileUtils.MemoryPipe
1069 private MemoryPipe startInternal() {
1074 public static MemoryPipe createSource(byte[] data) throws IOException {
1075 return new MemoryPipe(data, false).startInternal();
1078 public static MemoryPipe createSink(byte[] data) throws IOException {
1079 return new MemoryPipe(data, true).startInternal();

Completed in 155 milliseconds