Searched refs:records (Results 1 – 8 of 8) sorted by relevance
72 dataRecord* records; variable145 records = new dataRecord[numRecords]; in parseInputFile()197 records[nextRecord].time = time; in parseInputFile()198 records[nextRecord].threadId = threadId; in parseInputFile()208 records[nextRecord].fullName = strndup(save_cp, len); in parseInputFile()211 records[nextRecord].className = nullptr; in parseInputFile()212 records[nextRecord].methodName = nullptr; in parseInputFile()213 records[nextRecord].signature = nullptr; in parseInputFile()217 if (len > 0) records[nextRecord].className = strndup(save_cp, len); in parseInputFile()223 records[nextRecord].methodName = strndup(save_cp, len); in parseInputFile()[all …]
149 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local150 if (records == nullptr) { in SetAllocTrackingEnabled()151 records = new AllocRecordObjectMap; in SetAllocTrackingEnabled()152 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()154 CHECK(records != nullptr); in SetAllocTrackingEnabled()155 records->SetMaxStackDepth(heap->GetAllocTrackerStackDepth()); in SetAllocTrackingEnabled()156 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled()158 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of " in SetAllocTrackingEnabled()159 << records->max_stack_depth_ << " frames, taking up to " in SetAllocTrackingEnabled()160 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()[all …]
873 void SetAllocationRecords(AllocRecordObjectMap* records)
4039 void Heap::SetAllocationRecords(AllocRecordObjectMap* records) { in SetAllocationRecords() argument4040 allocation_records_.reset(records); in SetAllocationRecords()
3 ROOT_DEBUGGER records manually changed to a ROOT_FINALIZING record.
214 gc::AllocRecordObjectMap* records = runtime->GetHeap()->GetAllocationRecords(); in Dump() local215 DCHECK(records != nullptr); in Dump()221 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in Dump()
953 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in GetRecentAllocations() local957 if (records == nullptr) { in GetRecentAllocations()959 records = &dummy; in GetRecentAllocations()974 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); in GetRecentAllocations()977 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()1007 LOG(INFO) << "allocation records all objects: " << records->Size(); in GetRecentAllocations()1045 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()
835 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in PopulateAllocationTrackingTraces() local836 CHECK(records != nullptr); in PopulateAllocationTrackingTraces()841 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in PopulateAllocationTrackingTraces()