Searched refs:writeByte (Results 1 - 24 of 24) sorted by relevance

/libcore/dex/src/main/java/com/android/dex/util/
H A DByteOutput.java29 void writeByte(int i); method in interface:ByteOutput
/libcore/dex/src/main/java/com/android/dex/
H A DEncodedValueCodec.java51 out.writeByte(type | ((requiredBytes - 1) << 5));
55 out.writeByte((byte) value);
78 out.writeByte(type | ((requiredBytes - 1) << 5));
82 out.writeByte((byte) value);
108 out.writeByte(type | ((requiredBytes - 1) << 5));
112 out.writeByte((byte) value);
H A DLeb128.java135 out.writeByte((byte) ((value & 0x7f) | 0x80));
140 out.writeByte((byte) (value & 0x7f));
156 out.writeByte((byte) ((value & 0x7f) | (hasMore ? 0x80 : 0)));
H A DAnnotation.java50 out.writeByte(visibility);
H A DDex.java813 public void writeByte(int b) { method in class:Dex.Section
860 writeByte(0);
/libcore/luni/src/main/java/java/io/
H A DDataOutput.java90 public abstract void writeByte(int val) throws IOException; method in interface:DataOutput
H A DObjectOutputStream.java391 output.writeByte(TC_BLOCKDATA);
392 output.writeByte((byte) toWrite);
394 output.writeByte(TC_BLOCKDATALONG);
575 output.writeByte(TC_RESET);
685 public void writeByte(int value) throws IOException { method in class:ObjectOutputStream
687 primitiveTypes.writeByte(value);
767 output.writeByte(TC_PROXYCLASSDESC);
774 output.writeByte(TC_ENDBLOCKDATA);
783 output.writeByte(TC_CLASSDESC);
796 output.writeByte(TC_ENDBLOCKDAT
[all...]
H A DDataOutputStream.java143 public final void writeByte(int val) throws IOException { method in class:DataOutputStream
H A DEmulatedFieldsForDumping.java206 output.writeByte(fieldValue != null ? ((Byte) fieldValue).byteValue() : 0);
H A DObjectStreamField.java267 out.writeByte(typeCodeOf(t));
H A DRandomAccessFile.java528 * @see #writeByte(int)
736 public final void writeByte(int val) throws IOException { method in class:RandomAccessFile
/libcore/luni/src/test/java/libcore/java/io/
H A DOldAndroidDataOutputStreamTest.java40 a.writeByte('B');
H A DDataOutputStreamTest.java36 os.writeByte(-1);
37 os.writeByte(0);
38 os.writeByte(1);
39 os.writeByte(129);
40 // writeByte takes only the bottom byte from its int parameter.
41 os.writeByte(0x1234);
H A DOldDataInputOutputStreamTest.java70 os.writeByte((byte) 127);
73 os.writeByte((byte) 127);
H A DOldRandomAccessFileTest.java418 * java.io.RandomAccessFile#writeByte(byte)
422 raf.writeByte(Byte.MIN_VALUE);
423 raf.writeByte(11);
424 raf.writeByte(Byte.MAX_VALUE);
425 raf.writeByte(Byte.MIN_VALUE - 1);
426 raf.writeByte(Byte.MAX_VALUE + 1);
449 raf.writeByte(13);
864 raf.writeByte(-1);
H A DOldAndroidDataInputStreamTest.java71 f.writeByte('a');
H A DOldObjectInputOutputStreamTest.java61 os.writeByte((byte) 127);
H A DOldDataInputStreamTest.java285 os.writeByte((byte) -127);
H A DOldObjectOutputStreamTest.java223 oos.writeByte(127);
/libcore/luni/src/main/java/java/sql/
H A DSQLOutput.java71 public void writeByte(byte theByte) throws SQLException; method in interface:SQLOutput
/libcore/luni/src/main/java/java/util/logging/
H A DLogRecord.java464 out.writeByte(MAJOR);
465 out.writeByte(MINOR);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DBinaryHprofWriter.java81 out.writeByte(0); // null terminated string
139 out.writeByte(hprofTag.tag);
/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
H A DObjectInputStreamTest.java291 oos.writeByte(127);
574 oos.writeByte(-1);
/libcore/luni/src/test/java/tests/api/java/io/
H A DObjectInputStreamTest.java465 oos.writeByte(-1);

Completed in 3186 milliseconds