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

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
FilterOutputStreamTest.java 84 byte[] wbytes = new byte[fileString.length()];
85 bis.read(wbytes, 0, fileString.length());
87 wbytes, 0, wbytes.length)));
101 byte[] wbytes = new byte[fileString.length()];
102 bis.read(wbytes, 0, fileString.length());
104 wbytes, 0, wbytes.length)));
117 byte[] wbytes = new byte[1];
118 bis.read(wbytes, 0, 1)
    [all...]
BufferedOutputStreamTest.java 143 byte[] wbytes = new byte[1013];
144 bais.read(wbytes, 0, 1013);
145 assertEquals("Incorrect bytes written", new String(wbytes, 0,
146 wbytes.length), fileString.substring(0, 1013));
657 byte[] wbytes = new byte[1];
658 bais.read(wbytes, 0, 1);
659 assertEquals("Incorrect byte written", 't', wbytes[0]);
  /external/ltp/testcases/kernel/io/disktest/
stats.c 110 printf(CTWSTR, (env->hbeat_stats.wbytes),
120 ((double)(env->hbeat_stats.wbytes) /
134 printf(CTWSTR, (env->cycle_stats.wbytes),
144 ((double)(env->cycle_stats.wbytes) /
158 printf(TCTWSTR, (env->global_stats.wbytes),
168 ((double)(env->global_stats.wbytes) /
196 (env->hbeat_stats.wbytes),
208 (env->cycle_stats.wbytes),
221 (env->global_stats.wbytes));
245 ((double)env->hbeat_stats.wbytes /
    [all...]
main.h 198 OFF_T wbytes; member in struct:stats
childmain.c 551 (env->hbeat_stats.wbytes) += target.trsiz * BLK_SIZE;
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedOutputStreamTest.java 102 byte[] wbytes = new byte[1013];
103 bais.read(wbytes, 0, 1013);
106 new String(wbytes, 0, wbytes.length)));
166 byte[] wbytes = new byte[1];
167 bais.read(wbytes, 0, 1);
169 't', wbytes[0]);
OldFilterOutputStreamTest.java 106 byte[] wbytes = new byte[testLength];
107 bis.read(wbytes, 0, testLength);
109 fileString.equals(new String(wbytes)));
129 byte[] wbytes = new byte[testLength - 10];
130 bis.read(wbytes);
132 fileString.substring(10).equals(new String(wbytes)));
  /external/ltp/testcases/kernel/syscalls/fstat/
fstat02.c 113 int wbytes; local
136 if ((wbytes = write(fildes, tst_buff, sizeof(tst_buff))) <= 0)
139 write_len += wbytes;
  /external/ltp/testcases/kernel/syscalls/stat/
stat01.c 113 int wbytes; local
137 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0)
140 write_len += wbytes;
stat02.c 161 int wbytes; /* no. of bytes written to file */ local
198 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) {
202 write_len += wbytes;
  /packages/services/BuiltInPrintService/jni/plugins/
plugin_pdf.c 75 int rbytes, wbytes, nbytes = 0; local
96 wbytes = priv->print_ifc->send_data(priv->print_ifc, buff, rbytes);
97 if (wbytes == rbytes) {
98 nbytes += wbytes;
  /external/ltp/testcases/kernel/syscalls/ftruncate/
ftruncate02.c 243 int wbytes; /* bytes written to testfile */ local
261 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) {
264 write_len += wbytes;
  /external/ltp/testcases/kernel/syscalls/truncate/
truncate02.c 232 int wbytes; /* bytes written to testfile */ local
260 if ((wbytes = write(fd, tst_buff, sizeof(tst_buff))) <= 0) {
265 write_len += wbytes;
  /external/skia/tests/
AAClipTest.cpp 39 size_t wbytes = a.fBounds.width(); local
42 wbytes = (wbytes + 7) >> 3;
48 wbytes <<= 1;
51 wbytes <<= 2;
62 if (memcmp(aptr, bptr, wbytes)) {
65 aptr += wbytes;
66 bptr += wbytes;
  /external/skqp/tests/
AAClipTest.cpp 28 size_t wbytes = a.fBounds.width(); local
31 wbytes = (wbytes + 7) >> 3;
37 wbytes <<= 1;
40 wbytes <<= 2;
51 if (memcmp(aptr, bptr, wbytes)) {
54 aptr += wbytes;
55 bptr += wbytes;
  /external/ltp/testcases/kernel/syscalls/epoll2/examples/
epoll-test.c 316 int wbytes, wcurr; local
318 for (wbytes = 0; wbytes < nbyte;) {
319 if ((wcurr = eph_write(conn, buf + wbytes, nbyte - wbytes)) < 0)
321 wbytes += wcurr;
324 return wbytes;
  /system/extras/boottime_tools/bootio/
bootio_collector.cpp 223 uint64_t wbytes; member in struct:android::Stats
233 printf("wbytes: number of bytes the process originally dirtied in the page-cache "
250 "syscr", "syscw", "rbytes", "wbytes", "cpu%");
276 stats.wbytes += (newerSample->writebytes() - olderSample->writebytes());
309 "wbytes",
316 it->second.wbytes,

Completed in 338 milliseconds