Searched refs:getJavaFieldsCount (Results 1 - 2 of 2) sorted by relevance

/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/
H A DInstanceKlass.java151 if (getJavaFieldsCount() != getAllFieldsCount()) {
153 for (int i = getJavaFieldsCount(); i < getAllFieldsCount(); i++) {
346 if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
352 if (index < getJavaFieldsCount()) {
360 if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
366 if (index < getJavaFieldsCount()) {
404 if (index >= getJavaFieldsCount()) throw new IndexOutOfBoundsException("not a Java field;");
437 public int getJavaFieldsCount() { return (int) javaFieldsCount.getValue(this); } method in class:InstanceKlass
671 int length = getJavaFieldsCount();
698 int length = getJavaFieldsCount();
[all...]
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/jcore/
H A DClassWriter.java357 final int javaFieldsCount = klass.getJavaFieldsCount();

Completed in 84 milliseconds