Searched defs:read (Results 26 - 50 of 539) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
H A DTeeInputStream.java19 public int read(byte[] buf) method in class:TeeInputStream
22 return read(buf, 0, buf.length);
25 public int read(byte[] buf, int off, int len) method in class:TeeInputStream
28 int i = input.read(buf, off, len);
38 public int read() method in class:TeeInputStream
41 int i = input.read();
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DShortArrayCodeInput.java26 /** source array to read from */
46 public int read() throws EOFException { method in class:ShortArrayCodeInput
58 int short0 = read();
59 int short1 = read();
66 long short0 = read();
67 long short1 = read();
68 long short2 = read();
69 long short3 = read();
/external/flac/include/FLAC/
H A Dcallback.h90 /** Signature for the read callback.
94 * \param ptr The address of the read buffer.
95 * \param size The size of the records to be read.
96 * \param nmemb The number of records to be read.
99 * The number of records read.
170 FLAC__IOCallback_Read read; member in struct:__anon6103
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSCPInputStream.java20 * Bytes remaining to be read from the stream
39 int c = session.getStdout().read();
74 public int read() throws IOException method in class:SCPInputStream
81 int read = super.read();
82 if (read < 0)
87 remaining -= read;
89 return read;
93 public int read(byte b[], int off, int len) throws IOException method in class:SCPInputStream
106 int read
[all...]
H A DSFTPInputStream.java19 * Offset (in bytes) in the file to read
29 * an array of bytes. An attempt is made to read as many as
30 * <code>len</code> bytes, but a smaller number may be read, possibly
31 * zero. The number of bytes actually read is returned as an integer.
33 * @see SFTPv3Client#read(SFTPv3FileHandle,long,byte[],int,int)
36 public int read(byte[] buffer, int offset, int len) throws IOException method in class:SFTPInputStream
38 int read = handle.getClient().read(handle, readOffset, buffer, offset, len);
39 if(read > 0) {
40 readOffset += read;
60 public int read() throws IOException { method in class:SFTPInputStream
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/
H A DChannelInputStream.java50 public int read(byte[] b, int off, int len) throws IOException method in class:ChannelInputStream
75 public int read(byte[] b) throws IOException method in class:ChannelInputStream
77 return read(b, 0, b.length);
81 public int read() throws IOException method in class:ChannelInputStream
83 /* Yes, this stream is pure and unbuffered, a single byte read() is slow */
87 int ret = read(b, 0, 1);
/external/guava/guava-testlib/src/com/google/common/testing/
H A DFakeTicker.java51 @Override public long read() { method in class:FakeTicker
/external/guava/guava-tests/test/com/google/common/io/
H A DLimitInputStreamTest.java36 int read = lin.read();
37 assertEquals(big[0], read);
39 read = lin.read();
40 assertEquals(big[1], read);
42 read = lin.read();
43 assertEquals(-1, read);
47 read
124 public int read() throws IOException { method in class:LimitInputStreamTest.UnmarkableInputStream
[all...]
H A DRandomAmountInputStream.java33 @Override public int read(byte[] b, int off, int len) throws IOException { method in class:RandomAmountInputStream
34 return super.read(b, off, random.nextInt(len) + 1);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DBoxCollisionShape.java73 public void read(JmeImporter im) throws IOException { method in class:BoxCollisionShape
74 super.read(im);
H A DConeCollisionShape.java55 public void read(JmeImporter im) throws IOException { method in class:ConeCollisionShape
56 super.read(im);
H A DCylinderCollisionShape.java91 public void read(JmeImporter im) throws IOException { method in class:CylinderCollisionShape
92 super.read(im);
H A DHullCollisionShape.java43 public void read(JmeImporter im) throws IOException { method in class:HullCollisionShape
44 super.read(im);
H A DPlaneCollisionShape.java47 public void read(JmeImporter im) throws IOException { method in class:PlaneCollisionShape
48 super.read(im);
H A DSphereCollisionShape.java72 public void read(JmeImporter im) throws IOException { method in class:SphereCollisionShape
73 super.read(im);
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
H A DChildCollisionShape.java40 public void read(JmeImporter im) throws IOException { method in class:ChildCollisionShape
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DCompactQuaternionArray.java79 public void read(JmeImporter im) throws IOException { method in class:CompactQuaternionArray
H A DCompactVector3Array.java79 public void read(JmeImporter im) throws IOException { method in class:CompactVector3Array
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioKey.java60 * be read entirely but not decoded, allowing features such as
109 * be read entirely but not decoded, allowing features such as
130 public void read(JmeImporter im) throws IOException{ method in class:AudioKey
131 super.read(im);
H A DFilter.java55 public void read(JmeImporter im) throws IOException { method in class:Filter
56 // nothing to read
H A DLowPassFilter.java88 public void read(JmeImporter im) throws IOException{ method in class:LowPassFilter
89 super.read(im);
/external/jmonkeyengine/engine/src/core/com/jme3/cinematic/
H A DKeyFrame.java70 public void read(JmeImporter im) throws IOException { method in class:KeyFrame
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DKerning.java69 public void read(JmeImporter im) throws IOException { method in class:Kerning
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DDirectionalLight.java98 public void read(JmeImporter im) throws IOException { method in class:DirectionalLight
99 super.read(im);
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DUserData.java132 public void read(JmeImporter im) throws IOException { method in class:UserData

Completed in 283 milliseconds

1234567891011>>