use of com.ibm.jvm.dtfjview.heapdump.LongArrayReferenceIterator in project openj9 by eclipse.
the class ClassicHeapDumpFormatter method addPrimitiveArray.
public void addPrimitiveArray(long address, long arrayClassAddress, int type, long size, int hashCode, int numberOfElements) throws IOException, IllegalArgumentException {
checkClosed();
ReferenceIterator references = new LongArrayReferenceIterator(new long[] {});
writeEntry(address, size, getPrimitiveArrayName(type), references);
_primitiveArraysCount++;
}
Aggregations