java.lang.Object | |
↳ | com.pnfsoftware.jeb.core.units.code.android.ParametersInfo |
Dalvik method parameters-to-registers mapping information.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ParametersInfo(int regcnt, List<Integer> paramindexes) |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean | equals(Object obj) | ||||||||||
int | getParameterCount() | ||||||||||
int | getParameterIndex(int index) | ||||||||||
List<Integer> |
getParameterIndices()
Indices of registers holding parameter values.
| ||||||||||
int |
getRegisterCount()
Number of registers used to hold all method parameters (including `this` if the method is not
static).
| ||||||||||
int | hashCode() |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
regcnt | number of registers used to hold all method parameters (including `this` if the method is not static). |
---|---|
paramindexes | indices of registers holding parameter values (the register index for `this` should not be included) |
Indices of registers holding parameter values. The register index for `this` is not included!
Number of registers used to hold all method parameters (including `this` if the method is not static).