HomeSort by relevance Sort by last modified time
    Searched full:onebyte (Results 1 - 25 of 68) sorted by null

1 2 3

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
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...]
EOLConvertingOutputStream.java 31 public void write(int oneByte) throws IOException {
32 if (oneByte == '\n') {
37 super.write(oneByte);
38 lastChar = oneByte;
CountingOutputStream.java 37 public void write(int oneByte) throws IOException {
  /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);
  /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);
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;
OutputStream.java 112 * the integer {@code oneByte} is written to the stream.
114 * @param oneByte
119 public abstract void write(int oneByte) throws IOException;
DataOutputStream.java 104 * the integer {@code oneByte} is written.
106 * @param oneByte
113 public void write(int oneByte) throws IOException {
114 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);
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;
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);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1_MessageDigestImpl.java 40 private byte[] oneByte; // one byte buffer needed to use in engineUpdate(byte)
54 oneByte = new byte[1];
145 cloneObj.oneByte = oneByte.clone();
259 oneByte[0] = input;
260 SHA1Impl.updateHash( buffer, oneByte, 0, 0 );
  /frameworks/base/drm/java/android/drm/
DrmOutputStream.java 102 public void write(int oneByte) throws IOException {
103 Streams.writeSingleByte(this, oneByte);
  /frameworks/volley/src/com/android/volley/toolbox/
PoolingByteArrayOutputStream.java 89 public synchronized void write(int oneByte) {
91 super.write(oneByte);
  /cts/tests/tests/os/src/android/os/cts/
IParcelFileDescriptorPeer.aidl 40 void write(int oneByte);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8StringResource.cpp 55 template<bool oneByte>
65 template<bool oneByte>
75 template<bool oneByte>
153 bool oneByte = v8String->ContainsOnlyOneByte();
154 StringType result(oneByte ? StringTraits<StringType>::template fromV8String<true>(v8String, length) : StringTraits<StringType>::template fromV8String<false>(v8String, length));
  /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 193 @Override public void write(int oneByte) throws IOException {
197 bytesOut.write(oneByte);
205 @Override public void write(int oneByte) throws IOException {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
CipherOutputStream.java 16 private byte[] oneByte = new byte[1];
54 oneByte[0] = (byte)b;
58 int len = bufferedBlockCipher.processBytes(oneByte, 0, 1, buf, 0);

Completed in 1335 milliseconds

1 2 3