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

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
ProtoIdItem.java 23 public int returnTypeIdx;
30 returnTypeIdx = file.readUInt();
38 file.writeUInt(returnTypeIdx);
47 if (kind == IndexUpdateKind.TYPE_ID && returnTypeIdx >= insertedIdx) {
48 returnTypeIdx++;
  /art/tools/dexfuzz/src/dexfuzz/program/
IdCreator.java 48 int returnTypeIdx = findTypeId(convertSignatureToReturnType(signature));
55 if (returnTypeIdx < 0) {
67 if (returnTypeIdx < protoId.returnTypeIdx) {
70 if (returnTypeIdx == protoId.returnTypeIdx
74 if (returnTypeIdx == protoId.returnTypeIdx
715 int returnTypeIdx = findOrCreateTypeId(returnType);
723 newProtoId.returnTypeIdx = returnTypeIdx
    [all...]
Program.java 646 return "()" + getTypeString(protoIdItem.returnTypeIdx);
654 return typeItem + ")" + getTypeString(protoIdItem.returnTypeIdx);
  /dalvik/libdex/
DexProto.cpp 147 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
163 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
214 return dexStringByTypeIdx(pProto->dexFile, protoId->returnTypeIdx);
282 strcmp(dexStringByTypeIdx(dexFile1, protoId1->returnTypeIdx),
283 dexStringByTypeIdx(dexFile2, protoId2->returnTypeIdx));
DexSwapVerify.cpp 603 SWAP_INDEX4(item->returnTypeIdx, state->pHeader->typeIdsSize);
666 dexStringByTypeIdx(state->pDexFile, item->returnTypeIdx),
705 if (item0->returnTypeIdx > item->returnTypeIdx) {
708 } else if (item0->returnTypeIdx == item->returnTypeIdx) {
    [all...]
DexFile.h 353 u4 returnTypeIdx; /* index into typeIds list for return type */
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 194 mProtoIds[i].returnTypeIdx = readInt();
350 return mStrings[mTypeIds[protoId.returnTypeIdx].descriptorIdx];
587 public int returnTypeIdx; // index into type_ids
  /dalvik/dexdump/
DexDump.cpp 713 if (protoId->returnTypeIdx >= pDexFile->pHeader->typeIdsSize) {
716 pProtoInfo->returnType = dexStringByTypeIdx(pDexFile, protoId->returnTypeIdx);
    [all...]

Completed in 173 milliseconds