Searched refs:lastIndex (Results 1 - 11 of 11) sorted by relevance

/dalvik/libdex/
H A DDexClass.h69 * The lastIndex value should be set to 0 before the first field in
77 DexField* pField, u4* lastIndex);
83 * The lastIndex value should be set to 0 before the first method in
91 DexMethod* pMethod, u4* lastIndex);
132 * The lastIndex value should be set to 0 before the first field in
137 u4* lastIndex) {
138 u4 index = *lastIndex + readUnsignedLeb128(pData);
142 *lastIndex = index;
148 * The lastIndex value should be set to 0 before the first method in
153 u4* lastIndex) {
136 dexReadClassDataField(const u1** pData, DexField* pField, u4* lastIndex) argument
152 dexReadClassDataMethod(const u1** pData, DexMethod* pMethod, u4* lastIndex) argument
[all...]
H A DDexClass.cpp56 * The lastIndex value should be set to 0 before the first field in
64 DexField* pField, u4* lastIndex) {
69 dexReadClassDataField(pData, pField, lastIndex);
77 * The lastIndex value should be set to 0 before the first method in
85 DexMethod* pMethod, u4* lastIndex) {
90 dexReadClassDataMethod(pData, pMethod, lastIndex);
106 u4 lastIndex; local
162 lastIndex = 0;
165 &result->staticFields[i], &lastIndex);
168 lastIndex
63 dexReadAndVerifyClassDataField(const u1** pData, const u1* pLimit, DexField* pField, u4* lastIndex) argument
84 dexReadAndVerifyClassDataMethod(const u1** pData, const u1* pLimit, DexMethod* pMethod, u4* lastIndex) argument
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DEncodedMember.java78 * @param lastIndex {@code >= 0;} the previous member index value encoded, or
85 int lastIndex, int dumpSeq);
84 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedField.java134 int lastIndex, int dumpSeq) {
136 int diff = fieldIdx - lastIndex;
133 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedMethod.java160 int lastIndex, int dumpSeq) {
162 int diff = methodIdx - lastIndex;
159 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DClassDataItem.java398 int lastIndex = 0;
409 lastIndex = list.get(i).encode(file, out, lastIndex, i);
/dalvik/dx/src/com/android/dx/dex/file/
H A DEncodedMember.java77 * @param lastIndex {@code >= 0;} the previous member index value encoded, or
84 int lastIndex, int dumpSeq);
83 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedField.java133 int lastIndex, int dumpSeq) {
135 int diff = fieldIdx - lastIndex;
132 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DEncodedMethod.java159 int lastIndex, int dumpSeq) {
161 int diff = methodIdx - lastIndex;
158 encode(DexFile file, AnnotatedOutput out, int lastIndex, int dumpSeq) argument
H A DClassDataItem.java394 int lastIndex = 0;
405 lastIndex = list.get(i).encode(file, out, lastIndex, i);
/dalvik/vm/oo/
H A DClass.cpp1831 u4 lastIndex = 0; local
1836 dexReadClassDataField(&pEncodedData, &field, &lastIndex);
1843 u4 lastIndex = 0; local
1850 dexReadClassDataField(&pEncodedData, &field, &lastIndex);
1892 u4 lastIndex = 0; local
1899 dexReadClassDataMethod(&pEncodedData, &method, &lastIndex);
1916 u4 lastIndex = 0; local
1923 dexReadClassDataMethod(&pEncodedData, &method, &lastIndex);

Completed in 681 milliseconds