Searched defs:typeIdx (Results 1 - 6 of 6) sorted by relevance
/dalvik/libdex/ |
H A D | DexCatch.h | 31 u4 typeIdx; /* type index of the caught exception type */ member in struct:DexCatchHandler 60 pIterator->handler.typeIdx = 0; 97 pIterator->handler.typeIdx = kDexNoIndex; 99 u4 typeIdx = readUnsignedLeb128(&pIterator->pEncodedData); local 100 pIterator->handler.typeIdx = typeIdx;
|
H A D | DexFile.c | 814 u4 typeIdx = readUnsignedLeb128(pStream); local 817 if (typeIdx == 0) { 820 return dexStringByTypeIdx(pDexFile, typeIdx - 1);
|
H A D | DexSwapVerify.c | 258 static bool setDefinedClassBit(const CheckState* state, u4 typeIdx) { argument 259 u4 arrayIdx = typeIdx >> 5; 260 u4 bit = 1 << (typeIdx & 0x1f); 768 SWAP_INDEX2(item->typeIdx, state->pHeader->typeIdsSize); 785 s = dexStringByTypeIdx(state->pDexFile, item->typeIdx); 820 if (item0->typeIdx >= item->typeIdx) { 1329 SWAP_INDEX2(pType->typeIdx, state->pHeader->typeIdsSize); 1679 u4 typeIdx = local 1687 CHECK_INDEX(typeIdx, stat [all...] |
H A D | DexFile.h | 256 u2 typeIdx; /* index into typeIds for field type */ member in struct:DexFieldId 296 u2 typeIdx; /* index into typeIds */ member in struct:DexTypeItem 692 return pItem->typeIdx;
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
H A D | DexData.java | 226 mFieldIds[i].typeIdx = readShort() & 0xffff; 390 classNameFromTypeIndex(fieldId.typeIdx), 571 public int typeIdx; // index into type_ids (field type) field in class:DexData.FieldIdItem
|
/dalvik/vm/reflect/ |
H A D | Annotation.c | 808 u4 typeIdx, size, count; local 811 typeIdx = readUleb128(&ptr); 814 LOGVV("----- processEnc ptr=%p type=%d size=%d\n", ptr, typeIdx, size); 816 annoClass = dvmDexGetResolvedClass(clazz->pDvmDex, typeIdx); 818 annoClass = dvmResolveClass(clazz, typeIdx, true); 821 clazz->descriptor, typeIdx); 827 LOGV("----- processEnc ptr=%p [0x%06x] typeIdx=%d size=%d class=%s\n", 829 typeIdx, size, annoClass->descriptor); 1049 static int compareClassDescriptor(DexFile* pDexFile, u4 typeIdx, argument 1052 const char* str = dexStringByTypeIdx(pDexFile, typeIdx); 1074 u4 typeIdx; local 1106 u4 typeIdx, size; local [all...] |
Completed in 184 milliseconds