Searched refs:AllocRecord (Results 1 – 12 of 12) sorted by relevance
/external/tensorflow/tensorflow/core/framework/ |
D | tracking_allocator.h | 46 struct AllocRecord { struct 47 AllocRecord(int64 a_btyes, int64 a_micros) in AllocRecord() function 49 AllocRecord() : AllocRecord(0, 0) {} in AllocRecord() function 87 gtl::InlinedVector<AllocRecord, 4> GetRecordsAndUnRef(); 89 gtl::InlinedVector<AllocRecord, 4> GetCurrentRecords(); 117 gtl::InlinedVector<AllocRecord, 4> allocations_ GUARDED_BY(mu_);
|
D | tracking_allocator.cc | 174 gtl::InlinedVector<AllocRecord, 4> TrackingAllocator::GetRecordsAndUnRef() { in GetRecordsAndUnRef() 176 gtl::InlinedVector<AllocRecord, 4> allocations; in GetRecordsAndUnRef() 188 gtl::InlinedVector<AllocRecord, 4> TrackingAllocator::GetCurrentRecords() { in GetCurrentRecords() 189 gtl::InlinedVector<AllocRecord, 4> allocations; in GetCurrentRecords() 192 for (const AllocRecord& alloc : allocations_) { in GetCurrentRecords()
|
/external/perfetto/src/profiling/memory/ |
D | heapprofd_producer.h | 126 void PostAllocRecord(AllocRecord) override; 132 void HandleAllocRecord(AllocRecord);
|
D | unwinding.h | 133 bool DoUnwind(WireMessage*, UnwindingMetadata* metadata, AllocRecord* out); 139 virtual void PostAllocRecord(AllocRecord) = 0;
|
D | unwound_messages.h | 38 struct AllocRecord { struct
|
D | unwinding_fuzzer.cc | 31 void PostAllocRecord(AllocRecord) override {} in PostAllocRecord() argument
|
D | heapprofd_producer.cc | 754 void HeapprofdProducer::PostAllocRecord(AllocRecord alloc_rec) { in PostAllocRecord() 756 AllocRecord* raw_alloc_rec = new AllocRecord(std::move(alloc_rec)); in PostAllocRecord() 786 void HeapprofdProducer::HandleAllocRecord(AllocRecord alloc_rec) { in HandleAllocRecord()
|
D | unwinding.cc | 179 bool DoUnwind(WireMessage* msg, UnwindingMetadata* metadata, AllocRecord* out) { in DoUnwind() 351 AllocRecord rec; in HandleBuffer()
|
D | unwinding_unittest.cc | 135 AllocRecord out; in TEST()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | stream_executor_pimpl.h | 44 struct AllocRecord { struct 210 void GetMemAllocs(std::map<void *, AllocRecord> *records_out); 654 std::map<void *, AllocRecord> mem_allocs_ GUARDED_BY(mu_);
|
D | stream_executor_pimpl.cc | 263 void StreamExecutor::GetMemAllocs(std::map<void *, AllocRecord> *records_out) { in GetMemAllocs() 827 mem_allocs_[opaque] = AllocRecord{ in CreateAllocRecord()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | step_stats_collector.cc | 465 gtl::InlinedVector<AllocRecord, 4> cur_records = in ReportAllocsOnResourceExhausted()
|