HomeSort by relevance Sort by last modified time
    Searched refs:oneByte (Results 1 - 25 of 86) 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);
  /packages/services/Telephony/src/com/android/phone/common/mail/utility/
EOLConvertingOutputStream.java 30 public void write(int oneByte) throws IOException {
31 if (oneByte == '\n') {
36 super.write(oneByte);
37 lastChar = oneByte;
CountingOutputStream.java 44 public void write(int oneByte) throws IOException {
45 mOutputStream.write(oneByte);
  /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);
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDecodedBitStreamParser.cpp 111 int32_t oneByte = bits->ReadBits(8, e);
113 if (oneByte == 0) {
116 } else if (oneByte <= 128) {
117 oneByte = upperShift ? oneByte + 128 : oneByte;
119 result += ((FX_CHAR)(oneByte - 1));
121 } else if (oneByte == 129) {
123 } else if (oneByte <= 229) {
124 int32_t value = oneByte - 130;
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
IParcelFileDescriptorPeer.aidl 40 void write(int oneByte);
ParcelFileDescriptorPeer.java 133 public void write(int oneByte) throws RemoteException {
135 new FileOutputStream(mLocal.getFileDescriptor()).write(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/main/java/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);
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 61 public void write(int oneByte) {}
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 375 public void write(int oneByte) throws IOException {
377 if (oneByte == '\r') {
380 } else if (oneByte == '\n') {
383 sb.append((char) oneByte);
  /frameworks/base/core/java/android/os/
FileBridge.java 187 public void write(int oneByte) throws IOException {
188 Streams.writeSingleByte(this, oneByte);
MemoryFile.java 342 public void write(int oneByte) throws IOException {
346 mSingleByte[0] = (byte)oneByte;
  /frameworks/base/core/java/android/content/res/
AssetFileDescriptor.java 327 public void write(int oneByte) throws IOException {
330 super.write(oneByte);
335 super.write(oneByte);
  /frameworks/base/core/java/com/android/internal/os/
LoggingPrintStream.java 63 public void write(int oneByte) throws IOException {
110 public void write(int oneByte) {
111 write(new byte[] { (byte) oneByte }, 0, 1);

Completed in 814 milliseconds

1 2 3 4