Structure.ByReference, Structure.ByValue, Structure.StructField
Modifier and Type | Field | Description |
---|---|---|
int |
active_count |
|
long |
compressions |
|
int |
compressor_page_count |
|
long |
cow_faults |
|
long |
decompressions |
|
int |
external_page_count |
|
long |
faults |
|
static java.util.List<java.lang.String> |
FIELDS |
|
int |
free_count |
|
long |
hits |
|
int |
inactive_count |
|
int |
internal_page_count |
|
long |
lookups |
|
long |
pageins |
|
long |
pageouts |
|
int |
purgeable_count |
|
long |
purges |
|
long |
reactivations |
|
int |
speculative_count |
|
long |
swapins |
|
long |
swapouts |
|
int |
throttled_count |
|
long |
total_uncompressed_pages_in_compressor |
|
int |
wire_count |
|
long |
zero_fill_count |
ALIGN_DEFAULT, ALIGN_GNUC, ALIGN_MSVC, ALIGN_NONE, CALCULATE_SIZE
Constructor | Description |
---|---|
VMStatistics64() |
Modifier and Type | Method | Description |
---|---|---|
protected java.util.List<java.lang.String> |
getFieldOrder() |
Return this Structure's field names in their proper order.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
allocateMemory, allocateMemory, autoAllocate, autoRead, autoRead, autoWrite, autoWrite, cacheTypeInfo, calculateSize, clear, createFieldsOrder, createFieldsOrder, createFieldsOrder, createFieldsOrder, dataEquals, dataEquals, ensureAllocated, equals, fieldOffset, getAutoRead, getAutoWrite, getFieldList, getFields, getNativeAlignment, getNativeSize, getNativeSize, getPointer, getStringEncoding, getStructAlignment, hashCode, newInstance, newInstance, read, readField, readField, setAlignType, setAutoRead, setAutoSynch, setAutoWrite, setFieldOrder, setStringEncoding, size, sortFields, toArray, toArray, toString, toString, useMemory, useMemory, write, writeField, writeField, writeField
public static final java.util.List<java.lang.String> FIELDS
public int free_count
public int active_count
public int inactive_count
public int wire_count
public long zero_fill_count
public long reactivations
public long pageins
public long pageouts
public long faults
public long cow_faults
public long lookups
public long hits
public long purges
public int purgeable_count
public int speculative_count
public long decompressions
public long compressions
public long swapins
public long swapouts
public int compressor_page_count
public int throttled_count
public int external_page_count
public int internal_page_count
public long total_uncompressed_pages_in_compressor
protected java.util.List<java.lang.String> getFieldOrder()
Structure
protected List getFieldOrder() {
return Arrays.asList(new String[] { ... });
}
IMPORTANT
When deriving from an existing Structure subclass, ensure that
you augment the list provided by the superclass, e.g.
protected List getFieldOrder() {
List fields = new ArrayList(super.getFieldOrder());
fields.addAll(Arrays.asList(new String[] { ... }));
return fields;
}
Field order must be explicitly indicated, since the
field order as returned by Class.getFields()
is not
guaranteed to be predictable.getFieldOrder
in class Structure