HomeSort by relevance Sort by last modified time
    Searched refs:typeIdsSize (Results 1 - 8 of 8) sorted by null

  /dalvik/vm/
DvmDex.h 119 assert(classIdx < pDvmDex->pHeader->typeIdsSize);
148 assert(classIdx < pDvmDex->pHeader->typeIdsSize);
DvmDex.cpp 50 classSize = pHeader->typeIdsSize * sizeof(struct ClassObject*);
192 totalSize += pDvmDex->pHeader->typeIdsSize * sizeof(struct ClassObject*);
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 115 mHeaderItem.typeIdsSize = readInt();
161 int count = mHeaderItem.typeIdsSize;
534 public int typeIdsSize, typeIdsOff;
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 408 total->numTypes += pHeader->typeIdsSize;
425 for (size_t i = 0; i < pHeader->typeIdsSize; i++) {
487 for (size_t i = 0; i < pHeader->typeIdsSize; i++) {
  /dalvik/vm/analysis/
DexVerify.cpp 404 if (idx >= pDvmDex->pHeader->typeIdsSize) {
406 idx, pDvmDex->pHeader->typeIdsSize);
429 if (idx >= pDvmDex->pHeader->typeIdsSize) {
431 idx, pDvmDex->pHeader->typeIdsSize);
463 if (idx >= pDvmDex->pHeader->typeIdsSize) {
465 idx, pDvmDex->pHeader->typeIdsSize);
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 252 // Divide typeIdsSize by 32 (0x20), rounding up.
253 return (state->pHeader->typeIdsSize + 0x1f) >> 5;
288 SWAP_FIELD4(pHeader->typeIdsSize);
483 || (state->pHeader->typeIdsSize != 0))) {
619 SWAP_INDEX4(item->returnTypeIdx, state->pHeader->typeIdsSize);
768 SWAP_INDEX2(item->classIdx, state->pHeader->typeIdsSize);
769 SWAP_INDEX2(item->typeIdx, state->pHeader->typeIdsSize);
840 SWAP_INDEX2(item->classIdx, state->pHeader->typeIdsSize);
906 SWAP_INDEX4(item->classIdx, state->pHeader->typeIdsSize);
908 SWAP_INDEX4_OR_NOINDEX(item->superclassIdx, state->pHeader->typeIdsSize);
    [all...]
DexFile.h 228 u4 typeIdsSize;
641 assert(idx < pDexFile->pHeader->typeIdsSize);
  /dalvik/dexdump/
DexDump.cpp 435 printf("type_ids_size : %d\n", pHeader->typeIdsSize);
770 if (index < pDexFile->pHeader->typeIdsSize) {
    [all...]

Completed in 195 milliseconds