Lines Matching defs:record

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