Home | History | Annotate | Download | only in vm

Lines Matching refs: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;
203 AllocRecord* pRec = &gDvm.allocRecords[gDvm.allocRecordHead];
205 pRec->clazz = clazz;
206 pRec->size = size;
207 pRec->threadId = self->threadId;
208 getStackFrames(self, pRec);
331 AllocRecord* pRec = &gDvm.allocRecords[idx];
333 dvmPointerSetAddEntry(classNames, pRec->clazz->descriptor);
338 if (pRec->stackElem[i].method == NULL)
341 const Method* method = pRec->stackElem[i].method;
392 AllocRecord* pRec = &gDvm.allocRecords[idx];
397 if (pRec->stackElem[depth].method == NULL)
403 set4BE(&ptr[0], pRec->size);
404 set2BE(&ptr[4], pRec->threadId);
406 dvmPointerSetFind(classNames, pRec->clazz->descriptor));
415 const Method* method = pRec->stackElem[i].method;
418 lineNum = dvmLineNumFromPC(method, pRec->stackElem[i].pc);
616 AllocRecord* pRec = &gDvm.allocRecords[idx];
618 pRec->threadId, pRec->size, pRec->clazz->descriptor);
623 if (pRec->stackElem[i].method == NULL)
626 const Method* method = pRec->stackElem[i].method;
633 pRec->stackElem[i].pc);