Searched defs:writeShort (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DDataOutput.java151 void writeShort(int v) throws IOException; method in interface:DataOutput
341 * of the <code>writeShort</code> method;
H A DDataOutputStream.java166 public final void writeShort(int v) throws IOException { method in class:DataOutputStream
309 * <code>writeShort</code> method giving the number of bytes to
331 * First, two bytes are written to out as if by the <code>writeShort</code>
H A DRandomAccessFile.java1088 public final void writeShort(int v) throws IOException { method in class:RandomAccessFile
1219 * {@code writeShort} method giving the number of bytes to
H A DObjectOutputStream.java658 bout.writeShort(STREAM_MAGIC);
659 bout.writeShort(STREAM_VERSION);
797 public void writeShort(int val) throws IOException { method in class:ObjectOutputStream
798 bout.writeShort(val);
2029 public void writeShort(int v) throws IOException { method in class:ObjectOutputStream.BlockDataOutputStream
2034 dout.writeShort(v);
2161 dout.writeShort(v[off++]);
2266 writeShort((int) utflen);
/libcore/ojluni/src/main/java/java/util/zip/
H A DGZIPOutputStream.java210 writeShort(i & 0xffff, buf, offset);
211 writeShort((i >> 16) & 0xffff, buf, offset + 2);
218 private void writeShort(int s, byte[] buf, int offset) throws IOException { method in class:GZIPOutputStream
H A DZipOutputStream.java399 writeShort(version(e)); // version needed to extract
400 writeShort(flag); // general purpose bit flag
401 writeShort(e.method); // compression method
411 writeShort(45); // ver 4.5 for zip64
413 writeShort(version(e)); // version needed to extract
415 writeShort(flag); // general purpose bit flag
416 writeShort(e.method); // compression method
429 writeShort(nameBytes.length);
447 writeShort(elen);
450 writeShort(ZIP64_EXTI
714 private void writeShort(int v) throws IOException { method in class:ZipOutputStream
[all...]
/libcore/ojluni/src/main/java/java/sql/
H A DSQLOutput.java106 void writeShort(short x) throws SQLException; method in interface:SQLOutput

Completed in 949 milliseconds