Searched defs:writeInt (Results 1 - 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DDataOutput.java193 void writeInt(int v) throws IOException; method in interface:DataOutput
228 * value in exactly the manner of the <code>writeInt</code>
H A DDataOutputStream.java196 public final void writeInt(int v) throws IOException { method in class:DataOutputStream
242 writeInt(Float.floatToIntBits(v));
H A DRandomAccessFile.java1039 public final void writeInt(int v) throws IOException { method in class:RandomAccessFile
1078 writeInt(Float.floatToIntBits(v));
H A DObjectOutputStream.java81 * oos.writeInt(12345);
809 public void writeInt(int val) throws IOException { method in class:ObjectOutputStream
810 bout.writeInt(val);
1245 bout.writeInt(baseWireHandle + handle);
1292 bout.writeInt(ifaces.length);
1369 bout.writeInt(ia.length);
1373 bout.writeInt(ba.length);
1377 bout.writeInt(ja.length);
1381 bout.writeInt(fa.length);
1385 bout.writeInt(d
2009 public void writeInt(int v) throws IOException { method in class:ObjectOutputStream.BlockDataOutputStream
[all...]
/libcore/ojluni/src/main/java/java/util/zip/
H A DGZIPOutputStream.java202 writeInt((int)crc.getValue(), buf, offset); // CRC-32 of uncompr. data
203 writeInt(def.getTotalIn(), buf, offset + 4); // Number of uncompr. bytes
210 private void writeInt(int i, byte[] buf, int offset) throws IOException { method in class:GZIPOutputStream
H A DZipOutputStream.java379 writeInt(LOCSIG); // LOC header signature
385 writeInt(e.time); // last modification time
389 writeInt(0);
390 writeInt(0);
391 writeInt(0);
401 writeInt(e.time); // last modification time
402 writeInt(e.crc); // crc-32
404 writeInt(ZIP64_MAGICVAL);
405 writeInt(ZIP64_MAGICVAL);
408 writeInt(
593 private void writeInt(long v) throws IOException { method in class:ZipOutputStream
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DSQLOutput.java119 void writeInt(int x) throws SQLException; method in interface:SQLOutput
/libcore/luni/src/test/java/libcore/util/
H A DZoneInfoTest.java430 writeInt(baos, 0x545a6966);
438 writeInt(baos, transitionTimes.length);
440 writeInt(baos, transitionTypes.length);
442 writeInt(baos, 0xdeadbeef);
447 writeInt(baos, transition);
460 writeInt(baos, offset);
471 private static void writeInt(OutputStream os, int value) throws Exception { method in class:ZoneInfoTest
/libcore/dex/src/main/java/com/android/dex/
H A DDex.java329 open(CHECKSUM_OFFSET).writeInt(computeChecksum());
835 public void writeInt(int i) { method in class:Dex.Section
868 writeInt(types.length);

Completed in 312 milliseconds