• Home
  • Raw
  • Download

Lines Matching refs:pRec

147 static void getStackFrames(Thread* self, AllocRecord* pRec)  in getStackFrames()  argument
159 pRec->stackElem[stackDepth].method = method; in getStackFrames()
161 pRec->stackElem[stackDepth].pc = 0; in getStackFrames()
166 pRec->stackElem[stackDepth].pc = in getStackFrames()
178 pRec->stackElem[stackDepth].method = NULL; in getStackFrames()
179 pRec->stackElem[stackDepth].pc = 0; in getStackFrames()
205 AllocRecord* pRec = &gDvm.allocRecords[gDvm.allocRecordHead]; in dvmDoTrackAllocation() local
207 pRec->clazz = clazz; in dvmDoTrackAllocation()
208 pRec->size = size; in dvmDoTrackAllocation()
209 pRec->threadId = self->threadId; in dvmDoTrackAllocation()
210 getStackFrames(self, pRec); in dvmDoTrackAllocation()
332 AllocRecord* pRec = &gDvm.allocRecords[idx]; in populateStringTables() local
334 dvmPointerSetAddEntry(classNames, pRec->clazz->descriptor); in populateStringTables()
339 if (pRec->stackElem[i].method == NULL) in populateStringTables()
342 const Method* method = pRec->stackElem[i].method; in populateStringTables()
393 AllocRecord* pRec = &gDvm.allocRecords[idx]; in generateBaseOutput() local
398 if (pRec->stackElem[depth].method == NULL) in generateBaseOutput()
404 set4BE(&ptr[0], pRec->size); in generateBaseOutput()
405 set2BE(&ptr[4], pRec->threadId); in generateBaseOutput()
407 dvmPointerSetFind(classNames, pRec->clazz->descriptor)); in generateBaseOutput()
416 const Method* method = pRec->stackElem[i].method; in generateBaseOutput()
419 lineNum = dvmLineNumFromPC(method, pRec->stackElem[i].pc); in generateBaseOutput()
619 AllocRecord* pRec = &gDvm.allocRecords[idx]; in dvmDumpTrackedAllocations() local
621 pRec->threadId, pRec->size, pRec->clazz->descriptor); in dvmDumpTrackedAllocations()
625 if (pRec->stackElem[i].method == NULL) in dvmDumpTrackedAllocations()
628 const Method* method = pRec->stackElem[i].method; in dvmDumpTrackedAllocations()
635 pRec->stackElem[i].pc); in dvmDumpTrackedAllocations()