Searched defs:writeLong (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/java/io/
H A DDataOutput.java219 void writeLong(long v) throws IOException; method in interface:DataOutput
247 * value in exactly the manner of the <code>writeLong</code>
H A DDataOutputStream.java215 public final void writeLong(long v) throws IOException { method in class:DataOutputStream
259 writeLong(Double.doubleToLongBits(v));
H A DRandomAccessFile.java1068 public final void writeLong(long v) throws IOException { method in class:RandomAccessFile
1107 writeLong(Double.doubleToLongBits(v));
H A DObjectOutputStream.java804 public void writeLong(long val) throws IOException { method in class:ObjectOutputStream
805 bout.writeLong(val);
1949 public void writeLong(long v) throws IOException { method in class:ObjectOutputStream.BlockDataOutputStream
1954 dout.writeLong(v);
2104 dout.writeLong(v[off++]);
2181 writeLong(utflen);
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectOutputStream.java247 abstract public void writeLong(long data) throws IOException; method in class:AbstractObjectOutputStream
H A DXObjectOutputStream.java280 public void writeLong(long data) throws IOException{} method in class:XObjectOutputStream
/openjdk7/jdk/src/share/classes/javax/sql/rowset/serial/
H A DSQLOutputImpl.java195 public void writeLong(long x) throws SQLException { method in class:SQLOutputImpl
/openjdk7/jdk/src/share/classes/java/sql/
H A DSQLOutput.java132 void writeLong(long x) throws SQLException; method in interface:SQLOutput
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageOutputStream.java269 void writeLong(long v) throws IOException; method in interface:ImageOutputStream
297 * long value in exactly the manner of the <code>writeLong</code>
H A DImageOutputStreamImpl.java94 public void writeLong(long v) throws IOException { method in class:ImageOutputStreamImpl
127 writeLong(Double.doubleToLongBits(v));
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipUtils.java78 public static void writeLong(OutputStream os, long v) throws IOException { method in class:ZipUtils
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipOutputStream.java414 writeLong(e.size);
415 writeLong(e.csize);
430 writeLong(e.csize);
431 writeLong(e.size);
506 writeLong(e.size);
508 writeLong(e.csize);
510 writeLong(xentry.offset);
544 writeLong(ZIP64_ENDHDR - 12); // size of zip64 end
549 writeLong(xentries.size()); // number of directory entires on disk
550 writeLong(xentrie
600 private void writeLong(long v) throws IOException { method in class:ZipOutputStream
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DRIFFWriter.java340 public void writeLong(long b) throws IOException { method in class:RIFFWriter
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DWebRowSetXmlWriter.java397 writeLong(l);
427 writeLong(date.getTime());
434 writeLong(time.getTime());
441 writeLong(ts.getTime());
568 private void writeLong(long l) throws java.io.IOException { method in class:WebRowSetXmlWriter
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPOutputStream.java434 public final void writeLong(long data) throws IOException{ method in class:IIOPOutputStream
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPacketStream.java105 void writeLong(long data) { method in class:PacketStream
122 writeLong(Double.doubleToLongBits(data));
128 writeLong(data);
193 writeLong(location.codeIndex());
271 writeLong(((PrimitiveValue)val).longValue());
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DClassWriter.java192 public void writeLong(long value) { method in class:ClassWriter.ClassOutputStream
194 d.writeLong(value);
277 out.writeLong(info.value);

Completed in 226 milliseconds