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

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothOutputStream.java45 * the integer {@code oneByte} is written to the stream.
47 * @param oneByte
53 public void write(int oneByte) throws IOException { argument
55 b[0] = (byte)oneByte;
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java102 public void write(int oneByte) throws IOException { argument
103 Streams.writeSingleByte(this, oneByte);
/frameworks/volley/src/com/android/volley/toolbox/
H A DPoolingByteArrayOutputStream.java89 public synchronized void write(int oneByte) { argument
91 super.write(oneByte);
/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java327 public void write(int oneByte) throws IOException { argument
330 super.write(oneByte);
335 super.write(oneByte);
/frameworks/base/core/java/android/os/
H A DMemoryFile.java337 public void write(int oneByte) throws IOException { argument
341 mSingleByte[0] = (byte)oneByte;
/frameworks/base/core/java/com/android/internal/os/
H A DLoggingPrintStream.java63 public void write(int oneByte) throws IOException {
110 public void write(int oneByte) { argument
111 write(new byte[] { (byte) oneByte }, 0, 1);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifOutputStream.java196 public void write(int oneByte) throws IOException { argument
197 mSingleByteArray[0] = (byte) (0xff & oneByte);

Completed in 306 milliseconds