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

  /dalvik/libdex/
DexProto.cpp 127 const DexProtoId* protoId = getProtoId(pProto);
129 return dexStringById(pProto->dexFile, protoId->shortyIdx);
136 const DexProtoId* protoId = getProtoId(pProto);
137 const DexTypeList* typeList = dexGetProtoParameters(dexFile, protoId);
147 length += strlen(dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
163 strcpy(at, dexStringByTypeIdx(dexFile, protoId->returnTypeIdx));
213 const DexProtoId* protoId = getProtoId(pProto);
214 return dexStringByTypeIdx(pProto->dexFile, protoId->returnTypeIdx);
219 const DexProtoId* protoId = getProtoId(pProto);
221 dexGetProtoParameters(pProto->dexFile, protoId);
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
DexData.java 202 ProtoIdItem protoId = mProtoIds[i];
204 int offset = protoId.parametersOff;
207 protoId.types = new int[0];
212 protoId.types = new int[size];
215 protoId.types[j] = readShort() & 0xffff;
331 ProtoIdItem protoId = mProtoIds[idx];
332 String[] result = new String[protoId.types.length];
334 for (int i = 0; i < protoId.types.length; i++) {
335 result[i] = mStrings[mTypeIds[protoId.types[i]].descriptorIdx];
346 ProtoIdItem protoId = mProtoIds[idx]
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 64 for (ProtoId protoId : dexBuffer.protoIds()) {
65 System.out.println("proto " + index + ": " + protoId);
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 27 import com.android.dx.io.ProtoId;
177 public ProtoId adjust(ProtoId protoId) {
178 return new ProtoId(target,
179 adjustString(protoId.getShortyIndex()),
180 adjustType(protoId.getReturnTypeIndex()),
181 adjustTypeListOffset(protoId.getParametersOffset()));

Completed in 96 milliseconds