Home
last modified time | relevance | path

Searched refs:rbytes (Results 1 – 4 of 4) sorted by relevance

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DPrintStreamTest.java210 byte[] rbytes = new byte[4000]; in test_print$C()
211 bis.read(rbytes, 0, fileString.length()); in test_print$C()
212 assertEquals("Incorrect char[] written", fileString, new String(rbytes, in test_print$C()
309 byte[] rbytes = new byte[2]; in test_printLjava_lang_Object()
310 bis.read(rbytes, 0, 2); in test_printLjava_lang_Object()
311 assertEquals("Incorrect Object written", "[]", new String(rbytes, 0, 2)); in test_printLjava_lang_Object()
335 byte rbytes[] = new byte[100]; in test_printLjava_lang_String()
336 bis.read(rbytes, 0, 11); in test_printLjava_lang_String()
338 rbytes, 0, 11)); in test_printLjava_lang_String()
379 byte[] rbytes = new byte[4000]; in test_println$C()
[all …]
DDataInputStreamTest.java59 byte rbytes[] = new byte[fileString.length()]; in test_read$B()
60 dis.read(rbytes); in test_read$B()
61 assertTrue("Incorrect data read", new String(rbytes, 0, fileString in test_read$B()
72 byte rbytes[] = new byte[fileString.length()]; in test_read$BII()
73 dis.read(rbytes, 0, rbytes.length); in test_read$BII()
74 assertTrue("Incorrect data read", new String(rbytes, 0, fileString in test_read$BII()
136 byte rbytes[] = new byte[fileString.length()]; in test_readFully$B()
137 dis.readFully(rbytes); in test_readFully$B()
138 assertTrue("Incorrect data read", new String(rbytes, 0, fileString in test_readFully$B()
149 byte rbytes[] = new byte[fileString.length()]; in test_readFully$BII()
[all …]
DFileOutputStreamTest.java161 byte rbytes[] = new byte[4000]; in test_write$B()
162 fis.read(rbytes, 0, fileString.length()); in test_write$B()
163 assertTrue("Incorrect string returned", new String(rbytes, 0, in test_write$B()
175 byte rbytes[] = new byte[4000]; in test_write$BII()
176 fis.read(rbytes, 0, fileString.length()); in test_write$BII()
177 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString in test_write$BII()
/external/qemu/audio/
Desdaudio.c376 int rbytes = rsamples << hw->info.shift; in qesd_thread_in() local
377 if (rbytes != nread) { in qesd_thread_in()
380 rbytes, nread, hw->info.align + 1); in qesd_thread_in()