/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);
|
ByteStreams.java | 291 @Override public void readFully(byte b[]) { 293 input.readFully(b); 299 @Override public void readFully(byte b[], int off, int len) { 301 input.readFully(b, off, len); 632 * with the same behavior as {@link DataInput#readFully(byte[])}. 641 public static void readFully(InputStream in, byte[] b) throws IOException { 642 readFully(in, b, 0, b.length); 648 * {@link DataInput#readFully(byte[], int, int)}. Does not close the 659 public static void readFully(InputStream in, byte[] b, int off, int 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)
|
/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/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)
|
/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 {
|
/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);
|
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...] |
/cts/hostsidetests/appsecurity/test-apps/DocumentClient/src/com/android/cts/documentclient/ |
DocumentsClientTest.java | 121 readFully(Uri.parse("content://com.android.cts.documentprovider/document/doc:file1")); 148 MoreAsserts.assertEquals("fileone".getBytes(), readFully(uri)); 152 MoreAsserts.assertEquals("replaced!".getBytes(), readFully(uri)); 207 MoreAsserts.assertEquals("filetwo".getBytes(), readFully(uri)); 257 MoreAsserts.assertEquals("filefour".getBytes(), readFully(file4)); 260 MoreAsserts.assertEquals("filefour".getBytes(), readFully(file4)); 271 MoreAsserts.assertEquals("dirPic".getBytes(), readFully(dirPic)); 315 private byte[] readFully(Uri uri) throws IOException {
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/wire/json/ |
JsonWireAdapter.java | 81 mInputStream.readFully(payloadLenBytes); 84 mInputStream.readFully(outerJsonBytes);
|
/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/okhttp/src/main/java/com/squareup/okhttp/internal/ |
Util.java | 180 public static void readFully(InputStream in, byte[] dst) throws IOException { 181 readFully(in, dst, 0, dst.length); 188 * Used to implement {@link java.io.DataInputStream#readFully(byte[], int, int)}. 190 public static void readFully(InputStream in, byte[] dst, int offset, int byteCount) 213 public static OkBuffer readFully(Source source) throws IOException {
|
/external/emma/lib/internal/ |
stamptool.jar | |
/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);
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/ |
PutStreamIntegrationTest.java | 56 dataInputStream.readFully(body, 0, contentLength);
|
/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...] |