• Home
  • Raw
  • Download

Lines Matching refs:classNames

343 static bool populateStringTables(PointerSet* classNames,  in populateStringTables()  argument
355 dvmPointerSetAddEntry(classNames, pRec->clazz->descriptor); in populateStringTables()
364 dvmPointerSetAddEntry(classNames, method->clazz->descriptor); in populateStringTables()
376 dvmPointerSetGetCount(classNames), classCount, in populateStringTables()
394 const PointerSet* classNames, const PointerSet* methodNames, in generateBaseOutput() argument
407 set2BE(&ptr[9], dvmPointerSetGetCount(classNames)); in generateBaseOutput()
428 dvmPointerSetFind(classNames, pRec->clazz->descriptor)); in generateBaseOutput()
444 set2BE(&ptr[0], dvmPointerSetFind(classNames, in generateBaseOutput()
537 PointerSet* classNames = NULL; in dvmGenerateTrackedAllocationReport() local
547 classNames = dvmPointerSetAlloc(128); in dvmGenerateTrackedAllocationReport()
550 if (classNames == NULL || methodNames == NULL || fileNames == NULL) { in dvmGenerateTrackedAllocationReport()
555 if (!populateStringTables(classNames, methodNames, fileNames)) in dvmGenerateTrackedAllocationReport()
560 dumpStringTable(classNames); in dvmGenerateTrackedAllocationReport()
573 baseSize = generateBaseOutput(NULL, 0, classNames, methodNames, fileNames); in dvmGenerateTrackedAllocationReport()
576 totalSize += computeStringTableSize(classNames); in dvmGenerateTrackedAllocationReport()
588 generateBaseOutput(buffer, baseSize, classNames, methodNames, fileNames); in dvmGenerateTrackedAllocationReport()
589 strPtr += outputStringTable(classNames, strPtr); in dvmGenerateTrackedAllocationReport()
604 dvmPointerSetFree(classNames); in dvmGenerateTrackedAllocationReport()