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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/sun/misc/
IOUtils.java 50 public static byte[] readFully(InputStream is, int length, boolean readAll)
CharacterDecoder.java 133 protected int readFully(InputStream in, byte buffer[], int offset, int len)
CharacterEncoder.java 124 protected int readFully(InputStream in, byte buffer[])
150 numBytes = readFully(inStream, tmpbuffer);
285 numBytes = readFully(inStream, tmpbuffer);
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/
InputStreams.java 36 public static byte[] readFully(final InputStream is) throws IOException {
  /external/guava/guava/src/com/google/common/io/
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);
ByteArrayDataInput.java 36 @Override void readFully(byte b[]);
38 @Override void readFully(byte b[], int off, int 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);
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
SocketStream.cpp 113 const unsigned char *SocketStream::readFully(void *buf, size_t len)
  /external/conscrypt/libcore-stub/src/main/java/libcore/io/
Streams.java 30 public static byte[] readFully(InputStream in) throws IOException {
  /system/security/keystore/
keystore_utils.cpp 36 size_t readFully(int fd, uint8_t* data, size_t size) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1InputStream.java 115 protected void readFully(
119 if (Streams.readFully(this, bytes) != bytes.length)
390 Streams.readFully(defIn, buf);
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
QemuPipeStream.cpp 135 const unsigned char *QemuPipeStream::readFully(void *buf, size_t len)
137 //DBG(">> QemuPipeStream::readFully %d\n", len);
143 ERR("QemuPipeStream::readFully failed, buf=NULL, len %zu, lethal"
159 ERR("QemuPipeStream::readFully failed (buf %p, len %zu"
168 //DBG("<< QemuPipeStream::readFully %d\n", len);
  /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)
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeDecoderFromBuffer.java 41 in.readFully(buf, 0, end);
  /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)
  /libcore/ojluni/src/main/java/java/io/
DataInput.java 190 void readFully(byte b[]) throws IOException;
236 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/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
Util.java 34 static String readFully(Reader reader) throws IOException {
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
XZInputStream.java 316 inData.readFully(buf, 1, 3);
323 inData.readFully(buf, 4, DecoderUtil.STREAM_HEADER_SIZE - 4);
  /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/
PutStreamIntegrationTest.java 68 dataInputStream.readFully(body, 0, contentLength);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DexUtil.java 64 ByteStreams.readFully(inputStream, partialHeader);
123 ByteStreams.readFully(inputStream, partialHeader);
  /frameworks/base/cmds/incidentd/src/
FdBuffer.cpp 94 status_t FdBuffer::readFully(int fd) {
  /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 )
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/bsdiff/
BsPatch.java 90 readFully(patchData, signatureBuffer, 0, signatureBuffer.length);
207 oldData.readFully(buffer1, 0, numBytesThisRound);
208 readFully(patchData, buffer2, 0, numBytesThisRound);
256 static void readFully(
284 readFully(in, buffer, 0, maxCopy);

Completed in 324 milliseconds

1 2 3 4 5 6 7 8 91011>>