Searched refs:ReadableByteChannel (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/
H A DByteChannel.java25 * @see ReadableByteChannel
28 public interface ByteChannel extends ReadableByteChannel, WritableByteChannel {
H A DReadableByteChannel.java23 * A {@code ReadableByteChannel} is a type of {@link Channel} that can read
26 * Read operations are synchronous on a {@code ReadableByteChannel}, that is,
31 public interface ReadableByteChannel extends Channel { interface in inherits:Channel
H A DScatteringByteChannel.java27 public interface ScatteringByteChannel extends ReadableByteChannel {
H A DChannels.java58 public static InputStream newInputStream(ReadableByteChannel channel) {
95 public static ReadableByteChannel newChannel(InputStream inputStream) {
129 public static Reader newReader(ReadableByteChannel channel,
150 public static Reader newReader(ReadableByteChannel channel,
206 private final ReadableByteChannel channel;
208 ChannelInputStream(ReadableByteChannel channel) {
287 implements ReadableByteChannel {
H A DPipe.java60 AbstractSelectableChannel implements ReadableByteChannel, ScatteringByteChannel {
H A DFileChannel.java503 public abstract long transferFrom(ReadableByteChannel src, long position,
/libcore/luni/src/test/java/libcore/java/io/
H A DInterruptedStreamTest.java33 import java.nio.channels.ReadableByteChannel;
141 private void testInterruptReadableChannel(final ReadableByteChannel channel) throws Exception {
/libcore/luni/src/main/java/java/nio/
H A DFileChannelImpl.java29 import java.nio.channels.ReadableByteChannel;
352 public long transferFrom(ReadableByteChannel src, long position, long count) throws IOException {
/libcore/luni/src/main/java/java/util/
H A DScanner.java31 import java.nio.channels.ReadableByteChannel;
251 * Creates a {@code Scanner} with the specified {@code ReadableByteChannel} as
255 * the {@code ReadableByteChannel} to be scanned.
257 public Scanner(ReadableByteChannel src) {
262 * Creates a {@code Scanner} with the specified {@code ReadableByteChannel} as
266 * the {@code ReadableByteChannel} to be scanned.
272 public Scanner(ReadableByteChannel src, String charsetName) {
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DOldFileChannelTest.java34 import java.nio.channels.ReadableByteChannel;

Completed in 191 milliseconds