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

  /libcore/luni/src/test/java/tests/api/java/io/
FilterOutputStreamTest.java 144 byte[] wbytes = new byte[testLength];
145 bis.read(wbytes, 0, testLength);
147 fileString.equals(new String(wbytes)));
175 byte[] wbytes = new byte[testLength - 10];
176 bis.read(wbytes);
178 fileString.substring(10).equals(new String(wbytes)));
BufferedOutputStreamTest.java 141 byte[] wbytes = new byte[1013];
142 bais.read(wbytes, 0, 1013);
145 new String(wbytes, 0, wbytes.length)));
221 byte[] wbytes = new byte[1];
222 bais.read(wbytes, 0, 1);
224 't', wbytes[0]);
  /external/bluetooth/bluez/serial/
proxy.c 228 gsize wbytes, written; local
230 wbytes = written = 0;
231 while (wbytes < size) {
233 buf + wbytes,
234 size - wbytes,
240 wbytes += written;
  /external/qemu/audio/
ossaudio.c 391 int wbytes = wsamples << hw->info.shift; local
392 if (wbytes != written) {
395 wbytes, written, hw->info.align + 1);

Completed in 66 milliseconds