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

  /dalvik/vm/native/
InternalNative.c 75 while (classPtr->classDescriptor != NULL) {
77 dvmComputeUtf8Hash(classPtr->classDescriptor);
101 const char* classDescriptor = method->clazz->descriptor;
105 hash = dvmComputeUtf8Hash(classDescriptor);
108 if (pClass->classDescriptor == NULL)
111 strcmp(pClass->classDescriptor, classDescriptor) == 0)
  /dalvik/vm/analysis/
DexVerify.c 86 const char* classDescriptor;
90 classDescriptor = dexStringByTypeIdx(pDexFile, pClassDef->classIdx);
93 clazz = dvmLookupClass(classDescriptor, NULL, false);
97 classDescriptor);
108 LOGV("DexOpt: +++ not verifying '%s'\n", classDescriptor);
344 const char* classDescriptor;
355 classDescriptor = dexStringByTypeIdx(pDvmDex->pDexFile, idx);
356 if (classDescriptor[0] != 'L') {
358 classDescriptor);
374 const char* classDescriptor;
    [all...]
ReduceConstants.c 250 typedef void (AllMethodsFunc)(DexFile* pDexFile, const char* classDescriptor,
304 * "classDescriptor" is for debug messages.
307 const DexClassDataHeader* pHeader, const char* classDescriptor,
342 (func)(pDexFile, classDescriptor, &method, arg);
352 (func)(pDexFile, classDescriptor, &method, arg);
373 const char* classDescriptor;
374 classDescriptor = dexStringByTypeIdx(pDexFile, pClassDef->classIdx);
380 classDescriptor, func, arg);
382 //printf("%s: no class data\n", classDescriptor);
619 static void markUsedConstants(DexFile* pDexFile, const char* classDescriptor,
    [all...]
DexOptimize.c     [all...]
RegisterMap.c 724 const char* classDescriptor;
728 classDescriptor = dexStringByTypeIdx(pDexFile, pClassDef->classIdx);
741 clazz = dvmLookupClass(classDescriptor, NULL, false);
759 LOGV("%4d NOT mapadding '%s'\n", idx, classDescriptor);
    [all...]
CodeVerify.c     [all...]
  /dalvik/vm/
InlineNative.h 46 const char* classDescriptor;
Native.h 38 const char* classDescriptor;
Native.c 608 static char* createJniNameString(const char* classDescriptor,
612 size_t descriptorLength = strlen(classDescriptor);
621 * Add one to classDescriptor to skip the "L", and then replace
624 sprintf(result, "Java/%s%s", classDescriptor + 1, methodName);
Debugger.h 173 bool dvmDbgFindLoadedClassBySignature(const char* classDescriptor,
InlineNative.c 749 gDvmInlineOpsTable[opIndex].classDescriptor, NULL);
CheckJni.c 265 static const char* classDescriptor = "???"; \
269 classDescriptor = meth->clazz->descriptor; \
274 (__FUNCTION__)+6, classDescriptor, methodName); \
    [all...]
Debugger.c 709 bool dvmDbgFindLoadedClassBySignature(const char* classDescriptor,
714 clazz = dvmFindLoadedClass(classDescriptor);
    [all...]
  /dalvik/dexdump/
DexDump.c 77 const char* classDescriptor;
517 const char *classDescriptor
520 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
543 const char *classDescriptor
546 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
564 pMethInfo->classDescriptor =
582 pFieldInfo->classDescriptor =
703 fieldInfo.classDescriptor, fieldInfo.name,
735 pDecInsn->vB, fieldInfo.classDescriptor, fieldInfo.name,
794 methInfo.classDescriptor, methInfo.name
    [all...]
  /dalvik/dexlist/
DexList.c 96 const char* classDescriptor;
107 classDescriptor = dexStringByTypeIdx(pDexFile, pMethodId->classIdx);
125 dexDecodeDebugInfo(pDexFile, pCode, classDescriptor, pMethodId->protoIdx,
128 char* className = descriptorToDot(classDescriptor);
  /dalvik/libdex/
DexFile.c 362 const char* classDescriptor =
366 u4 hash = classDescriptorHash(classDescriptor);
1075 const char* classDescriptor,
    [all...]
DexFile.h 794 const char* classDescriptor,
    [all...]
  /dalvik/vm/reflect/
Reflect.c 1045 const char* classDescriptor;
1058 classDescriptor = boxTypes[typeIndex];
1060 wrapperClass = dvmFindSystemClass(classDescriptor);
1062 LOGW("Unable to find '%s'\n", classDescriptor);
    [all...]
  /dalvik/vm/jdwp/
JdwpHandler.c 239 char* classDescriptor = NULL;
245 classDescriptor = readNewUtf8String(&buf, &strLen);
246 LOGV(" Req for class by signature '%s'\n", classDescriptor);
254 if (!dvmDbgFindLoadedClassBySignature(classDescriptor, &refTypeId)) {
277 free(classDescriptor);
    [all...]
  /dalvik/vm/oo/
Class.c     [all...]

Completed in 506 milliseconds