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

  /libcore/luni/src/test/java/tests/api/java/io/
DataInputStreamTest.java 81 byte rbytes[] = new byte[testLength - 5];
89 r = dis.read(rbytes);
93 new String(rbytes).equals(fileString.substring(0, testLength - 5)));
95 r = dis.read(rbytes);
98 new String(rbytes, 0, 5).equals(fileString.substring(testLength - 5)));
104 dis.read(rbytes);
120 byte rbytes[] = new byte[testLength - 5];
128 r = dis.read(rbytes, 1, testLength - 10);
131 assertEquals("Test 2: Incorrect data read.", 0, rbytes[0]);
133 new String(rbytes, 1, r).equals(fileString.substring(0, r)))
    [all...]
PrintStreamTest.java 202 byte[] rbytes = new byte[4000];
203 bis.read(rbytes, 0, fileString.length());
204 assertEquals("Incorrect char[] written", fileString, new String(rbytes,
301 byte[] rbytes = new byte[2];
302 bis.read(rbytes, 0, 2);
303 assertEquals("Incorrect Object written", "[]", new String(rbytes, 0, 2));
327 byte rbytes[] = new byte[100];
328 bis.read(rbytes, 0, 11);
330 rbytes, 0, 11));
371 byte[] rbytes = new byte[4000]
    [all...]
FileOutputStreamTest.java 273 byte rbytes[] = new byte[4000];
274 fis.read(rbytes, 0, fileString.length());
276 new String(rbytes, 0, fileString.length()).equals(fileString));
294 byte rbytes[] = new byte[4000];
295 fis.read(rbytes, 0, fileString.length());
296 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
  /external/bluetooth/bluez/serial/
proxy.c 252 size_t rbytes; local
262 rbytes = 0;
263 err = g_io_channel_read(chan, buf, sizeof(buf), &rbytes);
264 if (err != G_IO_ERROR_NONE || rbytes == 0)
267 err = channel_write(dest, buf, rbytes);
281 rbytes = 0;
282 err = g_io_channel_read(chan, buf, sizeof(buf), &rbytes);
286 err = channel_write(dest, buf, rbytes);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
reiserfs_fs.h 1374 int rbytes; \/* number of bytes which will flow to the right neighbor from the right *\/ member in struct:tree_balance
    [all...]

Completed in 152 milliseconds