HomeSort by relevance Sort by last modified time
    Searched refs:rbytes (Results 1 - 18 of 18) 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 249 byte[] rbytes = new byte[4000];
250 bis.read(rbytes, 0, fileString.length());
251 assertEquals("Incorrect char[] written", fileString, new String(rbytes,
348 byte[] rbytes = new byte[2];
349 bis.read(rbytes, 0, 2);
350 assertEquals("Incorrect Object written", "[]", new String(rbytes, 0, 2));
374 byte rbytes[] = new byte[100];
375 bis.read(rbytes, 0, 11);
377 rbytes, 0, 11));
418 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 187 byte rbytes[] = new byte[4000];
188 fis.read(rbytes, 0, fileString.length());
189 assertTrue("Incorrect string returned", new String(rbytes, 0,
201 byte rbytes[] = new byte[4000];
202 fis.read(rbytes, 0, fileString.length());
203 assertTrue("Incorrect bytes written", new String(rbytes, 0, fileString
  /packages/services/BuiltInPrintService/jni/plugins/
plugin_pdf.c 75 int rbytes, wbytes, nbytes = 0; local
93 rbytes = read(fd, buff, BUFF_SIZE);
95 while ((rbytes > 0) && !job_params->cancelled) {
96 wbytes = priv->print_ifc->send_data(priv->print_ifc, buff, rbytes);
97 if (wbytes == rbytes) {
99 rbytes = read(fd, buff, BUFF_SIZE);
wprint_image.c 616 int rbytes; local
626 rbytes = BYTES_PER_PIXEL(image_info->output_width);
681 col_offset, rbytes);
682 nbytes += rbytes + padding_left + padding_right;
683 rgb_pixels += rbytes + padding_left + padding_right;
703 nbytes += rbytes + padding_left + padding_right;
704 rgb_pixels += rbytes + padding_left + padding_right;
    [all...]
  /external/ltp/testcases/kernel/io/disktest/
stats.c 108 printf(CTRSTR, (env->hbeat_stats.rbytes),
115 ((double)(env->hbeat_stats.rbytes) /
132 printf(CTRSTR, (env->cycle_stats.rbytes),
139 ((double)(env->cycle_stats.rbytes) /
156 printf(TCTRSTR, (env->global_stats.rbytes),
163 ((double)(env->global_stats.rbytes) /
191 (env->hbeat_stats.rbytes),
203 (env->cycle_stats.rbytes),
216 (env->global_stats.rbytes));
235 ((double)env->hbeat_stats.rbytes /
    [all...]
main.h 199 OFF_T rbytes; member in struct:stats
childmain.c 561 (env->hbeat_stats.rbytes) += target.trsiz * BLK_SIZE;
  /external/ltp/testcases/kernel/syscalls/ftruncate/
ftruncate02.c 100 int rbytes, i; /* bytes read from testfile */ local
147 while ((rbytes = read(fd, tst_buff,
149 read_len += rbytes;
181 while ((rbytes = read(fd, tst_buff,
183 for (i = 0; i < rbytes; i++) {
  /external/ltp/testcases/kernel/syscalls/truncate/
truncate02.c 102 int rbytes; /* bytes read from testfile */ local
148 while ((rbytes = read(fd, tst_buff,
150 read_len += rbytes;
189 while ((rbytes = read(fd, tst_buff,
191 for (i = 0; i < rbytes; i++) {
  /prebuilts/go/darwin-x86/src/net/
sendfile_test.go 74 rbytes, err := io.Copy(h, c)
79 if rbytes != twainLen {
80 t.Errorf("received %d bytes; expected %d", rbytes, twainLen)
  /prebuilts/go/linux-x86/src/net/
sendfile_test.go 74 rbytes, err := io.Copy(h, c)
79 if rbytes != twainLen {
80 t.Errorf("received %d bytes; expected %d", rbytes, twainLen)
  /external/curl/lib/
tftp.c 139 int rbytes; member in struct:tftp_state_data
623 if(state->rbytes < (ssize_t)state->blksize+4) {
    [all...]
  /packages/services/Car/tools/bootio/
bootio_collector.cpp 224 uint64_t rbytes; member in struct:android::Stats
234 printf("rbytes: number of bytes the process directly read from disk.\n");
252 "syscr", "syscw", "rbytes", "wbytes", "cpu%");
277 stats.rbytes += (newerSample->readbytes() - olderSample->readbytes());
310 "rbytes",
317 it->second.rbytes,
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.0.CR3/
netty-codec-http-4.1.0.CR3.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.3.Final/
netty-codec-http-4.1.3.Final.jar 
  /prebuilts/tools/common/m2/repository/io/netty/netty-codec-http/4.1.6.Final/
netty-codec-http-4.1.6.Final.jar 

Completed in 345 milliseconds