Lines Matching refs:pRec
168 static void getStackFrames(Thread* self, AllocRecord* pRec)
180 pRec->stackElem[stackDepth].method = method;
182 pRec->stackElem[stackDepth].pc = 0;
187 pRec->stackElem[stackDepth].pc =
199 pRec->stackElem[stackDepth].method = NULL;
200 pRec->stackElem[stackDepth].pc = 0;
226 AllocRecord* pRec = &gDvm.allocRecords[gDvm.allocRecordHead];
228 pRec->clazz = clazz;
229 pRec->size = size;
230 pRec->threadId = self->threadId;
231 getStackFrames(self, pRec);
353 AllocRecord* pRec = &gDvm.allocRecords[idx];
355 dvmPointerSetAddEntry(classNames, pRec->clazz->descriptor);
360 if (pRec->stackElem[i].method == NULL)
363 const Method* method = pRec->stackElem[i].method;
414 AllocRecord* pRec = &gDvm.allocRecords[idx];
419 if (pRec->stackElem[depth].method == NULL)
425 set4BE(&ptr[0], pRec->size);
426 set2BE(&ptr[4], pRec->threadId);
428 dvmPointerSetFind(classNames, pRec->clazz->descriptor));
437 const Method* method = pRec->stackElem[i].method;
440 lineNum = dvmLineNumFromPC(method, pRec->stackElem[i].pc);
640 AllocRecord* pRec = &gDvm.allocRecords[idx];
642 pRec->threadId, pRec->size, pRec->clazz->descriptor);
646 if (pRec->stackElem[i].method == NULL)
649 const Method* method = pRec->stackElem[i].method;
656 pRec->stackElem[i].pc);