/dalvik/tools/dmtracedump/ |
D | CreateTestTrace.c | 71 unsigned int methodId; member 385 unsigned int methodId = 0; in writeKeyMethods() local 387 if (pRecord->methodId) in writeKeyMethods() 389 unsigned int id = ++methodId << 2; in writeKeyMethods() 390 pRecord->methodId = id; in writeKeyMethods() 396 if (pNext->methodId) in writeKeyMethods() 399 pNext->methodId = id; in writeKeyMethods() 403 pRecord->methodId, pRecord->fullName); in writeKeyMethods() 406 pRecord->methodId, pRecord->className, in writeKeyMethods() 410 pRecord->methodId, pRecord->className, in writeKeyMethods() [all …]
|
D | TraceDump.c | 162 unsigned int methodId; member 300 void initMethodEntry(MethodEntry *method, unsigned int methodId, in initMethodEntry() argument 305 method->methodId = methodId; in initMethodEntry() 348 unsigned int idA = methodA->methodId; in compareElapsedExclusive() 349 unsigned int idB = methodB->methodId; in compareElapsedExclusive() 387 unsigned int idA = methodA->methodId; in compareElapsedInclusive() 388 unsigned int idB = methodB->methodId; in compareElapsedInclusive() 428 unsigned int idA = methodA->methodId; in compareTimedMethod() 429 unsigned int idB = methodB->methodId; in compareTimedMethod() 454 unsigned int idA = methodA->methodId; in compareClassNames() [all …]
|
/dalvik/dx/src/com/android/dx/command/findusages/ |
D | FindUsages.java | 92 int methodId = one.getIndex(); in FindUsages() 93 if (methodIds.contains(methodId)) { in FindUsages() 94 out.println(location() + ": method reference " + dex.methodIds().get(methodId) in FindUsages() 104 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex()); in location() local 105 return className + "." + dex.strings().get(methodId.getNameIndex()); in location()
|
/dalvik/vm/jdwp/ |
D | JdwpHandler.cpp | 49 pLoc->methodId = dvmReadMethodId(pBuf); in jdwpReadLocation() 60 expandBufAddMethodId(pReply, pLoc->methodId); in dvmJdwpAddLocation() 104 ObjectId threadId, ObjectId objectId, RefTypeId classId, MethodId methodId, in finishInvoke() argument 113 classId, methodId, in finishInvoke() 115 dvmDbgGetMethodName(classId, methodId)); in finishInvoke() 140 JdwpError err = dvmDbgInvokeMethod(threadId, objectId, classId, methodId, in finishInvoke() 757 MethodId methodId = dvmReadMethodId(&buf); in handleCT_InvokeMethod() local 760 threadId, 0, classId, methodId, false); in handleCT_InvokeMethod() 775 MethodId methodId = dvmReadMethodId(&buf); in handleCT_NewInstance() local 783 threadId, objectId, classId, methodId, true); in handleCT_NewInstance() [all …]
|
D | JdwpEvent.cpp | 450 pLoc1->methodId == pLoc2->methodId && in locationMatch() 875 dvmDbgGetMethodName(pLoc->classId, pLoc->methodId), in dvmJdwpPostLocationEvent() 1060 pThrowLoc->classId, pThrowLoc->methodId, pThrowLoc->idx, in dvmJdwpPostException() 1062 dvmDbgGetMethodName(pThrowLoc->classId, pThrowLoc->methodId)); in dvmJdwpPostException() 1067 pCatchLoc->classId, pCatchLoc->methodId, pCatchLoc->idx, in dvmJdwpPostException() 1069 dvmDbgGetMethodName(pCatchLoc->classId, pCatchLoc->methodId)); in dvmJdwpPostException()
|
D | Jdwp.h | 83 MethodId methodId; /* method in which "idx" resides */ member
|
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
D | DexData.java | 411 MethodIdItem methodId = mMethodIds[i]; in addExternalMethodReferences() local 413 classNameFromTypeIndex(methodId.classIdx), in addExternalMethodReferences() 414 argArrayFromProtoIndex(methodId.protoIdx), in addExternalMethodReferences() 415 returnTypeFromProtoIndex(methodId.protoIdx), in addExternalMethodReferences() 416 mStrings[methodId.nameIdx]); in addExternalMethodReferences()
|
/dalvik/dx/src/com/android/dx/io/ |
D | DexIndexPrinter.java | 80 for (MethodId methodId : dexBuffer.methodIds()) { in printMethodIds() 81 System.out.println("methodId " + index + ": " + methodId); in printMethodIds()
|
/dalvik/dx/src/com/android/dx/command/grep/ |
D | Grep.java | 73 MethodId methodId = dex.methodIds().get(currentMethod.getMethodIndex()); 74 return className + "." + dex.strings().get(methodId.getNameIndex());
|
/dalvik/dx/src/com/android/dx/merge/ |
D | InstructionTransformer.java | 98 int methodId = one.getIndex(); in visit() local 99 int mappedId = indexMap.adjustMethod(methodId); in visit()
|
D | IndexMap.java | 162 public MethodId adjust(MethodId methodId) { in adjust() argument 164 adjustType(methodId.getDeclaringClassIndex()), in adjust() 165 adjustProto(methodId.getProtoIndex()), in adjust() 166 adjustString(methodId.getNameIndex())); in adjust()
|
D | DexMerger.java | 504 @Override void write(MethodId methodId) { in mergeMethodIds() argument 505 methodId.writeTo(idsDefsOut); in mergeMethodIds()
|
/dalvik/dalvikvm/ |
D | Main.cpp | 92 static int methodIsPublic(JNIEnv* env, jclass clazz, jmethodID methodId) in methodIsPublic() argument 101 refMethod = env->ToReflectedMethod(clazz, methodId, JNI_FALSE); in methodIsPublic()
|
/dalvik/vm/ |
D | Debugger.h | 206 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId, 286 RefTypeId classId, MethodId methodId, u4 numArgs, u8* argArray,
|
D | Debugger.cpp | 1303 void dvmDbgOutputLineTable(RefTypeId refTypeId, MethodId methodId, in dvmDbgOutputLineTable() argument 1312 method = methodIdToMethod(refTypeId, methodId); in dvmDbgOutputLineTable() 1409 void dvmDbgOutputVariableTable(RefTypeId refTypeId, MethodId methodId, in dvmDbgOutputVariableTable() argument 1417 method = methodIdToMethod(refTypeId, methodId); in dvmDbgOutputVariableTable() 2099 pLoc->methodId = methodToMethodId(method); in dvmDbgGetThreadFrame() 2419 loc.methodId = methodToMethodId(method); in dvmDbgPostLocationEvent() 2452 throwLoc.methodId = methodToMethodId(throwMeth); in dvmDbgPostException() 2464 catchLoc.methodId = methodToMethodId(catchMeth); in dvmDbgPostException() 2540 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId); in dvmDbgWatchLocation() 2551 Method* method = methodIdToMethod(pLoc->classId, pLoc->methodId); in dvmDbgUnwatchLocation() [all …]
|