Searched refs:oneByte (Results 1 - 12 of 12) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/mail/utility/
H A DEOLConvertingOutputStream.java30 public void write(int oneByte) throws IOException { argument
31 if (oneByte == '\n') {
36 super.write(oneByte);
37 lastChar = oneByte;
H A DCountingOutputStream.java44 public void write(int oneByte) throws IOException { argument
45 mOutputStream.write(oneByte);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
H A DEOLConvertingOutputStream.java31 public void write(int oneByte) throws IOException { argument
32 if (oneByte == '\n') {
37 super.write(oneByte);
38 lastChar = oneByte;
H A DLoggingInputStream.java58 int oneByte = super.read();
59 logRaw(oneByte);
60 return oneByte;
82 private void logRaw(int oneByte) { argument
83 if (oneByte == '\r') {
85 } else if (oneByte == '\n') {
87 } else if (0x20 <= oneByte && oneByte <= 0x7e) { // Printable ASCII.
88 mSb.append((char)oneByte);
92 mSb.append("\\x" + Utility.byteToHex(oneByte));
[all...]
H A DCountingOutputStream.java45 public void write(int oneByte) throws IOException { argument
46 mOutputStream.write(oneByte);
/packages/apps/Email/src/com/android/email/mail/transport/
H A DStatusOutputStream.java34 public void write(int oneByte) throws IOException { argument
35 super.write(oneByte);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DInterruptableOutputStream.java37 public void write(int oneByte) throws IOException { argument
39 mOutputStream.write(oneByte);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
H A DJPEGOutputStream.java121 public void write(int oneByte) throws IOException { argument
122 mTmpBuffer[0] = (byte) oneByte;
/packages/apps/Email/tests/src/com/android/email/mail/transport/
H A DMockTransport.java375 public void write(int oneByte) throws IOException { argument
377 if (oneByte == '\r') {
380 } else if (oneByte == '\n') {
383 sb.append((char) oneByte);
/packages/apps/Camera2/src/com/android/camera/exif/
H A DExifOutputStream.java196 public void write(int oneByte) throws IOException { argument
197 mSingleByteArray[0] = (byte) (0xff & oneByte);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
H A DExifOutputStream.java196 public void write(int oneByte) throws IOException { argument
197 mSingleByteArray[0] = (byte) (0xff & oneByte);
/packages/apps/Messaging/src/com/android/messaging/util/exif/
H A DExifOutputStream.java197 public void write(int oneByte) throws IOException { argument
198 mSingleByteArray[0] = (byte) (0xff & oneByte);

Completed in 281 milliseconds