Searched defs:writeInt (Results 1 - 7 of 7) 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.java1115 public final void writeInt(int v) throws IOException { method in class:RandomAccessFile
1154 writeInt(Float.floatToIntBits(v));
H A DObjectOutputStream.java80 * oos.writeInt(12345);
819 public void writeInt(int val) throws IOException { method in class:ObjectOutputStream
820 bout.writeInt(val);
1261 bout.writeInt(baseWireHandle + handle);
1308 bout.writeInt(ifaces.length);
1385 bout.writeInt(ia.length);
1389 bout.writeInt(ba.length);
1393 bout.writeInt(ja.length);
1397 bout.writeInt(fa.length);
1401 bout.writeInt(d
2038 public void writeInt(int v) throws IOException { method in class:ObjectOutputStream.BlockDataOutputStream
[all...]
/libcore/ojluni/src/main/java/java/util/zip/
H A DGZIPOutputStream.java201 writeInt((int)crc.getValue(), buf, offset); // CRC-32 of uncompr. data
202 writeInt(def.getTotalIn(), buf, offset + 4); // Number of uncompr. bytes
209 private void writeInt(int i, byte[] buf, int offset) throws IOException { method in class:GZIPOutputStream
H A DZipOutputStream.java397 writeInt(LOCSIG); // LOC header signature
402 writeInt(e.xdostime); // last modification time
405 writeInt(0);
406 writeInt(0);
407 writeInt(0);
417 writeInt(e.xdostime); // last modification time
418 writeInt(e.crc); // crc-32
420 writeInt(ZIP64_MAGICVAL);
421 writeInt(ZIP64_MAGICVAL);
424 writeInt(
724 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

Completed in 107 milliseconds