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

1 2 3 4 5 6 7 8 91011>>

  /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/ojluni/src/main/java/java/io/
DataInput.java 235 void readFully(byte b[]) throws IOException;
281 void readFully(byte b[], int off, int len) throws IOException;
  /external/guava/guava/src/com/google/common/io/
ByteArrayDataInput.java 36 @Override void readFully(byte b[]);
38 @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/conscrypt/src/test/java/org/conscrypt/
TestUtils.java 36 return Streams.readFully(openTestFile(name));
  /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);
  /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 70 public static int readFully(InputStream inStr, byte[] buf)
73 return readFully(inStr, buf, 0, buf.length);
86 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/shared/OpenglCodecCommon/
SocketStream.h 35 virtual const unsigned char *readFully(void *buf, size_t len);
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
QemuPipeStream.h 36 virtual const unsigned char *readFully( void *buf, size_t len);
  /libcore/support/src/test/java/libcore/tlswire/record/
TlsRecord.java 37 in.readFully(result.fragment);
  /system/security/keystore/
entropy.cpp 48 return (readFully(mRandom, data, size) == size);
  /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);
  /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)));
  /cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/
DocumentsClientTestCase.java 84 protected byte[] readFully(Uri uri) throws IOException {
87 return readFully(in);
95 return readFully(in);
99 protected byte[] readFully(InputStream in) throws IOException {
  /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);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DataInputCompressor.java 63 public void readFully(byte[] b) throws IOException {
64 dataInput.readFully(b);
67 public void readFully(byte[] b, int off, int len) throws IOException {
68 dataInput.readFully(b, off, len);
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeDecoderFromBuffer.java 41 in.readFully(buf, 0, end);
  /libcore/ojluni/src/main/java/sun/misc/
IOUtils.java 50 public static byte[] readFully(InputStream is, int length, boolean readAll)
  /libcore/support/src/test/java/libcore/tlswire/handshake/
HandshakeMessage.java 51 in.readFully(result.body);
  /libcore/support/src/test/java/libcore/tlswire/util/
IoUtils.java 32 in.readFully(result);

Completed in 819 milliseconds

1 2 3 4 5 6 7 8 91011>>