Searched defs:oneByte (Results 1 - 7 of 7) sorted by relevance

/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleOutputStream.java78 public void write(int oneByte) throws IOException { argument
83 buf[pos] = (byte)(oneByte & 255);
H A DSupport_OutputStream.java81 public void write(int oneByte) throws IOException { argument
86 buffer[position] = (byte)(oneByte & 255);
/libcore/luni/src/test/java/libcore/java/io/
H A DOldOutputStreamTest.java36 public void write(int oneByte) throws IOException { argument
38 buffer[position] = (byte) (oneByte & 255);
/libcore/support/src/test/java/libcore/java/io/
H A DNullPrintStream.java61 public void write(int oneByte) {} argument
/libcore/support/src/test/java/org/apache/harmony/testframework/
H A DWrapperTester.java200 public void write(int oneByte) throws IOException { argument
204 bytesOut.write(oneByte);
213 public void write(int oneByte) throws IOException { argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DPipedInputStreamTest.java311 public void receive(int oneByte) throws IOException { argument
312 super.receive(oneByte);
/libcore/support/src/test/java/tests/http/
H A DMockWebServer.java482 @Override public void write(int oneByte) { argument
485 super.write(oneByte);

Completed in 226 milliseconds