Home | History | Annotate | Download | only in vm

Lines Matching defs:pRec

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