HomeSort by relevance Sort by last modified time
    Searched refs:rbytes (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/test/java/libcore/java/io/
OldDataInputStreamTest.java 59 byte rbytes[] = new byte[testLength - 5];
67 r = dis.read(rbytes);
71 new String(rbytes).equals(fileString.substring(0, testLength - 5)));
73 r = dis.read(rbytes);
76 new String(rbytes, 0, 5).equals(fileString.substring(testLength - 5)));
82 dis.read(rbytes);
90 byte rbytes[] = new byte[testLength - 5];
98 r = dis.read(rbytes, 1, testLength - 10);
101 assertEquals("Test 2: Incorrect data read.", 0, rbytes[0]);
103 new String(rbytes, 1, r).equals(fileString.substring(0, r)))
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PrintStreamTest.java 212 byte[] rbytes = new byte[4000];
213 bis.read(rbytes, 0, fileString.length());
214 assertEquals("Incorrect char[] written", fileString, new String(rbytes,
311 byte[] rbytes = new byte[2];
312 bis.read(rbytes, 0, 2);
313 assertEquals("Incorrect Object written", "[]", new String(rbytes, 0, 2));
337 byte rbytes[] = new byte[100];
338 bis.read(rbytes, 0, 11);
340 rbytes, 0, 11));
381 byte[] rbytes = new byte[4000]
    [all...]
DataInputStreamTest.java 59 byte rbytes[] = new byte[fileString.length()];
60 dis.read(rbytes);
61 assertTrue("Incorrect data read", new String(rbytes, 0, fileString
72 byte rbytes[] = new byte[fileString.length()];
73 dis.read(rbytes, 0, rbytes.length);
74 assertTrue("Incorrect data read", new String(rbytes, 0, fileString
136 byte rbytes[] = new byte[fileString.length()];
137 dis.readFully(rbytes);
138 assertTrue("Incorrect data read", new String(rbytes, 0, fileStrin
    [all...]
FileOutputStreamTest.java 180 byte rbytes[] = new byte[4000];
181 fis.read(rbytes, 0, fileString.length());
182 assertTrue("Incorrect string returned", new String(rbytes, 0,
194 byte rbytes[] = new byte[4000];
195 fis.read(rbytes, 0, fileString.length());
196 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
  /external/qemu/audio/
esdaudio.c 376 int rbytes = rsamples << hw->info.shift; local
377 if (rbytes != nread) {
380 rbytes, nread, hw->info.align + 1);

Completed in 267 milliseconds