Lines Matching refs:record

4534   AllocRecordStackVisitor(Thread* thread, AllocRecord* record)  in AllocRecordStackVisitor()
4536 : StackVisitor(thread, NULL), record(record), depth(0) {} in AllocRecordStackVisitor()
4546 record->StackElement(depth)->SetMethod(m); in VisitFrame()
4547 record->StackElement(depth)->SetDexPc(GetDexPc()); in VisitFrame()
4556 record->StackElement(depth)->SetMethod(nullptr); in ~AllocRecordStackVisitor()
4557 record->StackElement(depth)->SetDexPc(0); in ~AllocRecordStackVisitor()
4561 AllocRecord* record; member
4581 AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; in RecordAllocation() local
4582 record->SetType(type); in RecordAllocation()
4583 record->SetByteCount(byte_count); in RecordAllocation()
4584 record->SetThinLockId(self->GetThreadId()); in RecordAllocation()
4587 AllocRecordStackVisitor visitor(self, record); in RecordAllocation()
4624 AllocRecord* record = &recent_allocation_records_[i]; in DumpRecentAllocations() local
4626 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->ThinLockId(), record->ByteCount()) in DumpRecentAllocations()
4627 << PrettyClass(record->Type()); in DumpRecentAllocations()
4630 AllocRecordStackTraceElement* stack_element = record->StackElement(stack_frame); in DumpRecentAllocations()
4756 AllocRecord* record = &recent_allocation_records_[idx]; in GetRecentAllocations() local
4758 class_names.Add(record->Type()->GetDescriptor(&temp)); in GetRecentAllocations()
4760 mirror::ArtMethod* m = record->StackElement(i)->Method(); in GetRecentAllocations()
4807 AllocRecord* record = &recent_allocation_records_[idx]; in GetRecentAllocations() local
4808 size_t stack_depth = record->GetDepth(); in GetRecentAllocations()
4810 class_names.IndexOf(record->Type()->GetDescriptor(&temp)); in GetRecentAllocations()
4811 JDWP::Append4BE(bytes, record->ByteCount()); in GetRecentAllocations()
4812 JDWP::Append2BE(bytes, record->ThinLockId()); in GetRecentAllocations()
4822 mirror::ArtMethod* m = record->StackElement(stack_frame)->Method(); in GetRecentAllocations()
4829 JDWP::Append2BE(bytes, record->StackElement(stack_frame)->LineNumber()); in GetRecentAllocations()