Searched refs:methodId (Results 1 - 14 of 14) sorted by relevance

/dalvik/tools/dmtracedump/
H A DCreateTestTrace.c71 unsigned int methodId; member in struct:dataRecord
385 unsigned int methodId = 0; local
387 if (pRecord->methodId)
389 unsigned int id = ++methodId << 2;
390 pRecord->methodId = id;
396 if (pNext->methodId)
399 pNext->methodId = id;
403 pRecord->methodId, pRecord->fullName);
406 pRecord->methodId, pRecord->className,
410 pRecord->methodId, pRecor
[all...]
H A DTraceDump.c162 unsigned int methodId; member in struct:MethodEntry
300 void initMethodEntry(MethodEntry *method, unsigned int methodId, argument
305 method->methodId = methodId;
348 unsigned int idA = methodA->methodId;
349 unsigned int idB = methodB->methodId;
387 unsigned int idA = methodA->methodId;
388 unsigned int idB = methodB->methodId;
428 unsigned int idA = methodA->methodId;
429 unsigned int idB = methodB->methodId;
1102 lookupMethod(DataKeys* pKeys, unsigned int methodId) argument
1207 unsigned int methodId, lastEnter = 0; local
2321 unsigned int methodId; local
[all...]
/dalvik/dx/src/com/android/dx/command/findusages/
H A DFindUsages.java91 int methodId = one.getIndex();
92 if (methodIds.contains(methodId)) {
93 out.println(location() + ": method reference " + dex.methodIds().get(methodId)
103 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
104 return className + "." + dex.strings().get(methodId.getNameIndex());
/dalvik/dx/src/com/android/dx/command/grep/
H A DGrep.java78 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex());
79 return className + "." + dex.strings().get(methodId.getNameIndex());
/dalvik/dx/src/com/android/dx/merge/
H A DInstructionTransformer.java98 int methodId = one.getIndex();
99 int mappedId = indexMap.adjustMethod(methodId);
H A DIndexMap.java192 public MethodId adjust(MethodId methodId) { argument
194 adjustType(methodId.getDeclaringClassIndex()),
195 adjustProto(methodId.getProtoIndex()),
196 adjustString(methodId.getNameIndex()));
H A DDexMerger.java505 @Override void write(MethodId methodId) {
506 methodId.writeTo(idsDefsOut);
/dalvik/dx/src/com/android/dx/io/
H A DDexIndexPrinter.java85 for (MethodId methodId : dex.methodIds()) {
86 System.out.println("methodId " + index + ": " + methodId);
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DDexData.java411 MethodIdItem methodId = mMethodIds[i];
413 classNameFromTypeIndex(methodId.classIdx),
414 argArrayFromProtoIndex(methodId.protoIdx),
415 returnTypeFromProtoIndex(methodId.protoIdx),
416 mStrings[methodId.nameIdx]);
/dalvik/vm/jdwp/
H A DJdwpHandler.cpp49 pLoc->methodId = dvmReadMethodId(pBuf);
60 expandBufAddMethodId(pReply, pLoc->methodId);
104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId,
112 ALOGV(" classId=%llx methodId=%x %s.%s",
113 classId, methodId,
115 dvmDbgGetMethodName(classId, methodId));
140 JdwpError err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId,
757 MethodId methodId = dvmReadMethodId(&buf); local
760 threadId, 0, classId, methodId, false);
775 MethodId methodId local
102 finishInvoke(JdwpState* state, const u1* buf, int dataLen, ExpandBuf* pReply, ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, bool isConstructor) argument
813 MethodId methodId = dvmReadMethodId(&buf); local
831 MethodId methodId = dvmReadMethodId(&buf); local
936 MethodId methodId = dvmReadMethodId(&buf); local
[all...]
H A DJdwpEvent.cpp450 pLoc1->methodId == pLoc2->methodId &&
875 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId),
1060 pThrowLoc->classId, pThrowLoc->methodId, pThrowLoc->idx,
1062 dvmDbgGetMethodName(pThrowLoc->classId, pThrowLoc->methodId));
1067 pCatchLoc->classId, pCatchLoc->methodId, pCatchLoc->idx,
1069 dvmDbgGetMethodName(pCatchLoc->classId, pCatchLoc->methodId));
H A DJdwp.h83 MethodId methodId; /* method in which "idx" resides */ member in struct:JdwpLocation
/dalvik/vm/
H A DDebugger.h206 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId,
286 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
H A DDebugger.cpp1303 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId, argument
1312 method = methodIdToMethod(refTypeId, methodId);
1409 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId methodId, argument
1417 method = methodIdToMethod(refTypeId, methodId);
2099 pLoc->methodId = methodToMethodId(method);
2419 loc.methodId = methodToMethodId(method);
2452 throwLoc.methodId = methodToMethodId(throwMeth);
2464 catchLoc.methodId = methodToMethodId(catchMeth);
2540 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId);
2551 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId);
2616 dvmDbgInvokeMethod(ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, u4 numArgs, ObjectId* argArray, u4 options, u1* pResultTag, u8* pResultValue, ObjectId* pExceptObj) argument
[all...]

Completed in 303 milliseconds