HomeSort by relevance Sort by last modified time
    Searched refs:readFully (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DataInputStreamTest.java 130 * java.io.DataInputStream#readFully(byte[])
137 dis.readFully(rbytes);
143 * java.io.DataInputStream#readFully(byte[], int, int)
150 dis.readFully(rbytes, 0, fileString.length());
156 * java.io.DataInputStream#readFully(byte[], int, int)
165 is.readFully(byteArray, -1, -1);
172 is.readFully(byteArray, 0, -1);
179 is.readFully(byteArray, 1, -1);
185 is.readFully(byteArray, -1, 0);
186 is.readFully(byteArray, 0, 0)
    [all...]
  /libcore/luni/src/main/java/java/io/
DataInput.java 110 * Equivalent to {@code readFully(dst, 0, dst.length);}.
112 public abstract void readFully(byte[] dst) throws IOException;
140 public abstract void readFully(byte[] dst, int offset, int byteCount) throws IOException;
DataInputStream.java 94 public final void readFully(byte[] dst) throws IOException {
95 readFully(dst, 0, dst.length);
98 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException {
99 Streams.readFully(in, dst, offset, byteCount);
103 Streams.readFully(in, scratch, 0, SizeOf.INT);
147 Streams.readFully(in, scratch, 0, SizeOf.LONG);
152 Streams.readFully(in, scratch, 0, SizeOf.SHORT);
178 in.readFully(buf, 0, utfSize);
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataInput.java 32 @Override void readFully(byte b[]);
33 @Override void readFully(byte b[], int off, int len);
LittleEndianDataInputStream.java 65 public void readFully(byte[] b) throws IOException {
66 ByteStreams.readFully(this, b);
70 public void readFully(byte[] b, int off, int len) throws IOException {
71 ByteStreams.readFully(this, b, off, len);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 30 public static ByteBuffer readFully(final ReadableByteChannel channel, long size) throws IOException {
38 readFully(channel, buf, buf.limit());
48 public static void readFully(final ReadableByteChannel channel, final ByteBuffer buf)
50 readFully(channel, buf, buf.remaining());
53 public static int readFully(final ReadableByteChannel channel, final ByteBuffer buf, final int length)
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5Utils.java 57 in.readFully(header, 0, 5);
68 in.readFully(response, header.length, addressLength + 2);
  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
Win32PipeStream.h 31 virtual const unsigned char *readFully(void *buf, size_t len);
SocketStream.h 35 virtual const unsigned char *readFully(void *buf, size_t len);
  /external/proguard/src/proguard/classfile/io/
RuntimeDataInput.java 104 public void readFully(byte[] b)
108 dataInput.readFully(b);
116 public void readFully(byte[] b, int off, int len)
120 dataInput.readFully(b, off, len);
  /sdk/emulator/opengl/shared/OpenglCodecCommon/
Win32PipeStream.h 31 virtual const unsigned char *readFully(void *buf, size_t len);
SocketStream.h 36 virtual const unsigned char *readFully(void *buf, size_t len);
  /libcore/luni/src/test/java/libcore/java/io/
OldDataInputStreamTest.java 157 dis.readFully(rbytes);
163 dis.readFully(rbytes);
172 dis.readFully(rbytes);
186 dis.readFully(rbytes, 2, testLength - 4);
193 dis.readFully(rbytes, 0, testLength);
202 dis.readFully(rbytes, 0, testLength);
215 is.readFully(byteArray, 0, -1);
222 is.readFully(byteArray, 0, byteArray.length + 1);
229 is.readFully(byteArray, 1, byteArray.length);
236 is.readFully(byteArray, -1, byteArray.length)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
Streams.java 37 public static int readFully(InputStream inStr, byte[] buf)
40 return readFully(inStr, buf, 0, buf.length);
43 public static int readFully(InputStream inStr, byte[] buf, int off, int len)
  /libcore/luni/src/test/etc/loading-test-jar/
TestMethods.java 66 public static byte[] readFully(InputStream in) throws IOException {
129 byte[] contents = readFully(in);
185 byte[] contents = readFully(in);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
SwappedDataInputStream.java 117 public void readFully( byte[] data )
120 readFully( data, 0, data.length );
133 public void readFully( byte[] data, int offset, int length )
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
QemuPipeStream.h 36 virtual const unsigned char *readFully( void *buf, size_t len);
  /device/generic/goldfish/opengl/host/include/libOpenglRender/
IOStream.h 35 virtual const unsigned char *readFully( void *buf, size_t len) = 0;
83 return readFully(buf, len);
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
GetExample.java 24 byte[] response = readFully(in);
31 byte[] readFully(InputStream in) throws IOException {
  /sdk/emulator/opengl/host/include/libOpenglRender/
IOStream.h 35 virtual const unsigned char *readFully( void *buf, size_t len) = 0;
83 return readFully(buf, len);
  /libcore/luni/src/main/java/libcore/io/
Streams.java 59 public static void readFully(InputStream in, byte[] dst) throws IOException {
60 readFully(in, dst, 0, dst.length);
67 * Used to implement {@link java.io.DataInputStream#readFully(byte[], int, int)}.
69 public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) throws IOException {
93 public static byte[] readFully(InputStream in) throws IOException {
117 public static String readFully(Reader reader) throws IOException {
  /frameworks/base/core/tests/coretests/src/android/content/pm/
MacAuthenticatedInputStreamTest.java 75 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
86 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
97 assertTrue(Arrays.equals(TEST_STRING_1, Streams.readFully(is)));
  /external/guava/guava-tests/test/com/google/common/io/
LittleEndianDataOutputStreamTest.java 65 in.readFully(b);
96 in.readFully(b);
113 in.readFully(b);
130 in.readFully(actual);
  /frameworks/base/core/java/com/android/internal/os/
InstallerConnection.java 167 private boolean readFully(byte[] buffer, int len) {
169 Streams.readFully(mIn, buffer, 0, len);
184 if (!readFully(buf, 2)) {
195 if (!readFully(buf, len)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileReader.java 59 file.readFully(b);

Completed in 1241 milliseconds

1 2 3 4 5 6 7 8 910