HomeSort by relevance Sort by last modified time
    Searched refs:oneByte (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EOLConvertingOutputStream.java 31 public void write(int oneByte) throws IOException {
32 if (oneByte == '\n') {
37 super.write(oneByte);
38 lastChar = oneByte;
LoggingInputStream.java 58 int oneByte = super.read();
59 logRaw(oneByte);
60 return oneByte;
82 private void logRaw(int oneByte) {
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...]
CountingOutputStream.java 45 public void write(int oneByte) throws IOException {
46 mOutputStream.write(oneByte);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
StreamBlockCipher.java 12 private byte[] oneByte = new byte[1];
64 oneByte[0] = in;
66 cipher.processBlock(oneByte, 0, oneByte, 0);
68 return oneByte[0];
  /frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java 45 * the integer {@code oneByte} is written to the stream.
47 * @param oneByte
53 public void write(int oneByte) throws IOException {
55 b[0] = (byte)oneByte;
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 34 public void write(int oneByte) throws IOException {
35 super.write(oneByte);
  /cts/tests/tests/os/src/android/os/cts/
IParcelFileDescriptorPeer.aidl 40 void write(int oneByte);
  /libcore/luni/src/main/java/java/io/
FilterOutputStream.java 120 * integer {@code oneByte} is written.
122 * @param oneByte
128 public void write(int oneByte) throws IOException {
129 out.write(oneByte);
PipedOutputStream.java 152 * the integer {@code oneByte} is written. The written byte can then be read
159 * @param oneByte
171 public void write(int oneByte) throws IOException {
176 stream.receive(oneByte);
DataOutput.java 61 * @param oneByte
67 public abstract void write(int oneByte) throws IOException;
104 * bytes of the integer {@code oneByte} are written.
OutputStream.java 112 * the integer {@code oneByte} is written to the stream.
114 * @param oneByte
119 public abstract void write(int oneByte) throws IOException;
BufferedOutputStream.java 160 * {@code oneByte} is written. If there is room in the buffer, the byte is
162 * plus {@code oneByte} are written to the target stream, the target is
165 * @param oneByte
171 public synchronized void write(int oneByte) throws IOException {
177 buf[count++] = (byte) oneByte;
ByteArrayOutputStream.java 207 * Writes the specified byte {@code oneByte} to the OutputStream. Only the
208 * low order byte of {@code oneByte} is written.
210 * @param oneByte
214 public synchronized void write(int oneByte) {
218 buf[count++] = (byte) oneByte;
FileOutputStream.java 190 public void write(int oneByte) throws IOException {
191 write(new byte[] { (byte) oneByte }, 0, 1);
DataOutputStream.java 104 * the integer {@code oneByte} is written.
106 * @param oneByte
113 public void write(int oneByte) throws IOException {
114 out.write(oneByte);
PushbackInputStream.java 286 * Pushes the specified byte {@code oneByte} back to this stream. Only the
287 * least significant byte of the integer {@code oneByte} is pushed back.
289 * {@code (byte) oneByte}.
294 * @param oneByte
300 public void unread(int oneByte) throws IOException {
307 buf[--pos] = (byte) oneByte;
  /libcore/support/src/test/java/tests/support/
Support_ASimpleOutputStream.java 78 public void write(int oneByte) throws IOException {
83 buf[pos] = (byte)(oneByte & 255);
Support_OutputStream.java 81 public void write(int oneByte) throws IOException {
86 buffer[position] = (byte)(oneByte & 255);
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
InterruptableOutputStream.java 37 public void write(int oneByte) throws IOException {
39 mOutputStream.write(oneByte);
  /frameworks/volley/src/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 89 public synchronized void write(int oneByte) {
91 super.write(oneByte);
  /libcore/luni/src/test/java/libcore/java/io/
OldOutputStreamTest.java 36 public void write(int oneByte) throws IOException {
38 buffer[position] = (byte) (oneByte & 255);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
JPEGOutputStream.java 121 public void write(int oneByte) throws IOException {
122 mTmpBuffer[0] = (byte) oneByte;
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
WrapperTester.java 200 public void write(int oneByte) throws IOException {
204 bytesOut.write(oneByte);
213 public void write(int oneByte) throws IOException {
  /libcore/support/src/test/java/org/apache/harmony/testframework/
WrapperTester.java 200 public void write(int oneByte) throws IOException {
204 bytesOut.write(oneByte);
213 public void write(int oneByte) throws IOException {
  /frameworks/base/drm/java/android/drm/
DrmOutputStream.java 113 public void write(int oneByte) throws IOException {
114 Streams.writeSingleByte(this, oneByte);

Completed in 3087 milliseconds

1 2 3 4