/external/guava/guava-tests/test/com/google/common/io/ |
LittleEndianDataInputStreamTest.java | 72 in.readFully(b); 109 in.readFully(b); 145 in.readFully(b);
|
ByteStreamsTest.java | 400 ByteStreams.readFully(newTestStream(10), null, 0, 10); 406 ByteStreams.readFully(null, b, 0, 10); 412 ByteStreams.readFully(newTestStream(10), b, -1, 10); 418 ByteStreams.readFully(newTestStream(10), b, 0, -1); 424 ByteStreams.readFully(newTestStream(10), b, 0, -1); 430 ByteStreams.readFully(newTestStream(10), b, 2, 10); 436 ByteStreams.readFully(newTestStream(5), b, 0, 10); 442 ByteStreams.readFully(newTestStream(10), b, 0, 0); 446 ByteStreams.readFully(newTestStream(10), b, 0, 10); 450 ByteStreams.readFully(newTestStream(10), b, 0, 5) [all...] |
/libcore/luni/src/main/java/libcore/io/ |
IoUtils.java | 107 return new FileReader(absolutePath).readFully().toByteArray(); 114 return new FileReader(absolutePath).readFully().toString(StandardCharsets.UTF_8); 230 public FileReader readFully() throws IOException {
|
/libcore/luni/src/main/java/java/io/ |
RandomAccessFile.java | 264 * has been reached. See also {@link #readFully}. 279 * See also {@link #readFully}. 379 * Equivalent to {@code readFully(dst, 0, dst.length);}. 381 public final void readFully(byte[] dst) throws IOException { 382 readFully(dst, 0, dst.length); 411 public final void readFully(byte[] dst, int offset, int byteCount) throws IOException { 436 readFully(scratch, 0, SizeOf.INT); 497 readFully(scratch, 0, SizeOf.LONG); 514 readFully(scratch, 0, SizeOf.SHORT);
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
LittleEndien.java | 131 public void readFully(byte b[]) throws IOException { 135 public void readFully(byte b[], int off, int len) throws IOException {
|
/development/samples/Vault/src/com/example/android/vault/ |
Utils.java | 58 public static byte[] readFully(File file) throws IOException {
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DefiniteLengthInputStream.java | 98 if ((_remaining -= Streams.readFully(_in, bytes)) != 0)
|
ASN1InputStream.java | 115 protected void readFully( 119 if (Streams.readFully(this, bytes) != bytes.length) 384 Streams.readFully(defIn, buf);
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
GenericAttribute_info.java | 95 bytes.readFully (m_info);
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/ |
Util.java | 200 public static void readFully(InputStream in, byte[] dst) throws IOException { 201 readFully(in, dst, 0, dst.length); 208 * Used to implement {@link java.io.DataInputStream#readFully(byte[], int, int)}. 210 public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) 233 public static String readFully(Reader reader) throws IOException {
|
/libcore/crypto/src/main/java/org/conscrypt/ |
ClientKeyExchange.java | 113 Streams.readFully(in, exchange_keys);
|
ServerHello.java | 90 Streams.readFully(in, random);
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipEntry.java | 353 Streams.readFully(cdStream, cdeHdrBuf, 0, cdeHdrBuf.length); 388 Streams.readFully(cdStream, nameBytes, 0, nameBytes.length); 396 Streams.readFully(cdStream, extra, 0, extraLength); 403 Streams.readFully(cdStream, commentBytes, 0, commentByteCount);
|
/cts/tests/src/android/os/cts/ |
ReadElf.java | 407 mFile.readFully(mBuffer, 0, 1); 414 mFile.readFully(mBuffer, 0, mWordSize); 428 mFile.readFully(mBuffer, 0, mWordSize); 447 mFile.readFully(mBuffer, 0, (int) Math.min(mBuffer.length, mFile.length() - offset)); 460 mFile.readFully(mBuffer, 0, EI_NIDENT);
|
/libcore/luni/src/test/java/tests/api/java/io/ |
ObjectInputStreamTest.java | 216 ois.readFully(buf); 224 ois.readFully(buf); 240 ois.readFully(buf); 250 // Test for method void java.io.ObjectInputStream.readFully(byte [], 256 ois.readFully(buf, 0, testLength); 263 ois.readFully(buf); 277 ois.readFully(buf, 0, -1); 283 ois.readFully(buf, -1,1); 289 ois.readFully(buf, testLength, 1); 300 ois.readFully(buf, 0, 1) [all...] |
/external/emma/lib/internal/ |
stamptool.jar | |
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
DDSLoader.java | 451 in.readFully(data); 499 in.readFully(b); 549 in.readFully(data); 556 in.readFully(data); 591 in.readFully(data); 641 in.readFully(b); 693 in.readFully(data); 701 in.readFully(data);
|
/frameworks/base/tests/BandwidthTests/src/com/android/tests/bandwidthenforcement/ |
BandwidthEnforcementTestService.java | 99 final String content = Streams.readFully( 123 final String content = Streams.readFully(
|
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/ |
WifiP2pDnsSdServiceResponse.java | 246 dis.readFully(data); 271 dis.readFully(data);
|
/cts/tests/tests/security/src/android/security/cts/ |
BannedFilesTest.java | 91 dis.readFully(fileData);
|
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/ |
ImportantFileWriterAndroidTest.java | 51 dis.readFully(fileData);
|
/libcore/luni/src/test/java/libcore/util/ |
ZoneInfoDBTest.java | 59 in.readFully(content);
|
/sdk/emulator/opengl/host/libs/libOpenglRender/ |
RenderServer.cpp | 91 if (!stream->readFully(&clientFlags, sizeof(unsigned int))) {
|
/libcore/luni/src/test/java/libcore/java/io/ |
OldRandomAccessFileTest.java | 755 * java.io.RandomAccessFile#readFully(byte[]) 764 raf.readFully(null); 770 raf.readFully(buf); 775 raf.readFully(buf); 789 raf.readFully(buf); 798 * java.io.RandomAccessFile#readFully(byte[], int, int) 807 raf.readFully(null); 813 raf.readFully(buf, 5, testLength - 10); 823 raf.readFully(buf, 3, testLength - 6); 831 raf.readFully(buf, -1, 1) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/bc/ |
BcKeyStoreSpi.java | 225 dIn.readFully(salt); 244 dIn.readFully(salt); 265 dIn.readFully(salt); 360 dIn.readFully(cEnc); 415 dIn.readFully(enc); 723 dIn.readFully(b); 817 dIn.readFully(salt); 857 dIn.readFully(oldMac); 872 dIn.readFully(oldMac); 971 dIn.readFully(salt) [all...] |