/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 | 60 byte rbytes[] = new byte[fileString.length()]; 61 dis.read(rbytes); 62 assertTrue("Incorrect data read", new String(rbytes, 0, fileString 73 byte rbytes[] = new byte[fileString.length()]; 74 dis.read(rbytes, 0, rbytes.length); 75 assertTrue("Incorrect data read", new String(rbytes, 0, fileString 137 byte rbytes[] = new byte[fileString.length()]; 138 dis.readFully(rbytes); 139 assertTrue("Incorrect data read", new String(rbytes, 0, fileStrin [all...] |
FileOutputStreamTest.java | 182 byte rbytes[] = new byte[4000]; 183 fis.read(rbytes, 0, fileString.length()); 184 assertTrue("Incorrect string returned", new String(rbytes, 0, 196 byte rbytes[] = new byte[4000]; 197 fis.read(rbytes, 0, fileString.length()); 198 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
|
/external/curl/lib/ |
tftp.c | 138 int rbytes; member in struct:tftp_state_data 619 if(state->rbytes < (ssize_t)state->blksize+4) { 1087 state->rbytes = (int)recvfrom(state->sockfd, [all...] |
/external/chromium-trace/catapult/third_party/gsutil/gslib/commands/ |
perfdiag.py | [all...] |
/prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/ |
netty-codec-http-4.1.0.CR3.jar | |