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

  /dalvik/libdex/
DexProto.c 130 const DexProtoId* protoId = getProtoId(pProto);
132 return dexStringById(pProto->dexFile, protoId->shortyIdx);
141 const DexProtoId* protoId = getProtoId(pProto);
142 const DexTypeList* typeList = dexGetProtoParameters(dexFile, protoId);
152 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
168 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
227 const DexProtoId* protoId = getProtoId(pProto);
228 return dexStringByTypeIdx(pProto->dexFile, protoId->returnTypeIdx);
235 const DexProtoId* protoId = getProtoId(pProto);
237 dexGetProtoParameters(pProto->dexFile, protoId);
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 195 ProtoIdItem protoId = mProtoIds[i];
197 int offset = protoId.parametersOff;
200 protoId.types = new int[0];
205 protoId.types = new int[size];
208 protoId.types[j] = readShort() & 0xffff;
324 ProtoIdItem protoId = mProtoIds[idx];
325 String[] result = new String[protoId.types.length];
327 for (int i = 0; i < protoId.types.length; i++) {
328 result[i] = mStrings[mTypeIds[protoId.types[i]].descriptorIdx];
339 ProtoIdItem protoId = mProtoIds[idx]
    [all...]

Completed in 352 milliseconds