Lines Matching refs:record
4901 const gc::AllocRecord* record = &it->second; in DumpRecentAllocations() local
4903 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) in DumpRecentAllocations()
4904 << mirror::Class::PrettyClass(record->GetClass()); in DumpRecentAllocations()
4906 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { in DumpRecentAllocations()
4907 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); in DumpRecentAllocations()
5041 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local
5043 class_names.Add(record->GetClassDescriptor(&temp)); in GetRecentAllocations()
5044 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { in GetRecentAllocations()
5045 ArtMethod* m = record->StackElement(i).GetMethod(); in GetRecentAllocations()
5092 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local
5093 size_t stack_depth = record->GetDepth(); in GetRecentAllocations()
5095 class_names.IndexOf(record->GetClassDescriptor(&temp)); in GetRecentAllocations()
5096 JDWP::Append4BE(bytes, record->ByteCount()); in GetRecentAllocations()
5097 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); in GetRecentAllocations()
5107 ArtMethod* m = record->StackElement(stack_frame).GetMethod(); in GetRecentAllocations()
5114 JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); in GetRecentAllocations()