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 …]
226 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local227 if (records == nullptr) { in SetAllocTrackingEnabled()228 records = new AllocRecordObjectMap; in SetAllocTrackingEnabled()229 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()231 CHECK(records != nullptr); in SetAllocTrackingEnabled()232 records->SetProperties(); in SetAllocTrackingEnabled()236 records->alloc_ddm_thread_id_ = self->GetTid(); in SetAllocTrackingEnabled()238 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled()240 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of " in SetAllocTrackingEnabled()241 << records->max_stack_depth_ << " frames, taking up to " in SetAllocTrackingEnabled()[all …]
790 void SetAllocationRecords(AllocRecordObjectMap* records)
3863 void Heap::SetAllocationRecords(AllocRecordObjectMap* records) { in SetAllocationRecords() argument3864 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()
5001 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in DumpRecentAllocations() local5002 CHECK(records != nullptr); in DumpRecentAllocations()5004 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); in DumpRecentAllocations()5008 for (auto it = records->RBegin(), end = records->REnd(); in DumpRecentAllocations()5191 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in GetRecentAllocations() local5195 if (records == nullptr) { in GetRecentAllocations()5197 records = &dummy; in GetRecentAllocations()5212 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); in GetRecentAllocations()5215 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()5245 LOG(INFO) << "allocation records all objects: " << records->Size(); in GetRecentAllocations()[all …]
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()