Searched refs:writeLong (Results 1 - 25 of 59) sorted by relevance

123

/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));
/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/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantLong.java118 file.writeLong(bytes);
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DNumberConstantData.java59 out.writeLong(num.longValue());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/bytecode/
H A DClassTailor.java111 out.writeLong(l);
153 out.writeLong(in.readLong());
/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>
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectOutputStream.java247 abstract public void writeLong(long data) throws IOException; method in class:AbstractObjectOutputStream
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DLongs.java73 oout.writeLong(0);
H A DCustomObjTrees.java69 out.writeLong(j);
/openjdk7/jdk/test/javax/sound/midi/Gervill/RiffReaderWriter/
H A DReadLong.java52 chunk.writeLong(133L);
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DObjID.java153 * {@link ObjectOutput#writeLong(long)} method with this object
165 out.writeLong(objNum);
H A DUID.java223 * {@link DataOutput#writeLong(long)} method with this <code>UID</code>'s
236 out.writeLong(time);
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DSerializeWithException.java72 p.writeLong(l);
H A DWritePrimitive.java62 p.writeLong(l);
/openjdk7/jdk/test/java/lang/System/
H A DVersions.java56 dos.writeLong((0xCafeBabel << 32) + (minor << 16) + major);
/openjdk7/jdk/test/java/rmi/server/ObjID/randomIDs/
H A DRandomIDs.java75 * trapping the first writeLong invocation on the stream.
85 public void writeLong(long val) throws IOException {
90 throw new Error("writeLong not invoked");
/openjdk7/jdk/test/java/security/Identity/
H A DEqualsHashCodeContract.java89 ds.writeLong(System.currentTimeMillis());
/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/jdk/test/java/io/RandomAccessFile/
H A DReadWritePrimitives.java135 f.writeLong(123456789L * (long)i);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DByteBuffer.java117 bufout.writeLong(x);
/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/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DHeapHprofBinWriter.java687 out.writeLong(array.getHandle().getJLongAt(offset));
799 out.writeLong(((LongField)field).getValue(oop));
894 out.writeLong(System.currentTimeMillis());
912 out.writeLong(address);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java1705 writeLong(os, ZIP64_ENDHDR - 12); // size of zip64 end
1710 writeLong(os, centot); // number of directory entires on disk
1711 writeLong(os, centot); // number of directory entires
1712 writeLong(os, cenlen); // length of central directory
1713 writeLong(os, cenoff); // offset of central directory
1718 writeLong(os, off64); // offset of zip64 END
1980 writeLong(os, size);
1982 writeLong(os, csize);
1984 writeLong(os, locoff);
1993 writeLong(o
[all...]

Completed in 49 milliseconds

123