• Home
  • Raw
  • Download

Lines Matching refs:record

5010     const gc::AllocRecord* record = &it->second;  in DumpRecentAllocations()  local
5012 LOG(INFO) << StringPrintf(" Thread %-2d %6zd bytes ", record->GetTid(), record->ByteCount()) in DumpRecentAllocations()
5013 << mirror::Class::PrettyClass(record->GetClass()); in DumpRecentAllocations()
5015 for (size_t stack_frame = 0, depth = record->GetDepth(); stack_frame < depth; ++stack_frame) { in DumpRecentAllocations()
5016 const gc::AllocRecordStackTraceElement& stack_element = record->StackElement(stack_frame); in DumpRecentAllocations()
5217 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local
5219 const char* class_descr = record->GetClassDescriptor(&temp); in GetRecentAllocations()
5225 for (size_t i = 0, depth = record->GetDepth(); i < depth; i++) { in GetRecentAllocations()
5226 ArtMethod* m = record->StackElement(i).GetMethod(); in GetRecentAllocations()
5233 alloc_byte_count += record->GetDepth() * (2u + 2u + 2u + 2u); in GetRecentAllocations()
5290 const gc::AllocRecord* record = &it->second; in GetRecentAllocations() local
5291 size_t stack_depth = record->GetDepth(); in GetRecentAllocations()
5293 class_names.IndexOf(record->GetClassDescriptor(&temp)); in GetRecentAllocations()
5294 JDWP::Append4BE(bytes, record->ByteCount()); in GetRecentAllocations()
5295 JDWP::Append2BE(bytes, static_cast<uint16_t>(record->GetTid())); in GetRecentAllocations()
5305 ArtMethod* m = record->StackElement(stack_frame).GetMethod(); in GetRecentAllocations()
5312 JDWP::Append2BE(bytes, record->StackElement(stack_frame).ComputeLineNumber()); in GetRecentAllocations()